@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
/*Hero Banner*/
/************/
.hero_banner {
  height: calc(100vh - 120px);
  /*    background: #fff;*/
  background: linear-gradient(0deg, #ffedf0, transparent);
  /*    background-blend-mode: color;*/
  /*    background-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.75)), url(https://media.istockphoto.com/id/1201166649/photo/office-responsive-devices-web-design-website.jpg?s=1024x1024&w=is&k=20&c=Y0nH3YzWfMt4Asf4KyNUCJPReUbpJGOakBjsV4JwIoU=);*/
  background-size: 100%;
  background-position: center;
  animation: bg-zoom 10s linear;
  position: relative;
}
.hero_banner:before {
  width: 40rem;
  height: 40rem;
  background: #feeae4;
  border-radius: 100%;
  position: absolute;
  content: "";
  left: -40%;
  bottom: 0;
  top: 25%;
  animation: circle 10s linear 0s infinite alternate;
  -webkit-animation: circle 10s linear 0s infinite alternate;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

@keyframes circle {
  0% {
    transform: translateX(-100px);
    rotate: 0deg;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
  }

  100% {
    transform: translateY(-100px);
    rotate: 180deg;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
  }
}

.scale2 {
  animation: scale2 8s alternate infinite;
  animation-delay: 0.8s;
}
@keyframes bg-zoom {
  from {
    background-size: 150%;
  }
  to {
    background-size: 100%;
  }
}
@keyframes scale2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.85);
  }
}
.top {
  top: 0;
}
.end {
  right: 0;
}
.start {
  left: 0;
}
.bottom {
  bottom: 0;
}
.cs-circle_1 {
  height: 745px;
  width: 745px;
  border-radius: 50%;
  border: 3px solid rgb(255 255 255 / 10%);
  position: absolute;
  bottom: -30%;
  right: -12%;
}
.hero_content {
  padding: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 75%;
  margin-top: -100px;
  color: #000;
}
.hero_title {
  font-size: 3.35vw !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-right: 12% !important;
}
.sub-text {
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px !important;
}
.hero_content p {
  font-size: 18px;
  margin-right: 12% !important;
  margin-bottom: 45px;
}
.hero_content .btn .ms-btn__text,
.hero_content .r_btn {
  font-size: 18px;
}
.hero_content span.text-black,
.hero_content span.text-white {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: 300;
}
span.text-black:before,
span.text-white:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #fb0e3f2b;
  z-index: -1;
}

.right_caerd-box {
  width: 45%;
  height: 100%;
  padding-left: 50px;
}
.right_caerd-box img.logo-o {
  opacity: 0.03;
  position: absolute;
  top: 0;
  left: 0;
}

/*Our Services*/
/*************/

.services {
  /*    background-color: #f7f7f7;*/
  background-color: #fff;
  /*
    background-image: url(images/lines-bg1.svg);
    background-position: center center;
    background-repeat: repeat;
*/
}
.sub_title {
  color: var(--theme-pink);
  font-size: 16px;
}
.service_title {
  color: #000;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  position: relative;
}

.service_wrapper p {
  position: relative;
}
.service_wrapper {
  margin-top: 60px;
}

.each_service {
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.each_service:last-child {
  border-bottom: 0px;
}
.each_service .service_img {
  width: 265px;
  height: 210px;
  position: absolute;
  top: 172px;
  right: 250px;
  transform: rotate(5deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s,
    -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s,
    -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -200px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.each_service:hover .service_img {
  opacity: 1;
}
.each_service .col-md-5 {
    margin-left: 50px;
}
.each_service .col-md-3.serve_btn {
    margin-left: 3.9%;
}
.service-btn {
  width: 150px;
  height: 150px;
  text-align: center;
  line-height: 150px;
  border-radius: 50%;
  border: 1px solid #000;
  float: right;
  position: relative;
  z-index: 1;
}
.service-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s linear;
  background: #000;
  transform-origin: center;
  opacity: 0;
  z-index: -1;
}
.service-btn:hover::before {
  opacity: 1;
  width: 150px;
  height: 150px;
}
.service-btn .icon-arrow {
  display: inline-block;
  width: 18px;
  transform: rotate(-45deg);
  margin-left: 10px;
  transition: all 0.3s linear;
}
.service-btn:hover {
  color: #fff;
}
.service-btn:hover svg {
  fill: var(--theme-pink);
  transform: rotate(-0deg);
}
.each_service:hover .service_title {
  color: var(--theme-pink);
}
.each_service .col-md-5 p {
  width: 75%;
}
.each_service .col-md-5 .list-styled {
  position: relative;
}
.each_service .col-md-5 .list-styled li {
  z-index: 99999 !important;
}

/* .mouse-hover{
    transition: .6s all;
    padding: 30px;
}
.mouse-hover:hover{
    background-color: #000000;
    color: #ffffff;
} */

/*Features - 1*/
/*************/
.features_1 {
  position: relative;
  padding-left: 550px;
  min-height: 640px;
  margin-top: 40px;
}
.f-image1 {
  position: absolute;
  left: 0;
  top: 25px;
  pointer-events: none;
  max-width: 411px;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 20px 20px 0px var(--theme-pink);
}

.hover-tab:first-child {
  padding-top: 35px;
}
.hover-tab {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.hover-tab .f-image1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-animation: inactiveImageAnimation1 0.6s forwards ease;
  animation: inactiveImageAnimation1 0.6s forwards ease;
  z-index: 2;
  border-radius: 15px;
}
.hover-tab.active .f-image1 img {
  -webkit-animation: activeImageAnimation1 0.6s forwards ease;
  animation: activeImageAnimation1 0.6s forwards ease;
}

@keyframes inactiveImageAnimation1 {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
}

@keyframes activeImageAnimation1 {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.hover-tab .service_title {
  text-transform: none;
  font-size: 30px;
}
.hover-tab p,
.team-desc,
footer p,
footer li {
  opacity: 0.8;
}
.ll_row2 {
  /*    margin-top: 200px;*/
  padding-right: 70px;
}

/*OUr TEam*/
/*********/
.our_team {
  --mr-left: 150px;
}
.team-desc {
  margin-left: var(--mr-left);
  margin-top: 40px;
  margin-right: 30px;
  margin-bottom: 40px;
}
.our_team .title_wrap {
  padding: 30px;
  position: relative;
}
.our_team .right-side:before {
  content: "";
  height: calc(100% + 160px);
  width: 2px;
  background: #ffffff54;
  position: absolute;
  top: -80px;
  left: 120px;
}

.left-side img {
  opacity: 0;
  display: none;
}
.left-side .img_wrapper {
  background-image: url(./images/home_page/Meet-Our-Team.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: left center;
  width: 100%;
  height: 100%;
}

/*Why Choose Us*/
/**************/
.horizontal-scroll-1 {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(6, 100%);
  grid-template-rows: auto;
}
.h-section {
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90vh;
  margin: 0 10px;
  overflow: hidden;
  border-radius: 15px;
}
.h-section.first h2.why-choose-title {
  font-weight: 600;
  font-size: 100px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #000;
}
.h-section.third {
  background-image: url("./images/home_page/why-need-website.webp");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 30%;
}

.h-section.third .wc-title {
  margin: 0 0 80px 0;
}
.wc-subtitle {
  color: var(--theme-pink);
}
.wc-title {
  font-weight: 600;
  font-size: 25px;
  margin: 10px 0;
}
.h-section.fourth {
  background-image: url("./images/h-fourth.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}
.wc-content {
  margin-right: 80px;
}
.count-box {
  align-items: center;
}
.count-box.second {
  margin-top: 20px;
  margin-bottom: 20px;
}
.count-box:not(.second) {
  margin-left: 80px;
}
.count-box .count_num {
  --box-size: 165px;
  border-radius: 50%;
  text-align: center;
  min-width: var(--box-size);
  height: var(--box-size);
  line-height: var(--box-size);
  border: 4px solid #000;
  font-size: 40px;
  margin-right: 30px;
  font-weight: 600;
}

.count-box .count_desc p,
.counter p {
  font-size: 15px;
}

.counter span {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
}

/*Brands*/
/********/
.clients {
  border-width: 1px 0;
  border-style: solid;
  border-color: #e9e9e9;
}
.clients:last-child {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #e9e9e9;
}
.clients .col-md-2 {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #e9e9e9;
  margin-bottom: 20px;
}
.clients .col-md-2 img {
  padding: 10px;
}

.clients .col-md-2:nth-child(6),
.clients .col-md-2:nth-child(12) {
  border-width: 0 1px 0 1px;
  border-style: solid;
  border-color: #e9e9e9;
}
.flipper-container {
  position: relative;
  margin: auto;
  perspective: 1000px;
  height: 155px;
}
.flip {
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transition: all 1s;
}
.flip.active {
  transform: rotateY(180deg);
}

.face {
  position: absolute;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
}
.face.back {
  display: block;
  transform: rotateY(180deg);
  box-sizing: border-box;
}

/********************/
/********************/

.third-text-section {
  background-color: lightgray;
  margin-top: -300px;
  padding-bottom: 50px;
}

.banner-image-section .banner-image img {
  z-index: 999 !important;
}

.third-text-section-box {
  background-color: #fff;
}
.imgOwl {
  width: 100%;
  margin: 0 auto;
  height: var(--img_height);
  position: relative;
  transition: all 0.4s linear;
  overflow: hidden;
}

.imgOwl img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.third-text-section-box h2 {
  color: var(--theme-pink);
}
.third-text-section-box {
  padding: 35px;
  margin: 25px 0;
  border-radius: 12px;
  box-shadow: 0 5px 15px #00000025;
}
.third-content-heading {
  padding: 80px 120px 0 0;
}
.third-text-section-box-section {
  margin-top: -170px;
}
.info-01 {
  padding-bottom: 70px;
}

/**Make US Top**/
/**************/
.make_us_top {
  background: url(images/make-us-top.png) no-repeat center / cover;
}
.sec_title.large_text {
  font-size: 82px;
}
@media screen and (max-width: 1400px) {
  .make_us_top .sec_title {
    font-size: 68px;
  }
}

.box_design2 {
  padding: 35px;
  height: 356px;
  background: #fff;
}
.box_design2.border-btm {
  border-bottom: 1px solid #a3a3a3;
}
.box_design2.border-sides {
  border-left: 1px solid #a3a3a3;
  border-right: 1px solid #a3a3a3;
}
.box_design2 h3 span {
  position: relative;
  padding-left: 50px;
  transition: all 0.3s linear;
}
.box_design2 h3 span:before {
  content: "";
  transition: all 0.3s linear;
  width: 40px;
  height: 1px;
  background: var(--theme-pink);
  position: absolute;
  top: 50%;
  left: 0;
}
.box_design2:hover {
  background: #f8f8f8;
}
.box_design2:hover h3 span {
  padding-left: 0px;
}
.box_design2:hover h3 span:before {
  width: 0px;
}

.work_imgs {
  margin-top: 60px;
}
.work_imgs img:not(:last-child) {
  margin-bottom: 30px;
}

/*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: 10px;
  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: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@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;
  }
}

/*Process steps */
/*******/
.process {
  background: #fff1f4;
}
.process_wrap .p_box .circle {
  height: 300px;
  display: flex;
  align-items: center;
  position: relative;
}
.process_wrap .p_box .circle:before {
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 1.5s ease;
}
.process_wrap .p_box .circle.is-active:before {
  transform: scaleX(1);
}
.process_wrap .p_box.last .circle.is-active:before {
  display: none;
}
.p_box {
  width: 23.5%;
  margin: 0 10px;
  flex-shrink: 0;
}
.p_box span {
  display: block;
  width: var(--box_size);
  height: var(--box_size);
  border-radius: 50%;
  line-height: var(--box_size);
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  font-size: 22px;
  margin: auto;
  position: relative;
}
.p_box span:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background: #1c1c1c;
  bottom: -40px;
  left: calc(50% - 2px);
}

/*Blog */
/*******/
.post-wrapper {
  margin-top: 100px;
}
.blog_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.blog_wrap.relative {
  padding-top: 200px;
}
.bold_box {
  background: #fff;
  padding: 35px;
  position: relative;
  width: 75%;
  z-index: 1;
  margin-left: auto;
  transition: all 0.3s linear;
}
.bold_box:hover {
  background: #f5f5f5;
}
.bold_box h3 {
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 30px;
  font-size: 23px;
}
.text-link {
  margin-top: 15px;
  position: relative;
}
.text-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 88px;
  height: 1px;
  background: #000;
  transform-origin: right center;
  transition: all 0.3s cubic-bezier(0.49, 0, 0.01, 1);
}
.text-link:hover::before {
  transform: scaleX(0);
}
.text-link .icon-arrow {
  fill: #000;
  display: inline-block;
  width: 18px;
  transform: rotate(-45deg);
  margin-left: 10px;
  transition: all 0.3s linear;
}
.text-link:hover svg {
  fill: var(--theme-pink);
  transform: rotate(-0deg);
}

input:focus,
.form-control:focus {
  box-shadow: none;
  outline: 0px;
}
input::placeholder,
.form-control::placeholder {
  color: #fff;
}

.banner_rght_img {
  position: absolute;
  width: 60%;
  right: 0;
  bottom: 0;
  /*    overflow: hidden;*/
  height: 100%;
}

.banner_rght_img figure {
  height: 100%;
}
.banner_rght_img img {
  padding-top: 4em;
  width: 60%;
  margin-left: 20vw;
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.banner_rght_img picture:before {
  width: 50em;
  height: 50em;
  background: #59c9cb;
  border-radius: 100%;
  position: absolute;
  content: "";
  z-index: -1;
  bottom: -20em;
  right: 0;
}
.banner_rght_img .owl-carousel {
  transform: rotate(90deg);
  width: 270px;
  position: absolute;
  bottom: -65px;
  left: 12%;
}
.banner_rght_img .items {
  transform: rotate(-90deg);
  background: #fff;
  height: 79px !important;
  width: 251px !important;
  margin: 98px 12px;
  text-align: center;
  box-shadow: 0px 4px 10px #00000038;
  padding: 16px;
  border-radius: 58px;
}
.banner_rght_img .items h3 {
  font-weight: 700;
  font-size: 32px;
}
.banner_rght_img .items p {
  font-weight: 700;
  font-size: 32px;
}
.banner_rght_img .owl-carousel .owl-item.active .items {
  opacity: 0.35;
}
.sm-text-continer {
  width: auto;
  position: relative;
  margin-left: 24%;
  margin-top: 20px;
}
.with_line {
  position: absolute;
  width: 150px;
  background: #000;
  height: 0.5px;
  top: 12px;
  left: -180px;
}

/*
.ddp {
    display: flex;
    flex-wrap: nowrap;
}
*/
.ddp .the_text {
  min-width: 100%;
  margin: 40px 0px;
  /*    display: flex;*/
  width: 100%;
  overflow: hidden;
  /*    justify-content: space-between;*/
  /*
    animation-name: marequee_text;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
*/
}
/*.ddp .the_text.two {
    min-width: 100vw;
    margin-left: 18vw;
    animation-name: marequee_text;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}*/
.ddp .the_text h3 {
  display: inline-block;
  position: relative;
  /*
    -webkit-text-stroke: 1.5px #000;
    text-stroke: 1.5px #000;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
*/
  color: #1a1a1a;
  transition: opacity 0.4s;
  white-space: nowrap;
  font-size: 80px;
  font-size: 76px;
  padding: 5px 4vw 15px 1vw;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.15;
  border-bottom: 1px solid #ddd;
}
/*@keyframes marequee_text {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(-100%, 0, 0)
    }
}
*/

.arrow-list {
  padding-left: 5px;
  list-style: none;
}
ul.arrow-list li {
  text-decoration: none;
  list-style: none;
  padding: 5px 0;
  display: flex;
}
.arrow-list li img {
  height: 14px;
  transform: rotate(45deg);
  margin-right: 10px;
  margin-top: 5px;
}

.fifth .col-2_5 {
  width: 20%;
  flex: 0 0 auto;
}
.fifth .col-2_5 img {
  max-width: 35%;
}
.fifth .col-2_5 h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 0 20px;
}

@media (max-width: 1400px) {
  .hero_content {
    width: 78%;
  }
  .sec_title.large_text {
    font-size: 70px;
  }
}

@media screen and (max-width: 1200px) {
  .service_title,
  .count_desc h3,
  .third-text-section-box h2 {
    font-size: 23px !important;
    font-weight: 600;
  }
  .bold_box h3 {
    font-size: 23px;
  }
  .each_service .col-md-5 p {
    width: 100%;
  }
  .wc-title {
    font-weight: 600 !important;
    font-size: 32px !important;
    margin: 20px 0 !important;
  }
  .count-box .count_num {
    --box-size: 126px;
    font-size: 30px;
  }
  .fifth .col-2_5 {
    padding: 2px 15px;
  }
  .fifth .col-2_5 h3 {
    font-size: 16px;
    font-weight: 600;
    padding: 0 10px;
  }
}
@media (max-width: 1280px) and (min-width: 992px) {
  .h-section.first h2.why-choose-title {
    font-size: 68px;
  }
  .sec_title.large_text {
    font-size: 56px;
  }
  .each_service .col-md-5{ margin-left: 0px;  }
  .each_service .col-md-3.serve_btn { margin-left: 8.3%;  }
    .each_service .service_img {
    width: 214px;
    height: 260px;
    position: absolute;
    top: 196px;
        right: 160px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
  .hero_banner {
    height: 670px;
  }
  .banner_rght_img .items {
    height: 72px !important;
  }
  .banner_rght_img img {
    width: 78%;
    margin-left: 14vw;
  }
  .hero_content {
    width: 78%;
  }
  .sec_padding {
    padding: 40px 0;
  }

  .service_title {
    text-transform: capitalize;
    font-size: 24px;
  }
  .each_service .offset-md-1 {
    margin-left: 4.333333%;
  }
  .each_service .col-md-5 p {
    width: 98%;
  }
  .sec_title.large_text {
    font-size: 42px;
  }
  .contact_form .col-md-3 {
    width: 40%;
  }
  .contact_form .col-md-7.offset-md-2 {
    margin-left: 0%;
  }
  .contact_form .col-md-4.offset-md-2 {
    margin-left: 2.5%;
    width: 46%;
  }
  .bold_box {
    padding: 20px;
    width: 85%;
  }
  .box_design2 {
    border: 1px solid #a3a3a3;
  }
  .box_design2 h3 {
    font-size: 24px;
  }
  .bold_box h3 {
    font-size: 18px;
  }
  .blog_wrap.relative {
    padding-top: 145px;
  }
  .blog_wrap img {
    width: 100%;
    object-fit: cover;
  }
  .col-md-5 .imgOwl {
    height: 380px;
  }

  .sec_title.large_text img {
    height: 50px;
  }
  .banner-image.imgOwl {
    --img_height: 348px !important;
  }
  .sticky_contact ul.list-styled {
    justify-content: center;
  }
  #c1 {
    display: none;
  }
  #c1,
  #c2 {
    margin-top: 40px;
  }
  .third-content-heading {
    padding: 50px 0px 0 0;
  }
  .third-text-section-box-section {
    margin-top: 0;
  }
  .info-01 {
    padding-bottom: 30px;
  }
  .our_team .right-side:before {
    left: 46px;
  }
  .team-desc {
    margin-left: 65px;
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 38px;
  }
  .f-image1 {
    display: none;
  }
  .features_1 {
    position: relative;
    padding-left: 0px;
    min-height: 40px;
    margin-top: 0px;
  }

  .horizontal-scroll-1 {
    display: block;
  }
  .h-section {
    height: auto;
    padding: 40px 3px;
    margin-bottom: 20px;
  }
  /*    .h-section.first, .fifth .col-2_5 h3 br { display: none; }*/
  .h-section.first h2.why-choose-title {
    font-size: 50px;
  }
  .h-section.second.relative .col-12 > .row {
    flex-direction: column;
  }
  .wc-title {
    font-weight: 600;
    font-size: 27px;
    margin: 15px 0;
    text-transform: capitalize !important;
  }
  .wc-subtitle {
    font-size: 15px;
  }
  .wc-content {
    margin-right: 0px;
  }
  .count-box:not(.second),
  .count-box {
    margin-left: 0px;
    margin-top: 20px;
    flex-direction: column;
  }
  .count-box .count_num {
    --box-size: 125px;
    border: 3px solid #000;
    font-size: 25px;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .count_desc h3 {
    font-size: 21px;
    font-weight: 600;
  }
  .count_desc {
    text-align: center;
  }
  .counter {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .h-section.third,
  .h-section.fourth {
    background-image: none;
  }
  .h-section.third .wc-title {
    margin: 0 0 30px 0;
  }
  .counter span {
    font-size: 30px;
  }
  .count-box .count_desc p,
  .counter p {
    font-size: 15px;
    margin-bottom: 0;
    margin-left: 20px;
  }
  .fifth .col-2_5 h3 {
    padding: 0;
  }
  .fifth .col-2_5 {
    width: 33%;
  }
  .process_wrap.d-flex {
    flex-wrap: wrap;
  }
  .p_box {
    width: 30%;
    --box_size: 180px !important;
  }
  .process_wrap .p_box .circle:before {
    display: none;
  }
  .p_box span {
    margin: 15px auto;
  }
  .process_wrap .p_box .circle {
    margin-bottom: 25px;
    height: 218px;
  }
  .service-btn { width: 110px; height: 110px; line-height: 110px; }
  .each_service .col-md-5{ margin-left: 0px;  }
  .each_service .col-md-3.serve_btn { margin-left: 8.3%;  }
  .each_service .service_img {
    width: 150px;
    height: 100%;
      top: 0; right: 7.5em;
      margin: 0;
      transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .hero_banner .container.d-flex {
    flex-direction: column;
    margin-top: 30px;
  }
  .hero_banner {
    min-height: 435px;
    max-height: 500px;
  }
  .hero_banner:before {
    width: 28rem;
    height: 28rem;
    background: #ffeee9;
  }
  .hero_content {
    width: 100%;
    padding: 5px;
    margin-top: -30px;
  }
  .hero_title {
    font-size: 30px !important;
    line-height: 1.35 !important;
  }
  .hero_content p,
  .r_btn {
    margin-right: 0% !important;
  }
  .hero_content p {
    font-size: 16px;
  }
  .hero_content .btn .ms-btn__text,
  .hero_content .r_btn {
    font-size: 14px;
  }
  .button-inline {
    flex-direction: row;
  }
  .r_btn {
    margin-bottom: 20px;
    padding: 8px 16px;
  }
  .btn-wrap .btn {
    margin-bottom: 20px;
    margin-left: 40px;
  }
  .contact_form.sec_padding {
    padding-bottom: 50px;
  }
  .contact_form.sec_padding form.h_form.needs-validation,
  .work_imgs,
  .post-wrapper {
    margin-top: 30px;
  }
  .service_wrapper {
    margin-top: 15px;
  }
  .each_service .service_img,
  .f-image1,
  .with_line,
  .each_service .service_img,
  .banner_rght_img,
  .cs-circle_1 {
    display: none;
    visibility: hidden;
  }
  .each_service .col-md-5 p {
    width: 100%;
  }
  .service_title {
    font-size: 21px;
  }
  .service-btn {
    width: 150px;
    height: 44px;
    text-align: center;
    line-height: 40px;
    border-radius: 0;
    border: 1px solid #000;
    float: none;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    overflow: hidden;
  }
  .service-btn:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .each_service {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .features_1 {
    position: relative;
    padding-left: 0;
    min-height: 40px;
    margin-top: 0px;
  }
  .hover-tab .service_title,
  .third-text-section-box h2,
  .box_design2 h3 {
    font-size: 22px;
  }
  .sm-text-continer {
    margin-left: 0;
    margin-top: 0px;
  }
  .our_team {
    --mr-left: 50px;
    padding-bottom: 50px;
  }
  .our_team .title_wrap {
    padding: 15px;
  }
  .team-desc {
    margin-left: var(--mr-left);
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
  }
  .our_team .right-side:before {
    left: 40px;
  }
  .info-01 {
    padding: 0;
  }
  .imgOwl {
    --img_height: 208px !important;
  }
  .third-content-heading {
    padding: 40px 0px 0 0;
  }
  .third-text-section-box-section {
    margin-top: 0px;
  }
  .third-text-section-box {
    padding: 18px;
  }
  .large_text img {
    height: 30px;
    width: auto;
  }
  .box_design2 {
    padding: 0px 26px 25px;
    height: auto;
    background: #fff;
    margin-bottom: 25px;
    border-bottom: 1px solid #a3a3a3;
  }
  .blog_wrap.relative {
    padding-top: 0;
  }
  .blog_wrap img {
    position: static;
    height: 260px;
    width: 100%;
    object-fit: cover;
  }
  .bold_box {
    width: 100%;
    padding: 24px 0px;
  }
  .bold_box h3 {
    font-size: 22px;
  }

  .process_wrap.d-flex {
    flex-direction: row;
    padding-bottom: 50px;
  }
  .p_box {
    width: 85%;
    margin: 30px auto 0;
  }
  .process_wrap .p_box .circle:before,
  .p_box span:before {
    display: block;
  }
  .process_wrap .p_box .circle {
    height: auto;
    margin-bottom: 45px;
  }
  .p_box span {
    width: 125px;
    height: 125px;
    line-height: 125px;
    font-size: 16px;
  }

  .horizontal-scroll-1 {
    display: block;
  }
  .h-section {
    height: auto;
    padding: 40px 3px;
    margin-bottom: 20px;
  }
  .h-section.first,
  .fifth .col-2_5 h3 br {
    display: none;
  }
  .wc-title {
    font-weight: 600;
    font-size: 27px;
    margin: 15px 0;
    text-transform: capitalize !important;
  }
  .wc-subtitle {
    font-size: 15px;
  }
  .wc-content {
    margin-right: 0px;
  }
  .count-box:not(.second),
  .count-box {
    margin-left: 0px;
    flex-direction: column;
  }
  .count-box .count_num {
    --box-size: 135px;
    border: 3px solid #000;
    font-size: 28px;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .count_desc {
    text-align: center;
  }
  .counter {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .h-section.third,
  .h-section.fourth {
    background-image: none;
  }
  .h-section.third .wc-title {
    margin: 0 0 30px 0;
  }
  .counter span {
    font-size: 30px;
  }
  .count-box .count_desc p,
  .counter p {
    font-size: 15px;
    margin-bottom: 0;
    margin-left: 20px;
  }
  .hover-tab:first-child {
    padding-top: 0px;
  }
  .fifth .col-2_5 {
    width: 85%;
    margin: auto;
  }
  .fifth .col-2_5 h3 {
    padding: 0;
  }
  .fifth .col-2_5 img {
    max-width: 85px;
  }
  .right_caerd-box {
    display: none;
  }
  .clients .col-md-2 {
    width: 33%;
  }
  .clients .col-md-2 img {
    padding: 12px;
  }
  .flipper-container {
    height: 118px;
  }
    .service_title br { display: none; }
  .each_service .col-md-5, .each_service .col-md-3.serve_btn { margin-left: 0px;  }
}

@media (max-width: 420px) {
  .clients .col-md-2 img {
    padding: 24px;
  }
  .clients .col-md-2 {
    width: 50%;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1399px) {
  .box_design2 h3 {
    font-size: 26px;
  }
}

/* new css  */

/* 
.portfolio__area{
    margin-bottom: 15%;
}

.portfolio__text {
    text-align: center;
    font-size: 150px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    padding: 120px 0 50px;
    opacity: 1;
}

.portfolio__list-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0px 30px;
    position: relative;
    margin-bottom: 0;
  }
  @media only screen and (max-width: 767px) {
    .portfolio__list-1 {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 0px;
    }
  }
.portfolio__item {
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: 0.5;
    opacity: 0;
}
.portfolio__item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
}
.portfolio__item {
    -webkit-transform: perspective(4000px) rotateX(90deg);
            transform: perspective(4000px) rotateX(90deg);
  }


  .portfolio__item {
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: 0.5;
    opacity: 0;
    margin: auto;
  }
  .portfolio__item:nth-child(even) {
    top: 35%;
  }
  @media only screen and (max-width: 767px) {
    .portfolio__item:nth-child(even) {
      top: 0%;
    }
  }


  .portfolio__info {
    width: 400px;
    padding: 15px 0;
    border-radius: 5px;
    z-index: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }


  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .portfolio__info {
      opacity: 1;
      visibility: visible;
      right: 45px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio__info {
      opacity: 1;
      visibility: visible;
      right: 45px;
    }
  }
  @media only screen and (max-width: 767px) {
    .portfolio__info {
      opacity: 1;
      visibility: visible;
      right: 60px;
    }
  }
  .portfolio__info p {
    font-weight: 400;
    line-height: 1.3;
    color: #000;
  }
  .portfolio__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #000;
    padding-bottom: 3px;
  } */

/* industry we serve  */

/* services  */

.service_list {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #c5c5c5;
}
.service_list a {
  font-size: 18px;
  font-weight: 500;
  fill: #031b3d;
  color: #031b3d;
  /* background-color: #ffffff; */
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #c5c5c5;
  border-radius: 0px 0px 0px 0px;
  padding: 18px 0px 18px 0px;
}
.service_list a i {
  rotate: -45deg;
  margin-left: 20px;
  transition: all 0.3s linear;
  color: #242424;
}
.service_list:hover a{
  color: var(--theme-pink);
}

.service_list:hover a i{
  color: var(--theme-pink);
  rotate: 0deg;
}


.sticky-image{
  margin-bottom: 10px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 370px;
}


.sticky-image.one{
  /* background-color: #003d4f; */
  /* background-image: linear-gradient(to right top, #051937, #003a5b, #005c63, #007c4e, #74942c); */
}
.sticky-image.two{
  background-color: #f84b68;
}
.sticky-image.three{
  background-color: #1A7D55;
}
.sticky-image.four{
  background-color: #6836b3;
}
.sticky-image.five{
  background-color: #2893bd;
}
.sticky-image.six{
  background-color: #1f3e7b;
}



.sticky-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  filter: brightness(.5);
}


.sticky-content{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
}
.sticky-content h3{
  color: #fff;
}
.sticky-content p{
  color: #fff;
}


/* industry  */




#c6 .owl-item .industries{
  padding: 40px 20px 10px 20px;
  margin-left: -17%;
  min-height: 370px;
}
#c6 .owl-item .industries h3{
  position: relative;
  padding: 20px 0 10px 0;
  z-index: 999;
  font-size: 24px;
  border-top: 1px solid #242424;
}

#c6 .owl-item p{
  opacity: 0;
  z-index: 999;
}
#c6 .owl-item a{
  opacity: 0;
  position: absolute;
  bottom: 30px;
}
#c6 .owl-item.active.center p{
  opacity: 1;
}
#c6 .owl-item.active.center a{
  opacity: 1;
}
#c6 .owl-item.active.center .item h3{
  font-size: 32px;
}
#c6 .owl-item.active.center .item{
  width: 100% !important;
  vertical-align: baseline;
  margin-left: -30%;
  position: relative;
  z-index: 1;
}
#c6 .owl-item.active.center .item::before{
  content: "";
  position: absolute;
  top: 0;
  left: -90px;
  height: 280px;
  width: 60%;
  background-color: #ffffff;
  z-index: -1;
}

#c6 .owl-item.active.center .item::after{
  content: "";
  position: absolute;
  top: 0;
  right: -85%;
  height: 400px;
  width: 75%;
  background: linear-gradient(to right, transparent 0%, #ffffffc0 14%);
  z-index: -1;
}

.industries_image{
  height: 300px;
  width: 100%;
  z-index: 99;
  position: relative;
}
.industries_image img{
  height: 100%;
  width:100%;
  object-fit: cover;
  object-position: center center;
  z-index: 99;
}

#c6{
  margin-left: 0%;
  z-index: 1;

}

.progress {
  height: 5px;
  margin-bottom: 20px;
  width: 74%;
  margin-left: 5%;
}

.progress-bar {
  background-image: radial-gradient(circle,#998eff,#dbbdf9 55%,#eba6ff);
  border-radius: 3px;
}


.carousel-content .owl-prev {
  position: absolute;
  bottom: -0%;
  right: 8%;
  color: #000000;
  border-radius: 50% !important;
  font-size: 16px;
  padding: 0px 7px 7px 7px !important;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 1px solid #ff0059a8 !important;
}

.carousel-content .owl-prev i {
  color: #ff00598c;
}

.carousel-content .owl-next {
  position: absolute;
  bottom: -0%;
  right: 0%;
  color: #000000;
  border-radius: 50% !important;
  font-size: 16px;
  padding: 0px 7px 7px 7px !important;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 1px solid #ff0059a8 !important;
}

.carousel-content .owl-next i {
  color: #ff00598c;
}

.carousel-content .owl-nav [class*="owl-"]:hover {
  background-color: var(--theme-pink);
  color: #fff !important;
  text-decoration: none;
}

.carousel-content .owl-nav [class*="owl-"]:hover i {
  color: #fff !important;
}


@media (max-width: 767px) {
  .progress {
    margin-bottom: 10px;
    width: 70%;
    margin-left: 0%;
  }
  #c6 .owl-item.active.center .item h3{
    font-size: 24px;
  }
  #c6 .owl-item.active.center .item{
    margin-left: 0%;
  }
  #c6 .owl-item .industries{
    padding: 20px 10px 0 10px;
    margin-left: 0%;
  }
  .carousel-content .owl-prev {
    position: absolute;
    bottom: 6%;
    right: 12%;
  }

  .carousel-content .owl-next {
    position: absolute;
    bottom: 6%;
    right: -4%;
  }
  .industries_image{
    height: 200px;
    width: 100%;
  }
  .service_list{
    display: none;
  }
}


@media screen and  (min-width: 768px) and (max-width:992px) {
  .services_content{
    margin-bottom: 50px;
  }
  #c6 .owl-item.active.center .item{
    margin-left: 0%;
  }
  #c6 .owl-item .industries{
    margin-left: 0%;
  }
}

@media screen and  (min-width: 992px) and (max-width:1199px) {
  .service_list a{
    font-size: 14px;
    padding: 12px 0;
  }
  .service_list a i {
    margin-left: 4px;
  }
}

@media screen and  (min-width: 1199px) and (max-width:1399px) {
  #c6 .owl-item.active.center .item h3{
    font-size: 28px;
  }
  .service_list a{
    font-size: 17px;
    padding: 15px 0;
  }
  .service_list a i {
    margin-left: 4px;
  }
}