<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* Template Name: UpConstruction - v1.2.0
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  /* --color-primary: rgb(34, 75, 212); */
  --color-primary-darker: hsl(44, 100%, 40%);
  --color-primary-lighter: hsl(44, 100%, 50%);
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.colored-dot {
  color: var(--color-primary);
}

em[strong],
em[bold],
em[b] {
  font-weight: bolder;
}

/*--------------------------------------------------------------
# Sections &amp; Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* @media only screen and (max-width: 1024px) {
  .aos-animate {

    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;

    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;

    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
} */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: fixed;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
  /* background-color: rgb(255 255 255 / 40%); */

  transition: all 0.2s ease-in-out;

  --nav-item-color: #fff;
}

.header-scrolled {
  padding: 1rem 0;
  background-color: #fff;

  --nav-item-color: #111;
}

.header .logo img {
  max-height: 200px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--nav-item-color);
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--nav-item-color);
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo span {
  color: var(--color-primary);
}

.header .logo p {
  color: var(--nav-item-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.875rem;
  /* letter-spacing: 1.25px; */
}

@media screen and (max-width: 768px) {
  .header .logo h1 {
    /* display: none; */
  }
  /* .header .logo p {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
  } */
  .header .logo p {
    display: none;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar &gt; ul &gt; li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar .navbar-item,
  .navbar .navbar-item:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-item-color);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar .navbar-phone {
    padding: 0.5rem 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 0.25rem;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar &gt; ul &gt; li &gt; .navbar-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar .navbar-item:hover:before,
  .navbar li:hover &gt; .navbar-item:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar .navbar-item:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover &gt; .navbar-item {
    color: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;

    max-height: 40vmin;
    overflow-y: scroll;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover &gt; a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover &gt; ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover &gt; ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover &gt; ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover &gt; a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown &gt; .dropdown-active,
  .navbar .dropdown .dropdown &gt; .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: var(--nav-item-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: dead,last 4 versions,&gt; 0.2%
*/

.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero .carousel-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  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;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  /* font-size: 56px; */
  font-weight: 700;
  position: relative;
  text-shadow: 0 0 0.25rem rgb(0 0 0 / 50%);
  text-transform: uppercase;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: #fff;
  text-transform: uppercase;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

@media screen and (max-width: 576px) {
  .hero .info p {
    font-size: 16px !important;
  }
}

.hero .info p .red {
  color: var(--color-primary);
  font-weight: bold;
}

.hero .info .btn-get-started-group {
  /* display: grid; */
  /* gap: .5rem; */
  /* justify-content: center; */
  
}

/* @media screen and (min-width: 576px) {
  .hero .info .btn-get-started-group {
    grid-template-columns: repeat(2, 1fr);
  }
} */

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);

  /* animation: btn-get-started-animation 2s ease 1 normal forwards; */
  animation: btn-get-started-animation 1.5s ease-in-out infinite normal forwards;
}

/* @keyframes btn-get-started-animation {
  from {
    transform: scale(3) translateY(3rem);
  }
  to {
    transform: scale(1);
  }
} */

@keyframes btn-get-started-animation {
  66% {
    background-color: var(--color-primary-lighter);
    border-color: var(--color-primary-lighter);
    transform: scale(1.07);
  }
}

/* .hero .info .whatsapp {
  background-color: #25D366;
  border-color: #25D366;
} */

.hero .info .btn-get-started:hover {
  background: transparent;
}

.hero .carousel-control-prev {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  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;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Brands Section
--------------------------------------------------------------*/
.brands {
  padding: 80px 0 0 0;
}
/* .brands h2, .brands h3 {
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
} */
.brands .logos-display {
  gap: 3rem;
  margin-bottom: 1rem;
}
.brands h3 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.brands h4 {
  font-weight: 700;
}
.brands .brands-phone {
  display: inline-block;
}

/* 10/01/2023 */
.brands .grid {
  display: grid;
  /* display: flex; */
  /* flex-direction: column; */
  gap: 2rem;
  grid-gap: 2rem;
}

@media screen and (min-width: 768px) {
  .brands .grid {
    grid-template-columns: repeat(2, 1fr);
    /* flex-direction: row; */
    /* justify-content: center; */
    gap: 4rem;
    grid-gap: 4rem;
  }
  .brands .grid &gt; *:nth-child(1) {
    justify-self: flex-end;
  }
  .brands .grid &gt; *:nth-child(2) {
    justify-self: flex-start;
  }
}

@media screen and (min-width: 992px) {
  .brands .grid {
    gap: 8rem;
    grid-gap: 8rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

/* .about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
} */

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.about .our-story p a {
  font-weight: 600;
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .nav-tabs {
  border: 0;
}

.services .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.services .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.services .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .services .nav-link h4 {
    font-size: 16px;
  }
}

.services .nav-link:hover {
  color: var(--color-primary);
}

.services .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.services .tab-content {
  margin-top: 30px;
}

.services .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.services .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 1200px) {
  .services .tab-pane h4 {
    font-size: 1.4rem;
  }
}

.services .tab-pane ul {
  list-style: none;
  padding: 0;
}

.services .tab-pane ul li {
  padding-top: 10px;
}

.services .tab-pane ul i.bi {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.services .tab-pane p {
  font-size: 0.875rem;
  /* text-align: justify; */
}
.services .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-weight: 700;
}

.cta p {
  margin: 1rem 0;
}

.cta .cta-button {
  border: 2px solid #fff;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #1c1c1c;
  font-weight: 700;
  font-style: 1.25rem;
  display: inline-block;

  transition: all 0.3s;
}

.cta .cta-button:hover {
  background-color: #fff;
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Urgent Services Section
--------------------------------------------------------------*/
.urgent-services {
}
.urgent-services .item {
  padding: 0 0;
}
.urgent-services .item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 3px solid var(--color-primary);
  font-size: 1.25rem;
}

.urgent-services p {
  font-size: 0.875rem;
  line-height: 1.75;
}
.urgent-services {
}

@media screen and (min-width: 768px) {
  .urgent-services .item {
    padding: 2rem 0;
  }
}

@media screen and (min-width: 1200px) {
  .urgent-services .item h3 {
    /* font-size: 1.25rem; */
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
}

.gallery .gallery-item {
}

.gallery .gallery-item .gallery-image {
}
.gallery .gallery-item .gallery-caption {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq [background] {
  background: url(../img/faq.webp) scroll center center;
  background-size: cover;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.faq .accordion-body p {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 2;
  text-align: justify;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
}
.featured h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-default);
  font-weight: 700;
}
.featured ul {
  margin-bottom: 0;
  padding: 0;
  list-style-position: inside;
}
.featured ul li {
  font-size: 0.875rem;
  line-height: 2;
}
.featured ul li::marker {
  content: "â–· ";
  color: var(--color-primary);
  font-weight: 700;
}
.featured ul li a {
  color: var(--color-primary-darker);
}

.featured ul li a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  background-color: var(--color-primary);
  padding: 0 0;
}

.partners .swiper-slide img {
  opacity: 0.75;
  transition: opacity 0.3s ease-in-out;
}

.partners .swiper-slide:hover img {
  opacity: 1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") center center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .muted {
  color: #ffffff99;
  font-size: .875em;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  margin-bottom: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 650px) {
  #callnowbutton {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTI4IiBoZWlnaHQ9IjEyOCIgdmlld0JveD0iMCAwIDEyOCAxMjgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2RkZCkiPgo8cGF0aCBkPSJNMjEuMzMzMyAxNkMxOC40IDE2IDE2IDE4LjQgMTYgMjEuMzMzM0MxNiAzNy4zNDAzIDIwLjE0NjQgNTIuMzc3NCAyNy40MjQgNjUuNDI5NEwzNS4zMDY3IDU3LjU0NjdMNDcuMDQgNDUuODEzM0M0OC41MzMzIDQ0LjMyIDQ4Ljk2IDQyLjI0IDQ4LjM3MzMgNDAuMzczM0M0Ni40IDM0LjQgNDUuMzMzMyAyOCA0NS4zMzMzIDIxLjMzMzNDNDUuMzMzMyAxOC40IDQyLjkzMzMgMTYgNDAgMTZIMjEuMzMzM1oiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik04Mi4xODY3IDgwLjk2TDcwLjQ1MzMgOTIuNjkzM0w2Mi41NzA2IDEwMC41NzZDNzUuNjIyNiAxMDcuODU0IDkwLjY1OTcgMTEyIDEwNi42NjcgMTEyQzEwOS42IDExMiAxMTIgMTA5LjYgMTEyIDEwNi42NjdWODguMDUzM0MxMTIgODUuMTIgMTA5LjYgODIuNzIgMTA2LjY2NyA4Mi43MkMxMDAuMDUzIDgyLjcyIDkzLjYgODEuNjUzMyA4Ny42MjY3IDc5LjY4Qzg1Ljc2IDc5LjA0IDgzLjYyNjcgNzkuNTIgODIuMTg2NyA4MC45NloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0yNy40MjQgNjUuNDI5NEMzNS42Mzc2IDgwLjE2MDMgNDcuODM5NyA5Mi4zNjI0IDYyLjU3MDYgMTAwLjU3Nkw3MC40NTMzIDkyLjY5MzNDNTUuMzYgODQuOTYgNDIuOTg2NyA3Mi42NCAzNS4zMDY3IDU3LjU0NjdMMjcuNDI0IDY1LjQyOTRaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjcuNDI0IDY1LjQyOTRDMzUuNjM3NiA4MC4xNjAzIDQ3LjgzOTcgOTIuMzYyNCA2Mi41NzA2IDEwMC41NzZMNzAuNDUzMyA5Mi42OTMzQzU1LjM2IDg0Ljk2IDQyLjk4NjcgNzIuNjQgMzUuMzA2NyA1Ny41NDY3TDI3LjQyNCA2NS40Mjk0WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyKSIvPgo8cGF0aCBkPSJNMjcuNDI0IDY1LjQyOTRDMzUuNjM3NiA4MC4xNjAzIDQ3LjgzOTcgOTIuMzYyNCA2Mi41NzA2IDEwMC41NzZMNzAuNDUzMyA5Mi42OTMzQzU1LjM2IDg0Ljk2IDQyLjk4NjcgNzIuNjQgMzUuMzA2NyA1Ny41NDY3TDI3LjQyNCA2NS40Mjk0WiIgZmlsbD0idXJsKCNwYWludDFfbGluZWFyKSIvPgo8L2c+CjxkZWZzPgo8ZmlsdGVyIGlkPSJmaWx0ZXIwX2RkZCIgeD0iLTMiIHk9Ii0yIiB3aWR0aD0iMTM0IiBoZWlnaHQ9IjEzNCIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM9InNSR0IiPgo8ZmVGbG9vZCBmbG9vZC1vcGFjaXR5PSIwIiByZXN1bHQ9IkJhY2tncm91bmRJbWFnZUZpeCIvPgo8ZmVDb2xvck1hdHJpeCBpbj0iU291cmNlQWxwaGEiIHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAxMjcgMCIvPgo8ZmVPZmZzZXQgZHk9IjEiLz4KPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMS41Ii8+CjxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwLjIgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9ImVmZmVjdDFfZHJvcFNoYWRvdyIvPgo8ZmVDb2xvck1hdHJpeCBpbj0iU291cmNlQWxwaGEiIHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAxMjcgMCIvPgo8ZmVPZmZzZXQgZHk9IjIiLz4KPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMSIvPgo8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMC4xMiAwIi8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3ciIHJlc3VsdD0iZWZmZWN0Ml9kcm9wU2hhZG93Ii8+CjxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIi8+CjxmZU9mZnNldC8+CjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjEiLz4KPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMTQgMCIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluMj0iZWZmZWN0Ml9kcm9wU2hhZG93IiByZXN1bHQ9ImVmZmVjdDNfZHJvcFNoYWRvdyIvPgo8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9ImVmZmVjdDNfZHJvcFNoYWRvdyIgcmVzdWx0PSJzaGFwZSIvPgo8L2ZpbHRlcj4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyIiB4MT0iMjYuNSIgeTE9IjU0IiB4Mj0iMzUiIHkyPSI2Mi41IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3Atb3BhY2l0eT0iMC4yNSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MV9saW5lYXIiIHgxPSI3MC41IiB5MT0iMTAwIiB4Mj0iNjUiIHkyPSI5NC41IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3Atb3BhY2l0eT0iMC4yNSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=)
      center/50px 50px no-repeat #fff;
    background-color: #4caf50;
    border-radius: 50%;
    bottom: 90px;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2),
      0px 1px 18px rgba(0, 0, 0, 0.12), 0px 6px 10px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2), 0px 1px 18px rgba(0, 0, 0, 0.12),
      0px 6px 10px rgba(0, 0, 0, 0.14);
    display: block;
    z-index: 2147483647;
    height: 65px;
    position: fixed;
    right: 16px;
    width: 65px;
    color: rgba(0, 0, 0, 0);
    /* 10/01/2023 */
    display: none;
  }
}

/*
--------------------
Whatsapp widget rev1
--------------------
*/

.wa-widget {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 997;
  width: 100%;
}

.wa-widget .wa-popup {
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 998;
}
.wa-widget .wa-popup .wa-popup-text {
  background-color: #fff;
  padding: .6rem;
  border-radius: .5rem;
  box-shadow: 0 .15rem 1rem 0 rgb(0 0 0 / 15%);
  font-size: .8rem;
  will-change: visibility, opacity, transform;
  transition:
    visibility .3s ease,
    opacity .3s ease, 
    transform .3s ease;

}
.wa-widget .wa-popup .wa-popup-text .wa-popup-p {
  margin-bottom: 0;
}
.wa-widget .wa-popup .wa-btn {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #2db742;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
}

.wa-widget .wa-popup .wa-btn::before {
  content: '';
  position: absolute;
  background: url('../img/wa.svg') scroll center center;
  background-size: cover;
  width: 2rem;
  height: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wa-widget .wa-popup-window {
  background-color: #fff;
  box-shadow: 0 .15rem 1rem 0 rgb(0 0 0 / 15%);
  border-radius: .5rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

/*
* This fixes a problem with small resolutions
*   where the left side of the window goes outside
*     the boundries.
*/
@media screen and (max-width: 376px) {
  .wa-widget .wa-popup-window {
    left: 2rem;
  }
}

.wa-widget .wa-popup-window .wa-popup-window-header {
  background-color: #2db742;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border-radius: .5rem .5rem 0 0 ;
}

.wa-widget .wa-popup-window .wa-popup-window-body {
  padding: 1rem;
}

.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-notice {
  font-size: 0.7rem;
  font-weight: 500;
  color: #a5abb7;
}

.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-items-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-item .wa-popup-window-item-hyperlink {
  display: flex;
  background-color: #fafafa;
  padding: .5rem;
  border-radius: 2px 4px 2px 4px;
  /* border: 1px solid #d8d8d8; */
  border-left: 2px solid #2db742;
  align-items: center;
  gap: .75rem;
  transition: background-color .3s ease,
    box-shadow .3s ease;
}
.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-item .wa-popup-window-item-hyperlink:hover {
  background-color: #fff;
  box-shadow: 0 .15rem 1rem 0 rgb( 0 0 0 / 10%);
}
.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-item .wa-popup-window-item-hyperlink .wa-popup-window-text {

}
.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-item .wa-popup-window-item-hyperlink .wa-popup-window-text .wa-popup-window-text-title {
  margin-bottom: 0;
  color: #1c1c1c;
  font-size: 0.9rem;
}
.wa-widget .wa-popup-window .wa-popup-window-body .wa-popup-window-item .wa-popup-window-item-hyperlink .wa-popup-window-text .wa-popup-window-text-p {
  margin-bottom: 0;
  font-size: .7rem;
  color: #989b9f;
}

[data-wa-visible] {
  will-change: visibility, opacity, transform;
  transition:
    visibility .3s ease,
    opacity .3s ease, 
    transform .3s ease;
}

[data-wa-visible="false"] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(1rem);
}

[data-wa-visible="true"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5rem);
}

.wa-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(2rem);
}
</pre></body></html>