:root {
  --primary-color: hsl(196.25deg 78.34% 40.23%);
  --secondary-color: hsl(210deg 79.77% 39.55%);
  --highlight-color: hsl(54, 82%, 43%);
  --default-gradient: linear-gradient(to right, var(--secondary-color), hsl(196.25deg 78.34% 40.23%));
  --bs-navbar-toggler-padding-x: 0;
  --bs-navbar-toggler-padding-y: 0;
  --bs-border-width: 0;
  --bs-navbar-toggler-border-color: transparent;
  --bs-navbar-padding-y: 0;
  --bs-link-color-rgb:0 0 0;
  --bs-link-hover-color-rgb:0 0 0, 0;
}

body {
  padding-top: 0;
  padding-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}
button:focus {
  outline: none;
  box-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
}

.logo {
  margin-right: auto;
}
.logo img {
  height: 40px;
}

header nav {
  background: linear-gradient(to right, hsla(210, 79.77%, 39.55%, 0.82), hsla(196.25, 78.34%, 40.23%, 0.62));
}

.navbar {
  padding: 0;
}

.navbar-nav {
  height: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar-nav {
    height: auto;
  }
}

.nav-item {
  flex: 1;
  display: flex;
  margin: 0 1rem;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-item:after {
  content: "";
  width: 0;
  height: 0.375rem;
  background: var(--highlight-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  transform: scaleX(0);
}
.nav-item:hover:after {
  content: "";
  width: 100%;
  transition: all 0.3s ease;
  transform: scaleX(1);
}
@media (min-width: 768px) {
  .nav-item + .nav-item a {
    white-space: nowrap;
  }
  .nav-item + .nav-item a:before {
    content: "";
    width: 0;
    border-right: 1px solid var(--highlight-color);
    position: relative;
    left: -50%;
    top: 0;
    bottom: 0;
  }
}

.navbar .navbar-collapse.collapse {
  display: none;
  visibility: visible;
}
.navbar .navbar-collapse.show {
  display: block;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse {
    flex: 0 0 auto;
  }
  .navbar .navbar-collapse.collapse {
    display: flex !important;
  }
}
.navbar .nav-item a {
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
}
.navbar .nav-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.navbar .nav-item a.disabled {
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.page-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.page-section__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.page-section__list li {
  font-size: 1rem;
  margin: 0 0.5rem;
}
.page-section__list li a {
  text-decoration: none;
}
.page-section__list li a:hover {
  color: var(--primary-color);
}

.path ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.path li {
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.path li:hover {
  color: var(--primary-color);
}
.path li + li {
  margin-left: 0.25rem;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.path li + li:hover {
  border-color: var(--primary-color);
}
.path li.active {
  background-color: var(--primary-color);
  color: white;
}
.path li:last-child {
  border: none;
}

.info-board-item {
  padding: 0 10% 3rem 10%;
  border: 1px solid #eee;
  margin-bottom: 5rem;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
}
.info-board-item__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.info-board-item__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  background-color: white;
  padding: 1rem;
  border-radius: 100%;
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.1);
  width: 120px;
  height: 120px;
  margin: -3rem auto 1rem;
}
.info-board-item__img img {
  width: 80px;
}
.info-board-item .text-style-title {
  color: var(--primary-color);
  position: relative;
  margin: 0 auto 1rem;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: bold;
}
.info-board-item .text-style-title:after {
  content: "";
  position: absolute;
  background-color: hsla(54, 82%, 43%, 0.56);
  height: 5px;
  right: -10px;
  bottom: 0;
  left: 10px;
  z-index: -1;
}

.about-us {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  height: 100%;
}
.about-us-area {
  margin: 100px auto;
  padding: 0 30px 50px;
  background-image: url("../img/deco/repeated-square.png");
  background-position: center;
  background-repeat: repeat;
}
@media (max-width: 768px) {
  .about-us-area {
    margin: 50px auto;
  }
}
.about-us__content {
  position: relative;
  top: 50px;
}
.about-us__container {
  margin-top: 80px;
}
.about-us__img {
  width: 100%;
  height: 80%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .about-us__img {
    height: 300px;
    margin-top: 2rem;
    background-position: center 10%;
  }
}
.about-us .text-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  align-self: flex-start;
  position: relative;
  z-index: 1;
  top: 0px;
}
.about-us .text-title:after {
  content: "";
  position: absolute;
  background-color: hsla(54, 82%, 43%, 0.56);
  height: 20px;
  right: -10px;
  bottom: 0;
  left: 10px;
  z-index: -1;
}

[class*=page--] {
  padding-top: 80px;
  padding-bottom: 80px;
}
[class*=page--] p + p {
  margin-top: 0rem;
}
[class*=page--] .sub-title {
  font-size: 3rem;
  color: hsla(196.25, 78.34%, 40.23%, 0.17);
  font-weight: 400;
}
@media (max-width: 768px) {
  [class*=page--] .sub-title {
    font-size: 2rem;
  }
}

.page--about-us .list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.page--about-us .list li {
  margin-bottom: 1rem;
  white-space: nowrap;
}
.page--about-us .list li + li:before {
  content: "/";
  width: 10px;
  height: 10px;
  color: var(--primary-color);
  margin: 0 0.5rem;
}
.page--about-us .row + .row {
  margin-top: 80px;
}

.page--service .title-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary-color);
  padding-left: 1rem;
}
.page--service-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.page--service-content [class*=col-] + [class*=col-] {
  margin-top: 2rem;
}
.page--service .content {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.page--service .service-item {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.page--service .service-item:hover {
  transition: all 0.3s ease;
}
.page--service .service-item:hover i {
  right: -5px;
  position: relative;
}
.page--service .service-item .text-style-title {
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}
.page--service .service-item .text-style-title:after {
  content: "";
  position: absolute;
  background-color: hsla(54, 82%, 43%, 0.56);
  height: 5px;
  right: -6px;
  bottom: 0;
  left: 6px;
  z-index: -1;
}
.page--service .service-item .icon-btn {
  font-size: 0.75rem;
  margin-top: 1rem;
}

.page--business .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}
.page--business .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page--business .item .text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: hsla(0, 0%, 100%, 0.8118);
  padding: 0.5rem 1rem;
}
.page--business .container + .container {
  margin-top: 2rem;
  border-top: 1px solid #eee;
  padding-top: 5rem;
}

.business__title {
  display: flex;
  flex-wrap: wrap;
}

.other-business__title {
  display: flex;
  flex-wrap: wrap;
}
.other-business ul li {
  display: flex;
  margin-bottom: 1.5rem;
  flex-direction: column;
  position: relative;
}
.other-business ul li .text {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(196.25, 83.07%, 26.32%);
  margin-bottom: 0.25rem;
}
.other-business ul li:after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/deco/repeated-square.png);
  background-size: 444%;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-area {
  background-image: url("../img/demo/clean_9.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}
.service-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 100%, 0.8118);
}
.service-area .service-item {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.service-area .service-item .text-style-title {
  color: white;
  padding-bottom: 0.5rem;
}
.service-area .service-item:hover .service-item__content {
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
.service-area .service-item:hover .service-item__content .icon-btn {
  margin-top: 1rem;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-area .service-item:hover .service-item__content .icon-btn:before {
  content: "";
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid black;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(0);
  left: 50%;
  top: 50%;
  position: absolute;
}
.service-area .service-item:hover .service-item__content .icon-btn:hover:before {
  border: 1px solid white;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(1);
}
.service-area .service-item__content {
  opacity: 0;
  color: white;
  transition: all 0.3s ease;
  background-color: hsla(196.25, 78.34%, 40.23%, 0.6);
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 2rem;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  visibility: hidden;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.service-detail {
  display: flex;
  flex-wrap: wrap;
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail li {
  padding: 0.25rem 0.5rem;
}
.service-detail li:nth-child(1n+1) {
  margin-top: 2rem;
}
.service-detail li img {
  display: flex;
  margin: 0 auto;
}
.service-detail__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 2rem;
}
.service-item__img {
  width: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.service-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.service-item .text-style-title {
  margin-bottom: 0.5rem;
  text-align: center;
  border-bottom: 1px solid white;
  font-size: 1rem;
}
.service-item p {
  font-size: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 52px;
  min-height: 52px;
  margin: 0;
  word-break: break-all;
}

.btn--back {
  transition: all 0.3s ease;
  position: relative;
  margin: 0 auto;
}
.btn--back:hover i {
  right: -5px;
  position: relative;
}
.btn--back:after {
  content: "";
  width: 0;
  height: 0.375rem;
  background: var(--highlight-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  transform: scaleX(0);
}
.btn--back:hover:after {
  content: "";
  width: 100%;
  transition: all 0.3s ease;
  transform: scaleX(1);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  position: relative;
  color: white;
  padding: 2rem 0;
  background: linear-gradient(to right, hsla(210, 79.77%, 39.55%, 0.82), hsla(196.25, 78.34%, 40.23%, 0.62));
}
.footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/deco/repeated-square.png");
  background-repeat: repeat;
  z-index: -1;
}
.footer__contact {
  color: white;
  text-align: center;
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.footer__social li {
  margin: 0 1rem;
  position: relative;
  list-style: none;
}
.footer__social li:before {
  content: "";
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid black;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(0);
  left: 50%;
  top: 50%;
  position: absolute;
}
.footer__social li:hover:before {
  border: 1px solid white;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(1);
}

.text-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  top: -30px;
}
@media (max-width: 768px) {
  .text-title {
    font-size: 1.75rem;
  }
}
.text-title:after {
  content: "";
  position: absolute;
  background-color: hsla(54, 82%, 43%, 0.56);
  height: 20px;
  right: -10px;
  bottom: 0;
  left: 10px;
  z-index: -1;
}
@media (max-width: 768px) {
  .text-title:after {
    height: 10px;
  }
}

.carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.parallax-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.parallax-carousel:not(.carousel img) {
  position: relative;
  height: 400px;
}
.parallax-carousel:not(.carousel img) img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.carousel {
  width: 100%;
  margin-bottom: 0;
}
.carousel .carousel-item {
  position: relative;
  height: 90vh;
  overflow: hidden;
  width: 100%;
}
.carousel .carousel-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.carousel .carousel-item img.parallax-carousel {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.carousel .carousel-item .carousel-caption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 30%;
  left: 0%;
  left: 10%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: right;
  width: 80%;
}
.carousel .carousel-item h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 4px 6px 7px rgba(0, 0, 0, 0.5);
  margin-left: auto;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .carousel .carousel-item h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .carousel .carousel-item {
    height: 50vh;
  }
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 5%;
  transition: opacity 0.3s ease;
}
.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
  opacity: 1;
}
.carousel .carousel-indicators {
  z-index: 3;
}
.carousel .carousel-indicators button {
  width: 30px;
  height: 3px;
  background-color: white;
  opacity: 0.5;
  margin: 0 5px;
}
.carousel .carousel-indicators button.active {
  opacity: 1;
}

.contact-info {
  width: 100%;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.contact-info li i {
  margin-right: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}
.contact-info .sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */