/* 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 {
  --res-blue: #44419A;
  --res-darken-blue: rgb(2, 54, 117);
  --res-green: #8BC43F;
  --res-darken-green: #5f872a;
}

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;
}

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

#preloader {
  background-color: #8BC43F;
  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: #44419A;
}
#preloader #status img {
  width: 15vw;
}
@media only screen and (max-width: 991px) {
  #preloader #status img {
    width: 40vw;
  }
}

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

.btn-res-green {
  font-weight: 400;
  --bs-btn-color: #000;
  --bs-btn-bg: var(--res-green);
  --bs-btn-border-color: var(--res-green);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: var(--res-darken-green);
  --bs-btn-hover-border-color: var(--res-darken-green);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--res-darken-green);
  --bs-btn-active-border-color: var(--res-darken-green);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--res-green);
  --bs-btn-disabled-border-color: var(--res-green);
}

.res-navbar {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.25);
}
.res-navbar .navbar-brand img {
  width: 8rem;
}

.bg-res-blue {
  color: white;
  background-color: var(--res-blue);
}

.home-hero img {
  height: 70vh;
}
.home-hero .overlay {
  padding: 3rem 5rem;
}
@media only screen and (max-width: 991px) {
  .home-hero img {
    height: 75vh;
    -o-object-position: 10%;
       object-position: 10%;
  }
  .home-hero .overlay {
    padding: 4rem 2rem;
  }
}
@media only screen and (max-width: 476px) {
  .home-hero img {
    height: 80vh;
    -o-object-position: 10%;
       object-position: 10%;
  }
}

.products-list .res-owl {
  color: white;
}
.products-list .res-owl .item {
  font-weight: bold;
  text-align: center;
  padding: 3rem 0;
}
.products-list .res-owl .owl-item:nth-of-type(2n) {
  background-color: #44419A;
}
.products-list .res-owl .owl-item:nth-of-type(2n+1) {
  background-color: #8BC43F;
  color: black !important;
}

.res-footer hr {
  width: 90%;
  margin: auto;
  border: 1px solid #8BC43F;
}
.res-footer .footer-logo {
  width: 12rem;
}
.res-footer .deets {
  margin-top: 2rem;
  padding: 0.5rem 8rem 3rem;
}
@media only screen and (max-width: 991px) {
  .res-footer .deets {
    padding: 0.5rem 2rem 3rem;
  }
}

.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::placeholder,
.res-maps .forms input::placeholder {
  color: rgb(27, 27, 27);
}
.res-maps .contact-card {
  padding: 5rem 3rem 5rem 13rem;
  color: white;
  position: relative;
  background-color: #44419A;
  border-top-left-radius: 10px;
  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;
}
.res-maps .contact-card .contact-logo {
  left: 5%;
  opacity: 1;
  height: 80%;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .res-maps .contact-card {
    margin-left: 8rem;
    padding: 3rem 3rem 3rem 6rem;
    border-radius: 5px;
  }
  .res-maps .contact-card .contact-logo {
    opacity: 0.9;
    left: -20%;
  }
}
@media only screen and (max-width: 476px) {
  .res-maps .contact-card {
    margin-left: 0rem;
    padding: 9rem 3rem 3rem 3rem;
  }
  .res-maps .contact-card .contact-logo {
    top: -75%;
    width: 7rem;
    right: 3rem;
    -o-object-fit: contain;
       object-fit: contain;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.mt-n5 {
  width: 7rem;
  display: block;
  position: relative;
  margin: auto;
  margin-top: -3.5%;
}

.owl-carousel2 .item img {
  border-radius: 5px;
  height: 14rem;
}

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

.font-res-blue {
  color: #44419A;
}

.fs-3 {
  width: 3rem;
}

@media only screen and (max-width: 991px) {
  .about-cover img.w-100 {
    height: 30vh;
  }
  .about-cover .mt-n5 {
    margin-top: -3rem;
  }
}
.w-md-50 {
  width: 50%;
}

@media only screen and (max-width: 476px) {
  .w-md-50 {
    width: 100%;
  }
}
.products-list .row .option {
  background-color: #eee;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 3rem 0;
}
.products-list .row div[class^=col-]:nth-of-type(2n) .option {
  background-color: #44419A;
  color: white;
}
.products-list .row div[class^=col-]:nth-of-type(2n+1) .option {
  background-color: #8BC43F;
  color: black !important;
}

.option2 {
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 3rem 0;
}

.option2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 100;
  transform-origin: left;
  transition: color 500ms;
  color: #000;
}
.option2::before, .option2::after {
  z-index: -2;
  content: "";
  inset: 0;
  position: absolute;
  transform-origin: left;
  transition: all 500ms;
  transform: scaleX(0);
  background-color: #8BC43F;
}
.option2::after {
  background-color: #44419A;
}
@media (hover: hover) {
  .option2:hover {
    color: white;
  }
  .option2:hover::before, .option2:hover::after {
    transform: scaleX(1);
  }
  .option2:hover::after {
    transition-delay: 200ms;
  }
}

@-webkit-keyframes anim-prod {
  0% {
    transform: scaleX(0);
  }
  25% {
    transform: scaleX(1);
  }
  45% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@keyframes anim-prod {
  0% {
    transform: scaleX(0);
  }
  25% {
    transform: scaleX(1);
  }
  45% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@-webkit-keyframes anim-color {
  0% {
    color: black;
  }
  25% {
    color: white;
  }
  50% {
    color: white;
  }
  100% {
    color: black;
  }
}
@keyframes anim-color {
  0% {
    color: black;
  }
  25% {
    color: white;
  }
  50% {
    color: white;
  }
  100% {
    color: black;
  }
}
@media only screen and (max-width: 991px) {
  .anim.in-view .option2 {
    -webkit-animation: anim-color 600ms linear;
            animation: anim-color 600ms linear;
  }
  .anim.in-view .option2::before, .anim.in-view .option2::after {
    -webkit-animation: anim-prod 600ms linear;
            animation: anim-prod 600ms linear;
  }
  .anim.in-view .option2::after {
    -webkit-animation-delay: 150ms;
            animation-delay: 150ms;
  }
}
