html,
body {
    font-family: 'Figtree', sans-serif;
    scroll-behavior: smooth;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 500;
}

.bold {
    font-weight: 600;
}

.image-background {
    position: relative;
    background: url('img/1-min.jpg') no-repeat center center / cover;
}

.image-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the last value to change the overlay opacity */
}

.bg-gold {
    background-color: rgba(241, 211, 146, 1)
}

.text-gold {
    color: rgba(241, 211, 146, 1)
}

.bg-dark {
    background-color: rgba(35, 32, 32, 1);
}

.bg-gold-transparent {
    background-color: rgba(241, 211, 146, 0.5)
}

.bg-dark-transparent {
    background-color: rgba(35, 32, 32, 0.8)
}

.navbar {
    z-index: 3 !important;
    background-color: rgba(35, 32, 32, 1);
    border-bottom: 1px solid rgba(241, 211, 146, 1);

    a {
        color: rgba(241, 211, 146, 1);
        text-decoration: none;
    }
}

.navbar-toggler {
    background-color: rgba(241, 211, 146, 1);
}

.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link:visited {
    color: rgba(241, 211, 146, 1)
}

.logo {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 70px;
    z-index: 2;
    border-radius: 50%;
    margin: auto;
    left: 0;
    right: 0;
}

.logoSmall {
    width: 100px;
    top: 50px;
    position: absolute;
    border-radius: 50%;
    margin: auto;
    left: 0;
    right: 0;
}

.intro {
    color: rgba(241, 211, 146, 1);
}

.btn {
    color: black;
    background-color: rgba(241, 211, 146, 1);
}

.phoneNumber {
    color: black;
}

.list-group {
    border: none !important;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #000;
    background-color: rgba(241, 211, 146, 1);

}

.list-group-item:last-child {
    border-bottom: none;
}
