/**
* /* banner css
*
* @format
*/

.banner_area {
  padding: 220px 0px 300px;
  position: relative;
  border-top-right-radius: 35px;
  border-bottom-left-radius: 35px;
}
.promo_text {
  position: absolute;
  font-size: 14px;
  letter-spacing: 1.5em;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-180deg) translateY(60%);
  top: 50%;
  white-space: nowrap;
  writing-mode: vertical-rl;
  right: 20px;
}
.banner_content {
  margin-right: -70px;
  padding-left: 70px;
}

.banner_content h2 {
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin-bottom: 15px;
}
.banner_content h2 span {
  font-style: italic;
}
.banner_content p {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  margin-bottom: 1.8em;
}
.inspection_form p {
  margin-bottom: 10px;
}
.inspection_form .theme_btn {
  width: 100%;
  margin-top: 0;
}
.theme_btn,
.newsletter-form input[type="submit"],
.inspection_form .theme_btn {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 35px 13px;
  display: inline-block;
  line-height: 2;
  border-radius: 5px;
  background-image: linear-gradient(
    to right,
    rgb(215, 20, 38),
    rgb(215, 48, 0),
    rgb(215, 48, 0),
    rgb(215, 20, 38)
  );
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
  color: #fff;
  letter-spacing: 0.1em;
  border: 0px;
}
.newsletter-form input[type="submit"] {
  padding: 12px 35px 10px;
  font-size: 14px;
}
.theme_btn i {
  margin-left: 3px;
  transition: all 0.3s;
}
.theme_btn:hover i {
  transform: translateX(10px);
}
.theme_btn:hover {
  color: #fff;
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 7px 15px 0 rgba(215, 20, 38, 0.15);
}

/* banner css  */

/* title css  */
.dl_title_section {
  display: flex;
  flex-direction: column;
}
.dl_title_section .dl_sub_title_text.before:before,
.dl_title_section .dl_sub_title_text.after:after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 2px;
  background: #ff4f60;
  vertical-align: middle;
}
.dl_title_section .dl_sub_title_text.before:before {
  margin-right: 5px;
}
.dl_title_section .dl_sub_title_text.after:after {
  margin-left: 5px;
}
.white .dl_title_section .dl_sub_title_text.before:before,
.white .dl_title_section .dl_sub_title_text.after:after {
  background: #fff;
}
/* title css  */

/* about_image css  */
.about_image {
  background: #006495;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  /*clip-path: polygon(-17% 6%, 100% 0%, 100% 100%, 0 100%, 0% 12%);
border-top-left-radius: 60px;*/
  transform: skew(0deg, -4deg);
}
.about_image .text {
  font-size: 900px;
  font-family: "Roboto";
  font-weight: 900;
  background: url("../img/text-img.png") no-repeat center left;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 0.66;
  position: relative;
  left: 55px;
  text-shadow: -1px 50px 10px rgba(0, 0, 0, 0.18);
}
/* about_image css  */

/* service slider  */
.slider_nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider_nav::before,
.slider_nav:after {
  content: "";
  width: 70px;
  height: 1px;
  background: #84888c;
  display: inline-block;
}
.slider_nav .arrow {
  --active: #84888c;
  --border: #84888c;
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin: 0px 10px;
}

/* .slider_nav .arrow i {
display: block;
position: absolute;
margin: -10px 0 0 -10px;
width: 20px;
height: 20px;
left: 50%;
top: 50%;
} */

/* .slider_nav .arrow:before,
.slider_nav .arrow:after {
content: '';
display: block;
position: absolute;
left: 1px;
right: 1px;
top: 1px;
bottom: 1px;
border-radius: 50%;
border: 2px solid var(--border);
} */
.slider_nav .arrow svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: #ff3318;
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slider_nav .arrow.animate i:before,
.slider_nav .arrow.animate i:after {
  background: #ff3318;
}
.slider_nav .arrow.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}
.slider_nav .arrow.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}
.slider_nav .arrow.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}
.arrow.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.slider_inner {
  margin-left: -15px;
  margin-right: -15px;
}
.service_slider_item {
  padding-left: 15px;
  padding-right: 15px;
}

.service_item {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 30px 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service_item:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #ff3318;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s linear;
  z-index: -1;
}
.service_item .icon {
  width: 118px;
  height: 118px;
  border: 1px dashed #c3bbbb;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s linear;
  margin-bottom: 25px;
}
.service_item h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1c242c;
  font-family: "Roboto", sans-serif;
  transition: color 0.4s;
  margin-bottom: 25px;
  margin-top: 0;
}
.service_btn {
  display: inline-block;
  position: relative;
  transition: all 0.2s linear;
}
.service_btn:before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  background: #ff3318;
  right: 0;
  top: 0;
  border-radius: 25px;
  transition: width 0.4s;
}
.service_btn:hover {
  width: 61px;
  text-align: right;
}
.service_btn:hover::before {
  width: 61px;
}
.service_btn span {
  display: block;
  width: 50px;
  text-align: right;
  transition: transform 0.15s linear;
  position: relative;
  z-index: 3;
}

.service_btn i:after {
  content: "";
  width: 32px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 14px;
  transition: all 0.3s ease;
}
.service_item:hover:before {
  height: 100%;
}
.service_item:hover .icon {
  background: #fff;
  border-color: #fff;
}
.service_item:hover h3 {
  color: #fff;
}
.service_item:hover .service_btn {
  width: auto;
  padding: 0px 2px 0px 10px;
}
.service_item:hover .service_btn::before {
  background: #fff;
}

/* service slider  */
/* construx_team_item css  */
.construx_team_item {
  position: relative;
  padding-bottom: 55px;
  margin-bottom: 60px;
  overflow: hidden;
  cursor: pointer;
}
.construx_team_item .team_img {
  overflow: hidden;
  border-radius: 50px;
  display: block;
}
.construx_team_item .team_img img {
  transition: all 0.2s linear;
  border-radius: 50px;
}
.construx_team_item .team_content {
  background: #fff;
  border-radius: 24px;
  padding: 15px 50px 15px 30px;
  position: absolute;
  bottom: 0px;
  right: 30px;
  left: 30px;
  transition: all 0.3s;
  overflow: hidden;
}
.construx_team_item .team_content .text {
  flex: 1;
}
.construx_team_item .team_content .text a {
  display: block;
}
.construx_team_item .team_content h3 {
  margin-top: 0;
  font-size: 40px;
  font-weight: 600;
  color: #02022f;
  font-family: "Barlow Condensed", Sans-serif;
  margin-bottom: 7px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.construx_team_item .team_content:hover h3 {
  color: #4cce16;
}
.construx_team_item .team_content .job_position {
  font-size: 17px;
  font-weight: 400;
  color: #515153;
  font-family: "Montserrat", Sans-serif;
  text-transform: uppercase;
}
.construx_team_item:hover img {
  transform: scale(1.06);
}
.construx_team_item .service_btn {
  position: absolute;
  right: 0;
  top: 0;
  background: #646472;
  width: 50px;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.2s linear;
}
.construx_team_item .team_content:hover .service_btn {
  background: #4cce16;
}
.construx_team_item .service_btn:before,
.construx_team_item .service_btn i:after {
  display: none;
}
/* construx_team_item css  */
.testimonial_slider_inner .slick_slider .item {
  margin: 0px 15px;
}
.testimonial_slider_inner .slick-track {
  display: flex;
}
.testimonial_slider_inner .slick-slide {
  min-height: 100%;
  height: auto;
}
.testimonial_content {
  position: relative;
  background: #fff;
  padding: 30px;
  height: 100%;
}
.testimonial_content p {
  max-height: 210px;
  overflow: hidden;
  height: 100%;
}
.testimonial_content .d-flex {
  border-top: 1px solid #c2c2c2;
  padding-top: 10px;
}
.magnet {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: all 0.5s ease;
}

/* latest_blog_post css */
.latest_blog_post {
  border-radius: 20px;
}
.latest_blog_post .blog_img {
  position: relative;
  padding-bottom: 0px;
}
.latest_blog_post .blog_img .img {
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.latest_blog_post .blog_img .img img {
  transition: all 0.5s linear;
}
.latest_blog_post .blog_img .post_date {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #fff;
  padding: 6px 21px;
  border-radius: 6px;
  background: #136ab2;
  left: 10px;
  bottom: 0px;
  z-index: 1;
  position: absolute;
}
.latest_blog_post:hover .blog_img img {
  transform: scale(1.06);
}
.latest_blog_post .post_content {
  padding-top: 25px;
}
.latest_blog_post .post_content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #242424;
  line-height: 30px;
}
.latest_blog_post .post_content .read_btn {
  position: relative;
  color: #e31a1a;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes under_line {
  0% {
    transform: translate(0px, 0px) scale(1, 1);
    transform-origin: 100% 50%;
  }
  49% {
    transform: translate(0px, 0px) scale(0, 1);
    transform-origin: 100% 50%;
  }
  50% {
    transform: translate(0px, 0px) scale(0, 1);
    transform-origin: 0% 50%;
  }
  51% {
    transform: translate(0px, 0px) scale(0, 1);
    transform-origin: 0% 50%;
  }
  99% {
    transform: translate(0px, 0px) scale(1, 1);
    transform-origin: 0% 50%;
  }
  100% {
    transform: translate(0px, 0px) scale(1, 1);
    transform-origin: 100% 50%;
  }
}
/* latest_blog_post css */

/* blog_list_inner css */
/* .blog_list_inner {
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  padding: 20px 30px 0px;
} */
.blog_list_item {
  padding: 15px;
  background: #fff;
  border-radius: 20px;
}
.blog_list_item + .blog_list_item {
  margin-top: 30px;
}
.blog_list_item .blog_img {
  border-radius: 20px;
  margin-right: 20px;
  overflow: hidden;
}
.blog_list_item .blog_img img {
  height: 100%;
  object-fit: cover;
}
.blog_list_item .post_content {
  flex: 1;
}
.blog_list_item .post_content .read_btn {
  color: #1d1de3;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
}
.blog_list_item .post_content p {
  color: #1e1e1e;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog_list_item h2 {
  font-size: 28px;
  color: #1e1e1e;
  font-family: "Montserrat", Sans-serif;
  line-height: 1.2;
  transition: color 0.2s;
}
.blog_list_item h2:hover,
.blog_list_item .post_content .read_btn:hover {
  color: #11542d;
}
.blog_list_item .post_date {
  font-size: 17px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #969696;
}
/* blog_list_inner css */
.portfolio-item {
  margin-bottom: 0px;
}

.portfolio_btn {
  background: #136ab2;
  font-size: 22px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  padding: 20px 30px;
  border-radius: 8px;
  display: block;
  text-align: center;
  color: #fff;
}
.portfolio_btn i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  line-height: 46px;
  color: #242424;
  font-size: 18px;
  display: inline-block;
  margin-left: 30px;
  transition: all 0.3s;
}
.portfolio_btn:hover i {
  transform: translateX(10px);
}
.portfolio_btn:hover {
  background: #d90429;
  color: #fff;
}
.portfolio-item .item-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e4232f;
}
.portfolio-item .item-img img {
  transition: all 0.9s;
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: all 0.9s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
}
.portfolio-item .item-img .item-hover {
  position: absolute;
  top: 15px;
  right: 15px;
}
.portfolio-item .item-img .item-hover .item-link {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #242424;
  margin: 5px 0px;
  transition: all 0.1s ease-in-out;
  opacity: 0;
}
.portfolio-item .item-img .item-hover .item-link:hover {
  background: #d90429;
  color: #fff;
  transition: all 0.3s linear;
  transition-delay: 0s !important;
  transition-duration: 0s !important;
}
.portfolio-item:hover .item-img img {
  opacity: 0.5;
  transform: translate3d(-5px, 0, 0) scale(1.1) rotate(3deg);
  -webkit-transform: translate3d(-5px, 0, 0) scale(1.1) rotate(3deg);
}
.portfolio-item:hover .item-img .item-link:first-child {
  opacity: 1;
  transition-delay: 0.3s;
  transition-duration: 0.5s;
}
.portfolio-item:hover .item-img .item-link + .item-link {
  opacity: 1;
  transition-delay: 0.4s;
  transition-duration: 0.5s;
}
/* popup_video  css  */
.popup_video {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.popup_video .icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d90429;
  position: relative;
  cursor: pointer;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.v_title {
  text-transform: uppercase;
  font-size: 15px;
  /* color: #fff; */
  margin-left: 25px;
  line-height: 1.3;
  margin-bottom: 0;
  flex: 1;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2),
      0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
  }
}

/* progress css  */
.progress-element p {
  letter-spacing: 0.25px;
  color: #646566;
  margin-bottom: 0;
  padding: 15px 0px 2px 0px;
}
.progress-element .progress .progress-bar {
  background: #505cfe;
  position: relative;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  width: 0%;
  transition: width 1s ease;
}

.fun_fact_icon_top {
  flex-direction: column;
}
.fun_fact_icon_left,
.fun_fact_icon_right {
  display: inline-flex;
  flex-wrap: wrap;
}
.fun_fact_icon_left {
  flex-direction: row;
  align-items: baseline;
}
.fun_fact_icon_right {
  flex-direction: row-reverse;
}
.counter_item i {
  font-size: 35px;
  margin-bottom: 25px;
}
.fun_fact_icon_left .t_color {
  margin-top: 0px;
}
.counter_item .t_color {
  font: 600 35px/40px "Roboto", sans-serif;
}
.counter_item p {
  margin-bottom: 0px;
  font-size: 16px;
}

.p_count_two {
  background: #fff;
  padding: 80px 0px;
}
.p_count_two .counter_item i {
  color: #ff214f;
}

/* project_slider_inner css  */
.project_slider_inner .slider_nav:before,
.project_slider_inner .slider_nav:after {
  display: none;
}
.project_slider_inner,
.project_slider_img {
  overflow: hidden;
}

.project_slider_inner .slider_nav .arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}
.project_slider_inner .slider_nav .arrow {
  right: 0px;
  transition: all 0.2s;
  opacity: 0;
  --active: #fff;
  --border: #fff;
  text-align: center;
  line-height: 2.7;
  color: #fff;
}
.project_slider_inner .slider_nav .arrow:before {
  display: none;
}
.project_slider_inner .slider_nav .arrow.left {
  right: auto;
  left: 0;
}
.happening_area:hover .slider_nav .arrow.left {
  left: -75px;
  opacity: 1;
  right: auto;
}
.happening_area:hover .slider_nav .arrow {
  right: -75px;
  opacity: 1;
}

.service_sidebar_item li a h3 {
  margin: 0px;
}
.service_sidebar_item li a {
  display: inline-block;
}

/*===========custom css=====*/
.testimonial_area .slick-arrow:before {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 0px;
}
.testimonial_area .slick-arrow.slick-prev {
  left: -85px;
}
.testimonial_area .slick-arrow.slick-prev:before {
  content: "\f060";
}
.testimonial_area .slick-arrow.slick-next:before {
  content: "\f061";
}
.testimonial_area .slick-arrow.slick-next {
  right: -85px;
}
.slider_inner .slick_slider .slick-list,
.slider_inner .slick_slider .slick-list .slick-track {
  display: flex;
}
.slider_inner .slick_slider .service_item {
  height: 100%;
}
.custom_link .dl_content_text a {
  position: relative;
  color: #333333;
  display: inline-block;
}
.custom_link .dl_content_text a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 2px;
}
/*==== newsletter css ===*/

.newsletter-form form input:placeholder {
  color: #afafaf;
}
.newsletter-form form input:-ms-input-placeholder {
  color: #afafaf;
}
.newsletter-form form input:-ms-input-placeholder {
  color: #afafaf;
}
.newsletter-form form .wpcf7-form-control-wrap {
  display: inline-block;
  margin-bottom: 0px;
}
.purchase_btn a {
  font-size: 18px;
  font-family: "Barlow", sans-serif;
  color: #a0a5b1;
}
.purchase_btn a:hover,
.f_contact_info a:hover,
.f_contact_info_two a:hover {
  color: #e31a1a;
}
.f_contact_info a,
.f_contact_info_two a {
  color: #fff;
}
.f_contact_info_two a {
  font-size: 22px;
}
.d-grid-list .elementor-icon-list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about_author_box .elementor-image-box-title {
  margin-top: 0px;
}
.skill_inner .elementor-widget-wrap.elementor-element-populated {
  max-width: 595px;
  margin-left: auto;
}
.progress-element .progress,
.progress-element .progress .progress-bar {
  overflow: visible;
}

.service_slider_item.ps-0 .service_item {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  padding: 30px 55px;
}
.projects_content .elementor-widget-wrap.elementor-element-populated {
  max-width: 444px;
  margin-left: auto;
  margin-right: 0;
}
.fact_inner .elementor-widget-wrap.elementor-element-populated {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 30px;
}
.portfolio-item .content {
  padding-top: 10px;
}
.portfolio-item .content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #242424;
  font-family: "Barlow", sans-serif;
  margin-bottom: 0px;
  transition: all 0.2s;
}
.portfolio-item .content span a {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #242424;
}
.portfolio-item:hover .content h3 {
  color: #d71426;
}
.service_sidebar_item li a h3 {
  margin: 0px;
}
.service_sidebar_item li a {
  display: inline-block;
}

.service_media .service_media_content {
  flex: 1;
}
.service_media .service_media_content h3 {
  font-size: 32px;
  font-weight: 900;
  color: #051d3e;
  font-family: "Roboto", sans-serif;
  margin-top: 0;
  margin-bottom: 15px;
}
.service_media .service_media_content p {
  margin-bottom: 20px;
}
.service_media .service_media_content p,
.service_media .service_media_content ul li {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #444;
}
.service_media .service_media_content ul li {
  font-weight: 600;
}
.service_media .service_media_content ul li i {
  width: 15px;
  height: 15px;
  font-size: 7px;
  line-height: 14px;
  text-align: center;
  color: #a9cfe8;
  border: 1px solid rgba(68, 68, 68, 0.6);
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 11px;
}
.service_media .image_info {
  width: 370px;
  margin-left: 40px;
}
.service_media .image_info img {
  max-width: 100%;
}
.service_sidebar_item {
  border-top: 1px solid #d1d3dd;
}
.service_sidebar_item li {
  border-bottom: 1px solid #d1d3dd;
  margin-bottom: 0;
}
.service_sidebar_item li a {
  font-size: 19px;
  font-weight: 600;
  color: #111e37;
  font-family: "Barlow", sans-serif;
  padding: 19px 0px;
  display: block;
  transition: color 0.2s;
  line-height: 22px;
}
.service_sidebar_item li a:hover,
.service_sidebar_item li a.active {
  color: #d90528;
}
.service_sidebar_title {
  margin-top: 0px;
  margin-bottom: 24px;
}
.service_sidebar_title:after {
  content: "";
  width: 25px;
  height: 2px;
  background: #111e37;
  display: inline-block;
  margin-right: 8px;
}

.dl_accordion_item {
  border-bottom: 1px solid #e5e5e5;
  padding: 35px 35px 35px 72px;
}
.dl_accordion_item:last-child {
  border-bottom: 0 solid transparent;
}
.dl_accordion_item .dl_accordion_icon {
  position: absolute;
  left: -42px;
  top: -4px;
}
.dl_accordion_item.dl-active {
  background-color: #fff;
}
.dl_accordion_item .dl_accordion_item_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dl_accordion_item .dl_accordion_title {
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 0px;
}
.droit-advance-faq .droit-faq-wrapper .droit-faq-content-wrapper p {
  margin-bottom: 0px;
}
.dl_accordion_item .droit-icon {
  transition: transform 0.2s ease-out;
  cursor: pointer;
  color: #060a24;
  margin-left: 15px;
}
.dl_accordion_item_title .droit-accordion-icon-opend {
  display: none;
}
.dl_accordion_item_title.dl-active .droit-accordion-icon-opend {
  display: block;
}
.dl_accordion_item_title.dl-active .droit-accordion-icon-closed {
  display: none;
}
.dl_accordion_item .dl_accordion_panel {
  display: none;
  padding-top: 30px;
}
.dl_accordion_item.dl-active .dl_accordion_title::before {
  transform: rotate(-140deg);
}
.dl_accordion_item .dl_desc + .dl_cu_btn {
  margin-top: 29px;
}
.dl_accordion_item.dl_accordion_style_02 {
  padding: 30px;
  border-bottom: 0 solid transparent;
  background-color: #fff;
  margin-bottom: 10px;
}
.dl_accordion_item.dl_accordion_style_02 .dl_accordion_panel {
  padding-top: 20px;
}
.dl_accordion_item.dl_accordion_style_03 {
  padding: 30px;
  background-color: #fff;
}
.dl_accordion_item.dl_accordion_style_03 .dl_accordion_panel {
  padding-top: 27px;
}
.dl_accordion.dl_wrapper_style_2 {
  padding: 0 50px;
  background-color: #fff;
  border-radius: 50px 0;
}
.dl_accordion_item.dl_accordion_style_06 {
  padding: 38px 0;
  background-color: #fff;
}
.dl_accordion_item.dl_accordion_style_06 .dl_accordion_panel {
  padding-top: 20px;
}
.dl_accordion_item.dl_accordion_style_06 .dl_accordion_title::before {
  top: 40%;
}
.dl_accordion_icon i {
  display: block;
}
.dl_accordion_wrapper_style_01 .dl_accordion_inner {
  flex: 45% 0 0;
  margin-bottom: 42px;
}
@media (max-width: 1024px) {
  .service_media {
    flex-direction: column-reverse;
  }
  .service_media .image_info {
    margin-left: 0px;
    margin-bottom: 20px;
  }
}
@media (max-width: 881px) {
  .skill_inner .elementor-widget-wrap.elementor-element-populated {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .dl_accordion_wrapper_style_01 .dl_accordion_inner {
    flex: 100% 0 0;
    margin-bottom: 40px;
  }
}
.dl_accordion_wrapper_style_01 .dl_accordion_inner .dl_title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.droit-advance-faq .droit-icon img,
.droit-advance-faq .droit-icon svg {
  width: 16px;
}
.droit-advance-faq .droit-icon i {
  font-size: 16px;
}

.dl_accordion_item .dl_accordion_item_title.dl_show_icon_left {
  justify-content: flex-start;
}
.droit-icon-left {
  margin-right: 20px;
}
.service_list .elementor-icon-box-content {
  padding-left: 35px;
}
.service_list .elementor-icon-box-content .elementor-icon-box-title {
  position: relative;
}
.service_list .elementor-icon-box-content .elementor-icon-box-title:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #5b5b5b;
  border-radius: 50%;
  position: absolute;
  left: -34px;
  top: 9px;
}
.contact_question_info {
  max-width: 742px;
  background: #ffffff;
  border-radius: 20px;
  padding: 42px;
  margin: 0 auto;
}
.contact_question_info label {
  font-size: 13px;
  color: rgba(27, 39, 84, 0.6);
  font-family: "Montserrat", Sans-serif;
  font-weight: 500;
}
.contact_question_info .form-control {
  height: 60px;
  padding-left: 20px;
  line-height: 30px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: "Montserrat", Sans-serif;
  letter-spacing: -0.16px;
  background: #fafafa;
  box-shadow: none;
  outline: none;
  color: #151c14;
}
.contact_question_info .form-control::placeholder {
  color: #8b8b8b;
}
.contact_question_info textarea.form-control {
  height: 160px;
  padding-top: 20px;
}
.contact_question_info .form-control:focus {
  border-color: #fca35e;
}
.contact_question_info .wpcf7-select {
  border-radius: 5px;
  background: #fafafa;
  line-height: 30px;
  font-size: 18px;
  width: 100%;
  font-weight: 300;
  font-family: "GmarketSans", Sans-serif;
  box-shadow: none;
  padding: 20px;
  border-color: #fafafa;
  color: #8b8b8b;
}
.contact_question_info .wpcf7-select option {
  color: #151c14;
  line-height: 28px;
}
.contact_question_info p {
  margin-bottom: 14px;
}
.contact_question_info .submit_btn {
  padding: 15px 90px 13px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", Sans-serif;
  line-height: 2;
  border: 0px;
  color: #000;
  border-radius: 10px;
  background: #fca35e;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
}
.contact_question_info .submit_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.7s linear;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  z-index: -1;
  background: #11542d;
}
.contact_question_info .submit_btn:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.contact_question_info .submit_btn i {
  font-size: 14px;
  vertical-align: middle;
  margin-left: 4px;
}
.contact_question_info .submit_btn:hover {
  color: #fff;
}
.contact_question_info .submit_btn {
  margin-top: 25px;
}

.contact_area .elementor-social-icon {
  background: transparent !important;
}

.faq_inner .droit-icon-left {
  font-size: 16px;
  color: #051d3e;
}
.contact_question_info.style_02 .form-control {
  margin-top: 20px;
}
.contact_info {
  padding-right: 0px;
}
.contact_info .elementor-image-box-title {
  margin-top: 0px;
}
.contact_info .f_contact_info a {
  color: #242424;
}
.contact_info_box .link {
  color: #1b2754;
  opacity: 0.8;
}
.footer_text a {
  color: #a0a5b1;
}
.footer_info .elementor-image-box-img {
  margin-bottom: 15px !important;
}
.team_two .row.justify-content-center {
  justify-content: inherit !important;
}
.list_custom ul li {
  margin-bottom: 15px;
}
.list_custom ul li strong {
  color: #0d1b30;
  font-weight: 600;
  font-size: 20px;
}
.list_custom_two ul {
  list-style: none;
}
@media (max-width: 1500px) {
  .banner_content {
    margin-right: 20px;
    padding-left: 0px;
  }
}
@media (max-width: 1200px) {
  .banner_area {
    padding: 150px 0px 200px 0px;
  }
  .promo_text {
    letter-spacing: 1.1em;
  }
  .construx_team_item .team_content {
    padding: 14px 50px 6px 15px;
  }
  .service_item {
    padding: 30px;
  }
  .portfolio_btn {
    padding: 20px 10px;
  }
  .service_slider_item.ps-0 .service_item {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  .text-white .page_title,
  .text-white .page-title {
    font-size: 45px;
  }
  .portfolio_btn i {
    margin-left: 5px;
  }
  .portfolio_btn {
    padding: 20px 5px;
    font-size: 16px;
  }
  .construx_team_item .team_img img {
    width: 100%;
  }
  .blog_list_inner {
    padding: 0px;
  }
  .brand_name {
    bottom: -30px;
  }
}
@media (max-width: 881px) {
  .projects_content .elementor-widget-wrap.elementor-element-populated {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .banner_area {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 82%, 58% 91%, 0% 102%);
  }
  .portfolio_area {
    max-width: 575px;
    margin: 0 auto;
  }
  .portfolio-item .item-img img {
    width: 100%;
  }
  .portfolio-item .item-img {
    max-width: 275px;
  }
  .newsletter-form form .wpcf7-form-control-wrap {
    display: block;
    max-width: 470px;
  }
  .d-grid-list .elementor-icon-list-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .about_author_box .elementor-image-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .about_author_box .elementor-image-box-wrapper .elementor-image-box-img {
    margin-right: 20px !important;
  }
  .brand_name {
    display: none !important;
  }
  .f_contact_info .elementor-image-box-img {
    margin-bottom: 10px !important;
  }
  .portfolio_grid .portfolio-item .item-img img {
    width: 100%;
  }
  .service_media .image_info {
    width: 100%;
  }
  .dl_content_text br {
    display: none;
  }
  .service_img_parallax {
    margin-left: 0px;
  }
}
@media (max-width: 576px) {
  .construx_team_item,
  .portfolio-item .item-img {
    max-width: 275px;
  }
  .portfolio_grid .portfolio-item .item-img {
    max-width: 375px;
    margin-left: 0;
  }
  .portfolio-item .item-img {
    margin-left: auto;
    margin-right: auto;
  }
  .blog_list_inner {
    padding: 10px 15px 0px;
  }
  .project_slider_inner .slider_nav .arrow {
    position: relative;
    right: 0 !important;
    left: 0 !important;
    top: 0 !important;
    opacity: 1;
    margin: 15px 5px 0px;
  }
  .text-white .page_title,
  .text-white .page-title {
    font-size: 38px;
  }
  .text-white .breadcrumb .breadcrumbs__separator,
  .text-white .breadcrumbs .breadcrumbs__separator {
    margin: 0px;
  }
  .text-white .breadcrumb .breadcrumbs__link,
  .text-white .breadcrumbs .breadcrumbs__link,
  .text-white .breadcrumb .breadcrumbs__current,
  .text-white .breadcrumbs .breadcrumbs__current {
    font-size: 15px;
  }
}

.dl_banner_slider {
  height: auto;
}

.dl_swiper_testimonial_pagination {
  z-index: 9999;
  position: absolute;
}

.dl_banner_slider .container .banner_slider_content h2 {
  color: #081f4d;
  font-weight: 700;
  font-size: 51px;
  line-height: 71px;
  font-family: Merriweather;
}

.dl_banner_slider .container .banner_slider_content p {
  font-family: Inter;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 60px;
}

.dl_banner_slider .container .banner_slider_content a {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 0px;
}
.dl_banner_slider .container .banner_slider_content a + a {
  margin-left: 12px;
}

.dl_banner_slider .container .banner_slider_content a span.icon {
  background: #fe8f1f;
  border-radius: 50%;
  margin-right: 25px;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dl_banner_slider .container .banner_slider_content a span.icon i {
  color: #fff;
  font-size: 35px;
}

.dl_banner_slider_area {
  position: relative;
}

.dl_banner_slider_area .gallery-thumbs {
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 109.56%
  );
}

.dl_banner_slider_area .gallery-thumbs .thumb_item {
  padding: 20px;
  padding-left: 40px;
}

.dl_banner_slider_area .gallery-thumbs .thumb_item .number {
  color: #777472;
  font-family: inter;
  font-weight: 800;
  font-size: 29px;
  line-height: 43px;
}

.dl_banner_slider_area .gallery-thumbs .thumb_item h4 {
  color: #777472;
  font-family: inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.dl_banner_slider_area .gallery-thumbs .thumb_item p {
  color: #b4b4b4;
  font-family: Merriweather;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.dl_banner_slider_area
  .gallery-thumbs
  .swiper-slide-thumb-active
  .thumb_item
  .number,
.dl_banner_slider_area
  .gallery-thumbs
  .swiper-slide-thumb-active
  .thumb_item
  h4,
.dl_banner_slider_area
  .gallery-thumbs
  .swiper-slide-thumb-active
  .thumb_item
  p {
  color: #fff;
}

.dl_swiper_banner_pagination {
  display: inline-flex;
}

.dl_banner_swiper_navigation {
  z-index: 999;
}

.dl_banner_swiper_navigation .swiper_banner_nav_button.dl-slider-prev {
  position: absolute;
  top: 50%;
  left: 0;
}

.dl_banner_swiper_navigation .swiper_banner_nav_button.dl-slider-next {
  position: absolute;
  top: 50%;
  right: 0;
}

.dl_banner_swiper_navigation .swiper_banner_nav_button {
  font-size: 18px;
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #111;
  border-radius: 50%;
  color: #fff;
}

.dl_banner_swiper_navigation .swiper_banner_nav_button {
  z-index: 99;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  position: absolute;
  bottom: 0px !important;
  left: 20px !important;
  z-index: 9999;
}
.dl_banner_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #118fd8;
  border-radius: 100px;
  width: 18px;
}
.dl_banner_slider .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
  width: 6px;
  height: 6px;
  transition: width 0.4s linear;
}
.dl_banner_slider .dl_container .banner_slider_content a.theme_btn {
  margin-right: 20px;
}

.slider_item.slider_bg_color {
  background-repeat: no-repeat;
  background-size: cover;
}
.custom_slider .dl_container {
  opacity: 1 !important;
}

.construction_banner .dl_banner_slider_area {
  overflow: hidden;
}
.construction_banner
  .dl_banner_slider_area
  .dl_banner_swiper_navigation
  .swiper_banner_nav_button.dl-slider-prev {
  transform: translateX(-120px);
  opacity: 0;
  transition: all 0.3s;
}
.construction_banner
  .dl_banner_slider_area
  .dl_banner_swiper_navigation
  .swiper_banner_nav_button.dl-slider-next {
  transform: translateX(120px);
  opacity: 0;
  transition: all 0.3s;
}
.construction_banner
  .dl_banner_slider_area:hover
  .dl_banner_swiper_navigation
  .swiper_banner_nav_button.dl-slider-prev,
.construction_banner
  .dl_banner_slider_area:hover
  .dl_banner_swiper_navigation
  .swiper_banner_nav_button.dl-slider-next {
  opacity: 1;
  transform: translateX(0);
}

.service_box {
  padding: 50px 25px 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  margin-left: 10px;
  z-index: 1;
  transition: all 0.3s;
  margin-bottom: 50px;
  cursor: pointer;
}

.service_box:before {
  position: absolute;
  content: "";
  top: 10px;
  left: -10px;
  right: 10px;
  bottom: -10px;
  background: #fff;
  border-radius: 8px;
  z-index: -1;
  transition: all 0.3s;
}

.service_box:hover::before {
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
}

.service_box:hover .service_title {
  color: #e31a1a;
}

.service_box .service_items .service_icon_info {
  align-items: center;
  margin-bottom: 15px;
}

.service_box .service_items .service_icon_info .icon {
  margin-right: 15px;
}
.service_box .service_items .service_icon_info .service_title {
  margin-top: 0;
  margin-bottom: 0;
}
.service_box .service_items .service_icon_info p {
  line-height: 25px;
  margin-bottom: 0;
}

.dl-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -10px;
}
.dl-breadcrumbs > li {
  margin-left: 0px;
}
.dl-breadcrumbs p {
  margin-bottom: 0;
}
.dl-breadcrumbs a,
.dl-breadcrumbs strong {
  display: inline-block;
}
.dl-breadcrumbs a span {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  padding: 0px !important;
  border-width: 0px !important;
  border-style: initial !important;
  border-color: initial !important;
  -o-border-image: initial !important;
  border-image: initial !important;
  border-radius: 0px !important;
  margin: 0px !important;
}
.dl-separator-icon.dl-icon {
  margin-left: 0px !important;
  vertical-align: text-bottom;
}
.dl-breadcrumbs:not(.dl-breadcrumbs-droit) {
  margin-left: 0;
  margin-right: 0;
}
.dl-breadcrumbs:not(.dl-breadcrumbs-droit) a,
.dl-breadcrumbs:not(.dl-breadcrumbs-droit) span {
  display: inline-block;
}
.breadcrumb {
  overflow: hidden;
}

.inspection_form .form-control {
  height: 50px;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  border: 0px;
  color: #333;
  padding-left: 15px;
}
.icon_b .elementor-icon-box-title {
  margin-top: 0;
}

.banner_slider_construction .dl_banner_swiper_navigation .dl-slider-prev {
  left: 0px;
  opacity: 0;
  transition: all 0.2s;
}
.banner_slider_construction .dl_banner_swiper_navigation .dl-slider-next {
  right: 0px;
  opacity: 0;
  transition: all 0.2s;
}
.banner_slider_construction:hover .dl_banner_swiper_navigation .dl-slider-prev {
  left: 50px;
  opacity: 1;
}
.banner_slider_construction:hover .dl_banner_swiper_navigation .dl-slider-next {
  right: 50px !important;
  opacity: 1;
}
.latest_blog_post .post_content h2:hover {
  color: #e31a1a;
}

.plumber_home {
  overflow: hidden;
}
.plumber_home .inspection_form .theme_btn {
  background: #151e53;
  color: #fff !important;
  padding: 10px 35px 9px;
}
.plumber_home .inspection_form .theme_btn:hover {
  background: #fff;
  color: #301013 !important;
}
.plumber_home .inspection_form .form-control {
  height: 45px;
}
.emergency_link a {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.emergency_link a:hover {
  color: #fff;
}
.dl_pricing_plan.dl_style_02 .dl_title + .dl_pricing_list,
.plumber_testimonial .slick_slider .slick-dots li button:before {
  display: none;
}
.dl_pricing_plan.dl_style_02:hover:not(.dl_popular_package) {
  margin-top: 0;
}
.plumber_testimonial .slick_slider .slick-dots {
  bottom: 0px;
  position: relative;
}
.plumber_testimonial .slick_slider .slick-dots li button {
  padding: 0px;
}
.plumber_blog .dl_blog_list_post.dl_style_07 {
  display: block;
}
.plumber_blog .droit-post__wrap .droit-post_list__thumbnail img {
  border-radius: 10px;
  transition: all 0.3s;
}
.plumber_blog
  .droit-post__wrap
  .droit-blog_list_loop_wrap
  .droit-post_list_date {
  background: #d90429;
  border-radius: 45px;
}
.plumber_blog .dl_blog_list_post .dl_read_more_btn {
  line-height: 1;
}
.plumber_blog .dl_blog_list_post.dl_style_07 .dl_blog_thumb {
  overflow: hidden;
  border-radius: 10px;
}
.plumber_blog .dl_blog_list_post.dl_style_07:hover .dl_blog_thumb img {
  transform: scale(1.04);
}
.drdt_navmenu .menu-item {
  margin-bottom: 0;
}
.drdt_navmenu .menu-item .sub-menu {
  top: 100%;
}
@media (max-width: 1024px) {
  .drdt-nav-menu__layout-horizontal:not(.drbt_menu_active)
    .drdt_navmenu
    > .menu-item
    .drdt-menu-item {
    line-height: 28px !important;
  }
}
@media (max-width: 600px) {
  .banner_slider_construction .dl_banner_swiper_navigation {
    display: none;
  }
}
@media (max-width: 991px) {
  .menu > .nav-item.submenu .dropdown-menu .nav-item {
    background: transparent !important;
  }
}
@media (max-width: 480px) {
  .banner_slider_content .d-flex {
    display: block !important;
  }
  .banner_slider_content .d-flex .theme_btn_two {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
  .banner_slider_content .d-flex a {
    justify-content: center !important;
  }
}

/* button css  */
.ub-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.ub-btn .elementor-align-icon-right {
  order: 15;
}

.ub-btn .elementor-button-content-wrapper {
  display: flex;
  align-items: center;
}

/** === Keyframe animations === **/
@keyframes ub-pulse {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

@keyframes pop-char-out {
  0%,
  40% {
    transform: translate(0);
    opacity: 0;
  }
  20% {
    transform: translate(0.05em, -0.1em);
    /* opacity: 0.1; */
  }
  to {
    transform: translate(0);
    opacity: 1;
  }
}

/** === Pulse Animation === **/
.ub-animation-pulse:hover::before {
  animation: ub-pulse 2s infinite;
  opacity: 1;
}

.ub-animation-pulse::before {
  width: 70%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(55, 64, 255, 0.1);
  content: "";
  z-index: -1;
  opacity: 0;
}

/** === Line Button === **/
.ub-btn.ub-btn-line {
  display: inline-block;
}

.ub-btn.ub-btn-line::before {
  transform-origin: 100% 50%;
  transition: transform 0.4s ease;
  content: "";
  width: 100%;
  height: 1px;
  background: #666666;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: fadeInLeft 2s cubic-bezier(0.5, 0, 0.5, 1) both;
}

.ub-btn.ub-btn-line:hover::before {
  transform: scaleX(0);
}

.ub-btn.ub-btn-line::after {
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-color: #000;
  transition: transform 0.4s ease 0.2s;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ub-btn.ub-btn-line:hover::after {
  transform: scaleX(1);
}

span.elementor-button-text.words.chars.splitting {
  position: relative;
  display: inline-block;
}

.ub-btn.ub-btn-line:hover i {
  margin-left: 12px;
  transition: margin 0.4s linear, color 0.5s;
}

/*** === 3D button === ***/
.ub-btn.three_d_btn {
  transition: box-shadow 0.2s ease-in-out;
  padding: 0;
  background-color: transparent;
  border-radius: 12px;
}
.ub-btn.three_d_btn span.elementor-button-text {
  transition: transform 0.2s ease-in-out;
  display: inline-block;
  border-radius: 12px;
}
.ub-btn.three_d_btn:hover span.elementor-button-text {
  transform: translateY(4px);
}

/*** === 3D button 2 === ***/
.three_d_btn2::before {
  content: "";
  left: 6px;
  right: 6px;
  top: -6px;
  bottom: 0;
  position: absolute;
  background: #b68e05;
  z-index: -1;
  transition: all 0.2s linear;
}
.three_d_btn2:hover:before {
  top: 0;
}

/** === Left to Right Transition == **/
.ub-animation-left2right.ub-btn-link:hover::before {
  width: 100%;
}
.ub-animation-left2right.ub-btn-link::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  z-index: 0;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
}

.elementor-button.ub-animation-left2right {
  z-index: 1;
}

.elementor-button.ub-animation-left2right:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.elementor-button.ub-animation-left2right::after {
  background: #222222;
}

.elementor-button.ub-animation-left2right::after {
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.7s linear;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  z-index: -1;
}

.elementor-button.ub-animation-left2right::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ub-btn i {
  margin-left: 10px;
  transition: margin 0.2s linear, color 0.5s;
}
.ub-btn:hover i {
  margin-left: 15px;
  transition: margin 0.4s linear, color 0.5s;
}

/** === Divider Button === **/
.ub-btn {
  text-align: left;
  padding-left: 0;
}
/** === Video Button === **/
.ub-btn.popup-youtube i {
  text-align: center;
}

.ub-btn.elementor-button svg {
  background-color: transparent;
}

.post_btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 63px;
  font-size: 16px;
  color: #b8bbc0;
  position: relative;
  transition: all 0.2s linear;
  display: inline-block;
}

/* new css  */
.civil_banner_text > .elementor-widget-wrap {
  max-width: 650px;
  margin-right: 0;
  margin-left: auto;
}
.civil_banner_text .text_strok {
  font-size: 135px;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255 255 255 / 60%);
  color: transparent;
  z-index: 99;
}

.cons_about {
  position: relative;
}
.cons_about:before {
  position: absolute;
  content: "";
  border: 1px solid #ededed;
  right: 55px;
  left: 0;
  top: 0;
  bottom: 55px;
  border-radius: 10px;
}

/* service_item_three  */
.service_item_three {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.service_item_three .service_content {
  background: #fff;
  padding: 30px;
}
.service_item_three .service_title {
  font-size: 26px;
  color: #202935;
  margin-top: 4px;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.service_item_three p {
  font-size: 16px;
  line-height: 27px;
}
.service_item_three .service_img {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
}
.service_item_three .service_img:before {
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0),
    rgba(255, 255, 255, 0)
  );
  position: absolute;
  z-index: 1;
}
.service_item_three .service_img img {
  transition: all 0.6s;
}
.service_item_three .read_btn {
  font-size: 15px;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: color 0.2s linear;
  color: #656972;
}
.service_item_three .read_btn i {
  transition: all 0.3s;
}
.service_item_three .icon {
  width: 100px;
  height: 100px;
  margin-top: -77px;
  background: #fff;
  z-index: 1;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_item_three:hover .service_img img {
  transform: scale(1.06);
}
.service_item_three:hover .service_title,
.service_item_three .read_btn:hover {
  color: #fd4a36;
}
.service_item_three .read_btn:hover i {
  margin-left: 10px;
}

.overflow-hidden .elementor-widget-container {
  overflow: hidden;
}
.droit-process-wrapper {
  margin-top: 0;
}
.process_info .dl_single_process_box .dl_process_box_icon + .dl_title {
  margin-top: 25px;
}
.video_section {
  cursor: pointer;
}
.video_section .elementor-background-overlay {
  transition: all 0.5s linear !important;
}
.video_section:hover .elementor-background-overlay {
  transform: scale(1.04);
}

.testi_author .dl_sub_title_text span {
  font-weight: 400;
  color: #494849;
}

.new_blog_grid .latest_blog_post {
  background: #fff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  overflow: hidden;
  transition: all 0.2s linear;
}
.new_blog_grid .latest_blog_post:hover {
  box-shadow: 0 12px 10px #f1f1f1;
}
.new_blog_grid .latest_blog_post .post_content {
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-radius: 0px 0px 6px 6px;
  padding: 30px 30px 25px;
}
.new_blog_grid .latest_blog_post .blog_img {
  padding-bottom: 0;
}
.latest_blog_post .post_content h2 {
  transition: all 0.3s;
}
.new_blog_grid .latest_blog_post .blog_img .img {
  border-radius: 0px;
}
.new_blog_grid .latest_blog_post .post_category a {
  font-size: 16px;
  font-weight: 600;
  color: #fd4a36;
  font-family: "Noto Sans", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
  display: inline-block;
  margin-bottom: 12px;
}
.new_blog_grid .latest_blog_post .blog-meta i {
  display: none;
}
.new_blog_grid .latest_blog_post .blog-meta a:hover {
  color: #fd4a36 !important;
}
.new_blog_grid .latest_blog_post .blog-meta .author {
  position: relative;
  transition: all 0.2s;
}
.new_blog_grid .latest_blog_post .blog-meta .author:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #202935;
  display: inline-block;
  bottom: 20px;
  margin-left: 7px;
  margin-right: 7px;
  border-radius: 50px;
  margin-bottom: 2px;
}
.dl_single_process_box.dl_style_01 .dl_color_01 {
  background: #fff;
  position: relative;
}
.dl_single_process_box.dl_style_01 .dl_process_shadow {
  box-shadow: 0 10px 40px 0px rgba(40, 0, 152, 0.06);
}

.droit-process-items {
  counter-increment: css-counter 1;
}

.dl_single_process_box.dl_style_01 .dl_process_shadow::before {
  content: counter(css-counter);
  position: absolute;
  width: 35px;
  height: 35px;
  background: #fff;
  border: 1px solid #fd4a36;
  border-radius: 50px;
  color: #fd4a36;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  right: -10px;
  top: -10px;
}

.f_social .elementor-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose_inner .elementor-container.elementor-column-gap-default {
  margin-right: 105px;
}
.video_text .v_title {
  color: #fff;
}
.new_team_item .dl_team_member_wrapper.dl_style_3 .dl_team_content_inner {
  position: relative;
  max-width: 100%;
  bottom: 0;
}
.new_team_item .dl_team_member_wrapper.dl_style_3 .dl_team_member_thumb {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.new_team_item .dl_team_member_wrapper.dl_style_3 .dl_name {
  margin-bottom: 5px;
}

.service_area .service_item_three {
  box-shadow: 0px 1px 30px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s linear;
}
.service_area .service_item_three:hover {
  box-shadow: 0px 1px 30px 8px rgba(0, 0, 0, 0.09);
}
.dl_timeline_section.dl_style_01 .dl_limeline_counter svg {
  width: 40px;
  height: auto;
}
.dl_timeline_section.dl_timeline_default_style .dl_timeline_main_coutent_inner {
  padding: 33px 20px 33px 40px;
}
.vision_slider .dl_carousel_info_inner {
  display: flex;
  align-items: center;
}
.vision_slider .dl_carousel_info_inner .dl-testimonial-reviewer img {
  height: auto;
}
.vision_slider .dl-testimonial-reviewer {
  margin-bottom: 0;
  width: 55%;
}
.vision_slider .dl-testimonial-content {
  width: 45%;
  background: #fff;
  margin-left: -50px;
  padding: 40px;
  box-shadow: 0px 1px 30px 3px rgba(0, 0, 0, 0.04);
}
.team_details .elementor-container {
  box-shadow: 0px 1px 30px 3px rgba(0, 0, 0, 0.04);
}

.contact_info .dl-infobox-content-area .droit-infobox-description a {
  color: #656972;
}

.contact-form .form-control {
  margin-bottom: 0px;
  margin-top: 0;
  height: 55px;
  background: #ffffff;
  border: 1px solid #e2e4eb;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 5px;
  transition: all 500ms ease;
}
.contact-form .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #fd4a36;
}
.contact-form textarea.form-control {
  height: 180px;
  padding-top: 15px;
}
.contact-form textarea.form-control:focus,
.subscriber_form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-form .submit_btn {
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
  background-image: linear-gradient(90deg, #fd4a36 0%, #d71426 100%);
  border-radius: 5px;
  padding: 16px 30px 16px 30px;
  z-index: 1;
  color: #fff;
  border: 0px;
  position: relative;
}
.contact-form .submit_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.7s linear;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  z-index: -1;
  background-color: #ffffff17;
}
.contact-form .submit_btn:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.subscriber_form {
  position: relative;
}
.subscriber_form p {
  margin-bottom: 12px;
}
.subscriber_form .form-control {
  margin-top: 0;
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", Sans-serif;
  line-height: 14px;
  background-color: #ffffff;
  width: 100%;
  height: 55px;
  padding: 0px 0px 0px 15px;
}
.subscriber_form .subs_btn {
  display: inline-block;
  position: absolute;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  background-image: linear-gradient(90deg, #fd4a36 0%, #d71426 100%);
  width: 42px;
  top: 6px;
  height: 42px;
  right: 6px;
  border: 0px;
  padding: 0px 0px 0px 0px;
  color: #fff;
}

.dl_item_left {
  justify-content: start;
}
.dl_icon_wrapper {
  margin-right: 15px;
}
.droit-icon-description .icon_title h5 {
  margin-top: 5px;
  font-family: "Noto Sans", Sans-serif;
  color: #202935;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #8409ff;
  width: 2px;
  height: 60px;
}
.mCSB_inside > .mCSB_container {
  margin-right: 10px;
}
.mCSB_scrollTools {
  width: 4px;
  border-radius: 10px;
  background: #efdeff;
}
.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background: #efdeff;
}

@media (max-width: 1430px) {
  .testimonial_area .slick-arrow.slick-next,
  .happening_area:hover .slider_nav .arrow {
    right: 0;
  }
  .testimonial_area .slick-arrow.slick-prev,
  .happening_area:hover .slider_nav .arrow.left {
    left: 0;
    z-index: 1;
  }
}

/* service_table css  */
.service_table {
  border-radius: 50px;
  border: 1px solid #d6d6d6;
}
.service_table table {
  margin-bottom: 0;
}
.service_table table thead th,
.service_table table {
  border: 0px;
}
.service_table table thead th {
  text-align: center;
  background: #4cce16;
  color: #081f4d;
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding: 17px 10px;
}
.service_table table thead th:not(:first-child) {
  border-left: 1px solid #d6d6d6;
}
.service_table table tbody {
  border: 0px !important;
}
.service_table table tbody tr td {
  border: 0px;
  border-top: 1px solid #d6d6d6;
  padding: 1.2rem 0.5rem;
}
.service_table table tbody tr td:not(:first-child) {
  border-left: 1px solid #d6d6d6;
}
.service_table table tbody tr td h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #081f4d;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}
.service_table table tbody tr td h6 {
  color: #515153;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  margin-top: 5px;
}
.service_table table tbody tr:first-child,
.service_table table tbody tr:nth-child(2),
.service_table table tbody tr:nth-child(6) td:nth-child(1),
.service_table table tbody tr:nth-child(6) td:nth-child(4) {
  background: #fff2cc;
}
.service_table table tbody tr:nth-child(3) {
  background: #e2efd9;
}
.service_table table tbody tr:nth-child(4) td:nth-child(2),
.service_table table tbody tr:nth-child(8) td:nth-child(3),
.service_table table tbody tr:nth-child(8) td:nth-child(5),
.service_table table tbody tr:nth-child(9) td:nth-child(2),
.service_table table tbody tr:nth-child(9) td:nth-child(3) {
  background: #fff2cc;
}
.service_table table tbody tr:nth-child(5) td:nth-child(1) {
  background: #fff2cc;
}
.service_table table tbody tr:nth-child(5) td:nth-child(2),
.service_table table tbody tr:nth-child(5) td:nth-child(3),
.service_table table tbody tr:nth-child(6) td:nth-child(2),
.service_table table tbody tr:nth-child(6) td:nth-child(3),
.service_table table tbody tr:nth-child(7),
.service_table table tbody tr:nth-child(8) td:nth-child(1),
.service_table table tbody tr:nth-child(8) td:nth-child(2),
.service_table table tbody tr:nth-child(10) td:nth-child(1),
.service_table table tbody tr:nth-child(11) td:nth-child(3) {
  background: #fbe4d5;
}
.service_table table tbody tr:nth-child(7) td:nth-child(4) {
  background: #fff;
}
.service_table table tbody tr:nth-child(9) td:nth-child(1),
.service_table table tbody tr:nth-child(10) td:nth-child(3) {
  background: #deeaf6;
}
.latest_blog_post .blog_img .img img {
  height: 301px;
  object-fit: cover;
}

/* naviella css  */
.service_img_parallax {
  text-align: center;
}
.service_img_parallax .banner_img {
  padding: 18px;
  border: 1px solid #fca35e;
  border-radius: 20px;
  display: inline-block;
  transform: rotate(5.96deg);
}
.service_img_parallax .banner_img img {
  border-radius: 20px;
}
.round_img .layer {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative !important;
}
.round_img {
  position: absolute;
}
.round_img:nth-child(2) {
  top: -40px;
  left: 50%;
}
.round_img:nth-child(3) {
  bottom: 200px;
  left: 0;
}
.round_img:nth-child(4) {
  bottom: 200px;
  right: -30px;
}
.round_img:nth-child(5) {
  bottom: -40px;
  left: 35%;
}
.dl_pro_testimonial_slider_wrapper .droit-star-rating i {
  font-style: normal;
}
.dl_pro_testimonial_slider_wrapper .dl_client_info_inner {
  display: flex;
}
.dl_pro_testimonial_slider_wrapper .dl_client_info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: -20px;
  margin-right: -20px;
  padding: 0px 20px;
  margin-bottom: 20px;
}
.dl_pro_testimonial_slider .swiper-slide {
  background: #e7f5fb;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}
.dl_pro_testimonial_slider .swiper-slide:nth-child(odd) {
  background: #feeddf;
}

.price_item {
  background: #fee2cc;
  padding: 40px 25px;
  border-radius: 16px;
}
.price_item .pr_title {
  display: inline-block;
  border-radius: 45px;
  background: #fff;
  font-size: 16px;
  color: #444444;
  font-weight: 500;
  font-family: "Montserrat", Sans-serif;
  padding: 12px 30px;
  margin-top: 0;
  margin-bottom: 12px;
}
.price_item h2 {
  font-size: 57px;
  color: #000;
  font-weight: 600;
  font-family: "Montserrat", Sans-serif;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e1e1e1;
}
.price_item h2 sub {
  font-size: 28px;
  font-weight: 400;
  bottom: 0;
}
.price_item ul li {
  font-size: 18px;
  line-height: 26px;
  color: #444;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
}
.price_item .app_btn {
  background: #11542d;
  border-radius: 45px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 12px 20px;
  width: 100%;
  display: block;
  margin-top: 45px;
  transition: all 0.3s;
}
.price_item .app_btn i {
  margin-left: 6px;
}
.price_item .app_btn:hover {
  box-shadow: 0px 10px 20px 5px rgba(17, 84, 45, 0.09);
}
.price_item ul li i {
  margin-right: 10px;
}
.price_item_two h2 {
  margin-bottom: 0;
  border: 0px;
  padding-bottom: 10px;
}
.price_item_two p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #444444;
  font-family: "Montserrat", Sans-serif;
  margin-bottom: 0px;
}
.price_item_two .app_btn {
  margin-top: 22px;
}
.price_item_two h5 {
  font-size: 22px;
  font-weight: 500;
  color: #444;
  font-family: "Montserrat", Sans-serif;
  margin-bottom: 22px;
}
.price_item_two h5 strong {
  font-weight: 600;
}
.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
}
.newsletter-form h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", Sans-serif;
}
.newsletter-form p {
  color: #f3f3f3;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  font-family: "Montserrat", Sans-serif;
}
.wpcf7-form-control-wrap {
  margin-bottom: 0;
}
.b_footer_subscribe p {
  margin-bottom: 0;
}
.b_footer_subscribe input {
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  font-size: 16px;
  color: #fff !important;
  line-height: 30px;
  height: 47px;
  padding-left: 25px;
  padding-right: 15px;
}
.b_footer_subscribe input:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
}
.b_footer_subscribe {
  position: relative;
  max-width: 265px;
}
.b_footer_subscribe .submit_btn {
  position: absolute;
  background: #87ceeb;
  border-radius: 50%;
  right: 4px;
  top: 3.1px;
  width: 40px;
  height: 40px;
  bottom: 4px;
  border: 0px;
  padding: 0;
}
.service_item_box {
  cursor: pointer;
}
.service_item_box .elementor-icon-list-item {
  align-items: flex-start !important;
}
.service_item_box .elementor-icon-list-item .elementor-icon-list-icon {
  top: 4px;
}
.service_item_box .elementor-icon-box-title {
  margin-top: 0;
}
.service_item_box .elementor-icon-box-wrapper {
  align-items: center !important;
}
.be_service_icon_box .elementor-icon-box-wrapper {
  align-items: flex-start !important;
}
.service_item_box_two {
  position: relative;
}
.service_item_inner .nav li {
  display: block;
  width: 100%;
}
.service_item_inner .nav li i {
  color: #87ceeb;
  margin-right: 8px;
}
.service_item_box_two .elementor-widget-accordion .elementor-accordion-icon {
  display: none !important;
}

.video_one .video_img{
	position: relative;
	max-width: 1020px;
	margin: 0 auto;
}
.video_one .video_img img{
	border-radius: 25px;
}
.video_one .video_img .popup_video {
	cursor: pointer;
}
.site{
	overflow: hidden;
}

@media (max-width: 1300px) {
  .work_item .elementor-icon:before {
    left: 98%;
    z-index: -1;
  }
}
@media (max-width: 1199px) {
  .work_item .elementor-icon:before {
    left: 86%;
  }
  .graph_cart_inner .graph_chart_item h2,
  .graph_cart_inner .graph_chart_item .h2 {
    font-size: 57px;
  }
  .naviella_features_item .elementor-image-box-content {
    min-height: 200px;
  }
  .blog_list_item h2 {
    font-size: 24px;
  }
  .blog_list_item .post_content p {
    font-size: 16px;
    line-height: 24px;
  }
  .price_item {
    padding: 40px 20px;
  }
  .price_item ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .round_img .layer {
    width: 75px;
    height: 75px;
    padding: 12px;
  }
  .round_img .layer img {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .latest_blog_post .blog_img .img img {
    height: 250px;
  }
  .naviella_features_item .elementor-image-box-content {
    padding: 12px;
  }
  .newsletter-form {
    padding: 20px;
  }
  .newsletter-form p {
    font-size: 15px;
  }
}
@media (max-width: 881px) {
  .elementor-widget-image-box .elementor-image-box-img {
    display: block !important;
  }
  .elementor-widget-image-box .elementor-image-box-img img {
    width: 100% !important;
  }
  .naviella_features_item .elementor-image-box-content {
    min-height: auto;
    margin-top: -60px;
  }
  .graph_cart_inner .graph_chart_item {
    padding: 12px 25px 25px;
  }
  .price_item h2 {
    font-size: 40px;
  }
  .latest_blog_post .blog_img .img img {
    height: 100%;
    width: 100%;
  }
  .blog_list_item + .blog_list_item {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .work_item .elementor-icon:before {
    display: none;
  }
  .latest_blog_post .blog_img .img img {
    height: 100%;
    width: 100%;
  }
  .portfolio-item .latest_blog_post {
    border-radius: 30px;
  }
  .portfolio-item .latest_blog_post .blog_img {
    border-radius: 20px;
  }
  .naviella_features_item .elementor-image-box-content {
    padding: 15px 12px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .service_img_parallax .banner_img {
    padding: 8px;
  }
  .round_img .layer {
    width: 54px;
    height: 54px;
    padding: 10px;
  }
  .round_img:nth-child(2) {
    top: -18px;
    left: 49%;
  }
  .round_img:nth-child(3) {
    bottom: 150px;
    left: -12px;
  }
  .round_img:nth-child(5) {
    bottom: -20px;
    left: 35%;
  }
  .round_img:nth-child(4) {
    bottom: 100px;
    right: -15px;
  }
  .elementor-element-605a8b6 .ub-btn.elementor-button.elementor-button-link {
    text-align: center !important;
    width: 100%;
  }
  .elementor-10
    .elementor-element.elementor-element-bddfd6e
    .dl_title_section
    .dl_title_text
    span,
  .elementor-element-4542f04 .dl_title_section .dl_title_text span,
  .elementor-element-f57374e .dl_title_section .dl_title_text span {
    display: block !important;
  }
  .blog_list_inner {
    padding: 0;
  }
  .blog_list_item + .blog_list_item {
    margin-top: 20px;
  }
  .elementor-element.service_item_inner {
    background: transparent !important;
  }
  .service_item_box_two .elementor-widget-accordion .elementor-accordion-icon {
    display: block !important;
  }
  .service_item_inner .elementor-accordion .elementor-accordion-item {
    border-radius: 16px;
    overflow: hidden;
  }
  .service_item_inner
    .elementor-accordion
    .elementor-accordion-item
    .elementor-accordion-icon
    i {
    font-size: 15px;
  }
  .service_item_box_two .ub-btn {
    width: 100% !important;
    text-align: center;
  }
  .service_item_box_two .ub-btn .elementor-button-content-wrapper {
    display: inline-flex !important;
  }
  .service_item_box_two
    .elementor-align-left.elementor-absolute.ub-btn-icon-none.elementor-widget.elementor-widget-single-button {
    position: relative !important;
    right: auto !important;
    top: auto !important;
  }
  .contact_question_info {
    padding: 16px;
  }
  .contact_question_info .submit_btn {
    margin-top: 15px;
  }
  .contact_question_info p {
    margin-bottom: 6px;
  }
  .list_custom ul {
    padding-left: 17px;
    margin-bottom: 0px;
  }
  .list_custom ul li strong {
    font-size: 16px;
  }
  .popup_video .icon {
    width: 100px;
	  height: 100px;
   }
}
@media (max-width: 576px) {
  .blog_list_item {
    display: block !important;
  }
  .blog_list_item .blog_img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .blog_list_item .blog_img img {
    width: 100%;
  }
  .latest_blog_post .post_content {
    padding-top: 20px;
  }
  .blog_list_item h2 {
    font-size: 20px;
  }
  .blog_list_item .post_content p {
    font-size: 14px;
    line-height: 20px;
  }
}
