*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: #6E625B;
    background: #FFFFFF;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    color: #150F0E;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #B24A3C;
    text-decoration: none;
}

a:hover {
    color: #7F241E;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

button,
input,
select,
textarea {
    margin: 0;
    font: inherit;
}

button {
    cursor: pointer;
}

.container,
.container-fluid,
.container-xxl {
    width: 100%;
    padding-right: var(--site-gutter, .75rem);
    padding-left: var(--site-gutter, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.container {
    max-width: 1140px;
}

.container-xxl {
    max-width: 1320px;
}

.row {
    --site-gutter-x: 1.5rem;
    --site-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--site-gutter-y) * -1);
    margin-right: calc(var(--site-gutter-x) * -.5);
    margin-left: calc(var(--site-gutter-x) * -.5);
}

.row > * {
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--site-gutter-x) * .5);
    padding-left: calc(var(--site-gutter-x) * .5);
    margin-top: var(--site-gutter-y);
}

.g-0 { --site-gutter-x: 0; --site-gutter-y: 0; }
.g-2 { --site-gutter-x: .5rem; --site-gutter-y: .5rem; }
.g-3 { --site-gutter-x: 1rem; --site-gutter-y: 1rem; }
.g-4 { --site-gutter-x: 1.5rem; --site-gutter-y: 1.5rem; }
.g-5 { --site-gutter-x: 3rem; --site-gutter-y: 3rem; }

.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
    .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .text-md-start { text-align: left !important; }
    .text-md-end { text-align: right !important; }
    .mb-md-0 { margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
    .text-lg-end { text-align: right !important; }
    .p-lg-0 { padding: 0 !important; }
    .px-lg-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
    .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
    .ms-lg-0 { margin-left: 0 !important; }
    .d-lg-flex { display: flex !important; }
    .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler { display: none; }
}

.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-none { display: none !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-column { flex-direction: column !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.align-items-center { align-items: center !important; }
.align-self-end { align-self: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-start { justify-content: flex-start !important; }
.gap-3 { gap: 1rem !important; }

.position-relative { position: relative !important; }
.position-fixed { position: fixed !important; }
.fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; }
.top-50 { top: 50% !important; }
.start-50 { left: 50% !important; }
.translate-middle { transform: translate(-50%, -50%) !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.vh-100 { height: 100vh !important; }
.img-fluid { max-width: 100%; height: auto; }

.m-0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: 1.5rem !important; }
.my-6 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.ms-4 { margin-left: 1.5rem !important; }
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: .25rem !important; }
.me-2 { margin-right: .5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.p-1 { padding: .25rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.px-0 { padding-right: 0 !important; padding-left: 0 !important; }
.px-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.ps-3 { padding-left: 1rem !important; }
.pe-0 { padding-right: 0 !important; }

@media (min-width: 768px) {
    .p-md-5 { padding: 3rem !important; }
}

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-light { color: #FFF6EF !important; }
.text-white { color: #FFFFFF !important; }
.text-primary { color: #B24A3C !important; }
.bg-white { background-color: #FFFFFF !important; }
.bg-light { background-color: #FFF6EF !important; }
.bg-dark { background-color: #150F0E !important; }
.bg-primary { background-color: #B24A3C !important; }

.fw-bold { font-weight: 700 !important; }
.fs-1 { font-size: calc(1.375rem + 1.5vw) !important; }
.fs-5 { font-size: 1.25rem !important; }
.small, small { font-size: .875em; }
.display-1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1.05; }
.display-4 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
.display-5 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }
.display-6 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; }

.rounded { border-radius: 6px !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-bottom { border-bottom-right-radius: 6px !important; border-bottom-left-radius: 6px !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 999px !important; }
.border { border: 1px solid rgba(21, 15, 14, .15) !important; }
.border-end { border-right: 1px solid rgba(21, 15, 14, .15) !important; }
.border-light { border-color: rgba(255, 246, 239, .6) !important; }
.border-primary { border-color: #B24A3C !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
}

.btn-primary {
    color: #FFFFFF;
    background-color: #B24A3C;
    border-color: #B24A3C;
}

.btn-outline-light {
    color: #FFF6EF;
    border-color: #FFF6EF;
    background: transparent;
}

.btn-outline-primary {
    color: #B24A3C;
    border-color: #B24A3C;
    background: transparent;
}

.btn-lg {
    padding: .8rem 1rem;
    font-size: 1.1rem;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: .35rem .6rem;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 4px;
    background: transparent;
}

.navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    position: relative;
}

.navbar-toggler-icon::before {
    content: "☰";
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 1;
}

.collapse:not(.show) {
    display: none;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: .5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: inherit;
    content: "/";
}

.active {
    color: #B24A3C;
}

.accordion-collapse:not(.show) {
    display: none;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 0;
    text-align: left;
}

.accordion-button::after {
    margin-left: auto;
    content: "+";
    font-weight: 800;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    min-height: calc(3.5rem + 2px);
    padding: 1rem .75rem;
    color: #150F0E;
    background: #FFFFFF;
    border: 1px solid rgba(21, 15, 14, .18);
    border-radius: 6px;
}

textarea.form-control {
    min-height: 120px;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem .75rem;
    color: #6E625B;
    pointer-events: none;
    transform-origin: 0 0;
    transition: opacity .1s ease, transform .1s ease;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}

.form-floating > textarea.form-control {
    padding-top: 1.85rem;
    padding-bottom: .75rem;
    min-height: 160px;
    resize: vertical;
}

.form-floating > textarea.form-control ~ label {
    height: auto;
    opacity: .85;
    transform: scale(.85) translateY(-.35rem) translateX(.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating > textarea.form-control:focus ~ label {
    opacity: .85;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: currentColor;
    animation: spinnerGrow .9s linear infinite;
}

@keyframes spinnerGrow {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}
