@charset "UTF-8";
@font-face {
  font-family: "Balgruf";
  src: url("/balgruf.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: #F5F5F5;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.text-left {
  text-align: left;
}

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

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

.hidden {
  display: none;
}

.row {
  margin-left: 0px;
  margin-right: 0px;
}

p, .content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 2px;
  font-size: 16px;
  color: #222222;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gentium Plus", serif;
  font-weight: 700;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  color: #0F0F0F;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-bottom: 0.5em;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #FAFAFA;
}

.dark p, .dark .content {
  color: #FAFAFA;
}

h2, .heading-md {
  font-size: 48px;
}

h3, .heading-sm {
  font-size: 24px;
}

.btn {
  font-family: "Inter", sans-serif;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.54px;
  font-family: "Inter", sans-serif;
  padding: 5px 15px;
  color: white;
  position: relative;
  margin-top: 20px;
}

.btn-secondary {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.54px;
  font-family: "Gentium Plus", serif;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #0F0F0F;
  position: relative;
  top: 5px;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 20px;
  height: 3px;
  background-color: #C40606;
  transition: width 0.25s;
}

.btn-secondary:hover {
  color: #0F0F0F;
}
.btn-secondary:hover:before {
  width: 51px;
}

/* Override Bootstrap btn-primary */
.btn-primary {
  background-color: rgba(196, 6, 6, 0.8);
  border: 2px solid rgba(158, 0, 0, 0.8);
  color: white;
  position: relative; /* Needed for the pseudo-element positioning */
  overflow: hidden; /* Hide the pseudo-element when it moves outside */
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* Create the flash effect using a pseudo-element */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%; /* Start well off to the left */
  width: 50%; /* Adjust width for the desired flash size */
  height: 100%;
  background: rgba(190, 202, 192, 0.3); /* This is the flash color (blue tint) */
  transform: skewX(-25deg); /* Gives it a diagonal look */
  transition: left 0.5s ease; /* Animates the horizontal movement */
  z-index: 0; /* Place it behind the button text */
}

/* Ensure that the button’s text and content remain on top */
.btn-primary > * {
  position: relative;
  z-index: 1;
}

/* Hover state: animate the flash across the button */
.btn-primary:hover {
  color: #fff; /* Keeps the text white on hover */
  border-color: rgb(255, 255, 255);
  background-color: rgba(196, 6, 6, 0.99);
}

.btn-primary:hover::before {
  left: 125%; /* Move the pseudo-element off the right side */
}

.supertitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 2px;
  font-family: "Gentium Plus", serif;
  text-transform: uppercase;
  color: #C40606;
  margin-bottom: -0.1em;
}

.hero.base {
  min-height: 100vh;
  background-image: url("/images/heroBackground.png");
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (min-width: 992px) {
  .hero.base {
    height: 100vh;
  }
}
.hero.base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.25) 100%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}
.hero.base h1 {
  color: #FAFAFA !important;
  font-size: 60px;
}
@media (max-width: 768px) {
  .hero.base h1 {
    font-size: 40px;
  }
}
.hero.base p {
  color: #FAFAFA !important;
  font-size: 20px;
}
@media (max-width: 768px) {
  .hero.base p {
    font-size: 18px;
  }
}
.hero.base .hero-link-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-top: 55px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  top: 0px;
  transition: top 0.2s;
  cursor: pointer;
  z-index: 10;
  min-width: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero.base .hero-link-item {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.hero.base .hero-link-item:hover {
  top: -10px;
}
.hero.base .hero-link-item span {
  text-decoration: none;
  color: #e21d1d;
  font-size: 20px;
}
.hero.base .hero-link-item img {
  height: 64px;
  object-fit: contain;
}
.hero.base hr {
  position: relative;
  max-width: 500px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2705882353);
  border: none;
  margin: 2rem auto;
  opacity: 1;
  overflow: visible;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  /*
  &::before,
  &::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 2px;
      background: #FAFAFA;
      bottom: 2px;
      display: block;
  }

  &::before {
      left: -1px;
      transform: rotate(-230deg);
      transform-origin: left bottom;
  }

  &::after {
      right: -1px;
      transform: rotate(230deg);
      transform-origin: right bottom;
  }*/
}
.hero.base .container, .hero.base .row {
  height: 100%;
}
.hero.base .row {
  align-items: center;
}

nav, .nav {
  z-index: 9999;
  width: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
}
nav .nav-toggle, .nav .nav-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 20px;
}
nav .nav-link, nav .nav-item, .nav .nav-link, .nav .nav-item {
  color: white;
  text-align: center;
  padding: 0px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2px;
  font-family: Arimo;
  margin: 0px 10px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}
nav .nav-link:before, nav .nav-item:before, .nav .nav-link:before, .nav .nav-item:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 14px;
  width: 0px;
  height: 3px;
  border-radius: 2px;
  background-color: #C40606;
  transition: width 0.25s;
}
nav .nav-link.active:before, nav .nav-item.active:before, .nav .nav-link.active:before, .nav .nav-item.active:before {
  width: 30px;
}
nav .nav-link:hover:before, nav .nav-item:hover:before, .nav .nav-link:hover:before, .nav .nav-item:hover:before {
  width: 40px;
}
nav.sticky, .nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
nav .far-right, .nav .far-right {
  position: absolute;
  right: 20px;
}
@media (max-width: 992px) {
  nav, .nav {
    display: none;
    padding: 15px 20px;
    justify-content: flex-end;
  }
  nav.sticky, .nav.sticky {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  nav .nav-toggle, .nav .nav-toggle {
    display: block;
    position: relative;
    right: auto;
    top: auto;
  }
  nav .nav-item-wrapper, .nav .nav-item-wrapper {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 15px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  nav .nav-item-wrapper.active, .nav .nav-item-wrapper.active {
    display: flex;
  }
  nav .nav-item, .nav .nav-item {
    display: block;
    text-align: center;
    padding: 15px 0;
    margin: 0;
    width: 100%;
  }
  nav .nav-item:before, .nav .nav-item:before {
    display: none;
  }
  nav .far-right, .nav .far-right {
    display: none;
  }
}

@media (min-width: 993px) {
  body.nav-padding {
    padding-top: 72px;
  }
}
@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInRightShort {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInUpShort {
  -webkit-animation-name: fadeInUpShort;
  animation-name: fadeInUpShort;
}

.fadeInDownShort {
  -webkit-animation-name: fadeInDownShort;
  animation-name: fadeInDownShort;
}

.fadeInRightShort {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort;
}

.fadeInLeftShort {
  -webkit-animation-name: fadeInLeftShort;
  animation-name: fadeInLeftShort;
}

.fadeInDownShort, .fadeInUpShort, .fadeInRightShort, .fadeInLeftShort {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.footer {
  background-color: black;
  color: white;
  padding-top: 65px;
  padding-bottom: 50px;
}
.footer .icon-wrapper {
  position: relative;
}
.footer .icon-wrapper img {
  position: absolute;
  top: 5px;
  left: 0px;
  width: 18px;
}
.footer .icon-wrapper a {
  margin-left: 22px;
  display: inline-block;
}
.footer a {
  color: white;
  font-size: 13px;
  display: block;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer p {
  color: white;
  font-size: 13px;
  margin-top: 14px;
  line-height: 145%;
  letter-spacing: 2px;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5 {
  color: white;
}

.location {
  /* Let’s assign each image a specific width, height, and position.
     Adjust these values to match your attached design. */
  /* Make sure the image inside each wrapper fills the box without cropping */
}
.location .location-image-wrapper {
  /* Container for the collage */
  position: relative;
  width: 100%;
  max-width: 1200px; /* optional max width */
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .location .location-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    padding: 14px 0;
  }
  .location .location-image-wrapper .wrapper {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    margin: 0;
    border-radius: 6px;
    display: block;
  }
  .location .location-image-wrapper .wrapper:nth-child(n+5) {
    display: none !important;
  }
}
.location .location-image-wrapper .wrapper {
  /* Each image wrapper is layered absolutely in the container */
  position: absolute;
  /* Optional styling */
  border-radius: 6px;
  background-color: #000; /* so letterboxing is black if aspect ratios differ */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2);
}
.location .location-image-wrapper .wrapper:nth-child(1) {
  width: 300px;
  height: 130px;
  top: 25px;
  right: 20px;
}
.location .location-image-wrapper .wrapper:nth-child(2) {
  width: 210px;
  height: 224px;
  top: 145px;
  left: -40px;
}
.location .location-image-wrapper .wrapper:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 174px;
  left: 184px;
}
.location .location-image-wrapper .wrapper:nth-child(4) {
  width: 360px;
  height: 270px;
  top: 387px;
  left: -40px;
}
@media (max-width: 768px) {
  .location .location-image-wrapper .wrapper {
    height: 100%;
    width: 100%;
    position: static;
  }
}
.location .location-image-wrapper .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.7s ease-in-out;
}
.location .location-image-wrapper .wrapper img:hover {
  transform: scale(2.1);
  cursor: pointer;
}
.location .location-title {
  position: relative;
  top: 209px;
  left: -220px;
}
@media (max-width: 768px) {
  .location .location-title {
    top: 0;
    left: 0;
  }
}
.location .button-wrapper {
  position: relative;
  top: 173px;
  left: -80px;
}
@media (max-width: 768px) {
  .location .button-wrapper {
    top: 0;
    left: 0;
  }
}

.location .col-in {
  position: relative;
  top: -203px;
  left: -30px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .location .col-in {
    top: 0;
    left: 0;
  }
}
.location .col-in > * {
  pointer-events: auto;
}

.phase-row:nth-child(odd) .phase-flair {
  background-image: linear-gradient(145deg, #d42929, #9e1717);
  border-radius: 0 50px 0 50px;
}

.phase-row:nth-child(even) .phase-flair {
  background-image: linear-gradient(145deg, #009b13, #002705);
  border-radius: 0px 50px 0px 50px;
}

.phase-row {
  margin-bottom: 50px;
}

.faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.faq .faq-item {
  border-bottom: 1px solid #333;
  padding: 1rem 0;
}
.faq .faq-item:last-child {
  border-bottom: none;
}
.faq .faq-item .faq-question {
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  transition: color 0.3s ease;
}
.faq .faq-item .faq-question:hover {
  color: #C40606;
}
.faq .faq-item .faq-question:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq .faq-item .faq-question.active:after {
  content: "-";
}
.faq .faq-item .faq-answer {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
  display: none;
  padding-left: 1rem;
  border-left: 2px solid #C40606;
  line-height: 1.5;
}
.faq .faq-item.open .faq-answer {
  display: block;
}

.section.cta {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 70px;
  padding-bottom: 50px;
  background-image: url(/images/ozarksLight4.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  /* Make sure it covers the area */
  background-size: cover;
  background-repeat: no-repeat;
  /* Start at center */
  background-position: center center;
  /* Remove the fixed attachment */
  background-attachment: scroll;
}
.section.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.section.cta > * {
  position: relative;
  z-index: 2;
}
.section.cta h3 {
  font-size: 40px;
}

/*.membership {
    background-image: url(../images/membershipForest.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: soft-light;

    position: relative;

    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.65);
        background-blend-mode: multiply;
        z-index: 1;
    }

    & > * {
        position: relative;
        z-index: 2;
    }
}*/
/* Upcoming Events Section with Animated Gradient Background */
#upcoming-events {
  position: relative;
  padding: 50px 20px;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

#upcoming-events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #222, #444, #666, #888, #aaa, #ccc);
  opacity: 0.15;
  z-index: -1;
}

/* Section Title */
#upcoming-events h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  letter-spacing: 1px;
}

/* Event Cards Container */
.events-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Base Event Card Styles */
.event-card {
  background: #1e1e1e;
  border: 2px solid transparent;
  border-radius: 8px;
  width: 350px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, border-color 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

/* Accent Colors for Event Cards */
.event-card.red {
  border-color: #ff6b6b;
}

.event-card.blue {
  border-color: #339af0;
}

.event-card.green {
  border-color: #C40606;
}

.event-card.orange {
  border-color: #ff922b;
}

/* Event Date Styling */
.event-date {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
}

.event-date .day {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
}

.event-date .month {
  font-size: 1.2em;
  letter-spacing: 1px;
  color: #ccc;
}

/* Event Details Styling */
.event-details {
  padding: 20px;
}

.event-title {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #fff;
}

.event-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #ddd;
}

.event-location {
  font-size: 0.9em;
  color: #aaa;
  font-style: italic;
}

.massTimes .card {
  position: relative;
  margin-bottom: 45px;
  padding: 20px 10px;
}
.massTimes .card hr {
  background: linear-gradient(to right, transparent, #000 50%, transparent);
  height: 1px;
  border: none;
  margin: 20px 0;
}
.massTimes .card::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: -9px;
  width: 90%;
  height: 50%;
  background-color: #0C6FAC;
  border-radius: 10px;
  z-index: -1;
}
.massTimes .announcements .announcement {
  position: relative;
  padding: 15px;
  background-color: white;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  margin-bottom: 30px;
}
.massTimes .announcements .announcement::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: -9px;
  width: 40%;
  height: 50%;
  background-color: #C40606;
  border-radius: 10px;
  z-index: -1;
}

#calendar {
  cursor: pointer;
}
#calendar a {
  color: #930404;
}
#calendar .fc-event-start {
  background-color: #6f0101;
  border-color: #6f0101;
  color: #FAFAFA;
}
#calendar .masstimes-event {
  background-color: #005851;
  border-color: #005851;
  color: #FAFAFA;
}
#calendar .confession-event {
  background-color: #2b2f33;
  border-color: #2b2f33;
  color: #FAFAFA;
}
#calendar .mass-sj {
  font-weight: 800;
  color: #08ff00;
  margin-right: 5px;
}
#calendar .mass-sa {
  font-weight: 800;
  color: #ff0505;
  margin-right: 5px;
}
#calendar .mass-sm {
  font-weight: 800;
  color: #62d2ff;
  margin-right: 5px;
}
#calendar .mass-sl {
  font-weight: 800;
  color: #ffff4c;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .fc-today-button {
    display: none !important;
  }
}
.calendar-category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.calendar-category-buttons .radio-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  padding-left: 50px;
  user-select: none;
}
.calendar-category-buttons .radio-button input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.calendar-category-buttons .radio-button input:checked ~ .toggle {
  background-color: #7a0404;
}
.calendar-category-buttons .radio-button input:checked ~ .toggle:before {
  transform: translateX(20px);
}
.calendar-category-buttons .radio-button .toggle {
  position: absolute;
  left: 0;
  height: 24px;
  width: 44px;
  background-color: #777777;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.calendar-category-buttons .radio-button .toggle:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.calendar-category-buttons .radio-button:hover .toggle {
  background-color: #5e5e5e;
}
.calendar-category-buttons .radio-button:hover input:checked ~ .toggle {
  background-color: #930404;
}

.calendar-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
}
.calendar-popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 20px;
  padding-top: 30px;
  background-color: #FAFAFA;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  text-align: center;
  cursor: default;
}
.calendar-popup .popup-content h3 {
  font-size: 20px;
}
.calendar-popup .popup-content .close {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
  color: #111139;
}

.fc-dayGridMonth-view .scrollable-day-cell .fc-daygrid-day-events {
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
}
.fc-dayGridMonth-view .scrollable-day-cell .fc-daygrid-day-events::-webkit-scrollbar {
  width: 4px;
}
.fc-dayGridMonth-view .scrollable-day-cell .fc-daygrid-day-events::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}
.fc-dayGridMonth-view .scrollable-day-cell .fc-daygrid-day-events::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}
.fc-dayGridMonth-view .scrollable-day-cell .fc-daygrid-day-events::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.fc-daygrid-more-link {
  font-weight: bold;
  margin: 3px 0;
  display: block;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 2px;
}
.fc-daygrid-more-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

#map {
  height: 500px;
  border-radius: 20px;
  border: 1px solid #C40606;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  left: 460px;
  top: 100px;
}

@media (max-width: 768px) {
  .map-wrapper {
    left: 0;
    top: 0;
  }
  #map {
    max-height: 500px;
    width: 100%;
  }
  .map-sidebar {
    width: 240px !important;
  }
}
.map-sidebar {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 350px;
  height: 100%;
  height: calc(100% - 2px);
  background-color: #fff;
  z-index: 1000;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  padding: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.map-sidebar .location-in {
  padding: 20px;
}
.map-sidebar .location-extra {
  margin-bottom: 3px;
}
.map-sidebar .location-extra strong {
  color: #C40606;
}
.map-sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.map-sidebar p {
  font-size: 14px;
  line-height: 1.25;
}
.map-sidebar .bg-image {
  width: 100%;
  height: 150px;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

.contact {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}
.contact h2 {
  font-weight: 600;
  color: #333;
}
.contact form .form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}
.contact form .form-control, .contact form .form-select {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  transition: all 0.3s ease;
}
.contact form .form-control:focus, .contact form .form-select:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  border-color: #0056b3;
}
.contact form textarea.form-control {
  min-height: 120px;
}
.contact form .btn-primary {
  background-color: #C40606;
  border: none;
  padding: 12px 35px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.contact form .btn-primary:hover {
  background-color: #f50808;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact .contact-info {
  background-color: #fff;
  padding: 35px 30px;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact .contact-info h3 {
  font-weight: 600;
  margin-bottom: 33px;
  color: #333;
  position: relative;
}
.contact .contact-info h3:after {
  content: "";
  position: absolute;
  left: 80px;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: #C40606;
}
.contact .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact .contact-info .info-item i {
  color: #C40606;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}
.contact .contact-info .info-item span {
  color: #555;
  line-height: 1.6;
}
.contact .contact-info a {
  text-decoration: none;
  color: #555;
  font-size: 120%;
}
.contact .contact-info a:hover {
  text-decoration: underline;
}
.contact #formMessage.success {
  color: #28a745;
}
.contact #formMessage.error {
  color: #dc3545;
}
@media (max-width: 767px) {
  .contact .contact-info {
    margin-top: 40px;
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: #C40606;
  opacity: 0.05;
  pointer-events: none;
}

.section-head {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  background-position-y: top;
  background-size: cover;
}
.section-head .section-in {
  position: relative;
  z-index: 1;
}
.section-head h1 {
  color: #C40606;
}
.section-head h1 .banner-text {
  color: white;
}
.section-head .paragraph p {
  color: white;
  text-align: center;
}

.section-head::before {
  position: absolute;
  background-color: #000000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  display: block;
  content: "";
  z-index: 0;
}/*# sourceMappingURL=main.css.map */