@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --green: #529569;
  --white: #ffffff;
  --darkgray: #0b0d0b;
  --midkgray: #2c2c2c;
  --lightgray: #f7f8ff;
  --neon: #c1fe08;
}

/*-----------default-css-----------*/
::selection {
  background: var(--green);
  color: var(--white);
}
* {
  box-sizing: border-box;
  font-family: "Funnel Sans";
}
body {
  background: #fff;
  font-weight: 400;
  color: #0b0d0b;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-family: "Funnel Sans", sans-serif;
  margin-top: 140px;
}
a {
  color: #0b0d0b;
  letter-spacing: -0.2px;
  font-weight: 100;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #529569;
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  letter-spacing: -0.2px;
  font-weight: 100;
}
h1,
.h1 {
  font-size: 56px;
  font-weight: 400;
  margin: 0 0 20px;
  text-transform: none;
  line-height: 60px;
  letter-spacing: -3px;
  color: var(--darkgray);
}
h2,
.h2 {
  font-size: 50px;
  font-weight: 400;
  margin: 0 0 20px;
  text-transform: none;
  line-height: 60px;
  letter-spacing: -3px;
  color: var(--darkgray);
}
h3,
.h3 {
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 30px;
  text-transform: none;
  letter-spacing: -1px;
  color: var(--darkgray);
}
h4,
.h4 {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
  letter-spacing: -0.4px;
  color: var(--darkgray);
}
h5,
.h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
  letter-spacing: -0.4px;
  color: var(--darkgray);
}
p {
  font-size: 16px;
  margin: 0 0 30px;
  line-height: 26px;
  color: #000;
  letter-spacing: -0.2px;
  font-weight: 100;
}
p a {
  color: #529569;
}
p a:hover {
  color: #000;
}

.graybg {
  background: var(--lightgray) !important;
}

.whitebg {
  background: var(--white) !important;
}
.greenbg {
  background: var(--green) !important;
}
.greenbg h2,
.greenbg p,
.greenbg li {
  color: var(--white);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}
.warpper {
  display: flex;
  justify-content: space-between;
}
ul {
  margin: 0 0 30px;
  padding: 0;
  letter-spacing: -0.2px;
  font-weight: 100;
}

a.btn {
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border 0.3s, color 0.3s;
  display: flex;
  padding: 13px 16px 13px 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  width: 100%;
  max-width: max-content;
  border: 1px solid transparent;
  letter-spacing: -0.5px;
}
button .btn-arrow,
a.btn .btn-arrow {
  filter: brightness(100);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}
button:hover,
a.btn:hover {
  background: var(--darkgray);
  transition: background 0.3s, border 0.3s, color 0.3s;
  border: 1px solid var(--white);
}
button:hover .btn-arrow,
a.btn:hover .btn-arrow {
  transform: rotate(45deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}

a.link {
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border 0.3s, color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  width: 100%;
  max-width: max-content;
  letter-spacing: -0.2px;
}
a.link .btn-arrow {
  width: 30px !important;
  filter: brightness(100);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}
a.link:hover {
  transition: background 0.3s, border 0.3s, color 0.3s;
}
a.link:hover .btn-arrow {
  transform: rotate(45deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}

section {
  padding: 118px 0;
}

.list ul {
  padding-left: 20px;
}
.list ul li {
  position: relative;
  font-size: 16px;
  color: var(--darkgray);
}

.list ul li:before {
  position: relative;
  content: "";
  display: inline-block;
  top: -3px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  border: 2px solid var(--green);
  left: -5px;
  font-size: 16px;
  color: var(--green);
}

.list-2 ul {
}
.list-2 ul li {
  position: relative;
  font-size: 16px;
  padding-left: 22px;
  line-height: 25px;
  margin-bottom: 8px;
  font-weight: 300;
  color: var(--darkgray);
}
.list-2 ul li:after {
  content: "";
  background: url(../img/check.svg) no-repeat;
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: 10px;
  background-size: 12px;
}
.list-2 ul li a {
  color: var(--green);
  @include transition();
  font-weight: bold;
}
.list-2 ul li a:hover {
  @include transition();
  color: var(--green);
}

.list3 ul {
  padding-left: 20px;
}
.list3 ul li {
  position: relative;
  font-size: 16px;
  color: var(--darkgray);
}

.list3 ul li:before {
  position: relative;
  content: "";
  display: inline-block;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  left: -5px;
  font-size: 16px;
}

.sticky_sec{
    align-items: self-start;
}
.sticky_sec .sticky_block{
    position: sticky;
    top: 100px;
}

/*-----------------------------home-bannner------------------------*/
.home-bannner {
  position: relative;
  background: var(--lightgray);
}
.home-bannner .wraper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.home-bannner .wraper .text {
  width: 50%;
  padding: 100px 30px 100px 0;
}
.home-bannner .wraper .text h1 {
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  color: #0b0d0b;
  letter-spacing: -3.3px;
  margin-bottom: 30px;
}
.home-bannner .wraper .text h3 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -2.4px;
  margin-bottom: 34px;
}
.home-bannner .wraper .text p {
  font-size: 18px;
  font-weight: 100;
  margin: 0 0 40px;
  letter-spacing: -0.45px;
}
.home-bannner .wraper .imgtext {
  width: 100%;
  position: relative;
  max-width: 635px;
}
.home-bannner .wraper .imgtext img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 86% 80%;
}
.home-bannner .wraper .imgtext .overtext {
  position: absolute;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5578825280112045) 32%,
    rgba(0, 0, 0, 0.011664040616246485) 100%
  );
  bottom: 0;
  left: 0;
  align-content: end;
  padding: 50px 40px;
  width: 100%;
}
.home-bannner .wraper .imgtext .overtext h2 {
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
  width: 65%;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2.1px;
}
.home-bannner .wraper .imgtext .overtext .link {
  color: #fff;
  text-decoration: underline;
  letter-spacing: -0.7px;
  margin-bottom: -3px;
}
.home-bannner .wraper .imgtext .imggroup {
  position: absolute;
  width: 137px;
  top: 5%;
  right: 27px;
}

/*-------------------------welcome-sec-------------*/
.welcome-sec {
  background: var(--green);
  padding: 100px 0 91px;
  position: relative;
}
.welcome-sec:before {
  position: absolute;
  content: "";
  top: -100px;
  left: 0;
  width: 220px;
  height: 330px;
  background: url(../img/shape-1.png) no-repeat;
  background-size: 160px;
  background-position: 0 0;
}

.welcome-sec:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0;
  width: 400px;
  height: 400px;
  background: #c2c2c21a;
  border-radius: 0 0 0 100%;
}

.welcome-sec .heading {
  max-width: 84%;
}
.welcome-sec .heading h2 {
  color: var(--white);
  font-size: 32px;
  line-height: 44px;
  font-weight: 100;
  letter-spacing: -1px;
}
.welcome-sec .heading h2 a {
  color: var(--neon);
  border-bottom: 1px solid var(--neon);
  text-decoration: none;
}

.welcome-sec .main-conatent {
  padding: 50px 0 20px;
}
.welcome-sec .main-conatent .flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.welcome-sec .main-conatent .flex-row .flex-box {
  width: 30.1%;
  border-bottom: 1px solid #ffffff33;
  padding: 37px 65px;
  border-right: 1px solid #ffffff33;
}
.welcome-sec .main-conatent .flex-row .flex-box:nth-child(2) {
  border-right: 0;
  border-bottom: 1px solid #ffffff33 !important;
}
.welcome-sec .main-conatent .flex-row .flex-box:nth-child(4) {
  width: 38.1%;
}
.welcome-sec .main-conatent .flex-row .flex-box:nth-child(1n + 2) {
  border-bottom: 0;
}
.welcome-sec .main-conatent .flex-row .flex-box:last-child {
  border-right: 0;
  /*border-top: 1px solid #FFFFFF33;*/
}
.welcome-sec .main-conatent .flex-row .flex-box.big-box {
  padding: 30px 81px;
  width: 68.2%;
}
.welcome-sec .main-conatent .flex-row .flex-box.big-box .flex-title {
  font-size: 90px;
}
.welcome-sec .main-conatent .flex-row .flex-box.big-box small {
  display: inline !important;
  width: auto !important;
  margin-bottom: 8px;
  margin-left: 20px;
  letter-spacing: -0.5px !important;
}
.welcome-sec .main-conatent .flex-row .flex-box.big-box span {
  font-size: 50px !important;
}
.welcome-sec .main-conatent .flex-row .flex-box .flex-title {
  font-size: 50px;
  color: var(--white);
  display: flex;
  align-items: end;
  line-height: 1;
  gap: 10px;
  flex-wrap: wrap;
}
.welcome-sec .main-conatent .flex-row .flex-box .flex-title .mobshow {
  display: none;
}
.welcome-sec .main-conatent .flex-row .flex-box .flex-title span {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 6px;
  letter-spacing: -3px;
}
.welcome-sec .main-conatent .flex-row .flex-box .flex-title small {
  font-size: 18px;
  display: block;
  width: 100%;
  font-weight: 100;
  letter-spacing: -0.45px;
}

/*---------------------WhatWeDo-sec------------------*/

.WhatWeDo-sec {
  text-align: center;
  position: relative;
  padding-bottom: 0;
  padding: 120px 0 100px;
}
.WhatWeDo-sec h2 {
  margin: 0 0 70px;
}
.WhatWeDo-sec:before {
  position: absolute;
  content: "";
  top: 00px;
  right: 0;
  width: 250px;
  height: 200px;
  background: url(../img/shape-2.png) no-repeat;
  background-size: 100%;
  background-position: 0 0;
}

.border_block {
  display: flex;
  justify-content: space-between;
}
.border_block .blockBox {
  width: 26%;
  padding: 0 30px 0 22px;
  border-left: 1px solid var(--green);
  text-align: left;
}
.border_block .blockBox:last-child {
  padding-right: 0;
  width: 18%;
}
.border_block .blockBox h4 {
  margin: 0 0 7px;
  color: #0b0d0b;
  font-size: 22px;
  line-height: 50px;
  letter-spacing: -0.8px;
}
.border_block .blockBox ul {
  padding-left: 6px;
  margin: 0;
}
.border_block .blockBox ul li {
  margin: 0 0 7px;
  color: #616964;
}
.border_block .blockBox ul a {
  text-decoration: none;
  color: #616964;
}
.border_block .blockBox ul a:hover {
  color: var(--green);
}

.img-slider {
  margin: 46px 0 0;
}
.img-slider .item img {
  height: 405px;
  width: 100%;
  object-fit: cover;
}
.img-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slider .owl-dots button {
  width: 5px;
  height: 5px;
  left: 0;
  right: 0;
  background: var(--white) !important;
  margin: 0 3px !important;
  border-radius: 50%;
}
.img-slider .owl-dots button.active {
  background: var(--green) !important;
  width: 8px;
  height: 8px;
}

.BuildingMaintenance {
  position: relative;
  padding-top: 0;
}
.BuildingMaintenance .wraper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.BuildingMaintenance .BuildingLeft {
  width: 29%;
  position: sticky !important;
  top: 110px;
}
.BuildingMaintenance .BuildingLeft h2 {
  letter-spacing: -3px;
  margin-bottom: 23px;
}
.BuildingMaintenance .BuildingRight {
  width: 66%;
}
.ServiceList {
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  font-size: 22px;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-top: -60px;
  padding-right: 10px;
  transition: linear 0.3s, transform 0.3s;
}
.ServiceList a {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 72px 0 20px;
  letter-spacing: -0.7px;
}
.ServiceList:hover a {
  color: var(--green);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.ServiceList span {
  position: relative;
  bottom: 20px;
  width: auto;
}
.ServiceList span:after {
  position: absolute;
  display: block;
  content: "";
  width: 200%;
  height: 1px;
  background: var(--green);
  bottom: 0px;
  transition: 0.3s ease-in-out;
  transition-delay: 0.2s;
  opacity: 0;
}
/*.ServiceList:hover hr{
    width: 0%;
    opacity: 1;
    transition: width .3s linear;
}*/
.ServiceList:hover span:after {
  transition: 0.3s ease-in-out;
  width: 100%;
  opacity: 1;
  transition-delay: 0.2s;
}
.ServiceList .img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translate(70%, 100%);
  transition: linear 0.7s, transform 0.3s;
  width: 220px;
}

.ServiceList:hover .img {
  transform: translate(70%, -30%);
  height: auto;
  transition: linear 0.8s, transform 0.3s;
  cursor: pointer;
  top: 32%;
}

.ServiceList a .arrow {
  width: 60px;
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
  transform: rotate(-45deg);
  filter: brightness(0);
}

.ServiceList:hover a .arrow {
  transform: rotate(0deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
  filter: none;
}

/*-----------------------IndustriesWeWork------------------*/
.IndustriesWeWork {
  position: relative;
  text-align: center;
  background: var(--lightgray);
  padding-top: 112px;
}
.IndustriesWeWork h2 {
  margin: 0 0 50px;
}
.IndustriesWeWork:after {
  position: absolute;
  content: "";
  top: -190px;
  left: -240px;
  width: 400px;
  height: 400px;
  background: #ddd;
  border-radius: 50%;
  opacity: 0.3;
  transform: scale(1.4);
}
.IndustriesWeWork .main-conatent {
  max-width: 1300px;
  margin: 30px auto 40px;
}
.IndustriesWeWork .flex-container {
  position: relative;
  display: flex;
  transition: linear 0.3s;
  column-gap: 1px;
}
.IndustriesWeWork .flex-slide {
  position: relative;
  display: flex;
  align-content: flex-end;
  overflow: hidden;
  width: 25%;
  transition: linear 0.3s;
  height: 504px;
}
.IndustriesWeWork .flex-slide:hover,
.IndustriesWeWork .flex-slide.active {
  width: 72%;
  transition: linear 0.3s;
}
.IndustriesWeWork .flex-slide:hover .flex-title,
.IndustriesWeWork .flex-slide.active .flex-title {
  font-size: 40px;
  padding: 30px 50px 35px;
  transition: linear 0.3s;
  letter-spacing: -2px;
}
.IndustriesWeWork .flex-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: linear 0.3s;
}
.IndustriesWeWork .flex-slide .flex-title {
  position: absolute;
  height: 60%;
  width: 100%;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
  background: rgb(0, 0, 0);
  transition: linear 0.3s;
  align-content: flex-end;
  color: #fff;
  text-align: left;
  padding: 30px 19px 37px;

  bottom: 0;
  font-family: "Funnel Sans";
  letter-spacing: -0.9px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5578825280112045) 32%,
    rgba(0, 0, 0, 0.011664040616246485) 100%
  );
}
.IndustriesWeWork .WorkBottom {
  text-align: center;
}
.IndustriesWeWork .WorkBottom h3 {
  letter-spacing: -2.2px;
  margin-bottom: 25px;
}
.IndustriesWeWork .WorkBottom .btn {
  display: inline-flex;
  padding: 13px 24px 13px 22px;
  letter-spacing: -1px;
}

/*-----------------TrustedExperienced-----------------*/

.TrustedExperienced {
  background: url(../img/trusted-bg.webp) no-repeat;
  position: relative;
  background-size: cover;
  background-position: 80% 70%;
  padding-top: 100px;
  padding-bottom: 65px;
}

.TrustedExperienced:after {
  position: absolute;
  content: "";
  top: 00px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3c965b;
  background-position: 50 50%;
  opacity: 0.8;
}
.TrustedExperienced .content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 870px;
  margin: 0 auto 50px;
}
.TrustedExperienced .content h2 {
  margin-bottom: 15px;
}
.TrustedExperienced .content h2,
.TrustedExperienced .content p {
  color: var(--white);
}
.TrustedExperienced .content p {
  font-size: 18px;
  font-weight: 100;
  letter-spacing: -0.43px;
  max-width: auto;
  margin: 0 auto;
}
.TrustedExperienced .TrustedLogos {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.TrustedExperienced .TrustedLogos ul {
  display: flex;
  justify-content: center;
  column-gap: 32px;
}

/*-------------------Quality_Guarantee----------------*/
.Quality_Guarantee {
  position: relative;
  text-align: center;
  background: var(--lightgray);
  padding-bottom: 120px;
}
.Quality_Guarantee h2 {
  margin: 0 0 40px;
}
.Quality_Guarantee .border_block {
  margin: 0 0 70px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.Quality_Guarantee .border_block h4 {
  font-size: 22px;
  text-transform: none;
  letter-spacing: -1px;
}
.Quality_Guarantee .border_block p {
  color: #616964;
  margin: 0;
  min-height: 130px;
}
.Quality_Guarantee .inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 1px;
}
.Quality_Guarantee .border_block .blockBox {
  padding: 0 18px 0 28px;
  width: 342px;
  display: inline-block;
}
.Quality_Guarantee .border_block .blockBox:last-child {
  padding-right: 0;
  width: 262px;
}
.Quality_Guarantee .inner .GuaranteeBox {
  position: relative;
  display: flex;
  align-content: flex-end;
  overflow: hidden;
  min-height: 505px;
  height: 100%;
  width: 50%;
}
.Quality_Guarantee .inner .GuaranteeBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.Quality_Guarantee .inner .GuaranteeBox .content {
  position: relative;
  height: auto;
  width: 100%;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  text-align: left;
  padding: 50px 57px 30px;
  top: 0;
  background: linear-gradient(
    0deg,
    #000000cf 0%,
    rgba(0, 0, 0, 0.5578825280112045) 20%,
    rgb(0 0 0 / 16%) 90%
  );
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}
.Quality_Guarantee .inner .GuaranteeBox .content h3 {
  margin: 0;
  color: var(--white);
  letter-spacing: -2px;
}
.Quality_Guarantee .inner .GuaranteeBox .content ul {
  margin: 0;
  padding-left: 7px;
}
.Quality_Guarantee .inner .GuaranteeBox .content ul li {
  color: var(--white);
  margin: 0 0 20px;
  font-size: 22px;
  letter-spacing: -0.7px;
  line-height: 25px;
}
.Quality_Guarantee .inner .GuaranteeBox .content ul li:before {
  background: var(--neon);
  width: 7px;
  height: 7px;
  border: none;
  top: -3px;
}

/*--------------------Home_hire------------*/
.Home_hire {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-bottom: 6px;
}
.Home_hire h2 span {
  color: var(--green);
}
.Home_hire .hire_wrapper {
  display: flex;
  height: 500px;
}
.Home_hire .hire_content {
  width: 50%;
  padding: 133px 150px 100px 0;
}
.Home_hire .hire_content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 50px;
  text-transform: none;
  letter-spacing: -2.3px;
}
.Home_hire .hire_image {
  width: 50%;
  position: relative;
  height: 506px;
}
.Home_hire .hire_image img {
  display: block;
  bottom: 0;
  object-fit: cover;
  object-position: -19px 23%;
  position: absolute;
  left: 0;
  width: 60vw;
  max-width: 1030px;
  height: 100%;
  z-index: 1;
}

/*--------------------------------------------inner pages------------------------------------------------------------------*/

/*---------------breadcrumb---------------*/
.breadcrumb_sec {
  padding: 0;
}
.breadcrumb_sec ul {
  margin: 0;
}
.breadcrumb_sec .breadcrumb {
  background: var(--white);
}
.breadcrumb_sec .breadcrumb li {
  color: var(--darkgray);
  display: inline-block;
  margin-right: 21px;
  font-size: 14px;
  font-weight: 100;
  position: relative;
  line-height: 40px;
  letter-spacing: -0.5px;
}
.breadcrumb_sec .breadcrumb li a {
  color: #a3a3a3 !important;
  text-decoration: none;
}
.breadcrumb_sec .breadcrumb li:after {
  position: absolute;
  content: "|";
  font-size: 15px;
  color: #a3a3a3 !important;
  right: -14px !important;
  top: 0px;
}
.breadcrumb_sec .breadcrumb li:last-child::after {
  display: none;
}

/*---------------End breadcrumb---------------*/

/*--------------------------------------------/ inner pages------------------------------------------------------------------*/

.team-sec {
}
.overlayteam {
  background: #0009;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  z-index: 9999;
}
.overlayteam.is-on {
  opacity: 1;
  visibility: visible;
}
.overlayteam.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlayteam .content {
  background: #fff;
  position: absolute;
  top: -50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1170px;
  height: 100%;
  max-height: 600px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlayteam .content .wrap {
  display: flex;
  justify-content: space-between;
  background: #fff;
}
.overlayteam .content .wrap .img-box {
  width: 500px;
  height: 600px;
  display: flex;
}
.overlayteam .content .wrap .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlayteam .content .wrap .text-box {
  padding: 50px;
  width: 60%;
  overflow: auto;
}
.overlayteam .content .wrap .text-box h2 {
  margin: 0 0 40px;
}
.overlayteam .content .wrap .text-box h2 span {
  font-size: 20px;
  font-weight: 100;
  color: #3d7b8e;
  display: block;
  letter-spacing: normal;
}
.overlayteam .dtlbx ul {
  margin: 0;
}
.overlayteam .dtlbx ul li {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  grid-gap: 20px;
}
#close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 15px;
  color: #999;
  cursor: pointer;
}

/*--------about-page-------*/
.about-bannner {
  background: url(../img/about-bg.jpg) no-repeat;
  background-size: 100%;
  background-position: 80% 100%;
}
.about-bannner .wraper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-bannner .wraper .text {
  width: 38%;
  padding: 67px 10px 70px 0;
}
.about-bannner .wraper .text h1 {
  font-weight: 400;
  font-size: 50px;
  margin: 0 0 38px;
  padding-right: 40px;
}
.about-bannner .wraper .text p {
  font-size: 18px;
  color: #0b0d0b;
  letter-spacing: -0.5px;
  line-height: 25px;
}
.about-bannner .wraper .text p span {
  font-size: 20px;
}
.about-bannner .wraper .text p a,
.about-bannner .wraper .text p span {
  color: var(--green);
}
.about-bannner .wraper .text a.btn {
  margin: 40px 0 0;
}
.about-bannner .righttext {
  width: 100%;
  max-width: 572px;
}
.about-bannner .righttext .flex-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-bannner .righttext .flex-row .flex-box {
  background: #ffffffbd;
  padding: 30px;
  height: 152px;
  width: 282px;
  /*  display: flex;
  align-items: center;*/
  margin: 0 0 7px;
  box-shadow: 0 0 10px 0 #0001;
  filter: blur(1);
}
.about-bannner .righttext .flex-row .flex-box .flex-title {
  display: flex;
  flex-wrap: wrap;
}
.about-bannner .righttext .flex-row .flex-box .flex-title .num {
  font-size: 50px;
  color: var(--green);
  line-height: 50px;
  letter-spacing: -2.5px;
  margin: 0 0 10px;
  position: relative;
}
.about-bannner .righttext .flex-row .flex-box .flex-title .num:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 2px;
  left: -30px;
  top: 10px;
  background: var(--neon);
}
.about-bannner .righttext .flex-row .flex-box .flex-title span {
  font-size: 30px;
  font-weight: 500;
  color: var(--green);
  margin-left: 7px;
  position: relative;
  bottom: -7px;
}
.about-bannner .righttext .flex-row .flex-box .flex-title small {
  font-size: 18px;
  display: block;
  width: 90%;
  line-height: 1.2;
  font-weight: 100;
  color: var(--darkgray);
  letter-spacing: -0.7px;
}

.page-id-183 .TrustedExperienced.v2 p {
  display: none;
}

.page-id-183 .Quality_Guarantee .border_block {
  margin: 0 0 86px;
}
.page-id-183 .Quality_Guarantee .border_block .blockBox {
  width: 334px;
  padding: 0 60px 0 26px;
}
.page-id-183 .Quality_Guarantee .inner .GuaranteeBox {
  min-height: 504px;
}
.page-id-183 .Quality_Guarantee .border_block .blockBox:last-child {
  padding-right: 0;
  width: 269px;
}
.page-id-183 .Quality_Guarantee .border_block .blockBox h4 {
  /*letter-spacing: 0;*/
}
.page-id-183 .Quality_Guarantee .border_block .blockBox p {
  line-height: 23px;
}

.TrustedExperienced.v2 {
  padding: 60px 0 55px;
  background: var(--green);
  overflow: hidden;
}
.TrustedExperienced.v2 h2 {
  margin: 0 0 40px;
}
.TrustedExperienced.v2:before {
  position: absolute;
  width: 600px;
  content: "";
  height: 570px;
  background: #fff;
  opacity: 0.1;
  border-radius: 0 13% 73% 0;
  top: 0;
  left: 0;
  transform: translate(-20%, -24%);
}
.TrustedExperienced.v2:after {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0;
  width: 320px;
  height: 247px;
  background: url(../img/shap-3.png) no-repeat;
  background-size: 100%;
  background-position: 0px 50px;
  left: auto;
  top: auto;
}
.TrustedExperienced.v2 .TrustedLogos ul {
  margin: 0;
}

.team-sec {
  position: relative;
  padding-bottom: 120px;
}
.team-sec:after {
  position: absolute;
  content: "";
  width: 250px;
  height: 200px;
  background: url(../img/shap-4.png) no-repeat;
  background-size: 100%;
  background-position: 0px 0px;
  left: 0;
  top: 0;
}
.team-sec:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 200px;
  background: #52956908;
  border-radius: 0 100px 100px 0;
  left: 0;
  top: 70%;
}
.team-sec .top-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-sec .top-part .text {
  width: 47%;
  padding-top: 30px;
}
.team-sec .top-part .text p {
  font-size: 18px;
  font-weight: 100;
  letter-spacing: -0.5px;
}
.team-sec .top-part .text p span {
  color: var(--green);
}
.team-sec .top-part .text h2 {
}
.team-sec .top-part .img-box {
  width: 47%;
}
.team-sec .top-part .img-box img {
  width: 100%;
}
.team-row {
  display: flex;
  justify-content: start;
  gap: 2px;
  margin: 50px 0 0;
  flex-wrap: wrap;
}
.team-row .team-box {
  height: 360px;
  width: 24.8%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-content: flex-end;
}
.team-row .team-box a.show {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.team-row .team-box a:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgb(0 0 0 / 26%) 32%,
    rgba(0, 0, 0, 0.011664040616246485) 100%
  );
}
.team-row .team-box img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
}
.team-row .team-box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  align-content: flex-end;
  z-index: 1;
  width: 100%;
  padding: 30px 40px;
}
.team-row .team-box .text a {
  text-decoration: none;
}
.team-row .team-box h4 {
  font-size: 22px;
  color: var(--white);
  margin: 0;
}
.team-row .team-box span {
  color: #f0f0f0;
  font-size: 16px;
  font-weight: 100;
}

/*testimonial-sec*/
.testimonial-sec {
  position: relative;
  overflow: hidden;
}
.testimonial-sec:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: 300px;
  height: 300px;
  background: #c2c2c21a;
  border-radius: 0 0 100%;
  transform: scale(1.7);
}

.testimonial-sec:after {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0;
  width: 250px;
  height: 200px;
  background: url(../img/shap-3.png) no-repeat;
  background-size: 100%;
  background-position: 0px 10px;
  transform: scale(1.7);
}
.testimonial-sec .heading {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 0 auto 50px;
}
.testimonial-sec .heading p {
  font-size: 18px;
}

.testimonial-sec .testimonial-row {
  margin: 0 auto;
}

.testimonialbox {
  position: relative;
  background: var(--white);
  padding: 30px;
  width: 413px;
  height: 311px;
}

.testimonialbox .quote-ico {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px !important;
}

.testimonialbox .top {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}
.testimonialbox .top .img {
  width: 64px !important;
  height: 60px !important;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  background: #2d74f2;
  text-align: center;
  color: #fff;
  line-height: 60px;
  font-size: 25px;
}
.testimonialbox .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonialbox .top .name {
  width: calc(100% - 60px);
  margin-left: 25px;
  font-size: 16px;
  font-weight: 100;
}
.testimonialbox .top .name h4 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 600;
  color: #070707;
  line-height: 20px;
}
.testimonial-sec .star i {
  color: #fcc500;
}
.testimonialbox p {
  color: #070707;
  font-size: 18px;
  margin: 0;
  line-height: 24px;
}

.testimonial-sec .owl-carousel .owl-nav button {
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid var(--white) !important;
  padding: 10px;
  color: var(--white) !important;
  top: 35%;
  left: -81px;
  line-height: 20px !important;
}
.testimonial-sec .owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -82px;
}
.testimonial-sec .owl-carousel .owl-nav button:hover {
  background: var(--neon) !important;
  color: var(--green) !important;
  border: none !important;
}
.testimonial-sec .owl-carousel .owl-dots {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}
.testimonial-sec .owl-carousel .owl-dots button {
  width: 4px;
  height: 4px;
  border: 1px solid #fff !important;
  background: var(--green);
  border-radius: 50%;
  margin: 0 2px;
}
.testimonial-sec .owl-carousel .owl-dots button.active {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border: none !important;
}

.teamphotos {
  text-align: center;
  padding-bottom: 80px;
}
.teamphotos h2 {
  margin: 0 0 50px;
  letter-spacing: -2.5px;
}
.teamphotos .img-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 27px;
}
.teamphotos .img-row .img-box {
  display: flex;
  height: 344px;
  width: max-content;
}

/*--------about-page-------*/

/*--------------------Commercial-Painting page-----------*/

.Commercial-bannner {
  position: relative;
  background: var(--lightgray);
}
.Commercial-bannner .wraper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.Commercial-bannner .wraper .text {
  width: 50%;
  padding: 120px 30px 98px 0;
}
.Commercial-bannner .wraper .text h1 {
  font-weight: 400;
  font-size: 50px;
  letter-spacing: -3px;
  margin: 0 0 38px;
}
.Commercial-bannner .wraper .imgtext {
  width: max-content;
  position: relative;
}
.Commercial-bannner .wraper .imgtext .VideoBox {
  width: 603px;
  height: 606px;
  margin-right: 0;
  margin-left: auto;
}
.Commercial-bannner .wraper .imgtext .VideoBox .video_thumbnail {
  height: 100%;
  width: 100%;
}
.Commercial-bannner .wraper .text p {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}
.Commercial-bannner .wraper .text p span {
  color: var(--green);
  font-size: 20px;
}
.Commercial-bannner .wraper .imgtext img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-id-200 .TrustedExperienced.v2 .content p {
  display: none;
}
.Commercial-bannner .wraper .imgtext .overtext h2 {
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
  width: 70%;
  line-height: 1.1;
}
.Commercial-bannner .wraper .imgtext .overtext .link {
  color: #fff;
  text-decoration: underline;
}

/*-------paintServices--------*/
.paintServices {
  position: relative;
  padding: 0;
}

.paintServices p {
  font-size: 18px;
  font-weight: 100;
  color: #0b0d0b;
  margin: 0;
}
.paintServices p strong {
  font-size: 20px;
}
.paintServices .wrapper {
  display: flex;
  align-items: flex-start;
  background: var(--lightgray);
}
.paintServices .wrapper .Leftpart {
  width: 45.1%;
  background: var(--lightgray);
  position: sticky;
  top: 100px;
}
.paintServices .wrapper .Rightpart {
  width: 57%;
  background: var(--white);
}
.paintServices .wrapper .Rightpart h4 {
  margin: 0 0 47px;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -1.1px;
}
.paintServices .wrapper .Leftpart .text {
  max-width: 520px;
  padding: 100px 50px 90px 0px;
  margin-right: 0;
  margin-left: auto;
}
.paintServices .wrapper .Leftpart .text h2 {
  margin: 0 0 40px;
  letter-spacing: -2.7px;
  max-width: 500px;
}
.paintServices .wrapper .Leftpart .text p {
  width: 100%;
  letter-spacing: -0.4px;
}
.paintServices .wrapper .Rightpart .text {
  max-width: 790px;
  padding: 123px 0px 90px 105px;
}
.paintServices .wrapper .Rightpart .text ul {
  column-count: 2;
  margin: 0;
}
.paintServices .wrapper .Rightpart .text ul li {
  margin: 0 0 10px;
  font-size: 18px;
  padding-left: 25px;
  width: 98%;
}

.CommercialPainting {
  text-align: center;
  padding-top: 85px;
}

.CommercialPainting h2 {
  font-size: 40px;
  margin: 0 0 33px;
  letter-spacing: -2.2px;
}
.CommercialPainting .tab-sec {
  margin: 0 0 54px;
}
.tab-sec h2 {
  line-height: 1.3;
}
.tab-sec ul.tabs {
  margin: 0px 0 30px;
  padding: 0px;
  list-style: none;
}
.tab-sec ul.tabs li {
  background: none;
  color: #222;
  display: inline-block;
  padding: 9px 35px;
  cursor: pointer;
  border: 1px solid var(--darkgray);
  font-size: 20px;
  letter-spacing: -0.8px;
}

.tab-sec ul.tabs li.current {
  background: var(--green);
  color: var(--white);
  border-color: currentColor;
}

.tab-sec .tab-content {
  display: none;
}

.tab-sec .tab-content.current {
  display: inherit;
}

.tab-sec .flex-row .wraper {
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
}
.tab-sec .flex-row .wraper .text {
  position: sticky !important;
  top: 100px;
  width: 45%;
}
.tab-sec .flex-row.process-tab .wraper .text {
  position: unset !important;
  width: 43%;
}
.tab-sec .flex-row.process-tab .wraper .text p {
  margin: 0 0 28px;
  line-height: 25px;
}
.tab-sec .flex-row .wraper hr {
  height: 100vh;
  width: 2px;
  max-height: 600px;
}
.tab-sec .flex-row {
  padding: 47px 0 24px;
}
.tab-sec .flex-row:first-child {
  padding: 27px 0 58px;
}

.tab-sec .flex-row:last-child .text p {
  margin: 0 0 23px;
  line-height: 25px;
  letter-spacing: -0.7px;
}
.tab-sec .flex-row:last-child .text .btn {
  margin: 44px 0 0;
}
.tab-sec .flex-row:last-child .text {
  width: 46.5%;
}

.tab-sec .flex-row:last-child .VideoBox .video_thumbnail {
  width: 604px;
  height: 503px;
}

.tab-sec p {
  font-weight: 100;
  font-size: 18px;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}
.tab-sec p span {
  font-size: 20px;
  font-weight: 400;
}
.tab-sec p span,
.tab-sec p a {
  color: var(--green);
}
.tab-sec hr {
  border-color: #f7f8ff59;
}
.tab-sec .flex-row .wraper > div {
  width: 43%;
  position: unset !important;
  top: 0;
}
.tab-sec .flex-row .wraper .imgtext {
  width: 600px;
}

.tab-sec .process-tab h3 {
  font-size: 30px;
  letter-spacing: -1.1px;
}
.tab-sec .process-tab strong {
  font-weight: 500;
  font-size: 20px;
}
.tab-sec .process-tab .text ol {
  list-style: decimal;
  padding-left: 20px;
}
.tab-sec .process-tab .text ul li {
  font-size: 17px;
  margin: 0 0 11px;
  padding-left: 26px;
}
.tab-sec .process-tab .text ol li {
  font-size: 17px;
  margin: 0 0 9px;
  padding-left: 8px;
}
.tab-sec .process-tab .text ol li::marker {
  color: var(--green);
}
.tab-sec .process-tab .text ol li strong {
  color: var(--green);
  font-size: 18px;
}
.cta-sec {
  background: var(--darkgray);
  padding: 70px 40px;
  position: relative;
}
.cta-sec:before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 250px;
  height: 200px;
  background: url(../img/shap-5.png) no-repeat;
  background-size: 100%;
  background-position: 0px 50px;
}
.cta-sec:after {
  position: absolute;
  content: "";
  top: 0px;
  left: auto;
  right: 0;
  width: 330px;
  height: 200px;
  background: url(../img/shape-6.png) no-repeat;
  background-size: contain;
  background-position: 180px 0px;
}
.cta-sec .wrap {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.cta-sec .wrap .profile-img {
  margin: 0 auto 30px;
}
.cta-sec .wrap .profile-img.active {
  outline: 3px solid #000;
  outline-offset: -3px;
}
.cta-sec h2 {
  color: var(--white);
  margin: 0 0 30px;
  letter-spacing: -2px;
}
.cta-sec p {
  color: var(--white);
  font-size: 30px;
  font-weight: 100;
  margin: 0 0 40px;
  line-height: 1.3;
}

.cta-sec .btn {
  text-align: center;
  display: inline-flex;
}
.cta-sec .btn img {
  margin: 0;
}
.cta-sec.v2 {
  padding: 62px 40px;
}
.cta-sec.v2 .wrap {
  width: 80%;
}
.cta-sec.v2 .wrap h2 {
  font-size: 50px;
  letter-spacing: -2.8px;
}
.cta-sec.v2 .wrap p {
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 auto 45px;
  line-height: 33px;
}
.cta-sec.v2 .user-profile {
  margin: 0 auto 30px;
}

.user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  max-width: 180px;
  margin: 0 auto 20px;
}
.user-profile .profile-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  position: relative;
  margin: 0 -10px !important;
}
.user-profile .profile-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.user-profile .profile-img.active {
  /*border-color: var(--white);*/
  width: 80px !important;
  height: 80px !important;
  position: relative;
  z-index: 1;
}
.user-profile .profile-img.active img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-profile .profile-img.active:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 2px solid var(--green);
  width: 10px;
  height: 10px;
  background: var(--neon);
  bottom: 0;
  right: 12px;
}

.Customized {
  position: relative;
}
.Customized .wrapper .Leftpart .text {
  max-width: 528px;
  padding: 120px 50px 90px 7px;
}
.Customized:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0;
  width: 500px;
  height: 500px;
  background: #c2c2c21a;
  border-radius: 0 0 0 100%;
}
.Customized .Rightpart .text {
  max-width: 838px !important;
  padding-left: 103px !important;
  padding-top: 116px !important;
  padding-bottom: 74px !important;
}
.Customized .Rightpart .text h3 {
  margin-bottom: 42px;
  letter-spacing: -2px;
}
.Customized .Rightpart ul {
}
.Customized .Rightpart ul li {
  display: inline-block;
  border-left: 2px solid #cbd5e1;
  padding-left: 10px;
  margin: 0 0 30px !important;
  width: 82% !important;
}
.Customized .Rightpart ul li h4 {
  margin: 0 0 10px !important;
  font-size: 20px;
  font-size: 22px !important;
  color: var(--green);
}
.Customized .Rightpart ul li p {
  margin: 0;
  font-weight: 100;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 25px;
}
.Customized .wrapper .Leftpart p {
  margin: 0 0 30px !important;
  line-height: 26px;
  letter-spacing: -0.5px;
}

.faq-sec {
  position: relative;
}
.faq-sec h2 {
  margin: 0 0 40px;
}
.faq-sec .wraper {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.faq_page .wraper .faq_content a.btn2 .btn-arrow {
  filter: none;
}
.faq_page .faq_content .faqs-grid {
  margin-right: 30px;
  text-align: left;
}
.contact-page .faq-sec .faqs-content-inside p .link {
  margin: 30px 0 0px !important;
}

.faq-sec .faqs-item {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 22px 42px 22px 39px;
  display: block;
  border: 0;
  background: var(--white) !important;
  border-radius: 0px;
  cursor: pointer;
  text-align: left;
}

.faq-sec .faqs-title {
  display: flex;
  position: relative;
  color: var(--darkgray);
  background: var(--white) !important;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  padding: 0px;
  width: 100%;
  outline: none;
  transition: 0.4s;
  text-align: left;
}

.faq-sec .faqs-title:hover {
  color: var(--darkgray);
  background: var(--lightgray);
}

.faq-sec .faqs-title.active {
  color: var(--green);
  border-bottom: 1px solid #e7e7e7;
  padding: 0px 0 17px;
}

.faq-sec .faqs-title:after {
  content: "";
  background: url(../img/arrow-down-green.svg) no-repeat;
  width: 20px;
  height: 10px;
  display: block;
  background-position: 100% 0%;
  position: absolute;
  right: 0;
  top: 10px;
  background-size: 13px;
  transition: all 0.3s;
}
.faq-sec .faqs-title.active:after {
  transform: rotate(180deg);
  transition: all 0.3s;
  background-position: 0% 0%;
}

.faq-sec .faqs-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  box-shadow: none;
  padding: 0;
  transition: max-height 0.2s ease-out;
}
.faq-sec .faqs-content p {
  font-weight: 200;
}
.faq-sec .faqs-content .link {
  color: var(--black);
  text-decoration: underline;
}
.faq-sec .faqs-content .link:hover {
  color: var(--green);
}
.faq-sec .faqs-content .link .btn-arrow {
  filter: brightness();
}

.faq-sec .faqs-content p:last-child {
  margin: 0;
}

.faq-sec .faqs-content-inside {
  padding-top: 30px;
}
.faq-sec .faqs-content-inside p {
  line-height: 22px !important;
  font-size: 16px !important;
  margin: 0 0 10px;
}

.Typesof-sec {
  padding: 80px 0;
}
.Typesof-sec .wraper {
  display: flex;
  text-align: left;
  justify-content: space-between;
  margin: 0 0 50px;
}
/*.Typesof-sec .wraper > div{
       width: 48%;
} */
.Typesof-sec .wraper .imgtext {
  max-width: 600px;
  display: flex;
}
.Typesof-sec .wraper .imgtext img {
  width: 100%;
  height: 100%;
}
.Typesof-sec .wraper .text {
  max-width: 610px;
}
.Typesof-sec .wraper .text h2 {
  font-size: 50px;
  letter-spacing: -2px;
  margin: 0 0 40px;
}
.Typesof-sec .wraper .text p {
  font-size: 18px;
}
.Typesof-sec .wraper .text p strong {
  font-size: 20px;
}
.Typesof-sec .wraper .list-2 ul li {
  font-size: 18px;
}

/*-----------------------contact-page-----------------------*/
.contact-page {
  position: relative;
  padding: 32px 0;
}
.contact-page:before {
  position: absolute;
  content: "";
  top: 95px;
  left: -240px;
  width: 530px;
  height: 630px;
  background: #ddd;
  border-radius: 0 200% 200% 0;
  opacity: 0.3;
  z-index: 0;
  transform: scale(1.3);
}
.pageheading {
  background: url(../img/contact-header.png) no-repeat;
  padding: 60px 41px;
  height: 200px;
  display: flex;
  align-items: center;
}
.pageheading h1 {
  font-size: 46px;
  color: #0b0d0b;
  margin: 0;
  font-family: "Poppins";
}
.contact-page .wraper {
  display: flex;
  text-align: left;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  align-items: flex-start;
}
.contact-page .text h4 {
  color: var(--green);
  font-size: 30px;
  margin: 0 0 37px;
  letter-spacing: -0.99px;
  line-height: 22px;
}
.contact-page .text {
  padding-bottom: 50px;
}
.contact-page .text p {
  font-size: 18px;
  letter-spacing: 0.14px;
  line-height: 28px;
}
.contact-page .text .form-row p {
  margin: 0 0 0px;
}
[type="radio"] {
  position: relative;
  border: 1px solid #444;
  outline: none !important;
  background: none !important;
  margin: 0;
  width: 15px;
  height: 15px;
  top: 0px;
}
.form-row label span {
  padding-left: 7px;
  letter-spacing: -0.5px;
}
[type="radio"]:after {
  position: absolute;
  width: 13px;
  height: 13px;
  content: "";
  top: 1px;
  left: 1px;
  border-radius: 50%;
  display: block;
}
[type="radio"]:checked {
  color: var(--green);
}
[type="radio"]:checked:after {
  display: block;
  background: var(--green);
}

[type="radio"]:checked + span {
  color: var(--green);
}
.contact-page .text .form-row label {
  font-weight: 100;
  margin: 0 0 13px;
  display: block;
  font-size: 18px;
  line-height: 28px;
}

.contact-page .wraper .text {
  width: 100%;
  max-width: 562px;
}
.contact-page .wraper .text .text-box {
  width: 100%;
  padding: 60px 0;
}
.contact-page .wraper .righttext {
  width: 100%;
  position: sticky !important;
  top: 100px;
  max-width: 634px;
  margin-bottom: 47px;
}
.contact-page .contact-dtl {
  padding: 86px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.contact-page .contact-dtl .dtlbx ul {
  display: flex;
  justify-content: space-between;
}
.contact-page .contact-dtl .dtlbx ul li {
  position: relative;
  width: 50%;
}
.contact-page .contact-dtl .dtlbx ul li h5 {
  font-size: 22px;
  margin: 0 0 13px;
}
.contact-page .contact-dtl .dtlbx ul li span {
  display: flex;
  padding-left: 38px;
}
.contact-page .contact-dtl .dtlbx ul li img {
  position: absolute;
  left: 0;
}
.contact-page .contact-dtl .dtlbx ul li a {
  text-decoration: none;
  font-size: 18px;
}
.contact-page .social-icon {
  display: flex;
  margin: 0;
  padding: 16px 0 0;
}

.contact-page .social-icon li {
  padding-right: 10px;
}
.contact-page .social-icon li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
}
.social-icon li img {
  width: 20px;
  position: relative;
  filter: brightness(0);
}

.contact-page .faq-sec {
  padding: 82px 0 0;
  /*border-top: 1px solid #ddd; */
}
.contact-page .faq-sec h4 {
  color: var(--darkgray);
}

.contact-page .righttext .contact_area {
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 30px 14%;
  margin: 0 0 40px;
}
.contact-page .righttext .contact_area .gform_validation_errors,
.contact-page .righttext .contact_area .validation_message {
  display: none !important;
}
.contact-page .righttext .contact_area .gfield_error input {
  border: 1px solid #f00 !important;
}

.contact-page .gform-theme--foundation .gform_fields {
  grid-gap: 10px;
}
.contact-page
  .gform-theme--foundation
  .gform_fields
  .contact-page
  .righttext
  .contact_area
  .row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.contact-page .righttext .contact_area .row .half {
  width: 257px;
  margin: 0 0 5px;
}
.contact-page .righttext .contact_area select {
  background-color: #f9f9f9 !important;
  padding: 3px 17px;
}
.contact-page .righttext .contact_area input,
.contact-page .righttext .contact_area select,
.contact-page .righttext .contact_area textarea {
  width: 100%;
  height: 50px;
  background: #f9f9f9 !important;
  border: 1px solid #1c1c1d1a !important;
  border-radius: 0px;
  padding: 10px 17px;
  font-family: "Funnel Sans", sans-serif;
  box-shadow: none !important;
}
.contact-page .righttext .contact_area select {
  background: #f9f9f9 url(../img/down-arow.svg) no-repeat !important;
  background-size: 10px !important;
  background-position: 95% 50% !important;
}
.contact-page .righttext .contact_area textarea {
  height: 100px !important;
  min-block-size: 100px !important;
  padding: 18px 17px;
}
.contact-page .righttext .contact_area .row .full {
  width: 100%;
  margin: 0 0 5px;
}
.contact-page .contact_area .gform_wrapper .gform-footer {
  position: relative;
}
.contact-page .contact_area .gform_wrapper .gform-footer:before {
  position: absolute;
  content: "";
  background: url(../img/arrow-up-right.svg) no-repeat;
  width: 20px;
  height: 20px;
  top: 15px;
  left: 57%;
  transform: translate3d(0px, 0px, 0px);
  filter: brightness(100);
  transition: all 0.3s;
}
.contact-page .contact_area .gform_wrapper .gform-footer:after{
  display: none;
}
.contact-page .contact_area .gform_wrapper .gform-footer .gform_button {
  text-transform: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background 0.3s, border 0.3s, color 0.3s !important;
  display: flex !important;
  padding: 13px 25px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--green) !important;
  color: #fff !important;
  text-align: center !important;
  font-family: "Funnel Sans", sans-serif !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 1.5rem !important;
  width: 100% !important;

  border: 1px solid transparent;
}
.contact-page
  .contact_area
  .gform_wrapper
  .gform-footer
  .gform_button
  .btn-arrow {
  filter: brightness(100) !important;
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s !important;
}
.contact-page .contact_area .gform_wrapper .gform-footer .gform_button:hover {
  background: var(--darkgray) !important;
  transition: background 0.3s, border 0.3s, color 0.3s !important;
  border: 1px solid var(--white) !important;
}
.contact-page .contact_area .gform_wrapper .gform-footer:hover::before {
  transform: rotate(45deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}
.contact-page .righttext p {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 100;
}

.gform_wrapper .gform-footer {
  position: relative;
}
.gform_wrapper .gform-footer .gform_button{
    padding: 10px 20px 10px 10px !important;
    border: 1px solid transparent !important;
}
.gform_wrapper .gform-footer:after{
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: url(../img/arrow-up-right.svg) no-repeat;
  background-size: 20px;
  display: inline;
  filter: invert(1);
  width: 50px;
  height: 50px;
  background-position: 50% 50%; 
  transition: ease 0.3s !important;
}
.gform_wrapper .gform-footer:hover{
  cursor: pointer;
}
.gform_wrapper .gform-footer:hover:after{
  transform: rotate(45deg);
  transition: ease 0.3s !important;
}


.gform_wrapper .gform-footer .gform_button{
    padding: 10px 20px 10px 10px !important;
    border: 1px solid transparent !important;
}
.newslettercenter .blog_newsletter .gform_wrapper .gform-footer .gform_button{
  border: 1px solid var(--green);
}
.newslettercenter .blog_newsletter .gform_wrapper .gform-footer .gform_button:hover{
  background: #000 !important;
  border: 1px solid #fff;
}
.newsletter .gform_wrapper .gform-footer .gform_button{
  border: 1px solid #000;
}
.newsletter .gform_wrapper .gform-footer .gform_button:hover{
  background: var(--green) !important;
   border: 1px solid #fff !important;
} 

.SideBar .Let_friends  .newsletter .gform_wrapper form{
  display: block;
}
.SideBar .Let_friends  .newsletter .gform_wrapper form .gform-footer, 
.SideBar .Let_friends  .newsletter .gform_wrapper form .gform-footer .button{
  width: 100% !important;
}

/*----------------------footer---------------------*/
footer {
  background: #0b0d0b;
}
.page-footer_top {
  padding: 80px 0px 0px;
  display: flex;
  justify-content: space-between;
}
.page-footer_top > div {
  width: 20%;
}

.page-footer_head img {
  width: 172px;
}
.page-footer_top .menu-footer-main {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 720px;
  margin-right: 30px;
}
.menu-footer-main .menu-box {
  width: 40%;
  max-width: 218px;
}
.menu-footer-main .menu-box:last-child {
  width: 30%;
}
.menu-footer-main .menu-box h4 {
  color: var(--white);
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff2;
  min-height: 60px;
  margin-top: 0;
  line-height: 25px;
}
.menu-footer-main .menu-box ul {
  padding-left: 0px;
  margin: 0;
}
.menu-footer-main .menu-box ul ul {
  padding: 11px 20px 0;
}
.menu-footer-main .menu-box li {
  margin: 0 0 13px;
  line-height: 23.8px;
}
.menu-footer-main .menu-box li a {
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  font-weight: 100;
  letter-spacing: -0.4px;
}
.menu-footer-main .menu-box li a:hover {
  color: var(--green);
}
.menu-footer-main .menu-box li li a {
  color: #fff7;
}
.page-footer_top .page-footer_button {
  padding-left: 56px;
}
.page-footer_top .page-footer_button a {
  letter-spacing: -0.9px;
  padding-left: 28px;
}

.page-footer_middle {
  padding: 15px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page-footer_middle-left {
  width: 50%;
  position: relative;
  margin: 20px 0 0;
}
.page-footer_middle-left ul {
  margin-bottom: 22px;
}
.page-footer_middle-left ul li {
  padding-left: 35px;
  color: var(--white);
  margin: 0 0 24px;
  font-size: 18px;
}
.page-footer_middle-left ul li.address {
  line-height: 24px;
}
.page-footer_middle-left ul li:last-child {
  margin-bottom: 0;
}
.page-footer_middle-left ul li img {
  position: absolute;
  left: 0;
  width: 24px;
}
.page-footer_middle-left ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.page-footer_middle-right {
  width: 50%;
}
.page-footer_middle-right ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.page-footer_middle-right ul li {
  padding-left: 10px;
  color: var(--white);
  margin: 0 0 20px;
  font-size: 18px;
}
.page-footer_middle-right ul li img {
  width: 22px;
  left: 0;
}
.page-footer_middle-right ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  padding: 6px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.page-footer_middle-right ul li a:hover {
  background: var(--white);
}

.page-footer_middle-right ul li a:hover img {
  filter: brightness(0);
}

.page-footer_bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff5;
  padding: 25px 0;
  align-items: flex-end;
}
.page-footer_bottom p {
  color: #fff7;
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.4px;
}
.page-footer_bottom ul {
  display: flex;
  margin: 0;
  color: #fff7;
  margin-top: 4px;
}
.page-footer_bottom ul li {
  color: #fff;
  margin: 0px 3px;
}
.page-footer_bottom ul li:first-child {
  margin-left: 0;
}
.page-footer_bottom ul li a {
  color: #fff7;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.4px;
}
.page-footer_bottom-right p {
  letter-spacing: -0.4px;
}

@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*-------------------404 page------------------*/
.error-page {
  position: relative;
  text-align: center;
  padding: 36px 0 105px;
}

.error-page .heading {
  max-width: 818px;
  margin: 0 auto;
}
.error-page .heading img {
  max-width: 210px;
  width: 100%;
  margin: 0 0 31px;
}
.error-page .heading h2 {
  font-size: 35px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  letter-spacing: -2px;
  line-height: 100%;
  max-width: 444px;
  margin: 0 auto 20px;
}
.error-page .heading p {
  font-size: 18px;
  letter-spacing: -1px;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
}
.error-page .heading .text-box {
  max-width: 646px;
  margin: 0 auto 40px;
}
.error-page .mid-text {
  max-width: 778px;
  margin: 0 auto 70px;
}
.error-page .mid-text h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -1.7px;
  margin-bottom: 24px;
}
.error-page .mid-text ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px;
  justify-content: space-around;
}
.error-page .mid-text ul li {
  margin: 0 0 29px;
}
.error-page .mid-text ul li a {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--green);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}

.error-page .mid-text ul li a:hover img {
  transform: rotate(45deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}

.error-page .mid-text ul li a img {
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
  filter: brightness(0) contrast(0.5);
  margin: 0 3px;
  width: 12px;
}

.error-page .center_btn {
  text-align: center;
}
.error-page .center_btn a {
  margin: 0 auto;
  padding: 10px 30px 9px 30px;
}

.btm_search {
  padding-top: 60px;
  border-top: 1px solid #dbdbdb;
}

.btm_search h2 {
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 15px;
}
.btm_search .searchbox {
  max-width: 578px;
  margin: 0 auto;
  display: flex;
  gap: 2px;
}
.btm_search .searchbox input {
  height: 44px;
  border-radius: 0;
  border: 1px solid #898989;
  color: #898989;
  width: calc(100% - 133px);
  padding-left: 12px;
}
.btm_search .searchbox button {
  background: var(--green);
  height: 44px;
  padding: 14px;
  color: #fff;
  border: none;
  width: 133px;
}
.btm_search .searchbox button img {
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
  margin: 0 5px;
}
.btm_search .searchbox button:hover {
  background: var(--darkgray);
  transition: background 0.3s, border 0.3s, color 0.3s;
  border: 1px solid var(--white);
  cursor: pointer;
}
.btm_search .searchbox button:hover img {
  transform: rotate(45deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}

/*-------------Thanks you page---------*/
.thank-you-page {
  position: relative;
  padding: 42px 0 118px;
}
.thank-you-page h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2px;
  margin: 0 0 16px;
}
.thank-you-page .heading {
  max-width: 818px;
  margin: 0 auto;
  text-align: center;
}
.thank-you-page .heading h4 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1.6px;
}
.thank-you-page .heading p {
  letter-spacing: -0.2px;
}
.thank-you-page .heading img {
  max-width: 68px;
  margin: 0 auto 12px;
}
.thank-you-page .heading .text-box {
  max-width: 430px;
  margin: 0 auto 50px;
  text-align: center;
}

.thank-you-page .btm-row {
  padding-top: 57px;
  border-top: 1px solid #dbdbdb;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.thank-you-page .btm-row h2 {
  letter-spacing: -2.5px;
  margin: 0 0 27px;
}
.thank-you-page .social_icon {
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  margin-bottom: 62px;
}
.thank-you-page .social_icon li a {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  padding: 5px;
  transition: all 0.3s;
}
.thank-you-page .social_icon li a:hover {
  background: #000;
}
.thank-you-page .social_icon li a:hover img {
  filter: invert(0);
  transition: all 0.3s;
}
.thank-you-page .social_icon li a img {
  filter: invert(100);
  width: 23px;
  height: auto;
  margin: 0 auto;
}

.thank-you-page .center_btn a {
  background: var(--green);
  height: 44px;
  padding: 14px 25px;
  color: #fff;
  border: none;
  width: 133px;
}
.thank-you-page .center_btn a img {
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
  margin: 0 5px;
}
.thank-you-page .center_btn a:hover {
  background: var(--darkgray);
  transition: background 0.3s, border 0.3s, color 0.3s;
  border: 1px solid var(--white);
  cursor: pointer;
}
.thank-you-page .center_btn a:hover img {
  transform: rotate(45deg);
  transition: ease 0.3s, background 0.3s, border 0.3s, color 0.3s;
}

.thank-you-page .btn {
  margin-left: auto;
  margin-right: auto;
}

.page-sitemap .grid_box h1 {
  font-size: 35px;
  line-height: 1;
  margin: 0 0 50px;
  letter-spacing: 0;
}
.custom-sitemap ul {
  padding-left: 20px;
  list-style-type: disc;
}
.custom-sitemap ul li::marker {
  color: #529569;
  font-size: 19px;
}
.custom-sitemap ul li:before {
  display: none;
}
.custom-sitemap ul li {
  margin-bottom: 10px;
}
.custom-sitemap ul li a {
  color: #0b0d0b;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-decoration: none;
}
.custom-sitemap ul li::marker {
  color: #529569;
  font-size: 19px;
}
.custom-sitemap ul li ul li::marker {
  font-size: 13px;
}
.custom-sitemap ul li ul {
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc;
}
.custom-sitemap ul li ul a {
  font-weight: 300;
}

/*-------------------privacy-policy-----------------*/

.privacy-policy .grid_box h1 {
  font-size: 35px;
  line-height: 1;
  margin: 0 0 50px;
  letter-spacing: 0;
}

.privacy-policy .grid_box h2 {
  font-size: 25px;
  margin: 50px 0 20px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
}

/*-------------------------media----------------------*/

@media (max-width: 1380px) {
  .container {
    width: 98%;
  }
  .home-bannner .wraper .text {
    padding: 100px 30px 100px 20px;
  }
  .testimonial-sec .testimonial-row {
    width: 90%;
    margin: 0 auto;
  }
  .about-bannner .wraper {
    width: 97%;
  }

  .teamphotos .img-row .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blog_page .blog_content .blogs_box .text a.btn {
    width: max-content;
  }
  .blog_single_page .grid_box {
    display: flex !important;
  }

  .blog_single_page .blog_single_content .img img,
  .blog_single_page .blog_single_content .img {
    width: 100%;
  }
  .blog_single_page .blog_single_content .dac_btn a.btn {
    text-align: left;
  }
  .paintServices .wrapper {
    width: 97%;
    margin: 0 auto;
  }

  .paintServices .wrapper .Rightpart .text {
    width: 96%;
    padding: 100px 0 100px 50px;
  }
  .industries_serve_sec .industries_Menu ul li a {
    font-size: 12px !important;
  }
  .teamphotos .img-row {
    gap: 45px;
  }
  .teamphotos .img-row .img-box {
    width: 48%;
  }
  .Quality_Guarantee .border_block .blockBox {
    width: 96% !important;
  }
  .testimonialbox {
    width: auto;
    height: auto;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1170px) {
  .welcome-sec .main-conatent .flex-row .flex-box {
    height: 140px;
  }

  .teamphotos .img-row {
    gap: 50px;
  }
  .teamphotos .img-row .img-box {
    width: 47%;
  }
  .blog_single_content .Let_friends .text,
  .blog_content .Let_friends .text {
    width: 80%;
    position: relative;
    z-index: 1;
  }
  .blog_content .Let_friends .newsletter input,
  .blog_single_content .Let_friends .newsletter input {
    width: 68%;
  }
  .industries_serve_sec #tab-3.industries_serve > div {
    width: 50% !important;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 98%;
    max-width: 991;
    margin: 0 auto;
  }
  .home-bannner .wraper .text {
    width: 49%;
    padding: 100px 20px 100px 20px;
  }
  .home-bannner .wraper .text .btn {
    width: 100% !important;
  }
  .home-bannner .wraper .imgtext {
    max-width: 50%;
  }
  .home-bannner .wraper .text h1 {
    line-height: 1;
  }
  .home-bannner .wraper .text h3 {
    line-height: 1;
  }
  .welcome-sec .heading {
    max-width: 90%;
    margin: 0 auto;
  }
  .welcome-sec .main-conatent {
    width: 90%;
    margin: 0 auto;
  }
  .welcome-sec .main-conatent .flex-row .flex-box {
    padding: 25px 40px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box.big-box {
    padding: 30px 39px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box:nth-child(2) {
    padding-bottom: 47px;
  }
  .IndustriesWeWork .flex-slide:hover,
  .IndustriesWeWork .flex-slide.active {
    width: 49%;
  }
  .welcome-sec .main-conatent .flex-row {
    align-items: self-start;
  }
  /*  .welcome-sec .main-conatent .flex-row .flex-box.big-box {
        width: 58.7%;
    }
    .welcome-sec .main-conatent .flex-row .flex-box {
        width: 26%;
    }*/
  .BuildingMaintenance .wraper {
    justify-content: space-around;
  }
  .Home_hire .hire_content h2 {
    font-size: 35px;
  }
  .about-bannner .wraper {
    flex-wrap: wrap;
  }
  .about-bannner .wraper .text {
    width: 50%;
    max-width: 70%;
  }
  .about-bannner .righttext {
    max-width: 30%;
    padding: 30px 0;
  }
  .about-bannner .righttext .flex-row {
    flex-wrap: wrap;
    display: block;
  }
  .Quality_Guarantee .border_block h4 {
    line-height: 25px;
  }
  .Quality_Guarantee .inner .GuaranteeBox .content ul {
    width: 100%;
  }
  .team-row .team-box {
    width: 33%;
  }
  .team-row .team-box img {
    width: 100%;
    height: 100%;
  }
  .TrustedExperienced.v2:before {
    height: 310px;
    width: 270px;
  }
  .blog_page .grid .one_img {
    max-width: 100% !important;
  }

  .blog_single_page .grid_box {
    display: flex !important;
    flex-wrap: wrap;
  }
  .blog_page .blog_content .blogs_box .text h3,
  .blog_page .blog_content .blogs_box .text .h3 {
    font-size: 24px !important;
  }

  .blog_single_page .blog_single_content .single_blog_btns,
  .blog_single_page .blog_single_content a.single_blog_btn {
    text-align: left;
  }

  .blog_single_page .blog_single_content .img img,
  .blog_single_page .blog_single_content .img {
    width: 100%;
  }
  .blog_single_page .blog_single_content .dac_btn a.btn {
    text-align: left;
  }
  .industries_serve_sec .industries_Menu ul li a {
    font-size: 12px !important;
    margin: 0 0 20px;
  }
  .testimonial-sec .testimonial-row {
    width: 85%;
  }
  .testimonial-sec .owl-carousel .owl-nav button {
    left: -60px;
  }
  .testimonial-sec .owl-carousel .owl-nav button.owl-next {
    right: -60px;
  }

  .tab-sec .flex-row.process-tab .wraper .text {
    width: 45%;
  }
  .tab-sec .flex-row .wraper hr {
    display: none !important;
  }

  .Commercial-bannner .wraper .text {
    padding: 50px 30px 40px 20px;
  }
  .Commercial-bannner .wraper .imgtext {
    width: 50%;
  }
  .Commercial-bannner .wraper .imgtext .VideoBox {
    width: 100%;
    height: 100%;
  }
  .paintServices .wrapper {
    width: 100%;
  }
  .paintServices .wrapper .Leftpart .text,
  .paintServices .wrapper .Rightpart .text {
    padding: 100px 50px 50px 30px;
  }

  .paintServices .wrapper .Leftpart .text h2 {
    font-size: 40px;
    line-height: 1.3;
  }
  .Typesof-sec .wraper .imgtext {
    max-width: 48%;
  }
  .Typesof-sec .wraper .text {
    max-width: 50%;
  }
  .Typesof-sec .wraper .text h2 {
    font-size: 40px;
    margin: 0 0 30px;
  }
  .CommercialPainting .container {
    width: 100%;
  }
  .tab-sec .flex-row {
    padding: 50px 20px 50px !important;
  }
  .blog_page .grid .two_img {
    width: 100%;
    max-width: 410px;
  }
  .blog_page .one_img .blog_box .blog_text h3,
  .blog_page .one_img .blog_box .blog_text .h3 {
    font-size: 30px;
  }
  .blog_page .blog_newsletter .newsletter_text h3,
  .blog_page .blog_newsletter .newsletter_text .h3 {
    font-size: 30px;
  }
  .blog_single_page .grid_box .blog_single_content {
    width: 60% !important;
  }
  .blog_single_page .grid_box .SideBar {
    width: 30%;
  }
  .team-row {
    justify-content: flex-start;
  }
  .contact-page .wraper .text {
    width: 97%;
    max-width: 460px;
  }
  .contact-page .righttext .contact_area .row .half {
    width: 198px;
  }
  .blog_content .Let_friends .newsletter input,
  .blog_single_content .Let_friends .newsletter input {
    width: 63%;
  }
  .blog_single_content .Let_friends .text,
  .blog_content .Let_friends .text {
    width: 90%;
  }
  .VideoBox .video_thumbnail {
    width: 100% !important;
    height: auto !important;
  }
  .tab-sec .flex-row .wraper .imgtext {
    width: 50%;
  }
  .teamphotos .img-row {
    gap: 10px;
  }
  .teamphotos .img-row .img-box {
    width: 49%;
  }
  .page-footer_top .page-footer_button {
    width: 360px;
    padding: 0 !important;
  }
  .blog_single_page .blog_single_content .img {
    height: auto !important;
  }
  .blog_single_page .blog_single_content .images_box {
    display: block !important;
  }
  .industries_serve_sec .industries_serve > div {
    width: 50% !important;
  }

}
@media (max-width: 991px) {
  body {
    margin-top: 76px;
  }
  h2,
  .h2 {
    font-size: 40px;
    line-height: 1.2;
  }
  div.mobile_header {
    justify-content: space-evenly;
    padding: 10px 10px;
  }
  .mobile_header .mo_log {
    width: 50%;
  }
  .mobile_header .mobile-menu-btn {
    width: 50%;
    align-items: center;
    justify-content: flex-end;
  }
  .mobile_header .mobile-menu-btn a.btn {
    display: inline-block !important;
    padding: 10px;
    border-radius: 0;
  }
  /*a.btn {
        width: 94% !important;
    }*/
  .home-bannner .wraper {
    flex-wrap: wrap;
  }
  .home-bannner .wraper > div {
    width: 100% !important;
  }
  .welcome-sec {
    overflow: hidden;
  }
  .welcome-sec:before {
    width: 190px;
    height: 160px;
    background-size: 80px;
  }
  .welcome-sec:after {
    border-radius: 100% 0 0 0%;
    bottom: 0;
    top: auto;
    width: 130px;
    height: 100px;
  }
  .home-bannner .wraper .imgtext .imggroup {
    width: 110px;
  }
  .home-bannner .wraper .imgtext {
    max-width: 101%;
  }
  .welcome-sec .main-conatent .flex-row .flex-box.big-box {
    width: 100%;
  }
  .welcome-sec .main-conatent .flex-row .flex-box:nth-child(4) {
    width: 49.1%;
  }
  .welcome-sec .main-conatent .flex-row .flex-box {
    width: 50%;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #ffffff33 !important;
    height: 170px;
    border-top: none !important;
  }
  .WhatWeDo-sec:before {
    display: none;
  }
  .WhatWeDo-sec .border_block .blockBox {
    padding: 0 30px 0 22px;
    width: 44% !important;
    border-left: 1px solid var(--green);
  }
  .border_block {
    flex-wrap: wrap;
    justify-content: center;
  }
  .border_block .blockBox {
    width: 44%;
    padding: 0;
    border: none;
    margin: 0 0 20px;
  }
  .BuildingMaintenance .wraper {
    flex-wrap: wrap;
    padding: 0 0px;
    margin: 0 auto;
  }
  .BuildingMaintenance .wraper > div {
    width: 100% !important;
    text-align: center;
  }
  .BuildingMaintenance .wraper .btn {
    display: inline-flex;
  }
  .BuildingMaintenance .wraper .BuildingRight {
    margin: 20px 0 0;
  }
  .IndustriesWeWork .flex-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .IndustriesWeWork .flex-slide {
    width: 49%;
  }
  .TrustedExperienced .TrustedLogos ul {
    flex-wrap: wrap;
    gap: 20px;
  }
  .TrustedExperienced .TrustedLogos ul li {
    width: 40%;
    text-align: center;
  }
  .TrustedExperienced .TrustedLogos ul li img {
    width: 100%;
    height: 100%;
  }
  .Quality_Guarantee .wrapper {
    padding: 0 20px;
  }
  .Quality_Guarantee .border_block {
    display: flex;
    flex-wrap: wrap;
  }
  .Quality_Guarantee .border_block .blockBox {
    width: 47% !important;
    border-left: 1px solid var(--green);
    padding-left: 20px;
  }
  .Quality_Guarantee .border_block p {
    min-height: 100%;
  }
  .Quality_Guarantee .inner {
    flex-wrap: wrap;
  }
  .Quality_Guarantee .inner > div {
    width: 100% !important;
    min-height: 400px !important;
    max-height: 400px;
  }
  .BuildingMaintenance .container {
    width: 100%;
  }
  .BuildingMaintenance .wraper .BuildingLeft {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    padding: 0 25px;
  }
  .BuildingMaintenance .ServiceList {
    padding: 40px 30px 0px;
    align-items: end;
  }
  .Home_hire .hire_content {
    width: 100%;
    text-align: center;
    padding: 40px 10px;
  }
  .Home_hire .hire_image {
    display: none;
  }
  .Home_hire .hire_wrapper {
    height: auto;
  }
  .Home_hire .hire_content .btn {
    width: 100%;
    margin: 0 auto;
  }
  footer .page-footer_top,
  .page-footer_middle {
    flex-wrap: wrap;
    padding: 50px 30px;
  }
  footer .page-footer_top > div {
    width: 100% !important;
  }
  footer .page-footer_top .page-footer_head {
    order: 1;
    text-align: center;
    margin: 0 0 20px;
  }
  footer .page-footer_top .menu-footer-main {
    order: 3;
    justify-content: space-between;
  }
  footer .page-footer_top .page-footer_button {
    order: 2;
    padding: 0;
    margin: 0 0 30px;
  }
  .page-footer_top .page-footer_button a {
    max-width: 100%;
  }
  .page-footer_middle {
    flex-wrap: wrap;
  }
  .page-footer_middle > div {
    width: 100%;
  }
  .page-footer_middle-right ul {
    justify-content: flex-start;
  }
  .about-bannner .wraper {
    background: #ffffffc2;
  }
  .about-bannner .wraper .text,
  .about-bannner .righttext {
    width: 100%;
    max-width: 100%;
  }
  .about-bannner .wraper .text {
    padding: 70px 20px 70px 20px;
  }
  .about-bannner .righttext .flex-row {
    padding: 0 20px;
  }
  .about-bannner .righttext .flex-row .column {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-bannner .righttext .flex-row .flex-box {
    margin: 10px;
    height: auto;
  }
  .TrustedExperienced .TrustedLogos {
    padding: 0 20px;
  }
  .team-sec .top-part {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .team-sec .team-row {
    padding: 0 20px;
  }
  .team-sec .top-part .text {
    width: 100%;
  }
  .team-sec .top-part .img-box {
    width: 100%;
  }
  .teamphotos .img-row {
    padding: 0 20px;
  }

  .blog_page .blog_content {
    display: block !important;
  }
  .blog_page {
    padding-bottom: 50px;
  }
  .blog_page .grid {
    display: block !important;
    padding: 0 20px;
  }
  .blog_page .blog_content {
    padding: 0 20px;
    width: 100%;
  }
  .blog_page .blog_content .content-part {
    width: 100% !important;
  }
  .blog_page .blog_content .blogs_box .img img {
    width: 100%;
  }
  .blog_page .container {
    width: 100%;
  }
  .blog_single_page .grid_box .blog_single_content {
    width: 100% !important;
  }
  .blog_single_page .grid_box .SideBar {
    width: 100% !important;
    max-width: 100% !important;
  }
  .blog_page .blog_box .blog_text h3,
  .blog_page .blog_box .blog_text .h3 {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }
  .blog_page .two_img .blog_box .blog_text h3,
  .blog_page .two_img .blog_box .blog_text .h3 {
  }
  .blog_page .blog_newsletter {
    display: block !important;
    text-align: center;
    padding: 50px 40px !important;
  }
  .blog_page .blog_newsletter .newsletter {
    position: relative;
    z-index: 1;
  }
  .blog_page .blog_newsletter .newsletter .input-group input {
    margin: 0 0 20px !important;
  }
  .blog_page .SideBar {
    margin: 30px 0 0;
    text-align: center;
    max-width: 100%;
  }
  .blog_page .blog_content .blogs_box .text a.btn {
    width: max-content !important;
    margin: 0 !important;
  }
  section.blog_page .blog_content .blogs_box .text h3,
  section.blog_page .blog_content .blogs_box .text .h3 {
    font-size: 23px;
    margin: 0 0 15px;
  }
  .Let_friends .text {
    width: 100% !important;
  }
  .newsletter .input-group {
    display: block !important;
  }
  .Let_friends .newsletter input {
    width: 100% !important;
    margin: 0 0 10px !important;
  }
  .faq_page .faq_content .faqs-grid {
    margin-right: 0 !important;
  }
  .Commercial-bannner .wraper,
  .paintServices .wrapper {
    display: block !important;
  }
  .Commercial-bannner .wraper .text {
    width: 100% !important;
    padding: 100px 30px 50px;
  }
  .Commercial-bannner .wraper .imgtext {
    width: 100% !important;
  }
  .paintServices .wrapper .Leftpart,
  .paintServices .wrapper .Rightpart {
    width: 100% !important;
    max-width: 100%;
    padding: 50px 15px;
    position: unset !important;
    top: 0;
  }
  .paintServices .wrapper .Leftpart .text,
  .paintServices .wrapper .Rightpart .text {
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
  }
  .tab-sec .flex-row .wraper {
    display: block;
  }
  .tab-sec .flex-row .wraper > div {
    width: 100%;
  }
  .tab-sec ul.tabs li {
    font-size: 16px;
  }
  .industries_serve_sec .industries_Menu,
  .industries_serve_sec .industries_Menu ul {
    margin: 0 !important;
    width: 100% !important;
  }

  .industries_serve_sec .industries_serve {
    display: block !important;
  }
  .industries_serve_sec .industries_serve .VideoBox,
  .industries_serve_sec .industries_serve .industries_serve_text {
    width: 100% !important;
    margin: 0 0 20px;
  }
  .industries_serve_sec .industries_serve .industries_serve_text {
    padding: 30px 23px 0 !important;
  }
  .why_choose_sec .bottom_text {
    width: 90% !important;
  }
  .contact-page .wraper {
    flex-wrap: wrap;
  }
  .contact-page .wraper > div {
    width: 100% !important;
    padding: 50px 20px;
  }
  .contact-page .wraper .righttext {
    max-width: 100%;
    margin: 0;
  }
  .contact-page .contact-dtl {
    margin: 50px 0 0;
  }
  .contact-page .wraper .pageheading {
    text-align: center;
    background-position: 50% 50%;
    background-size: cover;
  }
  .contact-page .righttext .contact_area {
    margin: 0 auto 20px;
    max-width: 598px;
  }
  .Typesof-sec .container {
    width: 100%;
  }
  .Typesof-sec .wraper {
    flex-wrap: wrap;
  }
  .Typesof-sec .wraper > div {
    max-width: 100% !important;
    width: 100%;
  }
  .Typesof-sec .wraper .imgtext {
    margin: 0 0 30px;
  }
  .Typesof-sec .wraper .imgtext .VideoBox {
    width: 100%;
  }

  .Typesof-sec .wraper .text {
    padding: 0 15px;
  }
  .testimonial-sec .owl-carousel .owl-nav button {
    transform: scale(0.7);
  }

  .blog_page .one_img .blog_box .blog_img,
  .blog_page .one_img .blog_box {
    height: 400px;
    overflow: hidden;
  }
  .blog_page .grid .two_img {
    max-width: 100% !important;
  }
  .blog_page .blog_box .blog_img img {
    object-fit: cover;
  }
  .blog_page .blog_newsletter .newsletter_text h3,
  .blog_page .blog_newsletter .newsletter_text .h3 {
    margin: 0 0 30px !important;
  }
  .faq_page .wraper .faq_menu {
    width: 40% !important;
  }
  .ServiceList a {
    padding: 50px 0 10px;
  }
  .ServiceList .img {
    transform: translate(130%, 100%) !important;
    width: 150px;
  }
  .ServiceList:hover .img {
    transform: translate(130%, -30%) !important;
  }
  .VideoBox .video_thumbnail {
    margin: 0 auto 30px;
    width: 100% !important;
  }

  .contact-page .wraper .text,
  .contact-page .righttext .contact_area {
    width: 100%;
    max-width: 100%;
  }
  .contact-page .righttext .contact_area .row .half {
    width: 100%;
  }
  .contact-page .righttext .contact_area {
    margin: 0 0 30px;
  }
  .why_choose_sec .grid {
    padding: 0 20px;
    display: flex !important;
    flex-wrap: wrap;
  }
  .why_choose_sec .why_choose_box {
    width: 44%;
  }

  .cta-sec.v2 .wrap h2 {
    font-size: 40px;
  }
  .tab-sec .flex-row .wraper .text {
    position: unset !important;
  }
  .tab-sec .process-tab .text ol {
    padding-left: 20px;
  }
  .CommercialPainting {
    padding-bottom: 0;
  }
  .blog_page .blog_content .pagination-box .pagination .pagination__lists {
    width: auto !important;
  }
  .blog_content .Let_friends .newsletter input,
  .blog_single_content .Let_friends .newsletter input {
    width: 100% !important;
  }
  .blog_page .content-part .Let_friends .newsletter .input-group-btn,
  .blog_single_page
    .blog_single_content
    .Let_friends
    .newsletter
    .input-group-btn {
    width: 100% !important;
  }
  .blog_single_page .grid_box {
    flex-wrap: wrap;
  }
  .blog_page .blog_newsletter .newsletter{
      width: 521px !important;
      margin: 0 auto;
  }
  .blog_content .newsletter .gform_wrapper .gform-body{
        width: 288px;
  }
  .SideBar .Let_friends .newsletter .gform_wrapper form .gform-body{
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  body h1,
  body .h1 {
    font-size: 40px !important;
    line-height: 45px !important;
  }
  body h2,
  body .h2 {
    font-size: 30px;
    line-height: 37px;
  }
  body h3,
  body .h3 {
    font-size: 23px;
    line-height: 25px;
  }
  body h4,
  body .h4 {
    font-size: 20px;
    line-height: 25px;
  }
  section {
    padding: 50px 0;
  }
  .VideoBox .video_thumbnail {
    width: 100% !important;
    height: 100% !important;
  }
  a.btn {
    display: flex !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  div.mobile_header {
    justify-content: space-between;
    padding: 10px 25px;
  }
  .mobile_header .mo_log {
    width: 40%;
    text-align: left;
  }
  .mobile_header .mobile-menu-btn {
    width: calc(100% - 47%);
    align-items: center;
  }
  .mobile_header .mobile-menu-btn a.btn {
    padding: 10px;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 20px !important;
  }
  .home-bannner .wraper .text h1 {
    font-weight: 700;
  }
  .home-bannner .wraper .text {
    padding: 110px 25px 50px 25px;
  }
  .home-bannner .wraper .text .btn {
    max-width: 100% !important;
  }
  .home-bannner .wraper .imgtext .overtext {
    padding: 30px 22px;
  }
  .home-bannner .wraper .imgtext {
    height: 400px;
  }
  .home-bannner .wraper .imgtext .overtext h2 {
    font-size: 30px !important;
    line-height: 1.3;
  }
  .home-bannner .wraper .imgtext .imggroup {
    width: 80px;
  }
  .welcome-sec {
    padding: 70px 0 50px;
  }
  .welcome-sec:before {
    height: 210px;
    background-size: 150px;
    z-index: 0;
    background-position: 0% 100%;
  }
  .welcome-sec .heading h2 {
    font-size: 26px !important;
    line-height: 1.4 !important;
  }

  .welcome-sec .main-conatent .flex-row .flex-box.big-box .flex-title {
    font-size: 50px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box .flex-title small {
    display: block;
    width: 100%;
  }

  .welcome-sec .main-conatent .flex-row .flex-box.big-box .flex-title {
    font-size: 70px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box {
    padding-right: 15px !important;
  }
  .welcome-sec .main-conatent .flex-row .flex-box .flex-title {
    font-size: 50px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box:nth-child(1n + 4) {
    border-bottom: 0 !important;
    width: 49.1%;
  }
  .WhatWeDo-sec .border_block .blockBox h4 {
    padding: 0;
    border: none;
  }
  .border_block .blockBox h4 {
    line-height: 1.2;
    padding-left: 20px;
    border-left: 2px solid var(--green);
  }
  .border_block .blockBox {
    width: 48%;
  }
  .img-slider .item img {
    height: 200px;
    object-fit: cover;
  }
  .BuildingMaintenance .ServiceList {
    padding: 25px 25px 0px;
    font-size: 20px;
    line-height: 1;
    text-align: left;
    align-items: end;
  }
  .ServiceList a {
    padding: 50px 0 0px;
  }
  .ServiceList a .arrow {
    width: 44px;
  }

  .BuildingMaintenance .ServiceList:last-child {
    line-height: 1;
  }
  .ServiceList .img {
    width: 100px;
  }
  .ServiceList:hover .img {
    width: 100px;
    transform: translate(150%, -10%) !important;
  }
  .IndustriesWeWork .flex-slide,
  .IndustriesWeWork .flex-slide a {
    width: 100% !important;
  }
  .IndustriesWeWork .flex-slide:hover .flex-title,
  .IndustriesWeWork .flex-slide.active .flex-title {
    font-size: 30px;
  }
  .IndustriesWeWork .flex-slide:hover {
    width: 100% !important;
  }
  .IndustriesWeWork .WorkBottom {
    padding: 0 25px;
  }
  .IndustriesWeWork .flex-slide {
    height: 300px;
  }
  .TrustedExperienced .content {
    padding: 0 25px;
  }
  .TrustedExperienced {
    background-position: 50% 50%;
  }
  .TrustedExperienced .TrustedLogos {
    padding: 20px 25px;
  }
  .page-footer_bottom {
    display: block;
    text-align: center;
    padding: 20px 10px;
  }
  .page-footer_bottom ul {
    justify-content: center;
    margin: 0 0 20px;
    flex-wrap: wrap;
  }
  .page-footer_middle-left {
    width: 100%;
    margin: 20px 0 0;
  }
  .page-footer_middle-right ul li a {
    transform: scale(0.9);
  }
  .page-footer_middle-right ul li {
    padding-left: 3px;
  }
  .about-bannner .righttext .flex-row .column {
    display: block;
  }
  .about-bannner .righttext .flex-row .flex-box {
    width: 100%;
    margin: 10px 0;
  }
  .team-sec .top-part,
  .team-sec .team-row {
    padding: 0 20px;
  }
  .team-row .team-box {
    width: 49.7%;
  }
  .team-row .team-box img {
    width: 100%;
    height: 100%;
  }
  .testimonial-sec .owl-carousel .owl-nav {
    text-align: center;
    margin: 20px 0 0;
  }
  .testimonial-sec .owl-carousel .owl-nav button {
    position: relative;
    left: -5px !important;
    right: -5px !important;
  }
  .blog_single_page .grid_box {
    padding: 0 25px;
  }
  .blog_page .blog_newsletter .newsletter_text h3,
  .blog_page .blog_newsletter .newsletter_text .h3 {
    margin: 0 0 30px !important;
  }
  .blog_page .blog_newsletter {
    padding: 50px 40px !important;
  }
  .blog_page .blog_newsletter .newsletter .input-group {
    display: block;
  }
  .blog_page .blog_newsletter .newsletter .input-group input {
    margin: 0 0 20px;
  }
  .blog_page .blog_content .blogs_box {
    display: block !important;
  }
  .blog_page .blog_content .blogs_box .img {
    width: 100% !important;
    text-align: center;
    max-width: 100% !important;
  }
  .blog_page .two_img .blog_box,
  .blog_page .two_img .blog_box .blog_img {
    height: 350px !important;
  }
  .blog_page .blog_content .blogs_box .text {
    padding: 20px 0;
  }
  .blog_page .blog_box,
  .blog_page .blog_box .blog_img {
    height: 400px;
  }
  .blog_page .one_img .blog_box .blog_text h3,
  .blog_page .one_img .blog_box .blog_text .h3,
  .blog_page .two_img .blog_box .blog_text h3,
  .blog_page .two_img .blog_box .blog_text .h3 {
    font-size: 20px !important;
  }
  .blog_page .blog_box .blog_img img {
    height: 100%;
  }
  .blog_single_page {
    padding-top: 100px;
  }
  .blog_single_page .blog_single_content .single_blog_btns,
  .blog_single_page .blog_single_content a.single_blog_btn {
    text-align: left;
    justify-content: start;
  }
  .blog_single_page .blog_single_content h3,
  .blog_single_page .blog_single_content .h3 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    color: #282828;
    letter-spacing: -0.4px;
  }
  .blog_page .blog_content .pagination-box .pagination {
    flex-wrap: wrap;
  }
  .blog_page .blog_content .pagination-box .pagination li {
    margin: 0 5px 0 0;
  }
  .blog_page .blog_content .pagination-box .pagination li a {
    font-size: 13px;
    padding: 10px;
  }
  section.blog_page .blog_content .blogs_box .text h3,
  section.blog_page .blog_content .blogs_box .text .h3 {
    font-size: 23px !important;
  }
  .faq_page .wraper div.faq_menu {
    width: 100% !important;
    background: #fff;
    z-index: 1;
    padding: 20px;
    top: 0 !important;
    position: relative !important;
  }
  .faq_page .heading {
    width: 90%;
    margin: 0 auto;
  }
  .faq_page .wraper {
    display: block !important;
  }
  .faq_page .wraper .faq_menu ul li {
    max-width: 100% !important;
  }

  .faq_page .faq_content .faqs-grid {
    margin-right: 0 !important;
  }
  .faq_page .heading .input-group {
    display: block !important;
  }
  .faq_page .heading input {
    width: 100% !important;
  }
  .paintServices .wrapper .Leftpart .text p,
  .paintServices .wrapper .Rightpart .text p {
    margin: 0;
  }
  .paintServices .wrapper .Leftpart .text,
  .paintServices .wrapper .Rightpart .text,
  .tab-sec .flex-row .wraper {
    width: 96% !important;
    margin: 0 auto !important;
  }
  .cta-sec .wrap {
    width: 100% !important;
  }
  .cta-sec p {
    font-size: 19px;
  }

  .paintServices .wrapper .Rightpart .text ul {
    column-count: 1;
  }
  .testimonial-sec .heading {
    width: 90%;
  }
  .about-bannner {
    background-position: 30% 43%;
  }
  .about-bannner .righttext .flex-row .flex-box .flex-title {
    font-size: 38px;
  }
  .why_choose_sec .grid {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .why_choose_sec .why_choose_box {
    width: 44% !important;
  }
  .contact-page .contact-dtl .dtlbx ul {
    display: block;
    text-align: center;
  }
  .contact-page .contact-dtl .dtlbx ul li {
    width: 100%;
    margin: 0 0 20px;
  }
  .contact-page .righttext .contact_area .row .half {
    width: 100%;
  }
  .contact-page .wraper .text .text-box {
    padding-bottom: 20px;
  }
  .contact-page .faq-sec h4 {
    font-size: 30px;
  }
  .contact-page .wraper {
    margin: 0 auto;
  }
  .WhatWeDo-sec .wrapper {
    padding: 0 21px;
    text-align: left;
  }
  .Quality_Guarantee .inner > div {
    width: 100% !important;
    min-height: 500px !important;
    max-height: 500px;
  }
  .Quality_Guarantee .border_block .blockBox h4 {
    padding: 0;
    border: none;
  }
  .Home_hire .hire_content h2 {
    font-size: 40px !important;
  }
  .Commercial-bannner .wraper .text {
    padding: 70px 20px 40px;
  }
  .Typesof-sec {
    padding: 0;
  }
  .tab-sec ul.tabs {
    margin: 0 0 10px;
  }
  .tab-sec ul.tabs li {
    width: 90%;
    margin: 0 0 10px;
  }
  .faq_page .heading .input-group {
    max-width: 500px;
    margin: 0 auto;
  }
  .faq_page .heading button.btn {
    margin: 20px 0 0;
  }
  .faq_page .wraper .faq_content a.btn2 {
    max-width: max-content !important;
    margin: 0 !important;
  }
  .faq_page .wraper .faq_content .menu_content_1 .grid-2 {
    display: block !important;
  }
  .industries_serve_sec .heading {
    width: 100% !important;
  }
  .industries_serve_sec .industries_serve .industries_serve_text {
    margin: 0 !important;
  }
  .why_choose_sec .bottom_text p {
    font-size: 22px !important;
  }
  .Let_friends {
    padding: 20px !important;
  }
  .IndustriesWeWork:after {
    z-index: -1;
  }
  .contact-page .wraper .righttext {
    padding: 0 20px;
  }
  .blog_page .SideBar {
    max-width: 100% !important;
  }
  .overlayteam .content .wrap {
    display: block;
    overflow: auto;
    height: 600px;
  }
  .overlayteam .content .wrap .img-box {
    width: 100%;
    margin: 0 auto 30px;
  }
  .overlayteam .content .wrap .text-box {
    width: 100%;
    margin: 0 auto 30px;
    padding: 30px;
  }
  .Quality_Guarantee .inner .GuaranteeBox .content h3 {
    font-size: 40px !important;
  }
  .teamphotos .img-row {
    gap: 10px;
  }
  .page-id-183 .Quality_Guarantee .border_block .blockBox {
    padding: 0 20px 0 16px;
    width: 100% !important;
  }
  .faq_page .faq_content .faqs-grid .faqs-item {
    padding: 18px 20px !important;
  }
  .industries_serve_sec .industries_Menu ul {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 10px !important;
  }
  .industries_serve_sec .industries_Menu ul li a {
    margin: 0;
  }
}

@media (max-width: 600px) {
  body h1,
  body .h1 {
    font-size: 42px !important;
    line-height: 46px;
  }
  body h2,
  body .h2 {
    font-size: 40px !important;
    line-height: 1.2;
  }
  body h3,
  body .h3 {
    font-size: 36px !important;
    line-height: 1.2;
  }
  body h4,
  body .h4 {
    font-size: 18px;
    line-height: 25px;
  }
  .mobile_header .mobile-menu-btn a.btn {
    font-size: 13px;
    border-radius: 0;
    padding: 6px;
    display: flex !important;
    margin-right: 10px !important;
  }
  .TrustedExperienced .TrustedLogos ul {
    justify-content: space-between;
    gap: 25px;
  }
  .TrustedExperienced .TrustedLogos ul li {
    width: 46% !important;
    text-align: center;
    display: flex;
  }
  .TrustedExperienced .TrustedLogos ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .Quality_Guarantee .wrapper {
    padding: 0 25px;
  }
  .Quality_Guarantee {
    padding: 70px 0 0px;
  }
  .Quality_Guarantee .border_block .blockBox {
    padding-left: 24px;
    padding-right: 10px;
  }
  .Quality_Guarantee .border_block .blockBox h4 {
    border: none;
    padding: 0;
  }
  .Quality_Guarantee .inner .GuaranteeBox .content ul {
    padding: 0;
  }
  footer .page-footer_top,
  .page-footer_middle {
    padding: 50px 25px;
  }
  .page-footer_middle {
    padding: 0 25px;
  }
  .page-footer_top .menu-footer-main {
    justify-content: space-between;
  }
  .menu-footer-main .menu-box {
    width: 50%;
  }

  .welcome-sec .main-conatent {
    padding-top: 10px;
  }
  .welcome-sec .main-conatent .flex-row div.flex-box {
    height: 170px;
    padding: 30px 0px !important;
  }
  .welcome-sec .main-conatent .flex-row .flex-box {
    width: 49%;
    padding: 20px 0;
    height: auto;
    padding-right: 20px !important;
  }
  .welcome-sec .main-conatent .flex-row .flex-box .flex-title .desktop {
    display: none;
  }
  .welcome-sec .main-conatent .flex-row .flex-box .flex-title .mobshow {
    display: block;
  }
  .welcome-sec .main-conatent .flex-row .flex-box .flex-title small {
    min-height: 40px;
  }

  .tab-sec .process-tab h3 {
    font-size: 20px;
  }
  .paintServices .wrapper .Leftpart .text p {
    margin: 0 0 10px;
  }
  .why_choose_sec .why_choose_box {
    width: 100% !important;
  }
  .cta-sec h2 {
    font-size: 30px !important;
  }
  .CommercialPainting {
    padding-bottom: 0;
  }
  .VideoBox {
    margin: 0 0 30px;
  }
  .tab-sec .flex-row {
    padding: 50px 10px 50px;
  }
  .faq_page {
    padding-top: 90px !important;
  }
  .faq_page .wraper .faq_content .menu_content_1 {
    padding: 22px !important;
  }
  .Home_hire .hire_content h2 {
    font-size: 30px !important;
  }
  .Quality_Guarantee .inner .GuaranteeBox .content {
    padding: 40px 30px;
  }
  .Quality_Guarantee .inner .GuaranteeBox .content ul li {
    font-size: 22px;
  }
  .ServiceList .img {
    display: none;
  }
  footer .page-footer_top .page-footer_button {
    margin: 20px 0;
  }
  .IndustriesWeWork .flex-slide:hover .flex-title {
    font-size: 30px;
  }
  .img-slider .item {
    height: 300px;
  }
  .img-slider .item img {
    height: 100%;
    object-fit: cover;
    object-position: 37% 110%;
  }
  .WhatWeDo-sec .border_block .blockBox {
    width: 47% !important;
  }
  .border_block .blockBox {
    width: 50%;
    padding-right: 10px;
  }
  .Home_hire .hire_wrapper {
    height: auto;
  }
  .Home_hire .hire_content {
    padding: 50px 25px;
  }
  .IndustriesWeWork h2 {
    padding: 0 25px;
  }

  .why_choose_sec:before {
    transform: scale(1) !important;
  }
  .why_choose_sec .grid {
    padding: 0 25px;
  }
  .industries_serve_sec div.industry_box {
    padding: 60px 25px 0;
  }
  .contact-page:before {
    transform: scale(1);
  }
  .contact-page .text .form-row label {
    display: flex;
    align-items: baseline;
  }
  .contact-page .text .form-row label span {
    margin-left: 10px;
  }
  .team-row .team-box {
    width: 100%;
  }
  .teamphotos .img-row {
    gap: 5px;
  }
  .testimonial-sec:after {
    width: 160px;
    height: 130px;
  }
  .Customized:after {
    width: 370px;
    height: 330px;
    z-index: 0;
  }
  .breadcrumb_sec .breadcrumb {
    padding: 5px 20px;
  }
  .breadcrumb_sec .breadcrumb li {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .blog_page .blog_newsletter .newsletter{
    width: auto !important;
  }
  .blog_page .blog_newsletter .newsletter form{
    display: block;
  }
  .blog_page .blog_newsletter .newsletter form .gform-body{
    width: 100%;
    margin: 0 0 10px;
  }
  .blog_page .blog_newsletter .newsletter form .gform-footer{
    width: 100%;
  }
  .blog_page .blog_newsletter .newsletter_text h3, .blog_page .blog_newsletter .newsletter_text .h3{
      line-height: 43px;
  }
}

@media (max-width: 380px) {
  .overlay .closebtn .fa {
    margin-right: 30px !important;
  }
  .mobile_header .mobile-menu-btn a.btn {
    padding: 4px;
    font-size: 12px;
    gap: 0;
  }
  .mobile_header .mo_log {
    width: 35%;
    text-align: left;
  }
  .mobile_header .mo_log img {
    width: 100%;
  }
  .mobile_header .mobile-menu-btn {
    width: calc(100% - 40%);
  }
  div.mobile_header {
    padding: 10px 20px;
  }
  .WhatWeDo-sec .list ul li {
    padding-left: 10px;
  }
  .WhatWeDo-sec .list ul li:before {
    transform: scale(0.8);
    position: absolute;
    top: 9px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box .flex-title {
    font-size: 40px;
  }
  .welcome-sec .main-conatent .flex-row .flex-box {
    height: 140px;
    padding: 20px 3px;
  }
  .border_block .blockBox h4 {
    font-size: 20px;
    padding-left: 10px;
  }
  .border_block .blockBox ul li {
    margin: 0 0 10px;
  }
  .TrustedExperienced .TrustedLogos ul li {
    width: 45% !important;
    text-align: center;
    display: flex;
  }
}

/*--------------------- buddy css ------------------*/

.VideoBox .video_thumbnail {
  position: relative;
  cursor: pointer;
  width: 600px;
  height: 500px;
}
.VideoBox .video_thumbnail .thumbnail_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.5); */
  border-radius: 0;
}
.VideoBox .video_thumbnail .play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
  pointer-events: none;
}
.VideoBox .video_thumbnail .play_button img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.VideoBox .video-player {
  display: none;
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin-top: 20px;
}

.pagination-box {
  justify-content: center;
  display: flex;
  align-items: center;
}
.pagination-box ul li {
  display: inline-block;
  line-height: 30px;
  margin-right: 15px;
}
/*.pagination-box ul li.previousLink{
    position: absolute;
    left: 0;
}
.pagination-box ul li.nextLink{
    position: absolute;
    right: 0;
}*/
.pagination-box ul li a {
  background: var(--lightgray);
  border-radius: 0;
  color: var(--darkgray);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  align-items: center;
  line-height: 1;
  padding: 16px 21px;
  font-weight: normal;
  text-decoration: none;
  border: 1px solid var(--darkgray) !important;
}
.pagination-box ul li a img {
  transition: all 0.3s;
}
.pagination-box ul li:last-child {
  border-radius: 0;

  margin: 0;
}

.pagination-box ul li.previousLink a,
.pagination-box ul li.nextLink a {
  padding: 0.4rem 0.4rem;
  border: 0 !important;
  font-weight: 600;
  font-size: 18px;
  text-decoration: underline;
}
.pagination-box ul li a:hover {
  /*background: var(--green);*/
  color: var(--green);
}
.pagination-box ul li:first-child a img {
  transform: rotate(357deg);
}
.pagination-box ul li:first-child a:hover img {
  transform: rotate(315deg);
  transition: all 0.3s;
}
.pagination-box ul li a:hover img {
  /*filter: brightness(100);*/
  transform: rotate(45deg);
  transition: all 0.3s;
  filter: hue-rotate(57deg) brightness(10);
}
.pagination > .active > a img {
  filter: brightness(100);
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  color: var(--white);
  cursor: default;

  background: var(--green);
}

.newsletter .input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  justify-content: center;
}
.newsletter input {
  background: transparent;
  color: var(--darkgray);
  background: var(--white);
  width: 35%;
  border: 0;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  margin-right: 5px;
}
.newsletter button.btn {
  background: #000;
  border: none;
  display: flex;
  width: 100%;
  color: #fff;
  padding: 13px;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  border: 1px solid transparent;
  height: 50px;
}
.newsletter button.btn:hover {
  background: var(--green);
  border: 1px solid #fff;
}

.breadcrumb_sec {
  padding: 0;
}
.breadcrumb_sec ul {
  margin: 0;
}

.industries_serve_sec {
  background: var(--lightgray);
  padding-top: 30px;
  padding-bottom: 126px;
}
.industries_serve_sec .heading {
  text-align: center;
  width: 67%;
  margin: 0 auto 54px;
}
.industries_serve_sec .heading p {
  font-size: 18px;
  letter-spacing: -0.55px;
}
.industries_serve_sec .industries_Menu {
  width: 82%;
  margin: 0 auto 30px;
  text-align: center;
}
.industries_serve_sec .industries_Menu ul {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.industries_serve_sec .industries_Menu ul li {
  display: inline-block;
  /*margin-right: 10px;*/
}
.industries_serve_sec .industries_Menu ul li:last-child {
  margin: 0;
}
.industries_serve_sec .industries_Menu ul li a {
  font-size: 20px;
  background: var(--darkgray);
  padding: 8px 23px 8px 30px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  letter-spacing: -0.6px;
}
.industries_serve_sec .industries_Menu ul li a span {
  color: var(--neon);
  font-size: 14px;
  padding-right: 5px;
}
.industries_serve_sec #tab-1.industries_serve {
  padding-bottom: 78px;
}
.industries_serve_sec #tab-3.industries_serve {
  padding: 81px 0;
}
.industries_serve_sec .industries_serve {
  flex-direction: row-reverse;
  display: flex;
  padding: 46px 0;
  border-bottom: 1px solid #61696429;
  justify-content: space-between;
}
.industries_serve_sec .industries_serve ul {
  margin: 0 0 43px;
}
.industries_serve_sec .industries_serve ul li {
  font-size: 18px;
}
.industries_serve_sec .industries_serve ul li:after {
  top: 7px;
}
.industries_serve_sec .dont_reverse {
  flex-direction: unset;
  padding: 81px 0;
}
.industries_serve_sec .dont_reverse .industries_serve_text {
  padding-left: 45px;
  padding-right: 0 !important;
}
.industries_serve_sec .dont_reverse .industries_serve_text p {
}

.industries_serve_sec #tab-4.industries_serve .industries_serve_text .Heading {
  width: auto;
}
.industries_serve_sec .video_thumbnail {
  position: relative;
  cursor: pointer;
  width: 604px;
  height: 506px;
}
.industries_serve_sec .video_thumbnail .thumbnail_image {
  width: 100%;
  object-fit: cover;
  /* filter: brightness(0.5); */
  border-radius: 0;
}
.industries_serve_sec .video_thumbnail .play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
  pointer-events: none;
}
.industries_serve_sec .video_thumbnail .play_button img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.industries_serve_sec .video-player {
  display: none;
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin-top: 20px;
}

.industries_serve_sec .industries_serve .industries_serve_text {
  width: 50%;
  padding-right: 60px;
}
.industries_serve_sec .industries_serve .industries_serve_text .Heading {
  display: flex;
  width: 68%;
}
.industries_serve_sec .industries_serve .industries_serve_text .Heading h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -2.3px;
  margin: 0 0 32px;
}
.industries_serve_sec .industries_serve .industries_serve_text span {
  color: var(--green);
  font-size: 14px;
  padding-right: 5px;
}
.industries_serve_sec .industries_serve .industries_serve_text p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.7px;
}
.industries_serve_sec .industries_serve .industries_serve_text ul li {
  line-height: 27px;
  padding-left: 27px;
  letter-spacing: -0.5px;
}
.industries_serve_sec .industries_serve .industries_serve_text .btn {
  padding: 13px 26px 13px 29px;
  gap: 1px;
  letter-spacing: -0.9px;
}
.industries_serve_sec .industry_box .user-profile {
  margin: 0 auto 27px;
}
.industries_serve_sec .industry_box {
  text-align: center;
  padding: 80px 0 0;
}
.industries_serve_sec .industry_box h2 {
  font-size: 40px;
  letter-spacing: -2px;
}

.industries_serve_sec .industry_box .btn {
  margin: 0 auto;
  padding: 13px 16px 13px 22px;
}

.industries_serve_sec .industry_box .profile-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.industries_serve_sec .industry_box .profile-images img {
  width: 100%;
  height: 100%;
}
.industries_serve_sec .industry_box .profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  position: relative;
  margin: 0 -13px;
}

.industries_serve_sec .industry_box .profile-img.active {
  border-color: var(--white);
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 1;
}
.industries_serve_sec .industry_box .profile-img.active:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 2px solid #fff;
  width: 10px;
  height: 10px;
  background: var(--green);
  bottom: -3px;
  right: 11px;
}

.why_choose_sec {
  background: var(--green);
  position: relative;
}
.why_choose_sec:before {
  position: absolute;
  content: "";
  top: -200px;
  left: 0;
  width: 200px;
  height: 400px;
  background: #c2c2c21a;
  border-radius: 0 200px 200px 0;
  transform: scale(1.8);
  z-index: 0;
}

.why_choose_sec:after {
  position: absolute;
  content: "";
  background: url(../img/shap-3.png) no-repeat;
  right: 0;
  bottom: 0;
  width: 240px;
  height: 150px;
  z-index: 0;
  background-size: contain;
}
.why_choose_sec .heading {
  margin: 0 0 50px;
  text-align: center;
}
.why_choose_sec h2 {
  color: var(--white);
  margin: 0 0 40px;
}
.why_choose_sec .why_choose_box p {
  color: #ffffff;
  margin: 0;
  font-size: 22px;
  font-size: 100;
  letter-spacing: -0.5px;
  line-height: 28px;
}
.why_choose_sec .container {
  position: relative;
  z-index: 1;
}
.why_choose_sec .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px 60px;
  margin: 0 0 85px;
}
.why_choose_sec .why_choose_box {
  border-left: 1px solid var(--neon);
  padding: 0 0 0 23px;
  margin-bottom: 0px;
}
.why_choose_sec .why_choose_box .img {
  margin-bottom: 20px;
  height: 45px;
}
.why_choose_sec .why_choose_box .img img {
  width: 45px;
}
.why_choose_sec .bottom_text {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
.why_choose_sec .bottom_text p {
  margin: 0 0 33px;
  font-size: 32px;
  font-weight: 100;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -1.1px;
}
.why_choose_sec .bottom_text a.btn {
  background: var(--neon);
  color: var(--darkgray);
  margin: 0 auto;
}
.why_choose_sec .bottom_text a.btn .btn-arrow {
  filter: unset;
}

.video-player {
  width: 100%;
}
.video-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/*--------------------- faq_page ------------------*/
.faq_page {
  background: var(--lightgray);
  padding-top: 32px;
}
.faq_page .heading {
  text-align: center;
  margin-bottom: 60px;
}
.faq_page .heading h2 {
  margin: 0 0 31px;
}
.faq_page .heading p {
  font-size: 21px;
}
.search-form.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  justify-content: center;
  max-width: 653px;
  margin: 0 auto;
}
.search-form input {
  background: transparent;
  color: var(--darkgray);
  background: var(--white);
  width: 100%;
  max-width: 488px;
  border: 0;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  margin-right: 5px;
  border: 1px solid #efefef;
}
.search-form button.btn {
  background: #000;
  border: none;
  display: flex;
  width: 100%;
  color: #fff;
  padding: 13px 30px;
  align-items: center;
  font-size: 18px;
  justify-content: center;
}
.search-form button.btn:hover {
  background: var(--green);
  cursor: pointer;
}
.faq_page .wraper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.faq_page .wraper .faq_menu {
  width: 30%;
  margin-right: 30px;
  position: sticky !important;
  top: 140px;
}
.faq_page .wraper .faq_menu ul li {
  margin-bottom: 5px;
  width: 100%;
  display: flex;
  max-width: 220px;
  /*height: 50px;*/
}
.faq_page .wraper .faq_menu ul li a {
  background: var(--white);
  border: 1px solid #070707;
  padding: 10px 30px 10px 28px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.faq_page .wraper .faq_menu ul li a:after {
  content: "";
  float: right;
  background: url(../img/arrow-up-right.svg) no-repeat;
  display: flex;
  align-items: center;
  transition: transform, 0.3s;
  position: absolute;
  width: 80px;
  height: 50px;
  right: 0;
  top: 0;
  background-size: 30px;
  background-position: 50% 50%;
}
.faq_page .wraper .faq_menu ul li a:hover {
  background: var(--green);
  color: var(--white);
  transition: all 0.3s;
  border-color: var(--green);
}
.faq_page .wraper .faq_menu ul li a:hover::after {
  transform: rotate(45deg);
  filter: brightness(100);
  transition: transform, 0.3s;
}
.faq_page .wraper .faq_content {
  width: 100%;
  padding-left: 10px;
}
.faq_page .wraper .faq_content .menu_content_1 {
  margin-bottom: 15px;
  background: var(--white);
  padding: 40px;
  border: 1px solid #efefef;
}
.faq_page .wraper .faq_content .menu_content_1 h3 {
  font-size: 22px;
}
.faq_page .wraper .faq_content .menu_content_1 .grid-2 {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}
.faq_page .wraper .faq_content .menu_content_1 .grid-2 .VideoBox {
  height: 230px;
}
.faq_page .wraper .faq_content .menu_content_1 .grid-2 .VideoBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq_page .wraper .faq_content .video_thumbnail {
  position: relative;
  cursor: pointer;
  height: 100%;
}
.faq_page .wraper .faq_content .video_thumbnail .thumbnail_image {
  width: 100%;
  object-fit: cover;
  /* filter: brightness(0.5); */
  border-radius: 0;
}
.faq_page .wraper .faq_content .video_thumbnail .play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
  pointer-events: none;
}
.faq_page .wraper .faq_content.video_thumbnail .play_button img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.faq_page .wraper .faq_content .video-player {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0px;
}

.faq_page .wraper .faq_content .menu_content_1:last-child {
  margin: 0;
}
.faq_page .wraper .faq_content a.btn2 {
  background: transparent;
  color: var(--darkgray);
  border: 0;
  border-bottom: 2px solid var(--darkgray);
  padding: 0;
}
.faq_page .wraper .faq_content a.btn2 .btn-arrow {
  filter: none;
}
.faq_page .faq_content .faqs-grid {
  margin-right: 0px;
}

.faq_page .faq_content .faqs-grid .faqs-item {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 18px 40px;
  display: block;
  border: 0;
  background: var(--lightgray);
  border-radius: 0px;
  cursor: pointer;
}

.faq_page .faq_content .faqs-grid .faqs-title {
  display: flex;
  position: relative;
  color: var(--darkgray);
  background: var(--lightgray);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  padding: 0 0px 2px;
  outline: none;
  transition: 0.4s;
}

.faq_page .faq_content .faqs-grid .faqs-title:hover {
  color: var(--darkgray);
  background: var(--lightgray);
}

.faq_page .faq_content .faqs-grid .faqs-title.active {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 15px;
}

.faq_page .faq_content .faqs-grid .faqs-title:after {
  content: "";
  background: url(../img/arrow-down-green.svg) no-repeat;
  width: 20px;
  height: 10px;
  display: block;
  background-position: 50% 0%;
  position: absolute;
  right: 0;
  top: 10px;
  background-size: 10px;
  transition: all 0.3s;
}

.faq_page .faq_content .faqs-grid .active:after {
  transform: rotate(180deg);
  transition: all 0.3s;
  background-position: 0% 0%;
}

.faq_page .faq_content .faqs-grid .faqs-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--lightgray);
  box-shadow: none;
  transition: max-height 0.2s ease-out;
}
.faq_page .faq_content .faqs-grid .faqs-content p {
  font-weight: 200;
}

.faq_page .faq_content .faqs-grid .faqs-content p:last-child {
  margin: 0;
}

.faq_page .faq_content .faqs-grid .faqs-content-inside {
  padding: 20px 0;
}

/*--------------------- blog_page ------------------*/
.blog_page {
  background: var(--lightgray);
  padding-top: 30px;
  padding-bottom: 128px;
}
.blog_page h2 {
  margin: 0 0 40px;
}
.blog_page .heding {
  text-align: center;
}
.blog_page .grid {
  display: grid;
  display: flex;
  grid-gap: 30px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.blog_page .grid .one_img {
  max-width: 745px;
  width: 100%;
}
.blog_page .grid .two_img {
  width: 100%;
  max-width: 523px;
}
.blog_page .blog_box {
  margin: 0 0 20px;
  position: relative;
  height: 596px;
}
.blog_page .one_img .blog_box .blog_img {
  height: 596px;
}
.blog_page .blog_box .blog_img {
  position: relative;
}
.blog_page .blog_box .blog_img img {
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.blog_page .two_img .blog_box,
.blog_page .two_img .blog_box .blog_img {
  height: 287px;
}
.blog_page .two_img .blog_box img {
  height: 100%;
}
.blog_page .blog_box .blog_text a {
  letter-spacing: -1px;
}
.blog_page .two_img .blog_box .blog_text {
  padding: 40px 40px;
}
.blog_page .two_img .blog_box .blog_text h3,
.blog_page .two_img .blog_box .blog_text .h3 {
  font-size: 22px;
}

.blog_page .blog_box .blog_text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 50px;
  color: var(--white);
}
.blog_page .blog_box .blog_text h3,
.blog_page .blog_box .blog_text .h3 {
  font-size: 38px;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.blog_page .blog_box .blog_text ul {
  margin: 0 0 10px;
}
.blog_page .blog_box .blog_text ul li {
  display: inline-block;
  position: relative;
  margin-right: 18px;
  font-size: 16px;
  font-weight: 100;
  padding-right: 10px;
}
.blog_page .blog_box .blog_text ul li span {
  margin-left: 5px;
}
.blog_page .blog_box .blog_text ul li:last-child {
  margin: 0;
  padding: 0;
}
.blog_page .blog_box .blog_text ul li:last-child::before {
  display: none;
}
.blog_page .blog_box .blog_text ul li::before {
  position: absolute;
  content: "|";
  top: 0;
  right: -8px;
  bottom: 0;
}

.blog_page .blog_newsletter {
  background: var(--darkgray);
  display: flex;
  align-items: center;
  padding: 50px 121px;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}
.blog_page .blog_newsletter::after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0;
  width: 100px;
  height: 100px;
  background: #c2c2c21a;
  border-radius: 0 0 0 100%;
}
.blog_page .blog_newsletter:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: 190px;
  height: 200px;
  background: url(../img/shape-7.png) no-repeat;
  background-size: 200px;
  background-position: 0 0;
}

.blog_page .blog_newsletter .newsletter_text h3,
.blog_page .blog_newsletter .newsletter_text .h3 {
  color: var(--white);
  margin: 0;
  letter-spacing: -2.3px;
  line-height: 30px;
}
.blog_page .blog_newsletter .newsletter_text {
  margin-right: 13px;
  width: 100%;
}
.blog_page .blog_newsletter .newsletter {
  width: 100%;
  z-index: 1;
}
.blog_page .blog_newsletter .newsletter .input-group {
  flex-wrap: unset;
  justify-content: flex-start;
}
.blog_page .blog_newsletter .newsletter .input-group input {
  width: 69%;
}
.blog_page .blog_newsletter .newsletter .input-group-btn {
  width: 30%;
}
.blog_page .blog_newsletter .newsletter button.btn {
  background: var(--green);
  border: none;
  display: flex;
  color: #fff;
  padding: 13px;
  align-items: center;
  font-size: 18px;
}
.blog_page .blog_newsletter .newsletter button.btn:hover {
  background: var(--darkgray);
}

.blog_page .blog_content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.blog_page .blog_content .content-part {
  width: 68%;
}
.blog_page .blog_content .blogs_box {
  display: flex;
  padding-bottom: 50px;
  border-bottom: 1px solid #28282829;
  margin-bottom: 18px;
  padding-top: 30px;
}
.blog_page .blog_content .blogs_box .img {
  width: 100%;
  max-width: 300px;
  display: flex;
  margin-right: 30px;
  height: 282px;
}
.blog_page .blog_content .blogs_box .img img {
  /*border: 1px solid var(--darkgray);*/
  margin-right: 20px;
  width: 100%;
  height: 100%;
}
.blog_page .blog_content .blogs_box .text {
  width: 100%;
}
.blog_page .blog_content .blogs_box .text span {
  display: block;
  margin: 0 0 17px;
  color: #616964;
}
.blog_page .blog_content .blogs_box .text ul {
  margin: 0 0 15px;
}
.blog_page .blog_content .blogs_box .text ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #282828;
}
.blog_page .blog_content .blogs_box .text ul li a {
  text-decoration: none;
  background: var(--white);
  padding: 7px 20px;
}
.blog_page .blog_content .blogs_box .text h3,
.blog_page .blog_content .blogs_box .text .h3 {
  font-size: 30px;
  margin: 0 0 15px;
  color: #282828;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}
.blog_page .blog_content .blogs_box .text p {
  color: #282828;
  font-weight: 100;
  line-height: 1.4;
  margin: 0 0 25px;
  margin-bottom: 22px;
}
.blog_page .blog_content .blogs_box .text a.btn {
  background: transparent;
  color: var(--darkgray);
  padding: 0;
  position: relative;
  border: 0;
}
.blog_page .blog_content .blogs_box .text a.btn:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}
.blog_page .blog_content .blogs_box .text a.btn::before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 2px;
  width: 75%;
  left: 0;
  background: var(--darkgray);
}
.blog_page .blog_content .blogs_box .text a.btn:hover::before {
  background: var(--green);
}

.blog_page .blog_content .blogs_box .text a.btn:hover .btn-arrow {
  filter: hue-rotate(57deg) brightness(10);
}
.blog_page .blog_content .blogs_box .text a.btn .btn-arrow {
  filter: unset;
}
.blog_page .blog_content .pagination-box {
  margin-bottom: 70px;
  margin-top: 53px;
}
.blog_page .blog_content .pagination-box .pagination .pagination__lists {
  display: flex;
  align-items: center;
  width: 527px;
  position: relative;
  justify-content: center;
}
.blog_page .Let_friends {
  padding: 42px 50px 40px;
}
.blog_page .Let_friends .text p {
  margin: 0px 0 17px;
}
.blog_page .newslettercenter .blog_newsletter .newsletter .input-group {
  max-width: 521px;
  margin: 0;
}
.blog_page .newslettercenter .blog_newsletter .newsletter .input-group input {
  width: 362px;
  margin: 0;
}
.blog_page
  .newslettercenter
  .blog_newsletter
  .newsletter
  .input-group
  .input-group-btn {
  width: 155px;
  display: inline-block;
}
.blog_page .newsletter .input-group,
.blog_single_page .newsletter .input-group {
  max-width: 448px;
  margin: 22px auto 0;
  display: block;
}
.blog_single_page .grid_box .newsletter .input-group {
  margin: 17px auto 0;
}
.blog_page .content-part .Let_friends .newsletter input,
.blog_single_page .blog_single_content .Let_friends .newsletter input {
  width: 283px;
  margin: 0;
}
.blog_page .content-part .Let_friends .newsletter .input-group-btn,
.blog_single_page
  .blog_single_content
  .Let_friends
  .newsletter
  .input-group-btn {
  width: 160px;
  display: inline-block;
}
.blog_single_page .Let_friends .text p {
  margin: 0px 0 12px;
}
.Let_friends:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 180px;
  height: 260px;
  background: url(../img/shape-let.webp) no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.Let_friends:after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 290px;
  height: 170px;
  background: url(../img/friends-shape.png) no-repeat;
  border-radius: 0 100% 0 0;
  background-size: contain;
}
.Let_friends {
  background: var(--green);
  text-align: center;
  padding: 50px;
  position: relative;
}
.Let_friends .text {
  width: 70%;
  margin: 0 auto;
}

.Let_friends .text p {
  color: var(--white);
  margin: 20px 0 25px;
  font-size: 18px;
  font-weight: 100;
}
.Let_friends .text h3,
.Let_friends .text .h3 {
  color: var(--white);
  margin: 0 0 5px;
  font-size: 30px;
}
.Let_friends .profile-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
}
.Let_friends .img1 {
  right: -20px;
}
.Let_friends .img3 {
  right: 20px;
}
.Let_friends .profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  position: relative;
}
.Let_friends .profile-img.active {
  border-color: var(--green);
  width: 100px;
  height: 100px;
  z-index: 1;
  position: relative;
}
.Let_friends .profile-img.active:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--neon);
}
.Let_friends .newsletter input {
  width: 70%;
}
.SideBar {
  max-width: 300px;
  position: sticky !important;
  top: 100px;
  padding-top: 30px;
}
.SideBar > div {
  margin: 0 0 30px;
}
.SideBar h3,
.SideBar .h3 {
  font-size: 30px;
  margin: 0 0 16px;
}
.SideBar .blog_categories ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 12px;
}
.SideBar .blog_categories ul li:last-child {
  margin: 0;
}
.SideBar .blog_categories ul li a {
  padding: 6px 16px;
  text-decoration: none;
  background: var(--white);
  font-size: 14px;
}
.SideBar .Let_friends .text h3 {
  font-size: 22px;
}
.SideBar .Let_friends .text p {
  font-size: 16px;
}
.SideBar .Let_friends {
  padding: 30px 40px;
  background: url(../img/subscribe-bg.png) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.SideBar .Let_friends::after {
  display: none;
}
.SideBar .Let_friends::before {
  display: none;
}
.SideBar .Let_friends .text {
  width: 100%;
}
.SideBar .Let_friends .newsletter input {
  width: 100%;
  margin: 0 0 5px;
  text-align: center;
  font-size: 16px;
}
.SideBar .newsletter .input-group-btn {
  width: 100%;
  text-align: center;
}
.SideBar .newsletter button.btn {
  background: #000;
  border: none;
  display: flex;
  width: 100%;
  color: #fff;
  padding: 13px;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  transition: all 0.3s;
}
.SideBar .newsletter button.btn:hover {
  transition: all 0.3s;
  background: var(--midkgray);
  cursor: pointer;
}
/*--------------------- blog_single_page ------------------*/

.blog_single_page {
  background: var(--lightgray);
  padding-top: 20px;
}
.blog_single_page .grid_box {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
}
.blog_single_page .grid_box .blog_single_content {
  width: 68%;
}
.blog_single_page .grid_box .SideBar {
  position: sticky !important;
  top: 100px;
  padding-top: 4px;
}
.blog_single_page .blog_single_content h3,
.blog_single_page .blog_single_content .h3 {
  font-size: 30px;
  line-height: 1.2;
}
.blog_single_page .blog_single_content h4,
.blog_single_page .blog_single_content .h4 {
  font-size: 20px;
  line-height: 1.3;
}
.blog_single_page .blog_single_content .images_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.blog_single_page .blog_single_content .images_box p {
  margin: 0;
}
.blog_single_page .blog_single_content .images_box .VideoBox .video_thumbnail {
  width: 100%;
  height: auto;
}

.blog_single_page .blog_single_content .images_box img {
  width: 100%;
}
.blog_single_page .blog_single_content a.single_blog_btn {
  background: transparent;
  color: var(--darkgray);
  border: 0;
  padding: 0;
  text-decoration: underline;
}
.blog_single_page .blog_single_content .single_blog_btns {
  margin: 10px 0 36px;
}
.blog_single_page .blog_single_content .date ul {
  padding: 0;
  margin: 0 0 20px;
}
.blog_single_page .blog_single_content .date ul li {
  display: inline-block;
  font-size: 14px;
}
.blog_single_page .blog_single_content .date ul li::before {
  display: none;
}
.blog_single_page .blog_single_content .date ul li a {
  padding: 9px 20px;
  text-decoration: none;
  background: var(--white);
  margin-right: 10px;
}
.blog_single_page .blog_single_content .date span {
  color: #616964;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}
.blog_single_page .blog_single_content .img img {
  margin-bottom: 20px;
  height: 100%;
}
.blog_single_page .blog_single_content a.single_blog_btn .btn-arrow {
  filter: none;
  margin-left: -5px;
}
.blog_single_page .blog_single_content a.single_blog_btn:hover .btn-arrow {
  transform: rotate(-42deg);
}

.blog_single_page .blog_single_content blockquote {
  background: var(--green);
  padding: 30px;
  text-align: center;
  margin: 35px 0;
}
.blog_single_page .blog_single_content blockquote p {
  margin: 0;
  font-size: 30px;
  line-height: 1.3;
  color: var(--white);
}
.blog_single_page .blog_single_content .dac_btn {
  margin-bottom: 25px;
}
.blog_single_page .blog_single_content .dac_btn a.btn {
  background: transparent;
  color: var(--green);
  border: 0;
  padding: 0;
  font-size: 18px;
  text-decoration: underline;
}
.blog_single_page .blog_single_content .dac_btn a.btn .btn-arrow {
  filter: hue-rotate(90deg);
}
.blog_single_page .blog_single_content .images_box {
  margin-bottom: 25px;
}
/*.blog_single_page .blog_single_content p{
  margin: 0 0 25px;
}*/
.blog_single_page .blog_single_content .img {
  margin-bottom: 33px;
  height: 400px;
  width: 100%;
  display: flex;
}
.blog_single_page .blog_single_content .img img {
  object-fit: cover;
}

.blog_single_page .blog_single_content .share_this_article {
  padding: 50px 0 73px;
  text-align: center;
  border-top: 1px solid;
}
.blog_single_page .blog_single_content .share_this_article h3 {
  font-size: 40px;
}
.blog_single_page .blog_single_content .share_this_article ul li::before {
  display: none;
}
.blog_single_page .blog_single_content .share_this_article ul li {
  display: inline-block;
  margin-right: 10px;
  align-items: center;
}
.blog_single_page .blog_single_content .share_this_article ul li a {
  border: 1px solid var(--darkgray);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.blog_single_page .blog_single_content .share_this_article ul li:last-child {
  margin: 0;
}
.blog_single_page .blog_single_content .share_this_article ul li img {
  width: 20px;
  filter: brightness(0%);
}