.tb-booking-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 16px;
}

.tb-booking-form input,
.tb-booking-form textarea,
.tb-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.tb-booking-form button {
    background: #2f5f9e;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
}

.tb-input {
    width: 100%;
    border: 1px solid var(--divider);
    border-radius: 90px !important;
    padding: 12px 20px;
    font-size: 16px;
    background: #fff;
}

.tb-input-search {
    height: 67px;
    width: 650px !important;
}

.tb-search-form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.tb-search-form div {
    display: flex;
    justify-content: center;
}

.tb-btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    font-style: normal;
    line-height: normal;
    border-radius: 90px;
}

.tb-btn-search {
    font-size: 16px;
    font-weight: 700;
    color: #FAFAF8;
    background: #2F5D9A;
    padding: 24px 60px;
    height: 67px;
    width: 200px;
    box-shadow: 0px 4px 25px 0px #2F5D9AA6;
}

/* TOUR */
.tb-tour-section {
    max-width: 1170px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.tb-tour-list {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    gap: 30px;
    justify-content: center;
}

.tb-tour-item {
    width: 370px;
}

.tb-tour-ratings {
    display: flex;
    gap: 5px;
    min-height: 18px;
    margin-top: 10px;
}

.tb-tour-title {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0;
    color: var(--text-title);
}

.tb-tour-decs {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-text);
}

.tb-tour-avatar {
    position: relative;
}

.tb-tour-avatar img {
    width: 100%;
    border-radius: 15px;
}

.tb-tour-heading-box {
    display: flex;
    justify-content: center;
    margin: 50px 0 50px;
}

.tb-tour-heading {
    padding: 10px 0;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--text-title);
    border-bottom: 3px solid var(--sage);
    min-width: 300px;
}

.tb-tour-cate {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-title);
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.tb-tour-cate::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: repeating-linear-gradient(to right,
            var(--sage) 0,
            var(--sage) 6px,
            transparent 6px,
            transparent 12px);
}

.tb-tour-bag {
    position: absolute;
    height: 37px;
    width: max-content;
    border-radius: 90px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-sky);
    color: var(--text-title);
    font-weight: 400;
    font-size: 12px;
    padding: 10px 20px;
}

.tb-btn-see-more {
    width: 275px;
    height: 44px;
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-blue);
    border: 1px solid var(--deep-blue);
}

.tb-tour-see-more-box {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .tb-tour-avatar img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .tb-search-form {
        display: block;
        padding: 0 20px;
    }

    .tb-search-form button {
        margin-top: 20px;
    }

    .breadcrumb {
        padding: 13.5px 20px !important;
    }

    .tb-tour-list {
        display: none;
    }

    .tb-tour-item {
        width: 185px;
    }

    .tb-tour-bag {
        right: 10px;
        bottom: 10px;
    }

    .tb-tour-item {
        height: auto;
    }

    .tb-tour-section {
        margin-left: 20px;
        margin-right: 20px;
    }

    .tb-tour-see-more-box {
        justify-content: center;
    }

    .tb-tour-heading {
        font-size: 28px;
    }
}