@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

span {
  font-family: "Poppins", sans-serif;
}

.ptb {
  padding: 80px 0;
}

a {
  text-decoration: none;
  color: #333333;
}

.thm-btn {
  border: none;
  outline: none;
  background-color: #ff6700;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 15px 49px;
  overflow: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
  text-decoration: none;
}

.thm-btn span {
  position: relative;
  z-index: 2;
}

.thm-btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

.thm-btn:before,
.thm-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background-image: linear-gradient(55deg, #ff6700 0%, #ff6700 100%);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.thm-btn:before {
  opacity: 0.5;
}

.thm-btn:after {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.thm-btn:hover:before,
.thm-btn:hover:after {
  top: 0;
}

.bg-light-orange {
  background-color: #ffdbc3;
}

.margin-50 {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .ptb {
    padding: 60px 0;
  }

  br {
    display: none;
  }

  .margin-50 {
    margin-bottom: 50px;
  }

}

.top_bar {
  padding: 0 40px;
  background-color: #fff;
  z-index: 999;
  border-bottom: 1px solid #e1e1e1;
}

.top_bar ul {
  display: flex;
  justify-content: end;
}

.top_bar ul li {
  list-style: none;
  text-decoration: none;
  margin-right: 20px;
  padding-top: 10px;
}

.top_bar ul li i {
  color: #fa7f2c;
  margin-right: 7px;
}

.main-menu {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.079);
  /* box-shadow: 0px 0 10px #0000001f; */
}

.main-menu .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .main-menu .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 30px;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .main-menu .container-fluid {
    padding-left: 60px;
    padding-right: 0px;
  }
}

.main-menu__list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .main-menu__list {
    display: flex;
    margin-left: auto;
    padding-right: 70px;
  }
}

.main-menu__list>li {
  position: relative;
}

.main-menu__list>li+li {
  margin-left: 40px;
}

@media (min-width: 1270px) {
  .main-menu__list>li+li {
    margin-left: 48px;
  }
}

.main-menu__list>li>a {
  color: #000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  text-decoration: none;
  padding: 29.5px 0;
  font-weight: 600;
}

.main-menu__list>li>a:hover {
  color: #ff6700;
}

.main-menu__list>li>ul {
  left: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  min-width: 250px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu__list>li>ul>li {
  position: relative;
}

.main-menu__list>li>ul>li>a {
  text-transform: capitalize;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 10px 10px;
  text-decoration: none;
}

.main-menu__list>li>ul>li>a:hover {
  background-color: #ff6700;
  color: #fff;
}

.main-menu__list>li:hover>ul {
  opacity: 1;
  visibility: visible;
}

.main-menu__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .main-menu__right .mobile-nav__toggler {
    display: none;
  }
}

@media (max-width: 1200px) {
  .main-menu__right {
    margin-left: auto;
    padding-right: 30px;
  }
}

.main-menu__right .mobile-nav__toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #12062c;
}

.main-menu__right .mobile-nav__toggler span:nth-child(2) {
  margin-top: 6px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 991px) {
  .main-menu__list {
    display: block;
    list-style: none;
    position: absolute;
    background: #fff;
    top: 90px;
    left: -100%;
    width: 80vw;
    height: 100vh;
    transition: .5s all;
    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.079);
  }

  .main-menu__list>li>a {
    padding: 15px 15px;
    border-bottom: 1px solid #e1e1e1;
  }

  .main-menu__list>li+li {
    margin-left: 0px;
  }

  .main-menu__list.menu-open {
    left: 0;
  }

}

/* slider banner  */

.banner .item {
  height: 90vh;
  position: relative;
}

.banner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .item .cover {
  /* padding: 75px 0; */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.623);
  display: flex;
  align-items: center;
}

.banner .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}

.banner .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.banner .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}

.banner .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #ff6700;
}

.banner .item .cover .header-content h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}

.banner .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.banner .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.banner .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.banner .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

.banner .owl-nav .owl-prev {
  position: absolute;
  left: 86%;
  top: 80%;
  opacity: 0.5;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: transparent !important;
  width: 50px;
  cursor: pointer;
  height: 50px;
  position: absolute;
  border: 1px solid #ff6700 !important;
  display: block;
  z-index: 1000;
  border-radius: 50px;
}

.banner .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

.banner .owl-nav .owl-prev i,
.banner .owl-nav .owl-next i {
  color: #fff;
}

.banner .owl-nav .owl-prev:focus {
  outline: 0;
}

.banner .owl-nav .owl-prev:hover {
  background: #ff6700 !important;
}

.banner .owl-nav .owl-next {
  position: absolute;
  right: 5%;
  top: 80%;
  opacity: 0.5;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: transparent !important;
  width: 50px;
  border: 1px solid #ff6700 !important;
  cursor: pointer;
  height: 50px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50px;
}

.banner .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.banner .owl-nav .owl-next:focus {
  outline: 0;
}

.banner .owl-nav .owl-next:hover {
  background: #ff6700 !important;
}

.banner .owl-prev:hover {
  opacity: 1;
}

.banner .owl-next:hover {
  opacity: 1;
}

@media only screen and (max-width: 575px) {
  .top_bar {
    display: none;
  }

  .main-menu .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
  }

  .banner .item {
    height: 65vh;
  }

  .banner .item .cover .header-content h2 {
    font-weight: 400;
    font-size: 20px;
  }

  .banner .item .cover .header-content h1 {
    font-size: 35px;
    margin: 10px 0;
  }

  .banner .item .cover .header-content h4 {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 17px;
  }

  .banner .item .cover .header-content .line {
    border: 4px solid #fff;
  }

  .banner .item .cover .header-content {
    position: relative;
    padding: 40px 25px;
    overflow: hidden;
  }

  .banner .owl-nav .owl-next {
    right: 17%;
    width: 40px;
    height: 40px;
  }

  .banner .owl-nav .owl-prev {
    left: 83%;
    width: 40px;
    height: 40px;
  }
}

/* about css  */

.about-sec__images {
  position: relative;
  display: inline-block;
}

.about-sec__images__shape {
  width: 503px;
  height: 366px;
  background-image: url(https://www.pinesoft.in/assets/images/shapes/about-five-1-1.png);
  position: absolute;
  bottom: -183px;
  left: -251.5px;
  display: none;
}

@media (min-width: 1200px) {
  .about-sec__images__shape {
    display: block;
  }
}

.about-sec__images img {
  max-width: 100%;
}

.about-sec__images img:nth-of-type(2) {
  display: block;
  margin-left: auto;
  margin-top: -80px;
  position: relative;
}

@media (min-width: 992px) {
  .about-sec__images img:nth-of-type(2) {
    margin: 0;
    position: absolute;
    bottom: -25px;
    right: 25px;
  }
}

@media (min-width: 1200px) {
  .about-sec__images img:nth-of-type(2) {
    right: -110px;
  }
}

.about-sec__images__caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 340px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.07);
  border-right: 10px solid #ff6700;
  padding-left: 34px;
  padding-right: 10px;
  padding-top: 29px;
  padding-bottom: 17px;
  border-radius: 55px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (min-width: 992px) {
  .about-sec__images__caption {
    bottom: -55px;
    left: 90px;
  }
}

.about-sec .section-title {
  padding-bottom: 30px;
}

.about-sec__text+.about-sec__text {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .about-sec__text+.about-sec__text {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .about-sec__images {
    display: none;
  }
}

.section-title {
  padding-bottom: 50px;
}

.section-title__text {
  margin: 0;
  text-transform: uppercase;
  color: #ff6700;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: bold;
  margin-top: -10px;
}

.section-title__title {
  margin: 0;
  color: #12062c;
  font-size: 35px;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-top: 3px;
}

.service-card-three {
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 32px;
  padding-top: 48px;
  height: 100%;
}

.minus_mt {
  margin-top: -30px;
}

.service-card-three:nth-child(2) {
  margin-top: -20px;
}

.service-card-three::before {
  content: "";
  background-image: linear-gradient(55deg, #ff6700 0%, #ff6700 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.service-card-three:hover::before {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.service-card-three__icon {
  position: relative;
  display: inline-block;
}

.service-card-three__icon::before {
  content: "";
  width: 70px;
  height: 70px;
  background-color: #f9f6ff;
  position: absolute;
  top: -4px;
  left: -31px;
  border-radius: 50%;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
  opacity: 1;
}

.service-card-three__icon img {
  position: relative;
  font-size: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #6a2dec;
}

.service-card-three:hover .service-card-three__icon::before {
  left: -15px;
  background-color: rgba(255, 255, 255, 0.1);
}

.service-card-three:hover .service-card-three__icon img {
  filter: brightness(0) invert(1);
}

.service-card-three__content {
  position: relative;
}

.service-card-three__title {
  color: #12062c;
  font-size: 22px;
  line-height: 1.2em;
  padding-top: 50px;
}

.service-card-three__title a {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(currentcolor),
      to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none;
}

.service-card-three__title a:hover {
  color: #fff;
  background-size: 100% 2px;
}

.service-card-three:hover .service-card-three__title a {
  color: #fff;
}

.service-card-three__text {
  font-size: 14px;
  line-height: 1.714em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-card-three:hover .service-card-three__text {
  color: #fff;
}

/* cta  */

.cta-two {
  position: relative;
  text-align: left;
  background-attachment: fixed;
}

.cta-two__bg::before {
  content: "";
  background-image: url(../image/vendor-portal-hero-image.jpg);
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
}

.cta-two .container {
  position: relative;
}

.cta-two__title {
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .cta-two__title {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  .cta-two__title {
    font-size: 48px;
    line-height: 1.2em;
    max-width: 662px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
  }
}

.cta-two__title span {
  position: relative;
  background-image: url(../images/shapes/cta-two-title-s-1.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

@media (min-width: 992px) {
  .cta-two__btn {
    margin-bottom: -10px;
  }
}

/*Technologies*/
/*************/
/* MASONRY GRID 
 * ------------------ */
.css-masonry {
  -webkit-column-count: 7;
  -moz-column-count: 7;
  column-count: 6;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin: 5px;
  padding: 0;
}

/* ITEM 
 * ------------------ */
.css-masonry .item {
  display: inline-block;
  width: 100%;
  padding: 20px;
  background: #fff;
  margin: 0 0 5px;
  height: 100%;
  width: 100%;
  -webkit-transition: 1s ease all;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px #00000019;
}

.css-masonry .item img {
  width: 100%;
  max-height: 50px;
  height: 100%;
  object-fit: contain;
}

.css-masonry .item .title {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

@media only screen and (max-width: 420px) {
  .css-masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }

  .css-masonry .item {
    padding: 15px;
    margin: 0 0 0px;
  }

  .css-masonry .item img {
    max-height: 40px;
  }
}

@media only screen and (min-width: 421px) and (max-width: 768px) {
  .css-masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .css-masonry {
    -moz-column-count: 5;
    -webkit-column-count: 5;
    column-count: 5;
  }
}

/* @media only screen and (min-width: 1001px) {
  .css-masonry {
    -moz-column-count: 7;
    -webkit-column-count: 7;
    column-count: 7;
  }
} */

@media only screen and (min-width: 1199px) and (max-width: 1280px) {
  .item .title {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }

  .jquery-text {
    padding-top: 10px;
  }

  .Semantic-text {
    padding-top: 10px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1400px) {
  .item .title {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }

  .jquery-text {
    padding-top: 10px;
  }

  .Semantic-text {
    padding-top: 10px;
  }
}

/*--
/*  19 - Contact CSS
/*----------------------------------------*/
.contact-section {
  background: #ff5538;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contact-section .contact-wrap .contact-info {
  max-width: 410px;
}

.contact-section .contact-wrap .contact-info .info-title {
  font-size: 40px;
  line-height: 54px;
  color: #ffffff;
}

@media only screen and (max-width: 1199px) {
  .contact-section .contact-wrap .contact-info .info-title {
    font-size: 34px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-section .contact-wrap .contact-info .info-title {
    font-size: 28px;
    line-height: 40px;
  }
}

.contact-section .contact-wrap .contact-info ul {
  padding-top: 15px;
}

.contact-section .contact-wrap .contact-info ul li {
  border-top: 1px solid #ffffff;
  margin-top: 15px;
  padding-top: 15px;
  text-decoration: none;
  list-style: none;
}

.contact-section .contact-wrap .contact-info ul li:first-child {
  border-top: 0;
}

.contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon svg {
  height: 35px;
  width: 35px;
  color: #ffffff;
}

@media only screen and (max-width: 575px) {
  .contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon svg {
    height: 35px;
    width: 35px;
  }
}

.contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text {
  margin-left: 20px;
}

.contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text .title {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}

.contact-section .contact-wrap .contact-form {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 110px;
}

@media only screen and (max-width: 1199px) {
  .contact-section .contact-wrap .contact-form {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-section .contact-wrap .contact-form {
    margin-left: 0;
    margin-top: 60px;
  }
}

.contact-section .contact-wrap .contact-form .contact-form-wrap {
  padding: 60px;
}

@media only screen and (max-width: 1199px) {
  .contact-section .contact-wrap .contact-form .contact-form-wrap {
    padding: 40px 25px;
  }
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap {
  margin-bottom: 30px;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
  font-size: 14px;
  line-height: 30px;

  font-weight: 800;
  text-transform: uppercase;
  color: #ff5538;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
  font-size: 42px;
  line-height: 54px;

  font-weight: 700;
  color: #333333;
}

@media only screen and (max-width: 1199px) {
  .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 32px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 575px) {
  .contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 28px;
    line-height: 40px;
  }
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form {
  margin-top: 25px;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  height: 55px;
  line-height: 55px;
  border: 1px solid #dbdbdb;
  padding-left: 15px;
  width: 100%;
}

.contact-form-wrap select {
  height: 55px;
  border: 1px solid #dbdbdb;
  width: 100%;
  outline: none;
  border-radius: 0px !important;
}

.contact-form-wrap select:focus {
  box-shadow: none;
  border-color: #171717;
}


.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}


.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea {
  border: 1px solid #ebebeb;
  padding: 15px;
  resize: none;
  width: 100%;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #4c4d56;

  font-weight: 400;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn {
  margin-top: 25px;
}

.contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
  font-size: 16px;
  width: 100%;
  height: 55px;
  line-height: 50px;
  margin-bottom: 10px;
}

.contact-info-text a {
  color: #fff;
}

@media only screen and (max-width: 575px) {
  .contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
    padding: 0 45px;
  }

  .contact-section .contact-wrap .contact-info {
    max-width: 100%;
  }

  .contact-section .contact-wrap .contact-info ul {
    padding-left: 0;
  }
}

/*--
/*  12 - Blog CSS
/*----------------------------------------*/

.blog-section .blog-wrap .blog-content-wrap {
  padding-top: 35px;
}

.single-blog {
  background: #ffffff;
  box-shadow: 0px 0px 98px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-top: 30px;
}

.single-blog .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.single-blog .blog-img a {
  display: block;
}

.single-blog .blog-img a img {
  width: 100%;
  transition: all 0.3s linear;
}

.single-blog .blog-img .top-meta {
  position: absolute;
  top: 35px;
  left: 30px;
}

.single-blog .blog-img .top-meta .date {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background-image: linear-gradient(120deg, #cb5d13 0%, #fa7f2c 100%);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  line-height: 12px;
  padding: 10px;
}

.single-blog .blog-img .top-meta .date span {
  font-size: 28px;
  line-height: 18px;
  font-weight: 500;
  line-height: 30px;
  display: block;
}

.single-blog .blog-content {
  padding: 20px 25px;
  min-height:300px;
}

@media only screen and (max-width: 991px) {
  .single-blog .blog-content {
    padding: 35px;
  }
}

@media only screen and (max-width: 575px) {
  .single-blog .blog-content {
    padding: 35px 24px;
  }
}

.single-blog .blog-content .blog-meta span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #999999;
  margin-right: 15px;
}

@media only screen and (max-width: 575px) {
  .single-blog .blog-content .blog-meta span {
    margin-right: 12px;
  }
}

.single-blog .blog-content .blog-meta span i {
  color: #333333;
  margin-right: 5px;
}

.single-blog .blog-content .title {
  font-size: 22px;
  line-height: 30px;
  color: #333333;
  padding-right: 15px;
}

.single-blog .blog-content p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #4c4d56;
  margin-top: 10px;
}

.single-blog .blog-btn {
  border-top: 1px solid #ebebeb;
  padding: 15px 40px;
}

.single-blog .blog-btn .blog-btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #ff6700;
  transition: all 0.3s linear;
  text-decoration: none;
}

.single-blog .blog-btn .blog-btn-link i {
  transition: all 0.3s linear;
}

.single-blog .blog-btn .blog-btn-link:hover i {
  transform: translateX(5px);
}

.single-blog:hover .blog-img a img {
  transform: scale(1.1);
}

/*--
/*  14 - CTA CSS
/*----------------------------------------*/
.cta-section .cta-wrap {
  background: #ffa597;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  padding: 75px 125px 80px 110px;
  margin-bottom: -110px;
  position: relative;
  z-index: 5;
  background-blend-mode: color-dodge;
}

.cta-section .cta-wrap .cta-left .title {
  font-size: 40px;
  line-height: 1.4;
  color: #000;
}

.cta-section .cta-wrap .cta-right {
  text-align: right;
}

.cta-section .cta-wrap .cta-right .number {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.cta-section .cta-wrap .cta-right .btn {
  padding: 0 35px;
  margin-left: 20px;
}

@media only screen and (max-width: 1199px) {
  .cta-section .cta-wrap {
    padding: 25px;
  }

  .cta-section .cta-wrap .cta-left .title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .cta-section .cta-wrap .cta-right .btn {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .cta-section .cta-wrap .cta-left {
    text-align: left;
  }

  .cta-section .cta-wrap .cta-right {
    text-align: center;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .cta-section .cta-wrap .cta-left .title {
    font-size: 30px;
  }

  .cta-section .cta-wrap .cta-right .number {
    display: block;
    margin-bottom: 10px;
  }

  .cta-section .cta-wrap .cta-right .btn {
    margin-left: 0px;
  }
}

/*--
/*  25.1 - Footer Widget CSS
/*----------------------------------------*/
.footer-widget-wrap {
  padding-top: 190px;
  padding-bottom: 70px;
}

.footer-widget {
  margin-top: 30px;
}

.footer-widget.footer-widget-info {
  background: #1f2428;
  padding: 40px 30px;
  border-radius: 5px;
}

.footer-widget.footer-widget-1 {
  padding-left: 30px;
}

@media only screen and (max-width: 1199px) {
  .footer-widget.footer-widget-1 {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-widget.footer-widget-1 {
    padding-left: 0px;
  }
}

.widget-info {
  padding-top: 20px;
}

.widget-info ul li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.widget-info ul li .info-icon i {
  display: inline-block;
  color: #005de0;
  font-size: 18px;
  margin-right: 10px;
  margin-top: 2px;
}

.widget-info ul li .info-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #c4c5c7;
}

.footer-widget .footer-widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.widget-link {
  padding-top: 22px;
}

.widget-link .link {
  padding-left: 0;
}

.widget-link .link li {
  margin-top: 7px;
  text-decoration: none;
  list-style: none;
}

.widget-link .link li a {
  font-size: 14px;
  font-weight: 400;
  color: #c4c5c7;
  transition: all 0.3s linear;
}

.widget-link .link li a:hover {
  color: #cb5d13;
  padding-left: 10px;
}

.footer-widget-wrap-2 {
  padding-top: 80px;
}

.widget-info-2 ul li .info-icon i {
  color: #cb5d13;
}

.widget-info-2 ul li .info-text {
  color: #666666;
}

.widget-info-2 ul li .info-text a:hover {
  color: #cb5d13;
}

.footer-widget-2 .footer-widget-title {
  color: #cb5d13;
}

.footer-widget-2 .widget-link .link li a {
  color: #666666;
}

.footer-widget-2 .widget-link .link li a:hover {
  color: #cb5d13;
  padding-left: 10px;
}

.footer-widget-wrap-3 {
  padding-top: 80px;
}

.widget-info-3 ul li .info-icon i {
  color: #ff5538;
}

.widget-info-3 ul li .info-text {
  color: #666666;
}

.widget-info-3 ul li .info-text a:hover {
  color: #ff5538;
}

.footer-widget-3 .footer-widget-title {
  color: #ff5538;
}

.footer-widget-3 .widget-link .link li a {
  color: #666666;
}

.footer-widget-3 .widget-link .link li a:hover {
  color: #ff5538;
  padding-left: 10px;
}

.footer-widget-wrap-3 {
  padding-top: 290px;
}

@media only screen and (max-width: 767px) {
  .footer-widget-wrap-3 {
    padding-top: 270px;
  }
}

/* testimonail  */

.testimonial-section .single-testimonial {
  background: #ffffff;
  padding: 40px 40px;
  border-radius: 5px;
  position: relative;
  margin: 18px 0;
}

@media only screen and (max-width: 991px) {
  .testimonial-section .single-testimonial {
    padding: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .testimonial-section .single-testimonial {
    padding: 35px;
  }
}

.testimonial-section .single-testimonial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scaleY(1.1) scaleX(0.85);
  border-radius: 5px;
}

.testimonial-section .single-testimonial::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scaleY(1.05) scaleX(0.92);
  border-radius: 5px;
}

.testimonial-section .single-testimonial .testimonial-content .title {
  font-size: 22px;
  line-height: 30px;
  color: #fa7f2c;
}

.testimonial-section .single-testimonial .testimonial-content p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #000c29;
  margin-top: 15px;
}

.testimonial-section .single-testimonial .testimonial-content .testimonial-author-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-section .single-testimonial .testimonial-content .testimonial-author-wrap .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-section .single-testimonial .testimonial-content .testimonial-author-wrap .testimonial-author .author-img img {
  border-radius: 50%;
}

.testimonial-section .single-testimonial .testimonial-content .testimonial-author-wrap .testimonial-author .author-text {
  flex: 1;
  margin-left: 20px;
}

.testimonial-section .single-testimonial .testimonial-content .testimonial-author-wrap .testimonial-author .author-text .name {
  font-size: 16px;
  line-height: 20px;
  color: #231e32;
}

.testimonial-section .single-testimonial .testimonial-content .testimonial-author-wrap .testimonial-author .author-text .designation {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  display: block;
  color: #005de0;
}

@media only screen and (max-width: 767px) {
  #testimonial {
    margin-top: 50px;
  }
}

/*--
/*  25. Footer CSS
/*----------------------------------------*/
.footer-section {
  background: #171717;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-logo img {
  max-width: 120px;
  filter: brightness(0) invert(1);
}

.footer-copyright-area {
  border-top: 1px solid #1a253f;
  padding-top: 15px;
  padding-bottom: 30px;
}

.copyright-text {
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .copyright-text {
    text-align: center;
  }
}

.copyright-text p {
  font-size: 14px;
  font-weight: 400;
  color: #c4c5c7;
}

.copyright-social {
  margin-top: 15px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .copyright-social {
    text-align: center;
  }
}

.copyright-social .social li {
  display: inline-block;
  margin-right: 10px;
}

.copyright-social .social li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background: #15203b;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s linear;
}

.copyright-social .social li a:hover {
  color: #005de0;
}

.footer-section-2 {
  background: #f8f8fb;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-copyright-2 {
  border-top: 1px solid #c6c6c9;
}

.footer-copyright-2 .copyright-text p {
  color: #666666;
}

.footer-copyright-2 .copyright-text p a {
  font-weight: 700;
  color: #cb5d13;
}

.footer-copyright-2 .copyright-social .social li a {
  background: #cb5d13;
  color: #ffffff;
  transition: all 0.3s linear;
}

.footer-copyright-2 .copyright-social .social li a:hover {
  background: #005de0;
  color: #ffffff;
}

.footer-section-3 {
  background: #f8f8fb;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-copyright-3 {
  border-top: 1px solid #c6c6c9;
}

.footer-copyright-3 .copyright-text p {
  color: #666666;
}

.footer-copyright-3 .copyright-text p a {
  font-weight: 700;
  color: #ff5538;
}

.footer-copyright-3 .copyright-social .social li a {
  background: #ff5538;
  color: #ffffff;
  transition: all 0.3s linear;
}

.footer-copyright-3 .copyright-social .social li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 93, 224, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(130%);
  z-index: 99;
  transition: all 200ms linear;
}

.progress-wrap::after {
  position: absolute;
  content: "\f108";
  font-family: flaticon !important;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  color: #005de0;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  transform: rotate(90deg);
  cursor: pointer;
  display: block;
  z-index: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #005de0;
  stroke-width: 4;
  box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.progress-wrap-3 {
  box-shadow: inset 0 0 0 2px rgba(255, 85, 56, 0.2);
}

.progress-wrap-3::after {
  color: #ff5538;
}

.progress-wrap-3 svg.progress-circle path {
  stroke: #ff5538;
}

/***********************
* Page Header
***********************/
.page-header {
  background-color: #12062c;
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
}

.page-header__bg {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #12062c;
  mix-blend-mode: revert;
  opacity: 0.7;
}

.page-header .container {
  position: relative;
  z-index: 3;
}

.page-header .thm-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-header .thm-breadcrumb li {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-header .thm-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  margin-right: 10px;
}

.page-header .thm-breadcrumb li a {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(currentcolor),
      to(currentcolor)) 0px 77%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 77%/0px 1px no-repeat;
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.page-header .thm-breadcrumb li a:hover {
  background-size: 100% 1px;
}

.page-header__title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  margin-top: 2px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .page-header__title {
    font-size: 40px;
  }
}

/* about us  */

.about-three {
  position: relative;
}

.about-three__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 685px;
  background-repeat: no-repeat;
  background-position: top right;
}

.about-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://www.pinesoft.in/assets/images/shapes/about-three-bg-1-1.png);
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 20;
  display: none;
}

@media (min-width: 1200px) {
  .about-three::before {
    display: block;
  }
}

.about-three__image {
  position: relative;
  display: inline-block;
}

.about-three__images::before {
  position: absolute;
  content: "";
  width: 10000px;
  right: 51%;
  background-color: #cb5d13;
  top: -80px;
  bottom: -80px;
}

@media (min-width: 992px) {
  .about-three__image::before {
    display: block;
  }
}

.about-three__image img {
  position: relative;
  max-width: 100%;
}

.about-three__text {
  margin-top: -20px;
  margin-bottom: 35px;
}

.about-three__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .about-three__list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.about-three__list__item+.about-three__list__item {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .about-three__list__item+.about-three__list__item {
    margin-top: 35px;
  }
}

.about-three__list__icon {
  /* font-size: 45px; */
  color: #ffffff;
  margin-bottom: 20px;
  background-color: #fa7f2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 18px;
}

.about-three__list__icon img {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .about-three__list__icon {
    margin-bottom: 0;
    margin-right: 30px;
    margin-top: 4px;
  }
}

.about-three__list__title {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: #333333;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .about-three__list__title {
    margin-bottom: 0px;
  }
}

.about-three__list__title a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__list__title a:hover {
  color: #12062c;
}

.about-three__list__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  padding-top: 12px;
}

/*--
/*  07 - Counter CSS
/*----------------------------------------*/
.counter-section {
  padding-top: 100px;
  padding-bottom: 140px;
  background: #fa7f2c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 1199px) {
  .counter-section {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .counter-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .counter-section {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.counter-section .counter-wrap .counter-item {
  margin-top: 30px;
}

.counter-section .counter-wrap .counter-item .counter-icon {
  margin-bottom: 30px;
}

.counter-section .counter-wrap .counter-item .counter-icon img {
  filter: brightness(0) invert(1);
}

.counter-section .counter-wrap .counter-item .counter-text span {
  font-size: 40px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .counter-section .counter-wrap .counter-item .counter-text span {
    font-size: 30px;
    font-weight: 500;
  }
}

.counter-section .counter-wrap .counter-item .counter-text p {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #ffffff;
}

/***********************
* Work Process
***********************/
.work-process {
  counter-reset: workProcessCount;
}

.work-process-card-one {
  counter-increment: workProcessCount;
  border: 2px solid #fa7f2c;
  padding: 38px;
  margin-bottom: 38px;
  position: relative;
  padding-bottom: 30px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 100%;
}

.work-process-card-one:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .work-process-card-one {
    margin-bottom: 0;
    margin-right: 38px;
  }
}

.work-process-card-one::before {
  content: "";
  background-color: #fa7f2c;
  width: 74px;
  height: 74px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
  margin-top: -36px;
}

@media (min-width: 992px) {
  .work-process-card-one::before {
    left: 100%;
    -webkit-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%, 0% 50%);
    clip-path: polygon(0 0, 50% 50%, 0 100%, 0% 50%);
    margin-top: 0;
    width: 77px;
    height: 77px;
  }
}

.work-process-card-one::after {
  content: "";
  background-color: #ffffff;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
  margin-top: -22px;
}

@media (min-width: 992px) {
  .work-process-card-one::after {
    left: 100%;
    -webkit-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%, 0% 50%);
    clip-path: polygon(0 0, 50% 50%, 0 100%, 0% 50%);
    margin-top: 0;
  }
}

.work-process-card-one__count {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin-bottom: 19px;
  width: 50px;
  height: 50px;
  background-color: #fa7f2c;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}

.work-process-card-one__count::after {
  content: counters(workProcessCount, ".");
}

.work-process-card-one__title {
  position: relative;
  font-size: 23px;
  min-height: 50px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.05em;
  color: #12062c;
  margin-bottom: 14px;
}

.work-process-card-one__title a {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(currentcolor),
      to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.work-process-card-one__title a:hover {
  color: #fa7f2c;
  background-size: 100% 2px;
}

.work-process-card-one__text {
  margin-bottom: 19px;
}

.features-section-3 .features-wrap-3 .features-content-wrap {
  padding-top: 20px;
}

.features-section-3 .features-wrap-3 .features-content-wrap .single-item {
  border: 1px solid #ebebeb;
  padding: 45px;
  padding-bottom: 65px;
  border-radius: 10px;
  margin-top: 30px;
  transition: 0.4s all;
}

.features-section-3 .features-wrap-3 .features-content-wrap .single-item:hover {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .features-section-3 .features-wrap-3 .features-content-wrap .single-item {
    padding: 35px;
  }
}

.features-section-3 .features-wrap-3 .features-content-wrap .single-item .features-icon img {
  height: 50px;
  filter: brightness(0);
}

.features-section-3 .features-wrap-3 .features-content-wrap .single-item .features-content .title {
  font-size: 22px;
  line-height: 1.4;
  color: #fa7f2c;
  margin-top: 20px;
}

.features-section-3 .features-wrap-3 .features-content-wrap .single-item .features-content p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #4c4d56;
  margin-top: 10px;
}

/***********************
* Contact
***********************/

.contact-one__form {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f9f6ff;
}

@media (min-width: 768px) {
  .contact-one__form {
    padding: 80px 40px;
  }
}

@media (min-width: 992px) {
  .contact-one__form {
    padding: 80px;
  }
}

.contact-one__form .row {
  --bs-gutter-y: 20px;
  --bs-gutter-x: 20px;
}

.contact-one__form input[type="text"],
.contact-one__form input[type="email"], .contact-one__form select {
  display: block;
  border: 1px solid #0063b1;
  outline: none;
  background-color: #fff;
  width: 100%;
  padding-left: 30px;
  font-size: 16px;
  color: #797582;
  height: 56px;
  border-radius: 0;
}

.contact-one__form textarea {
  display: block;
  border: 1px solid #0063b1;
  outline: none;
  background-color: #fff;
  width: 100%;
  padding-left: 30px;
  font-size: 16px;
  color: #797582;
  height: 138px;
  padding-top: 20px;
}

@media (min-width: 992px) {
  .contact-one .container>.row>[class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contact-one__info {
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .contact-one__info {
    margin-left: -30px;
    min-width: 400px;
  }
}

.contact-one__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(55deg, #ff6700 0%, #ff6700 100%);
  opacity: 0.93;
}

.contact-one__item {
  position: relative;
}

.contact-one__item__title {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.667em;
  margin-top: -9px;
}

.contact-one__item__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75em;
  margin: 0;
  margin-top: 4px;
}

.contact-one__item__text a {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(currentcolor),
      to(currentcolor)) 0px 80%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 80%/0px 1px no-repeat;
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__item__text a:hover {
  color: #fff;
  background-size: 100% 1px;
}

.contact-one__item+.contact-one__item {
  margin-top: 38px;
}

.contact-one__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -7px;
  margin-right: -7px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-one__social li {
  margin: 0 7px;
}

.contact-one__social li a {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
}

.contact-one__social li a:hover {
  color: #12062c;
  background-color: #fff;
}


/* blog detail  */


.blog_image {
  height: 400px;
  width: 100%;
  border-radius: 10px;
}

.blog_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}

.border-cc {
  border-right: 7px solid #fff;
}

@media only screen and (max-width: 767px) {
  .section-title__title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .minus_mt {
    margin-top: 0px;
  }

  .page-header {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-header__bg {
    background-position: center center;
  }

  .about-three__images::before {
    width: 184px;
    right: 51%;
    top: -25px;
    bottom: -20px;
    display: none;
  }

  .about-three__image {
    margin-bottom: 80px;
    display: none;
  }

  .counter-section .counter-wrap .counter-item .counter-icon img {
    filter: brightness(0) invert(1);
    width: 55px;
  }

  .about-three__list__item {
    border-bottom: 1px solid #c4c5c7;
    padding: 20px;
  }

  .border-cc {
    border-right: none;
    border-bottom: 7px solid #fff;
  }
}



.single-service img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}