.west-region-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #f8f5f0;
}

.west-region-carousel-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  overflow: hidden;
  background-color: #f8f5f0;
}

.west-region-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.west-region-carousel-item.active {
  display: block;
}

.west-region-carousel-item.active.slide-next {
  animation: slideInRight 0.6s ease-in-out;
}

.west-region-carousel-item.active.slide-prev {
  animation: slideInLeft 0.6s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.west-region-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.west-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #2c2c2c;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 200;
  border-radius: 4px;
  padding: 0;
}

.west-carousel-control:hover {
  background: rgba(0, 163, 198, 0.9);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.west-carousel-prev {
  left: 10px;
}

.west-carousel-next {
  right: 10px;
}

.west-icon-prev,
.west-icon-next {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.8;
  position: relative;
  top: -3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.west-carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 15;
}

.west-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.west-carousel-indicator:hover {
  background-color: #00bcd4;
  transform: scale(1.2);
}

.west-carousel-indicator.active {
  background-color: #00bcd4;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .west-carousel-control {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .west-carousel-prev {
    left: 5px;
  }

  .west-carousel-next {
    right: 5px;
  }

  .west-carousel-indicators {
    bottom: 10px;
    gap: 8px;
  }

  .west-carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .west-carousel-indicator.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .west-carousel-control {
    font-size: 2rem;
    width: 35px;
    height: 35px;
  }

  .west-carousel-indicators {
    bottom: 8px;
    gap: 6px;
  }

  .west-carousel-indicator {
    width: 7px;
    height: 7px;
  }

  .west-carousel-indicator.active {
    width: 20px;
  }
}

.west-region-page {
  width: 100%;
  background-color: #f8f5f0;
}

.west-region-header {
  background-color: #f8f5f0;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #d4c5b0;
}

.west-region-header h1 {
  font-size: 2.5rem;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.west-region-intro {
  margin-top: 40px;
  margin-bottom: 40px;
}

.west-region-intro img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.west-region-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
}

.west-region-intro-text h1 {
  font-size: 2rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
}

.west-region-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.west-region-html {
  margin: 40px auto;
}

.west-region-html hr {
  border: 0;
  border-top: 1px solid #d4c5b0;
  margin: 0;
}

.west-region-separation {
  padding-left: 15px;
  padding-right: 15px;
}

.west-region-image-left-text-right,
.west-region-text-left-image-right {
  margin-bottom: 60px;
}

.west-region-image-left-text-right h2,
.west-region-text-left-image-right h2 {
  font-size: 1.6rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
}

.west-region-image-left-text-right p,
.west-region-text-left-image-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

@media (min-width: 768px) {
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-push-4 {
    left: 33.333333%;
    position: relative;
  }

  .col-sm-pull-8 {
    right: 66.666667%;
    position: relative;
  }

  .west-region-image-left-text-right .col-sm-4,
  .west-region-text-left-image-right .col-sm-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .west-region-header {
    padding: 40px 0;
  }

  .west-region-header h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .west-region-intro-text {
    padding: 20px 0 0 0;
  }

  .west-region-intro-text h1 {
    font-size: 1.75rem;
  }

  .west-region-image-left-text-right h2,
  .west-region-text-left-image-right h2 {
    font-size: 1.4rem;
    margin-top: 30px;
  }

  .west-region-image-left-text-right,
  .west-region-text-left-image-right {
    margin-bottom: 40px;
  }

  .col-sm-push-4,
  .col-sm-pull-8 {
    left: 0;
    right: 0;
    position: static;
  }
}

@media (max-width: 480px) {
  .west-region-header h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .west-region-intro-text h1 {
    font-size: 1.5rem;
  }

  .west-region-intro-text p,
  .west-region-image-left-text-right p,
  .west-region-text-left-image-right p {
    font-size: 0.95rem;
  }

  .west-region-image-left-text-right h2,
  .west-region-text-left-image-right h2 {
    font-size: 1.3rem;
  }
}


/*# sourceMappingURL=910.cdfb2eb3.chunk.css.map*/