@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter/Inter-Regular.woff2") format("woff2"), url("../assets/fonts/Inter/Inter-Regular.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter/Inter-Bold.woff2") format("woff2"), url("../assets/fonts/Inter/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Inter;
  color: #333333;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

textarea {
  resize: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

.container--small {
  max-width: 1140px;
}

/******* Components CSS ********/
.section--title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.section--divider {
  width: 130px;
  height: 4px;
  background-color: #D33838;
  margin: 30px auto;
}

.btn {
  background-color: #D33838;
  color: white;
  font-family: Inter;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px;
  font-size: 18px;
  border: none;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0;
}

.btn:hover {
  cursor: pointer;
}

.header {
  border-bottom: 2px solid #c4c4c4;
  z-index: 99;
  width: 100%;
}

.header__homepage {
  position: absolute;
  top: 0;
  left: 0;
}

.header--top {
  background-color: #333333;
}

.header--top a {
  text-decoration: none;
}

.header--bottom {
  background: rgba(255, 255, 255, 0.9);
}

.header--link {
  font-size: 18px;
  text-decoration: none;
  color: #333333;
  font-weight: 700;
}

.header--link:hover {
  color: #D33838;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .header--logo img {
    max-width: 150px;
  }
}

.header .menu-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 28px;
  height: 28px;
}

.header .menu-btn--line {
  height: 3px;
  width: 28px;
  background-color: #333333;
  border-radius: 10px;
  margin: 3px 0;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

.header .menu-btn--line:last-child {
  width: 14px;
}

.header .menu-btn--active .menu-btn--line:nth-child(1) {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .menu-btn--active .menu-btn--line:nth-child(2) {
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .menu-btn--active .menu-btn--line:nth-child(3) {
  position: absolute;
  opacity: 0;
}

.menu {
  -webkit-transition: .5s ease-in;
  transition: .5s ease-in;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: absolute;
  top: -100vh;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu--show {
  top: 0;
}

.hero {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../assets/images/hero-bg-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    margin-top: 85px;
    background-image: none;
  }
}

.services--link {
  color: #D33838;
}

.services--link:hover {
  cursor: pointer;
  color: #D33838;
}

.choose-us {
  background-image: url("../assets/images/choose-us-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.choose-us--grid1 {
  max-width: 435px;
}

.choose-us--grid2 {
  max-width: 383px;
}

.gallery img {
  cursor: pointer;
}

.refer {
  background-image: url("../assets/images/choose-us-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.refer--container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.refer--info {
  font-size: 14px;
  font-weight: 500;
}

.reviews--container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.reviews--controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews--controls button {
  position: relative;
  background-color: #c4c4c4;
  height: 35px;
  width: 35px;
  border: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}

.reviews--controls button:hover {
  background-color: #D33838;
}

.reviews .carousel {
  min-height: 200px;
}

.partners--container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.contact--container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.footer {
  background-color: #333333;
}

.service--container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .service {
    padding: 1rem;
  }
  .service iframe {
    width: 100%;
    height: auto;
    min-height: 300px;
  }
}
/*# sourceMappingURL=style.css.map */