* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;;
}

body.with-background {
    font-family: 'Poppins', sans-serif;
    background-image: url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
    /* color: rgb(215, 180, 100); */
    /* color: rgb(210, 200, 180); */
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: unset;
    text-decoration: none;
}

address {
    font-style: normal;
}

.background-image {
    position: fixed;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5);
}

.text-primary {
    color: rgb(215, 180, 100);
}

.pagetitle {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4rem, 5vw, 5rem);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    /* color: rgb(215, 180, 100); */
    color: #ffffff;
}

.title {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    /* color: #ffffff; */
}

.title.small {
    font-size: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-content-center {
    align-content: center;
}

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

.m-1 {
    margin: 0.5rem;
}

.m-2 {
    margin: 1rem;
}

.m-3 {
    margin: 1.5rem;
}

.m-4 {
    margin: 2rem;
}

.m-5 {
    margin: 2.5rem;
}

.m-6 {
    margin: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.mt-6 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 2.5rem;
}

.mb-6 {
    margin-bottom: 3rem;
}