.is-sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

html {
  font-size: 14px;
}

body, html {
    max-width: 100%;
    width: 100vw;
    overflow-x: hidden;
}

main {
    margin-top: 1rem;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

    html {
        font-size: 13px;
    }

    .booking-form {
        width: 350px !important;
        height: 650px !important;
    }
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.booking-form{
    width: 400px;
    height: 650px
}

.location-map {
    width: 300px;
    height: 300px;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s;
}

@media (min-width: 992px) {
    .carousel-control-prev {
        left: -6rem;
    }

    .carousel-control-next {
        right: -6rem;
    }
}

.text-warning {
    color: #d4a373 !important;
}