/********** Template CSS **********/
:root {
    --primary: #ffffff;
    --secondary: #707276;
    --light: #C1C1C1;
    --dark: #0A0D14;
    --red: #FF4625;
}
body{
    font-family: "Barlow Condensed", sans-serif;   
    color: var(--primary);
    background: #000;
}
.bg_color {
    background: #EFF3F7;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    color: var(--primary);
     font-variant: small-caps;
}
.btn-primary:hover{
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner .spinner-grow {
    color: var(--red) !important;
}

/*** Common CSS ***/
.container{
    max-width: 1324px;
    padding-left: 12px;
    padding-right: 12px;
}
.mt-80{
    margin-top: 80px;
}
.mt-24{
    margin-top: 24px;
}
.mt-160{
    margin-top: 160px;
}
img{
    max-width: 100%;
    border-radius: 4px;
}
a{
    color: var(--primary);
}
a:hover{
    color: var(--red);
}
.accordion .accordion-item {
    border-radius: 32px;
    margin: 20px 0 0;
    border: 1px solid #E4E4E4;
    padding: 25px 40px;
}
.accordion .accordion-item .accordion-button {
    background: transparent;
    font-size: 24px;
    color: var(--primary);
    padding: 0;
    box-shadow: none;
    font-weight: 600;
    padding-right: 20px;
}
.accordion .accordion-item .accordion-button:not(.collapsed){
    box-shadow: none;
}
.accordion .accordion-item .accordion-body{
    padding: 20px 0 0 0;
}
.accordion-button:not(.collapsed)::after {
    border: none;
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--primary);
    background-image: none;
    position: absolute;
    right: 0;
    font-size: 20px;
        height: auto;
    width: auto;
}
.accordion-button::after{
    border: none;
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--primary);
    background-image: none;
    position: absolute;
    right: 0;
    font-size: 30px;
        height: auto;
    width: auto;
}
.form_label {
    font-size: 24px;
    font-weight: 500;
}
.form-control, .form_control_outer label {
    background: #000000;
    border: 1px solid #555555;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 20px;
    color: #fff;
    font-family: 'Futura PT Book';
}
.form_control_outer label{
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
}
.form-control::placeholder{
    color: #c1c1c1;
}

.form_control_outer label:hover {
    border-color: #FF4625;
}
.form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: #555555;
}
div.required .col-form-label:after {
    content: '* ';
    color: var(--red);
    margin: 0 5px;
}

@media (max-width:991px){
    .mt-80 {
        margin-top: 50px;
    }
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.buttons .btn {
    background: #FF4625;
    border: none;
    font-size: 24px;
    border-radius: 4px;
    padding: 12px 30px;
}
.buttons .btn:hover {
    background: var(--primary);
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn-primary{
    color: var(--primary);
/*    background: var(--red);*/
    border: none;
}
.btn-check:focus+.btn-primary, .btn-primary:focus{
    color: var(--dark);
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}
.btn-check:checked+.btn-primary:focus, .btn-check:active+.btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show>.btn-primary.dropdown-toggle:focus{
    box-shadow: none;
}

/*** Navbar ***/
nav.navbar {
    top: 0;
    transition: .5s;
    position: absolute;
    width: 100%;
    background: transparent !important;
    z-index: 1;
}
.navbar .navbar-nav .nav-link img {
    padding-left: 7px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--secondary);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
.slider_outer{
    position: relative;
}
.slider_content {
    position: absolute;
    bottom: 0;
    padding-bottom: 50px;
}
.galley_page .slider_content,
.contact_page .slider_content,
.project_page .slider_content {
    position: unset;
    margin-top: 160px;
    padding-bottom: 0;
}
.carousel-caption {
    top: 100px;
    left: 0;
    right: 0;
    display: flex;
    text-align: start;
    z-index: 1;
}
.owl-nav div {
    opacity: 1;
    color: var(--light);
}
.owl-nav div.disabled {
    opacity: 0;
}
.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}
.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}
.navbar .header_menu .nav-link {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    color: var(--primary);
    margin: 0 12px;
    position: relative;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    font-variant: small-caps;
}
.navbar .header_menu .nav-link.active::after {
    content: "";
    background: url(../img/menu.png) no-repeat;
    width: 100%;
    display: block;
    position: absolute;
    height: 6px;
}
.navbar .btn.feature-btn{
    font-size: 20px;
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}
.navbar-brand img {
    max-width: 100px;
}

/* Title */
.main_title {
    font-size: 24px;
    font-variant: small-caps;
}
.sub_title {
    font-size: 20px;
    margin-bottom: 45px;
    color: var(--light);
    font-family: 'Futura PT Book';
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
}
.slider_title {
    font-size: 84px;
    font-variant: small-caps;
    line-height: 1;
}
.slider_title span{
    color: var(--red);
}
@media (max-width:991px){
    .sub_title{
        margin-bottom: 30px;
        font-size: 18px;
    }
    .slider_title {
        font-size: 60px;
    }
}

/* Owl Nav Button */
.owl-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 40px;
    color: var(--light);
}

/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 66px;
    height: 66px;
    margin: auto;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}
.testimonial-item {
    max-width: 1070px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px 20px;
    text-align: center;
}
.testimonial-item p {
    font-size: 16px;
    max-width: 500px;
    margin: auto;
    margin-bottom: 40px;
}
.testimonial-item h5{
    font-weight: bold;
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    width: 8px;
    height: 8px;
    background: #87C3E7;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
}
.owl-dot.active {
    background: #26384E;
}


/*** Footer ***/
.footer {
    color: #fff;
    padding: 25px 0;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer_social a.btn {
    padding: 0;
    border: none;
    margin: 0 20px 0 0;
}
.footer .row{
    display: flex;
    align-items: center;
}
.download_title{
    font-weight: 600;
}
.contact_footer {
    text-align: right;
}
.contact_footer a {
    font-size: 20px;
    font-weight: 500;
}
.footer .copyright{
    text-align: right;
}
.footer .copyright a {
    font-size: 16px;
    color: var(--light);
    font-weight: 400;
    text-transform: uppercase;
}
.footer .copyright a:hover {
    color: var(--primary);
}


/*** Slider ***/
.slide_title {
    font-size: 70px;
}
.slide_desc{
    font-size: 16px;
}
.btn.feature-btn {
    padding: 0;
    font-size: 24px;
    border-radius: 12px;
    font-weight: 500;
    background: transparent;
    border: none;
    font-variant: small-caps;
}

.btn.feature-btn:hover,
.btn.feature-btn:focus {
    color: var(--red);
}
#navbarCollapse{
    justify-content: center;
}
.app_btn_outer, .google_btn_outer {
    display: inline-block;
    margin-right: 15px;
}

/*** About ***/
.about_outer {
    margin-bottom: 30px;
}
.download_app{
    text-align: center;
    max-width: 850px;
    margin: auto;
    padding: 0 20px;
}
.about_main {
    position: relative;
}
.project_detail {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 24px 12px 24px;
    box-shadow: inset 0 0 50px 50px #000, 0 0 50px 50px #000;
}

.about_content_subtitle span + span:before {
    content: "";
    background: var(--red);
    height: 4px;
    width: 4px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin: 0 6px;
}
.what_we .our_story_img {
    margin-bottom: 24px;
}
.about_us_section .about_us_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 24px 12px 24px;
    box-shadow: inset 0 0 50px 50px #000, 0 0 50px 50px #000;
}
.about_us_section .movie_outer{
    padding-bottom: 60px;
}
@media (min-width: 992px){
    .about_us_section img {
        width: auto !important;
    }
    .about2 .movie_img img {
        margin: auto;
    }
    .about2 .about_us_content {
        max-width: 340px;
        margin: auto;
        left: 0;
        right: 0;
    }
    .about3 .about_us_content {
        max-width: 340px;
        margin: auto;
        right: 0;
    }
    .about3 .movie_img img {
        margin-right: 0;
        margin-left: auto;
    }
}

/* Fleet Page */
.fleet_gallery_bg, .about_us_main {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 23%, rgba(30, 38, 35, 1) 95%);
    padding: 80px 0;
    border-radius: 20px;
}

/* contact popup */

#contactForm {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.contactForm_inner{
    max-width: 900px;
    width: 100%;
    margin: auto;
    padding: 30px 50px;
    position: relative;
}
body.active:before {
    content: "";
    background: #000000;
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
}
.contactform_close {
    cursor: pointer;
    font-size: 50px;
    position: absolute;
    line-height: 30px;
    right: 0;
    top: 50px;
    vertical-align: top;
    font-style: normal;
}
body.active nav.navbar {
    z-index: 0;
}
.form_control_outer input::placeholder {
    color: #fff;
}
.form-control:focus{
    color: #fff;
}
body.active {
    overflow: hidden;
}
#form-contact {
    margin-top: 30px;
}

/* gallery Page */
.gallery {
    list-style: none;
}
.mfp-gallery .dots button {
    padding: 0;
    border: none;
    background: transparent;
    width: 140px;
}
.mfp-pager .dots li{
    border-radius: 4px;
}
.mfp-pager .dots li.active {
    border: 1px solid var(--red);
}
/*.mfp-pager .arrow_prev, .mfp-pager .arrow_next {
    display: none;
}*/
.mfp-gallery img.mfp-img {
    width: 100%;
    max-width: 960px;
    margin-bottom: 40px;
    padding-top: 0;
}
.mfp-counter{
    display: none;
}
.mfp-gallery .mfp-close {
    opacity: 1;
    font-size: 0;
    background: url(../img/close.svg) no-repeat right;
    max-width: 1100px;
    margin: 30px auto -30px auto;
    position: unset;
    text-align: right;
}
.mfp-bg{
    opacity: .9;
}
/*.gallery li { float: left; margin: 0 2px; }*/

/* pager */
.mfp-bottom-bar{
    position: unset;
}
.mfp-figure:after{
    background: transparent;
}
/*.mfp-pager { width: 100%; position: absolute; z-index: 20; top: 0px; left: 0; right: 0; margin: 0 auto; text-align: center; overflow: hidden; }*/
.mfp-pager::after { clear: both; display: block; content: ''; }
.mfp-pager li { padding: 0; margin: 0; display: inline-block; }
.mfp-pager .arrow_next,
/*.mfp-pager .arrow_prev { display: inline-block; }*/
.mfp-pager .arrow_next button,
.mfp-pager .arrow_prev button { vertical-align: middle; border: none; }
.mfp-pager li .arrow { position: relative; top: 2px; padding: 0; margin: 0; display: inline-block; background: url(/temas/claraboia/html/img/sprite.png) no-repeat; width: 18px; height: 11px; text-indent: -9999px; border: none; cursor: pointer; position: relative; }
.mfp-pager li .prev { background-position: -20px -22px; }
.mfp-pager li .next { background-position: -20px -40px; }
.mfp-pager .dots { vertical-align: top; text-align: center; display: inline-block; margin: 0 8px; position: relative; }
.mfp-pager .dots li { display: inline-block; margin: 10px; }
.mfp-pager .dots li a { display: block; width: 15px; height: 15px; background: #666; text-indent: -9999px; padding: 5px; margin: 0; cursor: pointer; border: none; }
.mfp-pager .dots li.active { border: 2px solid red; }
.galley_page .mfp-gallery .mfp-arrow:before, 
.galley_page .mfp-gallery .mfp-arrow:after {
    display: none;
}
.galley_page .mfp-gallery .mfp-pager .arrow_prev button,
.galley_page .mfp-gallery .mfp-pager .arrow_next button{
    top: 30%;
}
.galley_page .mfp-gallery .arrow_prev button {
    background: url('../img/chevron-left.svg') no-repeat;
    left: 10%;
}
.galley_page .mfp-gallery .arrow_next button {
    background: url('../img/chevron-right.svg') no-repeat;
    right: 10%;
}

/*** Product ***/
.product_bg {
    position: relative;
}
.product_bg:before {
    content: "";
    width: 100%;
    height: 80px;
    background: #fff;
    position: absolute;
    top: 0;
}
.product_outer{
    color: #fff;
    background: var(--primary);
    border-radius: 70px;
    overflow: hidden;
    position: relative;
}
.product_desc h1{
    color: #fff;
}
.products.product1 >  div {
    margin-top: -100px;
}
.products + .products > div {
    margin-top: -200px;
}
.products.product4 > div {
    margin-bottom: -100px;
}

/* About Us Page */

.about_page .about_us_outer .movie_img {
    display: inline-block;
    width: 26%;
    vertical-align: top;
}
.about_page .about_us_content {
    display: inline-block;
    width: 73%;
    padding-left: 20px;
}
.about_content_title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}
.about_content_subtitle {
    font-size: 18px;
    color: #C1C1C1; /* Setting job titles to gray */
    position: relative;
    display: inline-block;
}
.about_page .about_content_subtitle{
    margin-bottom: 20px;
}
.about_page .about_content_subtitle:after {
    content: "";
    background: url(../img/about.png) no-repeat;
    width: 100%;
    display: block;
    position: absolute;
    height: 6px;
}
.about_content_description {
    font-size: 20px;
    color: var(--light);
}
.about_page .about_us_content {
    padding-left: 20px;
    width: 59%;
}
.movie_outer {
    margin-bottom: 24px;
    position: relative;
}
@media (max-width: 1440px){
    .slide_title {
        font-size: 50px;
    }
    .mfp-gallery img.mfp-img{
        max-width: 700px;
    }
    .galley_page .mfp-gallery .arrow_prev button{
        left: 15%;
    }
    .galley_page .mfp-gallery .arrow_next button{
        right: 15%;
    }
}
@media (max-width: 1199px){
    .app_btn_outer, .google_btn_outer {
        max-width: 200px;
    }
    .slide_desc {
        margin: 30px 0 !important;
    }
    .slide_title {
        font-size: 40px;
    }
    .carousel-caption{
        top: 50px;
    }
    .mfp-gallery img.mfp-img {
        max-width: max-content;
    }
    .galley_page .mfp-gallery .mfp-pager .arrow_prev button,
    .galley_page .mfp-gallery .mfp-pager .arrow_next button{
        top: 30%;
    }
}

@media (max-width: 991px){
    .slide_title {
        font-size: 24px;
    }
    .products + .products > div {
        margin-top: -100px;
    }
    .products.product1 >  div {
         margin-top: 0; 
    }
    .products.product4 > div{
        margin-bottom: 0;
    }
    .mt-160{
        margin-top: 80px;
    }
    .footer .app_btn_outer, .footer .google_btn_outer{
        max-width: 130px;
    }
    #navbarCollapse {
        justify-content: center;
        position: absolute;
        width: 100%;
        left: 0;
        padding: 20px;
    }
    #navbarCollapse .header_menu{
        background: rgba(10 13 20 / 100%);
        padding: 20px;
    }
    .navbar .header_menu .nav-link,
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }
    .header_menu .feature-btn-outer {
        margin: 0 12px;
    }
    button.meu_icon {
        background: var(--primary);
        border: none;
        padding: 5px 10px;
    }
    .navbar-dark .navbar-toggler{
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .fleet_gallery_bg, .about_us_main{
        padding: 50px 0;
    }
    .our_story_content,
    .our_story_img {
        text-align: center;
    }
    .our_fleet .about_us_content,
    .our_story .our_story_content {
        margin-top: 30px;
    }
    .what_we_img >div {
        margin: auto;
    }
    .about_page .about_us_outer .movie_img{
        width: 40%;
    }
    .about_page .about_us_content {
        padding-left: 20px;
        width: 59%;
    }
    .about_content_description {
        font-size: 18px;
    }
    .mfp-img-mobile .mfp-bottom-bar{
        display: none;
    }
    .owl-nav div{
        font-size: 30px;
    }
    .mfp-gallery .mfp-close{
        margin: 30px auto;
    }
    .contactform_close{
        right: 30px;
        top: 30px;
    }
}

@media (max-width: 767px){
    .carousel-caption {
        top: 30px;
    }
    .slide_desc {
        margin: 20px 0 !important;
    }
    .app_btn_outer, .google_btn_outer {
        max-width: 150px;
    }
    .about_main {
        margin-top: 0;
    }
    .about_outer{
        padding: 50px 20px;
    }
    .about_outer .feature-btn-outer {
        margin-top: 30px !important;
    }
    .product_desc h1{
        font-size: 20px;
    }
    .products + .products > div {
        margin-top: 0;
    }
    .product_outer{
        padding: 30px 20px;
    }
    .product_desc .feature-btn-outer {
        margin-top: 20px !important;
    }
    .download_app p {
        margin: 30px 0 !important;
    }
    .about_page .about_us_content,
    .about_page .about_us_outer .movie_img {
        width: 100%;
    }
    .about_page .about_us_content{
        padding: 20px 0 0 0;
    }
}

@media (max-width: 575px){
    .slider_content{
        padding-bottom: 20px;
    }
    .slider_title {
        font-size: 40px;
    }
    .app_btn_outer, .google_btn_outer {
        max-width: 120px;
        margin-right: 5px;
    }
    .carousel-caption {
        position: unset;
        text-align: center;
    }
    .about_outer {
        padding: 30px 20px;
    }
    .about_outer h1 {
        font-size: 20px;
    }
    .product_desc {
        text-align: center;
    }
    .faqs_outer .accordion-header button {
        font-size: 20px !important;
    }
    .faqs_outer .accordion .accordion-item{
        padding: 20px;
    }
    .products.product3 {
        margin-top: 50px;
    }
    .footer .contact_footer {
        display: none;
    }
    .footer .col-sm-3 a {
        justify-content: center;
    }
    .footer .copyright{
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .gallery_outer .col-sm-6,
    .recent_project .col-sm-6 {
        width: 50%;
    }
}

@media (max-width: 480px){
    .slider_content {
        padding-bottom: 0px;
    }
    .slider_title {
        font-size: 24px;
    }
    .gallery_outer .col-sm-6,
    .recent_project .col-sm-6 {
        width: 100%;
        text-align: center;
    }
    .navbar-brand img {
        max-width: 70px;
    }
}

/*** About Page Specific Styles ***/
.our_story_content_title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.our_story {
    position: relative;
}

.our_story_img img {
    width: 100%;
    border-radius: 10px;
}

.what_we_img > div {
    margin-bottom: 20px;
}

.what_we_content {
    padding-right: 30px;
}

.about_us_page_content .movie_outer {
    display: flex;
    margin-bottom: 40px;
}

.about_us_page_content .movie_img {
    width: 26%;
    margin-right: 30px;
}

.about_us_page_content .about_us_content {
    flex: 1;
}

.about_us_main {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 23%, rgba(30, 38, 35, 1) 95%);
    padding: 80px 0;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .our_story_content_title {
        font-size: 28px;
        margin-top: 20px;
    }
    
    .about_us_page_content .movie_outer {
        flex-direction: column;
    }
    
    .about_us_page_content .movie_img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .what_we_content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/*** Fleet Categories Section ***/
.fleet-categories-section {
    margin-top: 80px;
    padding-bottom: 40px;
}

.fleet-categories-section .main_title span {
    color: var(--red);
}

.fleet-category-cards {
    margin-top: 40px;
}

.fleet-card {
    position: relative;
    background-color: #111111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.fleet-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.fleet-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fleet-card:hover .fleet-card-overlay {
    opacity: 1;
}

.fleet-card-overlay .btn {
    background: var(--red);
    border: none;
    font-size: 16px;
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fleet-card-overlay .btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(0);
}

.fleet-card-content {
    padding: 20px;
}

.fleet-card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding-bottom: 12px;
}

.fleet-card-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--red);
}

.fleet-card-content p {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .fleet-category-cards .col-md-4 {
        margin-bottom: 30px;
    }
}

#contactForm .form_label {
    margin-bottom: 2px;
}

#contactForm .row {
    margin-bottom: 8px !important;
}

#contactForm .buttons {
    margin-top: 10px;
}

#contactForm .contact-info {
    color: #C1C1C1;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#contactForm .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

#contactForm .contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 18px;
}

#contactForm .contact-info a:hover {
    color: var(--red);
}

#contactForm .contact-info i {
    color: var(--red);
    margin-right: 12px;
    font-size: 22px;
    width: 24px;
    display: flex;
    justify-content: center;
}

#contactForm .contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#contactForm .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

#contactForm .contact-divider {
    color: var(--red);
    font-size: 20px;
    margin: 0 15px;
}

#contactForm .contact-info i {
    color: var(--red);
    font-size: 22px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    #contactForm .contact-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*** Specifications Grid ***/
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.spec-label {
    font-weight: bold;
    color: #213d59;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.spec-value {
    font-size: 1rem;
}
