body, a, p, h1, h2, h3, h4, h5, h6, .btn, button, span, input , select, textarea {font-family:Open Sans}
body {
	font-size: 14px;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 25px; 
    color: #000;
}

a{
    color: white;
    text-decoration: none;
}
a:hover{
    color: #ccc;
    text-decoration: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
    background: #292929;
    height: 40px;
    font-size: 13px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

.topbar .contact-info i {
    font-style: normal;
    color: #fff;
    line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

@media (max-width: 575px) {

    .topbar .contact-info i a,
    .topbar .contact-info i span {
        font-size: 13px;
    }
}

.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

.topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.topbar .social-links a:hover {
    color: #fff;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    background-color: #151515;
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 70px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
    max-height:58px;
    margin-right: 6px;
    width: 150px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: #f96f59;
}

.sticked-header-offset {
    margin-top: 70px;
}

section {
    scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-secondary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
        color: #006a5d;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-secondary);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgb(56 56 56 / 90%);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--color-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
    }

    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
        color: #fff;
        background: rgba(0, 131, 116, 0.8);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        background-color: #007466;
        border: 1px solid #006459;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: rgba(255, 255, 255, 0.6);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(56, 56, 56, 0.8);
        z-index: 9996;
    }
}


footer {background:#333333;clear:both}
footer a, footer li, footer p {font-size:12px;color:#ccc;font-weight: 600;}
footer h4 {
	color: #D3BF2F;
    margin: 0;
    padding: 0 0 24px; 
    font-size: 14px;
    font-weight: 700;
}
#footer-area-setting a:hover{
    color: #D3BF2F;
}
footer .first img {margin-bottom:35px}
.bor div.sep{display:block;margin:0 auto;padding-top:130px;padding-bottom:130px;width:1px;background:rgba(49, 49, 47, 0.13)}
footer ul {
	    margin: 0;
    padding: 0;
    list-style-type: none;
}
footer ul li {    margin-bottom: 10px;}
footer ul li a i {margin-right: 5px;}
footer ul.social {float: none;
    margin-top: 18px;}
footer ul.social a {
	    padding: 4px 10px;
    background: #008000;
    text-align: center;
    width: 30px;
    height: 30px;
    margin-right: 4px;
}	
footer ul.social a i {margin:0; color: #fff;}
footer .third ul li a {
	    width: 100%;
    border-bottom: 1px solid rgba(49, 49, 47, 0.13);
    display: block;
}
footer .first, footer .second, footer .third {margin-bottom:28px}
.footer-bottom {
    padding: 10px 0;
    background: #242424;
    margin: 10px 0;
}
.footer-bottom ul {}
.footer-bottom ul li {
    margin-left: 14px;
}
.footer-bottom ul li a{}


ul.ul li i{
	display: table-cell;
    margin-right: 5px;
    padding-right: 10px;
    color: #008000;
    font-size: 16px;
}
.col2 {}
.col2 i {
	    color: #008000;
    position: absolute;
    left: 17px;
    font-size: 31px;
    top: 12px;
} 
.col2 .col-in{
	    padding-left: 50px;
    vertical-align: top;
    display: block;
}
.col2 .col-in h4{ color: #000;
    font-size: 20px;
    font-weight: 600;}		section.about-setting {    padding: 50px 0;}section.about-setting {    padding: 50px 0;}
	
	h3.heading-three-setting {
    color: #008000;
    margin-bottom: 25px;
}h3.heading-four-setting {
    color: #008000;
    margin-bottom: 20px !important;
}h1.heading-breadcamp.text-center {
    color: #008000;
    font-weight: 800;
    font-size: 50px;
}.setting-area-fleet {
    background: #ffffff;
    padding: 55px 23px 30px;
    border: 1px solid #eee;
    border-radius: 4px;
}.setting-area-fleet p {
    color: #008000;
    font-weight: 600;
    font-size: 13px;
    margin-top: 18px !important;
}footer#footer-area-setting {
    padding: 40px 0 0 !important;
}


/* page section css ------------------------------------------------------------------*/

/*page headers -------------------------------------------------------------------*/
.page-header{
    padding: 50px 0;
    background: #292929;
    margin: 0;
}
.page-header h2{
    color: #D3BF30;
    text-align: center;
}
.page-header p{
    color: white;
    text-align: center;
    font-size: 12px;
}
.about-section{
    padding: 60px 0;
}
.abt-2{
    padding: 50px 0;
    background: #F2F6FA;
}
.abt-2 h2{
    font-size: 40px;
}

@media (max-width: 768px) {
    .abt-2 h2{
        font-size: 30px;
        text-align: center;
    }
    .abt-2 p{
        text-align: center;
    }
}
/* services page ---------------------------------------------------------------------*/
.services-bg {
    padding: 50px 0;
    background-color: #f0f4f8;
}
.services-sec .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5c8eb0;
    font-family: "Poppins", sans-serif;
}
.services-sec .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #D2BE2F;
    margin: 4px 10px;
}

.section-title p {
    margin: 20px 0 45px;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #263d4d;
}

.services-sec .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    min-height: 158px;
    height: 160px;
}
.services-sec .icon-box i {
    float: left;
    color: #D2BE2F;
    font-size: 40px;
    line-height: 0;
}
.services-sec .icon-box h4 a {
    color: #D2BE2F;
    transition: 0.3s;
}
.services-sec .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.services-sec .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}
@media (max-width: 991px) {
    .services-sec .icon-box {
        height: auto;
        min-height: auto;
    }
}
@media (max-width: 991px) {
    .section-title p {
        font-size: 30px;
    }
}
/*call to action ---------------------------------------------------*/

.call-to-action {
    background: linear-gradient(rgb(0 0 0 / 68%), rgb(0 0 0 / 73%)), url(../images/best-fleet.jpg) center center;
    background-size: cover;
    padding: 80px 0;
}
.call-to-action p, .call-to-action h2{
    color: white;
}
@media (min-width: 1365px){
    .call-to-action {
        background-attachment: fixed;
    }
}
.image_wrapper {
    position: relative;
}
.image_wrapper img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;
}
.overlay {
    position: absolute;
    background: rgb(57 57 57 / 74%);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}
.overlay_1 {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 5px;
}
.overlay p{
    font-size: 12px;
}
/*hero section -------------------------------------------------------------------*/
.hero{
    background: linear-gradient(rgb(0 0 0 / 76%), rgb(0 0 0 / 69%)),url("../images/main-bg.jpeg");
    background-size: cover;
    padding: 80px 0 0px;
    background-repeat: no-repeat;
}
.hero h1{
    color: white;
}
@media(max-width: 768px){
    .hero{
        padding: 30px 0 10px;
    }
}
/* after hero section ------------------------------------------------*/
.after-hero{
    padding: 60px 0;
}
.after-hero .a-h-box i {
    position: absolute;
    width: 54px;
    height: 54px;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #fff;
    color: #D3BF2F;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.after-hero .a-h-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}
.after-hero .a-h-box span {
    font-size: 22px;
    display: block;
    font-weight: 700;
    color: #111111;
    margin: 10px 0 20px;
}
.after-hero .a-h-box p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}
/* premier services section --------------------------------------------------------------*/

.section-bg {
    padding: 120px 0;
    color: #fff;
    position: relative;
}
.section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(3deg);
}
.about-services .content {
    padding: 30px 30px 30px 0;
    z-index: 1;
}
.about-services .content h3 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
}
.about-services .content p {
    margin-bottom: 30px;
    color: white;
}
.about-services .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #D3BF2F;
}
.about-services .content .about-btn:hover {
    background: #D3BF2F;
    background: #D3BF2F;
}
.about-services .content .about-btn i {
    font-size: 16px;
    padding-left: 5px;
}

.about-services .icon-boxes .icon-box i {
    font-size: 40px;
    color: #D3BF2F;
    margin-bottom: 10px;
}
.about-services .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.about-services .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}
@media (max-width: 1200px){
    .about-services .content {
        padding-right: 0;
    }
}
@media (max-width: 768px){
    .about-services {
        text-align: center;
    }
}

/* fleet ------------------------------------------------------------*/
.fleet-section{
    padding: 60px 0;
}
.fleet{
    box-shadow: 0px 0px 12px 2px #ccc;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}
.fleet-slider h2{
    font-size: 40px;
}
.fleet h5{
    font-weight: 600;
}
@media(max-width: 768px){
    .fleet-slider h2, .fleet-slider p{
        text-align: center;
    }
}
/* eleveate your london experience section -------------------------------------------*/
.elevate{
    padding: 60px 0;
    background: url("../images/bg 2.jpg");
}
#wrapper {
    width: 100%;
    display:flex;
    justify-content: space-evenly;
    text-align: center;
}

#wrapper > div {
    display: inline-block;
}

.circle {
    /*  position: relative;*/
    /*  padding: 43px;*/
    /*  width: 180px;*/
    /*  height: 150px;*/
    /*  border-radius: 50%;*/
    /*  background-color: #eee;*/
    /*  border: solid 1px #ddd;*/
    /*  z-index: 999;*/
    /*  text-align: center;*/
    /*&:after {*/
    /*   width: 120px;*/
    /*   height:60px;*/
    /*   z-index: -1;*/
    /*   background: transparent;*/
    /*   border: none;*/
    /*   border-top: dashed 2px orange;*/
    /*   padding: 40px 40px;*/
    /*   border-radius: 50%;*/
    /*   margin: 20px -50px 0;*/
    /* }*/
}
.circle h4{
    color: white;
    font-weight: 700;
}
.circle p{
    color: #ccc;
    font-size: 12px;
}
.circle img{
    background: white;
    padding: 28px;
    border-radius: 50%;
    width: 110px;
}
.line-top {
    width: 290px;
    height:60px;
    /*z-index: -1;*/
    background: transparent;
    border: none;
    border-top: dashed 2px orange;
    padding: 40px 40px;
    border-radius: 50%;
    margin: 20px -88px 0;
}

.line-bottom {
    width: 120px;
    height:60px;
    z-index: -1;
    background: transparent;
    border: none;
    border-bottom: dashed 2px orange;
    padding: 40px 40px;
    border-radius: 0 0 50% 50%;
    margin: 0 -65px;
}

@media (max-width:766px){
    #wrapper{
        display: block;
    }
    .line-top{
        display: none !important;
    }
    .circle{
        margin: 10px;
    }
}
@media(max-width: 900px){

}

/* services pages---------------------------------------------------------------------------- */
.service-page-section{
    padding: 60px 0;
}

.our-services-ul li{
    list-style-type: none;
    position: relative;
    padding-left: 10px;
}
.our-services-ul i{
    position: absolute;
    left: -20px;
    top: 5px;
    color: orange;

}
.s-content-div{
    padding: 4px 18px;
}
.faqs{
    padding: 60px 0;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 60%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin: 10px 0;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.faqs .panel {
    padding: 0 18px;
    display: none;
    width: 58%;
    background-color: white;
    overflow: hidden;
}

/* conatct us section ------------------------------------------------ */
.contact{
    padding: 60px 0;
}
.contact .info-container {
    background-color: #151515;
    height: 100%;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}
.contact .info-item {
    width: 100%;
    background-color: #292929;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}
.contact .info-item i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}
.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}
.contact .php-email-form {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 0 10px 10px 0;
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}
.contact .php-email-form button[type=submit] {
    background: #151515;;
    border: 0;
    padding: 14px 45px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}
.contact a{
    text-decoration: none;
}
.contact a:hover{
    color: #ccc;
}

