/* Generic Css */

html {
    overflow-x: hidden;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    margin: 0 !important;
    font-family: "Poppins", sans-serif;
}

body h1 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

body h2 {
    font-size: 39px;
    font-weight: 600;
}

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

body a {
    text-decoration: none;
}

body p {
    padding: 0;
    margin: 0;
    color: #292929;
    font-size: 16px;
    font-weight: 400;
}

body button {
    border: none;
    outline: none;
}

.main_btn {
    width: 205px;
    height: 48px;
    border-radius: 38px;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: transparent;
    transition: 0.5s;
    padding: 0;
}

.main_btn:hover {
    background: #FE9333;
    border-color: #FE9333;
    color: #fff;
}

body strong {
    font-weight: 700;
}

.p-top {
    padding-top: 100px;
}

.p-bottom {
    padding-bottom: 100px;
}

.p-top-bottom {
    padding-top: 100px;
    padding-bottom: 100px;
}

body .container {
    max-width: 1270px;
    width: 100%;
}


/********Header***********/

header#masthead {
    padding: 40px 0 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    transition: 0.5s;
    z-index: 9;
}

.scroll-down {
    transform: translate3d(0, -100%, 0);
}

.scroll-up {
    transform: none;
}

header#masthead.scroll-up {
    padding: 13px 0 13px 0;
    background: rgba(0, 0, 0, 0.7);
}

.header_logo img {
    max-width: 225px;
    width: 100%;
}

header#masthead.scroll-up .header_menu ul .sub-menu {
    padding: 0;
}

.header_menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
    margin: auto;
}

.header_menu ul li {
    position: relative;
}

.header_menu ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: 0.5s;
}

.header_menu ul li a:hover {
    color: #FE9333;
}

.header_menu ul li.current-menu-item a {
    color: #FE9333;
}


/* .header_menu ul li.menu-item-has-children::after {
    content: '';
    background: url('../assets/img/arrow.svg');
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: -18px;
    top: 10px;
    width: 12px;
    height: 6px;
    transition: 0.5s;
}

.header_menu ul li.menu-item-has-children:hover::after {
    transform: rotate(180deg);
} */

.header_menu ul li.menu-item-has-children .sub-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    width: 180px;
    background: #121212;
    top: 23px;
    left: 0;
    border-radius: 0;
    z-index: 9;
    align-items: start;
    padding: 0;
    border: 1px solid #fff;
    transition: 0.5s;
}

.header_menu ul li.menu-item-has-children::after {
    content: '';
    background-image: url('/wp-content/uploads/2024/07/chevron-down.svg');
    background-position: center center;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: -20px;
    top: 8px;
    transition: 0.5s;
}

.header_menu ul li.menu-item-has-children:hover::after {
    transform: rotate(-180deg);
}

.header_menu ul li.menu-item-has-children:hover .sub-menu {
    display: flex;
}

.header_menu ul li.menu-item-has-children .sub-menu li {
    margin: 0;
    padding-bottom: 12px;
    padding-top: 12px;
    border-bottom: 1px solid #fff;
    width: 100%;
}

.header_menu ul li.menu-item-has-children .sub-menu li a {
    padding-left: 15px;
    color: #fff;
    font-size: 14px;
}

.header_menu ul li.menu-item-has-children .sub-menu li a::after {
    display: none;
}

.header_menu ul li.menu-item-has-children .sub-menu li:last-child {
    border: none;
}


/* Main Menu */

#mobile-nav-toggle {
    display: inline;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 8px;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

.mobile-nav-active #mobile-nav {
    left: 0;
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 65px;
    bottom: 0;
    z-index: 998;
    background: #121212;
    left: -100%;
    width: 100%;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    margin: 0;
    list-style: none;
    padding: 0 18px;
    margin-top: 35px;
}

#mobile-nav ul li {
    position: relative;
    border-bottom: 1px solid #fff;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    padding: 24px 0 4px 0;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #18d26e;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #000;
}

#mobile-nav ul .menu-item-active {
    color: #18d26e;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

.menu-has-children ul {
    display: none;
}

#mobile-nav .header_logo {
    padding: 15px 0 50px 15px;
}

#mobile-nav ul li .sub-menu li {
    border-bottom: none;
}

#mobile-nav ul li .sub-menu li a {
    font-size: 16px;
    color: #fff;
    padding: 8px 0 6px 0;
}

#mobile-nav ul .sub-menu {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .select_options ul {
        width: 100% !important;
    }
    #mobile-nav-toggle {
        position: fixed;
        z-index: 99999999;
    }
    #nav-menu-container {
        display: none;
    }
    #mobile-nav-toggle {
        display: inline;
        background: #FE9333;
        padding: 5px 10px 5px 10px;
    }
    #mobile-nav-toggle i {
        color: #fff;
    }
    .enquire-ca {
        margin-right: 10%;
    }
    #mobile-nav ul li li {
        padding-left: 0px;
    }
    .icon {
        display: none;
    }
    #mobile-nav ul li ul {
        display: none;
    }
    .menu-item-has-children i {
        color: #fff;
        right: 1px;
        display: inline;
        position: absolute;
        right: 10px;
        font-size: 15px;
        top: 30px;
        z-index: 1;
    }
}


/**********Home*************/

#home_banner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 865px;
    position: relative;
}

.header_quote {
    display: flex;
    justify-content: end;
}

.header_quote .main_btn {
    background: #FE9333;
    border: none;
}

.header_quote .main_btn:hover {
    background: #fff;
    color: #FE9333;
}

.banner_main {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner_content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    max-width: 775px;
    width: 100%;
}

.banner_content h1 span {
    font-weight: 400;
}

.banner_main {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner_form_wrap {
    position: relative;
}

.banner_form_wrap {
    max-width: 760px;
    width: 100%;
    height: 87px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
}
.banner_form .errorMessage{
    color: red;
    margin: 0.5rem 0;
    background:white;
    padding: 0.5rem;
    border-radius:50px;
    display: none;
}
input {
    border: none;
    outline: none;
}

.banner_form {
    margin-top: 60px;
}

.banner_form input {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background: transparent;
    width: 100%;
    height: 87px;
    padding-left: 32px;
	padding-right: 10px;
    padding-bottom: 15px;
}

.banner_form input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.banner_form button {
    background: #FE9333;
    border-left: 2px solid #FE9333;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    width: 225px;
    position: absolute;
    right: 0;
    height: 100%;
    transition: 0.5s;
	text-transform: uppercase;
}

.banner_form button:hover {
    background: #fff;
    color: #FE9333;
}


.banner_form_wrap .field_wrep{
	position: relative;
}
.banner_form_wrap .first_wrep{
	border-right: 1px solid #FE9333;
	width: 35%;
}

.price-wrapper > p{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}
.price-wrapper .book_btn{
    max-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.price-wrapper .book_btn:hover{
    background: #fff;
    color: #FE9333;
}
.price-wrapper .final-price span.price{
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #FE9333;
}
.price-wrapper .final-price strong{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
body .wp-block-woocommerce-checkout{
    margin: 0 auto;
}
#main_services .banner_form button:hover {
    background: #FE9333;
    color: #fff;
}

.banner_form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 13px;
    font-weight: normal;
    display: block;
    margin: -30px 0 0 60px;
}

.banner_form .wpcf7 form.invalid .wpcf7-response-output {
    color: #fff;
    border-color: #fff;
    max-width: 650px;
    text-align: center;
}

.banner_form .wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
    border-color: #fff;
    max-width: 650px;
    text-align: center;
}

.banner_form_wrap .num_exp {
    color: #5B5B5B;
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    left: 32px;
    bottom: 20px;
}

#home_services {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -10px;
}

.home_services_shade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.6) 78%);
}

#home_services h2 {
    color: #fff;
    text-align: center;
    max-width: 690px;
    margin: auto;
    margin-bottom: 110px;
}

.home_serv_card {
    text-align: center;
}

.home_serv_card:hover {
    cursor: pointer;
}

.home_serv_card svg {
    height: 90px;
    transition: 0.5s;
}

.home_serv_card svg path {
    transition: 0.5s;
}

.home_serv_card:hover svg path {
    fill: #fff;
}

.services_row_home .col-lg-3.col-md-6:nth-child(3) .home_serv_card:hover svg path {
    fill: unset;
    stroke: #fff;
}

.services_row_home .col-lg-3.col-md-6:nth-child(4) .home_serv_card:hover svg path {
    fill: #fff;
}

.home_serv_card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 35px 0 10px 0;
}

.home_serv_card p {
    color: #fff;
    font-size: 15px;
}

.btn_wrap {
    text-align: center;
    padding-top: 80px;
}

.content_wrap h2 {
    color: #1E1E1E;
}

.content_wrap p {
    color: #292929;
    padding-bottom: 20px;
}

#about_us_home .content_wrap h2 {
    margin-bottom: 20px;
}

#about_us_home .content_wrap h4 {
    font-size: 20px;
    color: #FE9333;
    font-weight: 400;
}

#about_us_home .img_wrap {
    position: relative;
}

#about_us_home .img_wrap img.afterpay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 200px;
}

.link_wrap a {
    font-size: 16px;
    font-weight: 700;
    color: #1E1E1E;
    display: flex;
    align-items: center;
}

.link_wrap a svg {
    margin-left: 7px;
}

.img_wrap {
    border-radius: 15px;
    max-width: 660px;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

#about_us_home {
    position: relative;
}

img.abt_shape {
    position: absolute;
    top: 4%;
    left: 26%;
    z-index: -1;
}

#about_us_home .img_wrap {
    height: 575px;
}

.img_wrap img {
    transition: 0.5s;
}

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

.content_left {
    padding-right: 80px;
}

ul.about_list {
    padding-left: 60px;
    padding-top: 50px;
}

ul.about_list li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

ul.about_list li h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0E0E0E;
    text-transform: capitalize;
}

ul.about_list li p {
    max-width: 530px;
}

ul.about_list li svg {
    width: 225px;
    margin-right: 15px;
}

#how_it_works_sec {
    padding: 100px 0 70px;
    background: #000;
}

#how_it_works_sec h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

/* .main_colorued_heading h3 {
    color: #FE9333;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
} */
.main_colorued_heading .tab-headings .tab-heading.active {
    color: #FE9333;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
	-webkit-text-stroke: unset;
    -webkit-text-fill-color: #FE9333;
}
.main_colorued_heading .tab-headings .tab-heading {
    font-size: 55px;
    font-weight: 700;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.main_colorued_heading h3::after {
    content: '';
    background: #fff;
    width: 140px;
    height: 1px;
    position: absolute;
    top: 29px;
    right: -24%;
}

.storke_heading h4 {
    font-size: 55px;
    font-weight: 700;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.content_wrap h3 {
    font-size: 20px;
    font-weight: 600;
}

#how_it_works_sec .content_wrap h3,
#how_it_works_sec .content_wrap p {
    color: #fff;
}

#how_it_works_sec .content_wrap {
    padding-top: 18px;
    padding-left: 50px;
}

.btn_wrap2 {
    margin-top: 18px;
}

#ready_sec {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 750px;
}

.ready_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 440px;
    max-width: 88%;
    margin: auto;
}

.ready_inner h2 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    max-width: 480px;
    position: relative;
}

.ready_inner h2::after {
    content: '';
    background: #fff;
    width: 1px;
    height: 190px;
    position: absolute;
    top: 25px;
    right: -20%;
}

.ready_inner h3 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.ready_inner a {
    font-size: 59px;
    font-weight: 700;
    color: #fff;
}


/* Home End */


/********About Us*************/

#inner_banner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 510px;
    position: relative;
}

.inner_banner_shade {
    background: rgba(0, 0, 0, 0.15);
    min-height: 510px;
}

.inner_banner_shade h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    font-size: 45px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.why_choose_us .main_colorued_heading h3::after {
    content: '';
    background: #fff;
    width: 130px;
    height: 1px;
    position: absolute;
    top: 29px;
    right: -6.5%;
}

#testimonials {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 110px 0;
}

.test_Card p {
    font-size: 35px;
    color: #fff;
    font-weight: 400;
}

.test_Card h3 {
    color: #FE9333;
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 0 0;
}

.test_Card span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

#test_slider .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #fff;
}

#test_slider .owl-dots .owl-dot span:hover {
    background: #FE9333;
    border-color: #FE9333;
}

#test_slider .owl-dots .owl-dot.active span {
    background: #FE9333;
    border-color: #FE9333;
}

.test_Card {
    text-align: center;
    max-width: 80%;
    margin: auto;
    margin-bottom: 30px;
}


/* About Us End */


/********Contact Us**********/

#main_contact h2 {
    color: #1E1E1E;
    max-width: 400px;
}

.ct_box {
    display: flex;
    align-items: center;
    padding-bottom: 45px;
}

.ct_circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FE9333;
    display: grid;
    place-items: center;
}

.ct_inner h3 {
    font-size: 20px;
    color: #0E0E0E;
    font-weight: 400;
}

.ct_inner a {
    font-size: 26px;
    color: #292929;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}

.ct_inner {
    margin-left: 25px;
}

section#main_contact {
    padding: 100px 0 100px 0;
}

.ct_heading {
    position: relative;
}

.ct_heading img {
    position: absolute;
    left: 150px;
    top: -4px;
    z-index: -1;
    width: 370px;
    height: 370px;
}

.col_right {
    padding-left: 60px;
}

#contact_form {
    background: #000;
}

#contact_form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.form_wrap {
    max-width: 700px;
    margin: auto;
}

.form_wrap input {
    outline: none;
    border: none;
    background: #fff;
    width: 100%;
    height: 49px;
    border-radius: 40px;
    color: #1F1F1F;
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
}
.wpforms-container .wpforms-form .wpforms-field-container{
    margin: 0 -12px;
}
.wpforms-container .wpforms-form .wpforms-field:not(.wpforms-field-textarea){
    margin: 0 12px;
}
.wpforms-container .wpforms-form .wpforms-field.wpforms-field-textarea{
    margin: 0 12px;
}
.wpforms-container .wpforms-form .wpforms-field{
    padding: 10px 0;
}
.wpforms-container .wpforms-form .wpforms-field input,
.wpforms-container .wpforms-form .wpforms-field select{
    border-radius: 40px;
    color: #1F1F1F;
    font-size: 14px;
    font-weight: 400;
    padding: 13px 30px;
    height: auto;
}
.wpforms-container .wpforms-form .wpforms-field textarea{
    border-radius: 20px;
    color: #1F1F1F;
    font-size: 14px;
    font-weight: 400;
    padding: 13px 30px;
}
.wpforms-container .wpforms-form .wpforms-field input::placeholder,
.wpforms-container .wpforms-form .wpforms-field select::placeholder,
.wpforms-container .wpforms-form .wpforms-field textarea::placeholder {
    color: #1F1F1F;
}

.form_wrap select {
    outline: none;
    border: none;
    background: #fff;
    width: 100%;
    height: 49px;
    border-radius: 40px;
    color: #1F1F1F;
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    appearance: none;
    position: relative;
}

.form_wrap .select_col {
    position: relative;
    height: 49px;
}

.form_wrap .select_col::after {
    content: url('/wp-content/uploads/2024/09/select-arrow.svg');
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    z-index: 1;
}

.form_wrap textarea {
    outline: none;
    border: none;
    background: #fff;
    width: 100%;
    height: 115px;
    border-radius: 20px;
    color: #1F1F1F;
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    margin-bottom: 20px;
}

.form_wrap textarea::placeholder {
    color: #1F1F1F;
}

.submit_col {
    text-align: center;
}
div.wpforms-container-full .wpforms-form .wpforms-submit-container{
    text-align: center;
}
.form_wrap .submit_col input[type='submit'],
div.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit{
    margin-bottom: 0;
    border: 1px solid #fff;
    background: transparent !important;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    padding: 1rem 4.5rem;
    height: auto !important;
}
div.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit:hover{
    background: #fff !important;
    color: #000;
}
.wpcf7-spinner {
    position: absolute;
}

.form_wrap .wpcf7-not-valid-tip {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    display: block;
    margin: -16px 0 18px 10px;
}

.form_wrap .wpcf7 form.invalid .wpcf7-response-output {
    color: #fff;
    text-align: center;
    border-color: #fff;
}

.form_wrap .wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
    text-align: center;
    border-color: #fff;
}


/* Contact Us End */


/*******Services*******/

.img_wrap2 {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 410px;
    border-radius: 15px;
}

.img_wrap2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

#main_services .content_wrap {
    position: relative;
}

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

#main_services .content_wrap h2 {
    margin-bottom: 20px;
}

#main_services .container .row:nth-child(even) {
    flex-direction: row-reverse;
    padding-top: 110px;
}

#main_services .container .row:nth-child(odd) {
    padding-top: 90px;
}

#main_services .container .row:nth-child(odd) .content_wrap {
    padding-right: 75px;
}

#main_services .container .row:nth-child(even) .content_wrap {
    padding-right: 0;
    padding-left: 75px;
}

#main_services .banner_form {
    margin-top: 10px;
}

#main_services .banner_form_wrap {
    background: #F5F5F5;
    max-width: 100%;
}

#main_services .container .row:nth-child(odd) .content_wrap::after {
    content: url(/wp-content/uploads/2024/09/serv_shape-1.png);
    position: absolute;
    right: -115px;
    bottom: -112px;
    z-index: -1;
}

section#main_services {
    padding-bottom: 90px;
}

#serv_bottom {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#serv_bottom h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    max-width: 940px;
    margin: 25px auto;
}

#main_services .container.fleet_container .row:nth-child(even) {
    padding-top: 90px;
}

#main_services .container.fleet_container .row:nth-child(odd) .content_wrap::after {
    content: url(/wp-content/uploads/2024/09/serv_shape-1.png);
    position: absolute;
    right: -90px;
    bottom: -165px;
    z-index: -1;
}


/* Services End */


/********Book Now************/

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
}

#img_slider .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.5s;
}

#img_slider .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    background: #fff;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.5s;
}

#img_slider .owl-nav button svg path {
    transition: 0.5s;
}

#img_slider .owl-nav button:hover {
    background: #FE9333;
}

#img_slider .owl-nav button:hover svg path {
    fill: #fff;
}

.img_slider_con {
    border-radius: 15px;
}

.img_slider_con img {
    border-radius: 15px;
    height: 640px;
    width: 50%;
    object-fit: cover;
}

#img_slider .owl-stage-outer {
    border-radius: 15px;
}


/* section#main_car_details {
    padding: 100px 0;
} */

.book_right_col ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 25px;
}

.book_right_col ul li {
    text-align: center;
    margin-bottom: 20px;
}

.book_right_col ul li h3 {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 15px;
}

.book_right_col ul li span {
    font-size: 26px;
    color: #000;
    font-weight: 600;
}

.book_left_col {
    padding-right: 35px;
}

.accor_custom_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accor_custom_div h3 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.accor_custom_div span {
    color: #FE9333;
    font-size: 20px;
    font-weight: 600;
}

.given_services .service-item {
    background: #F5F5F5;
    border: 1px solid #D7D7D7;
    border-radius: 15px;
    padding: 28px 40px 27px 40px;
    margin-bottom: 20px;
}
.given_services .service-item .product-icon{
    background: #fff;
    padding: 1.4rem 2rem;
    text-align: center;
    border-radius: 15px;
    margin-right: 2.5rem;
}


.service-body {
    padding: 18px 0 12px 4px;
}

.service-body p {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

.service-body ul {
    flex-direction: column;
}

.service-body ul li {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-align: left;
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
    list-style: none;
}
.service-body ul li::before{
    content: '';
    background: url('../assets/img/correct-mark.svg') center no-repeat;
    width: 15px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
}
.book_btn,
body.woocommerce-cart .woocommerce .checkout-button,
body.woocommerce-cart .woocommerce button[type="submit"],
#place_order,
.added_to_cart{
    padding: 0.75rem 3.75rem;
    text-align: center;
    background: #FE9333;
    border-radius: 38px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    float: none;
    margin-top: 2rem;
}
.book_btn{
    width: 100%;
    margin-top: 25px;
    max-width: 205px;
    height: 49px;
    padding: 0;
}
body.woocommerce-cart .woocommerce .checkout-button:hover,
body.woocommerce-cart .woocommerce button[type="submit"]:hover,
#place_order:hover{
    background: #fff;
    color: #FE9333;
}
body.woocommerce-cart .woocommerce .checkout-button{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.book_bottom {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 75px;
    min-height: 435px;
}
body.woocommerce-cart .cart-collaterals li.product a img{
    display: none;
}
body.woocommerce-cart .cart-collaterals ul.products{
    float: left;
}
body.woocommerce-cart .cart-collaterals ul.products{
    width: 100%;
}

body.woocommerce-cart .upsell-products li{
    border: 1px solid #D7D7D7;
    background: #F5F5F5;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.woocommerce-cart .upsell-products .title{
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
body.woocommerce-cart .upsell-products .woocommerce-Price-amount{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-right: 1rem;
    color: #FE9333;
}

#oil_delivery_time_window_field .woocommerce-input-wrapper label.radio {
    background: #FE9333;
    color: #fff;
    border-radius: 15px;
}
body.woocommerce-cart .upsell-products .add_to_cart_button{
    border: 1px solid #FE9333;
    padding: 0.5rem;
    border-radius: 5px;
    color:#FE9333;
    font-size: 0;
    margin-right: 0.5rem;
}
body.woocommerce-cart .upsell-products .add_to_cart_button:hover{
    font-size: 11px;
    padding: 0 4px;
    background: #FE9333 !important;
}
body.woocommerce-cart .upsell-products .add_to_cart_button.added{
    padding: 0 4px;
    font-size: 11px;
    background: #FE9333 !important;
    color: #fff;
}
body.woocommerce-cart .upsell-products .item-left{
   display: flex;
    align-items: center;
}
body.woocommerce-checkout .check-out-after-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 2rem;
}
body.woocommerce-checkout .check-out-billing-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
}
body.woocommerce-checkout .checkout_coupon input[type="submit"]{
    background: #FE9333;
    color: #fff;
    border-radius: 15px;
    padding: 0.75rem 1.5rem;
}
body.woocommerce-checkout #payment ul.payment_methods li{
    padding: 1rem;
    background: #F5F5F5;
    border: 1px solid #D7D7D7;
    border-radius: 15px;
    margin-bottom: 1rem;
}
body.woocommerce-checkout .woocommerce-info a,
body.woocommerce-checkout  .woocommerce-info::before{
    color: #FE9333;
}
body.woocommerce-checkout .woocommerce-info{
    border-top-color: #FE9333;
}
body.woocommerce-checkout #oil_delivery_time_window_field{
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
body.woocommerce-checkout #oil_delivery_time_window_field > label{
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-right: 2rem;
    float: left;
}


body.woocommerce-checkout .payment_methods input[type="radio"].input-radio {
    display: none;
}


body.woocommerce-checkout .payment_methods input[type="radio"].input-radio + label {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}


body.woocommerce-checkout .payment_methods input[type="radio"].input-radio + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #FE9333;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}


body.woocommerce-checkout .payment_methods input[type="radio"].input-radio:checked + label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #FE9333;
    border-radius: 50%;
    transition: all 0.3s ease;

}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .time-win-text-info{
    font-size: 16px;
    line-height: 24px;
    margin: 2rem 0;
    color: #A8A8A8;
}
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row textarea{
    min-height: 105px;
}
body.woocommerce-cart .coupon,
body.woocommerce-cart table.shop_table td.product-thumbnail,
body.woocommerce-cart table.shop_table th.product-thumbnail,
body.woocommerce-cart table.shop_table td.product-quantity,
body.woocommerce-cart table.shop_table th.product-quantity{
    display: none;
}
body.woocommerce-cart .upsell-products .add_to_cart_button:hover,
#oil_delivery_time_window_field .woocommerce-input-wrapper label.radio:hover{
    color: #fff;
    background: #000;
}
body.woocommerce-checkout .time-win-wrapper{
    margin-top: 1rem;
}
body.woocommerce-checkout input{
    border: 1px solid #B0B0B0;
    padding: 0.75rem;
    border-radius: 40px;
}
body.woocommerce-checkout textarea{
    border: 1px solid #B0B0B0;
    padding: 0.75rem;
    border-radius: 26px;
}
#oil_delivery_time_window_field .woocommerce-input-wrapper label.radio{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    padding: 1rem 2rem;
    margin-right: 0.5rem;
    float: left;
    cursor: pointer;
}
#oil_delivery_time_window_field .woocommerce-input-wrapper .input-radio:checked + label.radio{
    background: #000;
}
#oil_delivery_time_window_field .woocommerce-input-wrapper .input-radio{
    display: none;
 }
body.woocommerce-checkout .woocommerce .col2-set .col-1,
body.woocommerce-checkout .woocommerce-page .col2-set .col-1{
    width: 100%;
}
body.woocommerce-checkout .woocommerce .col2-set,
body.woocommerce-checkout .col2-set{
    width: calc(100% - 500px);
    margin-right: 24px;
    float: left;
}

body.woocommerce-checkout #order_review_heading{
    display: none;
}

body.woocommerce-checkout #oil_order_review_heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
}
body.woocommerce-checkout #oil_order_review_heading span{
    color: #FE9333;
}
body.woocommerce-checkout #order_review,
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals,
body.woocommerce-cart .woocommerce-cart-form{
    float: left;
    background: #F5F5F5;
    border: 1px solid #D7D7D7;
    border-radius: 15px;
    padding: 3rem 2rem;
}
body.woocommerce-cart .woocommerce-cart-form{
    margin-bottom: 5rem;
}
body.woocommerce-cart .woocommerce .cart-collaterals h2{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
body.woocommerce-cart .woocommerce table.shop_table tbody td{
    border: none;
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 1rem;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
body.woocommerce-cart .woocommerce .calculated_shipping td{
    text-align: right;
}
body.woocommerce-cart .woocommerce table.shop_table tbody td a{
   color: #000 !important;
    font-size: 18px;
}
body.woocommerce-cart .woocommerce table.shop_table tbody td a:hover{
    color: #FE9333 !important;
    background: none !important;
}
body.woocommerce-cart .woocommerce table.shop_table thead th{
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}
body.woocommerce-cart .woocommerce table.shop_table,
body.woocommerce-cart .woocommerce table.shop_table tbody td.actions{
    border: none;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals{
    width: 100%;
    float: none;
}
.woocommerce-page .cart-collaterals .cart_totals th{
    border-bottom: 1px solid #CBCBCB;
    font-weight: 400;
}
.woocommerce-page .cart-collaterals .cart_totals td strong{
    font-weight: 400;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
#add_payment_method #payment, .woocommerce-cart #payment,
.woocommerce-checkout #payment{
    background: none;
    padding-left: 0;
    padding-right: 0;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table{
    width: 100%;
    border:none;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table tr{
    display: inline-block;
    width: 100%;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table tr td:nth-child(2){
    text-align: right;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table tr th:nth-child(2){
    display: none;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table tbody{
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #CBCBCB;
    padding: 0.5rem 0;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table tfoot{
    display: inline-block;
    width: 100%;
    padding-top: 0.5rem;
    margin-bottom: -3rem;
}
body.woocommerce-checkout  .woocommerce-checkout .tex-info{
    border-bottom: 1px solid #CBCBCB;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding-bottom: 0.5rem;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table th{
   float: left;
    width: calc(100% - 150px);
    border:none;
    padding-left: 0;
    padding-right: 0;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table td:first-of-type{
    float: left;
    width: calc(100% - 150px);
    border:none;
}
body.woocommerce-checkout .woocommerce table.shop_table tfoot th{
    border:none;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table td:last-of-type{
    float: left;
    width: 150px;
    border:none;
}
body.woocommerce-checkout .woocommerce table.shop_table td{
    padding-left: 0;
    padding-right: 0;
}
body.woocommerce-checkout .woocommerce table.shop_table tbody td > strong{
    display: none;
}
body.woocommerce-checkout  .woocommerce-checkout-review-order-table .cart-subtotal{
    display: none;
}
body.woocommerce-checkout #payment .payment_box p{
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #A8A8A8;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: none;
}
body.woocommerce-checkout #payment .payment_box{
    display: block !important;
    background: none;
    padding: 0 0 0 30px;
    margin-top: 0;
}
body.woocommerce-checkout #payment .payment_box::before{
    display: none;
}
body.woocommerce-checkout  tfoot span.woocommerce-Price-amount.amount,
body.woocommerce-cart .order-total span.woocommerce-Price-amount.amount{
    font-weight: 600;
    line-height: 30px;
    color: #FE9333;
}
body.woocommerce-cart .upsell-products{
    clear:both;
    margin-bottom: 5rem;
}
body.woocommerce-cart .upsell-products h4{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 1rem;
}
body.woocommerce-checkout .entry-content{
    padding-bottom: 115px;
}
body.woocommerce-checkout .entry-content::after,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper::after,
body.woocommerce-checkout form.woocommerce-checkout::after{
    display: block;
    clear: both;
    content: "";
}
body.woocommerce-checkout .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row:not(.time-window-buttons):not(#order_comments_field) {
   display: inline-block;
    width: 50%;
    clear: none;
}
body.woocommerce-checkout .time-select-note{
    font-size: 16px;
    line-height: 24px;
    margin: 2rem 0;
    color: #A8A8A8;
}
.woocommerce-additional-fields {
    display: none;
}
.book_img_con {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    transform: translateY(37px);
    position: relative;
}

.book_img_con img:nth-child(2) {
    margin-left: 35px;
}

.book_content p {
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.right_con_book {
    text-align: right;
}

.book_content {
    padding-left: 160px;
    padding-top: 30px;
}

.book_arrow {
    position: absolute;
    right: -140px;
    top: 90px;
}

.review_heading {
    padding-bottom: 45px;
}

.review_heading h2 {
    color: #000;
    margin-bottom: 15px;
}

.order_main_details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.order_table table {
    width: 100%;
}

.order_table table tr {
    border-bottom: 1px solid #CBCBCB;
}

.order_table table tr td {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    padding: 18px 0 15px 0;
}

.order_table table tr td.desc_td {
    text-align: left;
}

.order_table table tr td.price_td {
    text-align: right;
}

.order_table table tr td.price_total_td {
    text-align: right;
}

.order_table table tr td.total {
    font-weight: 600;
    font-size: 20px;
}

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

.checkbox_wrap label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.checkbox_wrap input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.order_form {
    background: #F5F5F5;
    border-radius: 15px;
    border: 1px solid #D7D7D7;
    padding: 45px 50px 30px 50px;
}

.order_form h3 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.order_form input {
    width: 100%;
    height: 49px;
    border: 1px solid #B0B0B0;
    border-radius: 40px;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #1F1F1F;
    padding-left: 30px;
    padding-right: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 9;
}

.order_form input::placeholder {
    color: #1F1F1F;
}

.order_form .note {
    font-size: 16px;
    color: #292929;
    padding: 20px 30px 18px 15px;
}

.order_form input[type='submit'] {
    background: #FE9333;
    max-width: 205px;
    border-radius: 38px;
    padding: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border: 2px solid #FE9333;
}

.date_div {
    position: relative;
    width: 100%;
    height: 49px;
}

.date_div::after {
    content: url(/wp-content/uploads/2024/09/date-icon.svg);
    position: absolute;
    right: 35px;
    top: 30px;
    transform: translateY(-50%);
}

.order_form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    font-weight: normal;
    display: block;
    margin: -14px 0 15px 15px;
}

.order_form .wpcf7 form.invalid .wpcf7-response-output {
    text-align: center;
    border-color: #dc3232;
}

.order_form .wpcf7 form.sent .wpcf7-response-output {
    text-align: center;
}

.order_right_col {
    padding-right: 75px;
}

.book_bottom.order_review .book_content {
    padding-left: 148px;
    padding-top: 25px;
    max-width: 540px;
}

.book_bottom.order_review .book_arrow {
    position: absolute;
    right: -140px;
    top: 45px;
}

.book_img_con.book_first {
    transform: translateY(6px);
}

.book_bottom .container {
    position: relative;
}

.back_btn {
    position: absolute;
    top: -35px;
    left: 0;
}

.back_btn a {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: grid;
    place-items: center;
    transition: 0.5s;
}

.back_btn a svg path {
    transition: 0.5s;
}

.back_btn a:hover {
    background: #fff;
}

.back_btn a:hover svg path {
    fill: #000;
}

.order_confirm_details {
    background: #F5F5F5;
    border: 1px solid #D7D7D7;
    border-radius: 15px;
    max-width: 900px;
    margin: auto;
    padding: 75px 65px 70px;
}

.booking_confirmation .order_table table tr td {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    padding: 18px 0 15px 0;
    width: 170px;
}

.order_margin {
    margin-bottom: 45px;
}

.order_confirm .book_img_con {
    transform: translateY(11px);
    position: relative;
}

.order_confirm .book_arrow {
    position: absolute;
    right: -77px;
    top: 74px;
}

.order_confirm .book_content {
    padding-left: 85px;
    padding-top: 30px;
    padding-right: 60px;
}

.order_confirm .right_con_book {
    text-align: right;
    padding: 15px 52px 0 0;
}


/* Book Now End */


/*******Footer*********/

footer {
    background: #000;
    position: relative;
    z-index: 1;
}

.footer_logo img {
    max-width: 100%;
    height:auto;
    margin-bottom: 1rem;
	padding-right:4rem;
}

.footer_ct_links a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    transition: 0.5s;
}

.footer_ct_links a svg path {
    transition: 0.5s;
}

.footer_ct_links a:hover {
    color: #FE9333;
}

.footer_ct_links a:hover svg path {
    fill: #FE9333;
}

.footer_ct_links a svg {
    margin-right: 10px;
    width: 23px;
}

.social_links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 110px;
}

.social_links ul li a img {
    transition: 0.5s;
}

.social_links ul li a img:hover {
    transform: scale(1.2);
}

.footer_ct_links {
    padding: 10px 0 30px 0;
}

.quick_links h5 {
    font-size: 14px;
    color: #FE9333;
    font-weight: 700;
    margin-bottom: 15px;
}

.quick_links ul {
    display: flex;
    flex-direction: column;
}

.quick_links ul li {
    margin-bottom: 7px;
}

.quick_links ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transition: 0.5s;
}

.quick_links ul li a:hover {
    color: #FE9333;
}

.quick_links {
    text-align: right;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
}

.copyright p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}


/* Footer End */


/***********Responsiveness************/

@media (max-width:1200px) {
    .container {
        max-width: 100%;
    }
    body.woocommerce-checkout #oil_delivery_time_window_field{
        display: block;
    }
    body.woocommerce-checkout #oil_delivery_time_window_field > label{
        float: none;
        margin-bottom: 1rem;
    }
}

@media (max-width:1024px) {
    body.woocommerce-checkout .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row:not(.time-window-buttons):not(#order_comments_field){
        width: 100%;
        clear: both;
    }
    #oil_delivery_time_window_field .woocommerce-input-wrapper label.radio{
        padding: 0.5rem;
    }
    .ready_inner h2 {
        font-size: 30px;
    }
    .ready_inner h2::after {
        display: none;
    }
    .ready_inner h3 {
        font-size: 22px;
    }
    .ready_inner a {
        font-size: 30px;
    }
    .book_arrow {
        display: none;
    }
}

@media (max-width:991px) {
    header#masthead {
        padding: 30px 0 15px 0;
        position: absolute;
    }
    .header_quote {
        display: flex;
        justify-content: center;
        padding-top: 25px;
    }
    .header_logo img {
        max-width: 160px;
        width: 100%;
    }
    .banner_content h1 {
        font-size: 32px;
        max-width: 100%;
        text-align: center;
    }
    .banner_form_wrap {
        max-width: 100%;
    }
    .banner_main {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        top: 55%;
    }
    .p-top-bottom {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .p-top {
        padding-top: 50px;
    }
    .p-bottom {
        padding-bottom: 50px;
    }
    #home_services h2 {
        max-width: 100%;
        margin-bottom: 50px;
    }
    .home_serv_card {
        margin-bottom: 50px;
    }
    .btn_wrap {
        padding-top: 0;
    }
    .content_left {
        padding-right: 0;
        padding-bottom: 20px;
    }
    #how_it_works_sec {
        padding: 50px 0 50px;
    }
    .main_colorued_heading h3 {
        text-align: center;
    }
    .storke_heading h4 {
        text-align: center;
    }
    #how_it_works_sec .content_wrap {
        padding-left: 0;
        text-align: center;
    }
    .main_colorued_heading h3 {
        font-size: 35px;
    }
    .storke_heading h4 {
        font-size: 35px;
    }
    #ready_sec {
        min-height: 330px;
    }
    .ready_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 100px;
        max-width: 100%;
        margin: auto;
        flex-direction: column;
        padding-bottom: 100px;
    }
    .ready_inner h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    .content_wrap {
        text-align: center;
    }
    #about_us_home .content_wrap h2 {
        max-width: 100%;
    }
    .footer_logo {
        margin-bottom: 40px;
    }
    body h2 {
        font-size: 28px;
        font-weight: 600;
    }
    .inner_banner_shade h1 {
        font-size: 35px;
    }
    ul.about_list {
        padding-left: 0;
        padding-top: 0;
    }
    .why_choose_us .main_colorued_heading h3::after {
        display: none;
    }
    ul.about_list li {
        justify-content: center;
    }
    #testimonials {
        padding: 60px 0;
    }
    #main_services .container .row:nth-child(odd) {
        padding-top: 50px;
    }
    #main_services .container .row:nth-child(odd) .content_wrap {
        padding-right: 0;
    }
    #main_services .container .content_wrap {
        padding-bottom: 50px;
    }
    #main_services .container .row:nth-child(even) {
        flex-direction: row-reverse;
        padding-top: 50px;
    }
    #main_services .container .row:nth-child(even) .content_wrap {
        padding-right: 0;
        padding-left: 0;
    }
    #serv_bottom h2 {
        font-size: 30px;
    }
    section#main_services {
        padding-bottom: 50px;
    }
    #main_services .container.fleet_container .row:nth-child(even) {
        padding-top: 50px;
    }
    #main_services .container.fleet_container .content_wrap {
        padding-bottom: 25px;
    }
    section#main_contact {
        padding: 50px 0 5px 0;
    }
    #main_contact h2 {
        margin-bottom: 35px;
    }
    .col_right {
        padding-left: 11px;
    }
    .book_left_col {
        padding-right: 0;
    }
    .book_right_col ul {
        padding-top: 35px;
    }
    .order_right_col {
        padding-right: 0;
        padding-bottom: 45px;
    }
    .book_content {
        padding-left: 0;
        padding-top: 70px;
    }
    .right_con_book {
        text-align: center;
        padding-bottom: 50px;
    }
    .book_content p {
        text-align: center;
    }
    .book_bottom.order_review .book_content {
        padding-left: 0;
        padding-top: 50px;
        max-width: 100%;
        padding-bottom: 20px;
    }
    .back_btn {
        left: 40px;
    }
    .book_img_con {
        transform: none;
    }
    .order_confirm .book_content {
        padding-left: 0;
        padding-top: 30px;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .order_confirm .book_img_con {
        transform: none;
        position: relative;
        justify-content: center;
        margin-top: 60px;
    }
    .order_confirm .right_con_book {
        text-align: center;
        padding: 15px 0 50px 0;
    }
}

@media (min-width:1024px) {
    .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals,
    body.woocommerce-checkout #order_review{
        width: 476px;
    }
    body.woocommerce-cart .woocommerce-cart-form{
        width: calc(100% - 530px);
        margin-right: 54px;
    }
    body.woocommerce-checkout tfoot span.woocommerce-Price-amount.amount, body.woocommerce-cart .order-total span.woocommerce-Price-amount.amount{
        font-size: 30px;
    }
}

@media (min-width:767px) and (max-width:1024px) {
    .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals,
    body.woocommerce-checkout #order_review{
        width: calc(40% - 30px);
        margin-left: 30px;
    }
    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-checkout .woocommerce .col2-set, body.woocommerce-checkout .col2-set{
        width: 60%;
        margin-right: 0;
    }
}

@media (min-width:767px) {
    body.woocommerce-cart .upsell-products{
        width: 50%;
        margin-bottom: 1rem;
    }
    .wpforms-container .wpforms-form .wpforms-field:not(.wpforms-field-textarea){
        float: left;
        width: calc(50% - 24px);
        clear: none;
    }
}
@media (max-width:767px) {
    body.woocommerce-checkout .woocommerce .col2-set, body.woocommerce-checkout .col2-set{
        width: 100%;
        margin-right: 0;
        float: none;
    }
    .inner_banner_shade,
    #inner_banner{
        min-height: 350px;
    }
    body.woocommerce-cart .woocommerce-cart-form{
        float: none;
        margin-bottom: 1rem;
    }
    .woocommerce-cart .cart-collaterals{
        display: grid;
        margin-bottom: 1rem;
    }
    .woocommerce-cart .cart-collaterals .cart_totals{
        order:2;
    }
    .footer_logo img {
        max-width: 200px;
        width: 100%;
        margin: auto;
        margin-bottom: 1rem;
    }
    .footer_logo {
        text-align: center;
    }
    .footer_quote {
        text-align: center;
    }
    .footer_ct_links a {
        justify-content: center;
    }
    .social_links ul {
        margin: auto;
    }
    .quick_links {
        text-align: center;
        margin-top: 35px;
    }
    .copyright {
        padding-bottom: 30px;
        flex-direction: column;
    }
    .copyright p {
        padding-bottom: 20px;
        text-align: center;
    }
    #about_us_home .img_wrap {
        height: 400px;
    }
    ul.about_list li svg {
        width: 140px;
    }
    .test_Card p {
        font-size: 25px;
    }
    .form_wrap input.wpcf7-email {
        margin-top: 20px;
    }
    .img_slider_con img {
        height: auto;
    }
    .book_img_con.book_first {
        transform: none;
        flex-direction: column;
        align-items: center;
    }
    .book_img_con.book_first img:first-child {
        max-width: 400px;
        width: 100%;
        margin-bottom: 50px;
    }
    .book_bottom .book_img_con {
        transform: none;
        flex-direction: column;
        align-items: center;
        margin-top: 55px;
    }
    .book_bottom .book_img_con img:first-child {
        max-width: 400px;
        width: 100%;
        margin-bottom: 50px;
    }
    .order_confirm_details {
        padding: 30px 25px 30px;
    }
}

@media (max-width:575px) {
    .banner_form button {
        font-size: 13px;
        width: 110px;
    }
    .banner_form input {
        padding-left: 13px;
        font-size: 12px;
    }
    .banner_form_wrap {
        border-radius: 8px;
    }
    .banner_form_wrap span.num_exp {
        left: 14px;
        bottom: 17px;
    }
    .banner_form_wrap {
        height: 75px;
    }
    #home_banner {
        min-height: 700px;
    }
    #main_contact h2 {
        text-align: center;
        max-width: 100%;
    }
    .ct_box {
        justify-content: center;
        display: flex;
        align-items: center;
        padding-bottom: 45px;
        flex-direction: column;
    }
    .ct_circle {
        width: 50px;
        height: 50px;
    }
    .ct_circle svg {
        width: 25px;
        height: 25px;
    }
    .ct_inner {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    .ct_box {
        padding-bottom: 30px;
    }
    .ct_inner a {
        font-size: 16px;
    }
    .ct_inner h3 {
        font-size: 18px;
    }
    .col_right {
        padding-left: 11px;
        padding-bottom: 15px;
    }
    .given_services .accordion-item {
        padding: 25px 25px 25px 25px;
    }
	.book_right_col ul li span,
	.book_right_col ul li h3{
		font-size:16px;
	}
	.container-fluid.service-item > div,
.container-fluid.service-item > div > div{
    width: 100% !important;
	text-align:center;
	margin: 0 auto;
}
	.given_services .service-item{
		padding:1rem;
	}
	.given_services .service-item .product-icon{
		margin-right:0;
	}
	.service-body ul li{
		display:flex;
	}
    .order_form {
        padding: 45px 25px 30px 25px;
    }
}
.content_wrap ul{
    padding-left:1rem;
}
.content_wrap li{
    list-style: disc;
}
 .pum-theme-default-theme .pum-container{
	background-color: #ffffff !important;
}
.pum-theme-default-theme .pum-content{
	color:inherit !important;
}
.pum-close.popmake-close{
	background-color: transparent !important;
}
.read_more.pum-trigger{
	cursor: pointer !important;
	color: #FE9333 !important;
}
ul.upsell-items {
    padding-bottom: 30px;
}

/*------------------------*/

.listing_style ul li,
.pum  ul li{
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-align: left;
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
    list-style: none;
}
.listing_style ul li::before,
.pum  ul li::before{
    content: '';
    background: url('../assets/img/correct-mark.svg') center no-repeat;
    width: 15px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
}
.listing_style ul li:last-child,
.pum  ul li:last-child{
	margin-bottom: 20px;
}

@media (max-width:575px) {
.pum-theme-332 .pum-container, .pum-theme-default-theme .pum-container {
    padding: 12px !important; 
}
	.pum  ul li{
		text-align: center;
		margin-bottom: 5px;
	}
	.pum  ul {
		padding-left: 0;
	}
}
body.woocommerce-cart .woocommerce table.shop_table tbody td.product-price,
body.woocommerce-cart .woocommerce table.shop_table tbody td.product-subtotal,
body.woocommerce-cart .woocommerce table.shop_table th.product-price,
body.woocommerce-cart .woocommerce table.shop_table th.product-subtotal,
.woocommerce-checkout-review-order-table .cart_item span.woocommerce-Price-amount.amount {
    display: none;
}
#home_banner:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.footer_logo img:not(:first-child) {
    max-width: 60%;
    height: auto;
    margin-bottom: 1rem;
    padding-right: 4rem;
}

@media (max-width: 767px) {
	 .banner_form_wrap {
        height: unset;
		align-items: flex-start;
   		flex-direction: column;
    }
	.banner_form_wrap .first_wrep {
    	border-right: none;
    	border-bottom: 1px solid #FE9333;
    	width: 100%;
	}
	.banner_form button {
        position: unset;
        width: 100%;
        height: 55px; 
	}
	.banner_form_wrap .num_exp {
    	left: 16px; 
	}
	.banner_form button:hover {
    	background: #FE9333;
   		color: #FFF;
	}
}