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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

:root {
    --primary-color: #e25915;
    --secondary-color: #fff;
    --white-color: #fff;
    --heading-color: #e25915;
    --marquee-color: rgb(248, 154, 32);
    --text-color: #4b4848;
    --title--color: #e25915;
    --service--box-color: #7d503e;
    --service--heading-color: #ffa751;
    --testimonial--section-color: #d9d9d9;
    --header--form-color: #bdbdbd;
    --background-color: #f1f3f8;
    --primary-font: "Roboto", sans-serif;
    --secondary-font: "Domine", serif;
    --linear_color: linear-gradient(
        90deg,
        rgba(255, 153, 51, 1) 0%,
        rgba(255, 69, 0, 1) 100%
    );
    --sunrise_color: linear-gradient(
        0deg,
        rgba(255, 167, 0, 1) 0%,
        rgba(255, 129, 0, 1) 25%,
        rgba(255, 103, 0, 1) 50%,
        rgba(255, 77, 0, 1) 75%
    );
}

a {
    text-decoration: none;
}

.form-control:focus {
    box-shadow: none;
    border: none;
}

.container-lg {
    max-width: 1420px;
}

/* header section css */
.header__sticky {
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 1s cubic-bezier(0.23, 1, 0.32, 1) both;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.04);
    left: 0;
    position: fixed !important;
    right: 0;
    top: 0;
    z-index: 999 !important;
    background-color: white;
    border: none !important;
    border-top: 4px solid #e25915 !important;
}

@-webkit-keyframes stickySlideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stickySlideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 65px;
}

.header__content--search form {
    /* border: 1px solid rgb(194, 194, 194);
    border: 1px solid var(--header--form-color); */
    border-radius: 40px;
    width: 440px;
}

.header__top--content {
    background: #e25915;
    padding: 2px 0;
}

.header__content--sociallinks .social__links--content a i {
    color: #fff;
    font-size: 18px;
    padding: 2px 8px;
}

.header__content--search input {
    outline: none;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
    height: 30px;
    padding-left: 14px;
    color: #e25915;
}

.header__content--search form {
    border: 2px solid #e25915;
    padding: 5px 0px;
    position: relative;
}

.header__content--search button {
    position: absolute;
    top: 2px;
    right: 4px;
}

.header__content--search button i {
    font-size: 24px;
    font-weight: 300;
    color: #e25915;
}

.header__content--info span {
    color: var(--white-color);
    font-size: 14px;
}

.header__content--actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header__content--icons a {
    color: #e25915;
    font-size: 28px;
    font-weight: 300;
}

.header__container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/img/background2.png);
    background-position: top;
    border-top: 1px solid rgba(204, 160, 0, 0.2);
    border-bottom: 1px solid rgba(204, 160, 0, 0.2);
}

.header__container nav ul li a {
    padding: 15px 20px;
    display: block;
}

.header__container a {
    color: var(--primary-color);
    font-size: 0.875rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.header__content--icons {
    padding-right: 20px;
}

.header__content--logo img {
    width: 200px;
}

@media only screen and (max-width: 1100px) {
    .header__top--content {
        display: none;
    }

    header {
        height: 95px;
    }

    .header__content {
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.04);
        position: fixed;
        width: 100%;
        background-color: white;
        top: 0;
        z-index: 9999;
        padding: 20px;
    }

    .header__container {
        display: none;
    }

    .header__content--search form {
        width: 320px;
    }
}

.header__mobile-nav {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .header__mobile-nav {
        display: block;
    }

    .header__content--actions {
        display: none;
    }

    .header__mobile-nav a {
        text-decoration: none;
        font-size: 28px;
        color: #e25915;
    }
}

@media only screen and (max-width: 768px) {
    .header__content--search {
        display: none;
    }

    .header__content--mobile {
        display: block;
        margin: 20px;
    }

    .header__content--mobile form {
        width: 100%;
    }

    .header__content--logo img {
        width: 160px;
    }

    .header__content--actions {
        display: none;
    }

    .header__mobile-nav {
        display: block;
    }

    .header__mobile-nav a {
        text-decoration: none;
        font-size: 28px;
        color: #e25915;
    }

    .mobile__menu {
        z-index: 99999999;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .mobile__menu .offcanvas-header {
        border-top: 3px solid #e25915;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .mobile__menu .offcanvas-body {
        padding: 0;
    }

    .offcanvas-backdrop.show {
        z-index: 9999999;
    }

    .offcanvas-header .btn-close {
        box-shadow: none;
    }
}

/* swiper css */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

/* swiper navigation button */
.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    background-color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.mySwiper:hover > .swiper-button-next,
.mySwiper:hover > .swiper-button-prev {
    opacity: 1;
}

/* .swiper-button-next {
    right: 20px;
} */
.swiper-button-prev {
    left: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 14px;
    color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
    .banner .banner__right--container {
        margin-top: 1.5rem !important;
    }
}

/* site news text marquee */
.site__news {
    background-color: #e25915;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999999;
}

.site__news marquee h1 {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 0px;
    line-height: 1;
}

/* about page css */
.about__founder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about__founder--content {
    background-image: url(../images/img/aboutbackground2.png);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    height: 100%;
}

.about__content {
    background-image: url(../images/img/aboutbackground1.png);
    background-position: center;
    background-size: cover;
    padding: 46px 20px;
    border-radius: 5px;
}

.about__founder--image {
    position: relative;
    border: 1.5px solid var(--primary-color);
    padding: 10px;
}

.about__founder--image img {
    background: white;
}

.about__founder--title h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 43px;
    color: #e25915;
    font-family: var(--secondary-font);
}

.about__founder--title span {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #885059;
}

.about__founder--quote p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: justify;
    color: var(--text-color);
}

.about__founder--content {
    padding: 50px 50px 40px 116px;
    margin-left: -88px;
}

.btn-1 {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 30px;
    font-size: 15px;
    transition: background-color 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-1:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.about__members span {
    color: #e25915;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

@media only screen and (max-width: 1100px) {
    .about .col-lg-8 {
        /* width: 100%; */
    }

    .about .baba__section {
        /* width: 100%; */
        margin-top: 30px;
    }
}

@media only screen and (max-width: 900px) {
    .about .baba__section {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .about__founder {
        display: block;
    }

    .about__founder--image {
        margin: 20px;
        border-radius: 10px;
    }

    .about__founder--content {
        margin: 0;
        padding: 20px;
        margin-top: -120px;
        z-index: 999;
        position: relative;
        height: auto;
        margin-bottom: 20px;
    }
}

/* puja section css */
.title {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    color: var(--heading-color);
    font-family: var(--secondary-font);
    position: relative;
}

.title::after {
    content: url(../images/img/title.png);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.puja__container--heading,
.category__container--heading,
.highlights__container--heading,
.services__container--heading,
.testimonial__container--heading {
    text-align: center;
}

/* puja section css */
.owl-dots .owl-dot.active span {
    width: 34px;
    background: #e25915 !important;
}

.puja__content--title {
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: var(--title--color);
}

.puja__content--title h3 {
    font-size: 24px;
}

.puja__content--img img {
    width: 160px !important;
    height: auto;
}

.puja__content--title span {
    font-weight: 300;
    line-height: 25px;
}

.puja__content--desc p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: justify;
    color: black;
    margin-bottom: 0;
}

.puja__content {
    /* background-image: url(../images/img/puja/puja.png); */
    background-color: white;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 20px 10px 25px 10px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 0.5em;
}

.puja__content--card {
    padding: 10px;
}

.circle {
    background-color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    height: 45px;
    width: 45px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.date__number span {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--heading-color);
}

.btn-2 {
    background-color: #e25915;
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 50rem;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.5s ease-out;
}

.btn-2:hover {
    background-color: #e25915;
}

.puja__content .offer {
    position: absolute;
    border-radius: 50%;
    position: absolute;
    top: -120px;
    right: -100px;
    background-color: #e25915;
    transition: all 0.5s ease-in-out;
    height: 200px;
    width: 200px;
}

.puja__content--title span {
    color: var(--white-color);
    font-size: 16px;
}

.puja__content--wrapper {
    position: relative;
    z-index: 100;
}

.highlights__content--button:hover a {
    color: var(--heading-color);
}

/* highlights section csss */
.highlights__content--title h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 21px;
}

.product__container--img a {
    display: block;
}

.product__container--title {
    margin-top: 10px;
}

.product__container--title h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 0;
}

.product__content {
    background-color: white;
    padding: 30px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.highlights__content {
    /* background-color: #EEF0F6; */
    background-color: #fde9cf;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 0.5em;
}

.highlights__content {
    padding: 35px 28px 28px 28px;
}

.category__content--title {
    padding: 5px 5px;
    width: 100%;
    color: #e25915;
    text-align: center;
}

.category__content--title h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 0;
    color: #e25915;
}

.category__content--image {
    height: 239px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.category__content--image img {
    border-radius: 10px;
    width: 100%;
}

.highlights,
.puja {
    background-color: #f2f2f2;
    padding: 30px 0;
    padding-bottom: 40px;
}

.highlights__content--button {
    width: fit-content;
}

.highlights__content--button a {
    background-color: var(--primary-color);
    font-size: 15px;
    color: white;
    padding: 8px 20px;
    border-radius: 50rem;
    display: inline-block;
}

.highlights__content--button a:hover {
    background-color: #f89a20;
    color: white;
}

.category__content {
    transition: all 3s linear;
    overflow: hidden;
}

.category__content:hover .category__content--title {
    width: 100%;
    height: 100%;
    transition: all 3s linear;
}

.category__content:hover > .category__content--title h5 {
    color: #e25915;
}

.category__content--image:hover img {
    transform: scale(1.2);
    transition: all 3s linear;
}

@media only screen and (max-width: 1100px) {
    .category__content--image {
        height: auto !important;
    }
}

/* Product Item */
.product__item {
    border-radius: 5px;
    border-top: 3px solid #e25915;
    background-color: white;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 0.5em;
}

.product__item:hover {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.product__item-image a {
    display: block;
}

.product__item-image img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 240px;
    object-fit: contain;
}

.product__item-description {
    padding: 10px;
    padding-bottom: 20px;
}

.product__item-title {
    text-align: center;
}

.product__item h3 {
    font-size: 16px;
    font-weight: 400;
}

.product__item h3 a {
    color: black;
}

.product__slider .owl-stage-outer {
    padding: 10px;
    margin: -10px;
}

.product__item-price {
    color: #e25915;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.product__item-cart a {
    display: block;
    background-color: #e25915;
    color: white;
    border-radius: 50rem;
    text-align: center;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.product__item-cart a:hover {
    background-color: rgb(248, 154, 32);
}

.product__item-image {
    position: relative;
}

.product__item-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e25915;
    padding: 8px;
    border-radius: 50rem;
    box-shadow: 0 0 0px 5px rgb(242 112 35 / 28%);
}

.product__item-wishlist:hover {
    background-color: rgb(248, 154, 32);
    box-shadow: 0 0 0px 5px rgb(248, 154, 32, 28%);
}

.product__item-wishlist a {
    color: #ffffff;
    display: block;
    height: 18px;
    width: 18px;
}

.product__item-wishlist a i {
    font-size: 18px;
}

/* services section css start */
.services__content--icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white-color);
    stroke: var(--white-color);
}

.services__content--card {
    background-color: #fde9cf;
    border-radius: 0px;
    height: 220px;
    padding: 70px 20px 16px 20px;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.services__content--title h3 {
    font-size: 24px;
    text-align: center;
    color: #d7393e;
}

.services__content--info p {
    color: #212529bf;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
}

.services__content--in {
    width: 73px;
    height: 73px;
    background-color: #e25915;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__content--icon {
    display: flex;
    justify-content: center;
    margin-bottom: -55px;
}

.services__content--out {
    background-color: var(--white-color);
    padding: 7px;
    border-radius: 50%;
}

@media only screen and (max-width: 1100px) {
    .services__content--card {
        height: 260px;
    }
}

/* testimonial section css */
.testimonial {
    padding-top: 3rem;
}

.testimonial__container {
    background-color: #fde9cf;
    padding: 50px 30px;
}

.testimonial__content--item p {
    font-size: 14px;
    line-height: 160.5%;
    font-weight: 500;
    text-align: justify;
    letter-spacing: 0.02em;
}

.testimonial__content--info h3 {
    font-size: 18px;
    line-height: 22px;
    color: #e25915;
    text-transform: uppercase;
    margin: 0;
}

.testimonial__content--info span {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    font-style: italic;
}

.testimonial__content {
    background-color: var(--white-color);
    padding: 40px 20px 25px 20px;
    border-radius: 5px;
    height: 400px;
    border-top: 3px solid #e25915;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

/* subscription section css */
.subscription__container {
    background: #fde9cf;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.social__links--title h4,
.subscription__content--title {
    font-weight: 500;
    font-size: 30px;
    line-height: 28px;
    color: var(--heading-color);
}

.social__links--content a i {
    font-size: 25px;
    color: black;
}

.subscription__content form input:focus {
    box-shadow: none;
    border: none;
}

.subscription__content form input {
    border: none;
    outline: none;
}

.subscription__content form {
    border: 1px solid var(--heading-color);
    border-radius: 5px;
}

.subscription__content form button {
    background-color: var(--heading-color);
    border-radius: 0;
    color: var(--white-color);
}

/* footer secrtion :start */
footer {
}

footer ul li {
    list-style-type: none;
    margin-bottom: 5px;
}

.footer__content--title h4 {
    color: #e25915;
    margin-bottom: 18px;
}

.footer__content ul li a {
    color: #571f09;
    transition: all 0.3s ease;
}

.footer__content ul li a i {
    color: #d11e27;
}

.footer__content ul li a:hover {
    color: #d11e27;
    margin-left: 10px;
}

.footer__container {
    padding-left: 20px;
}

.footer {
    background-image: url(../images/img/footer/footer-banner.jpg);
    /* background-image: url(../images/img/footer/footer.png); */
    background-repeat: no-repeat;
    padding: 60px;
    padding-bottom: 30px;
    background-size: contain;
    background-repeat: round;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.footer__payment img {
    width: 50px;
    height: auto;
    padding: 0px 5px;
}

.footer__credentials {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__credentials span {
    color: #e25915;
}

.footer__copyrights p,
.footer__company--development p {
    color: #571f09;
}

@media only screen and (max-width: 1100px) {
    .footer {
        padding: 20px;
    }

    .footer .container {
        max-width: 1420px;
    }
}

@media only screen and (max-width: 768px) {
    .footer__credentials {
        display: block;
    }

    .footer__credentials .footer__payment {
        margin: 10px 0;
    }
}

/* Blog */
.blog__box {
    height: 100%;
    background-color: white;
}

.puja__slider .owl-stage-outer,
.contact__slider .owl-stage-outer,
.blog__slider .owl-stage-outer,
.testimonial__slider .owl-stage-outer,
.service__slider .owl-stage-outer {
    padding: 10px;
    margin: -10px;
}

.blog__item {
    height: 100%;
    display: block;
    background-color: #fde9cf;
    transition: box-shadow 0.3s ease;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.blog__item:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.blog__item:hover h4 {
    color: #e25915;
}

.blog__item h4,
.blog__item h3 {
    color: #e25915;
    font-size: 20px;
}

.blog__content {
    padding: 10px 16px;
    text-align: justify;
}

.blog__image img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.blog__summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    color: black;
}

.blog__date,
.blog__user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Blog Details */
.blog__detail {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog__detail-content {
    padding: 10px;
}

.blog__detail-title h1 {
    font-size: 28px;
    color: #e25915;
}

.blog__detail-image img {
    border-radius: 5px;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb__container {
    height: 160px;
    background-image: url("../images/breadcrumb.jpg");
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: bottom;
    border-bottom: 1px solid rgba(204, 160, 0, 0.2);
}

.breadcrumb__container ol {
    margin-bottom: 0;
}

.breadcrumb__container .breadcrumb-item a {
    color: var(--primary-color);
}

.changeLang {
    width: fit-content;
    background-color: transparent;
    border: 0;
    color: white;
}

.form-select.changeLang {
    --bs-form-select-bg-img: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>");
}

.form-select:focus {
    box-shadow: none;
}

.changeLang option {
    color: black;
}

/* Faq */
.faq__container {
    background-color: white;
    padding: 60px 0;
}

.faq__title h4 {
    margin-bottom: 30px;
    color: #910217;
}

.faq__container:nth-child(even) {
    background-color: #f0f0f0;
}

.faq__container .accordion-item {
    border-width: 1px;
    border-color: #ccc;
}

.faq__container .accordion-button:focus {
    box-shadow: none;
}

.faq__container .accordion-button::after {
    background-image: url("./icons/plus-regular-24.png");
}

.faq__container .accordion-button:not(.collapsed)::after {
    background-image: url("./icons/minus-regular-24.png");
}

.faq__container .accordion-item,
.faq__container .accordion-button {
    background-color: transparent;
}

.faq__container .accordion-button {
    font-weight: 500;
    font-size: 18px;
}

.faq__container .accordion-flush .accordion-item:first-child {
    border-top: 1px solid #ccc;
}

.faq__container .accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid #ccc;
}

/* Company Policies */
.policy__content {
    background-color: #fde9cf;
    padding: 30px 20px;
    margin: 3rem 0;
    border-radius: 10px;
    border-top: 3px solid #e25915;
}

/* Career */
/* Career Page */
.career__item {
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 20px;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    color: #3a3b3f;
    background-color: #fde9cf;
    border-top: 3px solid #e25915;
}

.career__item:hover {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.career__item-header {
    display: flex;
    grid-gap: 20px;
    align-items: center;
}

.career__item-title h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: #e25915;
}

.career__item-title a:hover {
    color: var(--primary__color);
}

.career__item-icon {
    height: 21px;
    width: 21px;
}

.career__item-date {
    display: flex;
    grid-gap: 5px;
    align-items: center;
}

.career__item-image img {
    height: 80px;
}

.career__item-body {
    margin-top: 10px;
}

.career__item-body ul {
    margin-bottom: 10px;
}

/* Career Details */
.dealer__card {
    background: #fde9cf;
    border-radius: 10px;
    border-top: 3px solid #e25915;
}

.dealer__card .table > :not(caption) > * > * {
    background-color: transparent;
}

.dealer__card-header {
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 20px 0;
}

.dealer__card-body {
    padding: 40px;
}

.dealer__card-body input,
.dealer__card-body textarea,
.dealer__card-body select {
    border-radius: 0;
}

.apply__btn {
    width: max-content;
    color: #fff;
    margin-right: 20px;
    background-color: #e25915;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    border: 0;
}

.apply__btn:hover {
    background: #f89a20;
}

.dealer__card-body ul li {
    list-style-type: disc !important;
}

.dealer__card-body form .btn:hover {
    background-color: #3a3b3f;
    color: white;
}

@media screen and (max-width: 1000px) {
    .container__header {
        padding: 0;
    }

    .dealer__card-body {
        padding: 20px;
    }
}

/* Catalogue Page */
.catalogue__item {
    height: 100%;
    background-color: #eef0f6;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.catalogue__item-title h3 a:hover {
    color: #e25915;
}

.catalogue__item-title h3 a {
    color: #3a3b3f;
    text-decoration: none;
    display: block;
}

.catalogue__item-image img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.catalogue__item-image a {
    display: block;
}

.catalogue__item-title {
    padding: 0 10px;
    padding-bottom: 20px;
    margin-top: 10px;
}

.catalogue__item-share i {
    font-size: 22px;
    color: #e25915;
}

.catalogue__item-share i:hover {
    color: #f89a20;
}

.catalogue__item-share {
    display: flex;
    grid-gap: 10px;
    margin-top: 10px;
}

/* Custom Select */
/* // Custom Select */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 16px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #222 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #222 transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    padding: 7px 16px;
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 0;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #ebeef0;
    width: calc(100% - 16px);
    top: 100%;
    left: 8px;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact__item-icon {
    height: 42px;
    width: 42px;
}

.contact__item-icon i {
    color: #e25915;
    font-size: 42px;
}

.contact__item {
    border: 1px solid;
    border-top: 4px solid;
    border-color: #e25915;
    min-height: 130px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    grid-gap: 20px;
}

.contact__item-content span {
    color: #e25915;
    font-size: 18px;
}

.contact__item-content p {
    margin: 0;
}

.contact__form {
    display: flex;
    border-left: 4px solid;
    border-color: #e25915;
    border-radius: 5px;
    margin-top: 3rem;
    align-items: center;
    background-color: #fde9cf;
    padding: 30px 20px;
}

.contact__form-icon {
    width: 25%;
    text-align: center;
}

.contact__form-icon i {
    font-size: 32px;
    color: #e25915;
    border: 2px solid #e25915;
    border-radius: 50%;
    padding: 5px;
}

.contact__form-icon h4 {
    color: #e25915;
    margin-top: 10px;
    margin-bottom: 0;
}

.contact__form-description {
    width: 75%;
    padding: 0 30px;
    padding-left: 50px;
    border-left: 2px solid #e25915;
}

@media screen and (max-width: 768px) {
    .contact__form-icon {
        display: none;
    }
    .contact__form-description {
        width: 100%;
        border-left: 0;
        padding-left: 30px;
    }
}

.contact__map iframe {
    margin-bottom: -5px !important;
}

/* Fro */
/* dropdown menu css */
.header__main ul {
    position: relative;
}

.dropdown__container {
    /* position: relative; */
    transition: 0.3s all ease;
}

.dropdown__content {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 215px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    min-height: 420px;
    border-radius: 5px;
    border-top: 2px solid #e25915;
    text-align: left;
    transition: all 0.3s ease-out 0s;
    transform: translateY(20px);
    z-index: 999999;
    padding: 20px;
    overflow: hidden;
}

.dropdown__container:hover > .dropdown__content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown__content a {
    display: block;
    transition: all 0.3s linear;
    color: white !important;
}

.dropdown__content ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    grid-row-gap: 16px;
}

.dropdown__content li {
    list-style: none;
    width: calc(25% - 15px);
    text-align: center;
    display: block;
    border-radius: 5px;
}

.dropdown__content li a {
    padding: 0 !important;
}

.dropdown__content li h3 {
    padding-top: 5px !important;
    font-size: 16px;
}

.dropdown__content-image {
    height: 160px;
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
}

.dropdown__content li img {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.dropdown__content li:hover img {
    transform: scale(1.2);
    transition: all 3s linear;
}

.dropdown__content li:last-child {
    border-bottom: 0 !important;
}

.dropdown__content li:hover a {
    color: var(--primary__color) !important;
    /* margin-left: 10px; */
}

.dropdown__content ul li a {
    color: #e25915 !important;
    font-size: 16px;
    /* color: #585660; */
    padding: 0;
}

.small__menu {
    position: relative !important;
}

.small__menu ul {
    display: block;
}

.small__menu .dropdown__content {
    width: 260px;
    min-height: auto;
}

.small__menu ul li {
    width: 100%;
    text-align: left;
}

.small__menu ul li a {
    min-width: max-content;
    padding-bottom: 10px !important;
    color: #e25915 !important;
}

.small__menu ul li a:hover {
    margin-left: 10px;
    color: var(--primary__color) !important;
}

.mobile__nav {
    display: none;
}

/* Category */
.product__details {
    background-color: #f8f8f8;
}

/* Client Page */
.client__item {
    height: 100%;
    border-radius: 5px;
    background-color: white;
}

.client__item-image {
    width: 250px;
    height: 250px;
    display: flex;
    padding: 20px;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.client__item-image img {
    width: 100%;
    border-radius: 50%;
}

.client__item-detail {
    padding: 20px;
}

/* Category Item */
.category__item-title h2 {
    font-size: 18px;
    text-align: center;
    margin-top: 5px;
    color: #e25915;
}

.category__item-image {
    height: 200px;
}

.category__item-image img {
    border-radius: 5px;
    height: 100%;
}

.category__list {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    border-top: 3px solid #e25915;
    margin-bottom: 30px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.05) 0px 0.25em 0.5em;
}

.category__list-header {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category__list-body {
    max-height: 286px;
    overflow: hidden auto;
    padding: 10px 0;
    overflow-x: hidden !important;
}

.category__list-body::-webkit-scrollbar {
    width: 6px;
}

.category__list-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category__list-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.category__list-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Pagination */
.page-link {
    color: #e25915;
}

.page-link:hover {
    color: #e25915;
}

.disabled > .page-link,
.page-link.disabled {
}

.active > .page-link,
.page-link.active {
    background-color: #e25915;
    border-color: #e25915;
}

/* Mobile Menu */
.offcanvas__inner {
    position: relative;
    height: 100%;
}

.offcanvas__menu {
    overflow-y: auto;
    height: 100%;
}

.offcanvas__menu_ul {
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas__menu_li {
    position: relative;
    border-bottom: 1px solid #e4e4e4;
}

.offcanvas__menu_li:first-child {
    border-top: 1px solid #e4e4e4;
}

.offcanvas__menu_item {
    line-height: 1;
    display: block;
    padding: 15px 20px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.offcanvas__menu_item .offcanvas__menu_item-title {
    /* padding-left: 20px; */
}

.offcanvas__sub_menu_li:hover > .offcanvas__sub_menu_item,
.offcanvas__menu_li:hover > .offcanvas__menu_item {
    background: #fab661;
}

.offcanvas__sub_menu_li:hover > .offcanvas__sub_menu_item,
.offcanvas__menu_li:hover > .offcanvas__menu_item {
    color: white;
}

.offcanvas__sub_menu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas__sub_menu_li {
    position: relative;
    border-top: 1px solid #e4e4e4;
}

.offcanvas__sub_menu_item {
    line-height: 1;
    display: block;
    padding: 15px 0 15px 40px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.offcanvas__sub_menu_item ~ .offcanvas__sub_menu .offcanvas__sub_menu_item {
    padding-left: 40px;
}

.offcanvas__sub_menu_toggle {
    font-size: 20px;
    position: absolute;
    z-index: 9;
    top: 6px;
    right: 0;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.offcanvas__sub_menu_toggle::after,
.offcanvas__sub_menu_toggle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #000000;
}

.offcanvas__sub_menu_toggle:not(.active)::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

@media only screen and (max-width: 768px) {
    /* Scrollbar */
    .offcanvas__menu::-webkit-scrollbar {
        height: 6px;
        width: 6px;
    }

    .offcanvas__menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 6px;
    }

    .offcanvas__menu::-webkit-scrollbar-thumb {
        background: #e25915;
        border-radius: 6px;
        transition: 2s easy;
    }

    .offcanvas__menu::-webkit-scrollbar-thumb:hover {
        background: #fab661;
    }
}
