@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: #ffffff;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  background-color: #222222;
}

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: #ffdb4f;
  margin: 30px auto;
}

.btn {
  background-color: #ffdb4f;
  color: #222222;
  font-family: Inter;
  font-weight: 700;
  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: #222222;
}

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

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

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

.header--link:hover {
  color: #ffdb4f;
  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: #fff;
  border-radius: 10px;
  margin: 3px 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.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: 0.5s ease-in;
  transition: 0.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.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding-top: 100px;
  }
}

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

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

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

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

.gallery img {
  cursor: pointer;
  width: 95%;
}

.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: #ffdb4f;
}

.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: #1e1e1e;
}

.scroll-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  height: 50px;
  width: 50px;
  background-color: #ffdb4f;
  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;
  cursor: pointer;
  display: none;
}

.faq-container {
  margin-top: 40px;
  position: relative;
  max-width: 1100px;
}

.faq-container .faq-question {
  padding: 15px 0;
  border-bottom: 0.5px solid #dddddd;
}

.faq-container .faq-question .faq-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.faq-container .faq-question .faq-top .faq-title {
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin: 10px 0;
}

.faq-container .faq-question .faq-top .faq-arrow {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-container .faq-question .faq-answer {
  overflow: hidden;
  height: 0;
  margin-top: 0;
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 19px;
  color: #dddddd;
}
/*# sourceMappingURL=style.css.map */