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

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

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

html,
body {
  overflow-x: hidden;
}

textarea {
  resize: none;
}

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

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

@media screen and (max-width: 1180px) {
  .container {
    padding: 1rem;
  }
}

.font-primary {
  font-family: Staatliches;
}

/******* Components CSS ********/
.section--title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Staatliches;
}

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

.btn {
  background-color: #dc1f26;
  color: white;
  font-family: Staatliches;
  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;
  color: black;
}

.btn--secondary {
  background-color: transparent;
  border: 1px solid black;
  color: black;
}

.btn--secondary:hover {
  background-color: #dc1f26;
  color: white;
}

.btn--hero {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.header--not-fixed {
  position: relative;
}

.header--top {
  background: rgba(34, 34, 34, 0.5);
  border-bottom: 1px solid #c4c4c4;
}

.header--top a {
  text-decoration: none;
  font-size: 0.75rem;
}

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

.header--link {
  font-size: 18px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Staatliches;
}

.header--link:hover {
  color: #dc1f26;
  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: #1f1f1f;
  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-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-family: Staatliches;
  font-size: 84px;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 34px;
  }
}

.hero h1,
.hero p {
  color: #ffffff;
}

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

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

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

.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: transparent;
  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 .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: #0a0a0a;
}

.footer--columns .columns-content {
  background-color: #1a1a1a;
  height: 100%;
  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;
}

.service {
  background-color: #f5f5f5;
  border: 1px solid #dddddd;
  height: 100%;
  width: 100%;
}

.service--title {
  font-size: 27px;
  font-family: Staatliches;
}

.service--price {
  font-size: 24px;
  font-family: Staatliches;
}

.team-member {
  height: 100%;
}

.accordion .accordion-item {
  border: none !important;
  border-bottom: 1px solid #cccccc !important;
}

.accordion .accordion-button {
  font-size: 24px;
  font-family: Roboto;
  font-weight: 700;
  padding-left: 0 !important;
  outline: none !important;
}

.accordion .accordion-button:not(.collapsed) {
  color: #dc1f26 !important;
  background-color: transparent !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-container-2 .swiper-slide {
  background-color: #f5f5f5;
}

.swiper-container-2 .swiper-slide h3 {
  font-family: Staatliches;
  margin: 0;
  padding: 1rem 0;
}
/*# sourceMappingURL=style.css.map */