:root {
    --accent: #ba9021;
    --accent_dark: #8d6d14;
    --icon: #534c3a;
    --grey: #c2c2c2;
}

* {
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    height: 100%;
}


/*
-------------------------------------------
 Header
-------------------------------------------
*/

header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 999;
    box-shadow: 0 0px 14px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease-in-out;
}

header.at-top {
    background-color: transparent;
    box-shadow: none;
    height: 100px;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
}

.nav-links {
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    width: 100%;
}

.nav-links-list {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 50px;
}

.nav-link {
    list-style: outside none none;
    list-style-type: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-btn {
    text-decoration: none;
    color: #131313;
}

.nav-underline {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.nav-underline::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.2s ease-in-out;
}

.nav-underline:hover::after {
    transform-origin: top left;
    transform: scaleX(1);
}

.mob-menu-btn {
    display: none;
}

.langs {
    display: flex;
    gap: 12px;
}

.lang-btn {
    outline: none;
    background: none;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
}

.lang-btn:hover:not(.lang-btn-selected) {
    border: 2px solid var(--grey);
}

.lang-btn img {
    width: 25px;
}

.lang-btn-selected {
    border: 2px solid rgb(150, 150, 150);
}

.mob-menu-cover {
    display: none;
}


/*
-------------------------------------------
 Hero
-------------------------------------------
*/

.hero {
    height: 100svh;
    background-image: url("../images/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.hero-cover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), 50%, rgba(255, 255, 255, 0) 60%);
    width: 100%;
    height: 100%;
}

.hero-box {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 70px;
    max-width: 1200px;
    padding-top: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/*
-------------------------------------------
 Title
-------------------------------------------
*/

.title {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.sub-title {
    font-size: 25px;
    display: block;
    color: #fff;
    font-weight: 600;
}


/*
-------------------------------------------
 Reserve form
-------------------------------------------
*/

.container-va {
    max-width: 1200px;
    margin: 0 30px;
}

.container-va span {
    color: rgba(20, 20, 20, 0.8);
}

.form-va {
    max-width: 1200px;
    margin-top: 50px;
}

.container-box-va {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 6px 16px 1px rgba(0, 0, 0, 0.3);
    margin: 0 30px;
}

.input-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}


/*
-------------------------------------------
 Reserve modal
-------------------------------------------
*/

.modal-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100lvh;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in;
}

.modal[data-open="1"] {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-out;
}

/* html:has(.modal[data-open="1"]) {
    overflow-y: hidden;
} */

.reserve-box {
    max-width: 1200px;
    background-color: white;
    border-radius: 4px;
    padding: 34px 32px;
    transform: scale(0.85);
    transition: all 0.2s ease-in;
}

.modal[data-open="1"] .reserve-box {
    transform: scale(1);
    transition: all 0.2s ease-out;
}

.form_title {
    display: flex;
    gap: 12px;
    color: var(--icon);
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-reserve {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reserve-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reserve-modal-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #83785b;
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
}

.reserve-modal-header-title>i {
    font-size: 15px;
}

.reserve-modal-title {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reserve-modal-close {
    width: 38px;
    height: 38px;
    font-size: 20px;
    color: var(--icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.reserve-modal-close:hover {
    background-color: rgba(50, 50, 50, 0.2);
}

.reserve-modal-info {
    margin-bottom: 15px;
    font-size: 16px;
}

.reserve-success {
    width: 300px;
    font-size: 18px;
}

.error-box {
    margin-top: 26px;
    background-color: #ff5757;
    color: rgb(255, 255, 255);
    padding: 14px;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.error-code {
    font-family: monospace;
    font-size: 12px;
}

.form_item_box {
    flex: 1;
    display: flex;
    height: auto !important;
    border: 1px solid var(--grey);
    padding: 10px 14px;
    border-radius: 4px;
    gap: 10px;
    font-size: 16px;
    align-items: center;
    transition: all 0.25s ease-in-out;
    background-color: rgba(255, 255, 255, 0.4);
}

.form_item_box:has(input[type="date"]),
.form_item_box:has(input[type="time"]),
.form_item_box input[type="date"],
.form_item_box input[type="time"] {
    cursor: pointer;
}

.placeholder {
    color: rgba(0, 0, 0, 0.63);
}

.form_item_icon {
    color: var(--icon);
    font-size: 20px;
    transition: all 0.25s ease-in-out;
}

.form_input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    display: inline-block;
    transition: all 0.25s ease-in-out;
}

.form_item_box:hover {
    border: 1px solid rgb(56, 56, 56);
    transition: all 0.25s ease-in-out;
}

.form_item_box:focus-within,
.form_item_box:has(.dropdown[open="1"]) {
    border: 1px solid var(--accent);
    transition: all 0.12s ease-in-out;
    background-color: rgba(255, 255, 255, 0.4);
}

.form_item_box:hover .form_item_icon {
    color: rgb(56, 56, 56);
    transition: all 0.25s ease-in-out;
}

.form_item_box:focus-within .form_item_icon,
.form_item_box:has(.dropdown[open="1"]) .form_item_icon {
    color: var(--accent);
    transition: all 0.12s ease-in-out;
}

input,
select {
    background: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
}

.form_item_box:has(.dropdown) {
    cursor: pointer;
}

.dropdown {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.dropdown-items {
    z-index: 1000;
    position: absolute;
    left: -14px;
    top: 35px;
    width: calc(100% + 28px);
    max-height: 250px;
    background-color: #fff;
    border-radius: 4px;
    overflow-y: scroll;
    box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.4);
    /* height: 0; */
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.17s ease-in;
}

.dropdown[open="1"] .dropdown-items {
    /* height: auto; */
    transform: scaleY(1);
    opacity: 1;
    transition: all 0.17s ease-out;
}

.dropdown-item {
    padding: 8px 14px;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: rgba(50, 50, 50, 0.15);
}

.dropdown-item[selected] {
    background-color: rgba(140, 108, 20, 0.2);
}

.dropdown-item[disabled] {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(150, 150, 150);
    font-style: italic;
}

.btn-input-clear {
    border-radius: 50%;
    height: 32px;
    flex: 32px 0 0;
    color: rgb(80, 80, 80);
    align-items: center;
    justify-content: center;
    display: none;
    transition: all 0.2s ease-in-out;
}

.btn-input-clear:hover {
    background-color: rgba(50, 50, 50, 0.2);
}

.btn {
    cursor: pointer;
}

.button {
    background: linear-gradient(to left, var(--accent) 50%, var(--accent_dark) 50%) right;
    background-size: 200% 100%;
    color: #fff;
    border-radius: 4px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
}

.button:enabled:hover {
    background-position: left;
    transition: all 0.2s ease-in-out;
}

.button:enabled:hover .fa-arrow-right {
    transform: translateX(4px);
    transition: all 0.2s ease-in-out;
}

.button:disabled {
    opacity: 0.62;
    cursor: default;
}

.fa-arrow-right {
    margin-left: 6px;
    transition: all 0.2s ease-in-out;
}

.scroll-down {
    text-align: center;
    position: absolute;
    color: #fff;
    font-size: 20px;
    width: 100%;
    bottom: 40px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.down-arrow {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-size: 38px;
    -webkit-animation: down-arrow 0.8s infinite alternate ease-in-out;
}

@-webkit-keyframes down-arrow {
    0% {
        -webkit-transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
    }
}

.down-link {
    width: 120px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.bottom {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 40%);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 170px;
}

.section-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    max-width: 1200px;
    margin: auto;
    padding: 60px 40px;
}

.logo-about {
    width: 100%;
    max-width: 300px;
}

.about-text {
    font-size: 25px;
    font-weight: 600;
}

.about-text>ul {
    list-style: outside none none;
    list-style-type: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.about-text li+li::before {
    content: "•";
    margin-right: 25px;
}

.section-travel {
    background-image: url("../images/destinations.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.travel-container {
    margin-bottom: 45px;
}

.cover {
    background-color: #000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    position: absolute;
}

.fleet-box {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    justify-content: center;
    margin: auto;
    text-align: center;
    color: white;
    position: relative;
}

.fleet-items {
    margin: 0 30px;
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 30px;
    scroll-snap-type: x mandatory;
}

.fleet-item {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 6px 0px rgba(27, 21, 21, 0.2);
    transition: all 0.3s ease-in-out;
}

.travel-box {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 6px 0px rgba(27, 21, 21, 0.2);
    transition: all 0.3s ease-in-out;
}

.fleet-item:hover>img,
.travel-box:hover>img {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.travel-box:hover>div {
    padding: 8px;
    transition: all 0.3s ease-in-out;
}

.fleet-item>img {
    transform: scale(1);
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.travel-box>img {
    transform: scale(1);
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.travel-box>div {
    color: var(--icon);
    font-size: 22px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
}

.section-fleet {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 80px 0;
}

.section-fleet .title {
    color: var(--icon);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-reviews {
    background-image: url("../images/beach.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.carousel-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    justify-content: center;
    margin: auto;
    text-align: center;
    color: white;
    position: relative;
    padding: 50px 0 60px 0;
}

.carousel-box>.title {
    margin-bottom: 30px;
}

.carousel-items {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-nav {
    flex: 50px 0 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.carousel-nav-btn {
    padding: 6px 10px;
    font-size: 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.carousel-nav-btn[disabled] {
    cursor: auto;
    color: rgba(230, 230, 230, 0.5);
}

.carousel-nav-btn:hover:not([disabled]) {
    background-color: rgba(20, 20, 20, 0.4);
}

.carousel-items[data-carousel-items="2"] .carousel-item {
    flex: calc(50% - 10px) 0 0;
}

.carousel-items[data-carousel-items="3"] .carousel-item {
    flex: calc(33% - 15px) 0 0;
}

.review {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 34px;
    text-align: left;
    -webkit-font-smoothing: subpixel-antialiased;
    transform: scale(0.989);
    transition: all 0.25s ease-in-out;
}

.review:hover {
    background-color: rgba(255, 255, 255, 0.92);
    transform: scale(1);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-author-name {
    color: #1b1b1b;
    font-size: 22px;
    font-weight: bold;
}

.review-date {
    color: #535353;
    font-size: 18px;
}

.review-rating {
    font-size: 20px;
    color: #DAA520;
}

.review-rating>* {
    margin-left: 3px;
}

.review-title {
    color: var(--icon);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.review-title:hover {
    text-decoration: underline;
    color: var(--accent_dark);
}

.review-desc {
    color: #1b1b1b;
    font-size: 18px;
    margin-top: 4px;
}

.reviews-source {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 20px 0 40px 0;
    color: rgba(255, 255, 255, 0.9);
}

.tripadvisor-icon {
    fill: rgba(255, 255, 255, 0.9);
    width: 18px;
    transition: all 0.15s ease-in-out;
}

.tripadvisor-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.15s ease-in-out;
}

.tripadvisor-link:hover {
    color: rgb(255, 255, 255);
}

.tripadvisor-link:hover .tripadvisor-icon {
    fill: rgb(255, 255, 255);
}

.tripadvisor-coe {
    position: absolute;
    top: 10px;
    right: 0;
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0.7) translate(-50px, 0);
    transform-origin: center;
    transition: all 0.15s;
}

.tripadvisor-coe:hover {
    transform: scale(0.73) translate(-50px, 0);
}

.tripadvisor-coe div {
    margin: 0 !important;
}

.carousel-nav-bar {
    margin: 22px auto 0 auto;
    display: flex;
    gap: 16px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.carousel-dot[data-sel] {
    background-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.17);
}

.footer {
    background-color: white;
}

.footer-box {
    max-width: 1200px;
    height: 100%;
    margin: auto;
    padding: 50px 30px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.credits-box {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    text-align: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-mid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
}

.footer-right>a>img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 14px;
    transition: all 0.2s ease-in-out;
}

.footer-right>a:hover img {
    transform: scale(1.08);
}

.footer-logo {
    width: 140px;
}

.contacts-title {
    font-weight: bold;
}

.contact {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--accent_dark);
    transition: all 0.2s ease-in-out;
}

.contact:hover {
    color: var(--icon);
}

@media (max-width: 992px) {
    header.at-top {
        background-color: transparent;
        box-shadow: none;
        height: 80px;
    }

    nav {
        justify-content: space-between;
    }

    .nav-links {
        background-color: rgba(255, 255, 255, 1);
        display: block;
        position: fixed;
        left: 0;
        top: -390px;
        z-index: -1;
        width: 100%;
        padding: 90px 30px 35px 30px;
        transition: all 0.2s ease-in;
    }

    .nav-links.open {
        top: 0;
        transition: all 0.25s ease-out;
    }

    .nav-links-list {
        display: block;
    }

    .nav-btn {
        padding: 10px 0;
        font-size: 20px;
    }

    .langs {
        margin-top: 25px;
    }

    .mob-menu-btn {
        display: flex;
    }

    .mob-menu-cover {
        display: block;
        visibility: visible;
        background-color: #000;
        opacity: 0.7;
        width: 100%;
        height: 100lvh;
        position: fixed;
        z-index: 997;
        transition: all 0.3s ease-out;
    }

    .mob-menu-cover.hidden {
        opacity: 0;
        visibility: hidden;
        transition: all 0.1s ease-in;
    }

    .title {
        font-size: 38px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    .sub-title {
        font-size: 24px;
    }

    .hero,
    .section-travel,
    .section-reviews {
        background-attachment: scroll;
    }

    .hero-cover {
        background-image: linear-gradient(rgba(255, 255, 255, 0.5), 70%, rgba(255, 255, 255, 0));
    }

    .scroll-down,
    .bottom {
        display: none;
    }

    .logo-about {
        width: 100%;
        max-width: 200px;
    }

    .about-text {
        font-size: 22px;
    }

    .about-text>ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 8px;
        text-align: center;
    }

    .about-text li::before {
        content: "•";
        margin-right: 25px;
    }

    .fleet-items {
        overflow-x: scroll;
        padding: 0 30px;
        margin: 0 0;
        margin-top: 45px;
    }

    .fleet-item {
        flex: 100% 1 0;
    }

    .fleet-item>img {
        height: 250px;
    }

    .fleet-item {
        scroll-snap-type: x mandatory;
        scroll-snap-align: center;
    }

    .carousel-box {
        max-width: 992px;
    }

    .carousel-items {
        overflow-x: scroll;
        padding: 0 30px;
        gap: 30px;
    }

    .carousel-item {
        flex: 100% 0 0 !important;
    }

    .review {
        background-color: rgba(255, 255, 255, 0.92);
        padding: 28px;
        transform: scale(1);
    }

    .carousel-nav,
    .review-date {
        display: none;
    }

    .review-header {
        flex-direction: column;
        gap: 6px;
        align-items: start;
    }


    .review-title {
        line-height: 30px;
        margin-bottom: 5px;
    }

    .review-author-img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 670px) {
    .form-va {
        margin-bottom: 30px;
    }

    .input-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        height: 750px;
    }

    .container-box-va {
        padding: 22px;
    }

    .carousel-item {
        scroll-snap-align: center;
    }
    
    .tripadvisor-coe {
        display: inline-block;
        position: static;
        transform: scale(0.7);
    }
    
    .tripadvisor-coe:hover {
        transform: none;
    }

    .modal-inputs {
        flex-direction: column;
    }

    .modal-inputs .btn-reserve {
        justify-content: center;
    }

    .reserve-modal-header-title {
        font-size: 15px;
    }

    .footer-box {
        flex-direction: column;
        align-items: start;
        gap: 24px;
    }

    .footer {
        padding-bottom: 75px;
    }

    .footer-right>a>img {
        width: 60px;
        height: 60px;
        margin: 10px;
    }
}

@media (max-width: 992px) and (min-width: 670px) {
    .input-row {
        flex-wrap: wrap;
        align-items: end;
    }

    .input-row>* {
        flex: 1 1 40%;
    }

    .travel-box>img,
    .fleet-item>img {
        height: 450px;
    }
}