html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0 !important;
    /* font-family: 'Open Sans', sans-serif; */
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    background-color: #fff;
    color: #000;
    overflow-x: hidden !important;
}

.spl-font {
    font-family: 'Fira Sans Condensed', sans-serif;
}

::selection {
    background: #dc0d14;
    color: #fff;
}

img {
    width: 100%;
}

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

p {
    color: #777777;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    color: #000;
}

.default-btn {
    background: #dc0d14;
    border: 1px solid;
    border-color: #dc0d14;
    color: #fff;
    font-weight: 600;
    border-radius: 0px;
    padding: 12px 40px;
    position: relative;
    overflow: hidden;
    /* font-family: 'Fira Sans Condensed', sans-serif; */

}

.default-btn:before {
    position: absolute;
    content: "";
}

.default-btn:after {
    position: absolute;
    content: "";
}

.default-btn:focus {
    background: #0c0c0c;
    border: 1px solid;
    border-color: #0c0c0c;
}

.alt-default-btn {
    background: #0c0c0c;
    border: 1px solid;
    border-color: #0c0c0c;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #dc0d14;
    border-color: #dc0d14;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
}

.default-btn:hover {
    color: #000;
    background: #fff;
    border-color: #dc0d14;
    transition: 0.3s ease-in-out;
}

.alt-default-btn:hover {
    border-color: #0c0c0c;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

button:focus {
    outline: none;
}

.heading-section h2 {
    font-size: 42px;
    line-height: 46px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.heading-section h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #dc0d14;
    bottom: -14px;
    left: 0;
    right: 0;
    margin: auto;
}

@media only screen and (max-width:991px) {
    .heading-section h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .heading-section h2::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 4px;
        background-color: #dc0d14;
        bottom: -8px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

/* @media only screen and (max-width:767px) {
    .heading-section h2 {
        font-size: 32px;
        line-height: 42px;
    }
} */

@media only screen and (max-width:767px) {
    .heading-section h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .heading-section p {
        font-size: 13px;
    }
}

/* Preloader */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    /* change if the mask should have another color then white */
    z-index: 1000;
    /* makes sure it stays on top */
}

#status {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    /* centers the loading animation horizontally one the screen */
    /* centers the loading animation vertically one the screen */
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    /* is width and height divided by two */
}

#status img {
    width: 100%;
    /* filter: invert(52%) sepia(99%) saturate(856%) hue-rotate(45deg) brightness(100%) contrast(87%); */
    filter: invert(9%) sepia(96%) saturate(6906%) hue-rotate(355deg) brightness(98%) contrast(94%);
}



/*header-start*/

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
    }
}

.pre-header {
    /* background-color: #dc0d14; */
    background-color: #fff;
    border-bottom: 1px solid #dc0d14;
    overflow: hidden;
}

.unav-left {
    background-color: #dc0d14;
    padding: 15px 0;
    position: relative;
    text-align: right;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    z-index: 3;
    height: 100%;
}

.unav-left:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    transform: skewX(45deg);
    right: -55px;
    z-index: -1;
    top: 0;
    background-color: #dc0d14;
}

.unav-left span a {
    color: #fff;
}

.unav-middle {
    background-color: #fff;
    text-align: left;
}

/* .unav-middle ul {
    padding-left: 65px;
} */

.unav-middle ul li {
    display: inline-block;
    padding: 15px 0;
    font-weight: 600;
    color: #0c0c0c;
    font-size: 14px;
    padding-right: 10px;
}

.unav-middle i {
    color: #dc0d14;
    margin-right: 2px;
}

.unav-right {
    background-color: #dc0d14;
    padding: 15px 0;
    position: relative;
    z-index: 3;
    height: 100%;
    text-align: right;
}

.unav-right:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    transform: skewX(45deg);
    left: -50px;
    z-index: -1;
    top: 0;
    background-color: #dc0d14;
}

.unav-right:before {
    content: "";
    position: absolute;
    width: 500%;
    height: 100%;
    top: 0;
    left: 98%;
    background-color: #dc0d14;
}

.unav-right ul li {
    display: inline-block;
    font-weight: 600;
}

.unav-right ul li a {
    color: #fff;
    font-size: 14px;
    padding: 0px 5px;
}

.unav-right ul li a:hover {
    color: #0c0c0c;
    transition: 0.3s ease-in-out;
}

/*actual-header-start*/

.dropdown:hover .dropdown-menu {
    display: block;
}

@media only screen and (max-width:991px) {
    header {
        background: #0c0c0c;
        transition: all 0.4s ease-in-out;
        /* border-bottom: 2px solid #dc0d14; */
    }
}

header .navbar {
    padding: 10px 5px;
}

.header.sticky {
    background: #ffffff;
    transition: all 0.4s ease-in-out;
    position: fixed;
    /* border-bottom: 2px solid #dc0d14; */
    top: 0;
    margin: auto;
    width: 100%;
    z-index: 100;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}

.offcanvas-backdrop.show {
    opacity: 0;
}

@media only screen and (max-width:991px) {
    /* .navbar-light .navbar-nav .nav-link {
        color: #fff;
    } */

    /* .header .navbar-nav {
        display: inline-block;
    } */
    /* .navbar-light .navbar-nav .nav-link {
        border-bottom: 1px solid #f00;
    } */

    /* .navbar-light .navbar-nav .nav-item:last-child .nav-link {
        border: none;
    } */
}

.header.sticky .navbar-light .navbar-nav .nav-link:hover {
    color: #dc0d14;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #dc0d14;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #dc0d14;
}

.navbar-brand {
    margin-right: 0px;
    padding: 0px;
}

.navbar-brand img {
    width: 250px;
}

.header.sticky .navbar-brand img {
    width: 250px;
}

.navbar-light .navbar-nav .nav-link i {
    color: #dc0d14;
    font-size: 20px;
    vertical-align: text-top;
}

.navbar-light .navbar-toggler {
    border-color: #dc0d14;
    border-radius: 0px;
    padding: 5px 6px;
    color: #dc0d14;
    box-shadow: none !important;
}

.header {
    background-color: #ffffff;
    border-bottom: 2px solid #dc0d14;
}

.row.spl-w-row {
    width: calc(100% + 32px);
}

/* @media only screen and (max-width:1599px) {
    .unav-middle ul li {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        padding-right: 0px;
    }

    .unav-middle ul li:last-child {
        padding-top: 0px;
    }

    .unav-left {
        padding: 10px 0;
        font-size: 15px;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .unav-right {
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .unav-right ul li a {
        font-size: 15px;
    }

    .pre-header {
        border-bottom: 1px solid #dc0d14;
    }

    .unav-left:after {
        right: -65px;
    }

    .unav-right:after {
        left: -60px;
    }

} */

@media only screen and (max-width:1199px) {
    .unav-middle ul li {
        font-size: 14px;
    }

    .unav-middle ul li:last-child {
        padding-top: 0px;
    }

    .unav-right ul li a {
        padding: 0px 4px;
    }

    .unav-right {
        background-color: #dc0d14;
        padding: 15px 0;
        position: relative;
        z-index: 3;
        height: 100%;
        text-align: right;
        display: flex;
        justify-content: end;
        align-items: center;
    }
}

/* @media only screen and (max-width:1399px) {
    .unav-middle ul li:last-child {
        display: none;
    }
} */

@media only screen and (max-width:991px) {
    .unav-middle ul li:last-child {
        display: none;
    }

    .offcanvas {
        z-index: 1051;
        max-width: 321px;
    }

    .unav-middle {
        background-color: #fff;
        /* top: 1px; */
        position: relative;
    }

    .unav-left {
        font-size: 12px;
    }

    .unav-right ul li a {
        font-size: 12px;
    }

    .unav-middle ul li {
        font-size: 14px;
        padding: 16px 0;
    }

    /* .unav-left:after {
        top: 1px;
    } */
    .unav-left:after {
        right: -35px;
    }

    .unav-right:after {
        left: -45px;
    }

    .pre-header .social-icons-list a {
        padding: 0px 0px;
    }

    /* .pre-header {
        border-bottom: 0px solid #dc0d14;
    } */
}

@media only screen and (max-width:767px) {
    .pre-header {
        display: none;
    }
}

.spl-nav-link.default-btn {
    color: #fff !important;
    padding: 10px !important;
    margin-left: 6px;
    transition: 0.3s ease-in-out;
}

.spl-nav-link.default-btn i {
    color: #fff !important;
    transition: 0.3s ease-in-out;
}

.spl-nav-link.default-btn:hover {
    color: #dc0d14 !important;
    transition: 0.3s ease-in-out;
}

.spl-nav-link.default-btn:hover i {
    color: #dc0d14 !important;
    transition: 0.3s ease-in-out;
}

.auth-text {
    font-weight: 600;
    color: #000000;
    font-size: 17px;
}

@media only screen and (max-width:1399px) {
    .auth-text {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding-left: 4px;
        padding-right: 4px;
    }
}

@media only screen and (max-width:1199px) {
    .footer-logo-part img {
        width: 210px;
    }
}

@media only screen and (max-width:991px) {
    .spl-nav-link.default-btn {
        margin-left: 0px;
    }
}

@media only screen and (max-width:575px) {
    .navbar-brand img {
        width: 225px;
    }

    .header.sticky .navbar-brand img {
        width: 225px;
    }
}

/*header-end*/

/*banner-start*/

.banner .item {
    /* height: 700px; */
    position: relative;
}

.banner .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
}

.banner .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}

.banner .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.banner .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

.banner .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
}

.banner .item .cover .header-content h4 {
    font-size: 30px;
    font-weight: 300;
    line-height: 40px;
    color: #fff;
}

.banner .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.banner .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.banner .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 46%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.banner .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #dc0d14;
}

.banner .owl-nav .owl-prev:focus {
    outline: 0;
}

.banner .owl-nav .owl-prev:hover {
    background: #000 !important;
}

.banner .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.banner .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #dc0d14;
}

.banner .owl-nav .owl-next:focus {
    outline: 0;
}

.owl-theme .owl-nav [class*=owl-] {
    background: #ffffff;
    text-decoration: none;
}

.banner .owl-nav .owl-next:hover,
.banner .owl-nav .owl-prev:hover {
    background: #fff !important;
}

.banner:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.banner:hover .owl-next {
    right: 0px;
    opacity: 1;
}

.banner .owl-theme .owl-nav {
    margin-top: 0;
}

@media only screen and (max-width:1199px) {
    .banner .item .cover .header-content {
        padding: 46px;
    }

    /* .banner .item {
        height: 560px;
    } */
}

@media only screen and (max-width:991px) {
    /* .banner .item {
        height: 540px;
    } */

    .banner .item .cover .header-content h2 {
        font-size: 28px;
    }

    .banner .item .cover .header-content h1 {
        font-size: 50px;
        margin: 5px 0 12px;
    }

    .banner .item .cover .header-content h4 {
        font-size: 24px;
    }

    .banner .item .cover .header-content {
        padding: 32px;
    }
}

@media only screen and (max-width:767px) {
    /* .banner .item {
        height: 420px;
    } */

    .banner .item .cover .header-content {
        padding: 28px;
    }

    .banner .item .cover .header-content h2 {
        font-size: 20px;
    }

    .banner .item .cover .header-content h1 {
        font-size: 40px;
        margin: 4px 0 8px;
    }

    .banner .item .cover .header-content h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width:575px) {
    /* .banner .item {
        height: 320px;
    } */

    .banner .item .cover .header-content {
        padding: 18px;
    }

    .banner .item .cover .header-content h2 {
        font-size: 20px;
    }

    .banner .item .cover .header-content h1 {
        font-size: 24px;
        margin: 5px 0 6px;
    }

    .banner .item .cover .header-content h4 {
        font-size: 16px;
        line-height: 20px;
    }
}

/*banner-end*/

/*about-us-start*/
.about-us-wrap {
    background-color: #fff;
}

.about-us-wrap h2 b {
    color: #dc0d14;
}

.spl-anchor {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 3px;
    position: relative;
}

.spl-anchor:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background-color: #dc0d14;
    right: 0;
    bottom: 0;
    transition: 0.4s ease-in-out;
}

.spl-anchor:hover::after {
    width: 100%;
    left: 0;
    transition: 0.4s ease-in-out;
}

.spl-anchor:hover {
    color: #dc0d14;
    transition: 0.4s ease-in-out;
}


.about-us-left span {
    color: #dc0d14;
}

.about-us-left h1 {
    max-width: 500px;
    text-transform: uppercase;
}

.about-us-left h4 {
    font-size: 26px
}

.about-us-left p {
    line-height: 26px;
    text-align: justify;
}

.about-us-right {
    position: relative;
    z-index: 1;
}

/* .about-us-right::before {
    content: "";
    height: 70px;
    width: 70px;
    position: absolute;
    background: #dc0d14;
    top: -2px;
    right: -2px;
    z-index: -1;
}

.about-us-right::after {
    content: "";
    height: 70px;
    width: 70px;
    position: absolute;
    background: #dc0d14;
    bottom: -2px;
    left: -2px;
    z-index: -1;
} */

@media only screen and (max-width:991px) {
    .about-us-left h1 {
        font-size: 22px
    }

    .about-us-left p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width:767px) {
    .about-us-left h1 {
        max-width: 767px;
        text-transform: uppercase;
    }
}

/*about-us-end*/

/* search-car-part-start */

.search-part {
    background: #f6f6f6;
}

.search-part.search-part-page {
    background: #fff;
}

.sp-card {
    box-shadow: 0 4px 15px rgb(12 35 34 / 10%);
    position: relative;
    transition: 0.3s ease-in-out;
}

.sp-card a {}

.sp-img {}

.sp-img img {
    transition: 0.3s ease-in-out;
}

.sp-text {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    background: #fff;
}

.sp-text h6 {
    font-size: 22px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.sp-card:hover {
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
    transition: 0.3s ease-in-out;
}

.sp-card:hover h6 {
    color: #dc0d14;
    transition: 0.3s ease-in-out;
}

.sp-card:hover.sp-img img {
    filter: brightness(1.05);
    transition: 0.3s ease-in-out;
}

@media only screen and (max-width:575px) and (min-width:411px) {
    .sp-card {
        width: 380px;
        margin: 0 auto;
    }
}

/* search-car-part-end */

/* popular-categories-start */

.popular-cat-sec {}

/* .pcat-card {
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 30px;
    background: #ececec;
    border-bottom: 4px solid #dc0d14;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgb(12 35 34 / 10%);
} */

.pcat-card {
    position: relative;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 0px;
    background: transparent;
    border-bottom: 4px solid #dc0d14;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgb(12 35 34 / 10%);
}

.pcat-card:hover {
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
    transition: 0.3s ease-in-out;
}


/* .pcat-card:after {
    position: absolute;
    content: "";
    background: #ffffff;
    width: 200%;
    height: 32px;
    top: -5px;
    left: 0;
    transform: rotate(5deg);
} */

.pcat-img {
    position: relative;
    z-index: 5;
}

.pcat-img img {
    transition: 0.3s ease-in-out;
}


.pcat-card:hover .pcat-img img {
    transform: scale(1.05);
    transform-origin: bottom;
    transition: 0.3s ease-in-out;
}

.pcat-text {}

.pcat-text h6 {
    font-size: 22px;
    line-height: 46px;
    font-weight: 600;
    position: absolute;
    bottom: 0px;
    left: auto;
    right: auto;
    text-align: center;
    width: 100%;
    color: #ffffff;
    z-index: 6;
    background: #0000006b;
    text-shadow: 1px 1px 5px #0000006b;
}

@media only screen and (max-width:575px) and (min-width:411px) {
    .pcat-card {
        width: 380px;
        margin: 0 auto;
    }
}

/* popular-categories-end */

/*why-choose-us-start*/
.about-why-choose-us-wrap {
    background-color: #f9f9f9;
}

.about-image-box {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    overflow: hidden;
}

.about-image-box svg {
    width: 80%;
    height: 80%;
    padding: 5px 0;
    fill: #dc0d14;
    transition: 0.4s ease-in-out;
}

.about-why-choose-us-grid {
    background-color: #fff;
    padding: 15px 15px;
    position: relative;
    transition: 0.4s ease-in-out;
}

.about-why-choose-us-grid:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #dc0d14;
    left: 0;
    right: 0;
    bottom: -5px;
    margin: auto;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.about-why-choose-us-grid:hover {
    transform: translateY(-5px);
    transition: 0.4s ease-in-out;
    box-shadow: 0px 0px 7px 0px #ddd;
}

.about-why-choose-us-grid:hover::after {
    opacity: 1;
    transition: 0.4s ease-in-out;
}

.about-why-choose-us-grid:hover svg {
    width: 85%;
    height: 85%;
}

.about-why-choose-us-grid:hover p {
    color: #dc0d14;
}

@media only screen and (max-width:1199px) and (min-width:992px) {
    .about-text-box .spl-font {
        font-size: 18px;
    }
}

/*why-choose-us-end*/


/*service-start*/
.service-wrap {
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.service-wrap button {
    padding: 8px 18px;
}

.service-wrap .form-control {
    background-clip: border-box;
    border-radius: 0;
    resize: none;
}

.service-wrap input,
.service-wrap select {
    height: 42px;
}

.service-wrap .spl-font span {
    color: #dc0d14;
}

.service-wrap label {
    font-size: 16px;
    line-height: 42px;
    width: 99%;
    background-color: #fff;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}


.service-wrap .form-control:focus {
    border-color: #dc0d14;
    outline: 0;
    box-shadow: none;
    transition: 0.2s ease-in-out;
}

/*service-end*/


/*testimonial-start*/
.testimonial-wrap h2 {
    color: #fff;
}

.testimonial-wrap {
    position: relative;
    background-position: center;
    background-size: cover;
}

.testimonial-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #121212;
    opacity: 0.30;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.testimonial-img {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-top: -80px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.testimonial-grid {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 30px;
    color: #000;
    margin-top: 80px;
    border: 4px solid #dc0d14;
}

.testimonial-grid h3 {
    position: relative;
}

.testimonial-grid h3::before {
    content: "\f10e";
    font-family: FontAwesome;
    font-size: 22px;
    left: 0;
    right: 0;
    bottom: -30px;
    position: absolute;
    color: #dc0d14;
}

.testimonial-texts h3 {
    margin-bottom: 30px;
}

.testimonial-grid:hover .testimonial-img {
    border-color: #dc0d14;
    transition: 0.2s ease-in-out;
}

.testimonial-grid p {
    color: #000;
}

.testimonial-grid span {
    color: #dc0d14;
    font-weight: 600;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #dc0d14;
}

.owl-theme .owl-dots .owl-dot span {
    background: #ffffff;
}

/*testimonial-end*/

/*contact-us-start*/
.contact-us-wrap {
    background-color: #e0e0e08c;
    background-blend-mode: soft-light;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-us-wrap .form-control {
    margin-top: 26px;
    padding: 10px;
    background: #fff;
    border: 1px solid #dc0d14;
    border-radius: 0px;
}

.contact-us-wrap .form-control:focus {
    color: #212529;
    border-color: rgb(0 0 0 / 94%);
    background-color: #ffffff00;
    outline: 0;
    box-shadow: none;
    transition: 0.2s ease-in-out;
}

.contact-us-form textarea {
    width: 100%;
    margin-top: 20px;
    padding: 10px 10px 40px 10px;
    resize: none;
}

.contact-us-wrap button {
    margin-top: 28px;
    width: 100%;
    padding: 12px 18px;

}

.contact-us-form button:hover {
    background-color: #1e1d24;
    color: #fff;
    transition: .3s ease-in-out;
}

.contact-us-wrap h6 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.contact-us-wrap textarea {
    border-radius: 4px;
    padding: 6px 10px 24px 10px;
    resize: none;
}

.contact-us-wrap .form-control::placeholder {
    color: #000;
}

.contact-us-wrap input {
    height: 50px;
}

.contact-us-wrap iframe {
    height: 450px;
}

.contact-us-wrap .home-map {
    position: relative;
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
    overflow: hidden;
}

.contact-us-wrap .home-map iframe {
    height: 247px;
}

.home-map h6 {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 6px 10px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 500;
    color: #ffffff;
    background: #000;
    letter-spacing: 0.5px;
}

@media only screen and (max-width:1199px) {
    .contact-us-wrap .home-map iframe {
        height: 260px;
    }
}

@media only screen and (max-width:991px) {
    .contact-us-wrap .form-control {
        margin-top: 24px;
    }

    .contact-us-wrap button {
        margin-top: 20px;
    }

    .contact-us-wrap .home-map iframe {
        height: 252px;
    }
}

@media only screen and (max-width:767px) {
    .contact-us-wrap iframe {
        height: 280px;
    }

    .contact-us-wrap input {
        height: 42px;
    }

    .contact-us-wrap .form-control {
        margin-top: 20px;
    }
}

/*contact-us-end*/

/*brand-start*/

.brand-wrap {
    background-color: #000;
    border-bottom: 2px solid #dc0d14;
}

.brand-wrap img {
    filter: brightness(1);
    opacity: 1;
    transition: 0.3 ease-in-out;
}

.brand-wrap img:hover {
    filter: invert(52%) sepia(99%) saturate(856%) hue-rotate(45deg) brightness(100%) contrast(87%);
}

/*brand-end*/


/*footer-start*/

.footer-wrap {
    background-color: #fff;
    color: #000;
    border-top: 2px solid #dc0d14;
}

.footer-wrap h4 {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid #dc0d14;
    color: #000;
    font-size: 20px;
}

.footer-logo-part img {
    width: 250px;
}

.footer-logo-part p {
    color: #000;
    line-height: 23px;
    font-weight: 600;
    font-size: 15px;
    text-align: justify;
}

.footer-wrap a {
    color: #000;
}

.footer-useful-list {}

.footer-useful-list ul {}

.footer-useful-list ul li {}

.footer-useful-list ul li a {
    font-size: 15px;
    font-weight: 600;
}

.footer-useful-list ul li a:hover,
.footer-wrap a:hover {
    color: #dc0d14;
}

.footer-wrap a:hover b {
    color: #000;
}

.footer-contact-list i {
    color: #dc0d14;
}

.footer-contact-list ul li {
    position: relative;
    /* padding-left: 15px; */
    font-size: 15px;
    line-height: 23px;
    font-weight: 600;
}

/* .footer-address:after {
    content: "\f041";
    font-family: FontAwesome;
    position: absolute;
    left: 0px;
    top: 1px;
    font-size: 15px;
    color: #dc0d14;
} */

/* .footer-phone:after {
    content: "\f095";
    font-family: FontAwesome;
    position: absolute;
    left: 0px;
    top: 1px;
    font-size: 15px;
    color: #dc0d14;
} */

.footer-clock:after {
    content: "\f017";
    font-family: FontAwesome;
    position: absolute;
    left: 0px;
    top: 1px;
    font-size: 15px;
    color: #dc0d14;
}

.footer-list li a {
    position: relative;
    padding-left: 12px;
    display: inline-block;
}

.footer-list li a:hover {
    padding-left: 24px;
    transition: 0.25s linear;
}

.footer-list li a:before {
    position: absolute;
    content: ">>";
    left: 0;
    top: 0;
    color: #dc0d14;
    display: none;
}

.footer-list li a:hover::before {
    display: block;
    transition: 0.5s linear;
}

.footer-newsletter p {
    color: #000;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
}

.footer-newsletter .form-control {
    background-color: #fff;
    border: 2px solid #dc0d14;
    border-radius: 0;
    background-clip: border-box;

}

.footer-newsletter .form-control:focus {
    background-color: #fffffff7;
    outline: 0;
    box-shadow: none;
    transition: 0.2s ease-in-out;
}

/*lower-footer-start*/
.lower-footer {
    border-top: 2px solid #dc0d14;
    background: #000;
    padding: 15px 0;
}

.lower-footer-text {
    display: inline-block;
}

.lower-footer-icons ul li {
    display: inline-block;
    font-weight: 600;
}

.lower-footer-icons ul li a {
    color: #fff;
    font-size: 18px;
    padding: 0px 8px;
}

.lower-footer-icons ul li a:hover {
    color: #dc0d14;
    transition: 0.3s ease-in-out;
}

.lower-footer p {
    color: #fff;
    font-size: 14px;
}

.lower-footer a {
    color: #dc0d14;
    transition: 0.3s ease-in-out;
    line-height: 22px;
    font-weight: 700;
}

/*lower-footer-end*/

@media only screen and (max-width:1199px) {
    .footer-logo-part img {
        width: 210px;
    }
}

@media only screen and (max-width:991px) {
    .footer-wrap h4 {
        font-size: 21px;
    }

    .footer-logo-part img {
        width: 225px;
    }
}

@media only screen and (max-width:991px) and (min-width:768px) {
    .footer-contact-list ul li {
        font-size: 15px;
    }
}

@media only screen and (max-width:767px) {
    .lower-footer-text span {
        display: block;
    }
}

/*footer-end*/

/* about-page-start */

.counter-wrap {
    background: #f6f6f6;
}

.counter-inner {}

.counter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 4px 15px rgb(0 0 0 / 39%); */
    background: #fff;
}

.count-icon {
    width: 110px;
    padding: 15px;
    box-shadow: 0 4px 15px rgb(12 35 34 / 10%);
    background: #ffe1e2;
}

.count-icon img {
    filter: invert(9%) sepia(96%) saturate(6906%) hue-rotate(355deg) brightness(98%) contrast(94%);
}

/* .count-text {
    width: calc(100% - 125px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */

.count-text {
    width: calc(100% - 125px);
}

.count-digit {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.count-digit:after {
    content: "+";
    position: absolute;
    right: -30px;
}

.count-text h6 {
    font-size: 16px;
    font-weight: 600;
    color: #f00;
    letter-spacing: 1px;
}

@media only screen and (max-width:1199px) {
    .count-icon {
        width: 80px;
    }

    .count-text {
        width: calc(100% - 95px);
    }

    .count-digit {
        font-size: 34px;
    }

    .count-digit:after {
        right: -22px;
    }
}

@media only screen and (max-width:991px) {
    .count-icon {
        width: 60px;
        padding: 10px;
    }

    .count-text {
        width: calc(100% - 70px);
    }

    .count-digit {
        font-size: 24px;
    }

    .count-digit:after {
        right: -16px;
    }

    .count-text h6 {
        font-size: 12px;
    }
}

@media only screen and (max-width:767px) {
    .count-icon {
        width: 90px;
        padding: 15px;
    }

    .count-text {
        width: calc(100% - 105px);
    }

    .count-digit {
        font-size: 36px;
    }

    .count-digit:after {
        right: -24px;
    }

    .count-text h6 {
        font-size: 18px;
    }
}

@media only screen and (max-width:575px) {
    .count-icon {
        width: 80px;
        padding: 10px;
    }

    .count-text {
        width: calc(100% - 95px);
    }

    .count-digit {
        font-size: 30px;
    }

    .count-digit:after {
        right: -20px;
    }

    .count-text h6 {
        font-size: 16px;
    }
}

/* about-page-end */

/* product-categy-page-start */

.category-sec {}

.category-card {
    box-shadow: 0 4px 15px rgb(12 35 34 / 15%);
    padding: 15px;
}

.category-img {
    border: 1px solid #dc0d14;
}

.category-img img {}

.category-text {
    margin-top: 10px;
    text-align: center;
}

.category-text h6 {
    font-size: 18px;
    font-weight: 600;
    color: #dc0d14;
}

.category-text h5 {
    font-size: 18px;
    line-height: 24px;
    height: 48px;
    font-weight: 600;
    color: #000;
    margin-top: 8px;
}

@media only screen and (max-width:767px) {
    .category-text h5 {
        font-size: 20px;
        line-height: 28px;
        height: auto;
    }
}

.cat-divide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-top: 10px;
}

.cat-divide h6 {
    color: #dc0d14;
    font-size: 20px;
    font-weight: 600;
}

.cat-divide a {
    background: #dc0d14;
    border: 2px solid #dc0d14;
    padding: 9px 12px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
    transition: 0.3s ease-in-out;
}

.cat-divide a h6 {
    color: #fff;
    font-size: 16px;
}

.cat-divide a:hover {
    border: 2px solid #000;
    background: #000;
    transition: 0.3s ease-in-out;
}

.category-left {
    box-shadow: 0 4px 15px rgb(12 35 34 / 15%);
    padding: 15px;
}

.category-left .form-select-lg {
    border-radius: 0px;
    border: 1px solid #dc0d14;
    outline: none !important;
    box-shadow: none !important;
    height: 50px;
}

.category-left .form-select-lg option {}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border-radius: 0px;
    border: 1px solid #dc0d14;
    outline: none !important;
    box-shadow: none !important;
    height: 50px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 10px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 50px;
    font-size: 20px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ffffff;
    color: #000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #dc0d14;
    color: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: 5px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    margin-bottom: 24px;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #dc0d14;
    border-radius: 0px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 4px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background-color: #ddd;
}

/* Handle */
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: linear-gradient(to left bottom, #dc0d14 20%, #dc0d14 50%);
    transition: all 500ms ease;
}

/* product-categy-page-end */

/* parts-page-start */

.default-banner {
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #4e00004f;
    background-blend-mode: darken; */
    text-align: center;
}

.default-banner-new {
    border-bottom: 1px solid #0000001c;
}

.default-banner h1 {
    font-size: 50px;
    color: #fff;
    text-transform: capitalize;
    text-shadow: 1px 1px 1px #000000;
}

@media only screen and (max-width:991px) {
    .default-banner h1 {
        font-size: 30px;
    }
}

@media only screen and (max-width:575px) {
    .default-banner {
        height: 300px;
    }
}

@media only screen and (max-width:575px) and (min-width:411px) {

    .category-left,
    .category-right {
        width: 380px;
        margin: 0 auto;
    }
}

/* parts-page-end */

/* product-details-page-start */

/*USE CSS for Slider*/

.vehicle-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}

.banner-slider .slider.slider-for {
    max-width: 84%;
    padding-left: 20px;
}

.banner-slider .slider.slider-nav {
    max-width: 16%;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}

.banner-slider .slider.slider-nav {
    height: 433px;
    overflow: hidden;

}

.slider-banner-image {
    /* height: 610px; */
}

.banner-slider .slider.slider-nav {
    padding: 38px 0 38px;
}

.slick-next:before,
.slick-prev:before {
    content: "";
    font-family: slick;
    font-size: 24px;
    line-height: 1;
    opacity: .75;
    color: #dc0d14;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg {
    max-width: 178px;
    height: 110px;
    margin: 0 auto;
    border: 1px solid #EBEBEB;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.thumbnail-image {
    border: 1px solid #000000;
    width: calc(100% - 1px) !important;
    cursor: pointer;
}

.slick-current .thumbnail-image {
    border: 1px solid #dc0d14;
}



.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
    border: 2px solid #196DB6;
}

.slider-nav .slick-slide.slick-current span {
    color: #196DB6;
}

.slider-nav .slick-slide {
    text-align: center;
}

.slider-nav .slick-slide span {
    font-size: 14px;
    display: block;
    padding: 5px 0 15px;
}

.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 30px;
    border: 5px solid;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.slick-prev {
    top: 15px;
    background-size: contain;
    filter: invert(9%) sepia(96%) saturate(6906%) hue-rotate(355deg) brightness(98%) contrast(94%);
}

.slick-vertical.slider-for .slick-slide:active,
.slick-vertical.slider-for .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
    border: 5px solid;
    outline: 0;
}

.slick-next {
    bottom: -15px;
    top: auto;
    left: auto;
    background-size: contain;
    filter: invert(9%) sepia(96%) saturate(6906%) hue-rotate(355deg) brightness(98%) contrast(94%);
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-prev.slick-arrow {
    background-image: url(../images/black-up-arrow.png);
}

.slick-next.slick-arrow {
    background-image: url(../images/black-down-arrow.png);
}

.slider-banner-image {
    height: 433px;
    display: inline-block;
    width: calc(100% - 1px) !important;
    border: 1px solid #000;
    cursor: zoom-in;
}

/*End USE CSS for Slider*/

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

    .banner-slider .slider.slider-for,
    .banner-slider .slider.slider-nav {
        max-width: 100%;
        float: none;
    }

    .banner-slider .slider.slider-for {
        padding-right: 0;
    }

    .banner-slider .slider.slider-nav {
        height: auto;
    }

    .slider-banner-image {
        /* height: 500px; */
        display: inline-block;
    }

    .slider.slider-nav.thumb-image {
        padding: 10px 30px 0;
    }

    .slider-nav .slick-slide span {
        padding: 5px 0;
    }

    .slick-arrow {
        padding: 0;
        width: 30px;
        height: 30px;
        top: 50%;
        bottom: 0;
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -moz-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg);
    }

    .slick-prev {
        left: 0;
        right: unset;
    }

    .slick-next {
        left: unset;
        right: 0;
        background-color: transparent;
    }

    .vehicle-detail-banner .car-slider-desc {
        max-width: 340px;
    }

    .bid-tag {
        padding: 10px 0 15px;
    }

    .slider.slider-nav.thumb-image {
        white-space: nowrap;
    }

    .thumbnail-image.slick-slide {
        padding: 0px 5px;
        min-width: 75px;
        display: inline-block;
        float: none;
    }
}

@media screen and (max-width : 767px) {
    .slider-banner-image {
        height: 400px;
    }

    .slider.slider-nav.thumb-image {
        padding: 0px 20px 0;
        margin: 0px 0px 0;
    }

    .slider-nav .slick-slide.thumbnail-image .thumbImg {
        max-width: 140px;
        height: 80px;
    }

    .slick-prev.slick-arrow {
        background-position: center 0px;
    }

    .slick-next.slick-arrow {
        background-position: center 10px, center;
    }

    .slider-nav .slick-slide span {
        font-size: 12px;
        white-space: normal;
    }

    .banner-slider .slider.slider-nav {
        height: auto;
        padding: 15px 20px 0;
    }
}

@media screen and (max-width: 580px) {
    .slider-banner-image {
        height: 340px;
    }
}

@media screen and (max-width : 480px) {
    .slider-banner-image {
        height: 280px;
    }
}

.pd-right {}

.sku-part {
    font-size: 18px;
    line-height: 28px;
    color: #dc0d14;
    font-weight: 600;
}

.sku-part span {
    font-weight: 600;
    color: #000;
}

.pd-right h2 {
    font-size: 32px;
    line-height: 46px;
    font-weight: 600;
    margin: 10px 0 6px;
}

.pd-right h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.p-dtls {}

.p-dtls h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}

.p-dtls p {
    text-align: justify;
    line-height: 26px;
    margin-bottom: 12px;
}

.pd-right .btn.default-btn {
    text-transform: uppercase;
}

.pd-share {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.pd-share h6 {
    font-size: 18px;
    font-weight: 600;
}

.pd-share ul {}

.pd-share ul li {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgb(0 0 0 / 17%);
    margin-left: 8px;
}

.pd-share ul li a {
    display: inline-block;
    line-height: 30px;
    color: #fff;
    width: 100%;
}

.pd-share ul li:first-child {
    background: #0766ff;
}

.pd-share ul li:nth-child(2) {
    background: radial-gradient(circle at 41% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.pd-share ul li:nth-child(3) {
    background: #25d366;
}

.pd-share ul li:last-child {
    background: #dc0d14;
}

.pd-share ul li:hover {
    box-shadow: 0 4px 15px rgb(0 0 0 / 35%);
}

.modal.compatible-modal {}

.modal.compatible-modal .modal-content {
    border-radius: 0px;
}

.modal.compatible-modal .modal-header {
    position: relative;
    justify-content: center;
    background: #000000;
    border-radius: 0px;
    border-bottom: none;
}

.modal.compatible-modal .modal-header h5 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #fff;
}

.modal.compatible-modal .modal-header .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    filter: invert(1);
    opacity: 1;
    box-shadow: none !important;
}

.modal.compatible-modal .modal-body {
    padding: 0px;
}

.modal-top {}

.mt-img {
    width: 120px;
    margin: 10px auto;
}

.mt-img img {}

.mt-text {
    text-align: center;
    padding: 0px 15px;
}

.mt-text h5 {
    font-size: 24px;
    font-weight: 600;
    margin: 6px 0px 6px;
}

.mt-text h6 {
    font-size: 18px;
    line-height: 28px;
    color: #dc0d14;
    font-weight: 600;
    margin-bottom: 10px;
}

.mt-text h6 span {
    color: #000;
}

.modal-mid {}

.modal-mid p {
    margin-bottom: 0px;
}

.modal-mid .table-new,
.modal-mid table {
    padding: 0px 15px;
    width: calc(100% - 30px) !important;
    margin: 0px 15px;
}

.modal-mid .table-new .table,
.modal-mid table {}

.modal-mid .table-new thead,
.modal-mid thead {
    background: #e1e1e1;
    border: 1px solid #dc0d14;
}

.modal-mid .table-new thead tr {}

.modal-mid .table-new thead th,
.modal-mid thead th {
    border-bottom-color: #111111 !important;
    color: #ffffff;
    background: #dc0d14;
    border-bottom-width: 0px;
    border-right: 1px solid #fff;
    text-align: center;
    padding: .5rem .5rem;
    text-transform: capitalize;
}

.modal-mid thead th:last-child {
    width: 60% !important;
}

.modal-mid .table-new tbody {}

.modal-mid .table-new tbody tr {}

.modal-mid .table-new tbody td,
.modal-mid tbody td {
    border: 1px solid #e1e1e1;
    font-weight: 600;
    background: #fff;
    text-align: center;
    vertical-align: middle;
    padding: .5rem .5rem;
}

.modal-bottom {
    padding: 0px 15px 15px;
    text-align: center;
}

.modal-bottom .alt-default-btn {}

@media only screen and (max-width:1399px) {
    .pd-right h2 {
        font-size: 30px;
        line-height: 42px;
        margin: 6px 0 6px;
    }

    .slider-banner-image {
        height: 390px;
    }

    .banner-slider .slider.slider-nav {
        height: 390px;
    }
}

@media only screen and (max-width:1199px) {
    .pd-right h2 {
        font-size: 26px;
        line-height: 34px;
        margin: 4px 0 4px;
    }

    .pd-right h3 {
        font-weight: 600;
        margin-bottom: 0px;
        font-size: 22px;
    }

    .p-dtls h6 {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
    }

    .p-dtls p {
        text-align: justify;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .slider-banner-image {
        height: 340px;
    }

    .banner-slider .slider.slider-nav {
        height: 340px;
    }
}

@media only screen and (max-width:991px) {
    .banner-slider {
        display: flex;
        flex-direction: column-reverse;
    }

    .banner-slider .slider.slider-for {
        padding-right: 0;
        padding-left: 0px;
    }

    .slider-banner-image {
        height: auto;
    }

    .banner-slider .slider.slider-nav {
        height: auto;
        padding: 15px 30px 0;
    }

    .pd-right {
        padding-top: 10px;
        text-align: center;
    }

    .pd-share {
        display: flex;
        align-items: center;
        margin-top: 20px;
        justify-content: center;
    }

    .thumbnail-image {
        border: 1px solid #000000;
        width: calc(100% - 15px) !important;
        cursor: pointer;
    }
}

@media only screen and (max-width:575px) {
    .modal-mid .table-new thead th:nth-child(2) {
        width: 33%;
    }
}

/* project-details-end */

/* product-details-page-end */

/* contact-us-start */

.contact-sec {}

.contact-sec-inner {}

.contact-sec-box {
    box-shadow: 0 4px 15px rgb(12 35 34 / 10%);
    position: relative;
    transition: 0.3s ease-in-out;
    padding: 20px 10px 10px;
    border-bottom: 4px solid #dc0d14;
}

.contact-img {
    width: 60px;
    padding: 10px;
    box-shadow: 0 4px 15px rgb(12 35 34 / 10%);
    margin: 0 auto;
}

.contact-img img {
    filter: invert(9%) sepia(96%) saturate(6906%) hue-rotate(355deg) brightness(98%) contrast(94%);
}

.contact-text {
    text-align: center;
    margin-top: 10px;
}

.contact-text h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #dc0d14;
}

.contact-text p {
    margin-bottom: 0px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
}

/* .contact-text p a {
    display: block;
} */

.contact-text p a:hover {
    color: #dc0d14;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
}

.contact-map-sec {
    position: relative;
    overflow: hidden;
    background-color: #f6f6f6;
}

/* .contact-map-sec:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/map-sec-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #dc0d14;
    background-blend-mode: luminosity;
}

.contact-map-sec:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0000002e;
} */

.contact-map-box {
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
    transition: 0.3s ease-in-out;
}

.contact-map-box h6 {
    padding: 15px;
    font-size: 24px;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 600;
    color: #ffffff;
    background: #000;
    letter-spacing: 0.5px;
}

.contact-page-form-sec {
    /* background-image: url(../images/spl-bg.jpg); */
    background-color: #ffffff8c;
    background-blend-mode: soft-light;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* .contact-page-form-card {
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
    padding: 40px 50px 50px;
    background: #fff;
} */

.cp-form.contact-us-wrap {
    background-color: #fff;
}

@media only screen and (max-width:1399px) {
    .contact-text p {
        height: auto;
    }
}

@media only screen and (max-width:1199px) {
    .contact-text p {
        height: 40px;
    }
}

@media only screen and (max-width:991px) {
    .contact-text p {
        height: auto;
    }
}

.pagination {
    padding-right: 0px;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #dc0d14;
    border-color: #dc0d14;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.page-link {
    color: #000000;
    font-weight: 600;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

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

.page-item.active a:hover {
    color: #000;
}

.page-link:focus {
    z-index: 3;
    color: #dc0d14;
    background-color: #f9f9f9;
    outline: 0;
    box-shadow: none !important;
}

/* contact-us-end */

.modal {
    padding-right: 0px !important;
}

.popup-modal {}

.popup-modal .modal-body {
    padding: 0px;
    position: relative;
}

.popup-modal .modal-content {
    border-radius: 0px;
}

.popup-modal .btn-close {
    position: absolute;
    background-image: url(../images/close.png);
    filter: invert(14%) sepia(77%) saturate(4359%) hue-rotate(349deg) brightness(97%) contrast(108%);
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    right: -30px;
    top: -30px;
    box-shadow: none !important;
}

@media only screen and (max-width:767px) {
    .popup-modal .btn-close {
        right: 0px;
        top: -30px;
    }
}

/* #popup-modal img {
    border-radius: 6px;
} */

.images-sec {
    /* background-color: #f6f6f6; */
}

.images-sec .img-box {}

.images-sec .img-box a {
    display: block;
}

.images-sec .img-box img {
    box-shadow: 0 4px 15px rgb(12 35 34 / 30%);
}