@charset "UTF-8";

:root {
    --primary-color: #11333d;
    --secondary-color: #e99d00;
    --whatsapp-color: #19b554;
    --dark-color: #1f1b20;
    --bg-color: #f4f4f4;
    --white-color: #ffffff;
    --black-color: #000000;
    --text-gray-color: #606060;
    --transition: all 0.3s ease 0s;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-style: normal;
    color: var(--black-color);
    font-family: "Nunito Sans", sans-serif;
}
h1,h2,h3,h4 {
    margin: 0;
    font-family: "Inter", sans-serif;
}
h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.form-control {
    border-radius: 30px;
    padding: 10px 15px;
    height: 40px;
    font-size: 14px;
    color: #878787;
    outline: 0;
    border-color: #878787;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .25);
}
.container-fluid {
    padding-right: 120px;
    padding-left: 120px;
}
.section-padding {
    padding: 50px 0 50px 0;
}
.pad-top {
    padding-top: 50px;
}
.pad-bottom {
    padding-bottom: 50px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 20px;
    display: flex;
}
.main-head {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.main-head:before {
    content: "";
    background: var(--secondary-color);
    width: 50px;
    height: 4px;
    position: absolute;
    bottom: -15px;
    left: 0;
    border-radius: 30px;
}
/*.main-head:after {
    content: "";
    background: var(--secondary-color);
    width: 10px;
    height: 4px;
    position: absolute;
    bottom: -15px;
    left: 0;
    border-radius: 30px;
}*/
.section-heading-center .main-head:before {
    left: 50%;
    transform: translate(-50%, 0%);
}
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    font-weight: 500;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    border-radius: 30px;
    border: 0;
    text-align: center;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 5px;
}
.btn-1 {
    background: var(--primary-color);
    color: var(--white-color);
}
.btn-1:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}
.btn-2 {
    background: var(--secondary-color);
    color: var(--white-color);
}
.btn-2:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.btn-white {
    background: var(--white-color);
    color: var(--primary-color);
}
.btn-white:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}
.whatsapp-btn {
    background: var(--whatsapp-color);
    color: var(--white-color);
}
.whatsapp-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}


/*--------------------------------------------
           header section start
--------------------------------------------*/
.inline-menu .container, .inline-menu .container-fluid {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 1%), 0 2px 4px -2px rgb(0 0 0 / 4%);
}
.menu-section {
    padding: 0;
    display: flex;
    align-items: center;
}
.menu-heading {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.header-top-section {
    position: relative;
    padding: 5px 0;
    background: var(--primary-color);
    overflow: hidden;
}
.header-top-section:before {
    content: "";
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 50%;
    clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-social-list-icon {
    width: 24px;
    height: 24px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 10px;
    display: inline-block;
}
.header-social-list-icon:hover {
    border: 1px solid #fff;
    color: var(--secondary-color);
    background: #fff;
}
.header-social-inline {
    display: flex;
    column-gap: 2px;
    align-items: center;
}
.header-social-inline li {
    color: var(--white-color);
    font-size: 13px;
    position: relative;
}
.top-info a {
    color: var(--white-color);
    font-size: 13px;
    margin-right: 15px;
}
.top-info a:hover {
    color: var(--secondary-color);
}
.logo img {
    width: 250px;
    height: auto;
}
.main-header {
    background: #fff;
}
.inline-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0
}
.all-search input {
    height: 45px;
    padding-right: 45px;
}
.all-search button   {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}
.right-header {
    width: calc(100% - 250px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
}
.all-search {
    width: 30%;
}

/*--------------------------------------------
           header section end
--------------------------------------------*/


/*--------------------------------------------
           banner section start
--------------------------------------------*/
.banner-slider .slick-slide {
    padding: 0;
    margin-right: 0;
    margin-left: 0;
}
.banner-slider .slick-slide {
    margin-bottom: -10px;
}
.banner-text-list {
    margin-bottom: 15px;
}
.banner-item {
    position: relative;
    overflow: hidden;
}
.banner-item {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 700px;
}
/*.banner-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000000e0 30%, transparent);
    width: 100%;
    height: 100%;
    opacity: 1;
}*/
.banner-slider .slick-prev {
    left: 0;
    z-index: 1;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px 0 #00000012;
}
.banner-slider .slick-next {
    right: 0;
    z-index: 1;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px 0 #00000012;
}
.banner-slider:hover .slick-prev {
    left: 40px;
    opacity: 1;
    background: #fff;
}
.banner-slider:hover .slick-next {
    right: 40px;
    opacity: 1;
    background: #fff;
}
.banner-slider .slick-prev:before {
    content: '\f053';
    color: #000;
    font-family: "Font Awesome 6 Pro";
}
.banner-slider .slick-next:before {
    content: '\f054';
    color: #000;
    font-family: "Font Awesome 6 Pro";
}
.banner-slider {
    overflow-x: hidden;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}
.banner-heading {
    color: #ffffff;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Merriweather", serif;
}
.banner-content p {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}
/*--------------------------------------------
           banner section end
--------------------------------------------*/


/*--------------------------------------------
           home section start
--------------------------------------------*/
.z-index-1 {
    z-index: 1;
}
.heading-white .main-head {
    color: #ffffff;
}

/*--------------------------------------------
           home section end
--------------------------------------------*/


/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: #001a22;
    border-radius: 30px;
    margin: 0 20px 0 20px;
}
.footer-social-inline {
    display: flex;
    column-gap: 5px;
    margin-top: 20px;
    align-items: center;
    margin-bottom: 0 !important;
}
.footer-social-list-icon:hover i{
    background: #ffffff;
    color: var(--primary-color);
}
.footer-social-inline a {
    margin-bottom: 0 !important;
}
.footer-social-inline li {
    margin-bottom: 0 !important;
    color: #fff;
    font-weight: 600;
}
.footer-social-list-icon i {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    color: #fff;
    line-height: 29px;
    text-align: center;
    position: relative;
    font-size: 12px;
    display: inline-block;
    border-radius: 50%;
    transition: var(--transition);
}
.main-footer {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    padding: 70px 0 55px 0;
    position: relative;
    z-index: 11;
}
.footer-title {
    font-size: 22px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 0;
    position: relative;
}
.footer-widget a {
    width: fit-content;
    color: #ffffff;
    display: flex;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: var(--secondary-color);
}
.footer-item:nth-child(2) {
    margin-left: 80px;
}
.footer-widget ul li {
    margin-bottom: 5px;
}
.footer-widget p{
    color: #ffffff;
}
.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    background: var(--secondary-color);
    border-radius: 30px 30px 0 0;
}
.footer-bottom:before, .footer-bottom:after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 40px;
    width: 20px;
    box-shadow: 0 20px var(--secondary-color);
}
.footer-bottom:before {
    left: -20px;
    border-bottom-right-radius: 20px;
}
.footer-bottom:after {
    right: -20px;
    border-bottom-left-radius: 20px;
}
.copyright-content-link {
    color: #ffffff;
}
.copyright-content-link:hover {
    color: #ffffff;
}
.footer-bottom p {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}
.contact-info i {
    font-size: 13px;
    margin-right: 10px;
    background: #fff;
    width: 26px;
    height: 26px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    border-radius: 50%;
}
.contact-info a:hover i {
    color: #ffffff;
    background: var(--secondary-color);
}
.contact-info a {
    margin-left: 36px;
}
.footer-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-image: url(../images/footer-bg-pattern.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom left;
}
.extra-link a {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding: 0 20px;
}
.extra-link a:hover {
    color: #ffffff;
}
.extra-link a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #144583;
}
.extra-link a:last-child {
    padding-right: 0;
}
.extra-link a:last-child:after {
    display: none;
    opacity: 0;
}
#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 20px;
    line-height: 1;
}

/*--------------------------------------------
        footer section end
--------------------------------------------*/


/*--------------------------------------------
          home page start
--------------------------------------------*/
.primary-bg {
    background: var(--primary-color);
}
.secondary-bg {
    background: var(--secondary-color);
}
.section-bg {
    background: var(--bg-color);
}
.product-item {
    background: #ffffff;
    padding: 5px;
    border-radius: 0;
}
.read-more-btn {
    text-align: center;
    text-transform: capitalize;
    background: var(--whatsapp-color);
    width: 100%;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 0;
    font-weight: 500;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.read-more-btn:hover {
    color: #fff;
    background: var(--secondary-color);
}
.product-item h4 {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    margin: 5px 0;
    text-align: center;
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.product-details-btn {
    position: absolute;
    text-align: center;
    width: 100%;
    background: #1f1b20;
    color: #fff;
    font-size: 12px;
    padding: 4px 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}
.product-item:hover .product-details-btn {
    opacity: 1;
    transform: translateY(0px);
}
.product-item a {
    display: block;
}
.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.category-item .category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}
.category-item .item:hover .category-img {
    transform: scale(1.1);
}
.category-item h4 {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 5px;
}
.category-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.category-item a {
    padding: 5px;
    background: #fff;
    box-shadow: 0 0 4px 0 #0000001f;
    border-radius: 10px;
    width: 100%;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.owl-carousel.category-owl .owl-dots.disabled, .owl-carousel.category-owl .owl-nav.disabled {
    top: 63%;
    transform: translate(0px, -50px);
}
.owl-carousel.category-owl.right-dots .owl-nav .owl-prev {
    background: #b5b5b5 !important;
    width: 24px;
    height: 24px;
    left: -10px;
}
.owl-carousel.category-owl.right-dots .owl-nav .owl-next {
    background: #b5b5b5 !important;
    width: 24px;
    height: 24px;
    right: -10px;
}
.owl-carousel.category-owl.right-dots .owl-nav span, .owl-carousel.category-owl.right-dots .owl-nav .owl-prev span {
    width: 11px;
    height: 11px;
}

/*--------------------------------------------
         contact section start
--------------------------------------------*/
.contact-banner-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-banner {
    position: relative;;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-banner:before {
    content: "";
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
}
/*--------------------------------------------
         contact section end
--------------------------------------------*/

/*--------------------------------------------
         service section start
--------------------------------------------*/
.service-area-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    position: relative;
    gap: 5px;
}
/*.service-area-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000000;
    background: linear-gradient(to top, #000000, #000000);
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
}*/
.service-area-item {
    width: 100%;
    height: 400px;
}
.service-area-img {
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-area-img .main-head {
    color: #ffffff;
    background: var(--secondary-color);
    background: linear-gradient(90deg, rgb(233 157 0 / 41%) 0%, rgb(233 157 0) 50%, rgb(233 157 0 / 61%) 95.35%);
    padding: 10px 15px;
    border-radius: 0;
    text-transform: capitalize;
    position: absolute;
    width: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 26px;
    margin: 0;
    z-index: 1;
    transition: var(--transition);
    bottom: 0;
}
.service-area-img .main-head:before, .service-area-img .main-head:after {
    display: none;
}
.service-area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-area-content {
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    padding: 15px;
    transform: scale(0);
    transition: var(--transition);
}
.service-area-content .main-head {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
    color: var(--primary-color);
}
.service-area-content .main-head:before, .service-area-content .main-head:after {
    display: none;
}
.service-area-item:hover .service-area-img .main-head {
    transform: scale(0);
}
.service-area-item:hover .service-area-content {
    transform: scale(1);
    background: #ffffffe0;
}
.service-area-item:hover:before {
    opacity: 0;
}
/*--------------------------------------------
         service section end
--------------------------------------------*/
.customers-testimonial {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    position: relative;
    gap: 15px;
}
.customers-testimonial .customers-review-item {
    background: #fffaf0;
    border: 1px solid #f3e5c6;
}
.customers-review-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 30px;
    position: relative;
    overflow: hidden;
    height: 210px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.customers-review-text .main-head {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 0;
}
.customers-review-text .main-head:before, .customers-review-text .main-head:after {
    display: none;
}
.special-text {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}
.client-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
    color: #545454;
}
.center-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-slide .customers-review-item{
    opacity: 0.8;
}
.slick-slide.slick-current.slick-active.slick-center .customers-review-item{
    opacity: 1;
}
.customers-review-item:before {
    content: "";
    background: url(../images/icon/quote-1.png) no-repeat center;
    position: absolute;
    right: 15px;
    bottom: -10px;
    width: 128px;
    height: 108px;
    background-size: contain;
    z-index: 1;
    opacity: 0.3;
}
.slick-slide {
    padding: 3px;
    margin-right: 3px;
    margin-left: 3px;
}
.customers-review-text .main-head:before {
    display: none;
}
.star-review img {
    width: auto;
    height: 15px;
    display: inline-block !important;
    margin: 8px 0;
}
.testimonial-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    width: 100%;
}
.testimonial-bg:before {
    content: "";
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}
.new-slick-dots .slick-dots {
    bottom: 0;
    left: 0;
    margin: 15px 0 0;
    position: relative;
}
.new-slick-dots .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    border: 0;
}
.new-slick-dots li.slick-active button {
    background: var(--secondary-color) !important;
}
.new-slick-dots .slick-dots li button {
    width: 5px;
    height: 5px;
    padding: 5px;
    border-radius: 50%;
    background: #ff767c;
    opacity: 1;
}
.customers-review {
    z-index: 111;
}
.customers-review.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

/*--------------------------------------------
          home page end
--------------------------------------------*/


/*----- breadcrumb-section start -----*/
.breadcrumb-section {
    background: #f3e5c6;
    padding: 15px 0;
}
.breadcrumb-head {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
}
.breadcrumb-section .container, .breadcrumb-section .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumb-section ul li a {
    color: var(--black-color);
    margin: 0;
    font-size: 12px;
}
.breadcrumb-section ul li a:hover {
    color: var(--secondary-color);
}
.breadcrumb-section ul li {
    color: var(--black-color);
    margin: 0;
    font-size: 12px;
    position: relative;
    padding-right: 5px;
}
.breadcrumb-section ul {
    display: flex;
    gap: 10px;
}
.breadcrumb-section ul li:last-child {
    padding-right: 0;
}
.breadcrumb-section ul li:before {
    content: "/";
    position: absolute;
    right: -5px;
    top: 0;
}
.breadcrumb-section ul li:last-child:before {
    display: none;
    opacity: 0;
}
/*----- breadcrumb-section end -----*/
.pad-p {
    margin-top: 30px;
}

/*----- product details start -----*/
.main-head.no-line:before {
    content: "";
    display: none;
}
.details-content .main-head {
    text-transform: capitalize;
}
.details-content .read-more-btn {
    width: fit-content;
}
.small-description {
    margin-top: 20px;
}
.small-description h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}
.small-description ul li {
    list-style: disc;
    padding-top: 5px;
    margin-left: 15px;
}
.details-img .slider-single img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background: #f4f4f4;
}

/*----- product details end -----*/

.main-product-section {
    display: grid;
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.main-product-section .read-more-btn {
    font-size: 13px;
    line-height: 13px;
}


.category-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(6, minmax(0px, 1fr));
}
.category-grid .category-item {
    position: relative;
    height: 220px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.category-grid .category-item .category-img {
    height: 100%;
}
.category-grid .category-item a {
    padding: 0;
    height: 100%;
}
.category-grid .category-item a:hover img {
    transform: scale(1.1);
}
.category-grid .category-item a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #000000c7 30%, transparent);
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 10px;
    z-index: 1;
}
.category-grid .category-item h4 {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0;
    position: absolute;
    bottom: 15px;
    color: #fff;
    width: 100%;
    z-index: 11;
}
.container-info .home-contact-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.home-contact-info-items {
    background: var(--secondary-color);
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
}
.home-contact-info-items:nth-child(2) {
    transform: scale(1.2);
    background: var(--primary-color);
}
.home-contact-info-items:nth-child(2) .home-contact-info-icon i{
    color: var(--primary-color);
}
.container-info .home-contact-info-icon i {
    font-size: 28px;
    background: #ffffff;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.contact-info-content h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-info-content p, .contact-info-content a {
    color: #ffffff;
    word-break: break-word;
    margin: 0;
}
.contact-box-inline {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    background: var(--bg-color);
    margin: 60px 0;
}
.contact-form {
    border-radius: 0;
    padding: 40px;
}
.contact-form .form-group {
    margin-bottom: 15px;
}
.contact-form label {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}
.contact-form .form-control {
    font-size: 12px;
    border: 1px solid #ece9e3;
    height: 40px;
    padding: 5px 15px;
    background: #fff;
    border-radius: 30px;
    color: #000;
}
.contact-form textarea.form-control {
    height: 100px;
    border-radius: 15px;
}
.home-contact-map iframe {
    height: 100%;
    border: 0 solid #eff2f5;
    width: 100%;
    transition: var(--transition);
    margin-bottom: 0;
}
.read-btn-for-mobile {
    display: none;
}

/*------------ faq page start ---------*/

.faq-section .accordion {
    width: 100%;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
}
.accordion-button:not(.collapsed) h5 {
    color: #ffffff !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed):before {
    background-color: #ffffff;
}
.accordion-button:before {
    content: "";
    position: absolute;
    right: 11px;
    top: 25px;
    height: 2px;
    width: 20px;
    background-color: var(--primary-color);
}
.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 16px;
    height: 20px;
    width: 2px;
    border-style: none;
    background-color: var(--primary-color);
}
.faq-section .accordion-button h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
}
.accordion-body {
    background-color: #f8f8f8;
}
.accordion-body ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}
.accordion-body ol > li {
    counter-increment: step-counter; /* Increment custom counter */
    margin-bottom: 10px;
}
.accordion-body ol > li::before {
    content: "Steps " counter(step-counter) ": "; /* Custom prefix */
    font-weight: bold;
}
.accordion-button {
    background-color: #11333d12;
}
.contact-banner.faq-page .contact-banner-section {
    flex-direction: column;
    gap: 30px;
    align-items: baseline;
}
.contact-banner.faq-page {
    padding: 30px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: inherit;
    background-position: center;
    width: 100%;
    border-radius: 14px;
}


/*------------ faq page end ---------*/


/*--------------------------------------------
         portfolio start
--------------------------------------------*/
.portfolio-box {
    display: grid;
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(8, minmax(0px, 1fr));
}
.portfolio-item a {
    display: block;
    position: relative;
    transform: var(--transition);
}
.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
}
.portfolio-item:hover .view-btn {
    opacity: 1;
    visibility: visible;
}
.portfolio-item-content h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #ffffff;
}
.portfolio-item-content .read-btn {
    color: var(--primary-color);
    font-size: 12px;
}
.portfolio-item-content .hover-link::after{
    background: var(--primary-color);
}
.portfolio-hover-text {
    display: none;
}
.portfolio-item-content {
    background: var(--secondary-color);
    height: 30px;
    text-align: center;
    border-radius: 0 0 6px 6px;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.portfolio-item:hover .portfolio-item-content {
    opacity: 1;
    transform: translateY(0px);
}
.portfolio-item {
    border-radius: 6px;
    box-shadow: 0 0 3px 0 #0000001f;
    position: relative;
    overflow: hidden;
}
.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}
.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}
.shape-bottom img {
    height: 175px;
    opacity: 0.5;
}

/*--------------------------------------------
         portfolio end
--------------------------------------------*/

.about-content {
    display: grid;
    align-items: center;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.about-multi-content {
    display: grid;
    align-items: center;
    width: 100%;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.about-multi-content-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.about-multi-content-short-text {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 100px;
    background: var(--primary-color);
}
.about-multi-content-short-text p {
    color: #fff;
}
.margin-top {
    margin-top: 80px;
}


.form-check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.form-check label {
    position: relative;
    cursor: pointer;
    text-transform: capitalize;
}
.form-check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #979797;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0%), inset 0 -15px 10px -12px rgb(0 0 0 / 0%);
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 2px;
    border-radius: 0;
    top: -1px;
}
.form-check input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check input:checked + label:before {
    content: '';
    background-color: #000000;
    border: 1px solid #000000;
}
.form-check {
    display: block;
    min-height: 0;
    padding-left: 0;
    margin-bottom: 2px;
}
.form-check:last-child {
    margin-bottom: 0;
}
.filter-sidebar-heading {
    font-size: 16px;
    line-height: 1;
    letter-spacing: .95px;
    color: #000000;
    border-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.filter-sidebar-item {
    border-top: 1px solid #979797;
    padding: 20px 0 0;
    margin-bottom: 15px;
}
.filter-sidebar .filter-sidebar-item:first-child {
    border-top: 0 solid #979797;
    padding-top: 0;
}
.browser-product-section .collection-grid {
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.browser-product-section .collection-grid .product-item .product-item-content h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 5px;
}
.product-item-content p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}
/*----------- Pagination Start -----------*/
.pagination-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}
.pagination {
    margin: 0;
    padding: 0;
    text-align: center
}
.pagination li {
    display: inline
}
.pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 2px 10px;
    color: var(--primary-color);
}
.pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}
.pagination li a.active {
    background-color: var(--primary-color);
    color: #fff;
}
.pagination li a:hover:not(.active) {
    color: #fff;
    background-color: var(--primary-color);
}
/*----------- Pagination End -----------*/

.details-img .slick-next, .details-img .slick-prev {
    width: 30px;
    height: 30px;
    background: #11333d1c;
}
.details-img .slick-next {
    right: 7px;
}
.details-img .slick-prev {
    left: 7px;
    z-index: 1;
}
.details-img .slick-next:before, .details-img .slick-prev:before {
    color: var(--primary-color);
}
.details-content {
    padding-left: 30px;
}
.feature-box {
    background: #fff7e6;
    padding: 20px;
    border-radius: 9px;
}
.feature-box .small-description h4 {
    border-bottom: 1px solid #343434;
}
.feature-box .small-description {
    margin-top: 0;
    margin-bottom: 15px;
}
.share-feedback {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
    color: #e99d00;
    background: #ffffff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
}
.share-feedback:hover {
    color: #fff;
    background: #e99d00;
}