* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
    color: #666a6c;
    text-align: justify;
    line-height: 30px;
    letter-spacing: 0.6px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

/* 
========================
Topbar Css Start -----------------------
========================
 */

section.top-bar {
    position: relative;
    padding: 8px 0;
    background-color: #ac906f;
}

.left-bar {
    display: flex;
    align-items: center;
}

.right-bar ul {
    display: flex;
    align-items: center;
    justify-content: end;
}

.left-bar .mobile-no span.icon i {
    color: #fff;
    font-size: 16px;
}

.left-bar .mobile-no a {
    color: #fff;
    font-size: 16px;
}

.left-bar .mobile-no {
    margin-right: 20px;
    border-right: 1px solid #fff;
    padding-right: 20px;
}

.left-bar .address span.icon i {
    color: #fff;
    font-size: 16px;
}

.left-bar .address a {
    color: #fff !important;
    font-size: 16px;
    position: relative;
    padding-right: 20px;
}

.right-bar ul li a {
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    padding: 0;
    transition: 0.5s;
}

.right-bar ul li a:hover {
    background-color: #695545;
}

.right-bar ul li {
    margin-right: 10px;
}

.right-bar ul li a i {
    font-size: 14px;
}

.left-bar .address {
    margin-right: 20px;
}

.address img {
    max-width: 30px;
}

.left-bar .address a::after {
    content: "";
    width: 1.1px;
    height: 25px;
    position: absolute;
    top: 0;
    border-radius: 2px;
    background-color: #fff;
    right: 0;
}

.left-bar .address:last-child a:after {
    display: none;
}

/* 
========================
Topbar Css End -----------------------
========================
 */

/* 
========================
Navbar Css Start -----------------------
========================
 */
header.navbar-main {
    position: relative;
    background-color: #fff;
    transition: 0.7s;
}

a.navbar-brand img {
    max-width: 160px;
    transition: 0.5s;
}

header.navbar-main.sticky a.navbar-brand img {
    max-width: 180px;
}

ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
}

ul.navbar-nav li.nav-item-btn a.nav-link {
    padding: 10px 20px;
    color: #fff;
    position: relative;
    z-index: 3;
    transition: 0.5s;
    background-color: #ac906f;
}

ul.navbar-nav li.nav-item a.nav-link:hover {
    color: #ac906f;
}

ul.navbar-nav li.nav-item {
    margin-right: 10px;
}

ul.navbar-nav.ms-auto {
    align-items: center;
}

ul.navbar-nav li.nav-item-btn a.nav-link::before {
    content: "";
    background-color: #695545;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    left: auto;
    transition: 0.4s all ease-in-out;
    right: 0;
}

ul.navbar-nav li.nav-item-btn:hover a.nav-link:before {
    width: 100%;
    right: auto;
    left: 0;
}

header.navbar-main.sticky {
    position: sticky;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 200;
    border-radius: 0;
    border-bottom: 1px solid #ffffff15;
    transform: translateY(0);
    background: #ffffff10;
    backdrop-filter: blur(20px);
    transition: 0.7s;
}

ul.dropdown-menu li a {
    border-radius: 0 !important;
}

/* Hide dropdown menu by default */
.nav-item .dropdown-menu {
    display: none;
}

/* Show dropdown menu on hover for desktop */
@media (min-width: 992px) {
    .nav-item:hover .dropdown-menu {
        display: block;
    }
}

/* Ensure dropdown menu is shown on click for mobile */
.navbar-nav .show > .dropdown-menu {
    display: block;
}

ul.navbar-nav li.nav-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    margin-top: 0px;
    visibility: visible;
    transform: scaleY(1);
    padding: 0px;
}

ul.dropdown-menu {
    background: #101010;
    border: none;
    position: absolute;
    visibility: hidden;
    transform-origin: top;
    border-radius: 0;
    display: block;
    width: 250px;
    z-index: 99;
    opacity: 0;
    top: 80px;
    left: -40px;
    transform: scaleY(0);
    transition: 0.3s;
}

ul.dropdown-menu li {
    border-bottom: 1px solid #fff;
    border-radius: 0 !important;
}

ul.dropdown-menu li a {
    color: #fff;
    background-color: #ac906f;
}
ul.dropdown-menu li a:hover {
    color: #fff;
    background-color: #695545;
}

/* 
========================
Navbar Css End -----------------------
========================
 */

/* 
========================
Banner Css Start -----------------------
========================
 */

section.banner-area {
    position: relative;
    overflow: hidden;
}

.banner-box img {
    height: 590px;
    width: 100%;
    object-fit: cover;
}

.banner-box {
    position: relative;
}

.banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 70px;
    width: 40%;
    padding-left: 20px;
}

.banner-content h1 {
    color: #000;
    font-size: 55px;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    font-weight: 600;
}

.banner-content h1 span {
    color: #ac906f;
}

.banner-content p {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-bottom: 40px;
}

.banner-btn a {
    padding: 12px 15px;
    color: #fff;
    position: relative;
    z-index: 3;
    transition: 0.5s;
    background-color: #ac906f;
}

/* .banner-btn a::before {
    content: "";
    background-color: #695545;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    left: auto;
    transition: 0.4s all ease-in-out;
    right: 0;
}

.banner-btn:hover a:before {
    width: 100%;
    right: auto;
    left: 0;
} */

.banner-btn a:hover {
    background-color: #695545;
}

/* 
========================
Banner Css End -----------------------
========================
 */

/* 
========================
About Css Start -----------------------
========================
 */

section.about-area {
    position: relative;
    padding: 60px 0 0;
}

.about-content h2 {
    color: #ac906f;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    font-size: 30px;
}

.about-content h3 {
    color: #000;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    font-size: 30px;
}

.about-content p {
    margin-bottom: 30px;
}

.about-imgs-1 img {
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

.about-imgs-1 {
    height: 100%;
    width: 100%;
}

.about-imgs-2 img {
    width: 100%;
    border-radius: 10px;
    height: 275px;
    object-fit: cover;
}

.about-imgs-logo {
    background-color: #f2bebe91;
    border-radius: 10px;
    padding: 20px 0;
    margin-bottom: 10px;
}

/* 
========================
About Css End -----------------------
========================
 */

/* 
========================
Services Css Start -----------------------
========================
 */
section.services {
    padding: 60px 0;
    position: relative;
}

section.services::before {
    content: "";
    background-image: url(../images/services-imgs/services-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-box {
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    margin-bottom: 20px;
}

.services-box img {
    width: 100%;
    transition: 0.5s;
    height: 260px;
}

.services-box:hover img {
    transform: scale(1.1);
}

.services-box .services-content {
    padding: 20px;
    position: relative;
    overflow: hidden;
    background-color: #ac906f;
}

.services-box:hover .services-content:before {
    width: 100%;
    right: auto;
    left: 0;
}

.services-box .services-content::before {
    content: "";
    background-color: #695545;
    position: absolute;
    top: 0;
    z-index: 0;
    width: 0;
    height: 100%;
    left: auto;
    transition: 0.4s all ease-in-out;
    right: 0;
}

.services-content h3 {
    color: #fff;
    letter-spacing: 0.6px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.services-content h3::after {
    content: "";
    background-image: url(../images/services-imgs/icon-1.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -8px;
    right: 0;
    width: 40px;
    height: 40px;
    background-size: contain;
    z-index: 0;
    transition: 0.7s;
    transform: translateX(-900%);
}

.services-box:hover .services-content h3:after {
    transform: translateX(0);
}

.services-content h3 a {
    color: #fff;
}

.heading-area {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.heading-area h3 {
    color: #ac906f;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    font-size: 30px;
}

/* 
========================
Services Css End -----------------------
========================
 */

/* 
========================
Contact  Css Start -----------------------
========================
 */

section.contact-area {
    clear: both;
    position: relative;
    padding: 70px 0;
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section.contact-area label.form-label {
    color: #000;
    letter-spacing: 0.6px;
}

section.contact-area input.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 5px 0;
    color: #000 !important;
    box-shadow: none !important;
}

.quote-btn .submit-btn {
    padding: 5px 30px;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    border: none;
    position: relative;
    z-index: 3;
    transition: 0.5s;
    background-color: #ac906f;
}

.quote-btn .submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    left: auto;
    transition: 0.4s all ease-in-out;
    right: 0;
    background-color: #695545;
}

.quote-btn:hover .submit-btn:before {
    width: 100%;
    right: auto;
    left: 0;
}

section.contact-area input.form-control::placeholder {
    color: #646464;
}

textarea.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 5px 0;
    color: #000;
    box-shadow: none !important;
}

.form-control:focus {
    color: #000 !important;
    background-color: transparent !important;
    border-color: #000 !important;
    outline: 0;
    box-shadow: none !important;
}

textarea.form-control::placeholder {
    color: #646464;
}

.services-form .quote-btn .submit-btn::before {
    background-image: linear-gradient(97deg, #50afe5, #50afe5 100%);
    width: 0%;
}

.form-select {
    box-shadow: none !important;
    border-color: transparent;
    border-bottom: 1px solid #000 !important;
    border-radius: 0;
    padding: 4.5px 0px;
}

select#S_services {
    border-bottom: 1px solid #000 !important;
    border-radius: 0;
    background-color: transparent;
    padding: 4.5px 0px;
}

.footer-contact-area li .footer-book-btn {
    border-radius: 3px;
    background-color: #ac906f;
    color: #fff;
    text-align: center;
    display: inline-block;
    transition: 0.5s;
    padding: 6px 20px;
}
/* 
========================
Contact Css End -----------------------
========================
 */

/* 
========================
Gallery Css Start -----------------------
========================
 */

.gallery-box img {
    width: 100%;
    height: auto;
}

section.gallery-area {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.slick-dots {
    bottom: -55px !important;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #f34d3f !important;
}

/* .slick-dots li button:before {
    font-size: 15px !important;
    color: #f34d3f !important;
} */

/* 
========================
Gallery Css End -----------------------
========================
 */

/* 
========================
Our Testimonials Area  Css Start -----------------------
========================
*/

section.testimonials-area {
    background-color: #fff;
    position: relative;
    padding: 60px 0;
}

.testimonials-box {
    padding: 40px;
    background-color: #ffffff;
    margin: 10px;
    box-shadow: 0px 0px 6px #cbcbcb;
    border-radius: 5px;
}

.testimonials-box h3 {
    color: #ac906f;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 25px;
}

.testimonials-box p {
    color: #666;
    text-align: justify;
    line-height: 30px;
    font-weight: 300;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #ac906f !important;
}

.slick-dots li button:before {
    font-size: 15px !important;
    color: #ac906f !important;
}

.slick-dots {
    bottom: -45px !important;
}

section.testimonials-area::before {
    content: "";
    background-image: url(../images/testi-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 
========================
Our Testimonials Area  Css End -----------------------
========================
*/

/* 
========================
Footer Css Start -----------------------
========================
 */

footer.tf_footer {
    position: relative;
    padding: 70px 0;
    /* background-image: linear-gradient(to right, #d52066, #fe5639); */
    background-color: #695545;
}

footer.tf_footer::before {
    content: "";
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-box .footer-logo img {
    max-width: 250px;
    filter: brightness(0) invert(1);
}

.footer-box .footer-logo {
    margin-bottom: 10px;
}

.footer-box p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.6px;
    /* text-align: justify; */
    margin-bottom: 10px;
    line-height: 22px;
}

.footer-social-icons ul li a {
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    padding: 0;
    transition: 0.5s;
}

.footer-social-icons ul li a:hover {
    background-color: #000;
}

.footer-social-icons ul {
    display: flex;
    align-items: center;
}

.footer-social-icons ul li {
    margin-right: 10px;
}

.footer-box h3 {
    color: #fff;
    letter-spacing: 0.6px;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.6px;
    transition: 0.5s;
}

.footer-box ul.footer-contact-area li {
    padding: 5px 0;
}

.footer-box ul.footer-contact-area li span.footer-contact-area-icon i {
    color: #fff;
}

.footer-box ul.footer-contact-area li span.footer-contact-area-text {
    color: #fff;
}

.copyright-area {
    padding: 20px 0;
    border-top: 1px solid #fff;
    /* background-image: linear-gradient(to right, #d52066, #fe5639); */
    background-color: #695545;
}
.copyright-area .copyright-content p {
    color: #fff;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.copyright-area .copyright-content p a {
    color: #000;
    font-weight: 600;
}

.back-to-top .top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    color: #fff;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0px 0px 6px #ac906f;
    background-color: #695545;
}

.back-to-top .top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.5s;
}

.back-to-top .top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.footer-box ul.import-link li {
    margin-bottom: 10px;
    position: relative;
}

.footer-box ul.import-link li::before {
    content: "\f101";
    font-family: "fontawesome";
    transition: all ease 0.5s;
    color: #fff;
    margin-right: 5px;
}

.footer-box ul.import-link li:hover a {
    padding-left: 8px;
}

.footer-box {
    position: relative;
}

/* 
========================
Footer Css End -----------------------
========================
 */

/* 
========================
About Us Page Css Start -----------------------
========================
 */

.page-header.parallaxie {
    background-image: url(../images/bredcrumbs-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 140px 0 0;
    height: 400px;
}

.page-header-box h2 {
    font-size: 45px;
    color: black;
    letter-spacing: 0.6px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header-box .breadcrumb li:first-child:before {
    display: none;
}

ol.breadcrumb {
    margin-bottom: 0;
}

.page-header-box .breadcrumb li {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 22px;
    color: black;
    text-transform: capitalize;
    margin-right: 30px;
}

.page-header-box .breadcrumb li a {
    color: black;
}

.page-header-box .breadcrumb li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 22px;
    color: black;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 5px;
    left: -20px;
}

/* 
========================
About Us Page Css End -----------------------
========================
 */

/* 
========================
Pricing Page Css Start -----------------------
========================
 */

section.pricing-area {
    position: relative;
    padding: 60px 0;
}

.pricing-tabs-area .nav.nav-tabs {
    margin-bottom: 30px;
    border-bottom: transparent;
    justify-content: center;
    width: 100%;
    border: 1px solid #ddd;
}

.pricing-tabs-area .nav.nav-tabs li.nav-item .nav-link.active {
    background-color: #ac906f;
    color: #fff;
    border-radius: 0;
}

.pricing-tabs-area .nav.nav-tabs li.nav-item {
    transition: 0.5s;
    border-top: 1px dashed #ddd;
    display: block;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent;
}

.pricing-tabs-area .nav.nav-tabs li.nav-item .nav-link {
    text-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    border-radius: 5px;
    transition: all 0.5s ease 0s;
    z-index: 1;
    border-color: transparent !important;
}


.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: #000;
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link {
    border-color: transparent;
}

.pricing-content-box img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 20px;
    max-width: 350px;
}

.pricing-tabs-area.d-flex.align-items-start {
    position: sticky;
    top: 150px;
}

.pricing-content-box h3 {
    color: #000;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    font-weight: 500;
}

.pricing-pricing-box ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.pricing-pricing-box ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #000;
    margin-bottom: 10px;
    padding-bottom: 10px;
    align-items: center;
    flex-basis: 350px;
}

.pricing-pricing-box ul li h3 {
    font-size: 16px;
    letter-spacing: 0.6px;
    font-weight: 500;
    color: #000;
}

.pricing-pricing-box ul li span.price-list {
    color: #ac906f;
    font-weight: 600;
    font-size: 20px;
}

/* 
========================
Pricing Page Css End -----------------------
========================
 */

.gallery-img {
    margin-bottom: 20px;
}

.gallery-img img {
    max-width: 100%;
    height: auto;
}

section.gallery-page {
    padding: 60px 0;
}

.service-details {
    padding: 70px 0;
    position: relative;
}

.service-sidebar-list h5 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 8px;
}

.service-sidebar-list ul li {
    transition: 0.5s;
    border-top: 1px dashed #ddd;
    display: block;
}

.service-sidebar-list ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    border-radius: 5px;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.service-sidebar-list {
    margin-bottom: 20px;
}

.service-sidebar-list ul li a::after {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 0px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    z-index: -1;
    transition: 0.3s;
    background-color: #ac906f;
}

.service-sidebar-list ul li a:hover {
    color: #fff;
}

.service-sidebar-list ul li a:hover::after {
    height: 100%;
}

.services-form {
    border-radius: 10px;
    background-image: linear-gradient(to right, #d52066, #fe5639);
    width: 100%;
    padding: 35px 30px;
}

.service-sidebar-list ul {
    border: 1px solid #ddd;
    list-style: none;
    padding-left: 0px;
}

.services-detail-img img {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px;
}

.services-form label.form-label {
    color: #fff;
    font-weight: 500;
}

.services-form textarea.form-control {
    color: #fff;
}

.services-form textarea.form-control::placeholder {
    color: #fff;
}

/* Contact Us page Css start */

section.contact-page-area {
    position: relative;
    padding: 60px 0;
}

.service-sidebar-contact {
    border-radius: 10px;
    width: 100%;
    padding: 35px 30px;
    margin-bottom: 30px;
    background-color: #ac906f;
    max-width: 50%;
    margin: 0px auto;
    text-align: center;
}

.service-sidebar-contact h5 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

ul.link-widget-1-list li {
    margin-bottom: 12px;
}

ul.link-widget-1-list a {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    font-weight: 400;
}

.service-sidebar-contact ul.link-widget-1-list a i {
    margin-right: 10px;
}

section.contact-page-area input.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 5px 0;
    color: #000 !important;
    box-shadow: none !important;
}

.services-form .form-control:focus {
    color: #fff !important;
    background-color: white !important;
    border-color: #fff !important;
    outline: 0;
    box-shadow: none !important;
}

/* Contact Us page Css End */

.services-inner-btn {
    text-align: center;
}

.services-inner-btn a {
    padding: 10px 20px;
    color: #fff;
    position: relative;
    z-index: 3;
    transition: 0.5s;
    border-radius: 2px;
    background-color: #ac906f;
}

.services-inner-btn a:hover {
    background-color: #695545;
}

.tab-content > .active {
    outline: none !important;
}

.card-body.text-center p {
    color: #fff;
    font-size: 25px;
    text-align: center;
}

.card.card-blue .card-body table.table.table-striped thead tr th {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.6px;
}

.card.card-blue .card-body table.table.table-striped tbody tr td {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.card-body.table-responsive.p-3 table#salesorderTable thead tr th {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.card-body.table-responsive.p-3 table#salesorderTable tbody tr td {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 9px 5px;
}

.card-body.table-responsive.p-3
    table#salesorderTable
    tbody
    tr
    td
    select.form-select {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    background-color: transparent !important;
    border: none !important;
    padding: 9px 5px;
}

#sidebar {
    width: 260px;
    background-image: linear-gradient(to right, #d52066, #fe5639);
    transition: 0.5s;
}

#content {
    flex-grow: 1;
    padding: 20px;
    overflow: auto;
}

.sidebar-item {
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #fdfdfd;
    text-decoration: none;
    display: block;
    letter-spacing: 0.6px;
    font-weight: 500;
}

div#content nav.navbar.navbar-expand-lg.navbar-light.bg-white.shadow-sm {
    background-image: linear-gradient(to right, #d52066, #fe5639);
}

.sidebar-item:hover {
    background-color: #ffffff;
    color: #d62166;
}

.sidebar-header {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    background-color: #007bff;
    color: white;
    letter-spacing: 5px;
    font-size: 1.2rem;
}

/* .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */

.card {
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-body {
    background-color: #e9ecef;
    /* Light grey */
}

.card-green .card-body {
    background-color: #28a745;
    color: white;
    border-radius: 5px;
}

.card-yellow .card-body {
    background-color: #ffc107;
    color: black;
    border-radius: 5px;
}

.card-red .card-body {
    background-color: #dc3545;
    /* Red color */
    color: white;
    border-radius: 5px;
}

.card-blue .card-body {
    color: white;
}

.card-blue .card-header {
    background-color: #dc295e;
    color: white;
}

.card-header {
    background-color: #f1f1f1;
    /* Light grey */
    border-bottom: 1px solid #dee2e6;
}

.card-title {
    font-size: 1.3rem;
    color: white#007bff;
    /* Blue */
}

.card-text {
    font-size: 1.5rem;
    color: white#343a40;
    /* Dark grey */
}

.table thead {
    background-color: #007bff;
    /* Blue */
    color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
    /* Light grey */
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #fff;
    /* White */
}

h2.navbar-brand.mb-0 {
    color: #fff;
    letter-spacing: 0.6px;
}

ul.navbar-nav .nav-item.dropdown a#navbarDropdown i {
    color: #fff;
}

ul.navbar-nav .nav-item.dropdown a#navbarDropdown {
    color: #fff;
}


.gallery-img video {
    width: 100%;
}

section.blog-area {
    padding: 70px 0px;
}


.rs-service__item {
    background: #ffffff;
    box-shadow: 0 0 20px rgb(230 230 230);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.rs-service__item .rs-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.rs-thumb img {
    display: block;
    width: 100%;
    height: 240px;
}

.rs-service__item .rs-content {
    padding: 0 30px 30px 40px;
    position: relative;
    z-index: 1;
    margin-top: -36px;
}

.rs-service__item .rs-content>svg {
    position: absolute;
    top: -48px;
    background-size: cover;
    width: auto;
    left: 0;
    right: 0;
    height: 39px;
    z-index: 1;
    fill: #fff;
}

.rs-service__item .rs-content .title a {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.rs-service__item .rs-content .title {
    line-height: 20px;
    margin-bottom: 10px;
}

.rs-service__item .rs-content p {
    font-size: 16px;
    line-height: 1.75;
}

.page-header-box {
    padding-left: 40px;
}

section.blog-inner-page {
    padding: 60px 0;
}

.blog-content-inner h2 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}


.blog-content-inner img {
    max-width: 360px;
    margin-bottom: 20px;
}

.blog-content-inner h3 {
    color: #000;
    margin: 10px 0;
    font-size: 22px;
}













































































