@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 {
    --primary-color: #003849;
    --secondary-color: #ddc780;
    --ternary-color: #95a375;
    --white: #ffffff;
}

/* --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
--------------------------------------------------------------*/
header {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

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

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

.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(--secondary-color) !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: 1rem;

}

/* ======= Button Style Primary ========= */
.cta .primary_btn {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 40px;
    font-size: 16px;
    text-decoration: none;
    color: #000000;
    text-align: center;
    position: relative;
    transition: all .35s;
    background-color: var(--secondary-color);
    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(--primary-color);
    transition: all .35s;
}

.cta .primary_btn:hover {
    color: #fff;
    background: var(--primary-color);
    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(--secondary-color);
    text-align: center;
    position: relative;
    transition: all .35s;
    background-color: var(--primary-color);
    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:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    transition: all .35s;
}

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

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

/* ========= 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: fixed;
}

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

.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;

}

/*--------------------------------------------------------------
# Global Header End
--------------------------------------------------------------*/

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

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 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: #003849;
    background: linear-gradient(180deg, rgba(0, 56, 73, .5) 80%, rgba(221, 199, 128, .5) 100%);
    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: 4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 8px #000000;
}

.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(--secondary-color);
    font-size: 1.25rem;
    margin-top: 1rem;
}

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

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

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

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

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

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

/*----------------------- Hero End------------------------------*/
/*----------------------- About Start------------------------------*/
#about {
    padding: 80px 0;
}

.header_title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 2.5rem;
}

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

.p_text {
    font-size: 18px;
}

.p_text,
.quote {
    margin-bottom: 2rem;
}

.quote {
    font-style: italic;
    font-weight: 700;
    color: #000000;
    font-size: 22px;
}

.about_img {
    float: right;
    height: 100%;
}

.about_img img {
    /* max-width: 508px; */
    height: 100%;
}

.stats-container {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 30px auto;
    max-width: 1000px;
    padding-inline: 16px;
}

.stats-container .stat {
    background: #D20062;
    padding: 24px;
    text-align: center;
    color: #FFD0EC;
    border-radius: 25px;
}

.stats-container .stat .odometer {
    font-size: 50px;
    font-weight: bold;
    display: inline-block;
}

.stats-container .stat .type {
    font-size: 20px;
}

.odometer.plus {
    position: relative;
}

.odometer.plus::after {
    content: "+";
    position: absolute;
    top: 0;
    right: -16px;
    font-size: 20px;
}

.achievment {
    margin-top: 2.5rem;
}

.counter_stats {
    background-color: var(--ternary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    height: 100%;
    border-radius: 10px;
}

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

.counter_stats img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: auto;
}

.counter_stats h3 {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--white);
}

.counter_stats .counter {
    padding-top: 1rem;
    padding-bottom: .8rem;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

/*----------------------- About End------------------------------*/
/*----------------------- Expertise Start------------------------------*/
#expertise {
    padding: 80px 0;
    background: #002E3E;
    background: linear-gradient(178deg, rgba(0, 46, 62, 1) 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;
}
.ser_expertise .card .card-img-top{
	max-height:198px;
	object-fit:cover;
}
.card-body .cta {
    margin-left: 0;
}

/*----------------------- Expertise End------------------------------*/
/*----------------------- Advantage Start------------------------------*/
#advantage {
    padding: 80px 0;

}

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

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

.fa_section .card {
    border-right: 2px solid #dbdbdb;
    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:  10px;
    width: 90px;
	height:90px;
    margin: auto;
    margin-bottom: 2rem;
    border-radius: 5px;
    margin-top: 1rem;
	display:flex;
	justify-content:center;
	align-items:center;
}

.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 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: 0rem;
}

.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 h4 a{
	    color: #00141a;
    font-style: italic;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #dbc988;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 18px;
    text-decoration: none;
	border: 1px solid #00374826;
}
.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 {
    padding: 80px 0;
    background-color: #f5ecd1;
    position: relative;
}

#testimonial .heading_wrapper .header_title {
    color: black;
}

.profile-img-box {
    text-align: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #e0d4af;
    box-shadow: 0px 1px 3px #000;
    margin: 5px 8px;
}

.testimonial-text {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 2rem !important;
}

.testimonial-name {
    font-weight: 600;
    color: #1a2e35;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #515151;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-card {
    padding-bottom: 1.5rem;
}

#testimonail_Slider .carousel-indicators {
    margin-left: 25.5%;
    list-style: none;
    margin-bottom: 0;
    justify-content: flex-start;
}

#testimonail_Slider .carousel-indicators li {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-left: 4px;
    margin-right: 4px;
    opacity: 1;
}

#testimonail_Slider .carousel-indicators li:nth-child(1) {
    background-color: #221a01;
}

#testimonail_Slider .carousel-indicators li:nth-child(2) {
    background-color: #95740d;
}

#testimonail_Slider .carousel-indicators li:nth-child(3) {
    background-color: #072128;
}

/*----------------------- Testimonial End------------------------------*/
/*----------------------- Blog Start------------------------------*/
#blog {
    padding: 80px 0;
    position: relative;
    background-color: #ffffff;
}

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

#blog .blog-card .card-body {
    text-align: center;
}

#blog .blog-card .card-body .blog-date {
    margin-bottom: .8rem;
    font-weight: 600;
    color: #c19e4b;
}

#blog .blog-card .card-body .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    /* line-height: 1.4; */
    flex-grow: 1;
    line-height: 28px;
    height: 55px;
}

.blog-text {
    color: #757575;
    text-overflow: ellipsis;
    height: 90px;
    overflow: hidden;
    font-size: 14px;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}

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

.blog-card .card-image {
    object-fit: cover;
    max-height: 220px;
    height: 220px;
    border-radius: 1rem;
}

#blog .blog-card .card-body .cta {
    margin-bottom: 1rem;
}

/*----------------------- Blog End------------------------------*/
/*----------------------- FAQ Start------------------------------*/
#faq {
    padding: 0;
}

.card-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-color: transparent !important;
}

.card-header button {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    padding-right: 0;
    text-decoration: none !important;
    color: var(--primary-color);
    font-weight: 500;
}

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

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

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

.accordion .card-body {
    padding-left: 0;
}

.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 grey;
}

.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;
}

#faq .col-xl-6:first-child {
    background-color: #f5ecd1;
    padding-left: 18rem;
    padding-top: 80px;
}

#faq .col-xl-6:last-child {
    padding-left: 0;
    padding-right: 0;
}
.faq_img{
	height:100%;
}
.faq_img img {
    width: 100%;
	height:100%;
}

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

#faq .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: 22px;
    width: 22px;
    padding: 1px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    position: absolute;
    right: 0;
    opacity: 1;
}

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

.accordion button.collapsed .plus_icon {
    display: flex;
    height: 22px;
    width: 22px;
    padding: 1px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    position: absolute;
    right: 0;
    opacity: 1;
}

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

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

.accordion .card {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
}




.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); */
}

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, #003849 0%, #003849 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%);
    padding: 20px 30px;
}

.tab_content {
    padding: 20px;
    height: 100%;
    display: none;
    border-radius: 20px !important;
}

.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: 10px;
    }

    .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%);
    margin:0 auto !important;
}

#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------------------------------*/
.footer {
    padding: 80px 0;
    background-color: var(--primary-color);
    position: relative;
}

.footer {
    background-color: #00202e;
    color: #ffffff;
    padding: 80px 0 0px;
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer_text {
    padding-right: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo img {
    width: 235px;
}

.footer p,
.footer a {
    color: #dcdcdc;
    font-size: 1rem;
    text-decoration: none;
}

.footer a:hover {
    color: #e6dec8;

}

.footer h5 {
    color: #e6dec8;
    font-weight: 600;
    margin-bottom: 20px;

}

.footer .social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    background-color: #00141d;
    color: white;
    font-size: 1.25rem;
    transition: all 0.5s ease;
}

.footer .social-icons a:hover,
.footer .social-icons a:focus {
    color: var(--primary-color);
    background: #fefefe;
    border-color: var(--primary-color);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.footer .bottom-bar {
    background-color: #efe6d0;
    color: #111;
    font-size: 13px;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
}

.footer .bottom-bar a {
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.footer .bottom-bar a:hover {
    padding-left: .5rem;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 13px;
}
.footer ul li span{
    color:#f4edd3;
}
.footer .contact-info i {
    margin-right: 8px;
    color: #ffc107;
}

.footer-logo {
    padding-top: 2.5rem;
}

.f_box_1 {
    position: relative;
    height: 100%;
}
.f_box_1 h2{
    font-size:1.5rem;
}
.f_box_1::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    right: 0;
    background: #052534;
    background: linear-gradient(180deg, rgba(5, 37, 52, 1) 0%, rgba(79, 106, 116, 1) 50%);
    top: 0;
}

.f_box_2,
.f_box_3,
.f_box_4 {
    padding-left: 0rem;
    padding-top: 1.25rem;
}

.contact-info .icon_box {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info li {
    display: flex;
    gap: 1.25rem;
}

.mobile_social {
    display: none;
}

.f_botoom_nav {
    align-items: center;
}

/*----------------------- Footer End------------------------------*/
/*----------------------- Service Start------------------------------*/




/*----------------------
#. Banner
----------------------*/
.entry-banner {
    background: #f8f8f8;
    position: relative;
}

.entry-banner:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 43, 59, 0.7);
    z-index: 1;
}

.entry-banner .entry-banner-content {
    padding: 200px 0 145px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.entry-banner .entry-banner-content h1 {
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 42px;
    text-shadow: 4px 4px 8px #000;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.entry-banner .entry-banner-content h1 a {
    color: #ffffff;
}

.entry-banner .entry-banner-content h1 a:hover {
    color: #646464;
}

.breadcrumb-area .entry-breadcrumb span a {
    color: #ffffff;
}

.breadcrumb-area .entry-breadcrumb span a:hover {
    color: #ffdc44;
}

.breadcrumb-area .entry-breadcrumb .current-item {
    color: #ffdc44;
}

.entry-banner .entry-breadcrumb .delimiter {
    color: #ffffff;
    padding: 0 7px;
}

.entry-banner .entry-breadcrumb .dvdr {
    color: #ffffff;
}

@media (max-width: 991px) {
    .entry-banner .entry-banner-content {
        padding: 160px 0px 80px !important;
    }

    .entry-banner .entry-banner-content h1 {
        font-size: 36px;
    }
}

/*transprant banner*/
.trheader .entry-banner .entry-banner-content {
    padding-top: 180px;
}

@media (max-width: 992px) {
    .trheader .entry-banner .entry-banner-content {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    .trheader .entry-banner .entry-banner-content {
        padding-top: 40px;
    }
}

/*breadcrumb*/
.breadcrumb-trail ul.trail-items {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-trail ul.trail-items li {
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding-right: 16px;
    margin-right: 12px;
    color: #14287b;
}

.breadcrumb-trail ul.trail-items li:after {
    position: absolute;
    content: "-";
    right: 0;
    top: 0;
}

.breadcrumb-trail ul.trail-items li:last-child:after {
    display: none;
}

.breadcrumb-trail ul.trail-items li a {
    color: #14287b;
}

.breadcrumb-trail ul.trail-items li a:hover {
    color: #646464;
}

.breadcrumb-trail ul.trail-items li>span {
    color: #646464;
}

.banner-text {
    line-height: 1.4;
}

.site-main .entry-breadcrumb .current {
    color: #14287b;
}

/*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;
}

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

 .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;
    flex:50%;
}
.card_wrapper .event-card .card-body{
    flex:50%;
}
.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;
}

.team_section {
    background: #002E3E;
    background: linear-gradient(180deg, rgba(0, 46, 62, 1) 50%, rgba(0, 0, 2, 1) 80%) !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(--primary-color);
}

.showBtn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);

}


/* ===================== 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-color: #f5f5f5;
}

.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;
}

.filterDiv.show {
    display: block;
}

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

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

.lte-rental-item .lte-photo,
.lte-rental-item .lte-photo {
    padding: 0;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;

}

.lte-rental-item .lte-photo img {
    transition: all 0.3s ease !important;
	height:234px;
}

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

.lte-rental-item .lte-rental-inner {
    position: relative;
}

.lte-rental-item .lte-rental-inner .lte-excerpt{
	height:180px;

}
.lte-rental-item .lte-rental-inner .badge-primary {
    background-color: #dbc98891;
    color: #003748;
    margin-bottom: .5rem;
    border-radius: 2;
    letter-spacing: .5px;
    padding: 7px 12px;
    border-radius: 50px;
    border: 1px solid #00374826;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.lte-rental-item .lte-header {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: var(--primary-color);
}

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

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

.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(--primary-color);
}


.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;
}

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

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

#myBtnContainer .btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.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;
}

/* =========================  Fleet Details ===================== */
#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: 100%;
}

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

#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;
}
#serviceExampleIndicators .carousel-indicators{
	display:none;
}
#serviceExampleIndicators .carousel-item img{
	max-height:520px;
}
.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-infos {
    max-width: 600px;
}

.contact-infos small {
    font-size: 1.25rem;
    padding: 6px 12px;
    background: #dbc988 !important;
    color: #003748 !important;
    border-radius: 8px;
    border: 1px solid #048eb95c;
    margin-bottom: .5rem;
    display: inline-block;
}

.contact-infos h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-infos .c_text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-infos p {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 1rem;
    align-items: center;
}


.contact-section {
    padding: 60px 0;
}

.contact-infos p {
    color: #6c757d;
}

.contact-icon {
    color: #b17435;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-infos p i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-infos p a {
    font-size: 20px;
    color: #6c757d;
    font-weight: 600;
}

.fleet__image {
    width: 100%;
}

.team_section .quote span,
.team_section .quote span {
    position: relative;
    display: inline-block;
}

.team_section .quote span:last-child {
    text-align: right;
    position: relative;
    bottom: -30px;
}

.team_section .quote span:first-child {
    position: relative;
    left: 0;
    text-align: left;
}

.card_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.event-title {
    font-size: 1.5rem;
}

.content-wrapper {
    min-height: 100%;
    position: relative;
}

.get-in-touch {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    background: #fbfbfb;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.get-in-touch .title {
    text-align: left;
    /* font-family: Raleway, sans-serif; */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 0;
    color: #003849;
}

.contact-form .form-field {
    position: relative;
    margin: 32px 0;
}

.contact-form .input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    border-color: #000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background: #fbfbfb;
}

.contact-form .input-text:focus {
    outline: none;
}

.contact-form .input-text:focus+.label,
.contact-form .input-text.not-empty+.label {
    transform: translateY(-24px);
}

.contact-form .label {
    position: absolute;
    left: 20px;
    bottom: 11px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #888;
    cursor: text;
    transition: transform 0.2s ease-in-out;
}

input#message {
    height: 90px;
}

.contact-form .submit-btn {
    display: inline-block;
    background-color: #003849;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 24px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.contact-form .submit-btn:hover {}

.note {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-family: Lusitana, serif;
    font-size: 16px;
    line-height: 21px;
}

.note .link {
    color: #888;
    text-decoration: none;
}

.note .link:hover {
    text-decoration: underline;
}


/* ============ 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-card .p-4 p a{
    color:#003748;
}

.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;
    margin-bottom: 5px;
    display: inline-block;
}

.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;
}

.list-unstyled {
    margin-bottom: 1.25rem !important;
}

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

.blog_main .sidebar .recent-post img {
    max-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.1rem;
    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 {
    margin-bottom: .5rem;
}

.list-unstyled li a {
    color: #212529;
    text-decoration: none;
    margin-bottom: .5rem;
}

.list-unstyled li a:hover {
    color: var(--primary-color);
}

.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: 100%;
    /* margin: auto; */
    text-align: left;
    margin-top: 1rem;
    font-size: 2.25rem;
}
#blog .heading_wrapper{
    margin-bottom:1.5rem;
}
.blog_details .post_meta {
    text-align: left;
}

.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 p ,.blog_content_wraqpper span{
    font-size: 1rem;
}
.blog_content_wraqpper h2,.blog_content_wraqpper h2 span{
	font-size:1.5rem;
}
.blog_content_wraqpper ul{
	padding-left:2rem;
}
.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(--secondary-color) !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;
    }
}

/*******************************/
 #special_events {
            padding: 60px 0;
            position: relative;
            background-repeat: no-repeat;
            width: 100%;
            background-size: cover;
            background-attachment: fixed;
        }

        #special_events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            border-radius: 15px;
        }

        #special_events .container {
            position: relative;
            z-index: 1;
        }

        .sp_wrap {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin-bottom: 30px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 400px;
            cursor: pointer;
        }

        .sp_wrap:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }

        .sp_wrap figure {
            position: relative;
            margin: 0;
            overflow: hidden;
            height: 100%;
            border-radius: 15px;
        }

        .sp_wrap figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(0.8);
        }

        .sp_wrap:hover figure img {
            transform: scale(1.15);
            filter: brightness(0.6);
        }

        .sp_wrap figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            color: white;
            padding: 70px 25px 60px;
            transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            opacity: 0.8;
        }

        .sp_wrap:hover figcaption {
            transform: translateY(0);
            opacity: 1;
        }

        .sp_wrap figcaption h2 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
        }

        .sp_wrap:hover figcaption h2 {
            transform: translateY(0);
        }

        .sp_wrap figcaption .p_text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 35px;
            opacity: 0.9;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.2s;
        }

        .sp_wrap:hover figcaption .p_text {
            transform: translateY(0);
        }

   
        .sp_wrap:hover .cta {
            transform: translateY(0);
        }


        /* Sparkle effect on hover */
        .sp_wrap::after {
            content: '✨';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            opacity: 0;
            transform: scale(0) rotate(180deg);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 3;
        }

        .sp_wrap:hover::after {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        /* Glow effect */
        .sp_wrap::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
            border-radius: 17px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .sp_wrap:hover::before {
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sp_wrap {
                height: 280px;
            }
            
            .sp_wrap figcaption h2 {
                font-size: 1.3rem;
            }
            
            .sp_wrap figcaption .p_text {
                font-size: 0.9rem;
            }
        }

        /* Loading animation */
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .sp_wrap.loading {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 1000px 100%;
            animation: shimmer 2s infinite;
        }
        #special_events .cta{
            padding-left: 0;
            margin-left: 0;
        }
        
        .f_size{
font-size: 3rem;
            font-weight: 700;
        }
        .ads {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 0;
        }

        .ads .eligibil{
            /* padding: 80px; */
            /* background: #ffffff; */
            border-radius: 20px;
        }
               .ads .eligibil ul{
                padding: 0 0 0 20px;
               }
                .ads.eligibil ul h4{
                    font-size: 35px;
                    margin-bottom: 25px;
                }

                .ads .eligibil li{
                    padding:10px 0;
                    font-size: 25px;
                }







        .coupon-card{
    /* background: linear-gradient(135deg, #003849, #ddc780); */
    color: #fff;
    text-align: center;
    padding: 40px 70px;
    border-radius: 15px;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
    position: relative;
    background-size: cover;
}
.logo{
    width: 80px;
    border-radius: 8px;
    margin-bottom: 20px;

}
.coupon-card h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;

}
.coupon-card p{
    font-size: 15px;

}
.coupon-row{
    display: flex;
    align-items: center;
    margin: 25px auto;
    width: fit-content;

}
#cpnCode{
    border: 1px dashed #fff;
    padding: 10px 20px;
    border-right: 0;
    background: #251c008a;
}
#cpnBtn{
    border: 1px solid #fff;
    background: #000000;
    padding: 10px 20px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
}
.circle1, .circle2{
    background: #fff4d1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.circle1{
    left: -25px;
}
.circle2{
    right: -25px;
}
.coupon-card h3 {
    font-size: 110px;
    font-weight: 800;
    margin: 50px 0 30px 0;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}
.coupon-card p{
    font-size: 20px;
    letter-spacing: 3px;
}
.no-gutters{
    margin-bottom: 30px;
}



.autometic .about_img img {
    background: #fff4d1;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    border: 4px solid #f1bf3f;
}
.autometic.tracking_sec .care_text {
    padding: 0 2.5rem;
}
.autometic .tracking_sec .care_text .title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.autometic .no-gutters {
    margin-right: 0;
    margin-left: 0;
    border: 1px dashed #f3de9c;
    padding: 30px;
    border-radius: 12px;
}
.trams{
    padding: 80px 0;
}
.trams ul li {
    margin: 20px;
}
.ads {
    background: #fff4d1;
}
.coupon-card img {
    width: 50%;
}
.tabs_wrapper.tab_container{
    width:90% !important;
}

.pagination-wrapper .page-item.active .page-link{
    background-color: #003748!important;
    border-color: #003748!important;
    color:#ffffff!important;
}

.pagination-wrapper .page-link:hover{
    color: #fff!important;
    background-color: #003748!important;
}
.pagination-wrapper .page-link{
    color:#003748!important;
}

.social-share{
    padding-left:1rem;
}
.social-share a{
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.25rem;
    transition: all 0.5s ease;
    border:1px solid var(--primary-color);
}
.social-share a:hover, .social-share a:focus {
    color: var(--primary-color);
    background: #fefefe;
    border-color: var(--primary-color);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    border:1px solid var(--primary-color);
}
.content-section.mt-4.aos-init.aos-animate h3 {
    margin-top: 20px;
}
.fleet__wrap .fleet__title{
	margin-top:0;
	text-align:left;
	font-size:28px;
	font-weight:600;
	text-decoration:none;
}
.btn-wraper_review {
	margin-left:0;
	text-align:center;
	margin-top:2rem;
}