@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

/* Fonts */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    --font-intro: "Archivo", sans-serif;
    --font-navbar: "Segoe UI Symbol", sans-serif;
}

/* Colors */
:root {
    --color-default: #2e3192;
    --color-primary: #0088e4;
    --color-orange: rgb(253, 169, 0);
    --color-black: rgb(0, 0, 0);
    --color-secondary: #2e3192;
    --color-tertiary: #0274c1;
    --color-menu: linear-gradient(90deg, #009dde, #005a8c);
    --color-dark-vio: #4b144b;

    --color-light: #f1f4f9;

    --color-links: #d52704;
    --color-text: #0088e4;
    --color-topic: #0088e4;
    --color-icons: #0064a7;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}



/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    /* Disables horizontal scroll */
    line-height: 1.4;
    font-family: var(--font-default);
    color: var(--color-default);
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #fd8000;
    text-decoration: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #406aff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/* --------------------------------------------
change Language
-------------------------------------------- */
.language-selector select {
    padding: 5px;
    font-size: 16px;
}

/* Custom styles for the select dropdown */
.language-selector select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    background-image: url("arrow.png");
    background-repeat: no-repeat;
    background-position: right center;
    border: 1px solid #ccc;
    padding: 5px 30px 5px 10px;
}

@media (max-width: 575px) {

    .language-selector select {
        display: none;
    }

}


/* --------------------------------------------
Navbar & Wrapper
-------------------------------------------- */

.main-wrapper {
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.main-wrapper img {
    width: 100%;
    display: block;
}

.main-wrapper .slider-container {
    margin-top: 2rem;
    margin-right: 1rem;
}

@media (max-width: 575px) {
    .main-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .main-wrapper .slider-container {
        display: none;
    }
}

.main-wrapper a {
    color: #000;
    text-decoration: none;
    line-height: 2;
}

.main-wrapper ul li {
    list-style-type: none;
}

.navbar {
    background: #fff;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.navbar .cart {
    width: 60px;
    height: auto;
    padding-left: 30px;
    margin-right: 2rem;
}

/* .icon-cart span{
position: relative;
background-color: red;
padding: 10px;
width: 20px;
height: 20px;
font-size: 11px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color: #fff;
z-index: 9999;
right: -30px;
} */

.icon-cart .shop-bag {
    background-color: #000;
    color: #fff;
    height: 50px;
    width: 50px;
    font-size: 25px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.icon-cart .qty {
    font-size: 12px;
}

/* Default styles for the logos */
#logo .logo-small {
    display: block;
    /* margin-left: 100px; */
    margin-top: 10px;
    max-width: 500px !important;
}

#logo .logo-large {
    display: none;
}

/* Media query for mobile devices (adjust the max-width as needed) */
@media (max-width: 768px) {
    .main-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-nav>li>a {
        font-weight: 700 !important;
        font-family: 'Jost';
    }

    #logo .logo-small {
        display: none;
    }

    #logo .logo-large {
        display: block;
        margin-right: 2rem !important;
        margin-top: 10px;
        max-width: 215px;
    }

    .main-wrapper .navbar {
        flex-wrap: nowrap;
        padding: 0 1rem;
        border-bottom: 5px solid ghostwhite;
    }

    .sub-menu ul li a {
        font-weight: 700 !important;
        font-family: 'Jost';
    }

    #signin-button {
        margin: 1rem;
        font-size: 1rem;
        color: #ffffff !important;
        border: none;
        padding: 1rem 2rem;
        background: var(--color-primary);
        transition: all 0.5s ease;
        cursor: pointer;
        border-radius: 5px;
        -ms-transform: skewX(0deg);
        -webkit-transform: skewX(0deg);
        transform: skewX(0deg);
    }

}

/* 15 inch screen */
@media (min-width: 1500px) {
    .main-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    #logo .logo-small {
        width: 100%;
        margin-left: 1rem !important;
    }
}

/* 27 inch screen */
@media (min-width: 2000px) {
    .main-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    #logo .logo-small {
        width: 100%;
        margin-left: 16rem !important;
    }
}

/* 14 inch screen */
@media (max-width: 1210px) {
    .navbar .cart {
        margin-right: 0rem;
    }
}

.brand-and-icon {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.navbar-toggler {
    display: block;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: all 0.4s ease;
    < !-- border: 2px solid #000;
    -->border-radius: 4px;
}

.navbar-toggler:hover {
    opacity: 0.7;
}

.navbar-collapse {
    overflow-y: scroll;
}

.navbar-nav {
    margin-bottom: 0rem;
}

.navbar-nav ol,
.navbar-nav,
.navbar-nav ul {
    padding-left: 0rem;
}

.navbar-nav {
    margin-bottom: 0rem;
}

/* navbar items */
.navbar-nav>li>a {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.6rem 0;
    margin: 0.2rem 0;
    border-bottom: 1px solid #ddd;
    border-radius: 1px;
    position: relative;
    transition: all 0.4s ease;
}

/* nav dropdown indicator */
.drop-icon {
    font-size: 10px;
    position: absolute;
    margin-left: 10px;
    top: 52%;
    transform: translateY(-50%);
}

.navbar-nav>li>a:hover {
    opacity: 0.7;
    color: var(--color-secondary);
}

/* Top Services and Other Services */
.sub-menu h4 {
    color: var(--color-light);
    text-transform: capitalize;
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* sub menu li background */
.sub-menu ul li {
    text-transform: capitalize;
    padding: 0.4rem 0.4rem;
    margin: 0.2rem 0;
    font-size: 0.95rem;
    margin-right: 20px;
}


/* menu item hight-light backgound */
.sub-menu ul li:hover {
    border-radius: 10px;
    opacity: 0.9;
    color: var(--color-primary);
    background-color: #004d96c7;
}

/* navbar sub menu items list */
.sub-menu ul li a {
    color: var(--color-light);
    opacity: 0.8;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.5s ease;
    padding-right: 20px;
}

.main-wrapper .navbar {
    flex-wrap: nowrap;
    padding: 0 1rem;
    transition: box-shadow 0.3s ease-in-out;
}

/* Optional: class to add shadow */
.navbar.scrolled {
    box-shadow: rgba(50, 50, 93, 0.17) 0px 30px 60px -12px, rgba(0, 0, 0, 0.17) 0px 18px 36px -18px;
}



@media (min-width: 1511px) {
    #logo .logo-small {
        width: 320px !important;
    }
}

@media (min-width: 1210px) {
    .drop-icon {
        font-size: 10px;
        position: absolute;
        margin-left: -2.2rem;
        top: 75%;
        transform: translateY(-50%);
        align-content: center;
    }
}


@media (max-width: 1511px) {
    .sub-menu ul li {
        margin-right: 34px !important;
        padding: 0rem;
    }


    .sub-menu h4 {
        color: var(--color-light);
    }


    #logo {
        margin-left: -3rem;
    }

    #logo .logo-small {
        padding-right: 0;
        max-width: 330px !important;
        margin-left: 3.5rem;
    }

    .main-wrapper .navbar {
        flex-wrap: nowrap;
        padding: 0 1rem;
    }


    /* navbar sub menu items list */
    .sub-menu ul li a {
        color: var(--color-light);
        !important;
        font-size: 16px;
        margin-left: 1rem;
    }

    .slider-container {
        display: none;
    }

    .sub-menu-item {
        width: 300px;
    }
}

.sub-menu ul li a:hover {
    opacity: 0.9;
    color: fd8000;
    margin-top: 10px;
}



.sub-menu {
    display: none;
    width: 63% !important;

}

/* Media Queries */
@media screen and (min-width: 1030px) and (max-width: 1919px) {
    
    /* mega dropdown menu style main man */
    .sub-menu {
        position: absolute;
        width: 56%;
        top: 100%;
        left: 60%;
        transform: translateX(-50%);

        /* background: rgba(151, 2, 2, 1); */
        background: rgba(1, 75, 187, 1);
        background-image: url('/assets/img/others/bg7.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-blend-mode: overlay; /* Blend the image with background-color */
        
        border-radius: 5px 5px 29px 29px;
        border-left: 3px solid #d4d4d4ff;
        border-right: 3px solid #cbcbcbff;
        border-bottom: 3px solid #c7c7c7ff;
        
        box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    }
}




/* icon under sub-menu */

.sub-menu-item .service-icon {
    width: 40px;
    height: auto;
    background-color: rgb(149, 248, 255);
    padding: 8px;
    margin-right: 15px !important;
    border-radius: 10px;
}

.sub-menu-item h3 {
    font-weight: 500;
    color: #fff;
}

.sub-menu-item:nth-child(3) {
    background: var(--color-menu);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sub-menu-item:nth-child(3) h2 {
    text-transform: capitalize;
    margin: 1.5rem 0;
}

.sub-menu-item:nth-child(3) .btn {
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    background: #000;
    color: #fff;
    transition: all 0.5s ease;
}

.sub-menu-item:nth-child(3) .btn:hover {
    background: transparent;
    color: #000;
}

.sub-menu-item:nth-child(4) {
    width: 50%;
    margin: 0 auto;
    padding: 2rem 0;
}

#signin-button {
    margin: 1rem;
    font-size: 1rem;
    color: var(--color-secondary);
    < !-- border: 1px solid var(--color-secondary);
    -->padding: 0.2rem 1rem;
    < !-- background: var(--color-primary);
    -->transition: all 0.5s ease;
    cursor: pointer;
    < !-- border-radius: 35px;
    -->
    /* -ms-transform: skewX(-15deg); */
    /* -webkit-transform: skewX(-15deg); */
    /* transform: skewX(-15deg); */
    < !-- box-shadow: 3px 2px 5px rgba(172, 172, 172, 0.85);
    -->
}

#signup-button {
    < !-- margin: 1rem;
    -->font-size: 1rem;
    color: var(--color-white);
    padding: 0.2rem 1rem;
    border-style: outset;
    background: var(--color-secondary);
    transition: all 0.5s ease;
    border: 1px solid var(--color-secondary);
    cursor: pointer;
    border-radius: 35px;
    /* -ms-transform: skewX(-15deg); */
    /* -webkit-transform: skewX(-15deg); */
    /* transform: skewX(-15deg); */
    < !-- box-shadow: 3px 2px 5px rgba(172, 172, 172, 0.85);
    -->
}

.sign-button {
    < !-- margin-left: 2rem;
    -->
}

#signin-button:hover {
    color: var(--color-primary);
}

#signup-button:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

@media (max-width: 575px) {

    #signup-button {
        margin: 2rem 0.5rem 2rem;
        font-size: 1rem;
        color: #ffffff;
        padding: 0.5rem 1rem;
        border-style: outset;
        background: var(--color-links);
        transition: all 0.5s ease;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        -ms-transform: skewX(0deg);
        -webkit-transform: skewX(0deg);
        transform: skewX(0deg);
    }
}

/* --------------------------------------------
language
-------------------------------------------- */

@media screen and (max-width: 768px) {
    .navbar #language {
        margin-left: 1rem;
        margin-top: -2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1511px) {
    .navbar #language {
        margin-left: -0.1rem;
    }

    .navbar .icon-cart {
        margin-left: -3.2rem;
    }
}

/* --------------------------------------------
Header
-------------------------------------------- */

.mock3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("/assets/img/slides/mbanner.png") center/cover no-repeat;
    margin-bottom: 0;
    height: 80vh;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0rem;
    animation: changeBackground 50s infinite;
}

.header {
    /* background-color: var(--color-dark-vio); */
    /* 3c0e3c */
    background: linear-gradient(rgba(75, 20, 75, 1), rgba(75, 20, 75, 0.95)),
        url("/assets/img/slides/slide2.jpg") center/cover no-repeat;
    margin-bottom: 0;
    height: 70vh;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0rem;
    animation: changeBackground 50s infinite;
}

.header>.row>.heading>.intro-text>h1 {
    margin: 0rem;
    padding: 5px;
    font-family: serif;
    text-align: center;
    font-size: 4.2rem;
    float: right;
    font-weight: 900;
    text-align: left;
    color: #fff;
    letter-spacing: 2px;
}

.mock3>.intro-text>h1 {
    margin: 0rem;
    padding: 5px;
    font-family: serif;
    text-align: center;
    font-size: 5.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.header>.intro-text>h2 {
    margin: 0rem;
    padding: 5px;
    font-family: serif;
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.header p {
    margin: 1rem auto;
    color: #fff;
    width: 60%;
    opacity: 0.8;
    font-weight: 300;
    font-size: 1.2rem;
    text-align: center;
}

.header button {
    margin-left: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.mock3 button {
    margin: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.header button:hover {
    background: #fff;
    color: #726c6c;
}

/* Styles for the search bar container */
.search-container {
    position: absolute;
    margin-top: 2.2rem;
    right: 0;
    float: inline-end;
    z-index: 999;
    display: none;
    width: 400px;
    background-color: #e6e6e6;
    border-radius: 50px;
    box-shadow: 0 0px 6px 0px #00000052;
}

.search-container form {
    width: 500px;
    margin: 10px;
}

.search-container input[type="search"] {
    padding: 10px;
    width: 350px;
    height: 40px;
    font-size: 15px;
    padding: 0px 20px 0px 40px;
    border-radius: 40px;
    outline: none;
    border: solid white 2px;
    color: white;
    background: var(--color-primary);
    /* background: url('assets/img/icons/track12.png') 7px center no-repeat; */
}

/* Styles for the cart icon */
.cart {
    cursor: pointer;
}

/* MEDIA QUERY: For screens below 768px */
@media (max-width: 768px) {
    .mock3 {
        margin-top: 2rem;
        height: 50vh;
        max-height: 50vh;
    }
    .sub-menu ul li a {
        color: #000000;
        font-size: 16px;
        margin-left: 1rem;
        font-weight: 700 !important;
        transition: all 0.5s ease;
        padding-right: 20px;
    }
    .sub-menu h4 {
        color: #000000;
    }
}






@media screen and (min-width: 1030px) {
    .navbar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 5rem;
        position: relative;
    }

    .navbar-toggler {
        display: none;
    }

    /* the logo size on large screens*/
    .brand-and-icon {
        flex: 0 0 255px;
        border-bottom: none;
        padding: 0;
    }

    .navbar-collapse {
        display: block !important;
        overflow-y: hidden;
        flex: 1 0 auto;
    }

    /* navbar container */
    .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: right;
    }


    /* spacing betweeen the menu list (home, store, services, about...) */
    .navbar-nav>li>a {
        border-bottom: none;
        margin: 0 0.7rem;
        color: var(--color-primary);
        font-weight: 0;
        padding: 1.7rem 1rem 1.7rem 0.8rem;
        /* T R B L */
        font-size: 1.1rem;
        text-transform: capitalize;
        font-family: var(--font-navbar);
    }




    /* split the col of the sub menu into 3 part originally it was 4 parts */
    .navbar-nav>li:hover .sub-menu {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        padding-left: 3rem;
        padding-bottom: 2rem;
    }

    .navbar-nav>li {
        border-bottom: 2px solid transparent;
        transition: border-bottom 0.4s ease;
    }

    /* border line nav item */
    .navbar-nav>li:hover {
        border-bottom-color: var(--color-secondary);
    }

    .sub-menu-item {
        padding-left: 0;
    }

    .sub-menu-item:nth-child(3) {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* header */
    .header {
        height: calc(100vh - 75px);
    }

    .header h2 {
        font-size: 4.5rem;
    }

    .header p {
        width: 40%;
    }
}

/* 15 inch screen */
@media (min-width: 1500px) {
    .navbar-nav {
        margin-right: 7rem;
    }

    #logo .logo-small {
        margin-left: 6rem;
    }

    .search-container {
        margin-right: 8rem;
    }
}

/* 27 inch screen */
@media (min-width: 2000px) {
    .navbar-nav {
        margin-right: 23rem;
    }

    #logo .logo-small {
        margin-left: 3rem;
    }

    .search-container {
        margin-right: 20rem;
    }
}

@media screen and (max-width: 800px) {
    .navbar-toggler {
        margin-right: 0.3rem;
    }
}

@media (max-width: 575px) {
    .header .tracker-container {
        background-color: #fff;
        width: 80%;
    }

    .header .track-field {
        margin-top: 9px;
        outline: none;
        /* Remove the outline */
        border: none;
        /* Remove the border */
        box-shadow: none;
        /* Remove any box-shadow */
    }

    .header {
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header>.intro-text>h1 {
        margin-top: 4rem;
        padding: 5px;
        font-family: serif;
        text-align: center;
        font-size: 2rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: 2px;
    }

    .header>.intro-text>h2 {
        margin-top: 2rem;
        padding: 5px;
        font-family: serif;
        text-align: center;
        font-size: 2rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: 2px;
    }
}

/* --------------------------------------------
Contact
-------------------------------------------- */

.contact-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url(/assets/img/others/contact.jpg) center/cover no-repeat;
    height: 30vh;
    max-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0rem 0rem 3rem 3rem;
}

.contact-banner>h2 {
    margin: 1rem;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
}

.contact-banner p {
    margin: 1rem auto;
    color: #fff;
    width: 60%;
    opacity: 0.8;
    font-weight: 300;
    font-size: 1.2rem;
    text-align: center;
}

/* Media Queries */
@media screen and (min-width: 992px) {

    /* header */
    .contact-banner {
        height: calc(100vh - 75px);
    }

    .contact-banner p {
        width: 40%;
    }
}

@media (max-width: 775px) {
    .contact-banner {
        /* height: 65vh; */
        /* max-height: 65vh; */
        display: none;
    }
}

@media (max-width: 575px) {
    .contact-banner {
        height: 70vh;
        max-height: 70vh;
    }
}

/*--------------------------------------------------------------
# card-quote
--------------------------------------------------------------*/

.card {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.card-header {
    background-color: #007bff;
    color: white;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/*--------------------------------------------------------------
# track-field
--------------------------------------------------------------*/

.tracker-container {
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0);
    width: 45rem;
}

.track-field,
.track-field:focus {
    padding: 20px 20px 20px 20px !important;
    margin-left: 3rem !important;
    border: none !important;
    font-size: 18px !important;
    width: 30rem !important;
    outline: none !important;
}

.tracker-container center button {
    font-size: 1rem;
    color: #ffffff;
    padding: 1.2rem;
    margin-top: 2px;
    margin-left: -10px;
    border-radius: 0px !important;
    background: var(--color-links);
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
}

.tracker-container center button:hover {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
}

@media (max-width: 567px) {

    .track-field,
    .track-field:focus {
        padding: 20px 20px 20px 20px !important;
        margin-left: 3rem !important;
        border: none !important;
        font-size: 10px !important;
        width: 100% !important;
        outline: none !important;
    }

    .tracker-container {
        border-radius: 50px;
        background: none;
        width: 25rem;
    }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/

.container-quote {
    z-index: 999;
    margin-top: -10rem;
    margin-left: 55rem;
    box-shadow: 5px 5px 5px #d7d7d7;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h1 {
    margin-top: 0px;
    font-weight: 500;
    font-size: 32px;
    font-family: var(--font-intro);
    color: var(--color-default);
}

.about .content h4 {
    margin-top: 100px;
    font-weight: 300;
    font-family: var(--font-intro);
    color: var(--color-primary);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}

.about .content ul i {
    flex-shrink: 0;
    font-size: 48px;
    color: var(--color-primary);
    margin-right: 20px;
    line-height: 0;
}

.about .content ul h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
}

.about .content ul p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about img {
    margin-top: 100px;
}




@media (max-width: 768px) {
    .about .content h3 {
        margin-top: 25px;
    }

    .about img {
        margin-top: 15px;
    }
}

/*--------------------------------------------------------------
# slide Show for Navbar featured Item/products
--------------------------------------------------------------*/
.slider-container {
    width: 300px;
    /* Set the width and height to match your image dimensions */
    height: 200px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 1500px;
    /* Total width of all images (5 images * 300px) */
    animation: slide 15s linear infinite;
    /* Adjust the animation duration as needed */
}

.slider .slide-price {
    font-size: 1rem;
    border-radius: 15px;
    padding: 0px 10px 0px 10px;
    background-color: #000;
    font-weight: 700;
    margin-top: -35px;
    margin-right: 5px;
    float: right;
    color: var(--color-brown);
}

.slide {
    flex: 0 0 300px;
    /* Set the width of each slide to match image width */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    15%,
    25% {
        transform: translateX(0);
    }

    30%,
    35% {
        transform: translateX(-300px);
    }

    40%,
    45% {
        transform: translateX(-300px);
    }

    50%,
    55% {
        transform: translateX(-600px);
    }

    60%,
    65% {
        transform: translateX(-600px);
    }

    70%,
    75% {
        transform: translateX(-900px);
    }

    80%,
    85% {
        transform: translateX(-900px);
    }

    90%,
    95% {
        transform: translateX(-900px);
    }

    100% {
        transform: translateX(-900px);
    }
}