/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/inter-v13-latin-300.woff2?2d4c4e1b0312ac8dc566003edd89feac) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/inter-v13-latin-regular.woff2?f1535355a7df553be385f90ff3a00f7a) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url(/fonts/inter-v13-latin-500.woff2?6629df60b0706dec8113c91268006db7) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url(/fonts/inter-v13-latin-600.woff2?5d2eaa33f8194c062cad2a48ea271f20) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/inter-v13-latin-700.woff2?b4118e4ad76754e71d0b83b5dfa34574) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url(/fonts/inter-v13-latin-800.woff2?af3824f4adfaba3054f2d26aa2acc180) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --ons-brown: #42330c;
  --ons-darken-brown: #2b2004;
  --ons-yellow: #f5c80b;
  --ons-darken-yellow: #ddb100;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

button:focus,
a:focus,
input:focus,
.btn:focus,
select:focus {
  box-shadow: none !important;
}

.ul-inline {
  display: flex;
  justify-content: center;
}
.ul-inline li {
  display: inline;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

.br-5 {
  border-radius: 5px;
}

.br-10 {
  border-radius: 10px;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.1rem;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

#preloader {
  background-color: #f5c80b;
  position: fixed;
  inset: 0;
  z-index: 100000 !important;
}
#preloader #status {
  position: absolute;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #1d1b16;
}
#preloader #status img {
  width: 15vw;
}
@media only screen and (max-width: 991px) {
  #preloader #status img {
    width: 40vw;
  }
}

.ons-navbar .navbar-brand img {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 6rem;
  margin-bottom: -1rem;
}

.btn-ons-yellow {
  --bs-btn-color: var(--ons-brown);
  --bs-btn-bg: var(--ons-yellow);
  --bs-btn-border-color: var(--ons-yellow);
  --bs-btn-hover-color: var(--ons-brown);
  --bs-btn-hover-bg: var(--ons-darken-yellow);
  --bs-btn-hover-border-color: var(--ons-darken-yellow);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: var(--ons-brown);
  --bs-btn-active-bg: var(--ons-darken-yellow);
  --bs-btn-active-border-color: var(--ons-darken-yellow);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--ons-brown);
  --bs-btn-disabled-bg: var(--ons-yellow);
  --bs-btn-disabled-border-color: var(--ons-yellow);
}

.btn-ons-brown {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--ons-brown);
  --bs-btn-border-color: var(--ons-brown);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--ons-darken-brown);
  --bs-btn-hover-border-color: var(--ons-darken-brown);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--ons-darken-brown);
  --bs-btn-active-border-color: var(--ons-darken-brown);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--ons-brown);
  --bs-btn-disabled-border-color: var(--ons-brown);
}

.home-hero {
  padding: 5rem;
  height: 85vh;
  background-size: cover;
  display: flex;
  align-items: center;
  background-image: url("/storage/assets/hero.jpg");
}
@media only screen and (max-width: 991px) {
  .home-hero {
    padding: 4rem;
    height: 55vh;
    background-position: center;
  }
}
@media only screen and (max-width: 476px) {
  .home-hero {
    background-image: url("/storage/assets/hero-sm.jpg");
    padding: 6rem 1.5rem 1rem;
    height: 90vh;
    color: white;
    background-position: 80% center;
    text-align: center;
    position: relative;
    z-index: -1;
  }
  .home-hero .overlay {
    z-index: -1;
    inset: 0;
    background-color: rgb(0, 0, 0);
    position: absolute;
    filter: brightness(90%) opacity(50%);
  }
  .home-hero h1 {
    font-size: 1rem !important;
  }
  .home-hero h2 {
    font-size: 0.8rem !important;
  }
}

@media only screen and (max-width: 1400px) {
  .w-md-50 {
    width: 50%;
  }
  .w-md-75 {
    width: 75%;
  }
}
@media only screen and (max-width: 476px) {
  .w-md-50 {
    width: 100%;
  }
  .w-md-75 {
    width: 100%;
  }
}
.top-serve {
  color: white;
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 5px;
  min-height: 35vh;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: background-size 400ms !important;
}
.top-serve .truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-serve:hover {
  color: white;
  background-size: 110%;
}
.top-serve:hover img {
  padding-left: 0.5rem;
}
.top-serve .link-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .top-serve {
    min-height: 20vh !important;
  }
}
@media only screen and (max-width: 476px) {
  .top-serve {
    min-height: 30vh !important;
    font-size: 0.7rem !important;
    line-height: 0.9rem;
  }
  .top-serve h4 {
    font-size: 0.8rem !important;
  }
}
.top-serve * {
  transition: all 400ms !important;
}

.space {
  margin-top: 8rem;
}

.bg-ons-gray {
  background-color: #f5f5f5;
}

.py-7 {
  padding: 7rem 0rem;
}

@media only screen and (max-width: 476px) {
  .py-7 {
    padding: 4rem 0rem;
  }
  .space {
    margin-top: 5rem;
  }
  .fs-sm-2 {
    font-size: 0.9rem !important;
  }
}
.bg-ons-yellow {
  background-color: #f5c80b;
}

.bg-ons-brown {
  background-color: #42330c;
}

.ons-services {
  min-height: 23vh;
  transition: all 300ms;
  background-color: white;
  color: black;
}
.ons-services img {
  height: 3rem;
}
.ons-services:hover {
  margin-top: -1rem;
  color: white;
  background-color: #42330c !important;
}
.ons-services:hover .text-muted {
  color: #e2e2e2 !important;
}

.op-08 {
  opacity: 0.8;
}

.ons-footer hr {
  width: 90%;
}
.ons-footer .container.ons-contact {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9rem 19rem 3rem;
  position: relative;
  flex-direction: column;
  margin-bottom: -10rem;
  border-radius: 5px;
  background-size: cover;
  background-image: url("/storage/assets/footer.jpg");
}
@media only screen and (max-width: 991px) {
  .ons-footer .container.ons-contact {
    padding: 8rem 4rem 3rem;
  }
}
@media only screen and (max-width: 476px) {
  .ons-footer .container.ons-contact {
    padding: 3rem 2rem 3rem;
  }
  .ons-footer .container.ons-contact h4 {
    line-height: 1rem;
    font-size: 0.9rem !important;
  }
  .ons-footer .container.ons-contact p {
    line-height: 0.8rem;
    font-size: 0.7rem !important;
  }
}
.ons-footer .bg-ons-brown {
  background-color: #424242;
  padding-top: 15rem;
  padding-bottom: 1rem;
  color: #fff;
}
.ons-footer .bg-ons-brown .logo {
  width: 7rem;
}
.ons-footer .bg-ons-brown ul li {
  padding: 0.25rem;
}
.ons-footer .bg-ons-brown ul li a {
  color: #fff;
  transition: all 300ms;
  display: block;
}
.ons-footer .bg-ons-brown ul li a img {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(240deg) brightness(104%) contrast(101%);
}
.ons-footer .bg-ons-brown ul li a:hover {
  font-weight: bold;
  color: #f5c80b;
}
.ons-footer .bg-ons-brown ul li a:hover img {
  filter: invert(90%) sepia(28%) saturate(3508%) hue-rotate(353deg) brightness(98%) contrast(97%);
}
.ons-footer .bg-ons-brown ul li a:hover:not(.no-hov) {
  padding-left: 0.5rem;
}

.mb-md-n {
  margin-bottom: -8rem;
}
@media only screen and (max-width: 476px) {
  .mb-md-n {
    margin-bottom: 0rem;
    margin-top: -5rem;
  }
}

.ons-offcanvas {
  color: white;
  background-size: cover;
  background-image: url("/storage/assets/footer.jpg");
}
.ons-offcanvas .ul-inline {
  margin-top: 6rem;
}
.ons-offcanvas .ul-inline img {
  width: 1.5rem;
  margin-right: 0.5rem;
  filter: invert(99%) sepia(95%) saturate(20%) hue-rotate(210deg) brightness(103%) contrast(100%);
}

.text-ons-brown {
  color: #42330c;
}

.res-maps .maps {
  width: 100%;
  height: 80vh;
}

@media only screen and (max-width: 991px) {
  .res-maps .maps {
    height: 40vh;
  }
}
@media only screen and (max-width: 476px) {
  .res-maps .maps {
    height: 60vh;
  }
}
.res-maps .forms {
  margin-top: -20vh;
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #eaeaea;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}

.res-maps .forms .p-forms {
  padding: 1.5rem;
}

@media only screen and (max-width: 476px) {
  .res-maps .forms .p-forms {
    padding: 2rem 1rem 1rem 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .res-maps .forms {
    margin-top: -10vh;
  }
}
.res-maps .forms .form-control {
  border: 0px solid transparent;
  border-bottom: 2px solid #eee;
}

.res-maps .forms textarea::-moz-placeholder,
.res-maps .forms input::-moz-placeholder {
  color: rgb(27, 27, 27);
}

.res-maps .forms textarea::-moz-placeholder, .res-maps .forms input::-moz-placeholder {
  color: rgb(27, 27, 27);
}

.res-maps .forms textarea::placeholder,
.res-maps .forms input::placeholder {
  color: rgb(27, 27, 27);
}

.res-maps .contact-card {
  color: white;
  position: relative;
  background-color: #42330c;
  border-top-left-radius: 10px;
  padding: 4rem;
  font-size: 1rem;
  line-height: 1.2rem;
  border-bottom-left-radius: 10px;
}

.res-maps .contact-card ul img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 1rem;
  opacity: 0.5;
}

.res-maps .contact-card ul li a {
  display: flex;
  gap: 0.5rem;
  align-items: start;
}

@media only screen and (max-width: 991px) {
  .res-maps .contact-card {
    border-radius: 5px;
    padding: 3rem;
  }
}
.md-nowrap {
  white-space: nowrap !important;
}
@media only screen and (max-width: 476px) {
  .md-nowrap {
    white-space: unset !important;
  }
}
