@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap");

* {
    box-sizing: border-box;
}

.favFont {
    font-family: "Merriweather", serif;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 60, 60, 0.4);
}

.backg {
    background-color: rgba(61, 60, 60, 0.4);
}

.center-div {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100%;
}

.v-center-div {
    display: flex;
    align-items: center;
    height: 100%;
}

.bg-header, .footer-header, .footer-cont, .event-details, h2, h3, h4, h4, h6 {
    font-family: "Merriweather", sans-serif;
}

p {
    font-family: "Trebuchet MS", "Lucida Sans Unicode";
}

.philosophy {
    height: 30rem;
}

.philosophy h3, .small-header {
    font-family: "Oswald", sans-serif;
}

.slick-slide {
    margin: 0 3px;
}

.slick-track {
    display: flex;
    gap: 10px;
}

.story {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.slick-dots li button::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 2px solid #8f09dd; /* Tailwind orange-500 */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button::before {
    background-color: #8f09dd; /* Tailwind orange-500 */
    border-color: #8f09dd;
}

