
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

a:active {
    color: #fab434;
    background-color: rgb(0, 0, 0, 0.001);
}

div, html, body, ul {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

div, p, a, span, html, li {
    font-family: 'Roboto', sans-serif;
}

.page {
    margin-top: 0;
}

#logo {
    height: 80px;
    object-fit: contain;
}

/* ------------HEADER-------------*/

.cover-box img {
    -webkit-filter: brightness(80%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

#desktop-header {
    position: fixed;
    width: -webkit-fill-available;
    padding: 25px 50px 25px 50px;
    z-index: 100;
}

#desktop-header, .header-menu-right, .header-menu-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-menu-left {
    width: 35%;
}

.header-menu-right {
    width: 35%;
}

ul li {
    list-style-type: none;
    padding-bottom: 7px;
}

header ul li:hover {
    border-bottom: 2px solid rgb(255, 255, 255, 0.4);
    padding-bottom: 5px;
}

ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .5s ease;
    background-color: transparent;
}

.title {
    color: white;
    font-size: 60px;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 800;
    padding-bottom: 5px;
    font-family: 'Inter', sans-serif;
    border-bottom: 2px solid rgb(255, 255, 255, 0.4);
}

.subtitle {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.cover-box .button {
    position: absolute;
    top: 68%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.button {
    background-color: rgb(0, 0, 0, 0.2);
    color: white;
    font-size: 18px;
    text-align: center;
    border: 1px solid white;
    border-radius: 10px;
    padding: 6px 25px 6px 25px;
}

    .button:hover {
        cursor: pointer;
        background-color: #fab434;
        border: 1px solid #fab434;
    }


.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
}

    .arrows:hover {
        opacity: 0.9;
        cursor: pointer;
    }

    .arrows path {
        stroke: white;
        fill: transparent;
        stroke-width: 1.5px;
        animation: arrow 2s infinite;
        -webkit-animation: arrow 2s infinite;
    }

@keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
}

.arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
}

.arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

/*---------------ICONS BOX---------------*/

.icons-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    margin-bottom: 50px;
}

.icons-item {
    width: 33%;
    text-align: center;
}

    .icons-item p {
        color: rgb(65 65 65);
        margin: 0 7% 0 7%;
        font-size: 18px;
        line-height: 30px;
    }

    .icons-item img {
        width: 200px;
        object-fit: contain;
    }

/*-----------SERVICE BOX-----------*/

.services-box {
    background-color: rgb(20 20 30);
    display: flex;
    flex-direction: row;
    color: white;
    border-bottom: 7px solid white;
}

.service-item {
    width: 25%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-top: 2%;
    margin-bottom: 2%;
    border-right: 1px solid #fab434;
}

.services-box .service-item:last-child {
    border-right: none;
}

div.services-box > div > i {
    color: #fab434;
    font-size: 60px;
}

/*-------------CHOOSE US BOX-------------*/

.choose-us-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(40 40 40);
    padding: 5% 20% 5% 20%;
    /*background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    background: white;
}

    .choose-us-box h1 {
        font-weight: 800;
        font-family: 'Inter', sans-serif;
        font-size: 60px;
        margin: 0 10% 0 10%;
        text-align: center;
    }

    .choose-us-box .button {
        color: rgb(40, 40, 40);
        border: 1px solid rgb(40, 40, 40);
        background-color: transparent;
        margin-top: 20px;
    }

        .choose-us-box .button:hover {
            background-color: #fab434;
            border: 1px solid #fab434;
            color: white;
        }

/*--------------FORM BOX------------*/

form {
    width: 90%;
}

.form-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 50px 50px 50px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-box-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .form-box-row input {
        width: 100%;
    }

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    color: rgb(255, 255, 255, 0.7);
    /* -webkit-appearance: none; */
    cursor: pointer;
    border-radius: 4px;
    margin-right: 2px;
    opacity: 1;
    filter: invert(1);
    font-size: 17px;
    display: block;
    padding-right: 15px;
    text-align: center;
}

input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    font-size: 20px;
    margin: 0;
    padding: 0;
    padding-right: 15px;
}

.form-box-row textarea {
    width: 100%;
}

input {
    color: white !important;
    background-color: transparent !important;
    outline: none;
    border: none;
    font-family: Roboto, sans-serif;
}

    input[type=date]:invalid::-webkit-datetime-edit {
        color: rgb(255, 255, 255, 0.7);
    }

.filled-background {
    background-color: transparent;
}


.icon {
    color: white;
    min-width: 50px;
    text-align: center;
}

.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 30%;
    border: 3px solid white;
    background-color: rgb(0, 0, 0, 0.4);
    padding: 10px;
    height: 18px;
    border-radius: 25px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: white;
}

textarea {
    background-color: rgb(0, 0, 0, 0.5);
    color: white;
    border: 3px solid white;
    border-radius: 25px;
    text-indent: 5px;
    padding: 10px;
    font-family: Roboto, sans-serif;
}

    .input-container:focus, textarea:focus,
    .input-container:hover, textarea:hover {
        border: 3px solid #fab434;
        outline: none;
        background-color: rgb(0, 0, 0, 0.6);
    }

input[type=date]:invalid::-webkit-datetime-edit,
input[type=time]:invalid::-webkit-datetime-edit {
    color: white;
    opacity: 0.7;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 0.7; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
    opacity: 0.7;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
    opacity: 0.7;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill, input:-webkit-autofill:hover,
input:-webkit-autofill:focus, textarea:-webkit-autofill,
textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus,
select:-webkit-autofill, select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: none;
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px rgb(1, 1, 1, 0) inset;
    transition: background-color 5000s ease-in-out 0s;
}

form .button {
    font-size: 18px;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    margin-top: 18px;
    background-color: rgb(0, 0, 0, 0.5);
}

/*--------------VEHICLES BOX-------------*/

.vehicles-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(13 18 13);
    height: 500px;
    overflow-y: hidden;
}

.vehicle {
    width: 33%;
    text-align: center;
    margin: 50px 0 50px 0;
    border-right: 1px solid white;
    object-fit: contain;
}

    .vehicle img {
        width: 100%;
        height: 280px;
        margin-top: 60px;
        object-fit: contain;
    }

    .vehicle:nth-child(3) img {
        height: 400px;
    }

    .vehicle:last-child {
        border-right: none;
    }

.slick-current {
    height: 800px;
}

.vehicles-box h1, .destinations-box h1 {
    margin: 30px auto;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    text-align: center;
    font-weight: 300;
    width: 85%;
}

    .vehicles-box h1:hover, .destinations-box h1:hover {
        cursor: pointer;
        opacity: 0.7;
    }

/*-------------DESTINATIONS BOX------------*/

.destinations-box {
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.destination-item {
    width: 24%;
    text-align: center;
    padding-bottom: 10px;
}

    .destination-item:first-child {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .destination-item .destinationText {
        margin-top: -30px;
        z-index: 50;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        position: relative;
        background-color: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    }

.destinationText p {
    margin: 20px;
}

.destination-item .destinationHeading {
    font-size: 30px;
    text-align: center;
}

.destination-item li {
    margin: 10px 40px;
    margin-top: 0px;
    color: black;
    text-align: left;
    font-size: 15px;
}

.destinationDescription {
    margin: 0 !important;
    padding: 10px;
    background-color: #fab434;
    display: none;
    /*    border-radius: 20px;*/
}

.Hide {
    display: none;
}

.destination-item img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.fa-ul {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.fa-li i {
    color: #fab434;
}

.destination-item .arrow-down {
    text-align: center;
}

    .destination-item .arrow-down i:hover {
        text-align: center;
        color: #fab434;
        cursor: pointer;
    }

/*----------------Footer-----------*/

footer {
    background-color: rgb(40, 40, 40);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 90px;
    padding-left: 90px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer2 {
    background-color: black;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: row;
    margin: auto;
    flex-wrap: wrap;
    text-align: right;
    justify-content: flex-end;
}

.footer-left {
    width: 30%;
}

.footer-right {
    width: 70%;
}

    .footer-right img {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 90%;
        border-radius: 25px;
    }

    .footer-right iframe {
        width: 100%;
        border-radius: 20px;
    }

.footer2 p {
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

    .footer2 p:first-child {
        background-color: white;
        margin-top: 0;
        border-top-left-radius: 50px;
        color: black;
        width: 25%;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer2 p:last-child {
        background-color: #fab434;
        margin-top: 0;
        margin-bottom: 0;
        width: 21%;
    }

.footer-left ul {
    display: flex;
    flex-direction: column;
    margin: auto 0;
}

    .footer-left ul li {
        margin: 20px 0;
    }

li h1 {
    color: white;
}

/* Slider with text on the left side */
.slider-with-text {
    display: flex;
    flex-direction: row;
    max-height: 500px;
    overflow-y: hidden;
}

#features-slider {
    width: 70%;
    overflow-y: hidden;
}

.text-box-left {
    padding: 40px;
    width: 30%;
    color: white;
    margin:auto auto;
    max-width: fit-content;
}

.text-box-left .buttons {
    display: flex;
    flex-direction: row;
    height: 50px;
    margin-bottom: 50px;
}

    .text-box-left .buttons button {
        height: 30px;
        width: 30px;
        background-color: white;
        box-shadow: 0 0 10px rgb(0 0 0 / 7%);
        border-radius: 100%;
        border: none;
        margin: 5px 20px;
        margin-left: 0;
    }

    .text-box-left h5 {
        font-size: 35px;
        margin: 10px 0;
    }

    .text-box-left .buttons button i {
        margin: auto auto;
    }

    .text-box-left .button {
        margin-top: 30px;
    }

    .text-box-left p {
        padding-right: 100px;
    }

.slick-prev, .slick-next {
    left: 0;
    right: 0;
    position: relative;
}

.slick-dots li button::before, .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    opacity: 0.5;
}

.slick-dots {
    bottom: 0;
}

    .slick-dots li button:hover button:before {
        color: gold;
    }

.destinationDescription {
    padding: 25px;
}

/*----- Mobile header -----*/
#mobile-header {
    display: none;
}

.hamburger-menu {
    top: 1rem;
    right: 2rem;
    z-index: 10;
    cursor: pointer;
}

.menu-bar1,
.menu-bar2,
.menu-bar3 {
    width: 2rem;
    height: 0.1rem;
    background-color: black;
    margin: 0.8rem 0;
    transition: 0.4s;
    margin: 0.2rem 0 0.2rem 0;
    margin-left: auto;
}

.menu-bar2 {
    width: 1rem;
}

/* ROTATE FIRST BAR */
.active .menu-bar1 {
    /* transform: rotate(-45deg) translate(-7px, 8px); */
    transform: rotate(-45deg) translate(-0.4rem, 0.6rem);
}

/* FADE OUT SECOND BAR */
.active .menu-bar2 {
    opacity: 0;
}

/* ROTATE LAST BAR */
.active .menu-bar3 {
    transform: rotate(45deg) translate(-0.1rem, -0.3rem);
}

/* Payment options */
.payment-options {
    display: flex;
    flex-direction: row;
    background-color: #fab434;
    width: 100%;
    justify-content: center;
}

.payment-options div {
    display: flex;
    flex-direction: column;
    width: 40%;
    text-align: center;
    margin: 20px auto;
}

.payment-options i, 
.payment-options span {
    color: white;
}

    .payment-options i {
        font-size: 50px;
        margin-bottom: 20px;
    }

.jWcIXO {
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 5px !important;
    border-radius: 100% !important;
}

.dmopMx {
    display:none !important;
}

.eiGYSu {
    max-height: 100px !important;
}