@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --unus-base: #FBBC3A;
    --unus-black: #000000;
    --unus-black2: #212121;
    --white: #ffffff;
    --text-color: #666666;
}

/* --poppins: font-family: "Poppins", sans-serif; */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

main {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
    font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
#navbar {
    background: var(--unus-black);
    padding: 1rem 0;
}

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

.navbar-brand img {
    max-width: 290px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:last-child {
    margin-right: 0;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--secondary-color) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--white) !important;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--unus-base) !important;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: all .5s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%) !important;
}

.cta {
    margin-left: 4rem;

}

/* ======= Button Style Primary ========= */
.cta .primary_btn {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 40px;
    font-size: 16px;
    text-decoration: none;
    color: var(--unus-base);
    text-align: center;
    position: relative;
    transition: all .35s;
    background-color: var(--unus-black);
    padding: 4px 16px;
    border-radius: 0;
    border-color: #ffb400;
    font-weight: 500;
    text-transform: uppercase;

}

.cta .primary_btn span {
    position: relative;
    z-index: 2;
}

.cta .primary_btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--unus-base);
    transition: all .35s;
}

.cta .primary_btn:hover {
    color: var(--unus-black);
    background: var(--unus-black);
    border-color: #ffb400;
}

.cta .primary_btn:hover:after {
    width: 100%;
}

/* ========= Button Style Primary End ============ */
/* ========= Button Style Secondary Start ============ */
.cta .s_btn {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 40px;
    font-size: 16px;
    text-decoration: none;
    color: var(--unus-black);
    text-align: center;
    position: relative;
    transition: all .35s;
    background-color: var(--unus-base);
    padding: 4px 16px;
    border-radius: 0;
    border-color: #ffb400;
    font-weight: 500;
    text-transform: uppercase;

}

.cta .s_btn span {
    position: relative;
    z-index: 2;
}

.cta .s_btn i {
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: all .5s;

}

.cta .s_btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--unus-black);
    transition: all .35s;
}

.cta .s_btn:hover {
    color: var(--unus-base);
    background: var(--unus-black);
    border-color: #ffb400;
}

.cta .s_btn:hover:after {
    width: 100%;
}

.cta .s_btn:hover i {
    color: var(--unus-base);
    z-index: 1;
    position: relative;
    transform: rotate(0deg);
}

/* ========= Button Style Secondary End ============ */
/* ========= Radium Button Style Start ============ */
.cta .r_btn {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 40px;
    font-size: 16px;
    text-decoration: none;
    color: var(--white);
    text-align: center;
    position: relative;
    transition: all .35s;
    background-color: var(--primary-color);
    padding: 4px 16px;
    border-radius: 0;
    border-color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;

}

.cta .r_btn span {
    position: relative;
    z-index: 2;
}

.cta .r_btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    transition: all .35s;
}

.cta .r_btn:hover {
    color: #000000;
    background: var(--primary-color);
    border-color: #ffb400;
}

.cta .r_btn:hover:after {
    width: 100%;
}

/* ========= Radium Button Style End ============ */
/* ========= Black Button Style Start ============ */
.cta .b_btn {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 40px;
    font-size: 16px;
    text-decoration: none;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    transition: all .35s;
    background-color: #000000;
    padding: 4px 16px;
    border-radius: 0;
    border-color: var(--secondary-color);
    font-weight: 500;
    text-transform: capitalize;

}

.cta .b_btn span {
    position: relative;
    z-index: 2;
}

.cta .b_btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    transition: all .35s;
}

.cta .b_btn:hover {
    color: #000000;
    background: var(--secondary-color);
    border-color: #ffb400;
}

.cta .b_btn:hover:after {
    width: 100%;
}

/* ========= Black Button Style End ============ */

#navbar {
    position: sticky;
    transition: all .5s;
}

.scrolled {
    transition: all .5s ease;
    top: 0;
}

.scrolled {
    background-color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--secondary-color) !important;
}

.dropdown-item {
    color: var(--primary-color) !important;
    line-height: 2.5;
    font-size: 14px;

}

.navbar-expand-lg .navbar-nav {
    gap: 1rem;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Global Header End
--------------------------------------------------------------*/
/* Top nav */
.topbar-one {
    position: relative;
    z-index: 1;
    background-color: var(--unus-black2);
}

.topbar-one__info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
}

.topbar-one__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.topbar-one__info__item__text,
.topbar-one__info__item a {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--rentol-white, #fff);
}

.topbar-one__info__item i {
    font-size: 16px;
    color: var(--rentol-base, #F2AF1E);
    margin-right: 8px;
}

.topbar-one__info__item a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__info__item__text,
.topbar-one__info__item a {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--rentol-white, #fff);
    text-decoration: none;
}

.topbar-one__info__item a:hover {
    color: var(--rentol-base, #F2AF1E);
    text-decoration: none;
}

.topbar-one__info__item a:hover {
    background-size: 100% 1px;
}

.topbar-one__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.topbar-one__social a {
    font-size: 14px;
    color: #ffffff;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

.topbar-one__social a:hover {
    background-color: var(--rentol-base, #F2AF1E);
    border-color: var(--rentol-base, #F2AF1E);
    color: var(--rentol-white, #fff);
    text-decoration: none;
}

/*----------------------- Hero ------------------------------*/

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: rgba(33, 33, 33, .8);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.tf_wrapper {
    z-index: 2;
    width: 100%;
}

.tf_wrapper .row {
    align-items: flex-end;
}

.tf_wrapper .row .col-lg-8 {
    padding-bottom: 4rem;
}

.hero_text h2 {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 8px #000000;
}

.hero_text h2 span {
    color: var(--unus-base);
}

.hero_text h4 {
    font-size: 2.25rem;
    color: var(--white);
    letter-spacing: 4px;
    font-weight: 600;
    text-shadow: 1px 1px 8px #000000;
}

.hero_text p {
    color: var(--white);
    font-size: 1.25rem;
    margin-top: 1rem;
    padding-right: 16rem;
    line-height: 2rem;
}

.btn_grp {
    margin-left: 0;
    margin-top: 3rem;
}

.btn_grp a {
    margin-right: 1rem;
}

#ssQuoteFormWidget4 {
    border-radius: 1rem;
    border: 1px solid var(--unus-base);
}

#heroFade {
    position: absolute;
    height: 100%;
    width: 100%;
}

#heroFade .carousel-inner {
    height: 100%;
    width: 100%;
}

#heroFade .carousel-item {
    height: 100%;
    width: 100%;
}

/*----------------------- Hero End------------------------------*/
/*----------------------- About Start------------------------------*/
.your-dream-one {
    position: relative;
    z-index: 1;
}

.your-dream-one::after {
    position: absolute;
    content: '';
    width: 200px;
    height: 100%;
    background: #F4B23F;
    background: linear-gradient(270deg, rgb(244 178 63 / 46%) 0%, rgba(255, 255, 255, 1) 80%);
    right: 0;
    bottom: 0;
    z-index: -1;
}

.your-dream-one .sec-title {
    padding-bottom: 20px;
}

.your-dream-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 188%;
    margin-bottom: 30px;
    padding-bottom: 0;
    text-transform: none;
    margin-top: 1rem;
    color: var(--text-color);
}

.your-dream-one__thumb {
    position: relative;
    z-index: 1;
    float: right;
    max-width: 470px;
    width: 100%;
}

.your-dream-one__thumb__item img {
    object-fit: cover;
    width: 100%;
}

.your-dream-one__thumb__item-small {
    margin-top: -290px;
    margin-left: -255px;
    max-width: 470px;
    width: 100%;
	height:470px;
}

.your-dream-one__thumb__item-small img {
    object-fit: cover;
    width: 100%;
	height:100%;
	object-position:right;
}

@media (max-width: 1400px) {
    .your-dream-one__thumb__item-small {
        margin-top: -200px;
        margin-left: -100px;
        margin-right: 200px;
    }

    .your-dream-one__thumb__item-small img {
        object-fit: cover;
        width: 100%;
    }
}

/* @media (max-width: 991px) {
    .your-dream-one__thumb__item-small {
        margin-top: 30px;
        margin-left: 0px;
        margin-right: 0px;
    }
} */

.your-dream-one__element-one {
    position: absolute;
    bottom: 20%;
    right: 0;
    z-index: -1;
    animation: movebounce2 3s ease-in-out infinite;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-one {
        display: block;
    }
}

.your-dream-one__element-one::after {
    left: 0;
    content: "";
    position: absolute;
    width: 412px;
    height: 412px;
    border-radius: 50%;
    background: rgba(242, 175, 30, 0.5);
    filter: blur(200px);
}

.your-dream-one__element-two {
    position: absolute;
    top: 120px;
    left: 250px;
    animation: movebounce3 3s ease-in-out infinite;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-two {
        display: block;
    }
}

.your-dream-one__element-three {
    position: absolute;
    top: 150px;
    left: 100px;
    animation: movebounce3 3s ease-in-out infinite;
    animation-delay: 500ms;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-three {
        display: block;
    }
}

.your-dream-one__element-four {
    position: absolute;
    bottom: 90px;
    right: 100px;
    animation: movebounce3 3s ease-in-out infinite;
    animation-delay: 500ms;
    display: none;
}

@media (min-width: 1200px) {
    .your-dream-one__element-four {
        display: block;
    }
}

.how-rent-two {
    position: relative;
    z-index: 1;
    counter-reset: mainRent;
}

.how-rent-two__item {
    position: relative;
    z-index: 1;
    padding: 30px;
}

@media (max-width: 991px) {
    .how-rent-two__item {
        max-width: 270px;
    }
}

@media (max-width: 767px) {
    .how-rent-two__item {
        margin-left: auto;
        margin-right: auto;
    }
}

.how-rent-two__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -2;
    height: 100%;
    background-image: url(../images/shapes/shape-how-2.png);
    background-repeat: no-repeat;
    background-position: left top;
    transition: all 0.4s ease-in-out;
    transform: translateY(11px);
}

.how-rent-two__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-image: url(../images/shapes/shape-how.png);
    background-repeat: no-repeat;
    background-position: left top;
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__top {
    position: relative;
    z-index: 1;
    counter-increment: mainRent;
}

.how-rent-two__item__top::before {
    content: counters(mainRent, ".", decimal-leading-zero);
    color: var(--rentol-black, #212121);
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    position: absolute;
    top: -10px;
    right: -15px;
    line-height: 100%;
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__icon {
    font-size: 50px;
    color: var(--rentol-base, #F2AF1E);
    margin-bottom: 50px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 3px;
    padding-bottom: 0;
    text-transform: uppercase;
    color: var(--rentol-white, #fff);
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-text, #7E7E7E);
    transition: all 0.4s ease-in-out;
}

.how-rent-two__item:hover .how-rent-two__item__top::before {
    color: var(--rentol-base, #F2AF1E);
}

.how-rent-two__item:hover .how-rent-two__item__icon {
    color: var(--rentol-black, #212121);
}

.how-rent-two__item:hover .how-rent-two__item__text {
    color: var(--rentol-black, #212121);
}

.how-rent-two__item:hover .how-rent-two__item__title {
    color: var(--rentol-black, #212121);
}

.how-rent-two__item:hover::after {
    z-index: -2;
    transform: translateY(11px);
}

.how-rent-two__item:hover::before {
    z-index: -1;
    transform: translateY(0px);
}

.how-rent-two__element-one {
    position: absolute;
    top: 50%;
    left: 0;
    display: none;
    z-index: -1;
    transform: translateY(-50%);
}

.how-rent-two__element-one img {
    animation: movebounce2 3s ease-in-out infinite;
}

.how-rent-two__element-one::after {
    content: "";
    position: absolute;
    width: 316px;
    height: 246px;
    left: 49px;
    top: 0;
    z-index: -2;
    background: rgba(242, 175, 30, 0.5);
    filter: blur(100px);
}

@media (min-width: 1200px) {
    .how-rent-two__element-one {
        display: block;
    }
}

.how-rent-two__element-two {
    position: absolute;
    top: 50%;
    right: 0;
    display: none;
    z-index: -1;
    transform: translateY(-50%);
}

.how-rent-two__element-two img {
    animation: shapeMove 3s ease-in-out infinite;
}

.how-rent-two__element-two::after {
    content: "";
    position: absolute;
    width: 316px;
    height: 246px;
    right: 49px;
    top: 0;
    z-index: -2;
    background: rgba(242, 175, 30, 0.5);
    filter: blur(100px);
}

@media (min-width: 1200px) {
    .how-rent-two__element-two {
        display: block;
    }
}

.section-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

@keyframes movebounce2 {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes movebounce3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shapeMove {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes rotated {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.sec-title__tagline {
    margin: 0;
    color: var(--rentol-base, #F2AF1E);
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1em;
    margin-bottom: 17px;
}

.sec-title__title {
    margin: 0;
    font-size: 3rem;
    font-weight: 600;
    color: var(--rentol-black, #212121);

    margin: 0;
    letter-spacing: -0.03em;
}

/*----------------------- About End------------------------------*/
/*----------------------- Service Start------------------------------*/
#expertise {
    padding: 80px 0;
    background: var(--unus-base);
    background: linear-gradient(178deg, var(--unus-base) 15%, rgba(0, 9, 20, 1) 50%, rgba(0, 0, 2, 1) 75%)
}

.heading_wrapper .header_title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: capitalize;
}

.heading_wrapper p {
    text-align: center;
    /* padding: 0 11rem; */
    max-width: 1024px;
    color: white;
    margin: auto;
    font-size: 18px;
}

.heading_wrapper {
    margin-bottom: 4rem;
}

.expertise .card {
    background-color: transparent;
    margin-bottom: 3.5rem !important;
    border-color: transparent;
}

.expertise .card .card-body {
    padding: 0;
}

.expertise .card .card-body .card-title {
    margin: 1.5rem 0;
    color: var(--secondary-color);
}

.expertise .card .card-body .card-text {
    color: var(--white);
    padding-right: 4.5rem;
    max-height: 88px;
    height: 88px;
    text-overflow: ellipsis;
}

.card-body .cta {
    margin-left: 0;
}

#news-slider #news-slider .owl-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

#news-slider .owl-wrapper .owl-item {
    width: 25%;
    /* height: 100px; */
    /* background: white; */
}

/* Experience Slider */
.fa_section .card .icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 90px; */
    width: 100px;
    margin-bottom: 1.5rem;
}

#news-slider {
    margin: 0 auto;
    overflow: hidden;
}

#news-slider .owl-wrapper-outer {
    height: 340px;
}

#news-slider .owl-wrapper {
    display: flex !important;
    max-height: 100%;
    height: 100%;

}

#news-slider .owl-controls {
    width: 100%;
    height: 26px;
    margin-bottom: 16px;
    z-index: 1;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    bottom: -90px;
}

.owl-pagination .owl-page {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: var(--white);
    margin: 0 3px;
    cursor: pointer;
}

.owl-pagination .owl-page.active {
    background-color: var(--unus-base);
}

.heading_wrapper h5 {
    text-align: center;
}

#advantage {
    background-image: url(../img/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Owl Dots End */
/*----------------------- Service End------------------------------*/
/*----------------------- Advantage Start------------------------------*/
#advantage {
    padding: 80px 0 120px 0;

}

.advantage .heading_wrapper .header_title {
    color: #000000;
}

.fa_section {
    max-height: 550px;
    height: 550px;
}

.fa_section .card {
    text-align: center;
    border-color: transparent;
    border-radius: 0;
    margin: 0 1rem;
}

.fa_section .card {

    margin-bottom: 4rem;
}

.fa_section .card:nth-child(3) {
    border-right: 2px solid transparent;
}

.fa_section .card:nth-child(6) {
    border-right: 2px solid transparent;
}

.adv_cta {
    margin-left: 0;
}

.fa_section .card .icon_box {
    background: var(--primary-color);
    padding: 13px 10px;
    width: 80px;
    margin: auto;
    margin-bottom: 2rem;
    border-radius: 5px;
    margin-top: 1rem;

}

.fa_section .card .card_box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    cursor: pointer;
}

.fa_section .card .card_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
}

.fa_section .card .title {
    font-size: 1.25rem;
    color: var(--primary-color);
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.fa_section .card .text {
    padding: 0 2rem;
}

#advantage .card-title {
    text-align: left;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

#advantage .card-subtitle {
    font-size: 1.1rem;
    text-align: left;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0;
}

#advantage .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#advantage .card-body {
    padding-bottom: 1rem;
}

#advantage .fa_section .card {
    height: 550px;
    max-height: 550px;
}

#advantage .btn_grp {
    margin-top: 0rem;
    text-align: left;
}

#advantage .sec-title__title {
    color: white;
}

/*----------------------- Advantage End------------------------------*/
/*----------------------- Fleet Start------------------------------*/
#fleet {
    padding: 80px 0;
    background-image: url(../img/fleet_bg.png);
    background-attachment: fixed;
}

.image_box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Carousel Modification */
.carousel_btn {
    display: flex;
    position: relative;
    max-width: 130px;
    bottom: 56px;
    /* z-index: 1; */
}

.carousel_btn .carousel-control-prev,
.carousel_btn .carousel-control-next {
    background-color: var(--primary-color);
    height: 3.5rem;
    width: 3.5rem;
    padding: 6px;
    /* color: white; */
    opacity: 1;
    border: 1px solid white;
}

.carousel-item .fleet_info {
    align-items: center;
    padding-top: 3.5rem;
}

.carousel-item .fleet_info h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.carousel-item .fleet_info h2 {
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.fleet_info p {
    color: white;
    font-weight: 200;
    margin-bottom: 2rem;
}

.carousel-item .fleet_info .cta {
    margin-left: 0;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {

    background: #dbc988;
}

/*----------------------- Fleet End------------------------------*/
/*----------------------- Testimonial Start------------------------------*/

.testimonial-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--unus-base);
    box-shadow: 0px 0px 4px #00000083;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1.5rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.testimonial-name {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.25rem;
}

.testimonial-role {
    font-size: 13px;
    color: #999;
    text-align: center;
    font-size: 1.25rem;
}

.rating i {
    color: #f4b400;
}

.play-btn {
    display: none;
}

.quote-icon {
    color: #f4b400;
    font-size: 70px;
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.cb_grp {
    display: flex;
    align-items: baseline;
    position: relative;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
}

.cb_grp .carousel-control-prev {
    background: var(--unus-base);
    height: 40px;
    width: 40px;
    bottom: 0;
    position: inherit !important;
    opacity: 1;
}

.cb_grp .carousel-control-next {
    height: 40px;
    width: 40px;
    bottom: 0;
    background: var(--unus-base);

    opacity: 1;
    position: inherit !important;
}

.cb_grp .carousel-control-prev:hover,
.cb_grp .carousel-control-next:hover {
    background-color: var(--unus-black);
    color: white;
}

.testimonials-page {
    background: #f5f5f5;
}

/*----------------------- Testimonial End------------------------------*/
/*----------------------- Blog Start------------------------------*/


/*----------------------- Blog End------------------------------*/
/*----------------------- FAQ Start------------------------------*/
#faqs {
    background-color: var(--unus-black2);
}

#faqs .card {
    background-color: var(--white);
    border: 2px solid var(--unus-base);
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.card-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-color: transparent !important;
    /* border-bottom: 2px solid #000!important; */
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.card-header button {
    padding-left: 0;
    display: flex;
    /* justify-content: space-between; */
    padding-right: 0;
    text-decoration: none !important;
    color: var(--unus-black2);
    font-weight: 500;
    position: relative;
    padding: 0 1rem;
    font-size: 18px;
}

.card-header button:focus {
    box-shadow: none;
}

.card-header button:hover {
    color: var(--unus-white);
}

.accordion .card {
    background-color: transparent;
    /* border-bottom: 1px solid; */
    border-top: transparent;
    border-right: transparent;
    border-left: transparent;
    border-bottom: transparent;
    border-radius: 0;
}

.card-body {
    color: var(--unus-black);
    font-size: 1.1rem;
}

.accordion-button {
    background-color: #f6f1d8;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) .card {
    border-bottom: 1px solid transparent;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
    font-size: 1.4rem;
    transform: none;
    border: 1px solid var(--primary-color);
    opacity: 0;
}

.accordion-button.collapsed::after {
    content: "+";
    font-size: 1.4rem;
    transform: none;
    opacity: 0;
}

.accordion-button::after {
    background-image: none !important;
    margin-left: auto;
    display: none;
}

.accordion-body {
    color: #333;
    font-size: 0.95rem;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: #f6f1d8;
}

#faqs .col-xl-6:first-child {

    padding-left: 1rem;

}

#faqs .col-xl-6:last-child {
    padding-left: 0;
    padding-right: 0;
}

.faq_img {
    padding: 0 1rem;
}

.faq_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 2.5rem;
}

#faqs .heading_wrapper {
    margin-bottom: 3rem;
}

#faqs .heading_wrapper .header_title {
    text-align: left;
    color: var(--primary-color);
}

.faq_container {
    margin-right: 2rem;
}

.faq_container .accordion-button {
    background: transparent;
    border-bottom: 1px solid #c4bda7;
    color: var(--primary-color);
    padding-left: 0;
}

.faq_container .accordion-body {
    padding-left: 0;
    color: var(--primary-color);
    font-weight: 400;
}

.faq_container .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: transparent;
    border-bottom: 1px solid #c4bda7;
}

.faq_container .accordion-item {
    background-color: transparent !important;
    border-color: transparent !important;
}

.accordion button:not(.collapsed) .minus_icon {
    display: flex;
    height: 40px;
    width: 40px;
    padding: 1px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--unus-base);
    position: absolute;
    right: 1rem;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    background: var(--unus-base);
    color: var(--white);
}

.accordion button:not(.collapsed) .plus_icon {
    opacity: 0;
}

.accordion button.collapsed {
    /* color: var(--unus-black2); */
}

.accordion button.collapsed .plus_icon {
    display: flex;
    height: 40px;
    width: 40px;
    padding: 1px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--unus-black2);
    position: absolute;
    right: 1rem;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--unus-black2);
    color: var(--unus-base);
}


.accordion button.collapsed .minus_icon {
    opacity: 0;
}

#faqs .cta {
    margin-left: 0;
    margin-top: 2rem;
}

.accordion .card {
    border-bottom: 2px solid var(--unus-base);
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 2px solid var(--unus-base) !important;
}

#faqs .sec-title__title {
    color: var(--unus-base);
}


.tabs_wrapper {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    background: transparent;
}

ul.tabs {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 10;
    margin: 0 40px 0 0;
    padding: 0;
    width: 23%;
    min-width: 175px;
    list-style: none;
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); */
}

.faq_img {
    max-height: 456px;
    height: 482px;
}

ul.tabs li {
    margin: 0;
    cursor: pointer;
    padding: 10px 15px;
    line-height: 31px;
    color: white;
    text-align: left;
    font-weight: 500;
    background-color: #666;
    background: #003849;
    /* Old browsers */
    background: -moz-linear-gradient(top, #600026 0%, #c60943 100%);
    /* FF3.6+ */
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #600026), color-stop(100%, #c60943)); */
    /* Chrome,Safari4+ */
    /* background: -webkit-linear-gradient(top, #003849 0%, #c60943 100%); */
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #600026 0%, #c60943 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #600026 0%, #c60943 100%);
    /* IE10+ */
    /* background: linear-gradient(to bottom, #003849 0%, #000000 100%); */
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#600026", endColorstr="#c60943", GradientType=0);
    /* IE6-9 */
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid #ffffff;
}

ul.tabs li:hover {
    background: #ae0046;
    background: -moz-linear-gradient(top, #ae0046 0%, #fb0f56 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ae0046), color-stop(100%, #fb0f56));
    background: -webkit-linear-gradient(top, #ae0046 0%, #fb0f56 100%);
    background: -o-linear-gradient(top, #ae0046 0%, #fb0f56 100%);
    background: -ms-linear-gradient(top, #ae0046 0%, #fb0f56 100%);
    background: linear-gradient(to bottom, #ddc780 0%, #ddc780 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae0046", endColorstr="#fb0f56", GradientType=0);
    color: white;
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul.tabs li.active {
    background: #4c001e;
    background: -moz-linear-gradient(top, #4c001e 0%, #9f0735 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c001e), color-stop(100%, #9f0735));
    background: -webkit-linear-gradient(top, #4c001e 0%, #9f0735 100%);
    background: -o-linear-gradient(top, #4c001e 0%, #9f0735 100%);
    background: -ms-linear-gradient(top, #4c001e 0%, #9f0735 100%);
    background: linear-gradient(to bottom, #ddc780 0%, #ddc780 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4c001e", endColorstr="#9f0735", GradientType=0);
    color: #000000;
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tab_container {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 20;
    left: -2%;
    width: 70%;
    min-width: 10px;
    text-align: left;
    background: #fff5d4;
    border-radius: 0;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 0%);
}

.tab_content {
    padding: 20px;
    height: 100%;
    display: none;
}

.tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 781px) {
    ul.tabs {
        display: none;
    }

    .tab_container {
        display: block;
        margin: 0 auto;
        width: 95%;
        border-top: none;
        border-radius: 0;
        box-shadow: 0px 0px 10px black;
    }

    .tab_drawer_heading {
        background-color: #ccc;
        background: #003849;
        /* IE6-9 */
        color: #fff;
        margin: 0;
        padding: 15px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        text-align: center;
        font-size: 18px;
        border-bottom: 1px solid #ddc780;
    }

    .tab_drawer_heading:hover {
        background: #ddc780;
        color: #00141d;
    }

    .d_active {
        background: #ddc780;
        color: #00141d;
        font-size: 18px;
    }

    .card-header button {
        column-gap: 30px;
    }

    .wrapper {
        width: 100%;
        max-width: 65.25rem;
        margin: 3rem auto !important;
    }
}





.wrapper {
    width: 100%;
    max-width: 65.25rem;
    margin: 0 auto;
    margin-bottom: 3em;
}

.label {
    font-size: .625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: +1.3px;
    margin-bottom: 1rem;
}

.searchBar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#searchQueryInput {
    width: 100%;
    height: 3.8rem;
    background: #f5f5f5;
    outline: none;
    border: 1px solid #ddc780;
    border-radius: 5px;
    padding: 0 3.5rem 0 1.5rem;
    font-size: 1rem;
    box-shadow: -2px 9px 10px rgb(0 0 0 / 10%);
}

#searchQuerySubmit {
    width: 3.5rem;
    height: 2.8rem;
    margin-left: -3.5rem;
    background: none;
    border: none;
    outline: none;
}

#searchQuerySubmit:hover {
    cursor: pointer;
}






/* .accordion-button:not(.collapsed) .plus_icon{
    opacity: 1;
} */
/*----------------------- FAQ End------------------------------*/
/*----------------------- Member Start------------------------------*/
#member {
    padding: 80px 0;
    position: relative;
    background-color: white;
}

#member .heading_wrapper .header_title {
    color: var(--primary-color);
}

.member_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.member_logo .logo_box {
    border: 1px solid #7f9aa1;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member_logo .logo_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member_logo .logo_box img {
    width: 100%;
    object-fit: contain;
    height: 110px;
}


/*----------------------- Member End------------------------------*/
/*----------------------- Footer Start------------------------------*/
.main-footer {
    position: relative;
    background-color: var(--rentol-black, #212121);
    z-index: 1;
    border-top: 2px solid var(--unus-base);
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: -1;
}

.main-footer__top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 58px;
    padding-bottom: 59px;
    border-bottom: 1px solid rgba(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
}

@media (max-width: 991px) {
    .main-footer__top__inner {
        flex-direction: column;
        gap: 30px;
        align-items: start;
        justify-content: start;
    }
}

.main-footer__middle {
    padding-top: 55px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .main-footer__middle {
        padding-bottom: 10px;
    }
}

.main-footer__bottom__inner {
    border-top: 1px solid rgba(var(--rentol-border-color-rgb, 210, 210, 210), 0.2);
    position: relative;
    padding: 39.4px 0px;
    text-align: center;
}

.main-footer__copyright {
    font-style: normal;
    color: var(--white);
    font-family: var(--rentol-special-font, "DM Sans", sans-serif);
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
    font-size: 16px;

    text-transform: capitalize;
}

.main-footer__copyright a {
    color: var(--unus-base);
    transition: all .5s;
    cursor: pointer;

}

.main-footer__copyright a:hover {
    color: white;
}

.main-footer__element-one {
    position: absolute;
    top: 50px;
    left: 0;
    animation: movebounce2 4s linear infinite;
}

@media (max-width: 991px) {
    .main-footer__element-one {
        display: none;
    }
}

.main-footer__element-two {
    position: absolute;
    bottom: 50px;
    right: 0;
    animation: movebounce2 3s linear infinite;
}

@media (max-width: 991px) {
    .main-footer__element-two {
        display: none;
    }
}

.main-footer--two {
    padding-top: 178px;
}

.main-footer--two .main-footer__middle {
    padding-top: 0;
    padding-bottom: 0;
}

.main-footer--two .main-footer__middle__inner {
    border-top: 1px solid rgba(219, 210, 202, 0.2);
    padding-top: 55px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .main-footer--two .main-footer__middle__inner {
        padding-bottom: 10px;
    }
}

.main-footer--two .footer-widget__title {
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: var(--rentol-white, #fff);
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.main-footer--two .footer-widget__title::after {
    content: "";
    width: 25px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--rentol-white, #fff);
}

.main-footer--two .footer-widget__title::before {
    content: "";
    width: 55px;
    height: 2px;
    position: absolute;
    left: 30px;
    bottom: 0;
    background-color: var(--rentol-primary2, #E66431);
}

.main-footer--two .footer-widget__logo {
    margin-bottom: 25px;
}

.main-footer--two .footer-widget__social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    color: var(--white);
    opacity: 0.7;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

.main-footer--two .footer-widget__social a:hover {
    transform: translateY(-3px);
    color: var(--rentol-white, #fff);
    opacity: 1;
    border-color: var(--rentol-primary2, #E66431);
    background-color: var(--rentol-primary2, #E66431);
}

.main-footer--two .footer-widget__links li a:hover {
    color: var(--rentol-primary2, #E66431);
}

.main-footer--two .footer-widget__links li a:hover::after {
    background-color: var(--rentol-primary2, #E66431);
}

.footer-widget {
    /*** Info***/
    /*** Link***/
    /*** News later***/
    /*** List***/
    /*** Contact***/
}

.footer-widget__title {
    color: var(--rentol-white, #fff);
    position: relative;
    padding-bottom: 12px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
}

.footer-widget__title span {
    color: var(--rentol-base, #F2AF1E);
}

.footer-widget__logo {
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer-widget__logo a {
    display: block;
}

.footer-widget__about-text {
    margin-top: -5px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--white);
    margin-bottom: 35px;
    padding-bottom: 0;
    
}

.footer-widget__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget__social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    color: var(--white);
    opacity: 1;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

.footer-widget__social a:hover {
    transform: translateY(-3px);
    color: var(--rentol-white, #fff);
    opacity: 1;
    border-color: var(--rentol-base, #F2AF1E);
    background-color: var(--rentol-base, #F2AF1E);
}

.footer-widget__links {
    margin-top: -3px;
    margin-bottom: 0;
}

.footer-widget__links li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    color: var(--white);
}

.footer-widget__links li a {
    color: inherit;
    position: relative;
    transition: all .5s;
}

.footer-widget__links li a::after {
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: var(--rentol-base, #F2AF1E);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.footer-widget__links li a:hover {
    padding-left: 15px;
    color: var(--rentol-base, #F2AF1E);
}

.footer-widget__links li a:hover::after {
    content: "";
    width: 8px;
    height: 8px;
    opacity: 1;
    visibility: visible;
}

.footer-widget__links li+li {
    margin-top: 10px;
}

.footer-widget__newsletter .form-group__form {
    background-color: var(--rentol-white, #fff);
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.footer-widget__newsletter .form-group__form input[type=email] {
    width: 100%;
    border: none;
    outline: none;
    height: 55px;
    display: block;
    border: none;
    outline: none;
    padding-left: 20px;
    padding-right: 70px;
    transition: all 500ms ease;
    color: var(--rentol-black, #212121);
    line-height: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    background-color: var(--rentol-gray, #EFEFEF);
}

.footer-widget__newsletter .form-group__form input[type=email]::placeholder {
    color: var(--rentol-text, #7E7E7E);
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}

.footer-widget__newsletter .form-group__form span {
    position: absolute;
    transform: translateY(-50%);
    right: 20px;
    top: 50%;
    color: var(--rentol-base, #F2AF1E);
    font-size: 16px;
}

.footer-widget__newsletter .form-group__form button[type=submit] {
    width: 100%;
    height: 45px;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--rentol-white, #fff);
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0;
}

.footer-widget__newsletter .form-group__form button[type=submit]::after {
    background-color: var(--rentol-primary, #EB3E32);
}

.footer-widget__newsletter .form-group__form button[type=submit]:hover {
    background-color: var(--rentol-primary, #EB3E32);
}

.footer-widget__list {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    gap: 53px;
}

@media (max-width: 1199px) {
    .footer-widget__list {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .footer-widget__list {
        flex-wrap: wrap;
        gap: 30px 60px;
    }
}

.footer-widget__list li {
    display: flex;
    gap: 15px;
}

.footer-widget__list li:hover .footer-widget__list__icon {
    color: var(--rentol-white, #fff);
}

.footer-widget__list li:hover .footer-widget__list__icon::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
}

.footer-widget__list__icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rentol-white, #fff);
    font-size: 18px;
    color: var(--rentol-base, #F2AF1E);
    transition: all 0.4s ease-in-out;
    z-index: 1;
    position: relative;
}

.footer-widget__list__icon::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--unus-base);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    z-index: -1;
}

.footer-widget__list__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--rentol-white, #fff);
    opacity: 0.9;
    text-transform: capitalize;
    margin-bottom: 4px;
    padding-bottom: 0;
    display: block;
}

.footer-widget__list a,
.footer-widget__list p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--rentol-white, #fff);
    word-break: break-all;
}

.footer-widget__list a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__list a:hover {
    background-size: 100% 1px;
}

.footer-widget__list a:hover {
    color: var(--rentol-base, #F2AF1E);
}

.footer-widget__list p {
    text-transform: capitalize;
}

.footer-widget__contact-text {
    margin-top: -3px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    color: var(--white);
    margin-bottom: 8px;
    padding-bottom: 0;
    text-transform: capitalize;
    display: block;
    text-decoration: none;
    transition: all .5s;
}

.footer-widget__contact-text:hover {
    color: var(--unus-base);

}

@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

.footer-widget__contact {
    margin-bottom: 0;
}

.footer-widget__contact li {
    display: flex;
    align-items: start;
    gap: 20px;
}

.footer-widget__contact li i {
    color: var(--rentol-primary2, #E66431);
    line-height: 22px;
    font-size: 16px;
}

.footer-widget__contact li p,
.footer-widget__contact li a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #807A75;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-widget__contact li+li {
    margin-top: 22px;
}

.footer_cta {
    margin-left: 0;
}

.footer_cta .btn {
    width: 100%;
}

/*----------------------- Footer End------------------------------*/
/*----------------------- Service Start------------------------------*/
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 600px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--unus-black2);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.vehicle-fleet {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vehicle-fleet img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.vehicle-fleet:hover img {
    transform: scale(1.05);
}

.commitment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.monument-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.monument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.monument-image:hover img {
    transform: scale(1.02);
}

.commitment-content {
    padding: 2rem 0;
}

.highlight-text {
    background: linear-gradient(120deg, #d4af37 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-tag {
    background: var(--unus-black2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .commitment-section {
        padding: 40px 0;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*----------------------
#. Banner
----------------------*/
.breadcrumb-bar {
    background: #201F1D;
    padding: 90px 0 90px;
    position: relative;
    z-index: 1;
    width: 100%;
    background-image: url(../img/page-title.jpg);
}

.breadcrumb-bar:before {
    content: "";
    background: url(../img/breadcrumbleft.png) no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 393px;
    height: 334px;
    background-size: cover;
}

.breadcrumb-bar .breadcrumb-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 36px;
    margin: 0 0 15px;
}

.breadcrumb-bar .breadcrumb {
    justify-content: center;
    margin: 0;
    background: transparent;
}

.breadcrumb-bar .breadcrumb li a {
    color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: white !important;
    content: "/";
}

.breadcrumb-bar:after {
    content: "";
    background: url(../img/breadcrumbright.png) no-repeat;
    position: absolute;
    bottom: 50px;
    right: 130px;
    width: 97px;
    height: 102px;
    background-size: cover;
}

.breadcrumb-bar .breadcrumb-item.active {
    color: var(--unus-base);
}

/*new special title & category name*/
/*Style 01*/
.rt-box-title-1 {
    position: relative;
    padding: 4px 10px;
    background-color: #14287b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
    text-transform: uppercase;
}

.rt-box-title-1 span {
    position: absolute;
    right: -8px;
    z-index: 1;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-top: 10px solid;
    border-top-color: #14287b;
    top: 0px;
}

/*Style 01*/
.rt-box-title-2 {
    position: relative;
    padding: 4px 10px;
    background-color: #14287b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.rt-box-title-2 span {
    position: absolute;
    bottom: -7px;
    left: 8px;
    z-index: 1;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #14287b;
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .ipad-single-image .wpb_single_image.vc_align_right {
        text-align: center;
    }

    /*temp*/
    .ipad-single-image .wpb_single_image.vc_align_right {
        padding-bottom: 15px;
    }
}

.position-relative {
    position: relative;
}

.img-overlay-70:before {
    background-image: linear-gradient(transparent, #111),
        linear-gradient(transparent, #111);
    height: 70%;
    opacity: 0.7;
    position: absolute;
    right: 0;
    z-index: 1;
}


/* =============Service Expertise start ============= */
.l_box {
    display: block !important;
}

/* Service Section End  */
.ser_expertise .card .card-body .card-text {
    max-height: 95px;
    height: 95px;
    overflow: hidden;
    white-space: normal;
}

.ser_expertise .cta .primary_btn {
    z-index: 1;
}

.ser_expertise .cta .primary_btn:after {
    z-index: -1;
}

.ser_expertise .btn-outline-success:not(:disabled):not(.disabled):active:focus,
.ser_expertise .btn-outline-success:focus {
    box-shadow: none !important;
}

.ser_expertise .btn-outline-success:not(:disabled):not(.disabled):active {
    background-color: var(--primary-color);
    border-color: #ffb400;
}

.ser_experince .fa_section .card {
    border-right: none;
}

.ser_experince .fa_section .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f5ecd1;
    border-radius: 8px;
    border: 1px solid #ffcb31;
    margin-bottom: 0;
}

.ser_experince .fa_section .card .icon_box {
    margin-top: 2rem;
    padding: 0;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ser_experince .fa_section .card .icon_box {
    background: transparent;
}

.ser_experince .fa_section .card .title {
    padding: 0;
    color: black;
    font-weight: 600;
}

.care_section .about_img img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.care_section .about_img {
    float: inherit;
}

.care_wrapper .care_box {
    display: flex;
    background-color: #f5ecd1;
    padding: 8px;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    gap: 1.5rem;
    align-items: center;
}

.care_wrapper .care_box .img_box {
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.care_wrapper .care_box .img_box img {
    height: 65px;
    width: 65px;
}

.care_wrapper .care_box p {
    font-size: 18px;
    margin-bottom: 0;
}

.care_section .header_title {
    text-align: center;
}

.care_section {
    background-color: #fdfdfd;
}

.spcial_wrap {
    max-width: 1024px !important;
    margin: 0 auto !important;
    text-align: center;
    margin-top: 30px !important;
}

.spcial_wrap p.card-text {
    padding-right: 0 !important;
}


/* ========================= Event Page Start ======================== */


.event_box .cta {
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 20px;

}

.images_event img {
    width: 100%;

}

.feature .cta {
    padding-left: 0;
    margin-left: 0;
}

/* ========================= About Page Start ======================== */
.about_member {
    background-color: #f5ecd1 !important;
}

.about_member .heading_wrapper .header_title,
.about_member .heading_wrapper p {
    color: #000000 !important;
}

/* .gathering_sec {} */

.event-card {
    background-color: #f6f1df;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-color: transparent !important;
    border-width: 0px !important;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 100%;
    height: 321px;
    max-height: 321px;
    object-fit: cover;
    object-position: center;
}

.event-title {
    font-weight: 600;
    margin-top: 15px;
    font-size: 1.75rem;
}

.card_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.card_wrapper .event-card:nth-child(2) {
    flex-direction: column-reverse;
}

.card_wrapper .event-card .card-body {
    padding: 2rem 2rem 8.5rem;
    background-color: #faf5e6;
}

.gathering_sec .header_title {
    text-align: center;
    margin-bottom: 5rem;
}

.card_wrapper .event-card .card-img-top {
    border-radius: 0;
    border: 1px solid #80808026;
    
}
.card-img-top{
max-height: 275px;
    height: 275px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.gathering_sec {
    padding-bottom: 0 !important;
}

.gathering_sec .card_wrapper {
    max-width: 80%;
    margin: auto;
}

/* Founer Section Start */
.founder-card {
    background-color: transparent;
    border: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.founder-img {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 0 auto 32px;
    box-shadow: 0px 1px 10px #000;
}

.founder-name {
    font-weight: 400;
    color: #fad587;
    margin-bottom: 5px;
    font-size: 1.75rem;
}

.founder-title {
    font-size: 22px;
    color: #ffffff;
}

.team_section .quote {
    font-style: italic;
    font-weight: 500;
    text-align: center;
    margin: 40px auto;
    color: #fff;
    position: relative;
    font-size: 1.75rem;
    max-width: 1180px;
}

.team_section .quote span,
.team_section .quote span {
    position: absolute;
}

.team_section .quote span:first-child {
    position: absolute;
    left: 1rem;
    top: -30px;
}

.team_section .quote span:last-child {
    bottom: -18px;
    position: absolute;

}

.team_section .card {
    margin-bottom: 0 !important;
}



/*--------------------
 Back to Top Button
---------------------*/
.scrollToTopBtn {
    background-color: var(--primary-color);
    border: 1px solid #ffcb31;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 20px;
    line-height: 48px;
    width: 48px;
    /* place it at the bottom right corner */
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* keep it on top of everything else */
    z-index: 100;
    /* hide with opacity */
    opacity: 0;
    /* also add a translate effect */
    transform: translateY(100px);
    /* and a transition */
    transition: all .5s ease;

}

.showBtn {
    opacity: 1;
    transform: translateY(0);
    background-color: var(--unus-base);
    color: var(--unus-black2);
}

.showBtn:hover {
    background-color: var(--unus-black2);
    color: var(--unus-base);

}

/* ===================== Service Start Page ================ */
#service_sec .header_title {
    font-size: 3rem;
    font-weight: 500;
}

#service_sec .about_text p {
    font-size: 1.5rem;
}

/* ===================== Service End Page ================ */

/* ===================== Service Details Page ================ */

.service_wrapper {
    background-color: #181716;
}

.service_wrapper .top_sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.top_sec .highlight {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--primary-color);
}

.highlight {
    color: var(--white);
}

.top_sec .s_image_box {
    width: 100%;
}

.top_sec .highlight h4 {
    font-size: 1.25rem;
}

.top_sec .highlight h5 {
    font-size: 2rem;
}

.service_wrapper {
    position: relative;
}

.left-fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 116px;
}

.right_scroll {
    padding-top: 7rem;
    padding-left: 3rem;
    padding-right: 3.5rem;
}

.right_scroll .text-warning {
    margin-bottom: 0;
}

.right_scroll h2 {
    font-size: 4rem;
    color: var(--white);
}

.right_scroll .text-muted {
    color: #B2AEA8 !important;
    font-size: 1.5rem;
}

.right_scroll .feature {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
}

.right_scroll .headings_wrapper {
    margin-bottom: 3.5rem;
}

.right_scroll .feature i {
    font-size: 1.75rem;
    color: #ffb400;
    margin-bottom: 1rem;
}

.right_scroll .feature strong {
    font-size: 1.75rem;
    color: var(--white);
}

.tracking_sec .care_text {
    padding: 2.5rem;

}

.tracking_sec .care_text .title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.tracking_sec .care_text .p_text {
    line-height: 38px;
    color: white;
}

.tracking_sec {
    background: #002E3E;
    background: linear-gradient(178deg, rgba(0, 46, 62, 1) 15%, rgba(0, 9, 20, 1) 50%, rgba(0, 0, 2, 1) 75%);
}

.tracking_sec .header_title {
    color: var(--white);
}

/* ======================== Fleet Page Start ======================== */
.fleet_sec {

    background: #000000;
    background: linear-gradient(181deg, rgba(0, 0, 0, 1) 44%, rgba(251, 188, 58, 1) 120%);
}

.fleet_sec .sec-title__tagline {
    color: var(--white);
}

.fleet_sec .sec-title__title {
    color: var(--unus-base);
}

.masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    justify-content: center;
}

.filterDiv {
    display: none;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.filterDiv .card {
    border-color: transparent !important;
    border-radius: 0;
    border: none !important;
    background-color: #f5f5f5;
}

.filterDiv.show {
    display: block;
}

.lte-rental-item {
    text-align: start;
    padding: 0px;
    position: relative;
}

.lte-rental-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 130px;
    background-color: var(--unus-base);
}

.lte-rental-item .lte-photo,
.lte-rental-item .lte-photo {
    padding: 0;
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
    /* height: 290px; */
    width: 100%;
}

.lte-rental-item .lte-photo img {
    transition: all 0.3s ease !important;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: top;
}

.lte-rental-item .lte-photo img:hover {
    transform: scale(1.1);
}

.lte-rental-item .lte-rental-inner {
    position: relative;
    padding: 15px 30px 30px;
}

.lte-rental-item .lte-rental-inner .badge-primary {
    background-color: var(--unus-black2);
    color: var(--unus-base);
    margin-bottom: .5rem;
    border-radius: 2;
    letter-spacing: .5px;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid var(--unus-black2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    box-shadow: 7px 5px 0px rgba(126, 126, 126, .5);
}

.lte-rental-item .lte-header {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--unus-black2);
    margin-top: .5rem;
    font-weight: 600;
}

.lte-rental-item .lte-header a {
    color: var(--unus-black2);
}

.lte-rental-item .lte-subheader {
    color: var(--text-color);
    font-size: 18px;
    margin: -10px 0 8px 0;
}

.lte-excerpt {
    color: var(--text-color);
    font-size: 1.15rem;
	height:100px;
}

.lte-excerpt b {
    color: var(--unus-black2);
}

.lte-text-page p {
    margin-bottom: 30px;
}

.lte-icons-tags {
    margin: 0 -8px 10px -8px;
    padding: 0;
}

.lte-icons-tags li {
    display: block;
    margin: 0 0 0 0px;
    float: left;
    width: 49.9999%;
    text-align: center;
    position: relative;
    font-weight: 400;
    font-weight: bold;
    font-size: 14px;
    padding: 16px 0;
    text-transform: capitalize;
}

.lte-icons-tags li span {
    display: block;
    font-size: 24px;
    margin: 0;
    color: var(--unus-base);
}


.lte-icons-tags li:after {
    content: "";
    border: 2px solid gray;
    border-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 5px;
    right: 8px;
    bottom: 5px;
    left: 8px;
}

.lte-icons-tags:after {
    content: "";
    display: block;
    clear: both;
}

.lte-rental-item .lte-rental-footer,
.lte-rental-item .lte-rental-footer {
    position: relative;
}

.lte-rental-item .lte-price-bottom {
    font-weight: 500;
    letter-spacing: var(--font-headers-letterspacing);
    color: #D7B65D;
    color: var(--main);
    font-size: 24px;
    margin-bottom: 20px;
}

.lte-rental-item .lte-price-bottom span {
    color: #192026;
    color: var(--black);
    font-size: 18px;
}

.lte-rental-item .lte-price-bottom span:before,
.lte-rental-item .lte-price-bottom span:before {
    content: "/";
    padding-left: 8px;
    padding-right: 8px;
}

.lte-rental-item .lte-rental-footer .lte-ratio {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lte-rental-inner .cta {
    text-align: center;
    margin-left: 0;
}

.lte-rental-inner .cta a {
    width: 100%;
}

.lte-stars {
    color: var(--primary-color);
}

#myBtnContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 720px;
    margin: auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--white);
}

/* #myBtnContainer button:first-child{
    color: var(--white);
    background-color: var(--primary-color);
} */
#myBtnContainer .btn-outline-dark:not(:disabled):not(.disabled).active {
    background-color: var(--unus-black);
    border-color: var(--unus-base);
    color: var(--unus-base);
}

#myBtnContainer .btn-outline-dark {
    color: var(--white);
    border-color: var(--white);
    border-radius: 0;
    height: 50px;
}

#myBtnContainer .btn-outline-dark:hover {
    background-color: var(--unus-black);
    border-color: var(--unus-base);
    color: var(--unus-base);
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus {
    box-shadow: none !important;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: none !important;
}

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

}

.card_footer h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
	font-weight:400;
}

.card_footer h3 span {
    font-size: 1.25rem;
	font-weight:600;
}

/* =========================  Fleet Details ===================== */
/* =========================  Why Choose Section Start ===================== */
.why-choose-section {
    padding: 100px 0;
    position: relative;
    background: #000000;
}

/* .why-choose-section::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 200px;
    width: 50%;
    background: #F4B400;
    background: radial-gradient(circle, rgba(244, 180, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
} */

.why-choose-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--unus-base);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: capitalize;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 600px;
}

.vehicle-gallery {
    position: relative;
    height: auto;
    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    display: grid;
    justify-content: space-between;
    padding-right: 3.25rem;

}

.vehicle-gallery .column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-image {
    width: 100%;
    height: 48%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-image:hover {
    /* transform: scale(1.05); */
    z-index: 2;

}

.vehicle-1,
.vehicle-4 {
    height: 200px;
}

.vehicle-2,
.vehicle-3 {
    height: 170px;
}



.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-image:hover img {
    transform: scale(1.1);
}


.feature-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 2rem; */
    flex-wrap: wrap;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}

.feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    padding: 2rem;

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 162, 97, 0.2);
    border-color: var(--unus-base);
}

.feature-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFFFFF;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(251, 188, 58, 1) 100%);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--unus-base);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.feature-description {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--unus-base);
    margin-bottom: 1rem;
    opacity: 1;
}



@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .vehicle-gallery {
        height: 400px;
        margin-bottom: 3rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .vehicle-gallery {
        height: 300px;
    }

    .why-choose-section {
        padding: 50px 0;
    }
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(231, 111, 81, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* =========================  Why Choose Section End ===================== */
/* =========================  Testimonial Section Start ===================== */

/* =========================  Testimonial Section End ===================== */
#serviceExampleIndicators .carousel-indicators li {
    width: 200px;
    height: 100%;
}

#serviceExampleIndicators .carousel-indicators li:not(.active) img {
    opacity: 0.8;
}

#serviceExampleIndicators .carousel-indicators .active img {
    border: 2px solid var(--secondary-color);
}

#serviceExampleIndicators .carousel-indicators {
    position: static;
}

#serviceExampleIndicators .carousel-control-prev {
    height: 75%;
}

#serviceExampleIndicators .carousel-control-next {
    height: 75%;
}

#serviceExampleIndicators .carousel-control-next:focus,
#serviceExampleIndicators .carousel-control-next:hover,
#serviceExampleIndicators .carousel-control-prev:focus,
#serviceExampleIndicators .carousel-control-prev:hover {
    background-color: transparent;

}

#serviceExampleIndicators .carousel-control-next,
#serviceExampleIndicators .carousel-control-prev {
    opacity: 1 !important;
}

#serviceExampleIndicators .carousel-control-prev span,
#serviceExampleIndicators .carousel-control-next span {
    background: var(--primary-color);
    padding: 10px 19px;
    font-size: 24px;
    border-radius: 50%;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all .5s;
}

#serviceExampleIndicators .carousel-control-prev span:hover,
#serviceExampleIndicators .carousel-control-next span:hover {
    opacity: .8;
}

.fleet_carousel {
    background-color: var(--primary-color);
}

.section-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.content-section {
    padding: 20px 0px;
}

.fleet__title {
    color: #fff;
    display: block;
    font-size: 18px;
    margin-top: 50px;
    padding: 12px 15px;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    background-color: var(--primary-color);

}

.fleet__wrap {
    padding-left: 1rem;
    padding-right: 1rem;
}

.fleet__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.fleet__list-item {
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.fleet__list-icon {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    justify-content: center;
    display: flex;
    align-items: center;
}

.fleet__list-text {
    color: #5a5a5a;
}

.fleet__rates {

    margin-top: 2rem;
    padding-left: 1rem;
}

.fleet__rates .cta {
    margin-left: 0;
}

.fleets {
    position: sticky;
    top: 100px;
}


/* =================== Contact Us ================== */
.contact-section {
    position: relative;
    padding: 80px 0;
}

.contact-section .contact-info-area {
    margin: 0 0 80px;
}

.contact-section .contact-info-area .single-contact-info {
    text-align: center;
    background: #ffffff;
    border: 2px solid #F4F4F4;
    box-shadow: 0px 4px 24px rgba(225, 225, 225, 0.25);
    border-radius: 10px;
    padding: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 1.5rem;
}

.contact-section .contact-info-area .single-contact-info h3 {
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-section .contact-info-area .single-contact-info a {
    font-size: 15px;
    color: #737373;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
/*     word-break: break-all; */
}

.contact-section .contact-info-area .single-contact-info i {
    color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 26px;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    line-height: 50px;
    background: var(--unus-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -3px 0px 1px #bfb5b5;
}

.contact-section .contact-info-area .single-contact-info:hover {
    background: var(--unus-black2);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-section .contact-info-area .single-contact-info:hover i {
    background: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: var(--unus-black2);
}

.contact-section .contact-info-area .single-contact-info:hover h3 {
    color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-section .contact-info-area .single-contact-info:hover a {
    color: #ffffff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-section .form-info-area {
    background: #ffffff;
    border: 2px solid #F4F4F4;
    box-shadow: 0px 4px 24px rgba(225, 225, 225, 0.25);
    border-radius: 10px;
    padding: 24px;
}

.contact-section .form-info-area img {
    border-radius: 10px;
}

.contact-section .form-info-area h1 {
    font-weight: 500;
    font-size: 38px;
    color: #28283C;
    margin: 15px;
}

.contact-section .form-info-area p {
    margin-left: 1rem;
}

.input-block label {
    color: #111;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.input-block .form-control {
    padding: 9px 15px !important;
}

.input-block input {
    height: 2.75rem;
}

.input-block .form-control {
    background: #F5F5F5;
    border: 1px solid #F4F4F4;
    box-shadow: none;
    border-radius: 5px;
    margin: 0;
    padding: 13px;
    font-size: 14px;
    font-weight: 400;
    color: #201F1D;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-block {
    margin: 0 0 15px 0;
}

.contact-section .form-info-area .cta {
    margin-left: 0;
    margin-top: 1rem;
}

/* ============ Counter ================ */
.counter-card {
    border-radius: 15px;
    padding: 1rem 1rem;

    color: white;
    text-align: center;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.row_sec .counter-card:nth-child(1),
.row_sec .counter-card:nth-child(3) {
    background-color: var(--primary-color);
}

.row_sec .counter-card:nth-child(2),
.row_sec .counter-card:nth-child(4) {
    background-color: var(--ternary-color);
}

/* .green-card {
    background-color: var(--ternary-color);
}

.dark-card {
    background-color: var(--primary-color);
} */

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;

}

.counter-icon img {
    width: 60px;
}

.counter-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-sign {
    font-weight: bold;
    vertical-align: super;
    margin-left: 2px;
    font-size: 24px;
}

.counter-label {
    margin-top: 0.5rem;
    font-size: 13px;
}

.achievment .row_sec {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.achievment .row_sec .col-12 {
    padding: 0;
}


/* Hover effect for dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    top: 100%;
    left: 0;
    margin-top: 0;
}

/* ==================== FAQ Page Section ================== */
.faq_main {
    background-color: #ffffff !important;
}

.faq_main .heading_wrapper .header_title {
    margin-bottom: 0;
}

/* ==================== Blog Main ========================= */
/* .blog_main */

.blog_main .news-card {
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog_main .news-card img {
    object-fit: cover;
}

.blog_main .news-card .p-4 {
    background-color: #f5ecd1;
}

.blog_main .news-card .p-4 h5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
}

.blog_main .news-card .p-4 h5 a {
    color: #212529;
}

.blog_main .news-card .p-4 h5 a:hover {
    color: var(--primary-color);
}

.blog_main .news-card .p-4 p {
    color: #3a3a3a !important;
}

.blog_main .news-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog_main .news-meta {
    font-size: 14px;
    color: #5F5D5A;
}

.blog_main .sidebar {
    background: #f4edd3;
    padding: 30px;
    border-radius: 0px;
    position: sticky;
    top: 116px;
}

.blog_main .sidebar h5 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #212529;
}



.blog_main .sidebar .recent-post {
    display: flex;
    margin-bottom: 1.5rem;
}

.blog_main .sidebar .recent-post img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0px;
    margin-right: 15px;
}

.blog_main .sidebar .recent-post small {
    font-size: 12px;
    color: var(--primary-color);
    display: block;
}

.blog_main .sidebar .recent-post small a {
    color: var(--primary-color);
}

.blog_main .sidebar .recent-post .post_content {
    font-size: 1.25rem;
    font-weight: 500;
    color: #212529;
    transition: all 0.5s;
}

.blog_main .sidebar .recent-post .post_content:hover {
    color: var(--primary-color);
}

.blog_main .sidebar .recent-post small a:first-child {
    font-size: 14px;
    margin-right: .5rem;
}

.blog_main .sidebar .recent-post small a:last-child {
    margin-left: .5rem;

}

.blog_main .sidebar .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}



/* .list-unstyled li a {
    color: #212529;
    text-decoration: none;
    
} */


.tags a {
    background: transparent;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-block;
    border: 1px solid #00374838;
    color: #003748c9;
    transition: all .5s;
}

.tags a:hover {
    color: var(--primary-color);
}

.blog_main .form-control {
    border-radius: 8px;
}

.post_meta {
    margin-top: 23px;
    padding: 0;
    position: relative;
}

.post_meta:before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    margin-bottom: 20px;
    background-color: var(--primary-color);
}

.post_meta .post_meta_item,
.post_meta .vc_inline-link {
    font-size: inherit;
    display: inline-block;
    margin-left: 0;
    -webkit-transition: color 0.3s ease 0s;
    -ms-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;

}

.post_meta_item a {
    color: var(--primary-color);
}

.post_meta .post_meta_item:after {
    content: '•';
    font-family: "fontello";
    display: inline-block;
    vertical-align: baseline;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    margin: 0 0.75em;
    color: var(--primary-color);
}

.post_meta .post_meta_item:last-child::after {
    display: none;
}

.post_meta .post_meta_item:last-child {
    color: var(--primary-color);
}

.post_meta .post_meta_item:hover,
.post_meta .post_meta_item a:hover {
    color: var(--primary-color) !important;
}

.custom-search {
    background-color: transparent;
    border: 1px solid #9f9f9f;
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 340px;
}

.custom-search i {
    color: #7d7266;
    margin-right: 10px;
}

.custom-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #7d7266;
}

.custom-search input::placeholder {
    color: #a09283;
}


/* ====================== Blog Details ================== */
#blog .heading_wrapper .post_title {
    max-width: 700px;
    margin: auto;
}

.blog_details .post_meta {
    text-align: center;
}

.blog_details .post_meta .post_author_name {
    color: var(--primary-color);
}

.blog_details .post_meta:before {
    display: none !important;
    background: transparent;
}

.blog_details .quote-box {
    background: #fdf8f4;
    border-left: 4px solid orange;
    padding: 20px;
    font-style: italic;
}

.blog_details .tags span {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 30px;
    margin: 5px;
    font-size: 0.875rem;
    display: inline-block;
}

.blog_details .social-icons i {
    font-size: 1.25rem;
    padding: 10px;
    color: white;
}

.blog_details .like-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #ccc;
}

.blog_details .like-btn.liked {
    color: red;
}

.blog_content_wraqpper .lead::first-letter {
    color: var(--primary-color);
    font-size: 300%;
    float: left;
    line-height: .25;
    margin-right: .5rem;
    margin-top: .4em;
    font-weight: 500;
}

.blog_content_wraqpper h4 {
    color: #212529;
    font-size: 1.75rem;
}

.blog_content_wraqpper {
    font-size: 1.25rem;
}

.blog_details .tags {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #D9D5D1;
}

.blog_details .social-icons {
    margin-bottom: 3rem;
}

.blog_details .social-icons .btn {
    padding: 4px 8px !important;
}

.faq_main .col-xl-8 {
    border: 1px solid #00374873;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0px 9px 3px 11px #00374817;
}

.navbar-light .navbar-nav .active>.nav-link {
    color: var(--unus-base) !important;
}


/* Vip Section */
.tracking_sec_air {
    background-image: url(../img/vipo_bg.png);
    background-position: right top;
    background-size: cover;
    background-repeat: no-repeat;
}

.tracking_sec_air .header_title {
    color: var(--secondary-color);
}

/* Background & Theme */
.vip-services {
    background: #002233;
    /* Match your dark starry background */
    background-image: url('background-pattern.png');
    /* Optional */
    background-size: cover;
}

/* Gold color */
.text-gold {
    color: #f0cb77;
}

.border-gold {
    border: 2px solid #f0cb77;
}

.btn-gold {
    background-color: #f0cb77;
    color: #001f2f;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-gold:hover {
    background-color: #e5b955;
    color: #000;
}

/* Responsive box */
.service-box {
    background: linear-gradient(to bottom, #003748, #000000);
    color: #fff;
    border-radius: 20px;
}

.tracking_sec_air .heading_text p {
    color: white;
    font-size: 1.25rem;
    text-align: center;
    padding: 0 3rem;
}

.service-box .icon img {
    width: 75px;
}

@media only screen and (max-width: 991px) {
    .tracking_sec {
        background-position: bottom;
    }

    .tracking_sec .heading_text p {
        font-size: 1.25rem;
        padding: 0;
    }
}
.map{
	display:none;
}