/*website colors*/
/* website font family*/
/* Small devices (portrait phones, 360px and up) */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
/* desktop devices (large desktops, 1200px and up) */
/*flex box mixins*/
/*website colors*/
/* website font family*/
/* Small devices (portrait phones, 360px and up) */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
/* desktop devices (large desktops, 1200px and up) */
/*flex box mixins*/
.container {
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1630px;
    padding: 0 100px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1490px;
    padding: 0 20px;
  }
}
ul li {
  font-family: "Inter";
}
body.scroll_hide {
  overflow: hidden;
}
.d-flex {
  display: block;
}
@media (min-width: 768px) {
  .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-sizing: border-box;
  }
}
.fw {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nfw {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cd-top {
  height: 35px;
  width: 35px;
  background-color: rgba(235, 89, 90, 0.9);
  display: block;
  border-radius: 50%;
  position: fixed;
  z-index: 2;
  bottom: -50px;
  right: -50px;
  -o-transition: 0.56s ease;
  -moz-transition: 0.56s ease;
  transition: 0.56s ease;
}
.cd-top.cd-is-visible {
  right: 20px;
  bottom: 100px;
  -o-transition: 0.56s ease;
  -moz-transition: 0.56s ease;
  transition: 0.56s ease;
}
@media (min-width: 1600px) {
  .cd-top.cd-is-visible {
    bottom: 100px;
    right: 30px;
  }
}
.cd-top::after {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  background-color: rgba(235, 89, 90, 0.7);
  border-radius: 50%;
  z-index: -1;
  top: -7px;
  left: -7px;
}
.cd-top .top_arrow {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  left: 0;
  right: 0;
  margin: auto;
  top: 42%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
.plus_sign {
  position: relative;
  display: block;
  height: 16px;
  width: 16px;
  -o-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.plus_sign::before, .plus_sign::after {
  content: "";
  background-color: #323232;
  position: absolute;
  -o-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.plus_sign::before {
  height: 16px;
  width: 2px;
  left: 7px;
}
.plus_sign::after {
  width: 16px;
  height: 2px;
  top: 7px;
}
.link_arrow {
  display: inline-block;
  padding-right: 20px;
  position: relative;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
.link_arrow a {
  font-weight: 600;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
.link_arrow::after {
  content: "";
  position: absolute;
  background-image: url(../image/arrow.svg);
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  top: 7px;
  right: 0;
  opacity: 0;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
@media (min-width: 768px) {
  .link_arrow::after {
    top: 9px;
  }
}
.link_arrow:hover {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
.link_arrow:hover a {
  color: #fd9898;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
.link_arrow:hover::after {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  right: -1px;
  opacity: 1;
}
.bg_circle {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1200px) {
  .bg_circle::before {
    content: "";
    position: absolute;
    background-image: url(../image/circle_svg.svg);
    width: 705px;
    height: 738px;
    background-repeat: no-repeat;
    right: -200px;
    top: 0;
    z-index: -1;
  }
}
@media (min-width: 1440px) {
  .bg_circle {
    right: 0;
  }
}
.padding-tb {
  padding: 35px 0;
}
@media (min-width: 768px) {
  .padding-tb {
    padding: 45px 0;
  }
}
@media (min-width: 992px) {
  .padding-tb {
    padding: 70px 0;
  }
}
.padding-bottom-0 {
  padding-bottom: 0;
}
.margin-tb {
  margin: 25px 0;
}
@media (min-width: 768px) {
  .margin-tb {
    margin: 35px 0;
  }
}
@media (min-width: 1024px) {
  .margin-tb {
    margin: 40px 0;
  }
}
.margin-top {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .margin-top {
    margin-top: 35px;
  }
}
@media (min-width: 1024px) {
  .margin-top {
    margin-top: 40px;
  }
}
.btn-wrap {
  display: inline-block;
}
.btn-wrap .btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 0;
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter";
  cursor: pointer;
  text-transform: unset;
  font-weight: 500;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  outline: 0;
  -o-transition: 0.4s ease-in;
  -moz-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  background-color: #EB595A;
  border-radius: 4px;
}
.btn-wrap .btn:hover {
  -o-transition: 0.4s ease-in;
  -moz-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  background: #0d1320;
  border-color: #0d1320;
}
.btn-wrap.btn-white {
  display: inline-block;
}
.btn-wrap.btn-white .btn {
  background-color: #FFFFFF;
  -o-transition: 0.4s ease-in;
  -moz-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  border-color: #FFFFFF;
}
.btn-wrap.btn-white .btn:hover {
  background: #0d1320;
  border-color: #0d1320;
  color: #FFFFFF;
  -o-transition: 0.4s ease-in;
  -moz-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.btn-wrap.btn-white::after {
  background-color: #FFFFFF;
}
.btn-wrap.free-trial {
  margin-right: 8px;
}
.btn-wrap.free-trial .btn {
  background: #EB595A;
  border: 2px solid #EB595A;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.btn-wrap.free-trial .btn:hover {
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #FFFFFF;
  background: #0d1320;
  border-color: #0d1320;
}
.btn-wrap.free-trial .btn:hover::after, .btn-wrap.free-trial .btn:hover::before {
  width: unset;
  height: unset;
  border: unset;
}
.btn-wrap.solid-button .btn {
  background-color: #fff;
  color: #EB595A;
  border: 2px solid #EB595A;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.btn-wrap.solid-button .btn::after, .btn-wrap.solid-button .btn::before {
  border: unset;
  width: 0;
  height: 0;
  display: none;
}
.btn-wrap.solid-button .btn:hover {
  color: #FFFFFF;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  background: #0d1320;
  border-color: #0d1320;
}
.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 0;
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter";
  cursor: pointer;
  text-transform: unset;
  font-weight: 500;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  outline: 0;
  -o-transition: 0.4s ease-in;
  -moz-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.btn::before {
  display: none;
}
.title_section {
  margin-bottom: 20px;
  padding-top: 15px;
}
.title_section .title_desc {
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  max-width: 1117px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .title_section .title_desc {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .title_section .title_desc {
    font-size: 18px;
    line-height: 34px;
  }
}
.title_section .title_desc .title-40 {
  margin-bottom: 15px;
}
.title_section .title_desc p {
  font-size: 15px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .title_section .title_desc p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .title_section .title_desc p {
    font-size: 18px;
    line-height: 34px;
  }
}
@media (min-width: 1200px) {
  .title_section .title_desc p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 1340px) {
  .title_section .title_desc p {
    font-size: 18px;
    line-height: 34px;
  }
}
.accordion .accordion-item {
  border-bottom: 1px solid #DDDDDD;
}
.accordion .accordion-item:last-child {
  border-bottom: 0;
}
.accordion .accordion-item .accordion-one {
  padding: 8px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media (min-width: 768px) {
  .accordion .accordion-item .accordion-one {
    padding: 10px 0;
  }
}
@media (min-width: 1024px) {
  .accordion .accordion-item .accordion-one {
    padding: 12px 0;
  }
}
.accordion .accordion-item .accordion-one .title-24 {
  -o-transition: 0.15s ease-in;
  -moz-transition: 0.15s ease-in;
  transition: 0.15s ease-in;
}
.accordion .accordion-item .accordion-one.accordion-open .title-24 {
  font-weight: 700;
  color: #EB595A;
  -o-transition: 0.15s ease-in;
  -moz-transition: 0.15s ease-in;
  transition: 0.15s ease-in;
}
.accordion .accordion-item .accordion-one.accordion-open .plus_sign::before {
  -o-transition: 0.5s ease-in;
  -moz-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  height: 0;
}
.accordion .accordion-item .accordion-one.accordion-open .plus_sign::after {
  background-color: #EB595A;
}
.accordion .accordion-item .collapse-one {
  display: none;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .accordion .accordion-item .collapse-one {
    font-size: 16px;
    line-height: 30px;
  }
}
.accordion .accordion-item .collapse-one p {
  font-size: 15px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .accordion .accordion-item .collapse-one p {
    font-size: 16px;
    line-height: 30px;
  }
}
.accordion .accordion-item .collapse-one p.link_arrow {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .accordion .accordion-item .collapse-one p.link_arrow {
    margin-top: 10px;
  }
}
.title-16 {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #38383d;
  font-family: "Rubik";
}
@media (min-width: 768px) {
  .title-16 {
    font-size: 16px;
    line-height: 30px;
  }
}
.title-18 {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #171717;
  font-family: "Rubik";
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .title-18 {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (min-width: 1200px) {
  .title-18 {
    font-size: 16px;
    line-height: 23px;
  }
}
@media (min-width: 1340px) {
  .title-18 {
    font-size: 18px;
    line-height: 23px;
  }
}
.title-20 {
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  font-family: "Rubik";
  color: #171717;
  text-transform: capitalize;
}
.title-24 {
  color: #171717;
  font-family: "Rubik";
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .title-24 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .title-24 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .title-24 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1440px) {
  .title-24 {
    font-size: 24px;
    line-height: 34px;
  }
}
.title-36 {
  color: #171717;
  font-family: "Rubik";
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .title-36 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (min-width: 1024px) {
  .title-36 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 1200px) {
  .title-36 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1340px) {
  .title-36 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1440px) {
  .title-36 {
    font-size: 36px;
    line-height: 46px;
  }
}
.title-40 {
  color: #171717;
  font-family: "Rubik";
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .title-40 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 1024px) {
  .title-40 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (min-width: 1200px) {
  .title-40 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1340px) {
  .title-40 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (min-width: 1440px) {
  .title-40 {
    font-size: 40px;
    line-height: 50px;
  }
}
.title-48 {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: #171717;
  font-family: "Rubik";
}
@media (min-width: 768px) {
  .title-48 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (min-width: 992px) {
  .title-48 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (min-width: 1200px) {
  .title-48 {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (min-width: 1440px) {
  .title-48 {
    font-size: 48px;
    line-height: 66px;
  }
}
.title-26 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #171717;
  font-family: "Rubik";
}
.title-26 span {
  color: #EB595A;
}
@media (min-width: 768px) {
  .title-26 {
    font-size: 23px;
    line-height: 43px;
  }
}
@media (min-width: 1024px) {
  .title-26 {
    font-size: 24px;
    line-height: 44px;
  }
}
@media (min-width: 1200px) {
  .title-26 {
    font-size: 25px;
    line-height: 40px;
  }
}
@media (min-width: 1440px) {
  .title-26 {
    font-size: 26px;
    line-height: 46px;
  }
}
.dummy_Section {
  height: 5px;
}
.bg_color {
  background-color: rgba(252, 232, 233, 0.4);
}
.bg-color-yellow {
  background-color: #fff9f0;
}
@media (min-width: 992px) {
  .hide_slider .slick-dots {
    opacity: 0;
    visibility: hidden;
  }
}
.highlight {
  position: relative;
  display: inline-block;
}
.highlight:after {
  content: "";
  width: 100%;
  height: 5px;
  background: rgba(235, 89, 90, 0.5);
  position: absolute;
  display: block;
  bottom: 3px;
  z-index: -1;
}
@media (min-width: 768px) {
  .teams-section {
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .teams-section {
    padding: 5px 0 15px 0;
  }
}
@media (min-width: 1200px) {
  .teams-section {
    padding: 20px 0 15px 0;
  }
}
@media (min-width: 1340px) {
  .teams-section {
    padding: 20px 0 10px 0;
  }
}
@media (min-width: 1440px) {
  .teams-section {
    padding: 5px 0 10px 0;
  }
}
.teams-section .title_section {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .teams-section .title_section {
    margin-bottom: 35px;
  }
}
@media (min-width: 1024px) {
  .teams-section .title_section {
    margin-bottom: 50px;
  }
}
.teams-section .teams-block-wrapper {
  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;
  margin: 0 -18px;
}
.teams-section .teams-block-wrapper .teams-block {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 18px;
}
@media (min-width: 1024px) {
  .teams-section .teams-block-wrapper .teams-block {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .teams-section .teams-block-wrapper .teams-block {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.teams-section .teams-block-wrapper .teams-block.left {
  order: 2;
}
@media (min-width: 1200px) {
  .teams-section .teams-block-wrapper .teams-block.left {
    order: unset;
  }
}
@media (min-width: 1200px) {
  .teams-section .teams-block-wrapper .teams-block.left li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    text-align: right;
  }
}
.teams-section .teams-block-wrapper .teams-block.right {
  order: 3;
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .teams-section .teams-block-wrapper .teams-block.right {
    order: unset;
    margin-top: 0;
  }
}
.teams-section .teams-block-wrapper .teams-block.middle {
  order: 1;
  margin-bottom: 30px;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .teams-section .teams-block-wrapper .teams-block.middle {
    order: 1;
  }
}
@media (min-width: 1200px) {
  .teams-section .teams-block-wrapper .teams-block.middle {
    order: unset;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .teams-section .teams-block-wrapper .teams-block.middle {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.teams-section .teams-block-wrapper .teams-block.middle img {
  margin: 0 auto;
}
.teams-section .teams-block-wrapper .teams-block ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px 30px -5px;
}
.teams-section .teams-block-wrapper .teams-block ul li:last-child {
  margin-bottom: 0;
}
.teams-section .teams-block-wrapper .teams-block ul li .icon {
  flex: 0 0 75px;
  max-width: 75px;
  padding: 0 5px;
}
@media (min-width: 1440px) {
  .teams-section .teams-block-wrapper .teams-block ul li .icon {
    flex: 0 0 104px;
    max-width: 104px;
  }
}
.teams-section .teams-block-wrapper .teams-block ul li .icon .icon-inner {
  width: 65px;
  height: 65px;
  background-color: #FBFAFF;
  border-radius: 100%;
  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;
}
@media (min-width: 1440px) {
  .teams-section .teams-block-wrapper .teams-block ul li .icon .icon-inner {
    width: 94px;
    height: 89px;
  }
}
.teams-section .teams-block-wrapper .teams-block ul li .icon .icon-inner img {
  width: 35px;
  height: 35px;
}
@media (min-width: 1440px) {
  .teams-section .teams-block-wrapper .teams-block ul li .icon .icon-inner img {
    width: 50px;
    height: 50px;
  }
}
.teams-section .teams-block-wrapper .teams-block ul li .disc {
  flex: 0 0 calc(100% - 75px);
  max-width: calc(100% - 75px);
  padding: 0 5px;
}
@media (min-width: 1440px) {
  .teams-section .teams-block-wrapper .teams-block ul li .disc {
    flex: 0 0 calc(100% - 104px);
    max-width: calc(100% - 104px);
  }
}
.teams-section .teams-block-wrapper .teams-block ul li .disc .title-24 {
  margin-bottom: 5px;
  font-weight: 600;
}
/* 04-10-2023 Remove mobile unused images */
@media screen and (max-width: 767px) {
  /* Home page */
  /* Feature page */
  /* Feature listing pages */
  /* Solution page */
  /* Common for all pages */
  .home .banner-section .left-img {
    display: none;
  }
  .page-template-featuresmain-page-template .feature_inner_box_section .our-integration-section .integartion-image {
    display: none;
  }
  .page-template-featuresmain-page-template .feature_inner_box_section .our-integration-section .integartion-data {
    margin-top: 0 !important;
  }
  .page-template-subfeatures-page .customer-support-section-wrapper .customer-support-right img, .page-template-subfeatures-page .how-it-works .how-it-works-details .how-it-work-image img {
    display: none;
  }
  .page-template-subfeatures-page .how-it-works .how-it-works-details .how-it-work-data {
    margin-top: 0 !important;
  }
  .page-template-solutions-page-template .ticket_solution_section .ticket_solution_details .solution_details .left img {
    display: none;
  }
  .page-template-solutions-page-template .how-it-works .how-it-works-details .how-it-work-image img {
    display: none;
  }
  .page-template-solutions-page-template .how-it-works .how-it-works-details .how-it-work-data {
    margin-top: 0 !important;
  }
  .teams-section .teams-block-wrapper .teams-block.middle img {
    display: none;
  }
}
/* Small devices (portrait phones, 360px and up) */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
/* desktop devices (large desktops, 1200px and up) */
/*flex box mixins*/
/*website colors*/
/* website font family*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: "Inter";
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: normal;
  padding: 0;
  margin: 0;
  background-color: #FFFFFF;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #38383d;
  scroll-behavior: unset;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }
}
html {
  scroll-behavior: unset;
}
img {
  max-width: 100%;
  border: 0;
  height: auto;
  outline: none;
  display: block;
}
a {
  text-decoration: none;
  border: 0;
  outline: none;
  cursor: pointer;
  color: #EB595A;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}
textarea {
  resize: none;
  overflow: auto;
}
input, button, textarea {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #38383d;
  border-radius: 0px;
  color: rgba(18, 42, 45, 0.5);
}
input, textarea, select {
  background-color: transparent;
  color: rgba(18, 42, 45, 0.5);
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 7px 22px 7px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  font-family: "Inter";
  display: block;
  border: 0;
  border: 1px solid #38383d;
  border-radius: 0px;
}
select, input[type="submit"] {
  cursor: pointer;
}
input[type="submit"], input[type="button"], button {
  background-color: #EB595A;
  color: #122a2d;
  max-width: 400px;
  -o-transition: 0.65s ease;
  -moz-transition: 0.65s ease;
  transition: 0.65s ease;
}
input[type="submit"]:hover, input[type="button"]:hover, button:hover {
  -o-transition: 0.65s ease;
  -moz-transition: 0.65s ease;
  transition: 0.65s ease;
  background-color: rgba(235, 89, 90, 0.3);
}
button, input, select, textarea, form, table {
  font-size: 16px;
  font-family: "Inter";
  line-height: 30px;
  outline: none;
}
label {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: capitalize;
}
/*placeholder color change */
input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(18, 42, 45, 0.5);
}
input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(18, 42, 45, 0.5);
}
input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(18, 42, 45, 0.5);
}
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(18, 42, 45, 0.5);
}
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(18, 42, 45, 0.5);
}
textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(18, 42, 45, 0.5);
}
.wpcf7-form-control-wrap {
  margin-bottom: 20px;
  display: block;
  position: relative;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.woff2") format("woff2"), url("../fonts/Rubik-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"), url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.title-32 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .title-32 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .title-32 {
    font-size: 30px;
  }
}
@media (min-width: 1440px) {
  .title-32 {
    font-size: 32px;
  }
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.list_icon {
  margin-bottom: 20px;
}
.list_icon li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 26px;
  color: #414147;
}
@media (min-width: 768px) {
  .list_icon li {
    font-size: 16px;
    line-height: 30px;
  }
}
.list_icon li::before {
  content: "";
  background-image: url(../image/orange_icon.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.case-study-banner {
  position: relative;
  padding: 40px 0 150px 0;
}
@media (min-width: 768px) {
  .case-study-banner {
    padding: 60px 0 210px 0;
  }
}
@media (min-width: 1200px) {
  .case-study-banner {
    padding: 60px 0 210px 0;
  }
}
@media (min-width: 1340px) {
  .case-study-banner {
    padding: 70px 0 210px 0;
  }
}
@media (min-width: 1440px) {
  .case-study-banner {
    padding: 90px 0 210px 0;
  }
}
@media (min-width: 1600px) {
  .case-study-banner {
    padding: 114px 0 238px 0;
    margin-left: calc((100vw - 1472px)/2);
  }
}
@media (min-width: 1600px) {
  .case-study-banner .container {
    margin-left: 0;
    padding: 0;
  }
}
.case-study-banner::after {
  content: "";
  background: linear-gradient(180deg, #FCE8E9 14.67%, #FAF9FF 118.33%);
  height: 100%;
  display: block;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .case-study-banner::after {
    border-radius: 20px;
    background-image: url(../image/case-study-banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: calc(100% - 20px);
  }
}
@media (min-width: 1600px) {
  .case-study-banner::after {
    left: unset;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .case-study-banner .banner-title {
    max-width: 450px;
    margin-left: 50px;
  }
}
@media (min-width: 992px) {
  .case-study-banner .banner-title {
    max-width: 550px;
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .case-study-banner .banner-title {
    max-width: 580px;
    margin-left: 0;
  }
}
@media (min-width: 1440px) {
  .case-study-banner .banner-title {
    max-width: 716px;
    margin-left: 90px;
  }
}
.case-study-banner .banner-inner {
  position: relative;
}
.case-study-banner .banner-inner .right-img {
  display: none;
}
@media (min-width: 768px) {
  .case-study-banner .banner-inner .right-img {
    position: absolute;
    right: 0;
    top: -60px;
    height: 300px;
    width: 250px;
    z-index: 2;
    display: block;
  }
}
@media (min-width: 1200px) {
  .case-study-banner .banner-inner .right-img {
    height: 320px;
    width: 260px;
  }
}
@media (min-width: 1340px) {
  .case-study-banner .banner-inner .right-img {
    top: -70px;
    height: 350px;
    width: 272px;
  }
}
@media (min-width: 1440px) {
  .case-study-banner .banner-inner .right-img {
    height: 400px;
    width: 350px;
    top: -90px;
  }
}
@media (min-width: 1600px) {
  .case-study-banner .banner-inner .right-img {
    height: 458px;
    width: 400px;
    top: -114px;
    right: 40px;
  }
}
.abstract-section {
  margin-top: -110px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .abstract-section {
    margin-top: -140px;
  }
}
@media (min-width: 1200px) {
  .abstract-section {
    margin-top: -150px;
  }
}
.abstract-section .abstract-wrapper {
  background: #664A89;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .abstract-section .abstract-wrapper {
    margin-left: 50px;
  }
}
@media (min-width: 992px) {
  .abstract-section .abstract-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: transparent;
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .abstract-section .abstract-wrapper {
    margin-left: 0;
  }
}
@media (min-width: 1340px) {
  .abstract-section .abstract-wrapper {
    max-width: 1320px;
  }
}
@media (min-width: 1440px) {
  .abstract-section .abstract-wrapper {
    margin-left: 90px;
  }
}
.abstract-section .abstract-wrapper .title-40, .abstract-section .abstract-wrapper p {
  color: #FFFFFF;
}
.abstract-section .abstract-wrapper .left {
  position: relative;
}
@media (min-width: 992px) {
  .abstract-section .abstract-wrapper .left {
    flex: 0 0 36%;
    max-width: 36%;
  }
}
@media (min-width: 992px) {
  .abstract-section .abstract-wrapper .left::after {
    content: "";
    background-image: url(../image/case-study-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    width: 90px;
    height: 70px;
    bottom: 5px;
    right: 25px;
  }
}
@media (min-width: 1200px) {
  .abstract-section .abstract-wrapper .left::after {
    bottom: -5px;
  }
}
@media (min-width: 1340px) {
  .abstract-section .abstract-wrapper .left::after {
    width: 118px;
    height: 98px;
  }
}
@media (min-width: 1440px) {
  .abstract-section .abstract-wrapper .left::after {
    right: 38px;
  }
}
.abstract-section .abstract-wrapper .left .left-inner-wrapper {
  padding: 25px 20px;
}
@media (min-width: 992px) {
  .abstract-section .abstract-wrapper .left .left-inner-wrapper {
    padding: 35px 10px 35px 30px;
    border-radius: 20px 0 0 20px;
    background: #664A89;
  }
}
@media (min-width: 1200px) {
  .abstract-section .abstract-wrapper .left .left-inner-wrapper {
    padding: 35px 0 35px 30px;
  }
}
@media (min-width: 1440px) {
  .abstract-section .abstract-wrapper .left .left-inner-wrapper {
    padding: 50px 0 50px 70px;
  }
}
@media (min-width: 1600px) {
  .abstract-section .abstract-wrapper .left .left-inner-wrapper {
    padding: 50px 0 50px 70px;
  }
}
.abstract-section .abstract-wrapper .left .left-inner-wrapper .title-40 {
  margin-bottom: 10px;
}
.abstract-section .abstract-wrapper .left .left-inner-wrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .abstract-section .abstract-wrapper .left .left-inner-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
.abstract-section .abstract-wrapper .right {
  background: #664A89;
}
@media (min-width: 992px) {
  .abstract-section .abstract-wrapper .right {
    flex: 0 0 64%;
    max-width: 64%;
    border-radius: 0 20px 20px 20px;
  }
}
.abstract-section .abstract-wrapper .right .title-36 {
  color: #FFFFFF;
}
.abstract-section .abstract-wrapper .right .right-inner-wrapper {
  padding: 0 20px 20px 20px;
}
@media (min-width: 768px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 -5px;
    padding: 0 35px 30px 35px;
  }
}
@media (min-width: 992px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper {
    padding: 55px 35px 50px 35px;
  }
}
@media (min-width: 1200px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper {
    padding: 50px 35px 45px 35px;
  }
}
@media (min-width: 1440px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper {
    padding: 75px 75px 70px 75px;
  }
}
@media (min-width: 1600px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper {
    padding: 70px 75px 60px 75px;
  }
}
@media (min-width: 768px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper .right-inner-block {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.abstract-section .abstract-wrapper .right .right-inner-wrapper .right-inner-block .right-block {
  background: #573D77;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper .right-inner-block .right-block {
    padding: 20px 30px;
  }
}
.abstract-section .abstract-wrapper .right .right-inner-wrapper .right-inner-block .right-block p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1440px) {
  .abstract-section .abstract-wrapper .right .right-inner-wrapper .right-inner-block .right-block p {
    font-size: 18px;
    line-height: 25px;
  }
}
.abstract-section .abstract-wrapper .right .right-inner-wrapper .right-inner-block .right-block .title-36 {
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .company-story {
    margin: 27px 0;
  }
}
@media (min-width: 1200px) {
  .company-story.bg_circle::before {
    left: 0;
    transform: scaleX(-1);
    right: unset;
    width: 425px;
    height: 450px;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 1440px) {
  .company-story.bg_circle::before {
    width: 567px;
    height: 600px;
  }
}
@media (min-width: 992px) {
  .company-story .company-story-inner {
    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;
    margin: 0 -15px;
  }
}
.company-story .company-story-inner .left-side {
  position: relative;
}
@media (min-width: 992px) {
  .company-story .company-story-inner .left-side {
    flex: 0 0 36%;
    max-width: 36%;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .company-story .company-story-inner .left-side .story-img {
    padding-left: 0;
    padding-left: 48px;
  }
}
@media (min-width: 992px) {
  .company-story .company-story-inner .left-side .story-img {
    padding-left: 48px;
  }
}
.company-story .company-story-inner .left-side .story-img img {
  display: none;
}
@media (min-width: 768px) {
  .company-story .company-story-inner .left-side .story-img img {
    margin: 0 auto;
    display: block;
  }
}
@media (min-width: 992px) {
  .company-story .company-story-inner .left-side .story-img img {
    margin: 0;
  }
}
.company-story .company-story-inner .left-side .indusrty-exp {
  background-color: #EB595A;
  padding: 7px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .company-story .company-story-inner .left-side .indusrty-exp {
    padding: 10px;
    left: 50px;
    max-width: 140px;
    position: absolute;
    bottom: 30px;
    border-radius: unset;
  }
}
@media (min-width: 992px) {
  .company-story .company-story-inner .left-side .indusrty-exp {
    left: auto;
    padding: 15px 10px;
  }
}
@media (min-width: 1200px) {
  .company-story .company-story-inner .left-side .indusrty-exp {
    padding: 20px;
    max-width: 150px;
    bottom: 52px;
  }
}
@media (min-width: 1440px) {
  .company-story .company-story-inner .left-side .indusrty-exp {
    max-width: 175px;
  }
}
.company-story .company-story-inner .left-side .indusrty-exp .title-36 {
  font-size: 20px;
  line-height: 22px;
}
@media (min-width: 1024px) {
  .company-story .company-story-inner .left-side .indusrty-exp .title-36 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1340px) {
  .company-story .company-story-inner .left-side .indusrty-exp .title-36 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1440px) {
  .company-story .company-story-inner .left-side .indusrty-exp .title-36 {
    font-size: 36px;
    line-height: 46px;
  }
}
.company-story .company-story-inner .left-side .indusrty-exp .title-36, .company-story .company-story-inner .left-side .indusrty-exp p {
  color: #FFFFFF;
}
.company-story .company-story-inner .left-side .indusrty-exp p {
  margin-bottom: 0;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 1440px) {
  .company-story .company-story-inner .left-side .indusrty-exp p {
    font-size: 18px;
    line-height: 20px;
  }
}
.company-story .company-story-inner .right-side {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .company-story .company-story-inner .right-side {
    flex: 0 0 64%;
    max-width: 64%;
    padding: 0 15px;
  }
}
.company-story .company-story-inner .right-side .disc {
  color: #414147;
}
@media (min-width: 768px) {
  .company-story .company-story-inner .right-side .disc {
    max-width: 831px;
  }
}
@media (min-width: 1200px) {
  .company-story .company-story-inner .right-side .disc {
    margin-left: 60px;
  }
}
@media (min-width: 1600px) {
  .company-story .company-story-inner .right-side .disc {
    margin-left: 90px;
  }
}
.company-story .company-story-inner .right-side .disc p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #414147;
}
@media (min-width: 1024px) {
  .company-story .company-story-inner .right-side .disc p {
    line-height: 30px;
  }
}
@media (min-width: 1440px) {
  .company-story .company-story-inner .right-side .disc p {
    font-size: 18px;
    line-height: 34px;
  }
}
.company-story .company-story-inner .right-side .disc .title-40 {
  margin-bottom: 8px;
}
@media (min-width: 1440px) {
  .company-story .company-story-inner .right-side .disc .title-40 {
    margin-bottom: 15px;
  }
}
.challeges-solution.padding-tb {
  padding-top: 0;
}
.challeges-solution .challeges-inner-wrapper .title-wrapper {
  padding: 15px 20px;
  background: #FBE5E5;
  border-radius: 8px;
}
@media (min-width: 1200px) {
  .challeges-solution .challeges-inner-wrapper .title-wrapper {
    padding: 20px;
    border-radius: 10px;
  }
}
@media (min-width: 1600px) {
  .challeges-solution .challeges-inner-wrapper .title-wrapper {
    padding: 30px;
    border-radius: 17px;
  }
}
.challeges-solution .challeges-inner-wrapper .title-wrapper .title-inner {
  background: #664A89;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .challeges-solution .challeges-inner-wrapper .title-wrapper .title-inner {
    padding: 10px;
    border-radius: 10px;
  }
}
.challeges-solution .challeges-inner-wrapper .title-wrapper .title-inner .title-40 {
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .challeges-solution .challeges-inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.challeges-solution .challeges-inner-wrapper .solution, .challeges-solution .challeges-inner-wrapper .challeges {
  background: #FEF6F6;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .challeges-solution .challeges-inner-wrapper .solution, .challeges-solution .challeges-inner-wrapper .challeges {
    flex: 0 0 42%;
    max-width: 42%;
  }
}
@media (min-width: 1200px) {
  .challeges-solution .challeges-inner-wrapper .solution, .challeges-solution .challeges-inner-wrapper .challeges {
    border-radius: 20px;
  }
}
.challeges-solution .challeges-inner-wrapper .disc {
  padding: 10px 20px 10px;
  font-size: 16px;
  line-height: 28px;
  color: #414147;
}
@media (min-width: 768px) {
  .challeges-solution .challeges-inner-wrapper .disc {
    padding: 10px 25px 10px;
  }
}
@media (min-width: 1024px) {
  .challeges-solution .challeges-inner-wrapper .disc {
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .challeges-solution .challeges-inner-wrapper .disc {
    padding: 10px 25px 40px;
  }
}
.challeges-solution .challeges-inner-wrapper .disc .list_icon {
  margin-top: 20px;
}
.challeges-solution .challeges-inner-wrapper .disc .list_icon li {
  margin-bottom: 10px;
  padding-left: 30px;
}
@media (min-width: 1200px) {
  .challeges-solution .challeges-inner-wrapper .disc .list_icon li {
    margin-bottom: 15px;
  }
}
.challeges-solution .challeges-inner-wrapper .disc p, .challeges-solution .challeges-inner-wrapper .disc li {
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .challeges-solution .challeges-inner-wrapper .disc p, .challeges-solution .challeges-inner-wrapper .disc li {
    line-height: 30px;
  }
}
.challeges-solution .challeges-inner-wrapper .center-image {
  display: none;
}
@media (min-width: 992px) {
  .challeges-solution .challeges-inner-wrapper .center-image {
    flex: 0 0 20%;
    max-width: 20%;
    margin-left: -55px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.challeges-solution .challeges-inner-wrapper .center-image img {
  width: 100%;
  margin-top: -20px;
}
.challeges-solution .challeges-inner-wrapper .solution {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .challeges-solution .challeges-inner-wrapper .solution {
    margin-left: -60px;
    margin-top: 0;
  }
}
.implemenation-section.padding-tb {
  padding-top: 0;
}
.implemenation-section .title_section {
  text-align: center;
  position: sticky;
  margin-bottom: 30px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .implemenation-section .title_section {
    top: 140px;
  }
}
@media (min-width: 1440px) {
  .implemenation-section .title_section {
    margin-bottom: 50px;
  }
}
.implemenation-section .title_section .title-40 span {
  display: block;
  line-height: unset;
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block {
    position: sticky;
  }
}
.implemenation-section .implementation_card_wrapper .implementation_card_block:last-child .implementation_card {
  margin-bottom: 0;
}
.implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card {
  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;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #414147;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card {
    position: sticky;
    margin-bottom: 0;
    padding: 30px 15px;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card {
    line-height: 30px;
  }
}
@media (min-width: 1440px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card {
    padding: 45px 15px;
  }
}
@media (min-width: 1600px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card {
    padding: 45px 30px;
  }
}
.implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .left {
  max-width: 100%;
  flex: 0 0 100%;
  order: 1;
  margin-top: 25px;
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .left {
    max-width: 47%;
    flex: 0 0 47%;
    padding: 0 15px;
    order: unset;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .left .left-disc {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .left .left-disc {
    max-width: 530px;
    margin-left: 0;
  }
}
.implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .right {
  max-width: 100%;
  flex: 0 0 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .right {
    padding: 0 15px;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .right {
    max-width: 53%;
    flex: 0 0 53%;
  }
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .right img {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .right img {
    max-width: 100%;
    margin: 0;
  }
}
.implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card .title-24 {
  font-weight: 600;
}
.implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #414147;
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block .implementation_card p {
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:first-child {
    top: 250px;
    margin: 0 60px 90px 60px;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:first-child {
    top: 270px;
    margin: 0 60px 70px 60px;
  }
}
@media (min-width: 1200px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:first-child {
    top: 210px;
    margin: 0px 60px 100px 60px;
  }
}
@media (min-width: 1340px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:first-child {
    top: 220px;
  }
}
@media (min-width: 1440px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:first-child {
    top: 290px;
  }
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(2) {
    top: 280px;
    margin: 0px 30px 60px 30px;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(2) {
    top: 300px;
    margin: 0px 30px 50px 30px;
  }
}
@media (min-width: 1200px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(2) {
    top: 240px;
    margin: 0 30px 50px 30px;
  }
}
@media (min-width: 1340px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(2) {
    top: 250px;
  }
}
@media (min-width: 1440px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(2) {
    top: 320px;
  }
}
.implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3) {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3) {
    top: 310px;
  }
}
@media (min-width: 1024px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3) {
    top: 330px;
  }
}
@media (min-width: 1200px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3) {
    top: 270px;
  }
}
@media (min-width: 1340px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3) {
    top: 280px;
  }
}
@media (min-width: 1440px) {
  .implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3) {
    top: 350px;
  }
}
.implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3n+1) .implementation_card {
  background: #E6F5FA;
}
.implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3n+2) .implementation_card {
  background: #FEF6F6;
}
.implemenation-section .implementation_card_wrapper .implementation_card_block:nth-child(3n+3) .implementation_card {
  background: #E7F7F4;
}
.client-experience-section .client-experience-wrapper {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .client-experience-section .client-experience-wrapper {
    margin-bottom: 45px;
  }
}
@media (min-width: 1024px) {
  .client-experience-section .client-experience-wrapper {
    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;
    margin: 0 -20px 70px -20px;
  }
}
@media (min-width: 1600px) {
  .client-experience-section .client-experience-wrapper {
    margin: 0 -20px 82px -20px;
  }
}
@media (min-width: 1024px) {
  .client-experience-section .client-experience-wrapper .left-side, .client-experience-section .client-experience-wrapper .right-side {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
  }
}
.client-experience-section .client-experience-wrapper .left-side .left-inner {
  padding: 20px;
  background: #FEF3D1;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner {
    padding: 30px;
  }
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner {
    padding: 70px 40px;
  }
}
.client-experience-section .client-experience-wrapper .left-side .left-inner::after {
  content: "";
  background-image: url(../image/red-line-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 0;
  right: 15px;
  z-index: -1;
}
@media (min-width: 768px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::after {
    height: 130px;
    width: 130px;
  }
}
@media (min-width: 992px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::after {
    height: 170px;
    width: 170px;
  }
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::after {
    height: 262px;
    width: 262px;
  }
}
@media (min-width: 1200px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::before {
    content: "";
    background-image: url(../image/talk-with-our.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 160px;
    height: 300px;
    top: 0;
    left: -85px;
  }
}
@media (min-width: 1340px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::before {
    width: 200px;
    height: 370px;
  }
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::before {
    width: 256px;
    height: 480px;
    left: -20px;
  }
}
@media (min-width: 1600px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::before {
    width: 300px;
    height: 571px;
    left: -60px;
  }
}
@media (min-width: 1601px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner::before {
    width: 297px;
    height: 559px;
    left: -100px;
  }
}
.client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #414147;
  text-align: center;
}
@media (min-width: 1024px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc {
    line-height: 30px;
    max-width: 393px;
    margin-left: auto;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc {
    font-size: 18px;
    line-height: 34px;
  }
}
.client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc .title-40 {
  margin-bottom: 10px;
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc .title-40 {
    margin-bottom: 15px;
  }
}
.client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc span {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  display: block;
  color: #171717;
  font-family: "Rubik";
}
@media (min-width: 768px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc span {
    font-size: 21px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc span {
    line-height: 50px;
  }
}
.client-experience-section .client-experience-wrapper .left-side .left-inner .left-disc .btn-wrap {
  margin-top: 25px;
}
.client-experience-section .client-experience-wrapper .right-side {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .client-experience-section .client-experience-wrapper .right-side {
    margin-top: 0;
  }
}
.client-experience-section .client-experience-wrapper .right-side .righ-inner {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #414147;
}
@media (min-width: 1024px) {
  .client-experience-section .client-experience-wrapper .right-side .righ-inner {
    line-height: 30px;
    max-width: 615px;
    margin-left: auto;
  }
}
.client-experience-section .client-experience-wrapper .right-side .righ-inner p {
  font-style: italic;
}
@media (min-width: 1024px) {
  .client-experience-section .client-experience-wrapper .right-side .righ-inner::before {
    content: "";
    background-image: url(../image/client-quote.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 20px;
    position: absolute;
    top: -20px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .client-experience-section .client-experience-wrapper .right-side .righ-inner::before {
    top: -25px;
  }
}
@media (min-width: 1340px) {
  .client-experience-section .client-experience-wrapper .right-side .righ-inner::before {
    width: 30px;
    height: 20px;
    top: -30px;
  }
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .right-side .righ-inner::before {
    width: 50px;
    height: 38px;
    top: -50px;
  }
}
.client-experience-section .client-experience-wrapper .right-side .righ-inner .title-40 {
  margin-bottom: 10px;
}
@media (min-width: 1440px) {
  .client-experience-section .client-experience-wrapper .right-side .righ-inner .title-40 {
    margin-bottom: 20px;
  }
}
.single-case_studies {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .single-case_studies {
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  .single-case_studies {
    margin-top: 75px;
  }
}
@media (min-width: 1340px) {
  .single-case_studies {
    margin-top: 83px;
  }
}
/*# sourceMappingURL=casestudy-detail.css.map */