@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
:root {
    --black-color: #000;
    --yellow-color: #F8C14D;
    --red-color: #f00;
    --light-green: #54b352;
    --trans-yellow: rgb(248, 193, 77, 0.5);
    --font-bootstrap-icon: 'bootstrap-icons';
    --white-color: #fff;
    --gray-color: #666;
    --gray-txt: #999;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--white-color);
    background: var(--black-color);
}

.ShowOverlayDesk {
    position: relative;
    width: 100%;
    height: 100vh;
}

.ShowOverlayDesk::before {
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    transition: all 0.8s;
    animation: fadeIn 0.8s;
    -webkit-animation: fadeIn 0.8s;
    -moz-animation: fadeIn 0.8s;
    -o-animation: fadeIn 0.8s;
    -ms-animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a,
button,
.btn {
    transition: all 0.8s;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

input,
input:focus,
input:active,
select:focus,
select:active,
option:focus,
option:active,
textarea:focus,
textarea:active,
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.form-control:focus,
.form-control:active {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    margin: 0px;
    padding: 0px;
    font-weight: 600;
}

h1,
.h1 {
    font-size: 42px;
    line-height: 50px;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 44px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 38px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 32px;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 26px;
}

a,
a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    color: var(--white-color);
}

img {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    max-width: 100%;
}

p a {
    color: var(--white-color);
}

p {
    line-height: 26px;
    margin-bottom: 15px;
}

p strong {
    font-family: var(--font-medium);
}

p span {
    display: block;
}

ol li {
    list-style-type: decimal;
    padding-bottom: 10px;
}

.border-left {
    border-left: 1px solid var(--trans-yellow) !important;
}

.border-top {
    border-top: 1px solid var(--trans-yellow) !important;
}

.border-right {
    border-right: 1px solid var(--trans-yellow) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--trans-yellow) !important;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.HeaderTop {
    margin-top: 15px;
    padding: 15px 0;
    color: var(--yellow-color);
    border-bottom: 1px solid #2b2929;
    position: relative;
    z-index: 9;
}

.HeaderTop p,
.HeaderTop a {
    color: var(--yellow-color);
}

.HeaderTop a {
    display: inline-block;
    padding-left: 15px;
}

.HeaderTop a:hover {
    color: var(--white-color);
}

.HeaderTop a:first-child {
    padding-right: 15px;
}

.HeaderTop i {
    padding-right: 7px;
}

.CartBox .bi-cart3 {
    font-size: 20px;
}

.CartBox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--black-color);
    font-size: 10px;
    text-align: center;
    padding-top: 2px;
    position: relative;
    top: -10px;
    left: -10px;
}

.HeaderTop a:first-child .bi-instagram {
    background: linear-gradient(to bottom, #7423c0 0%, #c42d64 50%, var(--yellow-color) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.8s;
}

.HeaderTop a:first-child:hover .bi-instagram {
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color), var(--white-color) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .main-nav-top.fixedheader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
    animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    -o-animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    border-radius: 0;
    z-index: 3;
}

.LogoBox {
    position: absolute;
    top: -52px;
    width: 100%;
    text-align: center;
}

.navbar-brand {
    position: relative;
    z-index: 99;
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    right: 10px;
    bottom: 10px;
    overflow: hidden;
    padding: 12px;
}

.scroll-top-wrapper .scroll-top-inner {
    color: var(--black-color);
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 44px;
    border: 2px solid var(--yellow-color);
    border-radius: 55px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.scroll-top-wrapper .scroll-top-inner i {
    font-size: 26px;
}

.scroll-top-wrapper:hover .scroll-top-inner {
    background: var(--yellow-color);
    color: var(--black-color);
    border: none;
    border: 1px solid var(--white-color);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

::-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

.section-title .h1 {
    display: block;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: var(--font-medium);
    position: relative;
}

.section-title.btm-line .h1:before {
    width: 60%;
    height: 0px;
    border-bottom: 5px dotted var(--theme-background);
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    margin: auto;
}

section,
footer {
    float: left;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.btn-primary {
    background: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    border-radius: 10px;
    color: var(--black-color);
    padding: 9px 30px;
    transition: all 0.8s;
    font-size: 18px;
}

.btn-primary:focus,
.btn-primary:hover {
    background: var(--white-color);
    color: var(--black-color);
    border: 1px solid var(--white-color);
}

.btn-secondry {
    background: var(--white-color);
    border-radius: 10px;
    color: var(--black-color);
    border: 1px solid var(--white-color);
    padding: 9px 30px;
    transition: all 0.8s;
}

.btn-secondry:focus,
.btn-secondry:hover {
    background: var(--yellow-color);
    color: var(--black-color);
    border: 1px solid var(--yellow-color);
}

.HeaderNav {
    padding: 10px 0px;
}

header {
    position: absolute;
    z-index: 99;
    width: 100%;
}

header .fixedheader {
    position: fixed;
    width: 100%;
    background: #000;
    z-index: 9;
    left: 0;
    top: 0px;
    box-shadow: 0 0 5px rgb(236, 236, 236, 0.5);
    animation: slide-down 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.HeaderNav.fixedheader .LogoBox {
    position: relative;
    top: 40px;
}

.HeaderNav.fixedheader #navbarTogglerDemo {
    margin-top: 0px;
    padding-bottom: 0px;
}

.main-nav .container {
    position: relative;
}
.main-nav .navbar .nav-item{
    padding: 20px 30px 10px;
}
.main-nav .navbar .nav-item a {
    padding: 0;
    display: block;
    color: var(--white-color);
    font-weight: 400;
    font-size: 20px;
    position: relative;
}

.main-nav .navbar-nav:last-child .nav-item:last-child a {
    padding-right: 0px;
}
#navbarTogglerDemo .navbar-nav{
    justify-content: end;
    width: 100%;
}

/* .main-nav .navbar-nav:last-child .nav-item:last-child a {
    color: var(--black-color);
    padding-left: 20px;
    padding-right: 20px;
}

.main-nav .navbar-nav:last-child .nav-item:last-child a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border: 1px solid var(--white-color);
}

.main-nav .navbar-nav:last-child .nav-item:last-child a:hover::before {
    display: none;
} */

.main-nav .navbar .nav-item a:focus,
.main-nav .navbar .nav-item a:hover,
.main-nav .navbar .nav-item.current_page_item a,
.main-nav .navbar .nav-item.active a {
    color: var(--yellow-color);
}

.main-nav .navbar li.current_page_item ::before,
.main-nav .navbar li a::before,
.main-nav .navbar li.active a::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 0;
    left: 0;
    height: 2px;
    transition: all 0.5s;
    background: linear-gradient(130deg, var(--yellow-color), var(--black-color) 76.05%);
}
.main-nav .navbar li.current_page_item ::before,
.main-nav .navbar li:hover>a::before,
.main-nav .navbar li.active a::before {
    width: 100%;
}

.navbar-nav .dropdown ul.sub-menu li.nav-item{padding: 0px 0px 0px 0px;}
.navbar-nav .dropdown ul.sub-menu li:first-child{padding: 10px 0px 0px 0px;}
.navbar-nav .dropdown ul.sub-menu{display:none;}
.navbar-nav .dropdown:hover .dropdown-menu, .navbar-nav .dropdown:hover .sub-menu {display: block;position: absolute;}
.navbar-expand-lg .navbar-nav .dropdown-menu, .navbar-expand-lg .navbar-nav .sub-menu {padding: 5px 0 0 0;min-width: 200px;max-width: 300px;border-radius: 0px;white-space: nowrap;transition: all 0.3s;animation: 0.2s slide-up;background: transparent;}
.navbar-expand-lg .navbar-nav .dropdown-menu li a, .navbar-expand-lg .navbar-nav .sub-menu li a {display: block;padding: 10px;border-bottom: 1px solid var(--gray-color);background: var(--black-color);position: relative;overflow: hidden;font-size: 17px;}

@keyframes slide-up {
    from {
        margin-top: 10%;
        height: 100%;
    }
    to {
        margin-top: 0%;
        height: 100%;
    }
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a, .navbar-expand-lg .navbar-nav .sub-menu li:last-child a {border-bottom: none;}
.navbar-expand-lg .navbar-nav .dropdown-menu li:first-child a, .navbar-expand-lg .navbar-nav .sub-menu li:first-child a {border-radius: 10px 10px 0 0;}
.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child a, .navbar-expand-lg .navbar-nav .sub-menu li:last-child a {border-radius: 0 0 10px 10px;}
.navbar-nav>.dropdown>a::after {display: inline-block;margin-left: 10px;vertical-align: .255em;content: "";position: relative;top: 2px;border: solid var(--white-color);
    border-width: 0 1px 1px 0;display: inline-block;padding: 4px;transform: rotate(45deg);-webkit-transform: rotate(45deg);}
.main_slider {padding: 180px 0 0 0;background: url(../images/banner-image.png);background-repeat: no-repeat;background-size: 100%;background-position: center top;}

.main_slider .carousel-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white-color);
    border-radius: 10px;
    opacity: 1;
    bottom: 70px;
    top: auto;
    left: 0px;
    transition: all 0.7s;
}

.SlidePic {
    text-align: center;
}

.main_slider .carousel-arrow.carousel-control-next {
    left: 65px
}

.main_slider .carousel-item {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.main_slider .carousel-caption {
    position: relative;
    bottom: initial;
    left: 0;
    text-align: left;
    padding: 0px;
    max-width: 100%;
    width: 100%;
}

#slider .container {
    position: relative;
}

#slider .TxtBox {
    text-align: center;
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

#slider.innerBanner .TxtBox {
    max-width: 100%;
}

#slider .TxtBox .h1 {
    color: var(--white-color);
    font-size: 35px;
    padding: 0px 0 20px;
    line-height: 60px;
    font-weight: 700;
}

#slider .TxtBox .h1 span {
    color: var(--yellow-color);
    position: relative;
    font-weight: 700;
}

#slider .TxtBox h4 {
    color: var(--black-color);
    font-size: 26px;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

#slider .TxtBox p {
    color: var(--black-color);
    font-size: 24px;
}

#slider .TxtBox h6 {
    color: var(--yellow-color);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    padding-top: 8px;
    padding-left: 10px;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 60px;
}

#slider .TxtBox h6 span {
    position: relative;
    width: 100%;
    padding: 0 25px;
    /* background: var(--black-color); */
}

#slider .TxtBox h6::after,
#slider .TxtBox h6::before {
    position: absolute;
    width: 22%;
    height: 1px;
    content: '';
    top: 50%;
    background: var(--yellow-color);
}

#slider .TxtBox h6::before {
    left: 0;
}

#slider .TxtBox h6::after {
    right: 0;
}

#slider .TxtBox a {
    min-width: 250px;
    font-size: 20px;
    margin: 0 5px;
    padding: 10px 15px;
    text-align: center;
    border-radius: 50px;
}


.navbar-brand,
.navbar-brand img {
    transition: all 0.8;
}

.fixedheader .navbar-brand img {
    height: 60px;
    transition: all 0.8;
}

.LoginModal .Close {
    background: var(--red-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    float: right;
    color: #fff;
    font-size: 22px;
    margin: -10px -10px 0 0;
}
.Homeslider .owl-nav{
    position: absolute;
    top: 45%;
    width: 100%;
}
.Homeslider .owl-nav button{
    width: 40px;
    height: 40px;
    background: var(--yellow-color);
    border-radius: 50%;
    color: var(--white-color);
    border: none;
    font-size: 22px;
    font-weight: 700;
    position: absolute;
    border: 1px solid transparent;
}
.Homeslider .owl-nav button:hover{
    background: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}
.Homeslider .owl-nav button.left-arrow{
    left: 5%;
}
.Homeslider .owl-nav button.right-arrow{
    right: 5%;
}

/************service slider ***************/
.OurServices .owl-nav{text-align: center;width: 100%;margin-bottom: 30px;}
.OurServices .owl-nav button{width: 40px;height: 40px;background: var(--yellow-color);border-radius: 50%;color: var(--white-color);border: none;
    font-size: 22px;font-weight: 700;position: absolute;border: 1px solid transparent;}
.OurServices .owl-nav button:hover{background: var(--black-color);color: var(--white-color);border: 1px solid var(--white-color);}
.OurServices .owl-nav button.left-arrow{margin-left: -40px;}
.OurServices .owl-nav button.right-arrow{margin-left: 10px;}
.ServicesList ul li.main_service_tab {padding: 13px 15px;display: block;font-size: 19px;font-weight: 700;border-bottom: 1px solid #7a5401;}

.ServiceContent p{font-size:18px;}
.ListGolden li strong {color: #f8c14d;font-size: 17px;}
/*------ Search ----*/

.MultipuleSecton {
    background: url(../images/maltiBg.png) left bottom no-repeat;
}

.SearchSection {
    padding-bottom: 65px;
    background: url(../images/InventoryBg.png) center bottom no-repeat;
}

.SearchSection select {
    width: 100%;
    padding: 15px 10px;
    color: var(--gray-color);
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    background: transparent;
    margin-bottom: 20px;
}

.TitleCent {
    display: inline-block;
    margin-bottom: 50px;
    padding-bottom: 15px;
    font-size: 35px;
    font-weight: 700;
    position: relative;
}

.TitleCent::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: 5px;
    background: linear-gradient(130deg, var(--black-color) 20%, var(--yellow-color), var(--black-color) 76.05%);
}

.h3 {
    font-size: 35px;
    font-weight: 700;
    position: relative;
}

.h3::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: 5px;
    background: linear-gradient(130deg, var(--yellow-color), var(--black-color) 76.05%);
}

.TitleCent span {
    color: var(--yellow-color);
}

.BottonBox .btn {
    border-radius: 30px;
}

.btn i {
    padding-right: 7px;
}

.Resetbtn {
    border: 2px solid var(--yellow-color);
    padding: 9px 30px;
    font-size: 18px;
    color: var(--yellow-color);
    margin-left: 15px;
}

.Resetbtn:hover {
    border: 2px solid var(--white-color);
    color: var(--white-color);
}


/*------ New Arrived Vehiclesout ----*/

.TitleBox {
    border-bottom: 1px solid #111;
    padding-bottom: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.TitleBox .h3 {
    width: calc(100% - 100px);
}

.TitleBox .h3::before {
    width: 200px;
    height: 5px;
    content: '';
    left: 0;
    top: auto;
    bottom: -13px;
}

.ViewAll {
    width: 100px;
    color: var(--yellow-color);
    position: relative;
    display: block;
    text-align: right;
}

.ViewAll i {
    padding-right: 7px;
}

.ViewAll::before {
    content: "";
    position: absolute;
    top: -10px;
    width: 1px;
    left: 0;
    height: 50px;
    background: var(--yellow-color);
}

.ProductBox {
    text-align: center;
    padding: 10px;
}

.ProductBox:hover .ThumbsBox img {
    transform: scale(1.04);
}

.ThumbsBox img {
    border: 2px dotted var(--yellow-color);
    margin-bottom: 20px;
    height: 286px;
    border-radius: 13px;
    transition: all 0.8;
    object-fit: cover;
}

.ProductBox h4 {
    font-size: 24px;
    color: var(--yellow-color);
    position: relative;
    margin-bottom: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.ProductBox h4::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background: linear-gradient(130deg, var(--black-color) 25%, var(--yellow-color), var(--black-color) 76.05%);
}

.Procuts-slide .owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
}

.Procuts-slide .owl-nav button {
    width: 50px;
    height: 50px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--trans-yellow);
    border: none;
}

.Procuts-slide .owl-nav button:hover {
    background: var(--yellow-color);
}

.Procuts-slide .owl-nav button.left-arrow {
    position: absolute;
    left: 20px;
}

.Procuts-slide .owl-nav button.right-arrow {
    position: absolute;
    right: 20px;
}


/*------ Testimonia css ----*/
.testimonials-section {
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.testimonial-card {
    flex: 0 0 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    text-align: left;
    position: relative;
    border-top: 5px solid var(--yellow-color);
}

.testimonial-text {
    line-height: 1.6;
    color: #303030;
    margin-bottom: 25px;
    font-style: italic;
    border: none;
    padding: 0;
    position: relative;
    height: 150px;
    display: -webkit-box;
    line-clamp: 6;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-text::before {
    content: "“";
    font-size: 4em;
    color: var(--gray-txt);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
    line-height: 1;
}
.client-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.client-photo {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--black-color);
}

.client-name {
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.client-title {
    font-size: 0.9em;
    color: #777;
    margin: 0;
}
.Testimonial .owl-dots .owl-dot{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gray-txt);
    margin: 30px 5px 0;
}
.Testimonial .owl-dots .owl-dot.active{
    width: 30px;
    height: 15px;
    border-radius: 10px;
    background: var(--yellow-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
@media (max-width: 991px) {
   .navbar-nav .dropdown:hover .dropdown-menu, .navbar-nav .dropdown:hover .sub-menu {display: block;position: relative !important;}
}



/* --------- About css ------- */

#HomeAbout {
    margin-top: 30px;
}

.HmAboutLeft {
    padding-left: 25px;
    position: relative;
}

.HmAboutLeft figure {
    position: relative;
    margin-right: 20px;
}

.HmAboutLeft figure img {
    border-radius: 20px;
    border-right: none;
}
.AbBottomTxt {
    padding-right: 30px;
}


.AbBottomTxt p {
    font-size: 16px;
    color: var(--gray-txt);
}
.ListGolden {
    padding-top: 15px;
}
.ListGolden li{
    position: relative;
    padding: 10px 0 0 35px;
}
.ListGolden li::before{
    position: absolute;
    content: '\F270';
    color: var(--yellow-color);
    font-weight: 500;
    font-size: 20px;
    left: 0;
    top: 8px;
    font-family: var(--font-bootstrap-icon);
}

.title3YelW {
    font-size: 35px;
    color: var(--yellow-color);
    font-weight: 700;
}
.title3YelW span{
    font-size: 35px;
    color: var(--white-color);
    font-weight: 700;
}
.title3Yel {
    font-size: 30px;
    display: block;
    color: var(--yellow-color);
    font-weight: 400;
    padding: 15px 0;
}

.Abouttell {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.Abouttell .bi-telephone {
    display: flex;
    width: 55px;
    height: 55px;
    border: 1px solid var(--yellow-color);
    border-radius: 50%;
    color: var(--yellow-color);
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin-right: 15px;
}

.Abouttell .bi-telephone:hover {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.Abouttell p a {
    font-size: 20px;
    color: var(--yellow-color);
}

/* ------------ Our services css ------------ */

.ProductBox.Parts {
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 0;
    position: relative;
    border-bottom: 5px solid var(--yellow-color);
    transition: all 0.8s;
    overflow: hidden;
}

.ProductBox.Parts:hover {
    border-bottom: 5px solid var(--white-color);
}

.ProductBox.Parts:hover img {
    transform: scale(1.07);
}

.ProductBox.Parts::after {
    width: 100%;
    position: absolute;
    height: 100%;
    content: '';
    bottom: 0;
    left: 0;
    z-index: -1;
    border: 1px solid var(--yellow-color);
    border-radius: 10px;
    transition: all 0.8s;
}

.ProductBox.Parts:hover::after {
    border: 1px solid var(--white-color);
}

.ProductBox.Parts h4 {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;min-height:85px;
}

.PartsThumbs {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.PartsThumbs img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.Partstxt {
    padding: 20px;
    padding-top: 10px;
}
.Partstxt p{
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.AvaibleStock span {
    color: var(--yellow-color);
}

.ProductBox.Parts .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.ProductBox.Parts .btn small {
    font-size: 14px;
}

.ProductBox.Parts .btn b {
    display: block;
    font-size: 16px;
    margin-top: -5px;
}
.DetailBtnBox .btn-primary,
.DetailBtnBox .btn-secondry {
    width: 100%;
    display: block;
}

.DetailBtnBox .btn-secondry:hover {
    background: var(--black-color);
    color: var(--white-color);
    border-color: var(--white-color);
}

.DetailBtnBox .btn-primary:hover {
    background: var(--black-color);
    color: var(--yellow-color);
    border-color: var(--yellow-color);
}


/* ------------ Contact css ------------ */
.ContactWrapper {
    background-color: #f4f7f6;
}
.contact-form-wrapper {
    flex: 1;
    padding: 30px;
    background-color: var(--black-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #747474;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

.InnerBanner {
    position: relative;
}

.InnerBanner::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    z-index: 2;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.contBoxWrapp {
    height: 100%;
}

.ContactForm textarea {
    height: 100px !important;
}

.ContactForm textarea {
    height: 100px !important;
}
.ContactForm .form-control {background:var(--black-color);padding: 15px 10px;border: 1px solid transparent;box-shadow: 0 0 4px var(--white-color);
    color: var(--white-color);-webkit-appearance: auto; -moz-appearance: auto;appearance: auto;}
.ContactForm label {
    padding-bottom: 5px;
}
.queckCont {
    margin-top: 60px;
    margin-bottom: 30px;
}

.queckCont .bi {
    color: var(--white-color);
    font-size: 25px;
}

sup {
    color: var(--red-color);
}

.UpperBox {
    /* border: 2px solid var(--yellow-color); */
    box-shadow: inset 0 0 10px #888;
    border-radius: 10px;
    padding: 0px;
    height: 100%;
    transition: all 0.8s;
    font-weight: 500;
    display: flex;
}

.ContIconBox {
    background: #FFAD00;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s;
    margin-top: 0px;
}

.UpperBox a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
}

.UpperBox:hover {
    background: #ffffff1f;
}

.ContIconBox img {
    width: 60%;
}

.ContLeft img {
    border-radius: 20px;
    margin: 20px 0 0 0;
    padding: 0;
}

.UpperBox:hover strong,
.UpperBox:hover p {
    color: var(--white-color);
}

.queckCont .HalfBox .UpperBox {
    /* margin-top: 30px; */
    padding: 10px;
}

.queckCont .HalfBox .UpperBox span {
    display: inline-block;
}

.queckCont .HalfBox .UpperBox .ContIconBox {
    margin-top: 8px;
}

.queckCont .HalfBox .UpperBox:hover strong,
.queckCont .HalfBox .UpperBox:hover p {
    color: var(--white-color);
}

.ContBody .FtMapBox {
    display: none !important;
}

.Map {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
/* ------- Gallery css ------- */
.thumb {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    padding: 5px;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    border-radius: 5px;
    /* background: var(--yellow-color); */
}

.GallerPage .thumb:hover img {
    transform: scale(1.2);
}

.GallerPage .thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px dashed var(--yellow-color);
}

.GallerPage .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
    border-radius: 10px;
}
div#lightboxed--bttn_close:hover,
div#lightboxed--bttn_prev:hover,
div#lightboxed--bttn_next:hover{opacity: 0.8;}

.lightboxed--thumb_border img {
    width: 50px;
    height: 60px;
    border-radius: 5px;
}

.PagiNav .page-link:focus {
    box-shadow: none;
}
.PagiNav .pagination a{color: var(--black-color);}
.PagiNav .pagination li.active a{
    background: var(--yellow-color);
    color: var(--white-color);
    border-color: transparent;
}
.ServicesList {
    background: #6c4900;
    width: 250px;
    border-radius: 10px;
    transition: all 1s;
    margin-top: 88px;
}
.ServicesList.topSpace {
    /* position: fixed; */
    z-index: 9;
    top: 30px;
    transition: all 1s;
}

.ServicesList li a{
    padding: 13px 15px;
    display: block;
    font-weight: 500;
    border-bottom: 1px solid #7a5401;
}
.ServicesList li a:hover{
    color: var(--yellow-color);
    border-bottom: 1px solid var(--yellow-color);
}
.ServicesList li:last-child a,
.ServicesList li:last-child a:hover{
    border-bottom: 1px solid transparent;
}
.ServicePic img{
    border-radius: 30px 20px 30px 20px;
    border-bottom: 10px solid var(--yellow-color);
}
/* ------------ Footer css ------------ */

#footer {
    background: rgba(9, 9, 9) url(../images/footerBg.png) center center no-repeat;
    background-size: cover;
}

.footerLogo img {
    max-width: 90%;
}

#footer p {
    color: var(--white-color);
}

#footer .ftr-hdng {
    color: var(--white-color);
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    font-size: 20px;
}

.FooteNav li a,
.FooteNav li {
    width: 100%;
    padding: 5px 0;
    color: var(--white-color);
    font-weight: 400;
}

.FooteNav li i {
    padding-right: 10px;
    padding-top: 3px;
}

#footer p .bi {
    padding-right: 10px;
    float: left;
    padding-bottom: 25px;
    padding-top: 3px;
}

.footer-about ul li a {
    padding-bottom: 0px;
    padding-left: 30px;
    background: url(../images/check2_arrow2.png) left 0 top 6px no-repeat;
}

.footer-about ul li.current_page_item a, .footer-about ul li a:hover {padding-bottom: 0px;background: url(../images/check2_arrow2.png) left 0 top -15px no-repeat;
}

#footer li a:hover, #footer .FooteNav li.current-menu-item a{color: #ffa707;}
#footer .copyright p {color: var(--white-color);background: var(--black-color);padding: 10px;}