@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
  scroll-padding-top: calc(4.5rem - 1px);
}
body {
  font-family: "Poppins", sans-serif;
  /*font-weight: 300;*/
  font-style: normal;
  line-height: 1.5;
  color: #9f8170;
}
a {
  text-decoration: none;
  color: #9f8170;
}
h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  text-transform: uppercase;
}
h6, h5, h4, h3, h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  text-transform: uppercase;
}
p {
  line-height: 1.5;
	font-weight: 300;
	margin: 0;
}

.logo-item:hover img {
  transform: rotate(-10deg) scale(1.2); /* Adjust the angle as needed */
  transition: transform 0.3s ease;
}
.page-section {
  padding: 8rem 0;
}
.contact-form {
  padding: 8rem 0 2rem 0;
}
.social-links {
  padding: 2rem 0;
}
.bg-brown {
  background: #9f8170;
}
/* carousel fullscreen */
.carousel-item {
  height: 100vh;
  min-height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: #9f8170;
}
.carousel-item img {
  height: 100%;
  object-fit: cover;
  opacity: .2;
}
.header-msg {
  position: absolute;
  right: 5%;
  top: 50%;
  bottom: auto;
  left: 5%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  transform: translateY(-50%);
  overflow: hidden;
}
.header-msg img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 576px) {
  .header-msg img {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .header-msg img {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .header-msg img {
    max-width: 70%;
  }
}
@media (min-width: 1200px) {
  .header-msg img {
    max-width: 60%;
  }
}
@media (min-width: 1400px) {
  .header-msg img {
    max-width: 50%;
  }
}
.btn {
  display: inline-block;
  /*font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;*/
  border-radius: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #FF7A59;
  --bs-btn-border-color: #FF7A59;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f4623a;
  --bs-btn-hover-border-color: #f4623a;
  --bs-btn-focus-shadow-rgb: 246, 122, 88;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f4623a;
  --bs-btn-active-border-color: #f4623a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #c34e2e;
  --bs-btn-disabled-border-color: #c34e2e;
}
.btn-social {
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 4.25rem;
  height: 4.25rem;
  font-size: 2.25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9f8170;
}
.btn-outline-light {
  /*color:#f8f9fa;*/
  color: #9f8170;
  background-color: transparent;
  background-image: none;
  border-width: 0.2rem;
  border-color: #9f8170;
}
.btn-outline-light:hover {
  /*color: #00ccff;*/
  color: #fff;
  background-color: #9f8170;
  border-color: #9f8170;
}
/* Custom styles for the outlined button */
.btn-outline-custom {
  color: #9f8170;
  border-color: #9f8170;
  padding: 10px 20px;
}
/* Hover state for the custom button */
.btn-outline-custom:hover {
  color: #674f3b;
  border-color: #674f3b;
}
.offcanvas {
  background-color: #9f8170 !important;
}
.dropdown-menu {
	background: none;
	border: none;
}
.dropdown-item {
	color: #9f8170;
}
.dropdown-item:hover {
	background: none;
}
.dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}
#subscribe-alertMessage {
  margin-top: 0.25rem;
  font-size: .875em;
  color: #dc3545;
}