@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul {
  margin: 0 !important;
  padding: 0;
  letter-spacing: normal;
  line-height: normal;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.image-ratio {
  position: relative;
  width: 100%;
}
.image-ratio > img,
.image-ratio > video,
.image-ratio > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image-ratio--16-9 {
  padding-top: 56.25%;
}
.image-ratio--square {
  padding-top: 100%;
}
.image-ratio--contain > img,
.image-ratio--contain > video,
.image-ratio--contain > iframe {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.btn {
  position: relative;
  font-size: 24px;
  line-height: 1;
  padding: 20px 48px;
  text-align: center;
  outline: none;
  border-radius: 17px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s all ease;
}
@media (max-width: 767px) {
  .btn {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.btn-red {
  color: #fff;
  background-color: #e9222d;
  border-color: #e9222d;
}
.btn-red:hover {
  color: #fff;
  background-color: rgb(66, 66, 66);
  border-color: rgb(66, 66, 66);
}

.site-header {
  position: relative;
  z-index: 999;
  position: sticky;
  top: 0;
  box-shadow: 0 0px 5.5px 0 rgba(0, 0, 0, 0.08);
}
.site-header .nav-contact-bar {
  padding: 12px 0;
  background-color: #000;
}
@media (max-width: 767px) {
  .site-header .nav-contact-bar {
    padding: 8px 0;
  }
}
.site-header .nav-contact-bar ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 74px;
}
@media (max-width: 767px) {
  .site-header .nav-contact-bar ul {
    gap: 20px;
  }
}
.site-header .nav-contact-bar ul li {
  display: flex;
  align-items: center;
}
.site-header .nav-contact-bar ul li .icon-wrapper {
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  width: 100%;
  max-width: 24px;
  color: #fff;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .site-header .nav-contact-bar ul li .icon-wrapper {
    max-width: 18px;
    margin-right: 8px;
  }
}
.site-header .nav-contact-bar ul li .icon-wrapper svg {
  width: 100%;
  height: auto;
}
.site-header .nav-contact-bar ul li a {
  color: #fff;
  transition: 0.3s all ease;
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 767px) {
  .site-header .nav-contact-bar ul li a {
    font-size: 12px;
  }
}
.site-header .nav-contact-bar ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-header .nav-contact-bar ul li a svg {
  width: 100%;
  height: auto;
}
.site-header .navbar {
  background-color: #fff;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .site-header .navbar {
    padding: 14px 0;
  }
}
.site-header .navbar .navbar-toggler {
  border: 0;
  box-shadow: none;
  padding: 0;
}
.site-header .navbar .site-logo {
  font-size: 0;
  line-height: 0;
  margin-right: 48px;
}
@media (max-width: 767px) {
  .site-header .navbar .site-logo {
    width: 100%;
    max-width: 120px;
  }
  .site-header .navbar .site-logo svg,
  .site-header .navbar .site-logo img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 992px) {
  .site-header .navbar .navbar-collapse {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    min-height: calc(-107px + 100dvh);
    background: #fff;
    padding: 20px;
    transform: translateX(-100%);
    transition: 0.1s all ease;
  }
  .site-header .navbar .navbar-collapse.show {
    transform: translateX(0%);
  }
}
.site-header .navbar .navbar-nav .nav-item:not(:last-child) {
  margin-right: 20px;
}
.site-header .navbar .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 1;
  color: black;
  transition: 0.3s all ease;
}
.site-header .navbar .navbar-nav .nav-item .nav-link:hover, .site-header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #e9222d;
}
@media (max-width: 992px) {
  .site-header .navbar .nav-social-links {
    display: none;
  }
	
	.site-header .navbar-nav{
		gap: 10px;
	}
}
.site-header .navbar .nav-social-links ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.site-header .navbar .nav-social-links ul li {
  font-size: 0;
  line-height: 0;
}
.site-header .navbar .nav-social-links ul li a {
  display: block;
  width: 100%;
  max-width: 28px;
  color: #e9222d;
  transition: 0.3s all ease;
}
.site-header .navbar .nav-social-links ul li a:hover {
  color: #000;
}
.site-header .navbar .nav-social-links ul li a svg {
  width: 100%;
  height: auto;
}

.site-hero {
  position: relative;
  padding: 60px 0;
  height: calc(100vh - 139px);
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media (max-width: 767px) {
  .site-hero {
    height: calc(100vh - 109px);
  }
}
.site-hero.bg-white {
  color: #000;
}
@media (max-width: 992px) {
  .site-hero.bg-white {
    height: -moz-fit-content;
    height: fit-content;
    padding: 48px 0;
  }
}
.site-hero.bg-white .site-hero__content {
  max-width: 100%;
}
.site-hero.bg-white .image-wrapper img {
  width: 100%;
  height: auto;
}
.site-hero--bg {
  pointer-events: none;
}
.site-hero--bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.site-hero--bg .the-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.site-hero .container {
  position: relative;
  z-index: 3;
}
.site-hero__content {
  width: 100%;
  max-width: 844px;
}
.site-hero__content h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 23px !important;
}
@media (max-width: 767px) {
  .site-hero__content h2 {
    font-size: 32px;
  }
}
.site-hero__content p {
  font-size: 24px;
  width: 100%;
  max-width: 603px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .site-hero__content p {
    font-size: 18px;
  }
}
.site-hero__content .btn {
  margin-top: 32px !important;
}

.hero-services {
  position: relative;
  padding: 28px 0;
  height: calc(100vh - 139px);
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
}
@media (max-width: 767px) {
  .hero-services {
    height: calc(100vh - 109px);
  }
}
.hero-services--bg {
  pointer-events: none;
}
.hero-services--bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.hero-services--bg .the-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero-services .container {
  position: relative;
  z-index: 3;
}
.hero-services__content {
  width: 100%;
  text-align: center;
}
.hero-services__content h1 {
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  .hero-services__content h1 {
    font-size: 42px;
  }
}
.hero-services__content h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 23px !important;
}
@media (max-width: 767px) {
  .hero-services__content h2 {
    font-size: 32px;
  }
}
.hero-services__content p {
  font-size: 24px;
  width: 100%;
  max-width: 603px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .hero-services__content p {
    font-size: 18px;
  }
}
.hero-services__content .btn {
  margin-top: 32px !important;
}

.site-hero__stats {
  position: relative;
  margin-top: -100px;
  z-index: 3;
}
.site-hero__stats--all {
  position: relative;
  padding: 18px 36px;
  border-radius: 17px;
  box-shadow: 0 4px 14.5px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (max-width: 767px) {
  .site-hero__stats--all {
    padding: 12px;
  }
}
.site-hero__stats--each {
  padding: 35px 32px;
  background-color: #e9222d;
  color: #fff;
  text-align: center;
  border-radius: 17px;
}
@media (max-width: 767px) {
  .site-hero__stats--each {
    padding: 24px;
  }
}
.site-hero__stats--each h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .site-hero__stats--each h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.site-hero__stats--each p {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .site-hero__stats--each p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .site-hero__stats.thumb-pink {
    margin-top: 0;
  }
}
.site-hero__stats.thumb-pink .site-hero__stats--each {
  background-color: rgba(233, 34, 45, 0.43);
  color: #000;
}

.mep-services {
  position: relative;
  padding: 48px 0;
  background-color: #000;
  color: #fff;
	overflow: hidden;
}
@media (max-width: 767px) {
  .mep-services {
    padding: 32px 0;
    padding-bottom: 24px;
  }
}
.mep-services__title {
  margin-bottom: 48px;
}
.mep-services__title h2 {
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mep-services__title h2 {
    font-size: 32px;
  }
}
.mep-services__all--each {
  border-left: 24px solid #e9222d;
  padding-left: 14px;
}
@media (max-width: 767px) {
  .mep-services__all--each {
    border-width: 8px;
    padding-left: 8px;
  }
}
.mep-services__all--each .service-wrapper {
  padding: 24px 30px;
  padding-bottom: 40px;
  background-color: #d9d9d9;
  color: #000;
}
@media (max-width: 767px) {
  .mep-services__all--each .service-wrapper {
    padding: 24px;
    padding-bottom: 32px;
  }
}
.mep-services__all--each .service-wrapper h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) {
  .mep-services__all--each .service-wrapper h2 {
    font-size: 28px;
    margin-bottom: 18px !important;
  }
}
.mep-services__all--each .service-wrapper p {
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .mep-services__all--each .service-wrapper p {
    font-size: 16px;
  }
}
.mep-services__all .the-award {
  padding: 26px 35px;
  background-color: #e9222d;
  border-radius: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .mep-services__all .the-award {
    padding: 12px;
    border-radius: 12px;
  }
}
.mep-services__all .the-award__icon {
  padding: 22px 34px 40px 34px;
  background-color: #fff;
  color: #000;
  border-radius: 27px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .mep-services__all .the-award__icon {
    padding: 18px;
    border-radius: 12px;
    max-width: 120px;
  }
}
.mep-services__all .the-award__icon h2 {
  font-size: 96px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  .mep-services__all .the-award__icon h2 {
    font-size: 32px;
  }
}
.mep-services__all .the-award__icon p {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .mep-services__all .the-award__icon p {
    font-size: 12px;
  }
}
.mep-services__all .the-award__text {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mep-services__all .the-award__text {
    font-size: 18px;
  }
}
.mep-services__all .award-image {
  height: 100%;
  min-height: 400px;
  position: relative;
}
.mep-services__all .award-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.the-rich-text {
  position: relative;
  padding: 100px 0 48px;
  text-align: center;
  background-color: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .the-rich-text {
    padding: 56px 0 48px;
  }
}
.the-rich-text .container {
  max-width: 946px;
}
.the-rich-text h1 {
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  .the-rich-text h1 {
    font-size: 42px;
  }
}
.the-rich-text h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  .the-rich-text h2 {
    font-size: 32px;
  }
}
.the-rich-text p {
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .the-rich-text p {
    font-size: 18px;
  }
}
.the-rich-text .btn {
  margin-top: 32px;
}

.our-process {
  position: relative;
  padding: 48px 0;
  background-color: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .our-process {
    padding: 32px 0;
  }
}
.our-process__title {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .our-process__title {
    margin-bottom: 40px;
  }
}
.our-process__title h2 {
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .our-process__title h2 {
    font-size: 32px;
  }
}
.our-process__all--each h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px !important;
}
@media (max-width: 767px) {
  .our-process__all--each h3 {
    font-size: 18px;
    margin-bottom: 14px !important;
  }
}
.our-process__all--each p {
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .our-process__all--each p {
    font-size: 14px;
  }
}
.our-process__all .icon-wrapper {
  font-size: 0;
  line-height: 0;
}
.our-process__all .icon-wrapper svg {
  width: 100%;
  height: auto;
}
.our-process__all .icon-vert {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-with-content {
  position: relative;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .image-with-content {
    padding: 60px 0;
  }
}
.image-with-content__image img {
  width: 100%;
  height: auto;
}
.image-with-content__content {
  width: 100%;
  max-width: 500px;
}
.image-with-content__content h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 24px !important;
}
@media (max-width: 767px) {
  .image-with-content__content h2 {
    font-size: 32px;
  }
}
.image-with-content__content p {
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .image-with-content__content p {
    font-size: 18px;
  }
}
.image-with-content__content .btn-wrapper {
  margin-top: 32px;
}

.the-testimonials {
  position: relative;
  padding: 120px 0;
  color: #fff;
}
@media (max-width: 767px) {
  .the-testimonials {
    padding: 60px 0;
  }
}
.the-testimonials--bg {
  pointer-events: none;
}
.the-testimonials--bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.the-testimonials--bg .the-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.the-testimonials .container {
  position: relative;
  z-index: 3;
}
.the-testimonials__about {
  width: 100%;
  max-width: 500px;
}
.the-testimonials__about h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 24px !important;
}
@media (max-width: 767px) {
  .the-testimonials__about h2 {
    font-size: 32px;
  }
}
.the-testimonials__about p {
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .the-testimonials__about p {
    font-size: 18px;
  }
}
.the-testimonials__about .btn-wrapper {
  margin-top: 32px;
}
.the-testimonials__review {
  padding: 72px 0;
  padding-left: 52px;
  border-left: 11px solid #fff;
}
@media (max-width: 767px) {
  .the-testimonials__review {
    padding: 32px 0;
    padding-left: 32px;
  }
}
.the-testimonials__review .the-author {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}
.the-testimonials__review .the-author .image-wrapper {
  width: 100%;
  max-width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
}
.the-testimonials__review .the-author p {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .the-testimonials__review .the-author p {
    font-size: 18px;
  }
}
.the-testimonials__review .text-wrapper p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .the-testimonials__review .text-wrapper p {
    font-size: 18px;
  }
}
.the-testimonials__review .the-rating {
  font-size: 0;
  line-height: 0;
  margin-top: 24px;
}

.why-choose-us {
  position: relative;
  padding: 56px 0;
  background-color: #000;
  color: #fff;
}
@media (max-width: 767px) {
  .why-choose-us {
    padding: 48px 0;
  }
}
.why-choose-us.bg-white {
  background-color: #fff;
  color: #000;
}
.why-choose-us.bg-white h2 span {
  color: #e9222d;
}
.why-choose-us__title h2 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 28px !important;
}
@media (max-width: 767px) {
  .why-choose-us__title h2 {
    font-size: 42px;
  }
}
.why-choose-us__title h3 {
  font-size: 40px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .why-choose-us__title h3 {
    font-size: 32px;
  }
}
.why-choose-us__title p {
  width: 100%;
  max-width: 670px;
  font-size: 24px;
  font-weight: normal;
  margin-top: 28px !important;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .why-choose-us__title p {
    font-size: 18px;
  }
}
.why-choose-us__all {
  margin-top: 60px;
}
.why-choose-us__all--each {
  padding-left: 23px;
  border-left: 25px solid #e9222d;
  width: 100%;
  max-width: 498px;
}
@media (max-width: 767px) {
  .why-choose-us__all--each {
    border-width: 8px;
  }
}
.why-choose-us__all--each h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 9px !important;
}
.why-choose-us__all--each p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}

.the-gallery {
  position: relative;
  padding: 56px 0;
}
@media (max-width: 767px) {
  .the-gallery {
    padding: 48px 0;
  }
}
.the-gallery__image--1 .image-ratio {
  padding-top: 69.25%;
}
.the-gallery__image--2 .image-ratio {
  padding-top: 33.51%;
}
.the-gallery__image--3 .image-ratio {
  padding-top: 72.25%;
}

.our-services {
  position: relative;
  padding: 64px 0;
  color: #fff;
}
.our-services .our-services__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  pointer-events: none;
}
.our-services .container {
  position: relative;
  z-index: 2;
}
.our-services__content h2 {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .our-services__content h2 {
    font-size: 42px;
  }
}
.our-services__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media (max-width: 767px) {
  .our-services__content ul {
    gap: 32px;
  }
}
.our-services__content ul li {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .our-services__content ul li {
    gap: 24px;
  }
}
.our-services__content ul li .icon-wrapper {
  font-size: 0;
  line-height: 0;
  width: 100%;
  max-width: 68px;
}
@media (max-width: 767px) {
  .our-services__content ul li .icon-wrapper {
    max-width: 48px;
  }
}
.our-services__content ul li .icon-wrapper svg {
  width: 100%;
  height: auto;
}
.our-services__content ul li p {
  font-size: 40px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .our-services__content ul li p {
    font-size: 24px;
  }
}

.the-contact-us {
  position: relative;
  padding: 56px 0;
  background-color: #000;
  color: #fff;
}
.the-contact-us.bg-green {
  background-color: #569fa6;
  color: #fff;
}
@media (max-width: 767px) {
  .the-contact-us {
    padding: 48px 0;
  }
}
.the-contact-us__title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .the-contact-us__title {
    margin-bottom: 48px;
  }
}
.the-contact-us__title h2 {
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .the-contact-us__title h2 {
    font-size: 32px;
  }
}
.the-contact-us__form .form-control {
  background: #fff;
  padding: 18px 32px;
  border: 1px solid #fff;
  border-radius: 8px;
  outline: none;
  font-size: 22px;
  color: #000;
  box-shadow: none;
  display: block;
}
@media (max-width: 767px) {
  .the-contact-us__form .form-control {
    font-size: 18px;
    padding: 14px 24px;
  }
}
.the-contact-us__form .form-control::-moz-placeholder {
  color: #000;
}
.the-contact-us__form .form-control::placeholder {
  color: #000;
}

.site-footer {
  position: relative;
  padding: 50px 0;
  background-color: #e9222d;
  color: #fff;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 48px 0;
  }
}
.site-footer h3 {
  font-size: 36px !important;
  font-weight: 500;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .site-footer h3 {
    font-size: 24px !important;
  }
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-footer ul li .icon-wrapper {
  flex-shrink: 0;
}
.site-footer ul li:not(:last-child) {
  margin-bottom: 20px;
}
.site-footer ul li a {
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 767px) {
  .site-footer ul li a {
    font-size: 18px;
  }
}
.site-footer__newsletter {
  margin-bottom: 60px;
}
.site-footer__newsletter .form-control {
  background: transparent;
  padding: 26px 32px;
  border: 1px solid #fff;
  border-radius: 0;
  outline: none;
  font-size: 24px;
  color: #fff;
  box-shadow: none;
}
@media (max-width: 767px) {
  .site-footer__newsletter .form-control {
    padding: 14px 24px;
    font-size: 16px;
  }
}
.site-footer__newsletter .form-control::-moz-placeholder {
  color: #fff;
}
.site-footer__newsletter .form-control::placeholder {
  color: #fff;
}
.site-footer__newsletter .input-group-text {
  border-radius: 0;
  padding: 4px 32px;
}
@media (max-width: 767px) {
  .site-footer__newsletter .input-group-text {
    padding: 4px 18px;
  }
  .site-footer__newsletter .input-group-text svg {
    width: 100%;
    max-width: 32px;
    height: auto;
  }
}
.site-footer__copyright {
  margin-top: 60px;
}
.site-footer__copyright p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 767px) {
  .site-footer__copyright p {
    font-size: 16px;
  }
}

.the-message {
  position: relative;
  padding: 12px 0 42px;
}
.the-message .image-wrapper {
  border-radius: 26px;
  overflow: hidden;
}
.the-message .image-wrapper .image-ratio {
  padding-top: 90%;
}
.the-message .the-award {
  padding: 26px 35px;
  background-color: #e9222d;
  border-radius: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .the-message .the-award {
    padding: 12px;
    border-radius: 12px;
  }
}
.the-message .the-award__icon {
  padding: 22px 34px 40px 34px;
  background-color: #fff;
  color: #000;
  border-radius: 27px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .the-message .the-award__icon {
    padding: 18px;
    border-radius: 12px;
    max-width: 120px;
  }
}
.the-message .the-award__icon h2 {
  font-size: 96px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  .the-message .the-award__icon h2 {
    font-size: 32px;
  }
}
.the-message .the-award__icon p {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .the-message .the-award__icon p {
    font-size: 12px;
  }
}
.the-message .the-award__text {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .the-message .the-award__text {
    font-size: 18px;
  }
}
.the-message__message {
  margin-top: 42px;
}
.the-message__message .title-block {
  margin-bottom: 30px;
}
.the-message__message h2 {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .the-message__message h2 {
    font-size: 32px;
  }
}
.the-message__message .devider {
  width: 100%;
  max-width: 180px;
  height: 5px;
  background-color: #e9222d;
  margin-top: 12px;
}
.the-message__message p {
  font-size: 18px;
  line-height: 1.4;
}

.door-step-service {
  position: relative;
  padding: 42px 0 64px;
}
@media (max-width: 767px) {
  .door-step-service {
    padding: 12px 0 48px;
  }
}
.door-step-service .title-wrapper {
  padding: 14px 36px;
  background-color: #e9222d;
  color: #fff;
  margin-bottom: 26px;
  border-radius: 12px;
  margin-right: -76px;
}
@media (max-width: 767px) {
  .door-step-service .title-wrapper {
    margin-right: 0;
    padding: 12px 18px;
  }
}
.door-step-service .title-wrapper h2 {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .door-step-service .title-wrapper h2 {
    font-size: 24px;
  }
}
.door-step-service p {
  font-size: 18px;
  line-height: 1.4;
}
.door-step-service__text {
  padding-top: 21px;
}
@media (max-width: 767px) {
  .door-step-service__text {
    padding-top: 0;
  }
}
.door-step-service__image {
  border-radius: 37px;
  overflow: hidden;
}

.laundry-services {
  position: relative;
  z-index: 4;
}

.page-laundry-service{
	background: rgba(0,0,0,0.6);
}

.laundry-services__inner {
  padding: 50px;
  background-color: #fff;
  border-radius: 17px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-top: -200px;
}
.laundry-services__all {
  width: 100%;
  max-width: 936px;
  margin: 0 auto;
}
.laundry-services__all .title-block {
  color: #e9222d;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-bottom: 76px;
}
.laundry-services__all .title-block h3 {
  font-size: 36px;
  font-weight: 400;
}
.laundry-services__all .title-block h2 {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
}
.laundry-services__all .services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.laundry-services__all .four-grid-layout__service-content {
  padding: 40px;
  background-color: #e9222d;
  color: #fff;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.laundry-services__all .four-grid-layout__service-content.service--1 {
  border-top-left-radius: 50px;
}
.laundry-services__all .four-grid-layout__service-content.service--2, .laundry-services__all .four-grid-layout__service-content.service--3 {
  background-color: #000;
}
.laundry-services__all .four-grid-layout__service-content.service--4 {
  border-bottom-right-radius: 50px;
}
.laundry-services__all .four-grid-layout__service-content h3 {
  font-size: 32px;
  font-weight: bold;
}
.laundry-services__all .four-grid-layout__service-content p {
  font-size: 20px;
  line-height: 1.45;
}
.laundry-services__all .text-with-bg {
  position: relative;
  padding: 48px 48px 64px;
  color: #fff;
  width: 100%;
}
.laundry-services__all .text-with-bg--bg {
  pointer-events: none;
}
.laundry-services__all .text-with-bg--bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.laundry-services__all .text-with-bg--bg .the-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.laundry-services__all .text-with-bg--content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 600px;
}
.laundry-services__all .text-with-bg--content h2 {
  font-size: 36px;
  font-weight: 600;
}
.laundry-services__all .text-with-bg--content p {
  font-size: 20px;
  line-height: 1.45;
}
.laundry-services__all .text-with-bg.ms-auto .text-with-bg--content {
  margin-left: auto;
}
.laundry-services__all .wash-per-day {
  position: relative;
  padding: 64px;
  background-color: #e9222d;
  color: #fff;
  border-radius: 25px;
}
.laundry-services__all .wash-per-day__count h2 {
  font-size: 64px;
  font-weight: 800;
}
.laundry-services__all .wash-per-day__count p {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.laundry-services__all .wash-per-day__still-counting {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.laundry-services__all .wash-per-day__still-counting h3 {
  font-size: 48px;
  font-weight: 500;
}
.laundry-services__all .wash-per-day__still-counting p {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.laundry-services__all .why-choose-us-alt {
  position: relative;
  padding: 48px 48px 96px;
  background-color: #000;
  color: #fff;
}

/*# sourceMappingURL=app.css.map */