@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Nanum Gothic", sans-serif;
}

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

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 400;
}
@media (max-width: 767px) {
  h2 {
    font-weight: 600;
  }
}

p {
  font-weight: 300;
  padding: 0;
  font-size: 15px;
}

.btn-black {
  background-color: #292929;
  padding: 12px 35px;
  border-radius: 50px;
  color: #fff;
  transition: 0.6s all;
}
.btn-black:hover {
  background-color: #a24b18;
}
@media (max-width: 767px) {
  .btn-black {
    text-align: center;
  }
}

.btn-orange {
  background-color: #f9803b;
  padding: 12px 35px;
  border-radius: 50px;
  color: #fff;
  transition: 0.6s all;
}
.btn-orange:hover {
  background-color: #a24b18;
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 1440px) {
  .pt-100 {
    padding-top: 60px;
  }
}
@media (max-width: 1000px) {
  .pt-100 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .pt-100 {
    padding-top: 25px;
  }
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal2 {
  position: relative;
  transform: translateY(200px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal2.active {
  transform: translateY(0);
  opacity: 1;
}

#main__header {
  height: 100px;
  width: 100%;
  z-index: 100;
  padding: 20px 50px;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  #main__header {
    height: auto;
  }
}
@media (max-width: 1000px) {
  #main__header {
    padding: 10px 15px 0;
  }
}
#main__header .header__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
#main__header .header__wrapper .logo {
  width: 20%;
  z-index: 100;
  display: flex;
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .logo {
    order: 2;
    width: 40%;
    justify-content: end;
  }
}
#main__header .header__wrapper .logo img {
  width: 150px;
}
@media (max-width: 1024px) {
  #main__header .header__wrapper .logo img {
    width: 100px;
  }
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .logo img {
    display: inline;
  }
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .logo .pc {
    display: none;
  }
}
#main__header .header__wrapper .logo .mobile {
  display: none;
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .logo .mobile {
    display: block;
  }
}
#main__header .header__wrapper .main-menu {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  z-index: 100;
}
@media (max-width: 1440px) {
  #main__header .header__wrapper .main-menu {
    width: 65%;
  }
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .main-menu {
    width: 60%;
    order: 1;
    justify-content: flex-start;
  }
}
#main__header .header__wrapper .main-menu .title {
  color: #fff !important;
}
#main__header .header__wrapper .main-menu .wsarrow {
  display: none;
}
#main__header .header__wrapper .main-menu .white_menu li a {
  color: #fff;
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .main-menu .white_menu li a {
    color: #787878;
  }
}
#main__header .header__wrapper .main-menu .white_menu .sub-menu li a {
  color: #787878;
}
#main__header .header__wrapper .main-menu .dark_menu li a {
  color: #787878;
}
#main__header .header__wrapper .main-menu .dark_menu .sub-menu li a {
  color: #787878;
}
#main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu .link-list li {
  font-size: 15px;
}
@media (max-width: 1440px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu .link-list li {
    font-size: 12px;
  }
}
@media (max-width: 1300px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu .link-list li {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu .link-list li {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
  }
}
#main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu.halfmenu {
  width: 70%;
  right: 2%;
  left: auto;
  top: auto;
  z-index: 1000;
  margin: 0px;
  padding: 25px;
  border-radius: 15px;
  min-width: 190px;
  background-color: #243241;
  border: solid 1px #243241;
}
@media (max-width: 1366px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu.halfmenu {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu.halfmenu {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > .wsmegamenu.halfmenu {
    border: unset;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 0;
  }
}
#main__header .header__wrapper .main-menu .halfmenu ul li a {
  color: #dedede;
  font-size: 13px;
}
@media (max-width: 1440px) {
  #main__header .header__wrapper .main-menu .halfmenu ul li a {
    font-size: 11px;
  }
}
@media (max-width: 1300px) {
  #main__header .header__wrapper .main-menu .halfmenu ul li a {
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  #main__header .header__wrapper .main-menu .halfmenu ul li a {
    color: #858585 !important;
    font-weight: 400;
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .main-menu .wsanimated-arrow {
    top: 10px;
  }
}
@media (max-width: 900px) {
  #main__header .header__wrapper .main-menu .wsanimated-arrow {
    top: 0px;
  }
}
#main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > a {
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 1366px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > a {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  #main__header .header__wrapper .main-menu .wsmenu > .wsmenu-list > li > a {
    font-size: 12px;
  }
}
#main__header .header__wrapper .main-menu .sub-menu {
  font-size: 13px;
}
#main__header .header__wrapper .call_now {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 100;
}
@media (max-width: 1684px) {
  #main__header .header__wrapper .call_now {
    width: 15%;
  }
}
@media (max-width: 1440px) {
  #main__header .header__wrapper .call_now {
    width: 15%;
  }
}
@media (max-width: 1000px) {
  #main__header .header__wrapper .call_now {
    display: none;
  }
}
#main__header .header__wrapper .call_now .icon {
  padding-right: 10px;
}
#main__header .header__wrapper .call_now .text {
  display: flex;
  flex-direction: column;
}
#main__header .header__wrapper .call_now .text h5 {
  color: #c6c6c6;
  font-size: 11px;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 1300px) {
  #main__header .header__wrapper .call_now .text h5 {
    font-size: 5px;
  }
}
#main__header .header__wrapper .call_now .text h4 {
  padding-top: 2px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: bolder;
}
@media (max-width: 1300px) {
  #main__header .header__wrapper .call_now .text h4 {
    font-size: 10px;
  }
}

.hero--banner {
  width: 100%;
  z-index: 1;
  margin-top: -103px;
}
@media (max-width: 1000px) {
  .hero--banner {
    padding: 15px;
    margin-top: 0;
  }
}
.hero--banner ul {
  padding: 0;
  margin: 0;
}
.hero--banner ul li {
  list-style: none;
  height: 100vh;
  position: relative;
}
@media (max-width: 1000px) {
  .hero--banner ul li {
    height: 55vh;
  }
}
@media (max-width: 768px) {
  .hero--banner ul li {
    height: 50vh;
  }
}
.hero--banner ul li .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .hero--banner ul li .caption {
    width: 93%;
    text-align: center;
  }
}
.hero--banner ul li .caption h1 {
  color: #fff;
  font-size: 80px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1440px) {
  .hero--banner ul li .caption h1 {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .hero--banner ul li .caption h1 {
    font-size: 40px;
  }
}
.hero--banner ul li .caption p {
  color: #fff;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .hero--banner ul li .caption p {
    font-size: 11px;
  }
}
.hero--banner ul li .caption .btn-banner {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  border: 1px solid #fff;
}
.hero--banner ul li .layer {
  background-color: rgba(0, 0, 0, 0.5568627451);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.hero--banner ul li video {
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
  margin: 0;
  height: 100%;
}

.inner-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: -100px;
}
@media (max-width: 1000px) {
  .inner-banner {
    margin-top: 0;
  }
}
.inner-banner .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(9deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.708) 85%);
  z-index: 10;
}
@media (max-width: 1000px) {
  .inner-banner .mask {
    background: unset;
  }
}
.inner-banner img {
  width: 100%;
}
@media (max-width: 767px) {
  .inner-banner {
    padding: 15px;
  }
}
.inner-banner .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  z-index: 10;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 800px) {
  .inner-banner .caption {
    width: 90%;
    padding: 10px;
  }
}
.inner-banner .caption h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
  font-size: 55px;
}
@media (max-width: 1024px) {
  .inner-banner .caption h1 {
    font-size: 35px;
  }
}
@media (max-width: 800px) {
  .inner-banner .caption h1 {
    font-size: 18px;
  }
}
.inner-banner .caption h2 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
  font-size: 55px;
}
@media (max-width: 1024px) {
  .inner-banner .caption h2 {
    font-size: 35px;
  }
}
@media (max-width: 800px) {
  .inner-banner .caption h2 {
    font-size: 18px;
  }
}
.inner-banner .caption h6 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.inner-banner .caption .thanks-btn {
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 7px 25px;
  border-radius: 50px;
}

.four_section {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .four_section {
    padding: 0px 15px 15px;
  }
}
.four_section .box {
  width: 25%;
  padding: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 140px;
}
@media (max-width: 1000px) {
  .four_section .box {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.four_section .box .icon {
  padding-right: 20px;
}
.four_section .box .icon img {
  height: 50px;
}
@media (max-width: 1000px) {
  .four_section .box .icon img {
    height: 35px;
  }
}
@media (max-width: 1000px) {
  .four_section .box .icon {
    padding-right: 0;
    padding-bottom: 10px;
  }
}
.four_section .box .text h4 {
  font-size: 16px;
  color: #fff;
  padding: 0;
  margin: 0;
}
.four_section .one {
  background-color: #536579;
}
.four_section .two {
  background-color: #37495d;
}
.four_section .three {
  background-color: #243241;
}
.four_section .four {
  background-color: #151f29;
}

@media (max-width: 767px) {
  .home-services h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home-services p {
    text-align: left;
  }
}
.home-services .service-box {
  display: flex;
  gap: 5px;
}
@media (max-width: 800px) {
  .home-services .service-box {
    flex-wrap: wrap;
  }
}
.home-services .service-box .item {
  width: 25%;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .home-services .service-box .item {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .home-services .service-box .item {
    width: 100%;
  }
}
.home-services .service-box .item img {
  width: 100%;
  transition: 0.6s all;
}
.home-services .service-box .item img:hover {
  scale: 1.05;
  rotate: 1deg;
}
.home-services .service-box .item .tex-box {
  padding: 35px 20px 20px 20px;
  border: 1px solid #f0f0f0;
}
.home-services .service-box .item .tex-box hr {
  color: #dadada;
}
.home-services .service-box .item .tex-box h5 {
  font-weight: 600;
  font-size: 18px;
}
.home-services .service-box .item .tex-box p {
  font-size: 15px;
}

@media (max-width: 767px) {
  .about-main h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about-main p {
    text-align: justify;
  }
}
@media (max-width: 767px) {
  .about-main {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .about-main img {
    display: none;
  }
}
@media (max-width: 1000px) {
  .about-main {
    padding-bottom: 20px;
  }
}

.textcenter {
  text-align: center;
}
@media (max-width: 768px) {
  .textcenter {
    text-align: left;
  }
}

@media (max-width: 1000px) {
  .about-home {
    padding: 0 5px;
  }
}

.who_we_serve {
  background-image: url(../images/quix_0037.png);
  background-position: center center;
  background-size: cover;
  padding: 150px 100px;
}
@media (max-width: 1366px) {
  .who_we_serve {
    padding: 50px 100px;
  }
}
@media (max-width: 1000px) {
  .who_we_serve {
    padding: 100px 50px;
  }
}
@media (max-width: 767px) {
  .who_we_serve {
    padding: 30px 20px 0 20px;
  }
}
.who_we_serve h2 {
  color: #fff;
}
.who_we_serve p {
  color: #fff;
}
.who_we_serve .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.who_we_serve .wrapper .item {
  width: 40%;
}
@media (max-width: 1440px) {
  .who_we_serve .wrapper .item {
    width: 55%;
  }
}
@media (max-width: 1300px) {
  .who_we_serve .wrapper .item {
    width: 65%;
  }
}
@media (max-width: 1000px) {
  .who_we_serve .wrapper .item {
    width: 100%;
  }
}
.who_we_serve .box_wraper {
  display: flex;
  padding-bottom: 30px;
}
.who_we_serve .box_wraper .box {
  width: 40%;
  display: flex;
}
@media (max-width: 1300px) {
  .who_we_serve .box_wraper .box {
    width: 50%;
  }
}
.who_we_serve .box_wraper .box .icon {
  padding-right: 15px;
}
.who_we_serve .box_wraper .box .text h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.who_we_serve .box_wraper .box .text p {
  color: #fff;
}

.testimonials {
  background-color: #f9f9f9;
  display: flex;
}
@media (max-width: 1000px) {
  .testimonials {
    flex-wrap: wrap;
  }
}
.testimonials .item-01 {
  width: 50%;
}
@media (max-width: 1000px) {
  .testimonials .item-01 {
    width: 100%;
  }
}
.testimonials .item-02 {
  width: 50%;
  padding: 50px;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .testimonials .item-02 {
    padding: 20px;
  }
}
@media (max-width: 1000px) {
  .testimonials .item-02 {
    width: 100%;
  }
}
.testimonials .item-02 .slider ul {
  padding: 0;
  margin: 0;
  display: flex;
}
.testimonials .item-02 .slider ul li {
  list-style: none;
  padding: 30px;
  border: 1px solid #e6e6e6;
  margin: 10px;
  height: 300px;
}
@media (max-width: 1440px) {
  .testimonials .item-02 .slider ul li {
    padding: 20px;
    height: 280px;
  }
}
@media (max-width: 1366px) {
  .testimonials .item-02 .slider ul li {
    height: 295px;
  }
}
@media (max-width: 1280px) {
  .testimonials .item-02 .slider ul li {
    height: 225px;
  }
}
@media (max-width: 1024px) {
  .testimonials .item-02 .slider ul li {
    height: auto;
  }
}
.testimonials .item-02 .slider ul li img {
  padding-bottom: 15px;
  width: 100px;
}
.testimonials .item-02 .slider ul li p {
  font-size: 15px;
}
@media (max-width: 1440px) {
  .testimonials .item-02 .slider ul li p {
    font-size: 13px;
  }
}
@media (max-width: 1300px) {
  .testimonials .item-02 .slider ul li p {
    font-size: 10px;
  }
}
.testimonials .item-02 .slider ul li p b {
  font-weight: 800;
}

@media (max-width: 767px) {
  .our-clients {
    text-align: center;
  }
}

.blog img { 
  padding-bottom: 20px;
}
.blog h5 {
  font-weight: 600;
  font-size: 18px;
}

.video-section {
  background-image: url(../images/quix_0013.png);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
  background-attachment: fixed;
}
@media (max-width: 1000px) {
  .video-section {
    padding: 50px 0;
    background-position: right;
  }
}
.video-section h2 {
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 1000px) {
  .video-section h2 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 19px;
  }
}

.footer {
  padding: 100px 0 0;
  background-color: #151f29;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 35px 20px;
  }
}
.footer h4 {
  color: #ccc;
  font-size: 15px;
  padding-bottom: 15px;
}
.footer p {
  color: #6d7178;
}
.footer ul {
  padding: 0;
  margin: 0;
}
.footer ul li {
  list-style: none;
  color: #6d7178;
  font-size: 14px;
  padding-bottom: 15px;
}
.footer .social-media {
  padding-bottom: 15px;
  display: flex;
}
.footer .social-media div {
  padding-right: 15px;
}
.footer .social-media img {
  width: 25px;
}

.line {
  width: 100%;
  height: 4px;
  background-color: #f9803b;
}

.mission {
  background-image: url(../images/mission.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 100px;
}
@media (max-width: 1000px) {
  .mission {
    padding: 50px;
  }
}

.values h2 {
  text-align: center;
}
@media (max-width: 1000px) {
  .values h2 {
    text-align: center;
    padding-top: 40px;
  }
}
.values .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.values .wrapper .box {
  width: 24%;
  padding: 50px 20px 20px 20px;
  border: 1px solid #ccc;
  margin: 4px;
  border-radius: 5px;
}
@media (max-width: 1000px) {
  .values .wrapper .box {
    width: 100%;
  }
}
.values .wrapper .box .icon {
  padding-bottom: 15px;
}
.values .wrapper .box .icon img {
  width: 50px;
}
.values .wrapper .box .text h4 {
  font-size: 18px;
  font-weight: 600;
}

.plumbing {
  background-image: url(../images/plumbing.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.civil {
  background-image: url(../images/civil-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fitout {
  background-image: url(../images/fit-outs-uae.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mep {
  background-image: url(../images/mep-uae.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mechanical {
  background-image: url(../images/mechanical-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cleaning {
  background-image: url(../images/fm-cleaning-uae.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.renovation {
  background-image: url(../images/renovation-uae.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-about {
  padding: 50px 0;
}
@media (max-width: 1440px) {
  .service-about {
    padding: 0px;
  }
}
@media (max-width: 1000px) {
  .service-about {
    padding: 20px;
  }
}
.service-about .inside-padding {
  padding: 0 100px;
}
@media (max-width: 1000px) {
  .service-about .inside-padding {
    padding: 0px;
  }
}
.service-about .wrapper {
  display: flex;
  padding-top: 30px;
}
.service-about .wrapper .box {
  align-items: center;
  border: 1px solid #ccc;
  padding: 15px 30px;
  text-align: center;
  margin-right: 10px;
  border-radius: 5px;
}
@media (max-width: 1000px) {
  .service-about .wrapper .box {
    padding: 12px 20px;
  }
}
.service-about .wrapper .box h5 {
  font-size: 12px;
  padding-top: 10px;
  margin: 0;
}

.what-we-do img {
  width: 100%;
}
.what-we-do h4 {
  font-size: 18px;
  padding-top: 25px;
  font-weight: 600;
}

.sector-page .box_wraper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sector-page .box_wraper .box {
  border: 1px solid #ccc;
  padding: 25px;
  border-radius: 5px;
  transition: 0.6s all;
  width: 32%;
}
@media (max-width: 1000px) {
  .sector-page .box_wraper .box {
    width: 100%;
  }
}
.sector-page .box_wraper .box .text h5 {
  font-size: 18px;
  font-weight: 600;
}
.sector-page .box_wraper .box .icon {
  padding-bottom: 15px;
}
.sector-page .box_wraper .box:hover {
  background-color: #f9803b;
  color: #fff;
}

@media (max-width: 767px) {
  .side-bar {
    padding-bottom: 25px;
    display: none;
  }
}
.side-bar .active {
  background: #151f29;
  color: #fff;
  border-color: #151f29;
}
.side-bar ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .side-bar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
}
.side-bar ul li {
  list-style: none;
  padding: 14px;
  border: 1px solid #c6c6c6;
  margin: 0 0 5px;
  color: #243241;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.6s all;
}
.side-bar ul li:hover {
  background-color: #151f29;
  color: #fff;
}
@media (max-width: 767px) {
  .side-bar ul li {
    width: 48%;
    margin: 2px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 7px 10px;
  }
}

.carpentry {
  background: url(../images/carpentry-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.flooring {
  background: url(../images/flooring-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ceiling {
  background: url(../images/ceiling-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gypsum {
  background: url(../images/gypsum-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.stone {
  background: url(../images/stone-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glass {
  background: url(../images/glass-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.interior_cta {
  background: url(../images/interior.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.apartment {
  background: url(../images/apartment-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.villa {
  background: url(../images/villa-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.electric {
  background: url(../images/electrician.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.landscaping {
  background: url(../images/landscaping-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ac {
  background: url(../images/ac.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swimmingpool {
  background: url(../images/swimming-pool-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ac-duct {
  background: url(../images/ac-duct-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kitchen {
  background: url(../images/kitchen-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.watertank {
  background: url(../images/water-tank-cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mep_cta {
  background: url(../images/cta-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .calltoaction {
    padding: 25px;
  }
}
.calltoaction .form_box {
  background-color: #fff;
  padding: 70px 45px;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .calltoaction .form_box {
    padding: 25px;
  }
}
.calltoaction .form_box h6 {
  text-align: center;
  font-size: 18px;
  color: #000;
}

.form_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.form_wrapper .x-12 {
  width: 100%;
  text-align: center;
}
.form_wrapper .x-6 {
  width: 48%;
}
@media (max-width: 1024px) {
  .form_wrapper .x-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .form_wrapper .x-6 {
    width: 100%;
  }
}
.form_wrapper select {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #666363 !important;
  background-color: unset;
  color: #2d2d2d;
  font-size: 12px;
  font-weight: 300;
}
.form_wrapper .input-text {
  display: block;
  width: 100%;
  height: 45px;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid #666363 !important;
  background-color: unset;
  color: #2d2d2d;
  font-size: 15px;
  line-height: 43px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.form_wrapper .input-text:focus {
  outline: none;
}
.form_wrapper ::-moz-placeholder {
  color: #000;
  font-size: 12px;
  font-weight: 200;
}
.form_wrapper ::placeholder {
  color: #000;
  font-size: 12px;
  font-weight: 200;
}
.form_wrapper .calltoaction-btn {
  background: #f9803b;
  border: unset;
  width: 100%;
  height: 45px;
  padding: 13px 35px;
  font-size: 14px;
  border-radius: 9px;
  color: #fff;
}

.how_we_work .wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.how_we_work .wrapper .box_with_icon {
  width: 24%;
  border: 1px solid #ccc;
  padding: 15px;
}
@media (max-width: 1000px) {
  .how_we_work .wrapper .box_with_icon {
    width: 100%;
  }
}
.how_we_work .wrapper .box_with_icon h4 {
  font-size: 18px;
  font-weight: 600;
}
.how_we_work .wrapper .box_with_icon img {
  padding-bottom: 30px;
  width: 60px;
}

.inside_services .other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inside_services .other-services .box {
  width: 32.5%;
  border: 1px solid #e9e9e9;
  padding: 40px;
}
@media (max-width: 1024px) {
  .inside_services .other-services .box {
    width: 49%;
  }
}
@media (max-width: 800px) {
  .inside_services .other-services .box {
    width: 100%;
  }
}
.inside_services .other-services .box img {
  width: 100%;
}
.inside_services .other-services .box h4 {
  padding-top: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.faq .wrapper .faq-item {
  width: 50%;
  display: flex;
  padding-bottom: 20px;
  padding: 20px;
}
@media (max-width: 800px) {
  .faq .wrapper .faq-item {
    width: 100%;
  }
}
.faq .wrapper .faq-item .icon {
  width: 10%;
  padding-right: 20px;
}
.faq .wrapper .faq-item .text {
  width: 90%;
}
.faq .wrapper .faq-item .text h3 {
  font-size: 18px;
  font-weight: 600;
}
.faq .wrapper .faq-item .text p {
  color: #787878;
}

.benefits {
  background-color: #fbfbfb;
}
.benefits .owl-box {
  display: flex;
}
.benefits .wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: left;
}
.benefits .wrapper .box_with_icon {
  width: 24%;
  border: 1px solid #ccc;
  padding: 15px;
}
@media (max-width: 1000px) {
  .benefits .wrapper .box_with_icon {
    width: 100%;
  }
}
.benefits .wrapper .box_with_icon h4 {
  font-size: 18px;
  font-weight: 600;
}
.benefits .wrapper .box_with_icon img {
  padding-bottom: 50px;
  width: 50px;
}

.ac-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
}
@media (max-width: 800px) {
  .ac-box {
    gap: 6px;
  }
}
.ac-box .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #243241;
  width: 24%;
  text-align: center;
  height: 250px;
  padding: 20px;
}
@media (max-width: 800px) {
  .ac-box .item {
    width: 49%;
  }
}
.ac-box .item img {
  text-align: center;
  width: 50px;
  padding-bottom: 10px;
  display: inline;
}
.ac-box .item h5 {
  font-size: 17px;
  color: #fff;
}

.signs {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .signs {
    flex-wrap: wrap;
  }
}
.signs .sign_box_wrap {
  display: flex;
  align-items: center;
  width: 24%;
  height: 150px;
  border: 1px solid #000;
  padding: 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  .signs .sign_box_wrap {
    width: 100%;
    margin: 10px 0;
  }
}
.signs .sign_box_wrap h6 {
  text-align: left;
  padding-left: 15px;
}/*# sourceMappingURL=main.css.map */