* {
  font-family: "Readex Pro", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav_link_black {
  color: #242424;
  font-size: 18px;
  line-height: 18.3px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.nav_link_black:hover {
  text-decoration: none;
  color: #242424;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: 200px;
  overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.5;
}

.dropdown-toggle::after {
  display: none;
}

.icon_chevron {
  font-size: 12px;
}

.icon_headphone {
  font-size: 18px;
}

.btn-phone {
  background-color: rgb(249, 170, 47);
  color: rgb(246, 246, 246);
  font-size: 15px;
  font-weight: 600;
  height: 59.5px;
  line-height: 25.5px;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  text-align: center;
  border-radius: 3px;
  border-bottom: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-container {
  display: block;
}

.btn-phone:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
}

.btn-phone-mobile {
  background-color: rgb(249, 170, 47);
  color: rgb(246, 246, 246);
  font-size: 15px;
  font-weight: 600;
  height: 59.5px;
  line-height: 25.5px;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  text-align: center;
  border-radius: 3px;
  border-bottom: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-phone-mobile:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
}

.nav_container_width {
  width: 80%;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  height: 70%;
  width: 250px;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 1050;
  transition: right 0.3s ease-in-out;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 15px;
}

.sidebar-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}

.sidebar-menu a:hover {
  color: #f9aa2f;
}

.hamburger-icon {
  width: 30px;
  height: 3px;
  background-color: #242424;
  position: relative;
  display: inline-block;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #242424;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.sidebar.open {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  color: #f9aa2f;
}

@media (max-width: 992px) {
  .navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }

  .navbar-brand {
    flex: 0 0 auto;
  }

  .navbar-brand img {
    max-width: 130px;
    height: auto;
  }

  .btn-container {
    display: none;
  }

  .btn-container-mobile {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-phone-mobile {
    font-size: 10px;
    padding: 5px;
    white-space: nowrap;
  }

  .navbar-toggler {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
  }

  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.show {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 10px;
  }

  .navbar-nav {
    display: block;
  }

  .nav-item {
    margin: 10px 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 8px;
  }

  .navbar-brand img {
    max-width: 100px;
    height: auto;
  }

  .btn-container-mobile {
    flex: 1;
  }

  .btn-phone-mobile {
    font-size: 14px;
  }

  .hamburger-icon {
    width: 25px;
    height: 3px;
  }

  .hamburger-icon::before,
  .hamburger-icon::after {
    width: 25px;
    height: 3px;
  }
}

/* Footer */

.img_100 {
  width: 100%;
}

.footer {
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
  background-image: url("../images/vector_14.png"),
    url("../images/vector_15.png");
  background-position: top center, top center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  padding: 100px 0;
}

.footer_container {
  width: 65%;
  margin: 0 auto;
}

.footer-headline {
  text-align: left;
  font-size: 32px;
  font-weight: 600;
  color: #f6f6f6;
}

.row-border-bottom {
  border-bottom: solid 1px rgb(30, 68, 77);
  padding-bottom: 4%;
}

.btn-quote {
  background-color: #f9aa2f;
  color: rgb(246, 246, 246);
  font-weight: 600;
  border-radius: 3px;
  padding: 18px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-quote:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
  text-decoration: none;
}

.footer a {
  color: #f6f6f6;
  text-decoration: none;
}

.footer .social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #f6f6f6;
}

.footer-logo img {
  max-width: 250px;
}

.footer-col-text {
  font-size: 14px;
}

.footer h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333333;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #eaeaea;
}

.footer-bottom a {
  color: #333333;
  text-decoration: none;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
}

.footer-bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headline-600 {
  font-weight: 600;
  font-size: 24px;
}

.list-400 {
  font-size: 14px;
  font-weight: 500;
}

.list-600 {
  font-size: 16px;
  font-weight: 500;
}

.icon-yellow {
  color: #f9aa2f;
}

@media (max-width: 768px) {
  .footer-headline {
    font-size: 24px;
    text-align: left;
  }

  .footer_container {
    width: 100%;
    padding: 0 15px;
  }

  .footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .footer .social-icons {
    justify-content: left;
    display: flex;
    margin-bottom: 20px;
  }

  .footer h5,
  .footer p {
    text-align: left;
  }

  .footer-bottom .row {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .footer h5 {
    font-size: 18px;
  }

  .footer-headline {
    font-size: 20px;
  }
}

.hero-section{
  position: relative;
  overflow: visible;
  background-color: rgb(22, 120, 144);
  min-height: 90vh;
  height: auto;
  transform: none;
}

@media (max-width: 768px){
  .hero-section{
    height: auto !important;
    min-height: calc(100vh + 500px) !important;
  }
}

.toilets-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.overlay-image {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 300px;
  width: 100%;
}

.review-badge {
  position: absolute;
  bottom: 30%;
  right: -20%;
  width: 23vh;
  height: 23vh;
  background: url("../images/review.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-content {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
}

.review-stars {
  color: gold;
  font-size: 24px;
  margin-top: 5px;
}

.review-stars span {
  margin-right: 2px;
}

.text-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  max-width: 42%;
  margin-left: 18%;
}

.text-overlay h1 {
  font-size: 48px;
  font-weight: 600;
}

.text-overlay p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1%;
}

.checkbox-img {
  width: 30px;
  height: auto;
}

.mobile-review-badge {
  display: none;
  position: relative;
  text-align: center;
  width: 120px;
  height: 120px;
  background: url("../images/review.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .overlay-image {
    display: none;
  }

  .text-overlay h1 {
    font-size: 34px;
  }

  .text-overlay {
    margin-top: 15%;
  }

  .mobile-review-badge {
    display: flex !important;
    margin: 20px auto 0;
    width: 200px;
    height: 200px;
    background: url("../images/review.png") no-repeat center center;
    background-size: cover;
  }

  .review-content {
    width: 80px;
    height: 80px;
    font-size: 10px;
    color: #000;
  }

  .review-stars {
    font-size: 12px;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .text-overlay {
    max-width: 80%;
    margin-bottom: 20px;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .text-overlay {
    max-width: 90%;
    padding: 10px;
    margin-bottom: 20px;
  }

  .text-overlay p {
    font-size: 1rem;
  }
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.checkbox-col {
  display: flex;
  align-items: center;
  flex: 1 1 45%;
  margin-bottom: 10px;
}

.custom-checkbox {
  width: 27px;
  height: 27px;
  background-color: #f9aa2f;
  border: 2px solid #f9aa2f;
  border-radius: 3px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox::after {
  content: "✔";
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.checkbox-col p {
  margin: 0;
  font-size: 19px;
  color: #ffffff;
  font-weight: 400;
}

@media (max-width: 768px) {
  .checkbox-row {
    margin-bottom: 0rem;
  }

  .checkbox-col {
    flex: 1 1 100%;
  }

  .custom-checkbox {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .checkbox-col p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .custom-checkbox {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .checkbox-col p {
    font-size: 14px;
  }
}

.step-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 53vh;
  position: relative;
  border-radius: 15px;
}

.yellow-header {
  background-color: #f9aa2f;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.green-header {
  background-color: #23bf62;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.blue-header {
  background-color: #167890;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.icon {
  width: 50%;
  height: auto;
  margin-bottom: -30%;
}

.card-custom-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
}

.title-32 {
  font-size: 32px;
  font-weight: 600;
}

.title-28 {
  font-size: 28px;
  font-weight: 600;
}

.title-24 {
  font-size: 24px;
  font-weight: 600;
}

.a-title-24 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.a-title-24:hover {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.text-18 {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.review-18 {
  font-size: 18px;
  font-weight: 400;
  color: rgb(32, 34, 32);
}

.review-32 {
  font-size: 32px;
  font-weight: 400;
  color: rgb(32, 34, 32);
}

.review-12 {
  font-size: 12px;
  font-weight: 400;
  color: rgb(32, 34, 32);
}

.card-custom-content {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 30px;
}

.card-footer-custom {
  padding: 10px 20px;
  background: none;
  border-top: none;
}

.btn-call {
  background-color: #f9aa2f;
  color: rgb(246, 246, 246);
  font-weight: 600;
  border-radius: 3px;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10%;
}

.btn-call:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
  text-decoration: none;
}

.background-image {
  position: absolute;
  top: -9%;
  left: 30%;
  background-image: url("../images/orange_porty.png");
  background-size: cover;
  background-position: center;
  height: 62vh;
  width: 53vh;
  z-index: -1;
  border-radius: 15px;
}

.cards-row {
  width: 85%;
}

.step-card-margin {
  margin-top: 10%;
}

@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
  }

  .icon {
    width: 30%;
    margin-bottom: -25%;
  }

  .col-12 {
    width: 50%;
    margin: 0 auto;
  }

  .card-custom-title {
    margin-top: 15%;
  }
  .background-image {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60vh;
    width: 120%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
  }

  .cards-row {
    display: flex;
    margin-left: 7%;
  }
}

@media (max-width: 768px) {
  .title-32 {
    margin-top: 15%;
  }

  .wedding-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
  }
}

.blue-container {
  width: 100%;
  background-color: rgb(237, 251, 255);
}

.blue-card {
  background-color: rgb(22, 120, 144);
  border-radius: 15px;
  margin: 0 10px;
  flex: 0 0 calc(25% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 20vh;
}

.blue-card p {
  text-align: center;
}

.blue-card-icon {
  width: 33%;
}

.text-18-white {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.text-18-400-white {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
}

.blue-row {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .blue-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blue-card {
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
  }
}

.dark-blue-container {
  width: 100%;
  background-color: rgb(22, 120, 144);
}

.title-28-white {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.slider-card {
  display: flex;
  flex-direction: column;
  height: 95vh;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
.slider-card {
  height: 105vh;
	}	
}

.btn-bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #f9aa2f;
  color: rgb(246, 246, 246);
  font-weight: 600;
  border-radius: 3px;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-bottom-left:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
  text-decoration: none;
}

.btn-bottom-right:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
  text-decoration: none;
}

.slider-card .btn-bottom-right {
  align-self: flex-end;
  margin-top: auto;
  position: relative;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

.custom-background-container {
  background-image: url("../images/map.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-content-container {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  width: 35%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-left: 40%;
}

.custom-title {
  font-size: 32px;
  font-weight: 600;
}

.custom-service-areas {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.custom-service-areas li {
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 1024px) {
  .custom-background-container {
    justify-content: center;
    padding-right: 0;
  }

  .custom-content-container {
    width: 90%;
    margin-left: 0;
    padding: 20px;
  }

  .custom-title {
    font-size: 24px;
  }

  .custom-service-areas {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .custom-background-container {
    justify-content: center;
    padding-right: 0;
  }

  .custom-content-container {
    width: 90%;
    margin-left: 0;
    padding: 20px;
  }

  .custom-title {
    font-size: 24px;
  }

  .custom-service-areas {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .custom-service-areas {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    text-align: center;
  }
}

.faq-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

.faq-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 400;
}

.faq-accordion {
  border-top: 1px solid black;
}

.faq-item {
  border-bottom: 1px solid black;
}

.faq-header {
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #212529;
  background-color: transparent;
}

.faq-body {
  padding: 15px;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
  margin-top: 25px;
}

.chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] .chevron {
  transform: rotate(-135deg);
}

.orange-porty-images {
  position: relative;
}

.orange-porty-images img {
  border-radius: 15px;
}

.image-orange {
  position: relative;
  z-index: 1;
  top: 80px;
  height: 25vh;
  width: 40vh;
}

.image-yellow-porty {
  position: absolute;
  top: 20px;
  left: 150px;
  z-index: 0;
  height: 40vh;
  width: 90vh;
}

.orange-overlay-text {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
}

.orange-overlay-text p {
  font-size: 28px;
  font-weight: 600;
  text-align: left;
}

.quote-btn-green {
  background-color: rgb(5, 55, 67);
  color: rgb(246, 246, 246);
  font-weight: 600;
  border-radius: 3px;
  padding: 20px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10%;
}

.quote-btn-green:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .image-orange {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20vh;
    width: 30vh;
  }

  .orange-overlay-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }

  .quote-btn-green {
    padding: 15px;
  }

  .orange-overlay-text p {
    font-size: 20px;
  }

  .image-yellow-porty {
    position: relative;
    top: 0;
    left: 0;
    height: 50vh;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20%;
  }
}

@media (max-width: 768px) {
  .image-orange {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20vh;
    width: 30vh;
  }

  .orange-overlay-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }

  .quote-btn-green {
    padding: 15px;
  }

  .orange-overlay-text p {
    font-size: 20px;
  }

  .image-yellow-porty {
    position: relative;
    top: 0;
    left: 0;
    height: 50vh;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20%;
  }
}

/* About */

.about-header-section {
  background-image: url("../images/about_background.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px;
  height: 40vh;
  margin-bottom: 76.888px;
  background-color: rgb(22, 120, 144);
}

.about-header-content {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 56px;
  font-weight: 600;
  justify-content: center;
  margin-top: 3%;
  display: flex;
}

.welcome-p {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
}

.welcome-hr {
  border: 0;
  height: 1px;
  background-color: black;
}

.services-images {
  position: relative;
}

.services-images img {
  border-radius: 8px;
  width: 100%;
}

.image-1 {
  position: relative;
  z-index: 1;
  top: 50px;
  height: 28vh;
}

.image-2 {
  position: absolute;
  top: 20px;
  left: 150px;
  z-index: 0;
  height: 35vh;
}

.background-wrapper {
  background-color: rgb(237, 251, 255);
  position: relative;
}

.background-wrapper::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: rgb(237, 251, 255);
  z-index: -1;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
    font-weight: 600;
    justify-content: center;
    margin-top: 3%;
    display: flex;
  }
}

/* Services */

.services-header-section {
  background-image: url("../images/services_bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px;
  height: 40vh;
  margin-bottom: 76.888px;
  background-color: rgb(22, 120, 144);
}

.welcome-hr {
  border: 0;
  height: 1px;
  background-color: black;
}
.welcome-p {
  font-size: 28px;
  font-weight: 400;
}

.services-slider-card {
  display: flex;
  flex-direction: column;
  height: 95vh;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
.services-slider-card {
  height: 110vh;
	}	
}

/* Service */

.service-header-section {
  background-image: url("../images/service_bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px;
  height: 40vh;
  margin-bottom: 76.888px;
  background-color: rgb(22, 120, 144);
}

.service-img {
  width: auto;
  height: 55vh;
}

.service-header-content {
  position: relative;
  z-index: 2;
  margin-left: 17%;
}

.service-title {
  font-size: 56px;
  font-weight: 600;
  display: flex;
}

.service-yellow {
  font-size: 24px;
  font-weight: 400;
  color: #ff9900;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollable-container {
  display: flex;
  gap: 0;
  overflow: hidden;
  width: calc(3 * 40vh);
  justify-content: space-between;
}

.carousel-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-btn.left {
  margin-right: 10px;
}
.carousel-btn.right {
  margin-left: 10px;
}

.service-btn-call {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #f9aa2f;
  color: rgb(246, 246, 246);
  font-weight: 600;
  border-radius: 3px;
  padding: 15px 30px;
  text-decoration: none;
}

.service-btn-call:hover {
  background-color: rgb(27, 26, 26);
  color: rgb(246, 246, 246);
  text-decoration: none;
}

@media (max-width: 768px) {
  .service-title {
    font-size: 36px;
  }
}

.locations-title {
  font-size: 56px;
  font-weight: 600;
  margin-top: 3%;
  display: flex;
  margin-left: 15%;
}

.custom-location-areas {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.custom-location-areas li {
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 768px) {
  .custom-location-areas {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }

  .custom-location-areas li {
    margin-bottom: 10px;
    margin-left: 25px;
    text-align: left;
  }

  .locations-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
  }
}

/* Contact */

.contact-form-section {
  padding-right: 2rem;
}

.contact-input,
.contact-select,
.contact-textarea {
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
}

.contact-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  border-radius: 8px;
}

.black-btn-call {
  background-color: rgb(32, 34, 32);
  color: rgb(246, 246, 246);
  font-weight: 600;
  border-radius: 3px;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10%;
}

.black-btn-call:hover {
  background-color: rgb(32, 34, 32);
  color: rgb(246, 246, 246);
  text-decoration: none;
}



/* ---------- */

[data-star] {
  text-align:left;
  font-style:normal;
  display:inline-block;
  position: relative;
  unicode-bidi: bidi-override;
  font-size: 25px;
}
[data-star]::before { 
  display:block;
  content: '★★★★★';
  color: #595959;
}
[data-star]::after {
  white-space:nowrap;
  position:absolute;
  top:0;
  left:0;
  content: '★★★★★';
  width: 0;
  color: #ff8c00;
  overflow:hidden;
  height:100%;
}

[data-star^="0.1"]::after{width:2%}
[data-star^="0.2"]::after{width:4%}
[data-star^="0.3"]::after{width:6%}
[data-star^="0.4"]::after{width:8%}
[data-star^="0.5"]::after{width:10%}
[data-star^="0.6"]::after{width:12%}
[data-star^="0.7"]::after{width:14%}
[data-star^="0.8"]::after{width:16%}
[data-star^="0.9"]::after{width:18%}
[data-star^="1"]::after{width:20%}
[data-star^="1.1"]::after{width:22%}
[data-star^="1.2"]::after{width:24%}
[data-star^="1.3"]::after{width:26%}
[data-star^="1.4"]::after{width:28%}
[data-star^="1.5"]::after{width:30%}
[data-star^="1.6"]::after{width:32%}
[data-star^="1.7"]::after{width:34%}
[data-star^="1.8"]::after{width:36%}
[data-star^="1.9"]::after{width:38%}
[data-star^="2"]::after{width:40%}
[data-star^="2.1"]::after{width:42%}
[data-star^="2.2"]::after{width:44%}
[data-star^="2.3"]::after{width:46%}
[data-star^="2.4"]::after{width:48%}
[data-star^="2.5"]::after{width:50%}
[data-star^="2.6"]::after{width:52%}
[data-star^="2.7"]::after{width:54%}
[data-star^="2.8"]::after{width:56%}
[data-star^="2.9"]::after{width:58%}
[data-star^="3"]::after{width:60%}
[data-star^="3.1"]::after{width:62%}
[data-star^="3.2"]::after{width:64%}
[data-star^="3.3"]::after{width:66%}
[data-star^="3.4"]::after{width:68%}
[data-star^="3.5"]::after{width:70%}
[data-star^="3.6"]::after{width:72%}
[data-star^="3.7"]::after{width:74%}
[data-star^="3.8"]::after{width:76%}
[data-star^="3.9"]::after{width:78%}
[data-star^="4"]::after{width:80%}
[data-star^="4.1"]::after{width:82%}
[data-star^="4.2"]::after{width:84%}
[data-star^="4.3"]::after{width:86%}
[data-star^="4.4"]::after{width:88%}
[data-star^="4.5"]::after{width:90%}
[data-star^="4.6"]::after{width:92%}
[data-star^="4.7"]::after{width:94%}
[data-star^="4.8"]::after{width:96%}
[data-star^="4.9"]::after{width:98%}
[data-star^="5"]::after{width:100%}

@media (max-width: 768px) {
	[data-star] {
		font-size:20px
	}
}



/* map embed */
.holder {
  position: relative
}

.mapembed
{
  width: 100%;
  height: 100%;	
}
.frame {
  width: 100%;
  height: 100%;
}

.vague {
  position: absolute;
  top: 0;
  left: 0;  
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .4;
}

.overlay {
  position: absolute;
  top: 20px;
  left: 10px;
}
/* end of map embed */




/** New code by ninh trong **/
.dz-section {
    background: #167890;
    padding: 85px 0;
}
.dz-tabs {
    border-radius: 14px;
    padding: 10px;
}
.dz-tablist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.dz-tabbtn {
    background: #202220;
    border: none;
    padding: 16px;
    color: #fff;
}
.dz-tabbtn[aria-selected="true"] {
    background: #fff;
    color: #000;
    outline: 2px solid rgba(255, 255, 255, 0.08);
}
.dz-tabbtn:focus,
.dz-tabbtn:active,
.dz-tabbtn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.dz-panel {
    display: none;
    border-radius: 14px;
    padding: 18px;
}
.dz-panel[aria-hidden="false"] {
    display: block;
}

.dz-grid {
    display: grid;
    grid-template-columns: 35% 1fr 200px;
    gap: 30px;
    align-items: start;
}
.dz-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #0a0f1c;
}
.dz-panel h3 {
    margin: 0 0 10px;
    font-size: 22px;
}
.dz-panel p {
    margin: 6px 0 0;
}
.dz-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}
.dz-cta .dz-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #fcb900;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 18px;
}
.dz-cta .dz-btn:active {
    transform: translateY(1px);
}
.dz-cta .dz-btn:hover {
    filter: brightness(1.05);
}

.dz-accordion {
}
.dz-acc-item {
    overflow: hidden;
}
.dz-acc-header {
    width: 100%;
    text-align: left;
    background: #202220;
    color: #e3e8f4;
    border: 0;
    padding: 12px 14px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.dz-acc-header[aria-expanded="true"] {
    background: #fff;
    color: #000;
}
.dz-acc-header:focus,
.dz-acc-header:active,
.dz-acc-header:focus-visible,
.dz-acc-header:focus-within,
.dz-acc-item:focus,
.dz-acc-item button:focus,
.dz-accordion button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
}

.dz-accordion * {
    -webkit-tap-highlight-color: transparent;
}

.dz-acc-panel {
    display: none;
    padding: 14px;
}
.dz-acc-panel.dz-open {
    display: block;
}

@media (max-width: 900px) {
    .dz-grid {
        grid-template-columns: 180px 1fr;
    }
    .dz-cta {
        grid-column: 1 / -1;
    }
}
@media (max-width: 700px) {
    .dz-tabs {
        display: none;
    }
    .dz-accordion {
        display: block;
    } 
    .dz-grid {
        grid-template-columns: 1fr;
    }
    .dz-section {
        padding-top: 10px;
    }
    .dz-section  h2,
    .dz-acc-panel  h3 {
        font-size: 28px;
        margin-top: 10%;
    }
    .dz-section p ,
    .dz-acc-panel  p {
        font-size: 16px;
    }
}
@media (min-width: 701px) {
    .dz-accordion {
        display: none;
    } 
}
/** End new code by ninh trong **/


/* ******************************************************* */
/* TOP HEADER REVIEWS HAPPY CUSTOMERS INSIURED TRUST ITEMS */
/* ******************************************************* */
/* Full width breakout */
.ft-full{
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Prevent tiny horizontal overflow */
html, body{
  overflow-x: clip !important;
}

@supports not (overflow: clip){
  html, body{
    overflow-x: hidden !important;
  }
}

/* Top wrapper */
.ft-top.ft-full{
  background: #0b0b0b !important;
}

/* Inner container */
.ft-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  color: #fff;
}

/* Top strip */
.ft-top .ft-topstrip{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
  font-weight: 800 !important;
  text-align: center !important;
}

/* Left group inside strip */
.ft-topstrip__left{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Google G */
.ft-g{
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

/* Stars */
.ft-top .ft-stars{
  color: #f7c948 !important;
  letter-spacing: 2px !important;
  font-size: 16px !important;
}

/* "5 Star Reviews" */
.ft-topstrip__text{
  font-size: 16px;
  line-height: 1;
  opacity: .95;
}

/* Trust row */
.ft-top .ft-trustrow{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  line-height:3;
}

.ft-top .ft-trustitem{
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: auto !important;
  gap: 8px !important;
}

.ft-top .ft-trustitem span, .ft-topstrip__left span
{
	//font-size: 1.25rem;
	font-weight: 700;
}


.ft-top .ft-trustitem:first-child{
  justify-content: flex-start !important;
}

.ft-top .ft-trustitem:last-child{
  justify-content: flex-end !important;
  margin-left: auto !important;
}

.ft-top .ft-trustitem .ft-ico{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.ft-top .ft-trustitem .ft-ico img,
.ft-top .ft-trustitem .ft-ico .emoji{
  display: block !important;
  width: 18px !important;
  height: 18px !important;
}

.ft-top .ft-trustitem span:last-child{
  display: inline !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
}

@media (max-width: 600px){
  .ft-top .ft-trustrow{
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .ft-topstrip__left{
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ******************************************************* */
/* END OF TOP HEADER REVIEWS HAPPY CUSTOMERS INSIURED TRUST ITEMS */
/* ******************************************************* */


/* ******************************************************* */
/* INDEX ONLY TOP PILLS - link to pricing opening hours service area etc */
/* ******************************************************* */

/* Inner container */
.ft-inner{
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

/* White text inside this strip */
.ft-pillsWrap{
  color: #fff !important;
}

/* Pills bar background */
.ft-pillsWrap{
  background: #1a1a1a !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

/* Full width breakout */
.ft-full{
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Prevent tiny horizontal overflow */
html, body{
  overflow-x: clip !important;
}

@supports not (overflow: clip){
  html, body{
    overflow-x: hidden !important;
  }
}

/* Full-width pills wrapper */
.ft-pillsWrap.ft-full{
  background: #1a1a1a !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

/* Actual pills row */
.ft-pillsWrap .ft-navpills{
  display: flex !important;
  gap: 10px !important;
  padding: 12px 0 !important;
  margin: 0 !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-right: 18px !important;
}

/* Individual pill */
.ft-pillsWrap .ft-pill{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 10px !important;
  border-radius: 9px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 10px !important;
  letter-spacing: .25px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

/* Small phones */
@media (max-width: 380px){
  .ft-pillsWrap .ft-pill{
    font-size: 10px !important;
    padding: 7px 9px !important;
  }
}

/* ******************************************************* */
/* END OF INDEX ONLY TOP PILLS - link to pricing opening hours service area etc */
/* ******************************************************* */


/* ******************************************************* */
/* INDEX ONLY Hero design */
/* ******************************************************* */

.ft-heroSection{
  position: relative;
  width: 100%;
  min-height: 510px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ft-heroOverlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.52) 35%,
    rgba(0,0,0,.22) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center !important;
  width: 100%;
  height: 100%;
}

.ft-heroSection .wp-block-group,
.ft-heroSection .wp-block-columns,
.ft-heroSection .wp-block-column{
  width: 100% !important;
}

.ft-heroSection .wp-block-columns{
  max-width: 1120px !important;
  margin: 0 auto !important;
  margin-bottom: 0 !important;
}

.ft-heroSection .wp-block-column{
  flex-basis: 100% !important;
}

/* scoped inner container so it does not affect other ft sections */
.ft-heroSection .ft-inner{
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

.ft-heroContentWrap{
  position: relative;
  z-index: 2;
  color: #fff !important;
  padding: 40px 0 40px !important;
  width: 100% !important;
}

.ft-heroContentWrap .ft-inner{
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

.ft-heroContentWrap .ft-content{
  max-width: 1120px;
  margin: 0 auto !important;
  text-align: left !important;
}

.ft-heroContentWrap .ft-h1{
  margin: 10px 0 6px !important;
  font-size: clamp(30px, 7vw, 62px) !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  color: #fff !important;
  word-break: normal !important;
}

.ft-heroContentWrap .ft-sub{
  margin: 0 0 14px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  opacity: .95 !important;
  color: #fff !important;
}

.ft-heroContentWrap .ft-featureGrid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 14px 0 14px !important;
}

.ft-heroContentWrap .ft-feature{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 14px !important;
  border-radius: 14px !important;
  background: rgba(0,0,0,.42) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  font-weight: 850 !important;
  min-height: 56px !important;
}

.ft-heroContentWrap .ft-featureIco{
  display: inline-flex !important;
  width: 28px !important;
  height: 28px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.10) !important;
  font-size: 18px !important;
}

.ft-featureIco img,
.ft-featureIco .emoji{
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.ft-heroContentWrap .ft-priceBlock{
  margin: 10px 0 14px !important;
  padding: 16px !important;
  border-radius: 14px !important;
  background: rgba(0,0,0,.55) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  text-align: center !important;
}

.ft-heroContentWrap .ft-priceTitle{
  font-weight: 900 !important;
  font-size: 18px !important;
  margin-bottom: 6px !important;
  color: #fff !important;
}

.ft-heroContentWrap .ft-priceText{
  font-weight: 650 !important;
  opacity: .95 !important;
  color: #fff !important;
}

.ft-heroContentWrap .ft-cta{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 16px 16px !important;
  border-radius: 14px !important;
  background: #f5a623 !important;
  color: #111 !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.25) !important;
}

.ft-heroContentWrap .ft-cta img,
.ft-heroContentWrap .ft-cta .emoji{
  width: 18px;
  height: 18px;
  display: inline-block;
}

@media (max-width: 767px){
  .ft-heroSection{
    min-height: 620px;
    background-position: center center;
  }

  .ft-heroOverlay{
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.48) 100%
    );
    align-items: flex-start;
  }

  .ft-heroContentWrap{
    padding: 28px 0 28px !important;
  }

  .ft-heroContentWrap .ft-content{
    max-width: 100%;
    margin: 0 auto !important;
  }


  .ft-heroContentWrap .ft-sub{
    font-size: 16px !important;
  }

  .ft-heroContentWrap .ft-cta{
    font-size: 18px !important;
    padding: 14px 14px !important;
  }
}

/* ******************************************************* */
/* END OF INDEX ONLY Hero design */
/* ******************************************************* */


/* ******************************************************* */
/* INDEX ONLY Service cards */
/* ******************************************************* */


.services-section h2{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-section > .container > .text-center > p{
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.service-card{
  background: #ffffff;
  color: #222;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.servicecol
{
	    margin-bottom: 10px;
}

.service-card-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.service-card-body{
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3{
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card h3 a{
  color: #111;
  text-decoration: none;
}

.service-card h3 a:hover{
  text-decoration: underline;
}

.service-price{
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p{
  font-size: 16px;
  line-height: 1.7;
}

.service-btn{
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  padding: 12px 22px;
}

/* ******************************************************* */
/* END OF INDEX ONLY Service cards */
/* ******************************************************* */