@font-face {
  font-family: "prompt";
  src: url("../fonts/Prompt-Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "prompt";
  src: url("../fonts/Prompt-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "prompt";
  src: url("../fonts/Prompt-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "prompt";
  src: url("../fonts/Prompt-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "prompt";
  src: url("../fonts/Prompt-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "prompt";
  src: url("../fonts/Prompt-ExtraBold.ttf");
  font-weight: 800;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "prompt", sans-serif;
  background-color: #ffffff;
  color: #212529;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

::selection {
  background: #11012E;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-moz-scrollbar {
  width: 5px;
}

::-ms-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #dedddf;
  border-radius: 5px;
}

::-moz-scrollbar-thumb {
  background: #64616e;
}

::-ms-scrollbar-thumb {
  background: #64616e;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 700;
}

h1,
.h1-styled {
  font-size: 90px;
}
@media (max-width: 991px) {
  h1,
  .h1-styled {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1-styled {
    font-size: 50px;
  }
}

h2,
.h2-styled {
  font-size: 60px;
}
@media (max-width: 1199px) {
  h2,
  .h2-styled {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2-styled {
    font-size: 40px;
  }
}

h3,
.h3-styled {
  font-size: 34px;
}
@media (max-width: 1199px) {
  h3,
  .h3-styled {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h3,
  .h3-styled {
    font-size: 28px;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.text-main {
  color: #ffffff;
  font-weight: 400;
}

.text-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0C5098;
}

.text-gradient {
  color: #0C5098;
}

.text-gradient-medium {
  color: #0C5098;
}

p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 0;
}
p.large {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 575px) {
  p.large {
    font-size: 20px;
  }
}
p.medium {
  font-size: 18px;
  font-weight: 600;
}
p a {
  color: #EE7900;
  text-decoration: none;
}

.btn {
  border-radius: 35px;
  padding: 10px 25px;
  border: 0px;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #ffffff;
}
.btn.btn-primary {
  background-color: #0C5098;
  transition: all 0.3s ease-in-out;
}
.btn.btn-primary:hover {
  background-color: #fff;
  transform: translateY(-5px);
  color: #0C5098;
}
.btn.btn-secondary {
  background-color: #EE7900;
  font-size: 14px;
  border: 2px solid white;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.btn.btn-secondary:hover {
  background-color: #d19c87;
  transform: translateY(-5px);
}
.btn.btn-secondary:active {
  transform: translateY(0);
}

/***************** List Style *****************/
.custom-list li {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 400;
  color: #212529;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .custom-list li {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .mobile-padding {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.accordion .accordion-item {
  margin-bottom: 30px;
  background-color: #EE7900;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 30px;
  overflow: hidden;
  font-size: 18px;
}
.accordion .accordion-item .accordion-button {
  background-color: #EE7900;
  box-shadow: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}
.accordion .accordion-item .accordion-button.collapsed {
  border-bottom: 2px solid transparent !important;
}
.accordion .accordion-item .accordion-button::after {
  background-image: url("../../images-2025/down-arrow.svg");
}
.accordion .accordion-item .accordion-body {
  padding: 20px;
}
.accordion .accordion-item .accordion-body span {
  font-weight: 500;
}

.quotes {
  font-style: italic;
}
.quotes span {
  font-style: normal;
  color: #EE7900;
}

.section-padding {
  padding: 100px 0px;
}

.cards {
  background-color: #EE7900;
  border-radius: 20px;
}
.cards .cards-heading {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.cards .card-dates {
  background-color: #0C5098;
  position: relative;
}
.cards .card-dates span {
  width: 20px;
  height: 20px;
}
.cards span {
  font-weight: 600;
}

.custom-lists {
  list-style-type: disc;
  padding-left: 20px;
  color: #212529;
}
.custom-lists span {
  color: #212529;
}
.custom-lists li {
  color: #212529;
  font-size: 18px;
}
.custom-lists li::marker {
  color: #EE7900;
}
.custom-lists li strong {
  font-weight: 600;
}
.custom-lists li a {
  color: #EE7900;
  text-decoration: none;
}

.text-orange {
  color: #EE7900;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 991px) {
  header {
    background: #0C5098;
    padding: 0px 12px;
  }
}
header.scrolled {
  position: fixed;
  opacity: 0;
  background-color: #0C5098;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease-in-out forwards;
}
header.scrolled:hover {
  opacity: 1;
  transition: 0.5s;
  animation: slideDown 0.5s ease-in-out forwards;
}
header.scroll-up {
  animation: slideUp 0.5s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.navbar {
  background: transparent !important;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 0.1s ease-out forwards;
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-brand {
    width: 60px;
    display: block;
  }
  .navbar .navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-brand {
    order: 1;
  }
}
.navbar .navbar-brand img {
  width: 100%;
  transition: height 0.3s ease;
}
@media (max-width: 767px) {
  .navbar .navbar-collapse {
    order: 4;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
  margin-right: 8px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-family: "prompt";
  font-size: 20px;
  color: #ffffff !important;
  padding: 12px;
  transition: color 0.3s ease-in-out;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: white !important;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
}
.navbar .navbar-brand-second {
  width: 130px;
}
.navbar .navbar-brand-second img {
  width: 100%;
  transition: height 0.3s ease;
}
@media (max-width: 1199px) {
  .navbar .navbar-brand-second {
    width: 80px;
  }
}
.navbar .navbar-toggler {
  border: none;
  background: transparent;
  color: white !important;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  background-image: none;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.banner {
  background: url("../../images-2025/web_banner.jpg") no-repeat center center/cover;
  height: calc(100vh - 50px);
  position: relative;
}
.banner .overlay .banner-content .banner-section {
  height: 100%;
  padding-top: 170px;
  padding-bottom: 100px;
}
.banner .overlay .banner-content .banner-section .banner-heading {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 0.5s forwards;
}
.banner .overlay .banner-content .banner-section .banner-heading .info-wrapper {
  background-color: #EE7900;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 30px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.8s forwards;
}
.banner .overlay .banner-content .banner-section .banner-heading .date-info::before,
.banner .overlay .banner-content .banner-section .banner-heading .location-info::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.banner .overlay .banner-content .banner-section .banner-heading .date-info::before {
  background-image: url("../../images-2025/date.svg");
}
.banner .overlay .banner-content .banner-section .banner-heading .location-info::before {
  background-image: url("../../images-2025/location.svg");
}
.banner .overlay .banner-content .banner-section .banner-heading .separator {
  font-weight: bold;
}
.banner .overlay .banner-content .banner-section .banner-heading h1 {
  font-family: "prompt";
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 4.5px;
  opacity: 0;
  animation: scaleUp 1s ease-out 1s forwards;
  text-shadow: 11px 43px 18px rgba(0, 0, 0, 0.02), 6px 24px 15px rgba(0, 0, 0, 0.08), 3px 11px 11px rgba(0, 0, 0, 0.13), 1px 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .banner .overlay .banner-content .banner-section .banner-heading h1 {
    font-size: 50px;
  }
}
.banner .overlay .banner-content .banner-section .banner-heading h1 span {
  color: #0C5098;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
}
.banner .overlay .banner-content .banner-section .banner-heading .countdown {
  text-shadow: 0px 5px 11px rgba(0, 0, 0, 0.88), 0px 19px 19px rgba(0, 0, 0, 0.77), 0px 43px 26px rgba(0, 0, 0, 0.45), 0px 77px 31px rgba(0, 0, 0, 0.13), 0px 120px 34px rgba(0, 0, 0, 0.02);
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 1.3s forwards;
}
.banner .overlay .banner-content .banner-section .banner-heading .countdown li span {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
}
.banner .overlay .banner-content .banner-section .banner-heading .countdown li span + span {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.banner .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #EE7900;
  padding: 0.2rem 0;
  position: relative;
  top: -15px;
  z-index: 1;
}
.banner .marquee {
  display: inline-block;
  animation: marquee 60s linear infinite;
}
.banner .marquee h2 {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
}
.banner .marquee h2:hover {
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: transparent;
}
.banner .marquee_container:hover .marquee {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.banner h2 {
  display: inline-block;
  position: relative;
  margin-right: 80px;
}
.banner h2::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #0C5098;
  border-radius: 50%;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.welcome-info {
  max-width: 1100px;
  margin: 100px auto;
}

.theme {
  padding-bottom: 100px;
}
.theme .gold-logo-holder {
  max-width: 450px;
}
@media (max-width: 767px) {
  .theme .gold-logo-holder {
    max-width: 150px;
  }
}

.video-section {
    border-top: 5px solid #EE7900;
    border-bottom: 5px solid #EE7900;
    position: relative;
    min-height: 500px;
    height: 70vh;
    width: 100%;  
    padding: 0;
    overflow: hidden;
}
.video-section a {
  line-height: 0px;
}
.video-section video,
.video-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.event-schedule {
  padding: 100px 0px;
}
@media (max-width: 991px) {
  .event-schedule {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.event-schedule ul {
  padding: 15px 35px;
  border-radius: 40px;
  background-color: #EE7900;
}
@media (max-width: 991px) {
  .event-schedule ul {
    background: transparent;
    padding: 0;
    gap: 12px;
  }
  .event-schedule ul li a {
    color: #EE7900;
  }
  .event-schedule ul li a .coming-soon {
    position: static;
    transform: none;
    margin-left: 15px;
  }
}
@media (max-width: 575px) {
  .event-schedule ul {
    padding: 0;
    gap: 8px;
  }
  .event-schedule ul li a .coming-soon {
    position: static;
    transform: none;
    margin-left: 10px;
  }
}
.event-schedule ul li {
  position: relative;
}
.event-schedule ul li:not(:first-child) {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .event-schedule ul li:not(:first-child) {
    padding-left: 0;
    flex: 0 0 100%;
  }
}
.event-schedule ul li:not(:first-child):before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 19px;
  width: 1px;
  height: 20px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .event-schedule ul li:not(:first-child):before {
    display: none;
  }
}
.event-schedule ul li a {
  color: #ffffff;
}
@media (max-width: 991px) {
  .event-schedule ul li a {
    color: #EE7900;
  }
}
.event-schedule .event-detail {
  max-width: 1000px;
}

.our-gallery {
  padding-bottom: 100px;
}
.our-gallery .slider .sliderbox {
  position: relative;
  text-align: center;
  outline: none;
  cursor: pointer;
  height: 600px;
  border: 1px solid #EE7900;
}
.our-gallery .slider .sliderbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.our-gallery .slider .sliderbox-thumb {
  margin: 20px;
  height: 150px;
  border: 1px solid #EE7900;
}
@media (max-width: 575px) {
  .our-gallery .slider .sliderbox-thumb {
    height: 70px;
  }
}
.our-gallery .slider .sliderbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.our-gallery .slider.slider-nav {
  padding: 0px 50px;
}
.our-gallery .slider .slick-prev {
  font-size: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url(../../images-2025/left-arrow.svg);
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .our-gallery .slider .slick-prev {
    left: 5px;
  }
}
.our-gallery .slider .slick-next {
  font-size: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url(../../images-2025/right-arrow.svg);
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .our-gallery .slider .slick-next {
    right: 7px;
  }
}

.guestspeaker-section {
  padding-bottom: 100px;
}
.guestspeaker-section .card {
  border: 0px;
}
.guestspeaker-section .card:last-child {
  padding-right: 0px;
}
.guestspeaker-section .card .card-body {
  background: var(--arraow-gradient, radial-gradient(1378.98% 534.63% at 4.75% 2114.67%, #482784 20.82%, #a81f4b 100%));
  font-size: 18px;
  font-weight: 400;
}

.maps {
  padding-bottom: 100px;
}
.maps iframe {
  border: 3px solid #EE7900;
}
.maps .contact-item {
  color: #9A9A9A;
}

footer .logo-holder .main-logo {
  width: 100px;
  height: auto;
}
@media (max-width: 575px) {
  footer .logo-holder .main-logo {
    height: auto;
  }
}
footer .logo-holder .retreat-logo {
  width: 100px;
  height: auto;
}
footer .copyright-holder p {
  font-size: 10px;
  font-weight: 200;
}

.coming-soon {
  position: absolute;
  color: #fff;
  font-size: 10px;
  padding: 5px 9px;
  border-radius: 20px;
  line-height: 1;
  border: 1px solid #fff;
  font-weight: 500;
  background: #d1912d;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-logo::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.location-logo::before {
  background-image: url("../../images-2025/location.svg");
}

.inner-banner .program-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.inner-banner .program-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.inner-banner .program-banner.program-banner {
  background-image: url("../../images-2025/BG01.jpg");
}

.maps-links {
  left: 0px;
  bottom: 100px;
}
.maps-links .btn.btn-secondary {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border: 0px;
}

.guest-speaker .sub-heading {
  font-size: 34px;
  color: #EE7900;
}
.guest-speaker .img-holder img {
  object-position: top;
  border: 2px solid #EE7900;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .guest-speaker .img-holder {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .guest-speaker .img-holder {
    height: auto;
  }
}

.banner-logistics .logistics-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.banner-logistics .logistics-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-logistics .logistics-banner.logistics-banner {
  background-image: url("../../images-2025/Logistics_banner.jpg");
}
.banner-logistics .logistics-banner .text-banner {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-shadow: 11px 43px 18px rgba(0, 0, 0, 0.02), 6px 24px 15px rgba(0, 0, 0, 0.08), 3px 11px 11px rgba(0, 0, 0, 0.13), 1px 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .banner-logistics .logistics-banner .text-banner {
    font-size: 34px;
  }
}

.retreat-checkin .second-heading span {
  font-weight: 600;
}

.banner-service .service-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.banner-service .service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-service .service-banner.service-banner {
  background-image: url("../../images-2025/Service_Opportunities-banner.jpeg");
}
.banner-service .service-banner .text-banner {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-shadow: 11px 43px 18px rgba(0, 0, 0, 0.02), 6px 24px 15px rgba(0, 0, 0, 0.08), 3px 11px 11px rgba(0, 0, 0, 0.13), 1px 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .banner-service .service-banner .text-banner {
    font-size: 34px;
  }
}

.heading-text {
  font-size: 20px;
  color: #EE7900;
}

.banner-direction .direction-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.banner-direction .direction-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-direction .direction-banner.direction-banner {
  background-image: url("../../images-2025/Directions_banner.jpeg");
}
.banner-direction .direction-banner .text-banner {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-shadow: 11px 43px 18px rgba(0, 0, 0, 0.02), 6px 24px 15px rgba(0, 0, 0, 0.08), 3px 11px 11px rgba(0, 0, 0, 0.13), 1px 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .banner-direction .direction-banner .text-banner {
    font-size: 34px;
  }
}

.heading-secondary {
  color: #EE7900;
  font-size: 26px;
  font-weight: 500;
}

.direction-contact {
  color: #EE7900;
  font-size: 18px;
  font-weight: 500;
}

.svg-holder {
  width: 30px;
  height: 30px;
}

.banner-contact-us .contact-us-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.banner-contact-us .contact-us-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-contact-us .contact-us-banner.contact-us-banner {
  background-image: url("../../images-2025/Contact_banner.jpg");
}
.banner-contact-us .contact-us-banner .text-banner {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-shadow: 11px 43px 18px rgba(0, 0, 0, 0.02), 6px 24px 15px rgba(0, 0, 0, 0.08), 3px 11px 11px rgba(0, 0, 0, 0.13), 1px 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .banner-contact-us .contact-us-banner .text-banner {
    font-size: 34px;
  }
}

.contact-us-form .contact-heading {
  color: #ffffff;
  font-weight: 700;
}
.contact-us-form .form-holder {
  max-width: 750px;
}
.contact-us-form .form-holder .contact-us-border {
  border: 2px solid #EE7900;
  padding: 20px;
  border-radius: 30px;
}
.contact-us-form .form-holder .contact-us-border .label-info {
  font-size: 13px;
}

.form-check-input:checked {
  background-color: #d1912d;
  border-color: #fff;
}
.form-check-input:focus {
  box-shadow: none;
}

.banner-gallery .gallery-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.banner-gallery .gallery-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-gallery .gallery-banner.gallery-banner {
  background-image: url("../../images-2025/Our-photo-gallery.jpg");
}
.banner-gallery .gallery-banner .text-banner {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-shadow: 11px 43px 18px rgba(0, 0, 0, 0.02), 6px 24px 15px rgba(0, 0, 0, 0.08), 3px 11px 11px rgba(0, 0, 0, 0.13), 1px 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .banner-gallery .gallery-banner .text-banner {
    font-size: 34px;
  }
}

.gallery .gallery-photo-holder a img {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=styles.css.map */
