@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap");

@font-face {
    font-family: "themify";
    src: url("./fonts/themify.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

.main-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    margin-bottom: 3rem;
}

.custom-container {
    width: 100%;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
}

.sec-pad {
    padding: 70px 0;
}

.input1_wrapper,
.time_wrapper {
    margin-bottom: 15px;
}

.time-container {
    position: relative;
}

input[readonly] {
    cursor: pointer;
}

/* =================== OTHER BANNERS CSS START =================== */
.banner.other-banner.drive-with-us,
.banner.other-banner.our-fleet,
.banner.other-banner.contact,
.banner.other-banner.services,
.banner.other-banner.cruise_port_transfers,
.banner.other-banner.station_transfers,
.banner.other-banner.sightseeing_tour,
.banner.other-banner.about {
    min-height: 60vh;
    background-image: url(../img/banners/airport_transfers.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner.other-banner.contact {
    background-image: url(../img/banners/contact.jpg);
}

.banner.other-banner.sightseeing_tour {
    background-image: url(../img/banners/sightseeing.png) !important;
}

.banner.other-banner.station_transfers {
    background-image: url(../img/banners/station.jpg) !important;
}

.banner.other-banner.cruise_port_transfers {
    background-image: url(../img/banners/cruise.jpg) !important;
}

.banner.other-banner.our-fleet {
    background-image: url(../img/banners/our-fleets.png) !important;
}

.banner.other-banner.drive-with-us {
    background-image: url(../img/banners/drive-with-us.jpg) !important;
}

.banner.other-banner.about {
    background-image: url(../img/banners/about.jpg) !important;
}
/* =================== OTHER BANNERS CSS END =================== */



/* =================== BUTTONS CSS START =================== */
.signup-btn,
.login-btn,
.button-1-btn,
.button-2-btn,
.button-main,
.button-2,
.button-3 {
    display: inline-block;
    height: auto;
    padding: 5px 15px;
    margin: 0 2px;
    border: 1px solid var(--m-cl);
    border-radius: 30px;
    color: var(--m-cl);
    background: transparent;
    font-weight: 300;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease,
        background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.login-btn,
.button-2-btn,
.button-2,
.button-3 {
    background-color: var(--s-cl);
    border: 1px solid var(--s-cl);
    color: var(--bk-cl);
}

.login-btn:hover,
.button-2:hover {
    background-color: transparent;
    border: 1px solid var(--s-cl);
    color: var(--s-cl);
}

.button-3:hover {
    background-color: transparent;
    border: 1px solid var(--s-cl);
    color: var(--bk-cl);
}

.button-3.s-cl:hover {
    background-color: transparent;
    border: 1px solid var(--s-cl);
    color: var(--s-cl);
}

.signup-btn:hover {
    border: 1px solid var(--m-cl);
    background-color: var(--m-cl);
    color: var(--bk-cl);
    transform: translate3d(0px, -6px, 0.01px);
}

.button-main,
.button-2,
.button-3 {
    padding: 14px 42px;
    margin: 10px 0;
}

.button-main:hover {
    border: 1px solid var(--m-cl);
    background-color: var(--m-cl);
    color: var(--bk-cl);
    transform: translate3d(0px, -6px, 0.01px);
}

.booking-button,
.via-button button {
    display: block;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: var(--m-cl);
    color: var(--bk-cl);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    text-decoration: none;
    line-height: 60px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-weight: 300;
    border-radius: 30px;
}

.via-button button {
    margin: 10px;
    line-height: 35px;
    background: var(--s-cl);
}

.swip-icon {
    margin: 14px 0 0 19px;
    cursor: pointer;
    text-align: center;
}

.booking-button:hover {
    background: var(--bk-cl);
    color: var(--m-cl);
    border: 1px solid var(--m-cl);
}
/* =================== BUTTONS CSS END =================== */

/* =================== CUSTOM ALERTS CSS START =================== */
.custom-alert {
    display: none;
    z-index: 1055;
    min-width: 300px;
    max-width: 400px;
    padding-left: 3rem;
    position: fixed;
    top: 7rem;
    right: 1rem;
    animation: slideInOut 5s ease forwards;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-left: 5px solid;
}

.custom-alert .icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.custom-alert.success {
    border-color: #198754;
    background-color: #d1e7dd;
    color: #0f5132;
}

.custom-alert.error {
    border-color: #dc3545;
    background-color: #f8d7da;
    color: #842029;
}

@keyframes slideInOut {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    10%,
    85% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
/* =================== CUSTOM ALERTS CSS END =================== */

/* =================== SECTION HEADINGS CSS START =================== */
.section-subtitle {
    font-size: 15px;
    line-height: 10px;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    color: var(--bk-cl);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.section-subtitle.white {
    color: var(--bk-cl);
}

.section-subtitle.golden {
    color: var(--m-cl);
}

.section-subtitle span {
    color: var(--m-cl);
}

.section-subtitle.s-cl {
    color: var(--s-cl);
}

.section-title {
    font-size: 35px;
    font-family: "Outfit", sans-serif;
    color: var(--s-cl);
    position: relative;
    line-height: 1.25em;
    font-weight: 700;
}

.section-title.white {
    color: var(--bk-cl);
}

.section-title.golden,
.section-title span {
    color: var(--m-cl) !important;
}

.section-title.white {
    color: var(--bk-cl);
}

.section-title.s-cl {
    color: var(--s-cl);
}
/* =================== SECTION HEADINGS CSS END =================== */

/* =================== SELECT CSS START =================== */
.select1_inner {
    position: relative;
}

.select2 {
    width: 100%;
    background: #484848c7;
    margin-bottom: 15px;
    border-radius: 30px;
}

.select2 *:focus {
    outline: none !important;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 500px;
}

.select2-container--default .select2-selection--single {
    background: none;
    border-radius: 0;
    border: none;
    height: auto;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 14px;
    line-height: 28px;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    display: none;
}

.select2-dropdown {
    background: none;
    border-radius: 0;
    z-index: 99999;
    min-width: 0px;
    border: none;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.select2-results__option {
    padding: 10px 30px;
    background: var(--background-color);
    font-size: 14px;
    line-height: 20px;
    color: var(--s-cl);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.select2-results__option:first-child {
    border-top: none;
}

.small .select2-results__option {
    padding-left: 0;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background: var(--m-cl);
    color: var(--s-cl);
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background: var(--m-cl);
    color: var(--white);
}
/* =================== SELECT CSS END =================== */

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next,
.booking-vehicles-carousel .owl-nav .owl-prev,
.booking-vehicles-carousel .owl-nav .owl-next,
.testimonials-carousel .owl-nav .owl-prev,
.testimonials-carousel .owl-nav .owl-next,
.vehicles-carousel .owl-nav .owl-prev,
.vehicles-carousel .owl-nav .owl-next {
    position: absolute;
    height: 60px;
    width: 60px;
    margin: 10px 0;
    padding: 17px 25px;
    color: var(--s-cl);
    background: var(--bk-cl);
    border-radius: 50px;
    transition: 0.5s;
    border: 1px solid var(--s-cl) !important;
}

.testimonials-carousel .owl-nav .owl-prev,
.booking-vehicles-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-prev,
.vehicles-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.testimonials-carousel .owl-nav .owl-next,
.booking-vehicles-carousel .owl-nav .owl-next,
.services-carousel .owl-nav .owl-next,
.vehicles-carousel .owl-nav .owl-next {
    left: 80px;
}

.testimonials-carousel .owl-nav .owl-prev:hover,
.booking-vehicles-carousel .owl-nav .owl-prev:hover,
.booking-vehicles-carousel .owl-nav .owl-next:hover,
.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover,
.vehicles-carousel .owl-nav .owl-prev:hover,
.vehicles-carousel .owl-nav .owl-next:hover {
    background: var(--s-cl);
    color: var(--bk-cl);
}