/* =========================================
   GLOBAL SETTINGS
========================================= */

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* =========================================
   SPINNER
========================================= */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out;
}

/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    transition: all 0.5s ease;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
    font-weight: 600;
    transition: all 0.5s ease;
    padding: 12px 24px;
    border-radius: 8px;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 36px;
    height: 36px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* =========================================
   ICON ANIMATION
========================================= */

@keyframes icon-animat {

    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/* =========================================
   NAVBAR
========================================= */

.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: all 0.5s ease;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: all 0.5s ease;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 20px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: rotateX(-75deg);
        transform-origin: top;
        transition: all 0.5s ease;
        border: none;
        border-radius: 10px;
        margin-top: 8px !important;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@media (max-width: 991px) {

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        margin-right: 0;
    }

    .navbar .dropdown-menu {
        border: none;
        background: #f8f9fa;
    }

    .navbar .dropdown-menu a {
        padding: 10px 15px;
    }
}

/* =========================================
   CAROUSEL
========================================= */

.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
    background-color: var(--bs-secondary);
    opacity: 1;
    margin: 10px 0;
    transition: all 0.5s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 768px) {

    .carousel .carousel-item,
    .carousel .carousel-item img {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .carousel .carousel-indicators {
        display: none;
    }
}

/* =========================================
   BREADCRUMB
========================================= */

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
    url(../img/fact-bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/* =========================================
   ABOUT
========================================= */

.about .about-item .about-item-inner {
    background: var(--bs-light);
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s ease;
}

.about .about-item .about-item-inner .about-icon,
.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    color: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-animat 5s infinite alternate;
}

.about .about-img {
    position: relative;
    overflow: hidden;
}

.about .about-img .img-1 {
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 98%;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
}

@media (max-width: 768px) {

    .about .about-img .img-1 {
        margin-right: 0;
    }

    .about .about-img .img-2 {
        position: relative;
        padding-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .about .about-img::after {
        display: none;
    }
}

/* =========================================
   CATEGORIES
========================================= */

.categories .categories-item {
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: all 0.5s ease;
}

.categories .categories-item:hover {
    border-color: var(--bs-primary);
}

.categories .categories-item-inner {
    overflow: hidden;
    border-radius: 10px;
}

.categories .categories-item-inner:hover {
    box-shadow: 0 0 40px rgba(234, 0, 30, .3);
}

.categories-content {
    background: var(--bs-light);
    text-align: center;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.5s ease;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
}

.categories-carousel .owl-nav .owl-prev {
    left: 0;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

/* =========================================
   BLOG
========================================= */

.blog .blog-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0,0,0,.2);
}

.blog .blog-item .blog-img {
    overflow: hidden;
    position: relative;
}

.blog .blog-item .blog-img img {
    transition: all 0.5s ease;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog .blog-content {
    background: var(--bs-light);
    position: relative;
}

.blog .blog-date {
    position: absolute;
    top: 0;
    left: 20px;
    transform: translateY(-50%);
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 10px 20px;
    border-radius: 10px;
}

/* =========================================
   TEAM
========================================= */

.team .team-item {
    position: relative;
    margin-top: 100px;
    border-radius: 10px;
    background: var(--bs-light);
    text-align: center;
    overflow: hidden;
}

.team .team-item .team-img {
    position: relative;
    top: -100px;
    margin-bottom: -100px;
}

.team .team-item .team-img img {
    transition: all 0.5s ease;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .team .team-item {
        margin-top: 60px;
    }

    .team .team-item .team-img {
        top: -50px;
        margin-bottom: -50px;
    }
}

/* =========================================
   CONTACT
========================================= */

.contact .contact-add-item {
    border-radius: 10px;
    text-align: center;
    background: var(--bs-light);
    padding: 30px;
}

/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: all 0.5s ease;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-btn a,
.footer .footer-btn a i {
    transition: all 0.5s ease;
}

.footer .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

@media (max-width: 768px) {

    .footer .footer-item {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* =========================================
   MOBILE RESPONSIVE BOOKING FORM
========================================= */

.booking-form,
.car-booking-form,
.hero-form,
.form-area {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Form Container */
.booking-form .form-control,
.booking-form .form-select,
.car-booking-form .form-control,
.car-booking-form .form-select {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    font-size: 15px;
    padding: 10px 15px;
    box-shadow: none;
}

/* Form Row Fix */
.booking-form .row,
.car-booking-form .row {
    margin-left: 0;
    margin-right: 0;
}

/* Column Padding */
.booking-form [class*="col-"],
.car-booking-form [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 15px;
}

/* Submit Button */
.booking-form .btn,
.car-booking-form .btn {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

/* Date Inputs */
.booking-form input[type="date"],
.booking-form input[type="time"],
.car-booking-form input[type="date"],
.car-booking-form input[type="time"] {
    width: 100%;
}

/* Select Dropdown */
.booking-form select,
.car-booking-form select {
    width: 100%;
}

/* =========================================
   MOBILE VIEW
========================================= */

/* =========================================
   HERO SECTION
========================================= */

.hero-header {
    position: relative;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
}

/* =========================================
   BOOKING FORM
========================================= */

.booking-container {
    position: relative;
    margin-top: -80px;
    z-index: 99;
}

.booking-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.booking-form .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-form .form-control {
    width: 50%;
    height: 52px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #ddd;
    font-size: 14px;
}

.booking-form .btn {
    height: 52px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .booking-container {
        margin-top: 30px;
    }

    .carousel-item img {
        height: 500px;
    }

}

@media (max-width: 768px) {

    .carousel-item img {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .booking-container {
        margin-top: 20px;
        padding: 0 15px;
    }

    .booking-form {
        padding: 15px;
    }

    .booking-form .row {
        display: flex;
        flex-direction: column;
    }

    .booking-form .col-lg-3,
    .booking-form .col-lg-2,
    .booking-form .col-md-6,
    .booking-form .col-md-12 {
        width: 50px%;
        max-width: 50px%;
        flex: 0 0 100%;
    }

    .booking-form .btn {
        margin-top: 5px;
        width: 50%;
    }

}

@media (max-width: 576px) {

    .carousel-item img {
        height: 35px;
    }

    .carousel-caption h1 {
        font-size: 22px;
    }

    .booking-form {
        padding: 15px;
    }

    .booking-form .form-control {
        height: 10pxpx;
        font-size: 13px;
    }

    .booking-form .btn {
        height: 10px;
        font-size: 14px;
    }

}







/* =========================================
   COPYRIGHT
========================================= */

.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
}