:root {
  --bs-primary: #9DC3A4;
  --bs-primary-rgb: 157, 195, 164;
  --bs-primary-dark: #384743;
  --bs-primary-light: #9DC3A4;
  --bs-secondary: #89B2A7;
  --bs-secondary-rgb: 137, 178, 167;
  --bs-primary-bg-subtle: rgba(var(--bs-primary-rgb), 0.3);
  --bs-primary-border-subtle: rgba(var(--bs-primary-rgb), 0.6);
  --item-gutter: 20px; }

body {
  --bs-body-font-family: "Libre Franklin", serif;
  color: #fff; }

textarea {
  resize: none; }

iframe {
  display: block; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    color: inherit;
    text-decoration: none; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Faculty Glyphic", serif; }

.ff-faculty {
  font-family: "Faculty Glyphic", serif; }

.text-underline {
  text-decoration: underline; }

.fw-thin {
  font-weight: 100 !important; }

.fw-light {
  font-weight: 300 !important; }

.fw-normal {
  font-weight: 400 !important; }

.fw-medium {
  font-weight: 500 !important; }

.fw-semibold {
  font-weight: 600 !important; }

.fw-bold {
  font-weight: 700 !important; }

.fw-extrabold {
  font-weight: 800 !important; }

.fw-black {
  font-weight: 900 !important; }

.fs-italic {
  font-style: italic; }

.anchor-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 3; }

.z-index-1 {
  z-index: 1; }

.fs-20px {
  font-size: 14px; }

.fs-15px {
  font-size: 15px; }

.fs-14px {
  font-size: 14px; }

.lh-150 {
  line-height: 150%; }

@media (min-width: 1600px) {
  .fs-xxxl-35px {
    font-size: 35px; } }
.btn {
  font-family: "Faculty Glyphic", serif;
  --bs-btn-padding-x: 32px;
  --bs-btn-padding-y: 14px;
  --bs-btn-border-radius: 50px; }

.btn:not(.btn-submit) {
  z-index: 1;
  position: relative;
  overflow: hidden; }
  .btn:not(.btn-submit):before, .btn:not(.btn-submit):after {
    content: '';
    position: absolute;
    background: var(--bs-primary);
    z-index: -1; }
  .btn:not(.btn-submit):before {
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1); }
  .btn:not(.btn-submit):after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s; }
  .btn:not(.btn-submit):hover:before {
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1); }
  .btn:not(.btn-submit):hover:after {
    opacity: 1;
    transition-duration: 0.01s;
    transition-delay: 0.5s; }

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary); }

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary); }

.btn-white {
  --bs-btn-bg: #ffffff;
  --bs-btn-hover-color: var(--bs-primary-dark);
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-bg: #ffffff;
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-bg: #ffffff;
  --bs-btn-disabled-border-color: #ffffff; }

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--bs-primary-light);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.2); }

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary); }

.content-section-row {
  position: relative; }

.bg-img-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .bg-img-fill._object-top img {
    object-position: top; }
  .bg-img-fill._object-right img {
    object-position: right; }
  .bg-img-fill._object-bottom img {
    object-position: bottom; }
  .bg-img-fill._object-left img {
    object-position: left; }
  .bg-img-fill + div {
    position: relative;
    z-index: 2; }
  .bg-img-fill img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;'; }

.container-limited {
  max-width: 1920px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto; }

.bg-primary-dark {
  background-color: var(--bs-primary-dark); }

.mw-514px {
  max-width: 514px; }

.mw-323px {
  max-width: 323px; }

.bullets-box {
  padding-inline-start: 30px; }
  .bullets-box li {
    position: relative; }
    .bullets-box li:before {
      content: "";
      width: 9px;
      height: 9px;
      background-color: #9DC3A4;
      position: absolute;
      top: 6px;
      left: -30px; }
    .bullets-box li:after {
      content: "\f178";
      font-weight: 400;
      font-family: "Font Awesome 6 Pro";
      position: absolute;
      top: 1px;
      right: 0; }
  .bullets-box a {
    display: block;
    padding-right: 2rem; }
    .bullets-box a span {
      position: relative; }
      .bullets-box a span:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        border-radius: 5px;
        height: 0.05em;
        bottom: -1px;
        left: 0;
        background: currentcolor;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out; }
    .bullets-box a:hover span:after {
      transform: scaleX(1);
      transform-origin: bottom left; }

.singleSlider .ratio-1x1 {
  --bs-aspect-ratio: 107%; }
.singleSlider .bg-img-fill:after {
  content: "";
  width: 100%;
  height: 27.5%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%); }
.singleSlider .swiper-button-next, .singleSlider .swiper-button-prev {
  color: #ffffff;
  font-size: 1rem;
  width: 37px;
  height: 25px;
  display: flex;
  align-items: center;
  border: 2px solid;
  border-radius: 30px;
  top: auto;
  bottom: 18px; }
  .singleSlider .swiper-button-next:hover, .singleSlider .swiper-button-prev:hover {
    background-color: #9DC3A4;
    border-color: #9DC3A4; }
  .singleSlider .swiper-button-next:after, .singleSlider .swiper-button-prev:after {
    display: none; }
.singleSlider .swiper-button-prev {
  left: auto;
  right: 64px; }
.singleSlider .swiper-button-next {
  background-color: #9DC3A4;
  border-color: #9DC3A4;
  --swiper-navigation-sides-offset: 20px; }

.post-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--item-gutter));
  margin-right: calc(-.5* var(--item-gutter));
  margin-left: calc(-.5* var(--item-gutter)); }
  .post-gallery .gallery-item {
    flex: 0 0 auto;
    width: 25%;
    max-width: 100%;
    padding-right: calc(var(--item-gutter)* .5);
    padding-left: calc(var(--item-gutter)* .5);
    margin-top: var(--item-gutter); }
  .post-gallery .gallery-image-wrap {
    position: relative;
    display: block; }
    .post-gallery .gallery-image-wrap:before {
      content: "";
      width: 100%;
      padding-bottom: 74.624%;
      display: block; }
    .post-gallery .gallery-image-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100%;
      box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
      transition: 0.25s ease-in-out; }
      .post-gallery .gallery-image-wrap img:hover {
        transform: scale(1.05); }
  @media only screen and (max-width: 991px) {
    .post-gallery .gallery-item {
      width: 33.33%; } }
  @media only screen and (max-width: 767px) {
    .post-gallery .gallery-item {
      width: 50%; } }

@media only screen and (min-width: 1200px) {
  header .container, .fullscreen-menu-container .container {
    max-width: 1512px; } }
@media only screen and (min-width: 992px) and (max-width: 1500px) {
  header .container, .fullscreen-menu-container .container {
    width: 95%; } }

.header-fixed-offset, #main-header, .inner-top-spacer {
  height: 107px; }

.header-fixed-offset {
  display: none; }

#main-header {
  width: 100%;
  position: fixed;
  z-index: 1030;
  inset: 0;
  background-color: transparent;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.sticky #main-header {
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px); }

.nav {
  --bs-nav-link-color: #fff;
  --bs-nav-link-hover-color: var(--bs-primary); }

.navbar .navbar-toggler {
  margin-right: -5px;
  border: 0;
  color: var(--primary); }
  .navbar .navbar-toggler.collapsed {
    color: #585858; }
  .navbar .navbar-toggler .navbar-toggler-icon {
    width: auto;
    height: auto;
    background-image: none;
    font-size: 26px; }

.language-selector .nav {
  gap: 10px; }
.language-selector .nav-link {
  font-family: "Faculty Glyphic", serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 8px 7px;
  line-height: 1 !important;
  vertical-align: middle;
  text-align: center;
  line-height: 20px;
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  .language-selector .nav-link.active {
    background-color: #fff;
    color: var(--bs-primary-dark); }
@media only screen and (max-width: 575px) {
  .language-selector .nav {
    gap: 6px; }
  .language-selector .nav-link {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 16px; } }

.gap-28px {
  gap: 28px; }

.fullscreen-menu-toggle {
  --navbar-toggler-width: 18px;
  --navbar-toggler-height: 18px;
  border: 0;
  box-shadow: none;
  position: relative;
  cursor: pointer;
  width: var(--navbar-toggler-width);
  height: var(--navbar-toggler-height);
  /* menu start */
  /* menu end */
  /* close start */
  /* close end */ }
  .fullscreen-menu-toggle .menu-bar {
    position: absolute;
    width: var(--navbar-toggler-width);
    height: 2px;
    margin-top: 9px;
    inset: 0; }
  .fullscreen-menu-toggle .animate.menu-bar {
    animation-duration: 0.3s; }
@keyframes menu-menu {
  0% {
    width: 0px;
    height: 0px; }
  50% {
    width: 0px;
    height: 0px; }
  51% {
    position: absolute;
    background-color: #ffffff;
    width: var(--navbar-toggler-width);
    height: 2px; } }
  .fullscreen-menu-toggle .menu-bar:after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: var(--navbar-toggler-width);
    height: 2px;
    margin-top: -5px;
    inset: 0; }
  .fullscreen-menu-toggle .animate.menu-bar:after {
    animation-name: menu-after;
    animation-duration: 0.3s; }
@keyframes menu-after {
  0% {
    transform: rotate(-45deg);
    margin-top: 0px; }
  50% {
    transform: rotate(0deg);
    margin-top: 0px; }
  100% {
    transform: rotate(0deg);
    margin-top: -5px; } }
  .fullscreen-menu-toggle .menu-bar:before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: var(--navbar-toggler-width);
    height: 2px;
    margin-top: 5px;
    inset: 0; }
  .fullscreen-menu-toggle .animate.menu-bar:before {
    animation-name: menu-before;
    animation-duration: 0.3s; }
@keyframes menu-before {
  0% {
    transform: rotate(45deg);
    margin-top: 0px; }
  50% {
    transform: rotate(0deg);
    margin-top: 0px; }
  100% {
    transform: rotate(0deg);
    margin-top: 5px; } }
  .fullscreen-menu-toggle .menu-close {
    position: absolute;
    inset: 0;
    margin-top: 9px;
    margin-left: 0; }
  .fullscreen-menu-toggle .menu-close.animate {
    animation-duration: 0.3s; }
@keyframes close-close {
  0% {
    position: absolute;
    background-color: #ffffff;
    width: var(--navbar-toggler-width);
    height: 2px;
    margin-top: 5px; }
  50% {
    display: none;
    width: var(--navbar-toggler-width);
    height: 2px; }
  100% {
    width: 0px;
    height: 0px; } }
  .fullscreen-menu-toggle .menu-close:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    width: var(--navbar-toggler-width);
    height: 2px;
    transform: rotate(45deg); }
  .fullscreen-menu-toggle .animate.menu-close:after {
    animation-name: close-after;
    animation-duration: 0.3s; }
@keyframes close-after {
  0% {
    transform: rotate(0deg);
    margin-top: -5px; }
  50% {
    transform: rotate(0deg);
    margin-top: 0px; }
  100% {
    transform: rotate(45deg); } }
  .fullscreen-menu-toggle .menu-close:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    width: var(--navbar-toggler-width);
    height: 2px;
    transform: rotate(-45deg); }
  .fullscreen-menu-toggle .animate.menu-close:before {
    animation-name: close-before;
    animation-duration: 0.3s; }
@keyframes close-before {
  0% {
    transform: rotate(0deg);
    margin-top: 5px; }
  50% {
    transform: rotate(0deg);
    margin-top: 0px; }
  100% {
    transform: rotate(-45deg); } }
.fullscreen-menu-container {
  position: fixed;
  inset: 0;
  z-index: 1031;
  background-color: var(--bs-primary-dark);
  display: none;
  overflow: auto;
  height: 100%; }
  .fullscreen-menu-container.active {
    display: block; }
  .fullscreen-menu-container .fullscreen-menu-toggle {
    margin-top: 16px;
    margin-right: 8px; }
  .fullscreen-menu-container .fullscreen-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2; }
  .fullscreen-menu-container .fullscreen-menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%; }
  .fullscreen-menu-container .fullscreen-menu-body {
    height: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px; }
    @media only screen and (min-width: 1200px) {
      .fullscreen-menu-container .fullscreen-menu-body {
        align-items: center; } }
    .fullscreen-menu-container .fullscreen-menu-body .fullscreen-thumbnail img {
      width: 420px;
      height: 171px;
      object-fit: cover;
      border-radius: 134px;
      margin: 0 auto; }
    .fullscreen-menu-container .fullscreen-menu-body .main-nav {
      max-width: 970px;
      margin: 82px auto 0;
      row-gap: 74px; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item:after {
        content: "";
        width: 13px;
        height: 33px;
        display: inline-block;
        background-image: url(./../img/icon-tree-green.svg);
        background-size: contain;
        background-repeat: no-repeat;
        margin: 0 120px; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item:nth-child(3):after, .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item:last-child:after {
        display: none; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link {
        font-family: "Faculty Glyphic", serif;
        font-size: 45px;
        text-align: center;
        display: inline-block;
        line-height: 1.2;
        padding: 9px 0;
        position: relative; }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link:after {
          content: "";
          width: 100%;
          height: 1px;
          background-color: var(--bs-primary);
          position: absolute;
          bottom: 10px;
          left: 0;
          transform-origin: 50% 100%;
          transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
          clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%); }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link span {
          display: inline-block;
          transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1); }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link.active, .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link:hover {
          --bs-nav-link-color: var(--bs-primary); }
          .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link.active:after, .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link:hover:after {
            transform: translate3d(0, 2px, 0) scale3d(1, 2, 1);
            clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%); }
          .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link.active span, .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link:hover span {
            transform: translate3d(0, -2px, 0); }
  @media only screen and (max-width: 1199px) {
    .fullscreen-menu-container .fullscreen-menu-body {
      padding-top: 170px; }
      .fullscreen-menu-container .fullscreen-menu-body .fullscreen-thumbnail img {
        width: 250px;
        height: 95px; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav {
        max-width: 862px;
        row-gap: 44px;
        margin-top: 60px; }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item:after {
          width: 12px;
          height: 28px;
          margin: 0 60px; }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link {
          font-size: 35px; } }
  @media only screen and (max-width: 767px) {
    .fullscreen-menu-container .fullscreen-menu-body {
      padding-top: 130px; }
      .fullscreen-menu-container .fullscreen-menu-body .fullscreen-thumbnail img {
        width: 200px;
        height: 78px; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item:after {
        width: 12px;
        height: 28px;
        margin: 0 60px; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link {
        font-size: 24px; } }
  @media only screen and (max-width: 575px) {
    .fullscreen-menu-container .fullscreen-menu-body {
      padding-top: 130px; }
      .fullscreen-menu-container .fullscreen-menu-body .fullscreen-thumbnail img {
        width: 160px;
        height: 60px; }
      .fullscreen-menu-container .fullscreen-menu-body .main-nav {
        max-width: 556px;
        flex-direction: column;
        row-gap: 24px;
        margin-top: 40px; }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item {
          text-align: center; }
          .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-item:after {
            display: none; }
        .fullscreen-menu-container .fullscreen-menu-body .main-nav .nav-link {
          font-size: 24px; } }

#footer {
  padding-top: 175px;
  padding-bottom: 158px; }
  @media only screen and (min-width: 1200px) {
    #footer .container {
      max-width: 1164px; } }
  @media only screen and (max-width: 991px) {
    #footer {
      padding-top: 100px;
      padding-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    #footer {
      padding-top: 100px;
      padding-bottom: 50px; } }

.footer-widget-block {
  font-size: 14px; }
  .footer-widget-block .title {
    color: var(--bs-primary);
    line-height: 1.215;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px; }

.scroll-top a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bs-primary); }
.scroll-top .fa-arrow-up {
  width: 31px;
  height: 31px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary-dark);
  border-radius: 31px;
  font-size: 18px;
  margin-left: 18px; }

.footer-quote {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%; }
  @media only screen and (min-width: 768px) {
    .footer-quote {
      font-size: 24px; } }
  @media only screen and (min-width: 1200px) {
    .footer-quote {
      font-size: 30px; } }
  @media only screen and (min-width: 1600px) {
    .footer-quote {
      font-size: 40px; } }
  @media only screen and (max-width: 991px) {
    .footer-quote {
      margin-top: 80px; } }

.footer-nav {
  margin-top: 60px; }
  .footer-nav .nav {
    gap: 44px; }
  .footer-nav .nav-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.215;
    text-transform: uppercase;
    padding: 0; }
  @media only screen and (max-width: 767px) {
    .footer-nav .nav {
      flex-wrap: wrap !important;
      gap: 35px;
      row-gap: 25px; } }

.newsletter-form .form-control {
  font-size: 38px;
  line-height: 1;
  background-color: transparent;
  color: #fff;
  font-weight: 300;
  padding: 14px 88px 14px 0px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid; }
  .newsletter-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control:focus::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .newsletter-form .form-control:focus:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
.newsletter-form button {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
  position: absolute !important;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 49px;
  height: 35px;
  padding: 0;
  border-radius: 30px; }
  @media only screen and (max-width: 479px) {
    .newsletter-form button {
      width: 36px;
      height: 26px;
      font-size: 14px; } }
@media only screen and (max-width: 991px) {
  .newsletter-form .form-control {
    font-size: 28px; } }
@media only screen and (max-width: 767px) {
  .newsletter-form .form-control {
    font-size: 22px; } }
@media only screen and (max-width: 575px) {
  .newsletter-form .form-control {
    font-size: 20px; } }

@media only screen and (max-width: 991px) {
  .footer-logo img {
    max-width: 190px; } }
@media only screen and (max-width: 767px) {
  .footer-logo img {
    max-width: 176px; } }
.carousel-slider .carousel-slide {
  min-height: 430px; }
  @media only screen and (max-width: 991px) {
    .carousel-slider .carousel-slide {
      min-height: 350px; } }
  @media only screen and (max-width: 575px) {
    .carousel-slider .carousel-slide {
      min-height: 300px; } }

.menu-sidebar .item-name:has(+ .rounded-thumbnail), .menu-sidebar .item-name:has(+ .img-small-placeholder) {
  margin-right: 11px;
  vertical-align: middle; }

.rounded-thumbnail {
  position: relative;
  margin: 0;
  display: inline-block;
  vertical-align: middle; }
  .rounded-thumbnail img {
    width: 67px;
    height: 36px;
    object-fit: cover;
    border-radius: 52px;
    max-width: 100%;
    max-height: 80vh; }
  .rounded-thumbnail.thumbnail-round-sm img {
    width: 78px;
    height: 36px; }
    @media only screen and (min-width: 768px) {
      .rounded-thumbnail.thumbnail-round-sm img {
        width: 82px;
        height: 38px; } }
    @media only screen and (min-width: 992px) {
      .rounded-thumbnail.thumbnail-round-sm img {
        width: 100px;
        height: 47px; } }
    @media only screen and (min-width: 1200px) {
      .rounded-thumbnail.thumbnail-round-sm img {
        width: 114px;
        height: 54px; } }
  .rounded-thumbnail figcaption {
    display: none;
    opacity: 0;
    color: #fff;
    text-align: center;
    margin: 10px 0;
    font-size: 16px;
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .rounded-thumbnail.zoom-view {
    position: fixed;
    margin: 0 !important;
    animation: zoominView .4s ease-in-out;
    animation-fill-mode: forwards;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    z-index: 1094;
    max-width: 700px;
    max-height: 80vh !important;
    display: flex;
    flex-direction: column; }
    .rounded-thumbnail.zoom-view img {
      border-radius: 52px;
      animation: zoomImage .5s ease-in-out;
      animation-fill-mode: forwards; }
    .rounded-thumbnail.zoom-view figcaption {
      display: block;
      opacity: 1; }

.img-small-placeholder {
  width: 67px;
  height: 36px;
  border-radius: 52px;
  vertical-align: middle;
  background: rgba(0, 0, 0, 0.1);
  display: none; }
  .img-small-placeholder.active {
    display: inline-block; }

.product-item .rounded-thumbnail, .product-item .img-small-placeholder {
  margin-top: 5px;
  margin-bottom: 5px; }

#image-view-underlay, #image-view-mega-underlay {
  opacity: 0; }
  #image-view-underlay.show, #image-view-mega-underlay.show {
    opacity: 1;
    transition: .4s;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1090; }

@keyframes zoomImage {
  100% {
    border-radius: 0;
    width: 100%;
    height: auto; } }
@media (min-width: 768px) {
  @keyframes zoominView {
    100% {
      max-height: 80vh;
      transform: translate(-50%, -50%);
      left: 50%;
      top: 50%; } } }
@media (max-width: 767px) {
  @keyframes zoominView {
    100% {
      width: 90vw;
      max-height: 90vh;
      transform: translate(-50%, -50%);
      left: 50%;
      top: 50%; } } }
.main-banner {
  position: relative;
  height: 982px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 107px; }
  .main-banner .baner-overlay:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #292929;
    opacity: .35; }
  @media only screen and (max-width: 1500px) {
    .main-banner {
      height: 840px; } }
  @media only screen and (max-width: 1199px) {
    .main-banner {
      height: 740px; } }
  @media only screen and (max-width: 991px) {
    .main-banner {
      height: 630px; } }
  @media only screen and (max-width: 767px) {
    .main-banner {
      height: 570px; } }

.banner-nav {
  gap: 90px; }
  .banner-nav .nav-link {
    font-family: "Faculty Glyphic", serif;
    font-weight: 400;
    font-size: 44px;
    text-transform: uppercase; }
  .banner-nav .main-nav-link {
    font-size: 72px; }
  @media only screen and (min-width: 1500px) {
    .banner-nav {
      gap: 103px; }
      .banner-nav .nav-link {
        font-size: 50px; }
      .banner-nav .main-nav-link {
        font-size: 85px; } }
  @media only screen and (max-width: 1199px) {
    .banner-nav {
      gap: 70px; }
      .banner-nav .nav-link {
        font-size: 32px; }
      .banner-nav .main-nav-link {
        font-size: 50px; } }
  @media only screen and (max-width: 991px) {
    .banner-nav {
      gap: 60px; }
      .banner-nav .nav-link {
        font-size: 26px; }
      .banner-nav .main-nav-link {
        font-size: 36px; } }
  @media only screen and (max-width: 767px) {
    .banner-nav {
      gap: 26px; }
      .banner-nav .nav-link {
        font-size: 20px; }
      .banner-nav .main-nav-link {
        font-size: 28px; } }
  @media only screen and (max-width: 575px) {
    .banner-nav {
      flex-direction: column; } }

.banner-description {
  max-width: 483px;
  margin: 0 auto;
  font-size: 20px; }
  @media only screen and (max-width: 767px) {
    .banner-description {
      font-size: 18px; } }

.text-underline-sm {
  position: relative; }
  .text-underline-sm:after {
    content: "";
    width: 100%;
    position: absolute;
    border-bottom: 4px solid;
    bottom: 5px;
    left: 0; }
  @media only screen and (max-width: 1199px) {
    .text-underline-sm:after {
      border-bottom: 2px solid;
      bottom: 4px; } }
  @media only screen and (max-width: 767px) {
    .text-underline-sm:after {
      bottom: 1px; } }

.intro-content {
  max-width: 1041px;
  margin: 0 auto; }

.intro-content-widget {
  font-size: 45px; }
  @media only screen and (max-width: 1199px) {
    .intro-content-widget {
      font-size: 36px; } }
  @media only screen and (max-width: 991px) {
    .intro-content-widget {
      font-size: 32px; } }
  @media only screen and (max-width: 767px) {
    .intro-content-widget {
      font-size: 28px; } }

.inline-img-small, .intro-content-widget .rounded-thumbnail img, .intro-content-widget .img-small-placeholder {
  width: 114px;
  height: 54px;
  object-fit: cover;
  border-radius: 52px;
  margin-left: 10px;
  margin-right: 10px; }

.intro-content-widget .rounded-thumbnail {
  vertical-align: baseline;
  line-height: 1; }
.intro-content-widget .img-small-placeholder {
  width: 78px;
  height: 36px; }
  @media only screen and (min-width: 768px) {
    .intro-content-widget .img-small-placeholder {
      width: 82px;
      height: 38px; } }
  @media only screen and (min-width: 992px) {
    .intro-content-widget .img-small-placeholder {
      width: 100px;
      height: 47px; } }
  @media only screen and (min-width: 1200px) {
    .intro-content-widget .img-small-placeholder {
      width: 114px;
      height: 54px; } }

@media only screen and (max-width: 1199px) {
  .intro-content-widget {
    font-size: 36px; }

  .inline-img-small, .intro-content-widget .rounded-thumbnail img {
    width: 100px;
    height: 47px; } }
@media only screen and (max-width: 991px) {
  .intro-content-widget {
    font-size: 28px; }

  .inline-img-small, .intro-content-widget .rounded-thumbnail img {
    width: 82px;
    height: 38px; } }
@media only screen and (max-width: 767px) {
  .intro-content-widget {
    font-size: 26px; }

  .inline-img-small, .intro-content-widget .rounded-thumbnail img {
    width: 78px;
    height: 36px; } }
.dark-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  opacity: .35; }

.carousel-section {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 991px) {
    .carousel-section {
      min-height: 350px; } }
  @media only screen and (max-width: 575px) {
    .carousel-section {
      min-height: 300px; } }

.carousel-content {
  font-size: calc(1.325rem + .9vw); }
  @media only screen and (min-width: 576px) {
    .carousel-content {
      font-size: 38px; } }
  @media only screen and (min-width: 768px) {
    .carousel-content {
      font-size: 48px; } }
  @media only screen and (min-width: 1200px) {
    .carousel-content {
      font-size: 65px; } }
  @media only screen and (min-width: 1600px) {
    .carousel-content {
      font-size: 75px; } }

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  align-self: center;
  animation: marquee-background 30s linear infinite; }

@keyframes marquee-background {
  0% {
    background-position: 0 center; }
  100% {
    background-position: -100% center;
    /* Move the background upwards */ } }
.inner-banner {
  min-height: 482px;
  position: relative;
  background-color: var(--bs-primary-dark);
  overflow: hidden; }
  .inner-banner .bg-img-fill {
    opacity: .15; }

.inner-banner-content {
  padding-top: 279px;
  padding-bottom: 75px; }
  .inner-banner-content .banner-description {
    max-width: 581px;
    font-size: 1rem; }

@media only screen and (min-width: 992px) {
  .main-title {
    font-size: 55px; }
    .main-title.main-title-lg {
      font-size: 44px; } }
@media only screen and (min-width: 1200px) {
  .main-title {
    font-size: 55px; }
    .main-title.main-title-lg {
      font-size: 65px; } }
.banner-fullwidth-image {
  position: relative;
  min-height: 610px; }

.sidebar-container-wrapper {
  overflow: hidden; }

.sidebar-container-wrapper.active {
  position: fixed;
  z-index: 1039;
  width: 100%;
  height: 100%;
  inset: 0; }
  .sidebar-container-wrapper.active .underlay-siderbar {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px); }

.menu-sidebar {
  position: fixed;
  top: 0;
  z-index: 1039;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: all ease .35s;
  color: var(--bs-primary-dark); }
  .menu-sidebar.active {
    transform: translateX(0); }
  .menu-sidebar .menu-close-toggle {
    width: 43px;
    height: 43px;
    background-color: #EAEAEA;
    border-radius: 100px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99; }
    .menu-sidebar .menu-close-toggle:hover {
      background-color: var(--bs-primary-dark);
      color: #ffffff; }
  .menu-sidebar .menu-sidebar-toggle {
    cursor: pointer; }
  .menu-sidebar .product-item hr {
    margin-top: 36px;
    margin-bottom: 20px;
    border-color: var(--bs-primary-dark) !important; }
  .menu-sidebar .menu-sidebar-header {
    padding-top: 46px;
    margin-bottom: 56px; }
  .menu-sidebar .menu-sidebar-header, .menu-sidebar .menu-sidebar-body {
    padding: 48px 75px 20px; }
  .menu-sidebar .menu-sidebar-body {
    height: 100%;
    max-width: 650px;
    margin-left: auto;
    background-color: #fff; }
  .menu-sidebar .item-name, .menu-sidebar .item-price {
    font-family: "Faculty Glyphic", serif;
    font-size: 20px;
    margin-bottom: 0;
    display: inline;
    line-height: 1.5; }
  .menu-sidebar .item-img-small {
    width: 67px;
    height: 36px;
    object-fit: cover;
    border-radius: 52px;
    display: inline;
    margin-left: 11px; }
  .menu-sidebar .menu-item-description {
    font-size: 14px;
    line-height: 150%;
    margin-top: 20px; }
    .menu-sidebar .menu-item-description p:last-of-type {
      margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .menu-sidebar .menu-sidebar-header, .menu-sidebar .menu-sidebar-body {
      padding-left: 50px;
      padding-right: 50px; } }
  @media only screen and (max-width: 575px) {
    .menu-sidebar .menu-sidebar-header, .menu-sidebar .menu-sidebar-body {
      padding-left: 40px;
      padding-right: 40px; } }
  @media only screen and (max-width: 479px) {
    .menu-sidebar .menu-sidebar-header, .menu-sidebar .menu-sidebar-body {
      padding-left: 20px;
      padding-right: 20px; } }

.menu-sidebar-toggle {
  position: relative; }

.our-menu-nav-wrapper {
  max-width: 1130px;
  margin: 0 auto; }

.our-menu-nav .nav-item {
  position: relative;
  border-bottom: 1px solid; }
.our-menu-nav .nav-link {
  font-family: "Faculty Glyphic", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  padding: 32px 50px; }
  .our-menu-nav .nav-link .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 49px;
    height: 35px;
    padding: 0;
    border-radius: 30px; }
  .our-menu-nav .nav-link.active, .our-menu-nav .nav-link:hover, .our-menu-nav .nav-link:active {
    color: var(--bs-nav-link-hover-color); }
    .our-menu-nav .nav-link.active .nav-icon, .our-menu-nav .nav-link:hover .nav-icon, .our-menu-nav .nav-link:active .nav-icon {
      --bs-btn-bg: var(--bs-primary);
      --bs-btn-border-color: var(--bs-primary);
      --bs-btn-active-bg: var(--bs-primary);
      --bs-btn-active-border-color: var(--bs-primary); }
  @media only screen and (min-width: 1200px) {
    .our-menu-nav .nav-link {
      font-size: 50px;
      padding: 40px 50px; } }
  @media only screen and (min-width: 1600px) {
    .our-menu-nav .nav-link {
      font-size: 80px; } }

.menu-sidebar .menu-sidebar-toggle {
  position: absolute;
  top: 48px;
  right: 75px; }
.menu-sidebar .menu-title {
  font-family: "Faculty Glyphic", serif;
  font-size: 20px;
  line-height: 1.25; }
@media only screen and (min-width: 1200px) {
  .menu-sidebar .menu-title {
    font-size: 24px; } }
.menu-sidebar .item-name {
  flex: 1 0 0%; }
  .menu-sidebar .item-name small {
    font-size: .7em;
    margin-left: 4px; }
  .menu-sidebar .item-name br + small {
    margin-left: 0; }
.menu-sidebar .item-price {
  flex: 0 1 auto; }

.mega-nav-item {
  height: 100%;
  display: none;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .mega-nav-item.menu-active {
    display: block; }

.mega-menu {
  display: flex;
  flex-direction: column; }
  .mega-menu .badge-letter {
    display: inline-block;
    width: 25px;
    height: 24px;
    background-color: #CB9E67;
    color: #ffffff;
    font-family: "Faculty Glyphic", serif;
    font-size: 15px;
    text-align: center;
    clip-path: path("M0 -0.000228882H25C22.3072 9.1277 22.2368 14.1672 25 22.9998H0C2.51441 14.5954 2.6149 9.58489 0 -0.000228882Z");
    margin-right: 10px; }
    .mega-menu .badge-letter.green {
      background-color: #9DC3A4; }
    .mega-menu .badge-letter:has(+ .menu-title) {
      margin-top: 1px; }
  .mega-menu .nav-item, .mega-menu .products-list li {
    padding: 27px 0;
    flex-wrap: wrap;
    row-gap: 12px; }
    .mega-menu .nav-item:first-child, .mega-menu .products-list li:first-child {
      padding-top: 0; }
    .mega-menu .nav-item + .nav-item, .mega-menu .nav-item + li, .mega-menu .products-list li + .nav-item, .mega-menu .products-list li + li {
      border-top: 1px solid var(--bs-primary-dark); }
    .mega-menu .nav-item.cat-section, .mega-menu .products-list li.cat-section {
      padding-bottom: 5px !important; }
      .mega-menu .nav-item.cat-section + li, .mega-menu .products-list li.cat-section + li {
        border-top: 0;
        padding-top: 10px; }
  .mega-menu .sub-mega-menu .nav-item:last-child, .mega-menu .sub-mega-menu .products-list li:last-child {
    padding-bottom: 0; }
  .mega-menu .nav-link {
    color: var(--bs-primary-dark);
    padding: 0;
    font-family: "Faculty Glyphic", serif;
    padding-right: 90px;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .mega-menu .nav-link:after {
      content: "\f178";
      font-family: "Font Awesome 6 Pro";
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: var(--fa-display, inline-block);
      font-style: normal;
      font-variant: normal;
      line-height: 1;
      text-rendering: auto;
      font-size: 16px;
      font-weight: 400;
      padding: 4px 12px;
      border: 1px solid;
      border-radius: 30px;
      position: absolute;
      top: 2px;
      right: 0;
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    @media (min-width: 1200px) {
      .mega-menu .nav-link {
        font-size: 20px; } }
    .mega-menu .nav-link:hover, .mega-menu .nav-link .active {
      color: var(--bs-primary); }
      .mega-menu .nav-link:hover:after, .mega-menu .nav-link .active:after {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff; }
  .mega-menu .back-menu-btn {
    font-size: 20px;
    font-weight: 500;
    color: var(--bs-primary-dark);
    border: none;
    padding: 0;
    line-height: 1;
    background: transparent;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 99;
    top: 52px;
    left: auto;
    margin-left: -10px; }
    .mega-menu .back-menu-btn:hover {
      color: var(--bs-primary); }
  .mega-menu .item-price {
    margin-left: auto; }
    .mega-menu .item-price span {
      flex: 0 0 auto;
      width: 50px;
      text-align: right; }

.mega-item-category {
  display: flex;
  flex-direction: column;
  height: 100%; }

.mega-menu-heading, .mega-menu-subheading {
  padding-right: 120px;
  padding-top: 6px;
  background-color: #fff;
  margin-bottom: 45px;
  padding-bottom: 20px; }
  .mega-menu-heading:has(+ .mega-description), .mega-menu-subheading:has(+ .mega-description) {
    margin-bottom: 15px; }

.mega-menu-subheading {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
  padding-left: 41px; }
  .mega-menu-subheading:before {
    content: "";
    width: calc(100% + 20px);
    height: 100%;
    position: absolute;
    background-color: #fff;
    z-index: -1;
    left: 0;
    top: 0; }

.mega-description {
  margin-bottom: 45px;
  display: inline-block; }

.products-list {
  list-style: none;
  padding-inline-start: 0; }
  .products-list li {
    display: flex;
    gap: 40px;
    justify-content: space-between; }

.mega-menu-content {
  overflow: auto;
  flex: 1 0 0%;
  height: 100%;
  padding-right: 60px;
  margin-right: -60px; }
  .mega-menu-content::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px; }
  .mega-menu-content::-webkit-scrollbar-track {
    background: #F0F0F0;
    border-radius: 36px; }
  .mega-menu-content::-webkit-scrollbar-thumb {
    background: #D5D5D5;
    border-radius: 36px; }
  @media only screen and (max-width: 991px) {
    .mega-menu-content::-webkit-scrollbar {
      width: 8px; } }
  @media only screen and (max-width: 767px) {
    .mega-menu-content::-webkit-scrollbar {
      width: 6px; } }

.mega-item-category.submenu-active .mega-menu-heading {
  display: none; }
.mega-item-category.submenu-active .sub-mega-menu.active:has(.sub-mega-menu.active) > .mega-menu-subheading {
  display: none; }

.mega-menu > .nav-item:has(~ .nav-item.active), .mega-menu > .nav-item.active ~ .nav-item {
  display: none; }
.mega-menu > .nav-item.active {
  padding-top: 0;
  border-top: 0; }
  .mega-menu > .nav-item.active > .nav-link {
    display: none; }
.mega-menu .sub-mega-menu {
  display: none; }
  .mega-menu .sub-mega-menu.active {
    display: block; }

@media (max-width: 991px) {
  .menu-sidebar .menu-sidebar-toggle {
    top: 35px; }
  .menu-sidebar .menu-sidebar-body {
    padding-top: 35px; }
  .menu-sidebar .item-name, .menu-sidebar .item-price {
    font-size: 18px; }

  .mega-menu-content {
    padding-right: 36px;
    margin-right: -36px; }

  .mega-menu .back-menu-btn {
    top: 35px; } }
@media (max-width: 767px) {
  .menu-sidebar .menu-sidebar-toggle.menu-close-toggle {
    top: 35px;
    right: 50px; }
    .menu-sidebar .menu-sidebar-toggle.menu-close-toggle .fa-times {
      font-size: 18px !important; }
  .menu-sidebar .menu-sidebar-body {
    padding-top: 35px; }

  .mega-menu .back-menu-btn {
    left: 40px; }

  .mega-menu-heading, .mega-menu-subheading {
    margin-bottom: 54px; }
    .mega-menu-heading:has(+ .mega-description), .mega-menu-subheading:has(+ .mega-description) {
      margin-bottom: 15px; }

  .mega-menu-subheading {
    padding-left: 41px; }

  .mega-description {
    margin-bottom: 30px; } }
@media (max-width: 575px) {
  .menu-sidebar .menu-sidebar-toggle.menu-close-toggle {
    right: 40px;
    width: 35px;
    height: 35px; }
  .menu-sidebar .menu-title {
    font-size: 18px; }
  .menu-sidebar .item-name, .menu-sidebar .item-price {
    font-size: 1rem; }

  .mega-menu-content {
    padding-right: 24px;
    margin-right: -24px; }

  .mega-menu .nav-item, .mega-menu .products-list li {
    padding: 24px 0; }
  .mega-menu .nav-link {
    padding-right: 65px; }
    .mega-menu .nav-link:after {
      font-size: 13px;
      font-weight: 400;
      padding: 3px 9px; }
  .mega-menu .back-menu-btn {
    left: 20px;
    width: 20px;
    height: 20px;
    top: 43px; }

  .mega-menu-heading, .mega-menu-subheading {
    padding-right: 52px;
    margin-bottom: 42px; }
    .mega-menu-heading:has(+ .mega-description), .mega-menu-subheading:has(+ .mega-description) {
      margin-bottom: 10px; }

  .mega-menu-subheading {
    padding-left: 38px; }

  .mega-description {
    margin-bottom: 24px; } }
@media only screen and (max-width: 479px) {
  .menu-sidebar .menu-sidebar-toggle.menu-close-toggle {
    right: 20px; }

  .mega-menu-content {
    padding-right: 15px;
    margin-right: -15px; }

  .products-list li {
    column-gap: 24px; }

  .mega-menu-subheading:before {
    width: calc(100% + 10px); } }
.gallery-slider {
  height: 596px; }
  .gallery-slider .swiper-slide {
    flex-shrink: 1;
    flex-grow: 1; }
    .gallery-slider .swiper-slide img {
      display: inline-block;
      width: auto;
      height: 596px; }
  .gallery-slider .swiper-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    opacity: .75;
    width: 96px;
    height: 100%; }
    .gallery-slider .swiper-overlay.left-overlay {
      background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, black 100%);
      left: 0; }
    .gallery-slider .swiper-overlay.right-overlay {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
      right: 0; }
  .gallery-slider .swiper-button-next, .gallery-slider .swiper-button-prev {
    color: #fff;
    font-size: 39px; }
  .gallery-slider .swiper-button-prev {
    left: 36px; }
  .gallery-slider .swiper-button-next {
    right: 36px; }
  .gallery-slider .swiper-button-next:after, .gallery-slider .swiper-button-prev:after {
    display: none; }
  .gallery-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    --swiper-pagination-bottom: 29px; }
  .gallery-slider .swiper-pagination-bullet {
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: .55;
    --swiper-pagination-bullet-width: 6px;
    --swiper-pagination-bullet-height: 6px;
    --swiper-pagination-bullet-horizontal-gap: 6px; }
  .gallery-slider .swiper-pagination-bullet-active {
    --swiper-pagination-color: #fff; }

.inner-top-spacer {
  height: 107px; }

.mw-487px {
  max-width: 487px; }

.contact-info-wrapper {
  font-size: 14px; }

.form-theme .form-control {
  --bs-border-radius: 0px;
  background-color: transparent;
  font-size: 14px;
  padding: 13px 24px;
  color: #fff; }
  .form-theme .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control:focus::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5); }
  .form-theme .form-control:focus:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); }
.form-theme select.form-control {
  background-color: #D4D4D4 !important;
  color: var(--bs-primary-dark); }
.form-theme textarea.form-control {
  background-color: #ffffff;
  color: var(--bs-primary-dark);
  font-style: italic;
  line-height: 160%;
  font-weight: 300; }
  .form-theme textarea.form-control::-webkit-input-placeholder {
    color: var(--bs-primary-dark); }
  .form-theme textarea.form-control::-moz-placeholder {
    color: var(--bs-primary-dark); }
  .form-theme textarea.form-control:-ms-input-placeholder {
    color: var(--bs-primary-dark); }
  .form-theme textarea.form-control:-moz-placeholder {
    color: var(--bs-primary-dark); }
@media only screen and (min-width: 1200px) {
  .form-theme textarea.form-control {
    height: 264px; } }
.form-theme .btn {
  text-transform: uppercase;
  color: var(--bs-primary-dark);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff; }

.fullwidth-image-banner {
  position: relative;
  min-height: 844px;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .fullwidth-image-banner .baner-overlay:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #384743 100%);
    opacity: .35; }
  .fullwidth-image-banner .about-top-spacer {
    height: 292px; }
  .fullwidth-image-banner .about-underlay-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #384743 100%);
    opacity: .5; }
  .fullwidth-image-banner .heading-right {
    max-width: 935px;
    margin-left: auto; }
  .fullwidth-image-banner .sub-heading {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600; }

.full-content-wrapper {
  max-width: 861px;
  margin: 0 auto; }
  .full-content-wrapper .large-text {
    font-family: "Faculty Glyphic", serif;
    font-size: 35px;
    font-weight: 400;
    max-width: 715px; }

@media only screen and (min-width: 768px) {
  .bg-md-img-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .bg-md-img-fill._object-top img {
      object-position: top; }
    .bg-md-img-fill._object-right img {
      object-position: right; }
    .bg-md-img-fill._object-bottom img {
      object-position: bottom; }
    .bg-md-img-fill._object-left img {
      object-position: left; }
    .bg-md-img-fill + div {
      position: relative;
      z-index: 2; }
    .bg-md-img-fill img {
      display: block;
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      font-family: 'object-fit: cover;'; } }
@media only screen and (max-width: 1199px) {
  .inner-banner {
    min-height: 430px; }

  .inner-banner-content {
    padding-top: 220px; }

  .fullwidth-image-banner {
    min-height: 700px; }
    .fullwidth-image-banner .about-top-spacer {
      height: 140px; }
    .fullwidth-image-banner .sub-heading {
      font-size: 1rem; }

  .full-content-wrapper .large-text {
    font-size: 20px; }

  .banner-fullwidth-image {
    min-height: 510px; } }
@media only screen and (max-width: 991px) {
  .inner-banner {
    min-height: unset; }

  .inner-banner-content {
    padding-bottom: 50px; }

  .banner-fullwidth-image {
    min-height: 410px; } }
@media only screen and (max-width: 767px) {
  .our-menu-nav .nav-link {
    font-size: 36px; }

  .fullwidth-image-banner {
    min-height: 600px; } }
@media only screen and (max-width: 575px) {
  .inner-banner-content {
    padding-bottom: 40px; }

  .our-menu-nav .nav-link {
    font-size: 32px;
    padding: 24px 50px 24px 0px;
    text-align: left; } }
@media only screen and (max-width: 479px) {
  .our-menu-nav .nav-link {
    font-size: 24px; }
    .our-menu-nav .nav-link .nav-icon {
      width: 36px;
      height: 26px;
      font-size: 14px; } }

/*# sourceMappingURL=app.css.map */
