:root {
    --color-primary: #CB4C4D;
    --color-secondry: #FFB8B8;
    --color-suptitle-text: #666666;
    --color-title-text: #222222;
    --text-color-title: #1A1A1A;
    --text-body: #374151;
    --color-hero-section: #F4F4F5;
    --background-color: #ffffff;
    --border-color: #E6E6E6;
    --error-color: #DA1E28;
    --yellow: #D97706;
    --seccuss-color: #1d831d;
    --seccuss-text-color: #53d98d;
    --gray-500: #6B7280;
    --gray-50: #F9FAFB;
    --divider-color: #DCDCDC;
    --font-Regular: 'IBM Plex Sans Arabic Regular';
    --font-Light: 'IBM Plex Sans Arabic Light';
    --font-Medium: 'IBM Plex Sans Arabic Medium';
    --font-Bold: 'IBM Plex Sans Arabic Bold';
}

:root {
    --color-primary: #CB4C4D;
    --color-secondry: #FFB8B8;
    --background-color: #FFFFFF;
    --color-hero-section: #F4F4F5;
    --color-title-text: #222222;
    --text-color-title: #1A1A1A;
    --text-body: #374151;
    --color-suptitle-text: #666666;
    --gray-500: #6B7280;
    --gray-50: #F9FAFB;
    --border-color: #E6E6E6;
    --yellow: #D97706;
    --error-color: #DA1E28;
    --seccuss-color: #1d831d;
    --seccuss-text-color: #53d98d;
    --divider-color: #DCDCDC;

    --font-Regular: 'IBM Plex Sans Arabic Regular';
    --font-Light: 'IBM Plex Sans Arabic Light';
    --font-Medium: 'IBM Plex Sans Arabic Medium';
    --font-Bold: 'IBM Plex Sans Arabic Bold';
}

/* IBM Plex Sans Arabic Font Faces */
@font-face {
    font-family: 'IBM Plex Sans Arabic Regular';
    font-style: normal;
    font-weight: normal;
    src: local('IBM Plex Sans Arabic Regular'), url('../assets/fonts/ibm-plex-sans-arabic/IBMPlexSansArabic-Regular.woff') format('woff');
}

@font-face {
    font-family: 'IBM Plex Sans Arabic Light';
    font-style: normal;
    font-weight: lighter;
    src: local('IBM Plex Sans Arabic Light'), url('../assets/fonts/ibm-plex-sans-arabic/IBMPlexSansArabic-Light.woff') format('woff');
}

@font-face {
    font-family: 'IBM Plex Sans Arabic Medium';
    font-style: normal;
    font-weight: normal;
    src: local('IBM Plex Sans Arabic Medium'), url('../assets/fonts/ibm-plex-sans-arabic/IBMPlexSansArabic-Medium.woff') format('woff');
}

@font-face {
    font-family: 'IBM Plex Sans Arabic Bold';
    font-style: normal;
    font-weight: bold;
    src: local('IBM Plex Sans Arabic Bold'), url('../assets/fonts/ibm-plex-sans-arabic/IBMPlexSansArabic-Bold.woff') format('woff');
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: var(--font-Regular);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 200;
    font-variation-settings: "slnt" 0;
    touch-action: manipulation;
}

body {
    min-height: 100vh;
    background-color: var(background-color);
    margin-bottom: 444px;
    color: var(--text-color-title);
}


/* public css styles */
h1 {
    font-family: var(--font-Bold);
    font-weight: 900;
}

h2 {
    font-family: var(--font-Bold);
    font-weight: 800;
}

h3 {
    font-family: var(--font-Bold);
    font-weight: 700;
}

h4 {
    font-family: var(--font-Bold);
}

h5 {
    font-family: var(--font-Bold);
}

p {
    font-family: var(--font-Medium);
    color: var(--color-suptitle-text);
}

.p-light {
    font-family: var(--font-Light);
    font-size: 16px;
}

.p-light.active {
    color: var(--color-primary);
    font-family: var(--font-Bold);
}

.input-field {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 21px 26px;
    height: 70px;
    font-size: 14px;
    font-family: var(--font-Bold);
    transition: all 0.2s ease-in-out;
}

.input-field:focus {
    outline: 2px solid var(--color-primary);
    box-shadow: 0 0px 10px -1px var(--color-suptitle-text);
    border: none;
    height: 66px;
}

.input-div {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
}

.input-text {
    display: flex;
    width: 100%;
    padding: 8px 36px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    transition: all ease-in-out .3s;
}

.input-text.error {
    border: 1px solid var(--error-color);
    outline: 1px solid var(--error-color);
    background-color: var(--color-hero-section);
    box-shadow: 0 0px 8px -2px;
}

.error-label {
    color: var(--error-color);
    font-size: 0px;
    margin: -10px 20px;
    transition: all ease-in-out .3s;
}

.error-label.show {
    font-size: 10px;
}

.primary-button {
    display: flex;
    gap: 5px;
    background-color: var(--color-primary);
    color: var(--background-color);
    border: 1px solid var(--color-primary);
    border-radius: 24px;
    padding: 10px 26px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-Bold);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.primary-button:hover {
    background-color: var(--text-color-title);
    border: 1px solid var(--text-color-title);
    box-shadow: 0 0px 10px -1px var(--color-suptitle-text);
    scale: 1.03;
}

.primary-button:active {
    scale: 0.95;
}

.primary-button-outline {
    display: flex;
    gap: 5px;
    background-color: transparent;
    color: var(--color-primary);
    stroke: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 24px;
    padding: 10px 26px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-Bold);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.primary-button-outline:hover {
    background-color: var(--color-primary);
    color: var(--background-color);
    stroke: var(--background-color);
    box-shadow: 0 0px 10px -1px var(--color-suptitle-text);
    scale: 1.03;
}

.primary-button-outline:active {
    scale: 0.95;
}

.icon-button {
    display: flex;
    background-color: transparent;
    stroke: var(--text-color-title);
    border: none;
    border-radius: 50%;
    padding: 5px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.icon-button:hover {
    background-color: var(--border-color);
    scale: 1.03;
}

.icon-button:active {
    background-color: var(--divider-color);
    scale: 0.90;
}

.compobox-field {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 21px 26px;
    height: 70px;
    font-size: 14px;
    font-family: var(--font-Medium);
    transition: all 0.2s ease-in-out;
}

.compobox-field:focus {
    box-shadow: 0 0px 10px -1px var(--color-suptitle-text);
    outline: none;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.dept-container {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 0;
    width: 100%;
    justify-content: space-evenly;
}

.product-card {
    display: flex;
    width: 388px;
    height: 476px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 16px;
    background: var(--background-color);
    box-shadow: 0 40px 90px 0 rgba(0, 0, 0, 0.08);
}

.product-card-photo {
    display: flex;
    height: 287px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.product-card-photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-card-title {
    padding: 22px 24px;
    height: 130px;
}

.product-card-title p {
    font-size: 12px;
}

.product-card-title h3 {
    font-size: 18px;
    line-height: 129%;
}

.product-card-price {
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.product-card-price h3 {
    color: var(--color-suptitle-text);
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 83.333% */
    letter-spacing: -0.24px;
}

.card-btn {
    height: 48px;
    border-radius: 16px;
    gap: 5px;
}

.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
    transition: all ease-in-out .2s;
}

.pagination-btn:hover {
    scale: 1.2;
}

.pagination-circal {
    background-color: var(--border-color);
    color: var(--color-primary);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    align-content: center;
}

.head-map {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    background-color: var(--color-hero-section);
    height: 44px;
    align-items: center;
}

#separator {
    width: 80%;
    height: 1px;
    background-color: var(--divider-color);
    margin: 10px 0;
}

/* Header and Navbar */

header {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
    background-color: var(--background-color);
}

.navbar {
    display: flex;
    width: 100%;
    justify-content: right;
    padding: 15px 0px;

}

.navbar a {
    color: var(--color-suptitle-text);
    font-size: 18px;
    margin: 0px 25px;
    transition: all ease-in-out .2s;
}

.navbar2 {
    display: flex;
    justify-content: left;
    gap: 0 3px;
    padding-left: 50px;
}

.navbar2 a {
    color: var(--color-title-text);
    font-size: 15px;
    font-family: var(--font-Medium);
    font-weight: 500;
    margin: 0px 25px;
    transition: all ease-in-out .2s;
}

#menu-icon {
    display: none;
}

#close-icon {
    display: none;
}

#item-icon {
    display: none;
    transition: all ease-in-out .5s;
}

#item-icon2 {
    stroke: var(--color-suptitle-text);
    transition: all ease-in-out .2s;
    height: 24px;
    width: 24px;
    margin-bottom: -5px;
    display: inline;
    justify-self: end;
}

#item-icon3 {
    fill: var(--color-suptitle-text);
    transition: all ease-in-out .2s;
    height: 24px;
    width: 24px;
    margin-bottom: -5px;
    display: inline;
    justify-self: end;
}

.navbar2 a:hover>#item-icon2 {
    filter: drop-shadow(var(--color-suptitle-text) 2px 2px 5px);
}

.navbar2 a:hover>#item-icon3 {
    filter: drop-shadow(var(--color-suptitle-text) 2px 2px 5px);
}

.notification {
    position: relative;
}

.notification-circale {
    background-color: var(--error-color);
    border-radius: 50%;
    width: 13px;
    height: 13px;
    font-size: 10px;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    position: absolute;
    right: 0;
    display: none;
}

.notification-circale.show {
    display: flex;
}

#title-icon {
    display: none;
    transition: all ease-in-out .5s;
}

#menu-logo {
    display: none;
}

#benshab-logo {
    display: none;
}

.navbar a:hover {
    text-shadow: var(--color-suptitle-text) 2px 2px 5px;
}

.navbar a.active {
    color: var(--color-primary);
    font-family: var(--font-Bold);
}

#line {
    background-color: var(--border-color);
    width: 90%;
    justify-self: center;
    height: 0.03rem;
    position: absolute;
}

.navbar #line {
    display: block;
    margin-top: -22px;
}

@media(max-width:1280px) {
    .header {
        padding: 14px 2%;
        transition: .2s;
    }

    .navbar a {
        padding: 5px 0px;
        margin: 0px 20px;
    }
}

@media(max-width:991px) {

    header {
        height: 50px;
        background-color: rgba(0, 0, 0, 0);
    }

    .navbar {
        position: absolute;
        top: 0;
        right: -100%;
        width: 228px;
        height: 100vh;
        background-color: var(--background-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: all .50s ease;
        border-radius: 10px 0px 0px 10px;
        z-index: 1000;
        box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.4);
    }

    .main {
        display: flex;
        align-items: center;
        width: 30.743px;
        height: 30.743px;
        flex-shrink: 0;
        z-index: 999;
    }

    #menu-icon {
        width: 30px;
        height: 30px;
        margin: 30px 10px 25px 0;
        cursor: pointer;
        display: block;
    }

    #item-icon {
        height: 24px;
        width: 24px;
        margin-bottom: -5px;
        filter: grayscale(1);
        display: inline;
    }

    #title-icon {
        height: 26px;
        width: 26px;
        margin-bottom: -5px;
        stroke: var(--text-primary-color);
        display: inline;
    }

    #close-icon {
        display: inline;
        left: 20px;
        top: 20px;
        position: absolute;
        height: 20px;
        width: 20px;
        cursor: pointer;
    }

    #menu-logo {
        display: flex;
        position: unset;
        width: 100px;
        justify-self: center;
        object-fit: contain;
        margin: 20px 0px;
    }

    #navbar-title {
        margin-right: 28px;
    }

    .header-layout {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        align-self: stretch;
    }

    .navbar a {
        color: var(--color-suptitle-text);
        font-size: 14px;
        font-weight: 400;
        display: flex;
        flex-direction: row;
        justify-content: end;
        margin: 1px 0px 1px 0px;
        padding: 8px 28px;
        gap: 10px;
        transition: all .50s ease;
    }

    .navbar h6 {
        color: var(--text-primary-color);
        font-size: 16px;
        font-weight: 700;
        transition: all .50s ease;
    }

    .navbar p {
        color: var(--color-suptitle-text);
        font-size: small;
        display: block;
        margin: 0px 35px 1px 0px;
        padding: 0px 2px;
        transition: all .50s ease;
    }

    .navbar a:hover {
        color: var(--color-primary);
        transform: translateY(-5px);
    }

    .navbar a:hover>#item-icon {
        filter: grayscale(0);
    }

    .navbar a.active {
        background-color: var(--color-hero-section);
    }

    .navbar a.active>#item-icon {
        filter: grayscale(0);
    }

    .navbar.open {
        right: 0%;
    }
}






/* Top Main Section */


.top-main-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
}

.top-main-search-input-field {
    width: 70vw;
    border-radius: 0 !important;
}

.top-main-search-btn {
    border-radius: 24px 0 0 24px !important;
    gap: 5px;
    height: 70px;
}

.top-main-dept-select {
    border-radius: 0 24px 24px 0 !important;
}







/*footer*/
footer {
    background-color: var(--color-title-text);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    position: fixed;
    z-index: -1;
    bottom: 0;
    width: 100%;
    height: 444px;
}

footer a,
footer p {
    color: var(--background-color);
    font-family: var(--font-Light);
    transition: all 0.2s ease-in-out;
}

footer a:hover {
    color: var(--color-primary);
}

.footer-news {
    background-color: var(--color-primary);
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    padding: 20px 31px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/*.footer-news::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 110%;
   /* background-image: linear-gradient(to right, var(--color-primary) 0%, var(--error-color)20% ,var(--color-primary) 40% , var(--color-primary) 100%);
    background-image: linear-gradient(to right, var(--color-primary) 0%, var(--error-color)50% ,var(--color-primary) 100%);
    background-repeat:no-repeat ;
    background-size: 150px 40px;
    top: 0;
    right: 0;
    animation: loading 2s infinite;
}
@keyframes loading {
    0%{
        background-position-x: -10%;
    }
    100%{
background-position-x: 120%;
    }
}*/

.footer-news-title {
    color: var(--background-color);
    font-family: var(--font-Light);
    font-size: 22px;
}

.footer-news-white {
    background-color: var(--background-color);
    padding: 11px;
    width: 90%;
    margin: 0 10px;
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
}

.footer-news-btn {
    width: 20%;
    height: 58px;
}

.footer-news-input {
    height: 57px;
    width: 78%;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    color: var(--background-color);
    margin-bottom: 30px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 20%;
    text-align: center;
    font-size: 14px;
}

.footer-social-circale {
    min-width: 43px;
    max-width: 43px;
    height: 43px;
    padding: 9.5px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: all ease-out 0.2s;
}

.footer-social-circale:hover {
    background-color: var(--error-color);
    padding: 8px;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.footer-social-circale img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-line {
    background-color: var(--divider-color);
    width: 100%;
    padding: 0 20%;
    height: 1px;
}

.me {
    display: flex;
    justify-self: center;
    color: var(--gray-500);
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-Light);
    font-size: 12px;
}

.loading {
    position: fixed;
    justify-content: center;
    background: linear-gradient(to top, var(--color-primary), var(--error-color)45%);
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.loading-title {
    position: absolute;
    top: 35%;
    justify-self: center;
    font-size: 3.2rem;
    font-family: var(--font-Bold);
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0;
    animation: showLoadingTitle forwards 1s;
    z-index: 10005;
}

.loading-suptitle {
    position: absolute;
    top: 50%;
    justify-self: center;
    font-size: 1.2rem;
    font-family: var(--font-Medium);
    font-weight: 400;
    color: var(--color-primary);
    opacity: 0;
    animation: showLoadingTitle forwards 1s;
    z-index: 10004;
}

.loading-line {
    position: absolute;
    bottom: 25%;
    justify-self: center;
    background: linear-gradient(to right, var(--border-color) 0%, var(--error-color) 0%);
    height: 7px;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 15px 2px var(--color-secondry);
    transition: ease-in-out all 2s;
    z-index: 10003;
}

.loading-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--background-color);
    border-radius: 50%;
    box-shadow: 0 0 5px 5px var(--color-secondry);
    opacity: 0;
    bottom: 0;
    z-index: 10002;
}
.progressbar-message {
    position: absolute;
    justify-self: center;
    align-self: center;
    display: none;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 20%;
    border: 1px solid var(--border-color);
    border-radius: 16px;
}
.progressbar-message.show{
    display: flex;
}
.progressbar-circale {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 8px solid var(--border-color);
    border-top: 10px solid var(--color-primary);
    animation: rotate 1s linear infinite;
}

@keyframes showLoadingTitle {
    0% {
        opacity: 0;
        text-shadow: 0 0 0px var(--color-secondry);
        color: var(--color-primary);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 15px var(--color-secondry);
        color: var(--divider-color);
    }
}

@keyframes loadingStar {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

@keyframes rotate {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

@media(max-width:991px) {
    h1 {
        font-family: var(--font-Bold);
        font-weight: 900;
        font-size: 24px;
    }

    h2 {
        font-family: var(--font-Bold);
        font-weight: 800;
        font-size: 22px;

    }

    h3 {
        font-family: var(--font-Bold);
        font-weight: 700;
        font-size: 18px;
    }

    h4 {
        font-family: var(--font-Bold);
        font-size: 13px;
    }

    h5 {
        font-family: var(--font-Bold);
        font-size: 12px;
    }

    p {
        font-family: var(--font-Medium);
        color: var(--color-suptitle-text);
        font-size: 14px;
    }

    .p-light {
        font-family: var(--font-Light);
        font-size: 14px;
    }

    .top-main-search-input-field {
        width: 70%;
        border-radius: 0 !important;
    }

    .dept-container {
        gap: 20px 0;
    }

    .product-card {
        width: 327px;
        height: 417px;
        border-radius: 13px;
        box-shadow: 0 33px 75px 0 rgba(0, 0, 0, 0.08);
    }

    .product-card-photo {
        height: 242px;
        border-radius: 13px 13px 0 0;
    }

    .product-card-title {
        padding: 20px;
        height: auto;
    }

    .product-card-title p {
        font-size: 11px;
    }

    .product-card-title h3 {
        font-size: 16px;
    }

    .card-btn {
        height: 44px;
        border-radius: 13px;
        gap: 5px;
    }

    .head-map {
        margin-top: 0;
        padding-right: 50px;
        height: 54px;
    }
}


@media(max-width:575px) {
    .head-map {
        display: none;
    }

    body {
        margin-bottom: 640px !important;
    }

    h1 {
        font-family: var(--font-Bold);
        font-weight: 900;
        font-size: 20px;
    }

    h2 {
        font-family: var(--font-Bold);
        font-weight: 800;
        font-size: 18px;

    }

    h3 {
        font-family: var(--font-Bold);
        font-weight: 700;
        font-size: 16px;
    }

    h4 {
        font-family: var(--font-Bold);
        font-size: 12px;
    }

    h5 {
        font-family: var(--font-Bold);
        font-size: 11px;
    }

    p {
        font-family: var(--font-Medium);
        color: var(--color-suptitle-text);
        font-size: 12px;
    }

    .p-light {
        font-family: var(--font-Light);
        font-size: 12px;
    }

    .top-main-search-input-field {
        width: 100%;
        border-radius: 0 !important;
        height: 48px !important;
        padding: 14px 5px !important;
        font-size: 12px !important;
    }

    .top-main-search {
        width: 100%;
        height: 48px;
        gap: -5px;
        margin-top: 0px;

    }

    .top-main-dept-list .compobox-field {
        height: 48px !important;
        padding: 14px 5px !important;
        font-size: 12px !important;
    }

    .dept-container {
        gap: 14px;
        justify-content: center;
    }

    .product-card {
        width: 161px;
        height: 266px;
        border-radius: 11px;
        box-shadow: 0 33px 75px 0 rgba(0, 0, 0, 0.08);
    }

    .product-card-photo {
        height: 127px;
        border-radius: 11px 11px 0 0;
    }

    .product-card-title {
        padding: 10px;
        height: auto;
    }

    .product-card-title p {
        font-size: 11px;
    }

    .product-card-title h3 {
        font-size: 14px;
    }

    .product-card-price {
        padding: 0 12px;
    }

    .product-card-price h3 {
        font-family: var(--font-Medium);
    }

    .card-btn {
        height: 32px;
        width: 42px;
        border-radius: 11px !important;
        padding: 8px 12px !important;
        gap: 0px !important;
        font-size: 0 !important;
    }

    .card-btn img {
        width: 16px;
        height: 16px;
    }

    .offer-button {
        align-self: flex-start !important;
        margin-right: 15px !important;
    }

    .primary-button {
        gap: 4px;
        border-radius: 16px;
        padding: 8px 16px;
        font-size: 14px;
        font-family: var(--font-Medium);
    }

    .primary-button-outline {
        gap: 4px;
        border-radius: 16px;
        padding: 8px 16px;
        font-size: 14px;
        font-family: var(--font-Medium);
        text-transform: capitalize;
    }

    /*footer*/
    footer {
        background-color: var(--text-color-title);
        padding: 165px 16px 55px 16px;
        gap: 32px;
        height: 640px;
    }

    footer a,
    footer p {
        color: var(--background-color);
        font-family: var(--font-Light);
        transition: all 0.2s ease-in-out;
    }

    footer a:hover {
        color: var(--color-primary);
    }

    .footer-news {
        padding: 11px 12px;
        margin-bottom: 30px;
        height: 78px;
        position: relative;
    }

    .footer-news-white {
        padding: 12px 8px;
        margin: 0;
        width: 100%;
        height: 100%;
        gap: 8px;
    }

    .footer-news-title {
        position: absolute;
        top: -90px;
        color: var(--background-color);
        font-family: var(--font-Light);
    }

    .footer-news-btn {
        min-width: fit-content;
        height: 40px;
        font-size: 14px;
        font-family: var(--font-Regular);
        padding: 8px 14px;
    }

    .footer-news-input {
        width: 100% !important;
        height: 36px !important;
        font-size: 14px;
        padding: 12px 8px;
        border-radius: 12px;
        font-family: var(--font-Regular);
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        color: var(--background-color);
        margin-bottom: 21px;
        gap: 32px;
        order: inherit;
    }

    .footer-links :nth-child(1) {
        order: 3;
    }

    .footer-links :nth-child(2) {
        order: 2;
    }

    .footer-links :nth-child(3) {
        order: 1;
    }

    .footer-about {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px;
        min-width: 143px;
        text-align: right;
        font-size: 14px;
    }

    .footer-about-bandr {
        width: 241px;
        gap: 14px;
    }

    .footer-about h4 {
        font-size: 18px;
    }

    .footer-social-circale {
        width: 43px;
        height: 43px;
        padding: 9.5px;
        border-radius: 50%;
        background-color: var(--color-primary);
        transition: all ease-out 0.2s;
    }

    .footer-social-circale:hover {
        background-color: var(--error-color);
        padding: 8px;
    }

    .footer-socials {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .footer-social-circale img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-line {
        background-color: var(--divider-color);
        width: 100%;
        padding: 0 20%;
        height: 1px;
    }
}

.alert {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    justify-self: center;
    /*align-items: center;*/
    position: fixed;
    z-index: 100;
    top: -100px;
    padding-top: 18px;
    border-radius: 8px;
    font-size: 14px;
    overflow: hidden;
}

.alert p {
    margin: 0 18px;
}

.alert-line {
    width: 100%;
    height: 4px;
    background-color: var(--background-color);
    opacity: 0.5;
    animation: alertLine ease-in 3.5s forwards;
}

.alert.error {
    background-color: var(--error-color);
    color: var(--color-hero-section);
    box-shadow: var(--color-primary) 0px 5px 20px -10px, inset var(--border-color) 0px 0px 10px;
    animation: alertFadeIn ease-in-out 4s;
}

.alert.error p {
    color: var(--color-hero-section) !important;
}

.alert.seccuss {
    background-color: var(--seccuss-color);
    box-shadow: var(--seccuss-color) 0px 5px 20px -10px, inset var(--border-color) 0px 0px 10px;
    animation: alertFadeIn ease-in-out 4s;
}

.alert.seccuss p {
    color: var(--seccuss-text-color) !important;
}

.alert.warn {
    background-color: var(--yellow);
    color: var(--color-hero-section);
    box-shadow: var(--yellow) 0px 5px 20px -10px, inset var(--border-color) 0px 0px 10px;
    animation: alertFadeIn ease-in-out 4s;
}

.alert.warn p {
    color: var(--color-hero-section) !important;
}

@keyframes alertFadeIn {
    0% {
        top: -100px;
    }

    10%,
    90% {
        top: 20px;
    }

    100% {
        top: -100px;
    }
}

@keyframes alertLine {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}