:root {
    --primary-color: #A61123;
    --secondary-color: #FFB347;
    --light-color: #FBF1D6;
    --brand-color: #360000;
}

body {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #111;
    background: whitesmoke;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Philosopher", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
}

.text-theme {
    color: var(--primary-color);
}

.bg-theme {
    background-color: var(--brand-color);
    color: #f7f7f7;
}

.bg-om {
    position: relative;
    background: url('../images/bg_om.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    z-index: 1;
}

.bg-om::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(251, 241, 215, 0.9);
    z-index: -1;
    content: "";
}

.bg-horoscope,
.bg-astro {
    background-color: var(--brand-color);
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.bg-horoscope {
    background-image: url('../images/2150354477.jpg');
}

.bg-astro {
    background-image: url('../images/astro_bg.jpg');
}

.rounded-box {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rounded-box>div {
    margin-bottom: 1rem;
    width: 152px;
    height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #f7f7f7;
    border-radius: 50%;
}

/* navbar */
nav.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background: var(--brand-color);
    background: linear-gradient(0deg, #520000, var(--brand-color));
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.65);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: rgba(255, 255, 255, 1);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

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

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

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

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

/* image-wrapper */
.image-wrapper {
    position: relative;
    display: block;
    margin: 4rem;
}

.image-wrapper img {
    position: relative;
    border-radius: 2.5rem;
}

.image-wrapper::after {
    position: absolute;
    content: '';
    left: 20px;
    bottom: -20px;
    border: solid 3px var(--primary-color);
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
    z-index: -1;
}

/* section title */
.section-title {
    position: relative;
    margin-bottom: 1.5rem;
}

.section-title div {
    position: relative;
    left: 0;
    top: 0;
    display: inline-block;
    color: var(--brand-color);
}

.section-title div::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    content: "";
    width: 40%;
    height: 1px;
    background-color: var(--secondary-color);
}

.section-title.text-center div::after {
    left: 30%;
}

/* footer */
footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--brand-color);
    color: #f7f7f7;
}

footer .section-title div {
    color: var(--secondary-color);
}

footer .section-title div::after {
    background-color: #f7f7f7;
}