/* Start - New Header CSS */
/* font family Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* overwite css of modal started*/
    .mod-close{
    padding: 0px;
    width: 40px;
    height: 40px;
    color: #272343;
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    border:none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}
.mod-close:hover{
    background: #F38521 !important;
    color: #ffffff !important;
}
.custom-flags-li a {
    text-decoration: none;
    transition:all 0.3s ease-in;
}
.custom-flags-li:hover a {
   color:#F38521;
}
.country-select .flag-bg{
   background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.country-select{
    text-decoration:none;
    transition:all 0.3s ease-in;
}
.country-select:hover{
    color:#F38521;
}
/* overwite css of modal ended */

header .modal-backdrop {
    z-index: 0;
}

/* overwite css of modal ended */

body.dark-mode {
    background-color: #f8f8f8 !important;
}

body.light-mode {
    background-color: #ffffff !important
}

header ul.mega_menu {
    width: 1050px !important;
}

header .fixed_me {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background-color: #f8f8f8;
    transition: all 0.3s ease-in-out;
}

.fixed_me.is-sticky {
    /*z-index: 99999999999;*/
    box-shadow: 0 5px 10px rgb(39 35 67 / 30%);
}

header .flex-md-row {
    padding: 15px 0px;
}

header .right-section {
    gap: 20px;
}


body.dark-mode header .custom-logo img {
    box-shadow: rgb(39 35 67 / 22%) 0px 7px 29px 0px;
}

header .custom-logo img {
    width: 180px;
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
}

header .custom-logo span {
    font-size: 16px;
    color: #272343;
}

header .dropdown {
    width: max-content;
    position: relative;
}

header .dropdown span i {
    font-size: 20px;
    line-height: 26px;
}

header .userway {
    font-size: 24px;
    line-height: 30px;
}

header .dropdown-btn {
    gap: 5px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

body.dark-mode header .dropdown-btn {
    color: #ffffff;
}

body.light-mode header .dropdown-btn {
    color: #272343;
}

header .arrow-icon {
    border: solid #272343;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

body.dark-mode header .arrow-icon {
    border: solid #ffffff;
}

body.light-mode header .arrow-icon {
    border: solid #272343;
}

header .post-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #fff !important;
    font-size: 14px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
}

body.light-mode .login-btn,
body.light-mode .register-btn,
body.dark-mode .login-btn,
body.dark-mode .register-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #ffffff !important;
    font-size: 16px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

header .post-btn:hover {
    color: #fff;
    background-color: #F38521;
}

header .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    z-index: 10;
}

header .dropdown.open .dropdown-content {
    width: 200px;
    border-radius: 10px;
    display: block;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .dropdown.open .dropdown-content a {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

header .dropdown.open .dropdown-content a:hover {
    color: #F38521;
}

header .arrow-icon {
    border: solid #fff;
    margin-bottom: 3px;
    border-width: 0 1px 1px 0 !important;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

header .dropdown.open .arrow-icon {
    transform: rotate(-135deg);
    margin-bottom: 0px;

}

header .theme-toggle-btn {
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

body.dark-mode header #mode-toggle.theme-toggle-btn {
    background: #ffffff !important;
}

body.light-mode header #mode-toggle.theme-toggle-btn {
    background: #272343 !important;
}

body.dark-mode header #mode-toggle.theme-toggle-btn span,
body.dark-mode header #mode-toggle.theme-toggle-btn i {
    color: #272343 !important;
}

body.light-mode header #mode-toggle.theme-toggle-btn span,
body.light-mode header #mode-toggle.theme-toggle-btn i {
    color: #ffffff !important;
}

header .theme-toggle-btn:hover {
    background-color: #d26704;
}

header .theme-toggle-btn i {
    margin-right: 5px;
    font-size: 16px;
}

body.dark-mode header .theme-toggle-btn i {
    color: #ffffff;
}

body.light-mode header .theme-toggle-btn i {
    color: #272343;
}

/* Header styles for both modes */

/*body.skin.dark-mode {*/
/*    background-color: #f8f8f8 !important;*/
/*}*/
/*body.skin.light-mode {*/
/*    background-color: #ffffff !important;*/
/*}*/

body.dark-mode header .registerbg {
    background: #00a9da;
    /* Dark header background */
}

body.light-mode header .registerbg,
body.light-mode header.modes {
    background: #ffffff;
    /* Light header background */
}

header .registerbg span i {
    font-size: 22px;
    line-height: 28px;
    transition: all 0.3s ease-in;
}

body.dark-mode header .registerbg span i {
    color: #ffffff;
}

body.light-mode header .registerbg span i {
    color: #272343;
}

header .registerbg span i:hover {
    color: #F38521;
}

header .registerbg span {
    font-size: 14px;
    line-height: 22px;
}

body.dark-mode header .registerbg span {
    color: #ffffff;
}

body.light-mode header .registerbg span {
    color: #272343;
}

header .registerbg a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

header a {
    text-decoration: none;
}

body.dark-mode header .registerbg a {
    color: #ffffff;
}

body.light-mode header .registerbg a {
    color: #272343;
}

body.dark-mode header .registerbg a.transition-all.text-white {
    color: #ffffff !important;
}

body.light-mode header .registerbg a.transition-all.text-white {
    color: #272343 !important;
}

header .registerbg a:hover {
    color: #272343;
}

header .logindropdown-container {
    position: relative;
    display: inline-block;
}

/* Button */
header .logindropdown-toggle {
    background-color: transparent;
    color: #fff;
    padding: 0px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .logindropdown-toggle:focus {
    outline: none;
}

/* Arrow icon */
header .logindropdown-toggle .arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s;
}

header .logindropdown-toggle.active .arrow-down {
    transform: rotate(180deg);
}

/* Dropdown menu */
header .logindropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    z-index: 1003;
    width: max-content;
    opacity: 0;
    pointer-events: none;
}

/* Show dropdown */
header .logindropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

/* Dropdown items */
header .logindropdown-item {
    display: block;
    padding: 3px 10px;
    color: #272343 !important;
    text-decoration: none;
    font-size: 14px !important;
    transition: background-color 0.3s, color 0.3s;
}

header .logindropdown-item:hover {
    color: #F38521 !important;
}

/* Aside bar */
header .open_menu {
    display: none;
    padding: 2px 8px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    transition: all 0.3s ease-in;
}

header .open_menu:hover {
    background: #272343;
    border-color: #272343;
}

header .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    z-index: 10000;
    width: 250px;
    height: 100%;
    background-color: #272343;
    color: #ffffff;
    transition: left 0.3s ease-in-out;
    padding: 80px 20px;
}

header .sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

header .sidebar nav ul li {
    margin: 10px 0;
}

header .nav h5 {
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
}

header .sidebar nav ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

header .close-btn {
    width: 35px;
    height: 30px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
}

header .sidebar.open {
    left: 0;
}

/* Aside bar ended */

/* header tooltips */
header .menu_content a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -55%;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

header .menu_content a:hover::after {
    width: max-content;
    opacity: 1;
    background: #272343;
    padding: 3px;
    font-size: 10px;
    color: #ffffff;
    display: block;
    transform: translateX(-50%) translateY(-5px);
}

header .menu_content a:hover p {
    color: #F38521;
}

/* header tooltips ended */

header .cats_menu span {
    color: #272343;
    font-size: 24px;
}

header .cats_menu p {
    width: max-content;
    color: #272343;
    font-size: 11px;
    line-height: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in;
    margin: 0;
}

header .cats_menu {
    gap: 50px;
    justify-content: center;
    margin-top: 25px;

}

header hr {
    color: #272343;
    background-color: #272343;
    width: 100%;
    opacity: 0.4;
    height: 1px;
    margin: 20px 0px 30px 0px;
}

header .menu_content {
    gap: 40px;
}




header .cats_menu {
    position: relative;
}

header .cats_menu a:hover p {
    color: #f38521;
}

header .megamenu {
    display: flex;
    width: 100%;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    margin: auto;
    box-shadow: 0px 68.7px 286.24px 0px #16193212;
    position: absolute;
    left: 0;
    right: 0;
    top: 160%;
    z-index: -1;
    opacity: -1;
    transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

header .megamenu.show {
    top: 160%;
    z-index: 10005;
    opacity: 1;
    box-shadow: 0px 68.7px 286.24px 0px #16193212;

}

header .megamenu .leftcats {
    width: 270px;
    height: 400px;
    overflow-y: auto;
}

header .megamenu .leftcats button {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 10px 4px;

}

header .megamenu .category {
    width: 96%;
}

header .megamenu .category.active-category {
    background: #f9f2eb;
    border-radius: 5px;
}

header .megamenu .rightcats a:hover {
    color: #fa7722;
}

header .megamenu .viewall {
    position: sticky;
    bottom: 0px;
    left: 0;
}

header .megamenu .viewall a {
    padding: 12px 10px;
    background: #f9f2eb;
    color: #272343;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    width: 96%;
    transition: all 0.3s ease-in;
}

header .megamenu .viewall a:hover {
    background: #ffe8d1;
}

header .megamenu h5 {
    font-size: 25px;
    line-height: 30px;
    color: #272343;
    font-weight: 500;
    padding-bottom: 25px;
}

header .megamenu .rightcats {
    width: 100%;
    height: 400px;
    overflow-y: auto;
    padding: 10px 20px;
}

header .megamenu .rightcats .subcats ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .megamenu .rightcats .subcats ul li a {
    padding: 10px 4px;
}

header .megamenu .rightcats .subcats ul li a:hover {
    color: #F38521;
    border-radius: 5px;
}

header .megamenu .rightcats .subcats {
    /*gap: 30px;*/
    padding-left: 50px;
}

header .megamenu a {
    color: #272343;
    text-align: start;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

header .megamenu a:hover::after {
    background: none;
}

header .subcategory-list {
    display: none;
}

header .subcategory-list.active {
    display: block;
}

/* mega menu ended*/
@media screen and (max-width: 1400px) {
    header .dropdown.open .dropdown-content {
        width: 170px;
    }

    header .dropdown-content {
        left: unset;
        right: 0%;
    }

}

@media screen and (max-width: 1199px) {
    header .menu_content {
        gap: 20px;
    }

    header .cats_menu {
        gap: 29px;
    }

    .country-select span {
        padding: 16px;
    }

    header .megamenu .rightcats .subcats {
        padding-left: 0px;
    }

    header .subcategory-list {
        display: none;
    }

    header .subcategory-list.active {
        display: block;
    }
}

@media screen and (max-width: 991px) {

    .dropdown-toggle::after {
        display: none;
    }

    .list ul li:before {
        background: #ffffff;
    }

    .list ul li:hover a {
        color: #345676 !important;
    }

    ul.px-3 {
        display: block;
    }

    header .custom-logo img {
        width: 120px;
    }

    header .right-section {
        gap: 10px;
    }

    header .post-btn,
    header .dropdown-btn {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown span i {
        font-size: 18px;
        line-height: 24px;
    }

    header .registerbg span,
    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 12px;
        line-height: 16px;
    }

    header .flex-md-row {
        padding: 30px 0px 15px;
    }

    header .open_menu {
        width: 35px;
        height: 30px;
        font-size: 20px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .open_menu i {
        font-size: 18px;
    }

    header .cats_menu {
        display: none !important;
    }

    header .megamenu {
        display: none !important;
    }

    header .megamenu h5 {
        font-size: 20px;
        line-height: 26px;
    }

    header .megamenu a {
        font-size: 14px;
        line-height: 20px;
    }

    header .megamenu .rightcats .subcats {
        padding-left: 0px;
    }

    header .logindropdown-toggle {
        font-size: 14px;
        line-height: 20px;
    }

    .country-select span {
        padding: 16px;
    }

    header .theme-toggle-btn {
        display: none;
    }

}

@media screen and (max-width: 767px) {
    header .fixed_me {
        padding-bottom: 15px;
    }

    header .d-flex.align-items-center.justify-content-end.gap-3 {
        justify-content: center !important;
    }

    header .justify-content-between {
        gap: 20px;
    }

    header .theme-toggle-btn span {
        font-size: 12px;
        line-height: 18px;
    }

    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 12px;
        line-height: 18px;
    }

    header .nav h5 {
        font-size: 20px;
        line-height: 26px;
    }

    header .sidebar nav ul li a {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown.open .dropdown-content {
        width: 130px;
    }

    header .flex-md-row {
        padding: 15px 0px 0px;
    }

    header .megamenu {
        flex-direction: column;
        gap: 20px;
    }

    header .megamenu .leftcats {
        width: 300px;
    }

    header .megamenu .leftcats .category a {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        background: none;
        border: none;
        padding: 10px 4px;

    }

    header .megamenu .category {
        width: 96%;
    }

    header .megamenu .category.active-category {
        background: #f9f2eb;
        border-radius: 5px;
    }

    header .logindropdown-toggle {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 480px) {

    header .post-btn,
    body.light-mode .login-btn,
    body.light-mode .register-btn,
    body.dark-mode .login-btn,
    body.dark-mode .register-btn {
        padding: 6px 6px;
        font-size: 12px;
        line-height: 16px;
    }
}

@media screen and (max-width: 320px) {
    header .dropdown.open .dropdown-content {
        width: max-content;
    }

    header .dropdown-content {
        right: -16%;
    }
}

/* End - New Header CSS */

/* Start - New Footer CSS */

/* reset styling */
/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000;
    display: none;
    width: 50px;
    height: 42px;
    background-color: #1AA9E0;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.back-to-top i {
    font-size: 18px;
    animation: jump 2s infinite;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(4px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.back-to-top.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.back-to-top.hide {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 767px) {
    .back-to-top {
        width: 40px;
        height: 35px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}

/* font family Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* reset styling */
footer {
    background-color: #f8f8f8;
}

footer p,
footer span,
footer a,
footer figure,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    margin: 0px;
    padding: 0px;
    font-family: "Inter", serif;
    text-decoration: none;
}

footer {
    padding: 50px 0px 10px;
    background-color: #ffffff66;
}

footer hr {
    color: #666666;
    background: #666666;
    opacity: 1;
    height: 1px;
    width: 100%;
    margin: 50px 0px 10px 0px;
}

footer img[alt="footerLogo"] {
    width: 150px;
}

footer img[alt="accounts"] {
    width: 200px;
    filter: invert(1);
}

footer p {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

footer .social i {
    color: #666666;
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

footer .social i:hover {
    color: #F38521;
    border-color: #F38521;
}

footer ul {
    list-style: none;
    padding-left: 0px;
    gap: 10px;
}

footer ul a {
    color: #666666 !important;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

footer ul a:hover {
    color: #F38521 !important;
}

footer .justify-content-between {
    padding: 0px 20px;
}

footer label {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.footer_text {
    color: #666666;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

footer form input {
    width: 100%;
    border: 1px solid #E1E3E5;
    font-size: 16px;
    color: #666666;
    background: transparent;
    padding: 10px 10px;
    outline: none;
    border-radius: 10px;

}

footer form button {
    width: 30%;
    background: #F38521;
    border: 1px solid #F38521;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

footer form button:hover {
    background-color: #d26704;
}

footer .cookies a {
    color: #272343;
    text-decoration: underline;
    transition: all 0.3s ease-in;
}

footer .cookies a:hover {
    color: #F38521;
}

@media screen and (max-width: 1199px) {
    footer .justify-content-between {
        padding: 0px 0px;
    }

    footer .social {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 991px) {
    footer {
        padding: 30px 0px;
    }

    footer .row {
        row-gap: 30px;
    }

    footer .cookies a,
    footer form input footer label,
    footer ul a,
    footer p {
        font-size: 14px;
        line-height: 20px;
    }

    footer .pt-2 {
        gap: 14px;
    }

    footer hr {
        margin: 30px 0px 20px 0px;
    }
}

@media screen and (max-width: 767px) {

    footer .cookies a,
    footer form input footer label,
    footer ul a,
    footer p {
        font-size: 12px;
        line-height: 18px;
    }

    footer ul {
        gap: 5px;
    }

    footer .justify-content-between {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media screen and (max-width: 360px) {
    footer form .gap-2 {
        flex-direction: column !important;
    }

    footer form button {
        width: 100%;
    }

    footer .social a i {
        font-size: 14px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
}

/* End - New Footer CSS */

/* Start - Modals CSS */

@import "https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap";

.offcanvas-header {
    background: #00a9da;

}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: white;
    font-size: 30px;
}


.offcanvas-body {
    height: 100%;
    padding: 1rem;
    overflow-y: auto;
}

h1#offcanvasExampleLabel,
button.btn-close.text-reset {
    color: #fff
}

.list {
    position: relative
}

.list h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.list ul {
    position: relative
}

.list ul li {
    position: relative;
    left: 0;
    color: #777;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #373373;
    transition: .5s;
    cursor: pointer
}

.list ul li a {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: .5s
}

.list ul li:hover a {
    color: #fff;
    color: #fff !important;
    text-decoration: none !important
}

.list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00a9da;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s;
    border-radius: 5px
}

.list ul li:hover:before {
    transform: scaleX(1)
}

ul.cat-list li a {
    width: 100%;
    color: #777;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600
}

.modal-content {
    width: 500px;
    padding: 10px;
}

.modal.auction .modal-dialog {
    position: static;
    top: 50%;
    left: 50%;
    transition: transform .3s ease-out;
    transform: translate(-50%, -50%);
}

.App_Suggest a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.App_Suggest a img {
    width: 100%;
    transition: all 0.3s ease-in;
}

.App_Suggest a img[alt="app-store"]:hover,
.App_Suggest a img[alt="google_play"]:hover {
    filter: invert(1);
}

.App_Suggest .modal-content h3 {
    padding-bottom: 0px;
}

.App_Suggest_close {
    background: none;
    border: none;
    padding: 0px;
    position: absolute;
    top: 6px;
    right: 6px;
}

.App_Suggest_close i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    background: #f0f0f0;
    color: #272343;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.App_Suggest_close i:hover {
    background: #F38521;
    color: #ffffff;
}

.App_Suggest h3 span {
    color: #F38521;
}

/* End - Modals CSS */


/* Start - Extras CSS */

.subcats a {
    flex: 0 1 calc(33.3333% - 10px);
    /* Adjusted calculation for three items per row */
    box-sizing: border-box;
    /* Include padding/borders in width calculation */
    text-align: center;
    /* Center align the text */
    padding: 10px;
    /* Add padding for better appearance */
    text-decoration: none;
    /* Remove underline from links */
    color: #333;
    /* Default text color */
}

.uwy.userway_p1 .userway_buttons_wrapper {
    top: 18px !important;
}

.swiper-slide a {
    padding: 10px 0;
    color: #4e575d;
    font-weight: 600;
    text-decoration: none;
    width: 150px;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px !important;
    }
}

/* End - Extras CSS *//* Start - New Header CSS */
/* font family Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* overwite css of modal started*/

header .modal-backdrop {
    z-index: 0;
}

/* overwite css of modal ended */

body.dark-mode {
    background-color: #f8f8f8 !important;
}

body.light-mode {
    background-color: #ffffff !important
}

header ul.mega_menu {
    width: 1050px !important;
}

header .fixed_me {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background-color: #f8f8f8;
    transition: all 0.3s ease-in-out;
}

.fixed_me.is-sticky {
    /*z-index: 99999999999;*/
    box-shadow: 0 5px 10px rgb(39 35 67 / 30%);
}

header .flex-md-row {
    padding: 15px 0px;
}

header .right-section {
    gap: 20px;
}


body.dark-mode header .custom-logo img {
    box-shadow: rgb(39 35 67 / 22%) 0px 7px 29px 0px;
}

header .custom-logo img {
    width: 180px;
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
}

header .custom-logo span {
    font-size: 16px;
    color: #272343;
}

header .dropdown {
    width: max-content;
    position: relative;
}

header .dropdown span i {
    font-size: 20px;
    line-height: 26px;
}

header .userway {
    font-size: 24px;
    line-height: 30px;
}

header .dropdown-btn {
    gap: 5px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

body.dark-mode header .dropdown-btn {
    color: #ffffff;
}

body.light-mode header .dropdown-btn {
    color: #272343;
}

header .arrow-icon {
    border: solid #272343;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

body.dark-mode header .arrow-icon {
    border: solid #ffffff;
}

body.light-mode header .arrow-icon {
    border: solid #272343;
}

header .post-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #fff !important;
    font-size: 14px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
}

body.light-mode .login-btn,
body.light-mode .register-btn,
body.dark-mode .login-btn,
body.dark-mode .register-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #ffffff !important;
    font-size: 16px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

header .post-btn:hover {
    color: #fff;
    background-color: #F38521;
}

header .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    z-index: 10;
}

header .dropdown.open .dropdown-content {
    width: 200px;
    border-radius: 10px;
    display: block;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .dropdown.open .dropdown-content a {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

header .dropdown.open .dropdown-content a:hover {
    color: #F38521;
}

header .arrow-icon {
    border: solid #fff;
    margin-bottom: 3px;
    border-width: 0 1px 1px 0 !important;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

header .dropdown.open .arrow-icon {
    transform: rotate(-135deg);
    margin-bottom: 0px;

}

header .theme-toggle-btn {
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

body.dark-mode header #mode-toggle.theme-toggle-btn {
    background: #ffffff !important;
}

body.light-mode header #mode-toggle.theme-toggle-btn {
    background: #272343 !important;
}

body.dark-mode header #mode-toggle.theme-toggle-btn span,
body.dark-mode header #mode-toggle.theme-toggle-btn i {
    color: #272343 !important;
}

body.light-mode header #mode-toggle.theme-toggle-btn span,
body.light-mode header #mode-toggle.theme-toggle-btn i {
    color: #ffffff !important;
}

header .theme-toggle-btn:hover {
    background-color: #d26704;
}

header .theme-toggle-btn i {
    margin-right: 5px;
    font-size: 16px;
}

body.dark-mode header .theme-toggle-btn i {
    color: #ffffff;
}

body.light-mode header .theme-toggle-btn i {
    color: #272343;
}

/* Header styles for both modes */

/*body.skin.dark-mode {*/
/*    background-color: #f8f8f8 !important;*/
/*}*/
/*body.skin.light-mode {*/
/*    background-color: #ffffff !important;*/
/*}*/

body.dark-mode header .registerbg {
    background: #00a9da;
    /* Dark header background */
}

body.light-mode header .registerbg,
body.light-mode header.modes {
    background: #ffffff;
    /* Light header background */
}

header .registerbg span i {
    font-size: 22px;
    line-height: 28px;
    transition: all 0.3s ease-in;
}

body.dark-mode header .registerbg span i {
    color: #ffffff;
}

body.light-mode header .registerbg span i {
    color: #272343;
}

header .registerbg span i:hover {
    color: #F38521;
}

header .registerbg span {
    font-size: 14px;
    line-height: 22px;
}

body.dark-mode header .registerbg span {
    color: #ffffff;
}

body.light-mode header .registerbg span {
    color: #272343;
}

header .registerbg a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}


body.dark-mode header .registerbg a {
    color: #ffffff;
}

body.light-mode header .registerbg a {
    color: #272343;
}

body.dark-mode header .registerbg a.transition-all.text-white {
    color: #ffffff !important;
}

body.light-mode header .registerbg a.transition-all.text-white {
    color: #272343 !important;
}

header .registerbg a:hover {
    color: #272343;
}

header .logindropdown-container {
    position: relative;
    display: inline-block;
}

/* Button */
header .logindropdown-toggle {
    background-color: transparent;
    color: #fff;
    padding: 0px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .logindropdown-toggle:focus {
    outline: none;
}

/* Arrow icon */
header .logindropdown-toggle .arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s;
}

header .logindropdown-toggle.active .arrow-down {
    transform: rotate(180deg);
}

/* Dropdown menu */
header .logindropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    z-index: 1003;
    width: max-content;
    opacity: 0;
    pointer-events: none;
}

/* Show dropdown */
header .logindropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

/* Dropdown items */
header .logindropdown-item {
    display: block;
    padding: 3px 10px;
    color: #272343 !important;
    text-decoration: none;
    font-size: 14px !important;
    transition: background-color 0.3s, color 0.3s;
}

header .logindropdown-item:hover {
    color: #F38521 !important;
}

/* Aside bar */
header .open_menu {
    display: none;
    padding: 2px 8px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    transition: all 0.3s ease-in;
}

header .open_menu:hover {
    background: #272343;
    border-color: #272343;
}

header .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    z-index: 10000;
    width: 250px;
    height: 100%;
    background-color: #272343;
    color: #ffffff;
    transition: left 0.3s ease-in-out;
    padding: 80px 20px;
}

header .sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

header .sidebar nav ul li {
    margin: 10px 0;
}

header .nav h5 {
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
}

header .sidebar nav ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

header .close-btn {
    width: 35px;
    height: 30px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
}

header .sidebar.open {
    left: 0;
}

/* Aside bar ended */

/* header tooltips */
header .menu_content a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -55%;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

header .menu_content a:hover::after {
    width: max-content;
    opacity: 1;
    background: #272343;
    padding: 3px;
    font-size: 10px;
    color: #ffffff;
    display: block;
    transform: translateX(-50%) translateY(-5px);
}

header .menu_content a:hover p {
    color: #F38521;
}

/* header tooltips ended */

header .cats_menu span {
    color: #272343;
    font-size: 24px;
}

header .cats_menu p {
    width: max-content;
    color: #272343;
    font-size: 11px;
    line-height: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in;
    margin: 0;
}

header .cats_menu {
    gap: 50px;
    justify-content: center;
    margin-top: 25px;

}

header hr {
    color: #272343;
    background-color: #272343;
    width: 100%;
    opacity: 0.4;
    height: 1px;
    margin: 20px 0px 30px 0px;
}

header .menu_content {
    gap: 40px;
}




header .cats_menu {
    position: relative;
}

header .cats_menu a:hover p {
    color: #f38521;
}

header .megamenu {
    display: flex;
    width: 100%;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    margin: auto;
    box-shadow: 0px 68.7px 286.24px 0px #16193212;
    position: absolute;
    left: 0;
    right: 0;
    top: 160%;
    z-index: -1;
    opacity: -1;
    transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

header .megamenu.show {
    top: 160%;
    z-index: 10005;
    opacity: 1;
    box-shadow: 0px 68.7px 286.24px 0px #16193212;

}

header .megamenu .leftcats {
    width: 270px;
    height: 400px;
    overflow-y: auto;
}

header .megamenu .leftcats button {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 10px 4px;

}

header .megamenu .category {
    width: 96%;
}

header .megamenu .category.active-category {
    background: #f9f2eb;
    border-radius: 5px;
}

header .megamenu .rightcats a:hover {
    color: #fa7722;
}

header .megamenu .viewall {
    position: sticky;
    bottom: 0px;
    left: 0;
}

header .megamenu .viewall a {
    padding: 12px 10px;
    background: #f9f2eb;
    color: #272343;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    width: 96%;
    transition: all 0.3s ease-in;
}

header .megamenu .viewall a:hover {
    background: #ffe8d1;
}

header .megamenu h5 {
    font-size: 25px;
    line-height: 30px;
    color: #272343;
    font-weight: 500;
    padding-bottom: 25px;
}

header .megamenu .rightcats {
    width: 100%;
    height: 400px;
    overflow-y: auto;
    padding: 10px 20px;
}

header .megamenu .rightcats .subcats ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .megamenu .rightcats .subcats ul li a {
    padding: 10px 4px;
}

header .megamenu .rightcats .subcats ul li a:hover {
    color: #F38521;
    border-radius: 5px;
}

header .megamenu .rightcats .subcats {
    /*gap: 30px;*/
    padding-left: 50px;
}

header .megamenu a {
    color: #272343;
    text-align: start;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

header .megamenu a:hover::after {
    background: none;
}

header .subcategory-list {
    display: none;
}

header .subcategory-list.active {
    display: block;
}

/* mega menu ended*/
@media screen and (max-width: 1400px) {
    header .dropdown.open .dropdown-content {
        width: 170px;
    }

    header .dropdown-content {
        left: unset;
        right: 0%;
    }

}

@media screen and (max-width: 1199px) {
    header .menu_content {
        gap: 20px;
    }

    header .cats_menu {
        gap: 29px;
    }

    .country-select span {
        padding: 16px;
    }

    header .megamenu .rightcats .subcats {
        padding-left: 0px;
    }

    header .subcategory-list {
        display: none;
    }

    header .subcategory-list.active {
        display: block;
    }
}

@media screen and (max-width: 991px) {

    .dropdown-toggle::after {
        display: none;
    }

    .list ul li:before {
        background: #ffffff;
    }

    .list ul li:hover a {
        color: #345676 !important;
    }

    ul.px-3 {
        display: block;
    }

    header .custom-logo img {
        width: 120px;
    }

    header .right-section {
        gap: 10px;
    }

    header .post-btn,
    header .dropdown-btn {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown span i {
        font-size: 18px;
        line-height: 24px;
    }

    header .registerbg span,
    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 12px;
        line-height: 16px;
    }

    header .flex-md-row {
        padding: 30px 0px 15px;
    }

    header .open_menu {
        width: 35px;
        height: 30px;
        font-size: 20px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .open_menu i {
        font-size: 18px;
    }

    header .cats_menu {
        display: none !important;
    }

    header .megamenu {
        display: none !important;
    }

    header .megamenu h5 {
        font-size: 20px;
        line-height: 26px;
    }

    header .megamenu a {
        font-size: 14px;
        line-height: 20px;
    }

    header .megamenu .rightcats .subcats {
        padding-left: 0px;
    }

    header .logindropdown-toggle {
        font-size: 14px;
        line-height: 20px;
    }

    .country-select span {
        padding: 16px;
    }

    header .theme-toggle-btn {
        display: none;
    }

}

@media screen and (max-width: 767px) {
    header .fixed_me {
        padding-bottom: 15px;
    }

    header .d-flex.align-items-center.justify-content-end.gap-3 {
        justify-content: center !important;
    }

    header .justify-content-between {
        gap: 20px;
    }

    header .theme-toggle-btn span {
        font-size: 12px;
        line-height: 18px;
    }

    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 12px;
        line-height: 18px;
    }

    header .nav h5 {
        font-size: 20px;
        line-height: 26px;
    }

    header .sidebar nav ul li a {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown.open .dropdown-content {
        width: 130px;
    }

    header .flex-md-row {
        padding: 15px 0px 0px;
    }

    header .megamenu {
        flex-direction: column;
        gap: 20px;
    }

    header .megamenu .leftcats {
        width: 300px;
    }

    header .megamenu .leftcats .category a {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        background: none;
        border: none;
        padding: 10px 4px;

    }

    header .megamenu .category {
        width: 96%;
    }

    header .megamenu .category.active-category {
        background: #f9f2eb;
        border-radius: 5px;
    }

    header .logindropdown-toggle {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 480px) {

    header .post-btn,
    body.light-mode .login-btn,
    body.light-mode .register-btn,
    body.dark-mode .login-btn,
    body.dark-mode .register-btn {
        padding: 6px 6px;
        font-size: 12px;
        line-height: 16px;
    }
}

@media screen and (max-width: 320px) {
    header .dropdown.open .dropdown-content {
        width: max-content;
    }

    header .dropdown-content {
        right: -16%;
    }
}

/* End - New Header CSS */

/* Start - New Footer CSS */

/* reset styling */
/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000;
    display: none;
    width: 50px;
    height: 42px;
    background-color: #1AA9E0;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.back-to-top i {
    font-size: 18px;
    animation: jump 2s infinite;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(4px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.back-to-top.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.back-to-top.hide {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 767px) {
    .back-to-top {
        width: 40px;
        height: 35px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}

/* font family Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* reset styling */
footer {
    background-color: #f8f8f8;
}

footer p,
footer span,
footer a,
footer figure,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    margin: 0px;
    padding: 0px;
    font-family: "Inter", serif;
    text-decoration: none;
}

footer {
    padding: 50px 0px 10px;
    background-color: #ffffff66;
}

footer hr {
    color: #666666;
    background: #666666;
    opacity: 1;
    height: 1px;
    width: 100%;
    margin: 50px 0px 10px 0px;
}

footer img[alt="footerLogo"] {
    width: 150px;
}

footer img[alt="accounts"] {
    width: 200px;
    filter: invert(1);
}

footer p {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

footer .social i {
    color: #666666;
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

footer .social i:hover {
    color: #F38521;
    border-color: #F38521;
}

footer ul {
    list-style: none;
    padding-left: 0px;
    gap: 10px;
}

footer ul a {
    color: #666666 !important;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

footer ul a:hover {
    color: #F38521 !important;
}

footer .justify-content-between {
    padding: 0px 20px;
}

footer label {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.footer_text {
    color: #666666;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

footer form input {
    width: 100%;
    border: 1px solid #E1E3E5;
    font-size: 16px;
    color: #666666;
    background: transparent;
    padding: 10px 10px;
    outline: none;
    border-radius: 10px;

}

footer form button {
    width: 30%;
    background: #F38521;
    border: 1px solid #F38521;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

footer form button:hover {
    background-color: #d26704;
}

footer .cookies a {
    color: #272343;
    text-decoration: underline;
    transition: all 0.3s ease-in;
}

footer .cookies a:hover {
    color: #F38521;
}

@media screen and (max-width: 1199px) {
    footer .justify-content-between {
        padding: 0px 0px;
    }

    footer .social {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 991px) {
    footer {
        padding: 30px 0px;
    }

    footer .row {
        row-gap: 30px;
    }

    footer .cookies a,
    footer form input footer label,
    footer ul a,
    footer p {
        font-size: 14px;
        line-height: 20px;
    }

    footer .pt-2 {
        gap: 14px;
    }

    footer hr {
        margin: 30px 0px 20px 0px;
    }
}

@media screen and (max-width: 767px) {

    footer .cookies a,
    footer form input footer label,
    footer ul a,
    footer p {
        font-size: 12px;
        line-height: 18px;
    }

    footer ul {
        gap: 5px;
    }

    footer .justify-content-between {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media screen and (max-width: 360px) {
    footer form .gap-2 {
        flex-direction: column !important;
    }

    footer form button {
        width: 100%;
    }

    footer .social a i {
        font-size: 14px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
}

/* End - New Footer CSS */

/* Start - Modals CSS */

@import "https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap";

.offcanvas-header {
    background: #00a9da;

}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: white;
    font-size: 30px;
}

.offcanvas-header button.mode-close {
    padding: 4px 8px;
    color: #272343;
    background: #fff;
    border:none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}
.offcanvas-header button.mode-close:hover {
    color: #fff;
    background: #F38521;
}
.offcanvas-header button.mode-close span {
    line-height: 21px;
    width: 20px;
    height: 24px;
}
.offcanvas-body {
    height: 100%;
    padding: 1rem;
    overflow-y: auto;
}

h1#offcanvasExampleLabel,
button.btn-close.text-reset {
    color: #fff
}

.list {
    position: relative
}

.list h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.list ul {
    position: relative
}

.list ul li {
    position: relative;
    left: 0;
    color: #777;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #373373;
    transition: .5s;
    cursor: pointer
}

.list ul li a {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: .5s
}

.list ul li:hover a {
    color: #fff;
    color: #fff !important;
    text-decoration: none !important
}

.list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00a9da;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s;
    border-radius: 5px
}

.list ul li:hover:before {
    transform: scaleX(1)
}

ul.cat-list li a {
    width: 100%;
    color: #777;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600
}

.modal-content {
    width: 500px;
    padding: 10px;
}

.modal.auction .modal-dialog {
    position: static;
    top: 50%;
    left: 50%;
    transition: transform .3s ease-out;
    transform: translate(-50%, -50%);
}

.App_Suggest a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.App_Suggest a img {
    width: 100%;
    transition: all 0.3s ease-in;
}

.App_Suggest a img[alt="app-store"]:hover,
.App_Suggest a img[alt="google_play"]:hover {
    filter: invert(1);
}

.App_Suggest .modal-content h3 {
    padding-bottom: 0px;
}

.App_Suggest_close {
    background: none;
    border: none;
    padding: 0px;
    position: absolute;
    top: 6px;
    right: 6px;
}

.App_Suggest_close i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    background: #f0f0f0;
    color: #272343;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.App_Suggest_close i:hover {
    background: #F38521;
    color: #ffffff;
}

.App_Suggest h3 span {
    color: #F38521;
}

/* End - Modals CSS */


/* Start - Extras CSS */

.subcats a {
    flex: 0 1 calc(33.3333% - 10px);
    /* Adjusted calculation for three items per row */
    box-sizing: border-box;
    /* Include padding/borders in width calculation */
    text-align: center;
    /* Center align the text */
    padding: 10px;
    /* Add padding for better appearance */
    text-decoration: none;
    /* Remove underline from links */
    color: #333;
    /* Default text color */
}

.uwy.userway_p1 .userway_buttons_wrapper {
    top: 18px !important;
}

.swiper-slide a {
    padding: 10px 0;
    color: #4e575d;
    font-weight: 600;
    text-decoration: none;
    width: 150px;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px !important;
    }
}

/* End - Extras CSS */


/* Regionality CSS */

custom-home-cat-box-title .country-select img {
    width: 76px;
    border-radius: 50px;
    padding: 22px !important;
}

.dark-mode .custom-home-cat-box-title .country-select img {
    background: #ffffff;
}

.light-mode .custom-home-cat-box-title .country-select img {
    background: #f8f8f8;
}

.custom-home-cat-box-title .custom-block {
    font-weight: 500;
    display: block;
    font-size: 16px;
}

.custom-flags-li {
    padding: 10px 25px;
    text-align: center;
}

/* Countries styling css below */

    ol{
        list-style-type:none !important;
    }
    .banner-background .country-select{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
}
    .banner-background .bg-custom-flags{
        max-width:unset !important;
        width:35px;
    }
    .banner-background .flag-bg{
            background: white;
            width: 70px;
            height: 70px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
    }
    .banner-background .flag-name{
        color:#272343;
        transition:all 0.3s ease-in;
    }
    .banner-background .country-select:hover .flag-name{
        color:#F38521;
    }
    .province-select{
       color: #272343;
       text-decoration:none;
        transition: all 0.3s ease-in;
    }
    .province-select:hover{
       color: #f38521;
    }
  .clear-section {
        background-color: #F38521;
        padding: 12px 20px;
        color: #fff;
        border-radius: 5px;
        font-size: 16px;
        text-decoration:none;
        transition: all 0.3s ease-in;
    }
    .clear-section:hover {
        background-color: #00a9da;
        color: #fff;
    }

/* Countries styling css above */

       .default-breadcrumb li.crumb::after,
.default-breadcrumb li.crumb::before {
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 1.5em;
    content: ""
}

.default-breadcrumb li.crumb .link,
.locationModalTrigger-555572005,
.open-on-hover .header_username,
.text-3814801860 {
    text-overflow: ellipsis;
    white-space: nowrap
}
.default-breadcrumb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    font-size: 1.3rem
    margin-bottom:0px !important;
}

.default-breadcrumb li.crumb {
    position: relative;
    padding: .25em;
    background-color: #00a9da;
    color: #8093a7
}

.default-breadcrumb li.crumb::after {
    left: 100%;
    background-color: #00a9da;
    clip-path: polygon(50% 50%, -50% -50%, 0 100%)
}

.default-breadcrumb li.crumb::before {
    left: 3px;
    background-color: #00a9da;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 50% 50%, 0% 0%);
    transform: translateX(-100%)
}

.default-breadcrumb li.crumb:not(:first-child) {
    margin-left: 2em
}

.default-breadcrumb li.crumb:first-child {
    padding-left: .5em;
    border-radius: 5px 0 0 5px
}

.default-breadcrumb li.crumb.active {
    background-color: #d85200;
    color: #fff
}

.default-breadcrumb li.crumb.active::after,
.default-breadcrumb li.crumb.active::before {
    background-color: #00b0ff
}

.default-breadcrumb li.crumb .link {
    max-width: 250px;
    overflow: hidden;
    padding:6px 0px;
}

.default-breadcrumb li.crumb a {
    color: #fff;
    font-size: 16px;
    text-decoration:none;
}

.default-breadcrumb li.crumb a:hover {
    color: #ffffff
}
.default-breadcrumb .country-select{
    display:inline;
}

 <!-- SEO Text of EzeStore Started -->
        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        /* reset styling */
        body {
            background-color: #f8f8f8;
        }

        p,
        span,
        a,
        figure,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0px;
            padding: 0px;
            font-family: "Inter", serif;
            text-decoration: none;
        }

        .Eze_Autos ul li::before {
            content: "•";
            color: #272343;
            font-size: 24px;
        }

        .Eze_Autos ul li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .Eze_Autos {
            padding: 50px 0px;
        }

        .Eze_Autos h1 {
            font-size: 30px;
            line-height: 36px;
            font-weight: 600;
            color: #272343;
            padding-bottom: 15px;
        }

        .Eze_Autos h2 {
            font-size: 24px;
            line-height: 30px;
            font-weight: 500;
            color: #272343;
            padding-bottom: 12px;
        }

        .Eze_Autos h3 {
            font-size: 20px;
            line-height: 26px;
            font-weight: 500;
            color: #272343;
        }

        .Eze_Autos strong {
            font-size: 18px;
            line-height: 24px;
            font-weight: 500;
            color: #272343;
        }

        .Eze_Autos ul li,
        .Eze_Autos p {
            font-size: 16px;
            line-height: 22px;
            font-weight: 400;
            color: #666666;
        }

        .Eze_Autos a {
            color: #272343;
            font-size: 18px;
            line-height: 24px;
            font-weight: 500;
            transition: all 0.3s ease-in;
        }

        .Eze_Autos .tbl {
            width: 100%;
            border-collapse: collapse;
        }

        .Eze_Autos .tbl th,
        .Eze_Autos .tbl td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #ddd;
            vertical-align: top;
        }

        .Eze_Autos .tbl th {
            background: #f4f4f4;
            font-weight: bold;
        }

        @media screen and (max-width: 991px) {
            .Eze_Autos {
                padding: 30px 0px;
            }

            .Eze_Autos strong {
                font-size: 16px;
                line-height: 22px;
            }

            .Eze_Autos ul li,
            .Eze_Autos p {
                font-size: 14px;
                line-height: 20px;
            }

            .Eze_Autos h1 {
                font-size: 26px;
                line-height: 32px;
            }

            .Eze_Autos h2 {
                font-size: 20px;
                line-height: 26px;
            }

            .Eze_Autos h3 {
                font-size: 18px;
                line-height: 24px;
            }
        }

        @media screen and (max-width: 767px) {
            .Eze_Autos strong {
                font-size: 14px;
                line-height: 20px;
            }

            .Eze_Autos ul li,
            .Eze_Autos p {
                font-size: 12px;
                line-height: 18px;
            }

            .Eze_Autos .tbl,
            .Eze_Autos .tbl thead,
            .Eze_Autos .tbl tbody,
            .Eze_Autos .tbl th,
            .Eze_Autos .tbl td,
            .Eze_Autos .tbl tr {
                display: block;
                width: 100%;
            }

            .Eze_Autos .tbl thead {
                display: none;
            }

            .Eze_Autos .tbl td {
                padding: 10px;
                border: none;
                border-bottom: 1px solid #eee;
                position: relative;
            }

            .Eze_Autos .tbl td::before {
                content: attr(data-label);
                font-weight: bold;
                display: block;
                margin-bottom: 5px;
                color: #333;
            }
        }
         <!-- SEO Text of EzeStore Ended -->
