@import url(https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap);
:root {
  --primary: #FF4D03;
  --white: #fff;
  --black: #000;
  --off-white: #F5F5F5;
  --grey: #D9D9D9;
}

a {
  text-decoration: none;
  color: var(--black);
}

html {
  position: relative;
  min-height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  color: var(--black);
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 150%;
}
@media screen and (max-width: 750px) {
  body {
    line-height: 30px;
  }
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }
}

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

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--off-white);
}

.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

.main-font {
  font-family: "Inria Sans", sans-serif;
}

.container {
  max-width: 1280px;
  padding-left: 3rem;
  padding-right: 3rem;
  margin: auto;
}
@media screen and (max-width: 660px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

h1, .h1 {
  line-height: 140%;
  margin: 0;
  font-size: 2.5em;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 660px) {
  h1, .h1 {
    font-size: 32px;
  }
}

h3, .h3 {
  line-height: 140%;
  margin: 0;
  font-size: 2em;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  h3, .h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 660px) {
  h3, .h3 {
    font-size: 26px;
  }
}

h4, .h4 {
  line-height: 120%;
  margin: 0;
  font-size: 1.5em;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  h4, .h4 {
    font-size: 24x;
  }
}
@media screen and (max-width: 660px) {
  h4, .h4 {
    font-size: 20px;
  }
}

p {
  margin: 0;
}

.basic-text-container {
  max-width: 900px;
  margin: auto;
}

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

.btn {
  padding: 12px 24px;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 0px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--black);
}

.btn-secondary {
  background-color: var(--black);
  color: var(--primary);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: var(--off-white);
}

.section-padding-top {
  padding-top: 4rem;
}

.section-padding-bottom {
  padding-bottom: 4rem;
}

.common-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.header-section {
  background-color: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 660px) {
  .header-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 660px) {
  .desktop-menu {
    display: none !important;
  }
}

.menu-wrapper {
  display: flex;
  align-items: center;
}

.menu-item {
  color: var(--black);
  font-size: 1em;
  font-weight: 600;
  padding-top: 32px;
  padding-bottom: 36px;
  border-top: 4px solid transparent;
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-item:hover {
  color: var(--primary);
}

.menu-active {
  color: var(--primary);
  border-top: 4px solid var(--primary);
}

.menu-item-btn {
  color: var(--primary);
  background-color: rgba(203, 120, 76, 0.18);
  border-radius: 10px;
  padding: 12px 16px;
}

.logo-wrapper {
  width: auto;
  height: 72px;
}
@media screen and (max-width: 660px) {
  .logo-wrapper {
    height: 56px;
  }
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-banner-section {
  width: 100%;
  height: 80vh;
  position: relative;
}
.hero-banner-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.black-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  text-align: center;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero-text-wrapper img {
  width: 460px;
  height: auto;
}
@media screen and (max-width: 550px) {
  .hero-text-wrapper img {
    width: 100%;
  }
}

.service-items-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
  row-gap: 3.5rem;
}
@media screen and (max-width: 990px) {
  .service-items-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 660px) {
  .service-items-wrapper {
    grid-template-columns: 1fr;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.owl-carousel .owl-item img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-slider-dots, .testimonials-slider-dots {
  display: flex;
  gap: 1rem;
  margin: auto;
}
.gallery-slider-dots .owl-dot, .testimonials-slider-dots .owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: var(--grey);
  cursor: pointer;
  border: 0;
}
.gallery-slider-dots .active, .testimonials-slider-dots .active {
  background-color: var(--primary);
}

.testimonial-item {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--white);
}

.quote-wrapper {
  display: flex;
  justify-content: flex-end;
}
.quote-wrapper img {
  width: auto !important;
  height: 30px !important;
}

.form-wrapper {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--black);
  margin-bottom: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 660px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer-section {
  background-color: #2E2E2E;
}

.footer-menu-container {
  display: flex;
  justify-content: space-between;
}

.footer-menu-wrapper {
  display: flex;
  gap: 1.5rem;
  color: var(--white);
  font-size: 1.2em;
  font-weight: 600;
}
.footer-menu-wrapper a {
  color: var(--white);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.footer-menu-wrapper a:hover {
  color: var(--primary);
}

.footer-logo-wrapper {
  height: 80px;
}
.footer-logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-media-wrapper {
  display: flex;
  gap: 1.5rem;
}
.social-media-wrapper a {
  font-size: 1.2em;
  color: var(--white);
  transition: all 0.3s ease;
}
.social-media-wrapper a:hover {
  color: var(--primary);
}

.mobile-menu-wrapper {
  display: none;
  width: 30px;
  height: 30px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 910px) {
  .mobile-menu-wrapper {
    display: flex;
  }
}

.mobile-menu-bar {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: var(--black);
  transition: all 0.3s ease;
}

.mobile-menu-active .mobile-menu-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.mobile-menu-active .mobile-menu-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-active .mobile-menu-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.mobile-menu-content-wrapper {
  background-color: var(--white);
  position: fixed;
  z-index: 10;
  top: 72px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-content-wrapper a:first-child {
  margin-top: 3rem;
}

.content-active {
  height: 100vh;
}
