:root {
    --light-brown: rgb(236, 228, 218);
    --mid-brown: rgb(236, 228, 218);
    --cream-brown: rgb(236, 228, 218);
    --dark-brown: rgb(236, 228, 218);
}

body {
    overflow-x: hidden;
    overflow-y: scroll
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}


.cinzel-decorative-regular {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}


.cinzel-heading {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.cinzel-btns {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}



@font-face {
    font-family: times;
    src: url("/static/fonts/times.ttf");
}

a {
    font-family: times;

}

button {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

#Reset {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h2 {
    font-family: "times";
}

/* h3 */
.times-bold-h3 {
    font-family: "times";
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
}

/* h5 */
h5 {
    font-family: helvetica;
}


@font-face {
    font-family: helvetica;
    src: url("/static/fonts/Helvetica.ttf");
}

p {
    font-family: "helvetica";
    font-size: 18px;
}

.font-times {
    font-family: "times";
}


.font-drk-brown {
    color: rgb(54, 48, 42);
}

.font-rosybrown {
    color: rgb(185, 165, 144);
}

.font-cream {
    color: rgb(236, 228, 218);
}

.font-20px {
    font-size: 20px;
}

.font-22px {
    font-size: 22px;
}

.font-40px {
    font-size: 40px;
}

.font-42px {
    font-size: 42px;
}

.font-54px {
    font-size: 54px;
}

.font-56px {
    font-size: 56px;
}

.font-70px {
    font-size: 70px;
}

.bkground-cream {
    background-color: var(--cream-brown);
}

.bkground-drk-brown {
    background-color: rgb(54, 48, 42);
}

.bkground-rosybrown {
    background-color: rgb(185, 165, 144);
}

.bkground-soft-brown {
    background-color: rgb(108, 84, 55);
}

.brown-underline {
    text-decoration: solid;
    text-decoration-line: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: rgb(54, 48, 42);
}

.rosybrown-underline {
    text-decoration: solid;
    text-decoration-line: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: rgb(185, 165, 144);
}

.brownbtn {
    background-color: rgb(54, 48, 42);
    color: rgb(185, 165, 144);
    font-size: 15px;
    padding: 22px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
}

.wobble {
    transition: transform 0.1s ease-in-out;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

/* Apply animation on hover */
button.wobble:hover {
    animation: wiggle 0.3s ease-in-out;
}

.brownbtn-2 {
    background-color: rgb(54, 48, 42);
    color: rgb(185, 165, 144);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 160px;
}

.brownbtn-2:hover {
    background-color: rgb(236, 228, 218);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 160px;
    font-style: bold;
}

.rosy-brwn-btn {
    background-color: rgb(185, 165, 144);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 120px;
    font-style: bold;
    margin-right: 5px;
}

.rosy-brwn-btn:hover {
    background-color: rgb(236, 228, 218);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 120px;
    font-style: bold;
    margin-right: 5px;
}


.events-rosy-brwn-btn {
    background-color: rgb(185, 165, 144);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
    font-style: bold;
    margin-right: 5px;
}

.events-rosy-brwn-btn:hover {
    background-color: rgb(236, 228, 218);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
    font-style: bold;
    margin-right: 5px;
}

.events-cream-btn {
    background-color: rgb(236, 228, 218);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
    font-style: bold;
    margin-right: 5px;
}

.events-cream-btn:hover {
    background-color: rgb(236, 228, 218);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
    font-style: bold;
    margin-right: 5px;
}

.rosy-brwn-btn-2 {
    background-color: rgb(185, 165, 144);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 120px;
    font-style: bold;
    margin-right: 5px;
    display: inline;
}

.rosy-brwn-btn-2:hover {
    background-color: rgb(54, 48, 42);
    color: rgb(236, 228, 218);
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 120px;
    font-style: bold;
    margin-right: 5px;
    text-decoration: none;
}

.light-cream-btn {
    background-color: rgb(236, 228, 218);
    color: rgb(54, 48, 42);
    font-size: 15px;
    padding: 22px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
}

.light-cream-btn:hover {
    background-color: rgb(54, 48, 42);
    color: rgb(236, 228, 218);
    font-size: 15px;
    padding: 22px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    width: 280px;
}

.circle-wrapper {
    max-width: 70%;
    float: right;
}

.card {
    background-color: rgb(185, 165, 144) !important;
    border: 0;
}

.card-footer {
    padding: 10px !important;
    background-color: none !important;
    border-top: 0 !important;
}

.footer {
    width: 100%;
    height: 100%;
    line-height: 60px;
    border-top: 1px solid rgba(54, 48, 42, 0.1);
}

.footer-text {
    color: rgb(54, 48, 42);
    text-align: left;
    font-weight: bold;

}

.footer-text-2 {
    color: rgb(54, 48, 42);
    text-decoration: none;

}

a.no-decor {
    color: rgb(54, 48, 42);
    text-decoration: none;
}

.img-sizing img {
    display: block;
    max-width: 160px;
    max-height: 95px;
    width: auto;
    height: auto;
}

.img-wrapper-home-1 {
    width: auto;
    height: auto;
}

.img-wrapper-home-1 img {
    max-width: 100%;
    margin: auto;
    display: flex;

}

.img-wrapper-home-2 {
    width: auto;
    height: auto;
}

.img-wrapper-home-2 img {
    max-width: 80%;
    margin: auto;
    display: flex;
}

.img-wrapper-about-1 {
    width: 100%;
    height: auto;
}

.img-wrapper-about-1 img {
    max-width: 70%;
    margin: auto;
    display: flex;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.img-wrapper-about-2 {
    width: 100%;
    height: auto;
}

.img-wrapper-about-2 img {
    max-width: 80%;
    margin: auto;

}

.large-photo {
    background: url("/static/img/large-img.png");
    background-size: cover;
    height: 800px;
}

.large-photo-2 {
    background: url("/static/img/large-img.2.png");
    background-size: cover;
    height: 800px;
}

.large-photo-3 {
    background: url("/static/img/large-img.4.png");
    background-size: cover;
    height: 800px;
}

.list-group-item {
    background-color: rgba(253, 252, 252, 0) !important;
}

.social-media-icons svg {
    fill: rgb(54, 48, 42);
}

.text-wrapper {
    padding: 50px;
    width: auto;
    height: auto;
}

.text-wrapper-about {
    padding-left: 50px;
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 0;
    width: auto;
    height: auto;
}

.text-wrapper-schedule {
    padding-top: 90px;
    width: auto;
    height: 400px;
}

.nav-border {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.row-width {
    width: 1700px;
    margin: auto;
}


@media (max-width: 768px) {
    .row-width {
        width: auto;
        margin: auto;
    }

    .font-56px {
        font-size: 50px;
    }

    .img-wrapper-home-1 img {
        max-width: 100%;
        margin: auto;
    }

    .img-wrapper-home-2 img {
        max-width: 100%;

    }

    h2 {
        text-align: center;
    }

    .footer h2 {
        text-align: center;
        font-size: 20px;
    }

    .social-media-icons {
        text-align: center;
    }

    .text-wrapper {
        height: auto;
    }
}

@media (max-width: 500px) {
    .text-wrapper {
        padding: 10px;
    }

    .text-wrapper-about {
        padding: 10px;
    }
}

@media (max-width: 400px) {
    .rs-track {
        will-change: transform;
    }

    .rs-text {
        font-size: 36px;
        padding-top: 9px;
        width: 321px;
        margin-left: 10px;
    }

    .brownbtn {
        padding: 16px;
        width: auto;
    }

    .font-54px {
        font-size: 50px;
    }

    .text-wrapper {
        padding: 10px;
    }

    h1 {
        font-size: 38px;
    }

    .font-42px {
        font-size: 38px;
    }

    .font-70px {
        font-size: 60px;
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;

    >.col,
    >[class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
}

.container-fluid {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.navbar-toggler {
    border-color: #b9a590;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b9a590' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(185, 165, 144, 0.25);
}