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

@font-face {
    font-family: 'Spartan'; /*a name to be used later*/
    src: url('../fonts/Spartan-Regular.ttf'); /*URL to font*/
    font-weight: 400;
}

@font-face {
    font-family: 'Spartan'; /*a name to be used later*/
    src: url('../fonts/Spartan-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Spartan'; /*a name to be used later*/
    src: url('../fonts/Spartan-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Spartan'; /*a name to be used later*/
    src: url('../fonts/CenturyGothic-Bold.ttf');
    font-weight: 700;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0 solid;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.container {
  width: 100%;
  /* max-width: 144rem; */
  padding: 0 1.5rem;
  margin: 0 auto;
}

.header_wrapper {
  padding: 1.4rem 0;
}

@media only screen and (max-width: 767px) {
  .header_wrapper {
    border-bottom: 1px solid #73A133;
    padding: 1rem 0;
  }
}

.header_wrapper header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.header_wrapper header .logo-wrapper a {
  display: inline-block;
}

.header_wrapper header .logo-wrapper a img {
  width: 12.5rem;
  /* width: 14.5rem; */
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 767px) {
  .header_wrapper .menu_wrapper {
    display: none;
    position: absolute;
    top: 8.4rem;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #ffffff;
    padding: 1rem;
    z-index: 10;
    border-bottom: 1px solid #73A133;
  }
}

.header_wrapper .menu_wrapper ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10rem;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .header_wrapper .menu_wrapper ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .header_wrapper .menu_wrapper ul li {
    width: 100%;
  }
}

.header_wrapper .menu_wrapper ul li a {
  font-size: 1.7rem;
  /* font-size: 2.5rem; */
  line-height: 1.2;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .header_wrapper .menu_wrapper ul li a {
    width: 100%;
  }
}

.header_wrapper .menu_wrapper ul li a:hover {
  color: #73A133;
}

.header_wrapper .humburger-lines {
  height: 1.75rem;
  width: 2.1875rem;
  position: relative;
  z-index: 2;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .header_wrapper .humburger-lines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header_wrapper .humburger-lines .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: .625rem;
  background: #73A133;
}

.header_wrapper .humburger-lines .line.line1 {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.header_wrapper .humburger-lines .line.line2 {
  -webkit-transition: -webkit-transform .1s ease-in-out;
  transition: -webkit-transform .1s ease-in-out;
  transition: transform .1s ease-in-out;
  transition: transform .1s ease-in-out, -webkit-transform .1s ease-in-out;
}

.header_wrapper .humburger-lines .line.line3 {
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.header_wrapper input[type="checkbox"] {
  position: absolute;
  display: block;
  height: 2rem;
  width: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.header_wrapper input[type="checkbox"]:checked ~ .humburger-lines .line1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header_wrapper input[type="checkbox"]:checked ~ .humburger-lines .line2 {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.header_wrapper input[type="checkbox"]:checked ~ .humburger-lines .line3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header_wrapper input[type="checkbox"]:checked ~ .menu_wrapper {
  display: block;
}

.banner {
  position: relative;
  padding-top: 3rem;
}

@media only screen and (max-width: 767px) {
  .banner {
    padding: 5rem 0 0 0;
  }
}

.banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 46rem;
  /* height: 61rem; */
  background: url(../images/curve-1.png) center no-repeat;
  background-size: cover;
  top: 66%;
  /* top: 60%; */
  left: 0;
  z-index: -1;
  background-position: 0 0;
}

@media only screen and (max-width: 767px) {
  .banner::after {
    display: none;
  }
}

.banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 19.3rem;
}

@media only screen and (max-width: 1199px) {
  .banner_inner {
    gap: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .banner_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

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

.banner_img img {
  max-width: 52rem;
  /* max-width: 56rem; */
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .banner_img img {
    max-height: 45rem;
    width: auto;
  }
}

.banner_content {
  position: relative;
  z-index: 2;
}

.banner_content h1 {
  font-size: 6.3rem;
  /* font-size: 9.5rem; */
  line-height: 1.26;
  color: #333333;
  font-weight: 800;
  margin: 4rem 0 2rem 0;
}

.get_touch {
  transition: all 0.8s ease-in-out 0s;
      -webkit-transition: all 0.8s ease-in-out 0s;
}

.get_touch:hover {
    color: #fff;
    border: 1px solid #0E76BC;
    box-shadow: 0px 10px 15px rgb(15 118 188 / 30%);
    transform: translate(0px, -5px);
}

@media only screen and (max-width: 1199px) {
  .banner_content h1 {
    font-size: 4.8rem;
    /* font-size: 5.5rem; */
  }
}

@media only screen and (max-width: 767px) {
  .banner_content h1 {
    font-size: 3rem;
    /* font-size: 4rem; */
    margin-bottom: 1rem;
  }
}

.banner_content p {
  font-family: 'Spartan', sans-serif;
  font-size: 2.6rem;
  /* font-size: 3.5rem; */
  line-height: 1.5;
  font-weight: 600;
  color: #333333;
  margin: 0 0 2rem 0;
}

@media only screen and (max-width: 1199px) {
  .banner_content p {
    font-size: 2rem;
    /* font-size: 2.5rem; */
  }
}

.banner_content a {
  background: #0E76BC 0% 0% no-repeat padding-box;
  /* -webkit-box-shadow: 0px 1rem 2.5rem #0E76BC40;
          box-shadow: 0px 1rem 2.5rem #0E76BC40; */
  color: #ffffff;
  font-family: 'Spartan', sans-serif;
  font-size: 1.3rem;
  /* font-size: 2rem; */
  font-weight: 500;
  line-height: 1.3;
  padding: 1.2rem 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  min-width: 13rem;
  /* min-width: 20rem; */
  display: inline-block;
}

.banner .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner .shape img {
  width: 1.3rem;
  /* width: 2rem; */
}

.banner .shape.shape1 {
  left: 1%;
  top: 25%;
  /* top: 20%; */
}

.banner .shape.shape2 {
  left: 35%;
  top: 5%;
  /* left: 30%;
  top: 10%; */
}

.banner .shape.shape3 {
  left: -1%;
  top: 50%;
  /* left: 2%;
  top: 40%; */
}

.banner .shape.shape4 {
  left: 25%;
  /* left: 20%; */
  top: -15px;
}

@media only screen and (max-width: 767px) {
  .banner .shape.shape4 {
    bottom: 0;
  }
}

.banner .shape.shape5 {
  left: auto;
  right: 35%;
  /* right: 50%; */
  top: -15px;
}

@media only screen and (max-width: 767px) {
  .banner .shape.shape5 {
    right: 40%;
  }
}

.banner .shape.shape6 {
  left: auto;
  right: 15%;
  bottom: 33%;
  top: auto;
}

.banner .shape.shape7 {
  left: auto;
  right: 12%;
  top: -4%;
  /* right: 25%;
  top: 3%; */
}

.banner .shape.shape8 {
  left: 34%;
  bottom: 55%;
  /* bottom: 40%; */
  top: auto;
}

.banner .shape.shape9 {
    left: 76%;
    bottom: 39%;
    top: auto;
}

@media only screen and (max-width: 767px) {
  .banner .shape.shape8 {
    bottom: 35%;
  }
}

.banner .container {
  position: relative;
}

.solution {
  margin-top: 8rem;
  background-color: #EEF4F8;
  width: 100%;
  z-index: 1;
  padding: 0 0 7rem;;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .solution {
    padding: 0 0 4rem;
    /* padding: 4rem 0; */
  }
}

@media only screen and (max-width: 767px) {
  .solution {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}

.solution::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 25rem;
  background: url(../images/curve-2.png) center no-repeat;
  background-size: cover;
  top: -20rem;
  left: 0;
  z-index: -1;
  background-position: 0 0;
}

@media only screen and (max-width: 767px) {
  .solution::after {
    display: none;
  }
}

.solution_title {
  font-size: 9.5rem;
  line-height: 1.26;
  color: #333333;
  font-weight: 800;
  margin: 0;
  text-align: center;
}

.solution_title span {
  color: #73A133;
}

.solution_items {
  max-width: 650px;
  /* max-width: 902px; */
  margin: 3rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

@media only screen and (max-width: 1023px) {
  .solution_items {
    margin: 4rem auto 0;
  }
}

.solution_item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 4rem 4rem 4rem 2rem;
  /* padding: 5rem 7rem 5rem 2rem; */
  background-color: #ffffff;
  border-left: 1rem solid #73A133;
}

@media only screen and (max-width: 1023px) {
  .solution_item {
    padding: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.solution_item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  /* gap: 3rem; */
}

.solution_item-title img {
  width: 70px;
}

.solution_item-title span {
  color: #484848;
  font-size: 2.5rem;
  /* font-size: 3.5rem; */
  line-height: 1.37;
  font-weight: 800;
}

@media only screen and (max-width: 767px) {
  .solution_item-title span {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .solution_item-title img {
    width: 9rem;
  }
}

.solution_item-desc {
  font-family: 'Spartan', sans-serif;
  font-size: 1.5rem;
  /* font-size: 2.2rem; */
  font-weight: 400;
  line-height: 1.5;
  color: #484848;
}

.section-title {
  font-size: 6.8rem;
  line-height: 1.26;
  color: #333333;
  font-weight: 800;
  margin: 0;
  text-align: center;
  padding-bottom: 35px;
}

@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 5.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title span {
  color: #73A133;
}

.aboutus {
  padding: 5rem 0;
  width: 100%;
  background-color: #EEF4F8;
}

@media only screen and (max-width: 1199px) {
  .aboutus {
    padding: 4rem 0;
  }
}

.aboutus_inner {
  max-width: 80rem;
  /* max-width: 100rem; */
  width: 100%;
  margin: 0 auto;
}

.aboutus_inner p {
  font-family: 'Spartan', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #484848;
}

.services {
  width: 100%;
}

.services_items {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media only screen and (max-width: 767px) {
  .services_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.services_item:nth-child(even) {
  background-color: #EEF4F8;
}

.services_item:nth-child(odd) {
  background-color: #fff;
}

.services_item {
  padding: 5rem 11rem;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .services_item {
    padding: 2rem 3rem;
  }
}

.services_item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  /* font-size: 3.5rem; */
  color: #484848;
  line-height: 1.37;
  margin: 0;
  padding-bottom: 15px;
}

@media only screen and (max-width: 1023px) {
  .services_item h3 {
    font-size: 2.5rem;
  }
}

.services_item p {
  font-family: 'Spartan', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  /* font-size: 2.2rem; */
  line-height: 1.5;
  color: #484848;
}

/* How Help section CSS Start */

.how-help {
  width: 100%;
  padding: 7rem 0 4rem;
}

@media only screen and (max-width: 1199px) {
.how-help {
    padding: 4rem 0 4rem;
    /* padding: 4rem 0; */
  }
}

@media only screen and (max-width: 767px) {
.how-help {
    padding: 4rem 0;
  }
}

.helps_items {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media only screen and (max-width: 767px) {
  .helps_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.helps_item {
  padding: 5rem 5rem 5rem 4rem;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .services_item {
    padding: 2rem 2rem;
    /*padding: 2rem 3rem;*/
  }
}

.helps_item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  /* font-size: 3.5rem; */
  color: #484848;
  line-height: 1.37;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 7px solid #EEF4F8;
}

@media only screen and (max-width: 1023px) {
  .services_item h3 {
    font-size: 2.5rem;
  }
}

.helps_item p {
  font-family: 'Spartan', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  /* font-size: 2.2rem; */
  line-height: 1.5;
  color: #484848;
}

.how-help {
  position: relative;
}
.how-help .helps_items::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/shape.svg) no-repeat center center;
  width: 160px;
  height: 160px;
  z-index: -1;
}
.how-help::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/shape.svg) no-repeat right top;
  width: 160px;
  height: 160px;
  z-index: -1;
}


/* How Help section CSS End */

.footer {
  background-color: #001B2D;
  width: 100%;
  padding: 5.8rem 9rem 5.8rem;
  /*padding: 5.8rem 2rem 5.8rem;*/
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 4rem 2rem;
  }
}

.footer_logo {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .footer_logo {
    text-align: left;
    margin-bottom: 1rem;
  }
}

.footer_logo a {
  display: inline-block;
}

.footer_logo a img {
  width: 12.5rem;
  /* width: 14.5rem; */
  -o-object-fit: contain;
     object-fit: contain;
}

.footer_addresses {
  /*max-width: 120.3rem;*/
  /*max-width: 80.3rem;*/
  /* max-width: 114.3rem; */
  margin: 0 auto;
  padding-top: 4rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15rem;
  /* gap: 2rem; */
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .footer_addresses {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.footer_address {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 46rem;
  width: 100%;
}

.footer_address h3 {
  font-size: 1.8rem;
  /* font-size: 2.8rem; */
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 1.2rem 0;
}

.footer_address p {
  font-family: 'Spartan', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  /* font-size: 2.2rem; */
  line-height: 1.5;
}

.footer_copyright {
  font-family: 'Spartan', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  /* font-size: 2.2rem; */
  text-align: center;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 2rem;
}

@media only screen and (max-width: 767px) {
  .footer_copyright {
    margin-top: 2rem;
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */

/* New Solution section CSS Start */


.home-ser-bg {
  position: relative;
  background-color: #EEF4F8;
}
.home-ser-bg .container {
  padding: 0 3.5rem;
}
#home-service {
  position: relative;
  padding: 150px 0 0;
  margin-top: -113px;
}
#home-service::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/section-bg-shape.svg) top;
  background-size: cover;
}
.section-heading h2{
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 68px;
  line-height: 120px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.section-heading h2 .heading-change-color{
  color: #73A133;
}
.section-box-one > div{
  padding: 40px 0;
}
.service-one-heading span {
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
}
.service-one-heading {
  display: flex;
  align-items: center;
  height: 100%;
  transform: rotate(-90deg) translate(0, 0);
  justify-content: center;
}
.service-one-dis {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 0px 39px;
}
.service-one-dis p {
  font-family: 'Spartan', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #484848;
}
.service-one-bg {
  z-index: 2;
  position: relative;
}
.service-one-bg-img {
  position: absolute;
  top: -34%;
  z-index: -1;
  width: 54%;
  right: 4%;
}
.service-one-bg .service-one .row {
  justify-content: end;
}
.service-one-bg-shape {
  position: absolute;
  top: 50%;
  left: 18%;
  width: 13%;
  z-index: -1;
}
.section-box-one .service-one {
  overflow: hidden;
}


@media only screen and (min-width:767px) and (max-width:991px) {
  .section-heading h2{
      font-size: 5.5rem;
      line-height: 50px;
      margin-bottom: 20px;
  }
  .service-one-bg-img{
      top: -9%;
      width: 64%;
  }
  #home-service{
    margin-top: -93px;
  }
}

@media only screen and (max-width:767px) {
  #home-service::before{
    background-size: contain;
  }
  #home-service {
      margin-top: 0;
      padding: 70px 0 0;
  }
  .home-ser-bg{
      padding-bottom: 50px;
  }
  .home-ser-bg .container {
      background-color: #EEF4F8;
  }
  .home-ser-bg .container .row{
      margin: 0;
  }
  .home-ser-bg::before{
      background-size: contain;
      background-repeat: no-repeat;
  }
  .section-heading h2{
      font-size: 30px;
      line-height: 30px;
      margin-bottom: 20px;
  }
  .section-box-one .service-one .row {
      margin: 0;
      justify-content: center
  }
  .service-one-heading{
      transform: unset;
  }
  .service-one-heading span{
      width: 100%;
      display: block;
      text-align: center;
      margin-bottom: 25px;
  }
  .service-one-dis{
      margin-top: 10px;
      text-align: center;
  }
  .section-box-one > div{
      padding: 20px 0;
  }
  .service-one-bg-img{
      top: 10%;
      width: 100%;
      left: 0;
  }
  .service-one-bg-shape{
      top: 72%;
      left: 10%;
      width: 28%;
  }
  .second-box-sub-head {
      order: 1;
  }
  .second-box-sub-img {
      order: 2;
  }
  .second-box-sub-con {
      order: 3;
  }
}

/* New Solution section CSS End */
