html {
    height: 100%;
    margin: 0;
}

body {
    font-family: var(--body-font-family);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-color);
}

    a:focus {
        outline: none;
    }

    a:hover {
        text-decoration: none;
        color: var(--text-color);
    }

.tz-outer-wrapper {
    background-color: var(--primary-color);
}

.tz-inner-wrapper {
    max-width: 1020px;
    height: 100%;
    min-height: 100vh;
    background-color: var(--secondary-color);
}

.push {
    padding-top: 60px !important;
}

@media (min-width: 768px) {
    .push {
        padding-top: 120px !important;
    }
}

.section {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(20, 36, 35, .1);
}

    .section:last-child {
        border-bottom: none;
    }

@media (min-width: 768px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.home-text-wrapper {
    width: 280px;
    margin: auto;
    text-align: center;
    word-spacing: 280px;
}

@media (min-width: 768px) {
    .home-text-wrapper {
        width: auto;
        word-spacing: initial;
    }
}

/*
---	TYPOGRAPHY ------------------------------------------------------------------*/

.tz-title, .main_title {
    font-family: var(--header-font-family);
    font-size: 30px;
    text-transform: capitalize;
    color: var(--header-color);
}

@media (min-width: 480px) {
    .tz-title, .main_title {
        font-size: 40px;
    }
}

.tz-subtitle {
    font-size: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-color);
}

p {
    font-size: 14px;
    color: var(--text-color);
}

@media (min-width: 480px) {
    p {
        font-size: 16px;
    }
}

h1 {
    font-family: var(--header-font-family);
    font-size: 40px;
    text-align: center;
    color: var(--header-color);
}

@media (min-width: 480px) {
    h1 {
        font-size: 50px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 70px;
    }
}

.tz-link {
    font-size: 16px;
    text-decoration: none;
    opacity: .8;
}

    .tz-link:hover {
        text-decoration: underline;
    }

.tz-link-bold {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    opacity: .8;
}

    .tz-link-bold:hover {
        text-decoration: none;
    }

/*
--- IMAGE ------------------------------------------------------------------*/

img {
    display: block;
}

.ratio-image-wrapper {
    overflow: hidden;
    max-height: 460px;
}

.ratio-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-top: 56.25%;
}

    .ratio-image img {
        position: absolute;
        top: 0;
        left: 50%;
        width: auto;
        height: 80%;
        transform: translateX(-50%);
        object-fit: contain;
    }

/*
---	HEADER ------------------------------------------------------------------*/

.tz-header {
    top: -100%;
    transition: var(--transition);
}

    .tz-header.tz-header--visible {
        top: 0;
    }

.tz-header-container {
    max-width: 1020px;
    margin: 0 auto;
    background-color: var(--secondary-color);
}

.tz-header-title {
    font-family: var(--header-font-family);
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    display: block;
    height: 30px;
    text-transform: capitalize;
    color: var(--header-color);
}

@media (min-width: 768px) {
    .tz-header-title {
        margin-bottom: 10px;
    }
}

.tz-header-title:hover,
.tz-header-title:focus,
.tz-header-title:active {
    color: var(--primary-color);
}

#navbar {
    margin-top: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(20, 36, 35, .1);
}

@media (min-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    #navbar {
        margin-top: 0;
    }
}

.tz-nav-link {
    font-size: 16px;
    line-height: 20px;
    display: block;
    height: 20px;
    margin: 10px;
    transition: var(--transition);
    color: var(--text-color);
}

header .tz-nav-link {
    color: var(--header-color);
}

.tz-nav-link:hover {
    color: var(--primary-color);
}

header .tz-nav-link:hover {
    color: var(--header-color);
}

.tz-nav-link.active {
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
}

header .tz-nav-link.active {
    color: var(--header-color);
}

.navbar-toggler {
    padding: 0;
    border: none;
    z-index: 0;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler svg {
        width: 30px;
        height: 30px;
        fill: var(--header-color);
    }

/*
---	FOOTER ------------------------------------------------------------------*/

.footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    border-top: 1px solid rgba(20, 36, 35, .1);
}

@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-left {
        flex-direction: row;
    }
}

.footer-right {
    display: flex;
    flex-direction: row;
    margin: 10px;
}

    .footer-right p {
        font-size: 16px;
        height: 20px;
        margin: 0 5px 0 0;
        color: var(--text-color);
    }

    .footer-right a {
        display: flex;
        height: 20px;
    }

        .footer-right a svg path {
            fill: var(--text-color);
        }

/*
---	DATE ------------------------------------------------------------------*/

.date {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: fit-content;
    margin: auto;
    color: var(--header-color);
}

.date-month,
.date-year {
    font-size: 14px;
    padding: 5px 20px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-top: 1px solid var(--header-color);
    border-bottom: 1px solid var(--header-color);
}

.date-date {
    font-size: 24px;
    font-weight: 600;
    margin: 0 10px;
}

/*
---	FORM ------------------------------------------------------------------*/

input::placeholder {
    opacity: .5;
    color: var(--text-color);
}

textarea::placeholder {
    opacity: .5;
    color: var(--text-color);
}

input:focus::placeholder {
    opacity: .5;
    color: var(--text-color);
}

input:focus {
    outline: none;
}

.tz-form-wrapper {
    box-sizing: content-box;
    margin-bottom: 20px;
    padding: 25px;
    background-color: rgba(167, 167, 151, .2);
}

@media (min-width: 768px) {
    .tz-form-wrapper {
        margin-bottom: 0;
    }
}

.tz-form-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.tz-form-input {
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    background-color: var(--secondary-color);
}

    .tz-form-input:focus,
    .tz-form-input:focus-visible {
        outline: 1px solid var(--primary-color);
    }

.tz-form-select {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    box-sizing: border-box;
    padding: 10px;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    background-color: var(--secondary-color);
}

    .tz-form-select option {
        color: var(--text-color);
        background-color: var(--secondary-color);
    }

    .tz-form-select:focus,
    .tz-form-select:focus-visible {
        border-color: var(--primary-color);
        outline: 1px solid var(--primary-color);
        box-shadow: none;
    }

.tz-button {
    font-size: 16px;
    font-weight: 500;
    display: block;
    box-sizing: border-box;
    width: 240px;
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    color: var(--secondary-color);
    border: none;
    outline: 0;
    background-color: var(--primary-color);
}

    .tz-button:hover {
        color: var(--secondary-color);
    }

.tz-rsvp-form {
    max-width: 480px;
    margin: auto;
}

.tz-button-grid {
    display: grid;
    width: fit-content;
    margin: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .tz-button-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
}

.tz-checkbox {
    display: inline-flex;
    gap: 15px;
}

    .tz-checkbox input {
        display: none;
        cursor: pointer;
    }

    .tz-checkbox label {
        position: relative;
        cursor: pointer;
    }

        .tz-checkbox label:before {
            position: relative;
            display: inline-block;
            padding: 10px;
            content: '';
            cursor: pointer;
            vertical-align: middle;
            border: 1px solid var(--primary-color);
            background-color: var(--secondary-color);
        }

    .tz-checkbox input:checked + label:after {
        position: absolute;
        top: 2px;
        left: 8px;
        display: block;
        width: 6px;
        height: 14px;
        content: '';
        transform: rotate(45deg);
        border: solid var(--primary-color);
        border-width: 0 2px 2px 0;
    }

.tz-phone-input-wrapper {
    position: relative;
    z-index: 1000;
}

.tz-phone-input-dropdown {
    position: absolute;
    top: 50%;
    right: 0;
    padding-left: 10px;
    transform: translateY(-50%);
    border-left: 1px solid var(--primary-color);
}

.tz-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-toggle::after {
    border: none;
}

.dropdown-item {
    color: var(--primary-color);
}

    .dropdown-item.active,
    .dropdown-item:active {
        background-color: var(--primary-color);
    }

.dropdown-menu {
    border-color: var(--primary-color);
    border-radius: initial;
    background-color: var(--secondary-color);
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

/*
---	ACCORDION ------------------------------------------------------------------*/

.accordion-item {
    border: none;
}

.accordion-button {
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    border: none;
    background-color: var(--primary-color);
    box-shadow: none;
}

    .accordion-button svg {
        width: 20px;
        height: 20px;
        transition: var(--transition);
        fill: var(--secondary-color);
    }

    .accordion-button:not(.collapsed) {
        color: var(--secondary-color);
        background-color: var(--primary-color);
    }

        .accordion-button::after,
        .accordion-button:not(.collapsed)::after {
            display: none;
        }

        .accordion-button:not(.collapsed) svg {
            transform: rotate(180deg);
        }

    .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

.accordion-body {
    font-size: 16px;
    color: var(--text-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    background-color: var(--secondary-color);
}

/*
---	TOTAL ------------------------------------------------------------------*/

.tz-total {
    font-size: 16px;
    display: grid;
    width: fit-content;
    margin: auto;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-color);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
}

@media (min-width: 576px) {
    .tz-total {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*
---	ionRangeSlider ------------------------------------------------------------------*/

.irs {
    font-family: var(--body-font-family) !important;
}

.irs--round .irs-min,
.irs--round .irs-max {
    color: var(--text-color);
    background-color: rgba(167, 167, 151, .2);
}

.irs--round .irs-line {
    opacity: .2;
    background-color: var(--primary-color) !important;
}

.irs--round .irs-bar {
    background-color: var(--primary-color) !important;
}

.irs--round .irs-handle {
    border: 4px solid var(--primary-color) !important;
    background-color: var(--secondary-color);
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    color: var(--secondary-color) !important;
    background-color: var(--primary-color) !important;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
    background-color: var(--secondary-color);
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    border-top-color: var(--primary-color) !important;
}

/*
---	CAROUSEL ------------------------------------------------------------------*/

.carousel {
    padding-bottom: 54px;
}

.carousel-control-prev,
.carousel-control-next {
    padding-bottom: 54px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    border-radius: 50%;
    background-color: rgba(167, 167, 151, .8);
    background-size: 16px 16px;
}

.carousel-indicators {
    align-items: center;
    margin-bottom: 0;
}

    .carousel-indicators [data-bs-target] {
        width: 32px;
        height: 32px;
        opacity: 1;
        border: none;
    }

        .carousel-indicators [data-bs-target] img {
            width: 32px;
            height: 32px;
            object-fit: cover;
        }

    .carousel-indicators .active {
        width: 44px;
        height: 44px;
    }

        .carousel-indicators .active img {
            width: 44px;
            height: 44px;
        }


/*
---	WEDDING PARTY CARD ------------------------------------------------------------------*/

.wedding-party-card-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.wedding-party-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

    .wedding-party-card img {
        width: 280px;
        height: 280px;
        margin-bottom: 10px;
        border-radius: 50%;
        object-fit: cover;
    }

    .wedding-party-card h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .wedding-party-card h4 {
        font-size: 12px;
        margin-bottom: 20px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--text-color);
    }

    .wedding-party-card p {
        font-size: 12px;
        max-width: 280px;
        letter-spacing: .1em;
    }

/*Book now vutton form mobile only css*/
.book-now {
    display: block;
}

/* CSS for mobile */
/*@media only screen and (max-width: 767px) {
    .book-now {
        display: block;
    }
}*/

.center-vertically {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.unselectable {
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: transparent;
}

#rsvp-success {
    display: none;
    height: 605px;
}

#accommodations p, #our-story p, #our-wedding p, .content-box, .container > p {
    max-width: 600px;
    margin: 0 auto;
    padding: 8px;
    text-align: center;
}

#itinerary p {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.inline-package {
    display: inline;
}

/*Travel Information icons css*/
.fourdiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Space between columns */
}

.svgdiv {
    flex: 1;
    min-width: 18%;
    padding: 2px;
    box-sizing: border-box;
    text-align: center;
}

    .svgdiv p {
        text-align: center !important;
    }

.icon {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

@media (max-width: 768px) {

    /* Adjust the breakpoint for your desired mobile layout */
    .svgdiv {
        flex-basis: 50%;
    }

        .svgdiv p {
            text-align: center !important;
        }
}


/*RSVP modal css*/
.modal-content {
    width: 400px;
    height: auto;
    margin-left: 200px;
    border-radius: unset;
}

@media (max-width: 768px) {
    .modal-content {
        width: 400px;
        height: auto;
        margin-left: unset;
    }
}

.modal-body {
    text-align: center;
}

.do-later {
    border-radius: unset;
    width: 170px;
    height: 44px;
    background-color: white;
    color: gray;
    font-weight: 600;
}

.reserve-room {
    border-radius: unset;
    width: 170px;
    height: 44px;
    background-color: #008CB4;
    padding-top: 8.5px;
    font-weight: 600;
}

.reserve-room:hover {
   background-color: #23B4D3;
}

.modal-footer {
    border-top: unset;
}

/*Destify Support button*/
@media screen and (min-width: 640px) {
    .top-right-text {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }
    .destify-support-mobile{
        display: none;
    }
}

@media screen and (max-width: 639px) {
    .top-right-text {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
        display: none;
    }
}

    .top-right-text:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }