:root {
  --color-primary: #cc1b1a;
  --color-secondary: #701a19;
  --content-font: "Josefin Sans";
  --title-font: "Raleway", sans-serif;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.title-font {
  font-family: var(--title-font);
}

.content-font {
  font-family: var(--content-font);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 0.4s ease, left 0.4s ease;
}

.nav-link:hover::after {
  left: 0;
  width: 100%;
  right: auto;
}

.title {
  color: var(--color-primary);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  z-index: 9999 !important;
  bottom: -5px !important;
}

.custom-line-height {
  line-height: 60px !important;
}

@media screen and (max-width: 780px) {
  .custom-line-height {
    line-height: 50px !important;
  }
}

@media screen and (max-width: 580px) {
  .custom-line-height {
    line-height: 35px !important;
  }
}

.section-gap {
  padding: 80px 0;
}


.gradient-icon i {
  background: linear-gradient(90deg, #701A19, #C91E19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.popup {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #0000005c;
  backdrop-filter: blur(5px);
  padding: 20px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
  z-index: 9999;
  border-radius: 0px;
  height: 100%;
}
 .notifyjs-corner {
    z-index: 9999 !important;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.552);
  z-index: 999;
}

.popup-form {
  max-width: 420px;
  min-width: 300px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}
