:root {
  --theme-green: #de232a;
  --theme-purple: #a3238e;
  --dark-blue: #002c42;
  --theme-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

.spc-cu {
  padding: 50px 0;
}

a {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #000;
}

body {
  font-size: 16px;
  line-height: 1.2rem;
  font-family: var(--theme-font);
}

ul {
  padding: 0;
  margin: 0;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  color: #676767;
}

ul li {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-30 {
  padding-top: 20px;
}

.pb-30 {
  padding-bottom: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 20px;
}

.mb-30 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

@-webkit-keyframes iconAnimation {
  0% {
    -webkit-box-shadow: 0px 0px 1px 0px #ffffff80;
            box-shadow: 0px 0px 1px 0px #ffffff80;
  }
  25% {
    -webkit-box-shadow: 0px 0px 1px 8px #ffffff80;
            box-shadow: 0px 0px 1px 8px #ffffff80;
  }
  50% {
    -webkit-box-shadow: 0px 0px 1px 12px #ffffff50;
            box-shadow: 0px 0px 1px 12px #ffffff50;
  }
  100% {
    -webkit-box-shadow: 0px 0px 1px 15px transparent;
            box-shadow: 0px 0px 1px 15px transparent;
  }
}

@keyframes iconAnimation {
  0% {
    -webkit-box-shadow: 0px 0px 1px 0px #ffffff80;
            box-shadow: 0px 0px 1px 0px #ffffff80;
  }
  25% {
    -webkit-box-shadow: 0px 0px 1px 8px #ffffff80;
            box-shadow: 0px 0px 1px 8px #ffffff80;
  }
  50% {
    -webkit-box-shadow: 0px 0px 1px 12px #ffffff50;
            box-shadow: 0px 0px 1px 12px #ffffff50;
  }
  100% {
    -webkit-box-shadow: 0px 0px 1px 15px transparent;
            box-shadow: 0px 0px 1px 15px transparent;
  }
}

.top-header {
  padding: 15px 0;
}

.top-header .social-medias ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top-header .social-medias ul li a {
  padding: 5px;
}

.top-header .top-right-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

.top-header .top-right-wrapper .call-wrapper {
  padding-right: 10px;
  font-weight: 600;
  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;
}

.top-header .top-right-wrapper .call-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: solid 2px #ddd;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 15px;
}

.top-header .top-right-wrapper .call-wrapper a i {
  width: 30px;
  height: 30px;
  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;
  font-size: 1.1rem;
  line-height: 1rem;
  margin-right: 5px;
  background-color: var(--theme-green);
  color: #fff;
}

header {
  width: 100%;
  z-index: 11;
  background-color: #fff;
  color: #000;
}

header .right-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

header .right-header a {
  padding: 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}

header .right-header i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .nav-wrapper {
  background-color: #242424;
  color: #fff;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header nav ul li a {
  padding: 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

header nav ul li a:hover {
  color: var(--theme-green);
}

header nav ul li.active {
  position: relative;
  color: var(--theme-green);
  font-weight: 700;
}

header nav ul li.active a {
  color: var(--theme-green);
}

header .navi-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

header .get-a-quote a {
  line-height: 15px;
  padding: 14px 18px;
  border: solid 3px var(--theme-green);
  border-radius: 39px;
}

header .get-a-quote a i {
  padding: 0 15px;
}

header .search-btn i {
  padding: 0 15px;
}

header .logo-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

header .logo-wrapper img {
  max-width: 165px;
  width: auto;
}

header .call-btn a i {
  font-size: 22px;
  padding-right: 8px;
  padding-left: 15px;
  color: var(--theme-green);
}

.undet-line {
  position: relative;
  line-height: 2.3;
}

.undet-line:before {
  content: "";
  display: block;
  width: 40px;
  height: 10px;
  background-color: var(--theme-green);
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.banner .bnr-img-overlay {
  width: 100%;
  height: 100%;
  background-color: #000000ba;
  z-index: 10;
  position: absolute;
  top: 0;
}

.banner .banner-img img {
  width: 100%;
  top: 0;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.banner .banner-content {
  position: absolute;
  top: 50%;
  z-index: 31;
  width: 100%;
  color: #fff;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner .banner-content h1 {
  font-size: 50px;
  font-weight: 700;
}

.banner .banner-content p {
  line-height: 2rem;
  font-size: 18px;
  color: inherit;
}

.banner .banner-btns {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner .banner-btns a {
  padding: 15px 28px;
  border-radius: 00px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid var(--theme-green) 3px;
}

.banner .banner-btns a:hover {
  background-color: var(--theme-green);
  border: solid transparent 3px;
}

.banner .banner-btns a i {
  padding: 0 6px;
}

.banner .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}

.banner button.owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner button.owl-prev span {
  font-size: 40px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 40px;
  height: 40px;
  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;
  padding-bottom: 2px;
  border-radius: 50px;
  color: #fff;
  padding-left: 1px;
  border-radius: 50px;
}

.banner button.owl-prev span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.banner button.owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner button.owl-next span {
  font-size: 40px;
  border: solid 3px #ddd;
  color: #fff;
  font-weight: 200;
  width: 40px;
  height: 40px;
  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;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}

.banner button.owl-next span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.industries .indus-cards {
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  border: solid 1px #ddd;
}

.industries .indus-cards * {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.industries .indus-cards:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.industries .indus-cards:hover * {
  color: #fff;
}

.industries .indus-cards:hover .ind-img-wrapper img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.industries .indus-cards:hover .see-more-btn a {
  border-color: #fff;
}

.industries .indus-cards:hover .see-more-btn a i {
  color: inherit;
}

.industries .indus-cards .ind-img-wrapper {
  overflow: hidden;
}

.industries .indus-cards .ind-img-wrapper img {
  width: 100%;
  max-height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.industries .indus-cards .indus-card-cotent {
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #454545;
  padding: 20px 12px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.industries .indus-cards .indus-card-cotent h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 17px;
  line-height: 1.7;
}

.industries .indus-cards .indus-card-cotent p {
  line-height: 1.6;
  margin: 20px 0;
}

.industries .indus-cards .see-more-btn {
  font-weight: 700;
  text-transform: uppercase;
  color: #454545;
}

.industries .indus-cards .see-more-btn a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: solid 1px var(--theme-green);
  padding: 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.industries .indus-cards .see-more-btn a i {
  color: var(--theme-green);
  padding-left: 6px;
  font-size: 13px;
}

.industries .indus-cards .see-more-btn a:hover {
  margin-left: 5px;
}

.industries button.owl-prev {
  position: absolute;
  left: -70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.industries button.owl-prev span {
  font-size: 40px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 40px;
  height: 40px;
  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;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}

.industries button.owl-prev span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.industries button.owl-next {
  position: absolute;
  right: -70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.industries button.owl-next span {
  font-size: 40px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 40px;
  height: 40px;
  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;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}

.industries button.owl-next span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.industries .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}

.industries h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 800;
  line-height: 2;
  color: var(--dark-blue);
}

.about-us-home .about-content {
  padding-right: 25px;
}

.about-us-home .about-content .about-inner-con-wrap {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about-us-home .about-content .about-inner-con-wrap .about-inner-con-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.about-us-home .about-content .about-inner-con-wrap .about-inner-con-box img {
  width: 100%;
  max-width: 168px;
  padding-right: 25px;
}

.about-us-home h2 {
  font-weight: 800;
  line-height: 2;
  color: var(--dark-blue);
}

.about-us-home .about-img-wrappe {
  position: relative;
}

.about-us-home .about-img-wrappe img {
  -webkit-box-shadow: 9px 10px 23px -17px;
          box-shadow: 9px 10px 23px -17px;
  border-radius: 11px;
}

.about-us-home .popup-btn {
  padding: 30px 30px 30px 30px;
  background-color: var(--theme-green);
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #FFFFFF;
  position: absolute;
  bottom: 20px;
  left: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  margin-right: 20px;
  cursor: pointer;
}

.about-us-home .popup-btn .play-icon {
  border-radius: 50px;
  -webkit-animation: iconAnimation 3s infinite;
          animation: iconAnimation 3s infinite;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about-us-home .popup-btn i {
  font-size: 60px;
  color: #fff;
  line-height: 50px;
}

.testimonials h2 {
  font-weight: 800;
  line-height: 2;
  color: var(--dark-blue);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.testimonials .texti-box {
  border: solid 1px #ddd;
  padding: 70px 24px 16px;
  background-image: linear-gradient(168deg, #ffffffbf, #ffffff26), url(img/bg-pattern.jpg);
  position: relative;
  color: #fff;
  border-width: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-style: solid;
  -o-border-image: linear-gradient(to right, #de232a 0, #9313d5 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, color-stop(0, #de232a), to(#9313d5)) 1;
     border-image: linear-gradient(to right, #de232a 0, #9313d5 100%) 1;
}

.testimonials .texti-box .quoteBtn {
  font-size: 38px;
  color: var(--theme-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
}

.testimonials .texti-box .texti-con-wrap {
  font-size: 15px;
}

.testimonials .texti-box .profile-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 10px 0 28px;
}

.testimonials .texti-box .profile-wrapper .profile-name-wrapper {
  font-size: 15px;
  margin-top: 0;
  text-transform: uppercase;
  color: var(--theme-green);
  font-weight: 700;
}

.testimonials .texti-box .profile-wrapper .texti-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.testimonials .texti-box .profile-wrapper .texti-img-wrap img {
  max-width: 100px;
  border-radius: 47%;
}

.testimonials button.owl-prev {
  position: absolute;
  left: -70px;
  top: 50%;
}

.testimonials button.owl-prev span {
  font-size: 62px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 50px;
  height: 50px;
  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;
  padding-bottom: 5px;
  border-radius: 50px;
}

.testimonials button.owl-prev span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.testimonials button.owl-next {
  position: absolute;
  right: -70px;
  top: 50%;
}

.testimonials button.owl-next span {
  font-size: 62px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 50px;
  height: 50px;
  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;
  padding-bottom: 5px;
  border-radius: 50px;
}

.testimonials button.owl-next span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}

footer {
  padding: 4rem 0 0;
  color: #fff;
  background-color: #000;
  background-image: linear-gradient(43deg, #000000ed, #000000ed), url(img/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

footer * {
  color: inherit;
}

footer h4 {
  font-weight: 600;
  line-height: 2;
}

footer .news-letter-wrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .news-letter-wrapper input {
  color: #252525;
  line-height: 22px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  padding: 10px;
  border: 0;
}

footer .news-letter-wrapper input[type=submit] {
  background-color: var(--theme-green);
  color: #fff;
  font-weight: 600;
}

footer .ftr-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

footer .ftr-wrapper p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #de232a;
}

footer .f-nav ul li {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .f-nav ul li:before {
  content: "\f101";
  font-family: fontawesome;
  padding-right: 8px;
}

footer .f-nav ul li:hover {
  margin-left: 3px;
  color: var(--theme-green);
}

footer .footer-btn {
  border-top: solid 1px #404040;
}

footer .footer-socials {
  padding-top: 25px;
}

footer .footer-socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer-socials ul li {
  padding-right: 15px;
}

.about-popup-video {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
  z-index: 5;
  display: none;
}

.about-popup-video .popup-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 30px;
  color: var(--theme-green);
  cursor: pointer;
}

.body-overlay {
  width: 100vw;
  height: 100vh;
  background-color: #000000d9;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 4;
  display: none;
}

.galary-section h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 2;
  color: var(--dark-blue);
}

.galary-section .lightbox-wrapper {
  border: solid 1px #ddd;
  margin-bottom: 20px;
}

.galary-section .lightbox-wrapper img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.galary-section .lightbox-wrapper img:hover {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.galary-section img {
  width: 100%;
}

.recent-projects .pro-boxes-wrapper {
  background-image: linear-gradient(45deg, #ffffff6b, #ffffff6b), url(img/project-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.recent-projects h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 800;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--dark-blue);
}

.recent-projects .pro-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 6%;
}

.recent-projects .pro-content-wrapper h4 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--theme-green);
  text-transform: capitalize;
}

.clients-section h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 800;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--dark-blue);
}

.clients-section .client-page-box {
  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;
  height: 212px;
  width: 216px;
  border: solid 0.3px #dddddda6;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}

.clients-section .client-page-box:hover {
  border: solid 1px #838383;
}

.clients-section .client-page-box img {
  max-width: 150px;
}

.clients-section .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: unset;
}

.clients-section button.owl-prev {
  position: absolute;
  left: -70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.clients-section button.owl-prev span {
  font-size: 40px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 40px;
  height: 40px;
  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;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}

.clients-section button.owl-prev span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.clients-section button.owl-next {
  position: absolute;
  right: -70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.clients-section button.owl-next span {
  font-size: 40px;
  border: solid 3px #ddd;
  font-weight: 200;
  width: 40px;
  height: 40px;
  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;
  padding-bottom: 2px;
  border-radius: 50px;
  padding-left: 1px;
  border-radius: 50px;
}

.clients-section button.owl-next span:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

#breadcrumbBG {
  width: 100%;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-bottom: solid 1px #ddd;
}

#breadcrumbBG .brdlists {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#breadcrumbBG .brdlists h1 {
  color: var(--theme-color-2);
  font-weight: 500;
}

#breadcrumbBG .brdlists ul {
  -webkit-box-shadow: 0px 0px 6px -3px;
          box-shadow: 0px 0px 6px -3px;
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  position: relative;
  z-index: 4;
  margin-bottom: 0;
}

#breadcrumbBG .brdlists ul li {
  list-style: none;
  display: inline-block;
  margin: 0;
  color: #000;
  position: relative;
  font-weight: 400;
  padding: 0 20px 0 15px;
}

#breadcrumbBG .brdlists ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--theme-color-2);
  position: absolute;
  border-radius: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#breadcrumbBG .brdlists ul li:last-child:after {
  display: none;
}

#breadcrumbBG .brdlists ul li:first-child:before {
  content: '\f015';
  font-family: fontawesome;
  padding-right: 7px;
  font-size: 15px;
}

#breadcrumbBG .brdlists ul li a {
  color: #000;
  text-decoration: none;
}

#breadcrumbBG .brdlists ul .fa {
  color: var(--theme-color-2);
  display: none;
}

.common-heading {
  font-weight: 800;
  line-height: 2;
  color: var(--dark-blue);
}

.common-heading-center {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 800;
  line-height: 2;
  color: var(--dark-blue);
}

.common-space {
  padding: 60px 0;
}

.gallery-page img {
  border: solid 1px #ddd;
  padding: 7px;
  background-color: #ddd;
}

.contact-page .conatact-page-info-wrapper {
  background-color: #242424;
  border-radius: 17px;
  color: #fff;
  padding: 50px 41px;
  position: relative;
  overflow: hidden;
}

.contact-page .conatact-page-info-wrapper .info-box a {
  margin-bottom: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-page .conatact-page-info-wrapper .info-content {
  border-radius: 0 0 15px 14px;
  padding: 20px 0;
}

.contact-page .conatact-page-info-wrapper p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  color: #fff;
}

.contact-page .conatact-page-info-wrapper a {
  color: #fff;
}

.contact-page .conatact-page-info-wrapper i {
  color: #fff;
  padding-right: 5px;
}

.contact-page .conatact-page-info-wrapper .social-media a {
  font-size: 27px;
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact-page .conatact-page-info-wrapper .social-media a a {
  margin-right: 19px;
}

.contact-page .conatact-page-info-wrapper .social-media a:nth-child(1) i {
  color: #1877f2;
}

.contact-page .conatact-page-info-wrapper .social-media a:nth-child(2) i {
  background: -webkit-linear-gradient(#ff2f2f, #fb7f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-page .conatact-page-info-wrapper .social-media a:nth-child(3) i {
  color: #1da1f2;
}

.contact-page .conatact-page-info-wrapper .social-media a:nth-child(4) i {
  color: #ff0000;
}

.contact-page .form-wrapper {
  float: right;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 19px -12px #000;
          box-shadow: 0px 0px 19px -12px #000;
  border-radius: 5px;
  padding: 50px 35px;
}

.contact-page .form-wrapper input {
  line-height: 50px;
  height: 50px;
  padding: 15px;
  font-size: 14px;
  border: 0;
  margin-bottom: 15px;
  width: 100%;
  border: solid 1px #00000024;
}

.contact-page .form-wrapper input:focus-visible {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #000;
  color: #fff;
}

.contact-page .form-wrapper textarea {
  padding: 15px;
  font-size: 14px;
  border: 0;
  margin-bottom: 11px;
  width: 100%;
  height: 150px;
  border: solid 1px #00000024;
}

.contact-page .form-wrapper textarea:focus-visible {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #000;
  color: #fff;
}

.contact-page .form-wrapper button[type=submit] {
  line-height: 45px;
  height: 45px;
  font-size: 14px;
  border: 0;
  margin-bottom: 11px;
  width: 100%;
  background-color: var(--theme-green);
  cursor: pointer;
  border: solid 1px transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 0px 15px;
}

.contact-page .form-wrapper button[type=submit]:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #000;
  color: #fff;
}

.contact-page .form-wrapper .get-in-touch {
  padding: 15px 0px;
  font-size: 25px;
  margin-bottom: 28px;
  position: relative;
}

.contact-page .form-wrapper .get-in-touch:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 25px;
  height: 25px;
  border-top: solid 16px #000;
  border-bottom: solid 14px transparent;
  border-left: solid 14px transparent;
  border-right: solid 14px transparent;
  background-color: transparent;
  display: none;
}

.ab-img img {
  border: solid 1px #ddd;
  padding: 7px;
  background-color: #ddd;
}

ul.style-list li:before {
  content: "\f00c";
  font-family: fontawesome;
  color: var(--theme-green);
  padding-right: 5px;
}

.services .indus-cards {
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  border: solid 1px #ddd;
}

.services .indus-cards * {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.services .indus-cards:hover {
  background-color: var(--theme-green);
  border-color: transparent;
}

.services .indus-cards:hover * {
  color: #fff;
}

.services .indus-cards:hover .ind-img-wrapper img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.services .indus-cards:hover .see-more-btn a {
  border-color: #fff;
}

.services .indus-cards:hover .see-more-btn a i {
  color: inherit;
}

.services .indus-cards .ind-img-wrapper {
  overflow: hidden;
}

.services .indus-cards .ind-img-wrapper img {
  width: 100%;
  max-height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.services .indus-cards .indus-card-cotent {
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #454545;
  padding: 20px 12px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.services .indus-cards .indus-card-cotent h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 17px;
  line-height: 1.7;
}

.services .indus-cards .indus-card-cotent p {
  line-height: 1.6;
  margin: 20px 0;
}

.services .indus-cards .see-more-btn {
  font-weight: 700;
  text-transform: uppercase;
  color: #454545;
}

.services .indus-cards .see-more-btn a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: solid 1px var(--theme-green);
  padding: 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.services .indus-cards .see-more-btn a i {
  color: var(--theme-green);
  padding-left: 6px;
  font-size: 13px;
}

.services .indus-cards .see-more-btn a:hover {
  margin-left: 5px;
}
/*# sourceMappingURL=style.css.map */