*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --yellow: #F3B703;
    --gradient-yellow: linear-gradient(90deg, #F3B703 0%, #EB9A02 100%);
    --white: #ffffff;
    --black: #000000;
    --grey: #5F5F5F;
    --heading-font: "Sumana", serif;
    --sub-font:"Sora", sans-serif;
    --body-font:"Inter", sans-serif;
}
html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: var(--body-font);
    background: var(--white);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--grey);
}
h1, h2{
    font-family: var(--heading-font);
}
h3, h4, h5, h6{
    font-family: var(--body-font);
    letter-spacing: 0;
}
p{
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--grey);
}
p:last-child{
    margin-bottom: 0 !important;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a{
    text-decoration: none !important;
}
li{
    list-style-type: none;
}
.space{
    padding: 90px 0;
}
.btn{
  height: 40px;
  min-width: 140px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 13px;
  font-family: var(--body-font);
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}
.btn-main{
  background: var(--gradient-yellow);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-main:hover{
  opacity: 0.9;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  color: var(--yellow);
  border-color: var(--black);
  background: var(--black);
}

/* ................................navbar start.............. */
.myHeader{
    background-color: var(--black);
}
.navbar-brand img{
    height: 68px;
    width: auto;
    object-fit: contain;
}
.myHeader .btn-outline{
    border-color: var(--white);
    color: var(--white);
}
.myHeader .btn-outline:hover, .myHeader .btn-outline:focus, .myHeader .btn-outline:active{
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}
.myHeader li{
    margin: 0 14px;
}
.navbar-nav li a{
    color: var(--white);
    font-family: var(--body-font);
    font-size: 13px;
    padding: 0 !important;
}
.navbar-nav li.active a{
    color: var(--yellow);
}
.navbar-nav ul{
    padding: 0;
    margin: 0;
}
.myHeader .navbar-nav  ul{
    display: flex;
    gap: 20px;
}

/* ....................banner start............ */

.banner-img{
    position: relative;
    padding-top: 82%;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
    width: auto;
}
.banner-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-text h1{
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    padding-bottom: 20px;
    color: var(--black);
}
.banner-box {
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}
.common-para p{
    position: relative;
    padding-left: 20px;
}
.common-para p::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--yellow);
}
.banner-text h6, .about-text h6{
    color: var(--yellow);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    font-family: var(--sub-font);
    width: fit-content;
}
.banner-text h6::after, .about-text h6::after {
    position: absolute;
    content: "";
    top: 9px;
    left: calc(100% + 12px);
    width: 120px;
    height: 1px;
    background: var(--yellow);
}
.banner-number li h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}
.banner-number li h3 span{
    color: var(--yellow);
}
.banner-number li h4{
    font-size: 13px;
    margin-bottom: 0;
}
.banner-number li:not(:last-child){
    padding-right: 28px;
    border-right: 1px solid #e6e6e6;
    margin-right: 28px;
}

/* .............................................about start.................. */
.about{
    background-color: #f5f5f5;
}
.about-text h2, .single-service  h1{
    font-family: var(--heading-font);
    color: var(--black);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
}
.about-text h2 strong{
    display: block;
}
.about-vid{
    position: relative;
    padding-top: 60%;
}
.about-vid video{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
}
/* ....................................our services................ */
.premium{
    padding: 24px;
    gap: 20px;
    border-radius: 8px;
    background: var(--gradient-yellow);
}
.premium .pre-icon{
    background: var(--white);
    height: 64px;
    width: 64px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 12px;
}
.premium .pre-icon img{
    filter: brightness(0) saturate(100%) invert(82%) sepia(39%) saturate(7260%) hue-rotate(12deg) brightness(113%) contrast(98%);
}
.premium h4{
    font-size: 18px;
    color: var(--white);
}
.premium p{
    color: var(--white);
    padding-left: 0;
    font-size: 13px;
    line-height: 1.4;
}
.premium p::before{
    display: none;
}


.service-img{
    position: relative;
    padding-top: 86%;
    overflow: hidden;
}
.service-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.service-box:hover .service-img img{
    transform: scale(1.1);
}
.service-box{
    border: 1px solid #d4d4d4;
    border-radius: 12px;
    overflow: hidden;
}
.service-text-box{
    padding: 15px 12px;
}
.serv-title{
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.service-text-box p{
    font-size: 13px;
    line-height: 1.4;
}
.service-price{
    align-items: center;
    border-top: 1px solid #e6e6e6;
    padding-top: 16px;
}
.service-price h3{
    font-size: 18px;
    color: var(--black);
    font-weight: 700;
}
.service-price h3 span{
    font-size: 11px;
    color: #ACACAC;
    display: block;
    font-weight: 400;
    margin-bottom: 2px;
}
.service .about-text .btn-main{
    background: var(--black);
    color: var(--white);
}
.desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ....................................Our Moto.................. */
.moto{
    min-height: 500px;
    background-size: cover !important;
    background-attachment: fixed !important;
    z-index: 1;
}
.moto::before, .inner-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #000000c8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.moto .about-text, .testimonial .about-text{
    max-width: 72%;
}
.moto .about-text h6, .testimonial .about-text h6{
    margin:  0 auto;
}
.moto .about-text h6::before, .testimonial .about-text h6::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -132px;
    width: 120px;
    height: 1px;
    background: var(--yellow);
}
.moto .about-text h2{
    color: var(--white);
}
.moto .about-text p{
    color: #ACACAC;
}
/* ..........................why choose us.......... */
.why-img{
    position: relative;
    padding-top: 120%;
}
.why-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.why-one h5{
    font-size: 14px;
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--black);
    margin-bottom: 4px;
}
.why-one p, .why-box{
    font-size: 13px;
    line-height: 1.4;
}
.question::before{
    content: "\f046";
    font: normal normal normal 14px / 1 FontAwesome;
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #F5F5F5;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: var(--yellow);
}
.why-box{
    gap: 12px;
}
.why-icon{
    height: 48px;
    width: 48px;
    /* line-height: 48px; */
    text-align: center;
    padding: 8px;
    background-color: #F5F5F5;
    border-radius: 50%;
    flex-shrink: 0;
}
.why-row{
    row-gap: 28px;
}
.have{
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 8px;
    margin-top: 35px;
}
.question{
    position: relative;
    padding-left: 48px;
    flex-grow: 1;
}
.question::before{
    content: "\f095";
    font: normal normal normal 14px / 1 FontAwesome;
    background-color: var(--white);
    color: var(--black);
    height: 36px;
    width: 36px;
    line-height: 34px;
    border: 1px solid #e4e4e4;
}
.question::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #5F5F5F;
    width: 1px;
    height: 100%;
}
.have h6{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.have h5{
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}


/* ............................Why choose end............................... */

/* ...............testimonial start.......... */
.testimonial{
    background-color: #f5f5f5;
}
.testimonial .about-text{
    margin-bottom: 24px;
}
.testimonial .about-text h2{
    margin-bottom: 12px;
}
.test-text .fa{
    font-size: 28px;
    color: var(--yellow);
}
.test-text h5{
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}
.test-text p{
    font-size: 13px;
    line-height: 1.4;
}
.test-box{
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}
.test-text{
    padding: 20px 25px;
}
.test-img{
    position: relative;
    padding-top: 62%;
}
.test-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.test-client-img{
   width: 42px;
   height: 42px;
}
.test-client-box{
    display: flex;
    align-items: center;
    gap: 15px;
}
.test-client-box h5{
    font-size: 14px;
    margin-bottom: 0;
}
/* .................contact us start......... */
.contact-img{
    position: relative;
    padding-top: 80%;
}
.contact-img img{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
}
.location-text h5{
    font-size: 14px;
    color: var(--yellow);
}
.location-text p{
    font-weight: 600;
    color: var(--black);
}
.location-text .question::after{
    display: none;
}
.location-text .question::before {
    content: "\f041";
    background-color: var(--yellow);
    color: var(--white);
    border: 1px solid var(--yellow);
}


/* ..................contact us end............ */

.myfooter{
    background-color: var(--black);
    padding: 80px 0 14px;
    color: #ffffffda;
}
.footer-logo img{
    height: 120px;
    width: auto;
    object-fit: contain;
}
.quick-link{
    padding-top: 60px;
}
.quick-link h5{
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-note, .quick-link li a, .copyright a{
    color: #b3b1b1;
}
.quick-link li:hover a, .copyright a:hover{
    color: var(--white);
}
.social-icon{
    gap: 20px;
}
.social-icon li a{
    color: white;
    font-size: 24px;
}
.social-icon li:hover a{
    color: var(--yellow);
}
.quick-link li:not(:last-child){
    margin-bottom: 4px;
}
.copyright{
    padding-top: 12px;
    border-top: 1px solid #2a2a2a;
    margin-top: 48px;
}
.to-top{
    background-color: var(--yellow);
    color:var(--black);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    position: fixed;
    right: 40px;
    bottom: 40px;
    text-align: center;
    display: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.to-top.show{
    display: block;
}


.inner-banner {
    position: relative;
    height:240px;
    background:#000;
    background-size: cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.inner-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.inner-banner .baner_img_page{
    height: 100%;
    width:100%;
    object-fit: cover;
    object-position: 50% 20%;
}
.inner-banner_text {
    position: absolute;
    top:52%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
    width: 100%;
}
.inner-banner h1{
    font-weight: 500;
    font-family: var(--heading-font);
    color: var(--white);
}
.breadcrumb-item{
    font-family: var(--body-font);
}
.breadcrumb-item a{
    color: var(--yellow);
}

/* About Us  */
.ab-row .about-img {
    padding-top: 82%;
}
.ab-row .about-img img {
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
}
.about-cms .ab-row:nth-child(even){
    flex-direction: row-reverse;
}
.about-cms .ab-row:not(:last-child){
    margin-bottom: 90px;
}
.about-text ul{
    padding-left: 0;
    margin-bottom: 0;
}
.about-text ul li::before{
    content: "\f068  ";
    font: normal normal normal 8px / 1 FontAwesome;
    border: none;
    color: var(--black);
    margin-right: 8px;
}
.about-text h5{
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

/* Contact Page  */
.contact-info{
    background: linear-gradient(270deg, #d5a105 0%, #EB9A02 100%);
    padding: 24px;
    border-radius: 12px;
}
.contact-info h5{
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}
.contact-info .con-box:not(:last-child){
    margin-bottom: 20px;
    border-bottom: 1px dashed #ffffff60;
    padding-bottom: 20px;
}
.contact-info .con-box{
    padding-left: 48px;
}
.contact-info .fa {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: var(--white);
    background: #ffffff40;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}
.contact-info .social-list .fa:hover{
    background: var(--white);
    color: var(--green);
}
.form-control, .es-form-field-container .gjs-cell input{
    height: 36px !important;
    font-size: 13px;
    border-radius: 4px !important;
    background: #F5F5F5;
    border: 1px solid #6B6B6B40 !important;
    color: var(--darkgrey) !important;
    font-weight: 500;
}
.form-control::placeholder{
    color: var(--darkgrey);
    text-transform: uppercase;
    font-size: 11px;
}
textarea {
    width: 100%;
    min-height: 80px !important;
    max-height: auto !important;
    border-radius: 4px;
    background: #F5F5F5;
    border-color: #6B6B6B40;
    padding: 12px;
}
.form-control:focus, textarea:focus{
    border-color: var(--brown) !important;
    box-shadow: none;
    border-radius: 0;
    outline: none;
}
.contact-form label{
    font-size: 13px !important;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 16px 4px #00000010;
}
.form-row{
    row-gap: 0 !important;
}
input[type="submit"]{
    color: var(--black) !important;
    background-color: var(--yellow) !important;
    border-color: var(--yellow) !important;
    line-height: 30px !important;
    border-radius: 4px !important;
}
input[type="submit"]:hover, input[type="submit"]:focus{
    color: var(--yellow) !important;
    background-color: var(--black) !important;
    border-color: var(--black) !important;
}


/* Service Page  */
.service-cms .serv-row{
    margin:  0 -6px;
    row-gap: 16px;
}
.service-cms .serv-row [class*="col-"]{
    padding:  0 6px;
}

/* Service Details Page  */
.service-banner{
    height: 80px;
}
.bike-img{
    position: absolute;
    height: 100%;
    width: 34%;
    top: 0;
    right: 0;
    z-index: -1;
}
.bike-img img{
    object-fit: contain;
}
.wrap .why-row{
    margin: 0 -6px;
    row-gap: 12px;
}
.wrap .why-row [class*="col-"]{
    padding: 0 6px;
}
.wrap .why-box{
    background: var(--white);
    padding: 20px;
    line-height: 1.4;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.wrap .why-box:hover{
    color: #ACACAC;
    background: var(--black);
}
.wrap .why-box:hover h5{
    font-weight: 500;
    color: var(--yellow);
}
.wrap .why-icon {
    padding: 10px;
    background: var(--yellow);
    border-radius: 4px;
}
.wrap .why-box:hover .why-icon {
    background: #ffffff24;
}
.wrap .why-box:hover .why-icon img{
    filter: brightness(0) invert(1);
}

/* Error Page  */
.error-404 h1.page-title {
    font-family: 'Inter';
    font-weight: 800;
    color: var(--black);
}
.error-404 .fa{
    font-size: 42px;
    color: #ec9d02;
    margin-bottom: 40px;
}
.error-404 h3{
    font-size: 18px;
    max-width: 80%;
    margin: 0 auto;
}