figure {
  margin: 0px;
}

img {
  display: inline-block;
  height: auto;
}


@keyframes pulse {
  50% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1),
      0 0 0 60px rgba(255, 255, 255, 0.1);
  }
}

@keyframes pulse-2 {
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.2),
      0 0 0 40px rgba(0, 0, 0, 0.1);
  }
}

/** button **/

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 15px;
  height: 50px;
  padding: 12px 80px 12px 40px;
  background: transparent;
  line-height: 26px;
  color: #4527a4;
  border: 1px solid #4527a4;
  font-weight: 500;
  border-radius: 30px;
  transition: all 500ms ease;
  cursor: pointer;
  z-index: 1;
}

.theme-btn:hover {
  color: #fff;
}

.theme-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #4527a4;
  border-radius: 30px;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.theme-btn:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}

.theme-btn i {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #4527a4;
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  transition: all 900ms ease;
}

.theme-btn:hover i {
  background: transparent;
}

.theme-btn-two {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #1b81ff;
  border-radius: 30px;
  text-align: center;
  padding: 9px 25px;
  cursor: pointer;
  z-index: 1;
  transition: all 500ms ease;
  border: 2px solid #4527a4;
}

.theme-btn-two:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  transition: all 0.4s;
  transform: scale(0.2, 1);
  z-index: -1;
}

.theme-btn-two:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.theme-btn-two:hover {
  color: #4527a4;
  background: #fff;
  box-shadow: 0 0 15px rgba(69, 39, 164, 0.5);
}

section {
  padding: 80px 0;
}

.sec-title {
  position: relative;
  display: block;
}

.sec-title.center {
  text-align: center;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 48px;
  color: #222222;
  font-weight: 600;
  margin: 12px 0 5px;
}

.sec-title h6 {
  text-transform: uppercase;
  width: max-content;
  background: #39218e36;
  margin: 0 auto;
  padding: 5px 15px;
  border-radius: 5px;
}
.sec-title.center h2:before,
.sec-title.center h2:after {
  left: 50%;
  transform: translateX(-50%);
}
.sec-title p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #777;
  margin: 0px;
}

.sec-title.center h2,
.sec-title.center p {
  text-align: center;
}

.bg-dark {
  background: linear-gradient(90deg, #017cb1 0%, #2486af 50%, #8db8cb 100%);
}

.bg-dark h2 {
  color: #fff;
}

.bg-dark .theme-btn {
  color: #fff;
  border-color: #fff;
}

.bg-dark .theme-btn:hover {
  color: #4527a4;
  border-color: #4527a4;
}

.bg-dark .theme-btn:before {
  background-color: #fff;
}

.bg-dark .theme-btn i {

  background: #ffffff;
  color: #4527a4;
}

.bg-dark .theme-btn:hover i {

  background: #087bb9;
  color: #fff;
}

/** banner-section **/

.banner-section {
  position: relative;
  background-color: #fff;
  padding: 250px 0px 150px 0px;
  background: linear-gradient(90deg, #460922 0%, #42269eb2 50%, #0f0946 100%);
  overflow: hidden;
}


.banner-section .content-box {
  position: relative;
  display: block;
  z-index: 1;
  max-width: 600px;
}

.banner-section .content-box .text {
  position: relative;
  display: block;
  font-size: 18px;
  color: #fff;
}

.banner-section .content-box .btn-box a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 30px;
  text-align: center;
  padding: 11px 50px;
  z-index: 1;
}

.banner-section .content-box .btn-box a.theme-btn {
  background: #fff;
  color: #4527a4;

}

.banner-section .content-box .btn-box a.theme-btn:before {
  background: linear-gradient(90deg, #460922 0%, #42269eb2 50%, #0f0946 100%);
      /* -webkit-text-fill-color: transparent; */

  color: #fff;

}

.banner-section .content-box .btn-box a:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

.banner-section .content-box .btn-box a:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.banner-section .content-box .btn-box a:hover {
  color: #2774a4;
}

.banner-section .content-box .btn-box a.theme-btn:hover {
  color: #fff;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/** feature-style-two **/

.feature-style-two {
  position: relative;
  padding: 110px 0px 100px 0px;
}

.feature-block-one .inner-box {
  overflow: hidden;
  padding: 110px 20px 30px 20px;
  z-index: 1;
  margin-bottom: 30px;
  min-height: 290px;
  height: 100%;
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.3);
  transition: all 500ms ease;
  text-align: left;
}

.feature-block-one:hover .inner-box:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}

.feature-block-one .inner-box:before {
  content: '';
  width: 493px;
  height: 493px;
  background: #6046b1;
  border-radius: 50%;
  position: absolute;
  top: -330px;
  left: -60px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.feature-style-two .feature-block-one .inner-box .icon-box {
position: absolute;
    left: 18px;
    top: 13px;
    font-size: 40px;
    line-height: 56px;
    width: 60px;
    height: 61px;
    color: #fff;
    background: #3479dd;
    text-align: center;
    border-radius: 51%;
  /* border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px; */
}

.feature-block-one:hover .inner-box .icon-box {
  color: #4527a4;
  background: #fff;
}

.feature-block-one:hover .inner-box .icon-box img {
  filter: invert(30%) sepia(45%) saturate(5060%) hue-rotate(205deg) brightness(70%) contrast(130%);
}

.feature-style-two .icon-box i {
  font-size: 30px;
}

.feature-block-one .inner-box h5 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #222;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box h5 a {
  position: relative;
  display: inline-block;
  color: #222;
}

.feature-block-one .inner-box .text {
  position: relative;
  display: block;
  transition: all 500ms ease;
  font-size: 14px;
}

.feature-block-one:hover .inner-box .text,
.feature-block-one:hover .inner-box h5,
.feature-block-one:hover .inner-box h5 a {
  color: #fff;
}

.feature-block-one .inner-box .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3888f7;
  z-index: -3;
  opacity: 0;
  transition: all 0.3s linear;
}

.feature-block-one .inner-box .hover-content:before {
  content: '';
  width: 493px;
  height: 493px;
  background: #5379f5;
  border-radius: 50%;
  position: absolute;
  top: -260px;
  left: -60px;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.feature-block-one .inner-box .hover-content:after {
  content: '';
  width: 602px;
  height: 602px;
  background: #4e32a9;
  border-radius: 50%;
  position: absolute;
  top: -295px;
  left: -110px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.feature-block-one:hover .hover-content {
  opacity: 1;
}

.feature-block-one:hover .hover-content:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}

.feature-block-one:hover .hover-content:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}


/** feature-style-three **/

.feature-style-three {
  position: relative;
  background: #f9f9f9;
  padding: 100px 0px 210px 0px;
}

.feature-style-three .inner-box .content-box {
  position: relative;
  display: block;
}

.feature-style-three .inner-box:first-child {
  margin-bottom: 355px;
}


/** video-section **/

.video-section {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  padding: 130px 0px;
}

.video-section .bg-column {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60%;
  height: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.video-section .bg-column:before {
  position: absolute;
  content: '';
  background: rgba(69, 39, 164, 0.9);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.video-section .video-inner {
  position: relative;
  padding: 195px 0px;
  margin-left: 140px;
}

.video-section .video-inner a {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
  line-height: 144px;
  border: 6px solid #fff;
  background: transparent;
  font-size: 60px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.ripple {
  position: absolute;
  left: -6px;
  top: -6px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -webkit-animation: ripple 5s infinite;
  animation: ripple 5s infinite;
}

.ripple:before {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ripple:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
  }
}

/** service-style-four **/

.service-style-four {
  position: relative;
  padding-top: 65px;
}

.service-style-four .sec-title h3 {
  position: relative;
  font-size: 24px;
  line-height: 32px;
  color: #222;
  margin-bottom: 15px;
}

.service-style-four .inner-content {
  position: relative;
}


.service-style-four .service-block-three .inner-box .link-btn {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.service-style-four .service-block-three .inner-box .link-btn a {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: #4527a4;
  text-align: center;
  border-radius: 50%;
  transform: scale(0, 0);
}

.service-style-four .service-block-three:hover .inner-box .link-btn a {
  transform: scale(1, 1);
}
.service-block-three {
  position: relative;
  margin-top: 100px;
}

.service-block-three .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
}

.service-block-three:hover .inner-box {
  transform: translateY(-15px);
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.service-block-three .inner-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: #fff;
  width: 170px;
  height: 160px;
  line-height: 160px;
  text-align: center;
  margin-top: -75px;
  z-index: 1;
  margin-bottom: 32px;
}

.service-block-three .inner-box .icon-box .bg-layer {
  position: absolute;
  width: 170px;
  height: 160px;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.service-block-three:hover .inner-box .icon-box .bg-layer {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.service-block-three .inner-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #222;
  margin-bottom: 17px;
}

.service-block-three .inner-box h3 a {
  display: inline-block;
  color: #222;
}

.service-block-three .inner-box h3 a:hover {
  color: #4527a4;
}

.service-block-three .inner-box .text {
  position: relative;
  display: block;
  font-size: 16px;
  margin-bottom: 34px;
  min-height: 100px;
}

.service-block-three .inner-box .link-btn a {
  position: relative;
  display: inline-block;
  font-size: 40px;
  line-height: 40px;
  color: #4527a4;
  font-weight: 700;
}

.service-block-three:hover .inner-box .link-btn a {
  color: #fff;
}


/** feature-section **/

.feature-section {
  position: relative;
}

#iamge_block_01 .image-box {
  position: relative;
  margin-top: 35px;
}

#iamge_block_01 .image-box .image {
  position: relative;
  display: inline-block;
  border-radius: 60px;
}

#content_block_01 .content-box {
  position: relative;
  display: block;
}

#content_block_01 .content-box .sec-title {
  margin-bottom: 66px;
}

#content_block_01 .content-box .inner-box .single-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  height: 94%;
}
#content_block_01 .content-box .inner-box .single-item .bg-layer {
  position: absolute;
  content: "";
  top: 0;
  left: -101%;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background-size: 101% 101%;
}

#content_block_01 .content-box .inner-box .single-item .bg-layer:before {
  position: absolute;
  content: '';
  background: #2abbeb;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
}

#content_block_01 .content-box .inner-box .single-item:hover .bg-layer {
  left: 0px;
}

#content_block_01 .content-box .inner-box .single-item .icon-box {
  position: relative;
  display: inline-block;
  font-size: 35px;
  line-height: 20px;
  color: #4527a4;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

#content_block_01 .content-box .inner-box .single-item:hover .icon-box {
  color: #fff;
}

#content_block_01 .content-box .inner-box .single-item h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
  font-weight: 500;
  margin-bottom: 12px;
  transition: all 500ms ease;
}

#content_block_01 .content-box .inner-box .single-item h5 a {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

#content_block_01 .content-box .inner-box .single-item:hover h5,
#content_block_01 .content-box .inner-box .single-item:hover h5 a,
#content_block_01 .content-box .inner-box .single-item:hover .text {
  color: #fff;
}

#content_block_01 .content-box .inner-box .single-item .text {
  position: relative;
  transition: all 500ms ease;
  font-size: 15px;
}


/** feature-section end**/

/* --------- tech  ------ */

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

span.three-boxex-all {
  display: block;
  text-align: center;
  width: 100%;
  margin: auto;
  margin-top: 30px;
  background: #fff;
  padding: 23px;
  border-radius: 20px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

span.three-boxex-all:hover {
  transform: translateY(-8px) !important;
}

.three-boxex-all i {
  width: 50px;
  height: 50px;
  box-shadow: 0 8px 13px 0 rgba(41, 28, 138, 0.23);
  display: flex;
  margin: auto;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  border-radius: 50%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  background-image: -webkit-linear-gradient(-45deg, #0d9eff 0%, #3400dd 100%);
  z-index: 2;
  border: 5px solid #fff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

}

.three-boxex-all h4 {
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  margin: 20px 0px;
}

.gredient-purple-white {
  background-image: linear-gradient(to bottom, #ffffff, #d3cef5);
}

/* --------- tech end ------ */


/** managed-wordpress **/

.managed-wordpress {
  position: relative;
  padding: 82px 0px 70px 0px;
}

.managed-wordpress .image-layer {
  position: absolute;
  top: -40px;
  left: 0px;
  width: 100%;
  height: 755px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}

#content_block_45 .content-box .sec-title h2 {
  color: #fff;
  line-height: 60px;
  font-size: 34px;
}

#content_block_45 .content-box.black-text .sec-title h2 {
  color: #222;
}

#content_block_45 .content-box .sec-title h2:after {
  background: #fff;
}

#content_block_45 .content-box.black-text .sec-title h2:after {
  background: #777;
}

#content_block_45 .content-box .text {
  position: relative;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 51px;
}

#content_block_45 .content-box.black-text .text {
  color: #777;
}

#content_block_45 .content-box .btn-box a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  color: #4527a4;
  line-height: 30px;
  background: #fff;
  padding: 15px 47px;
  text-align: center;
  border-radius: 30px;
  z-index: 1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

#content_block_45 .content-box .btn-box a:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #4527a4;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

#content_block_45 .content-box .btn-box a:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

#content_block_45 .content-box.black-text .btn-box a {
  background: #4527a4;
  color: #fff;
}

#content_block_45 .content-box.black-text .btn-box a:hover {
  background: #fff;
  color: #fff;
}

#content_block_45 .content-box .btn-box a:hover {
  color: #fff;
  background: #4527a4;
}

.managed-wordpress .content-box {
  position: relative;
  margin-top: 42px;
}

.managed-wordpress .image-box {
  margin-right: 50px;
}


/* -----whyus-------------- */

.whychoosus ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.whychoosus ul li {
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-image-source: linear-gradient(to bottom, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0.19));
  border-image-slice: 1;
  background-image: linear-gradient(to bottom, #ffffff, #ffffff), linear-gradient(to bottom, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0.19));
  background-origin: border-box;
  background-clip: content-box, border-box;
  width: calc(33.33% - 20px);
  text-shadow: 0 0 black;
  text-align: center;
  margin: 35px 10px;
  position: relative;
  transition: all 0.3s ease-in-out !important;
}

.whychoosus ul li:hover {
  transform: translateY(-8px) !important;
  background: rgb(104, 246, 104);

}

.whychoosus ul li i {
  border-radius: 50%;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  color: #fff;
  font-size: 25px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
}


.whychoosus ul li:nth-child(6n+1) i {
  background-color: #ff6c42;

}

.whychoosus ul li:nth-child(6n+2) i {
  background-color: #ffc836;

}

.whychoosus ul li:nth-child(6n+3) i {
  background-color: #afafaf;

}

.whychoosus ul li:nth-child(6n+4) i {
  background-color: #66cfff;

}

.whychoosus ul li:nth-child(6n+5) i {
  background-color: #99bf48;

}

.whychoosus ul li:nth-child(6n+6) i {
  background-color: #ff6c42;
}

.whychoosus ul li h4 {
  font-size: 16px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  color: #2e2e2e;
  margin-bottom: 22px;
  margin: 50px 0 20px;
}



/* ---------------------why choose end--------- */


/** application-setup **/

.application-setup {
  position: relative;
  padding: 75px 0px 100px 0px;
}

.application-setup .single-item {
  position: relative;
  margin: 30px 0;
}

.application-setup .single-item .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e7e4ff;
  box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 500ms ease;
  text-align: center;
  border-radius: 50px 10px 10px 10px;
}

.application-setup .single-item .inner-box:before {
  position: absolute;
  content: '';
  background: rgba(245, 245, 245, 0.5);
  width: 470px;
  height: 470px;
  right: -115px;
  bottom: -470px;
  border-radius: 50%;
  transition: all 500ms ease;
}

.application-setup .single-item:hover .inner-box:before {
  bottom: -270px;
}

.application-setup .single-item .inner-box:after {
  position: absolute;
  content: '';
  background: rgba(245, 245, 245, 0.7);
  width: 470px;
  height: 470px;
  right: -145px;
  bottom: -470px;
  border-radius: 50%;
  z-index: -1;
  transition: all 1500ms ease;
}

.application-setup .single-item:hover .inner-box:after {
  bottom: -330px;
}

.application-setup .single-item .count-box {
  position: absolute;
  top: -30px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 60px;
  text-align: center;
  background-image: -webkit-linear-gradient(-45deg, #092ef1 0%, #010570 100%);
  border-radius: 50%;
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
  z-index: 2;
  border: 7px solid #fff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.application-setup .single-column:nth-child(2) .single-item .count-box,
.application-setup .single-column:nth-child(8) .single-item .count-box,
.application-setup .single-column:last-child .single-item .count-box {
  background-image: -webkit-linear-gradient(-45deg, #fab000 0%, #cd8400 100%);
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.application-setup .single-column:nth-child(3) .single-item .count-box,
.application-setup .single-column:nth-child(5) .single-item .count-box {
  background-image: -webkit-linear-gradient(-45deg, #f7463a 0%, #c9180c 100%);
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.application-setup .single-column:nth-child(4) .single-item .count-box,
.application-setup .single-column:nth-child(6) .single-item .count-box {
  background-image: -webkit-linear-gradient(-45deg, #9ff300 0%, #1a8300 100%);
  -webkit-animation: zoom-fade 3s infinite linear;
  animation: zoom-fade 3s infinite linear;
}

.application-setup .single-item .inner-box h3 {
  display: block;
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  top: 50%;
  text-align: center;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  margin: 0 0 15px;
}

.main-service-image {
  padding: 15px;
  height: 142px;
  margin: 25px auto 10px;
}

.application-setup .single-item .inner-box h3 a {
  display: inline-block;
  color: #222;
}

.application-setup .single-item .inner-box h3 a {
  display: inline-block;
}

.application-setup .single-item .inner-box .text {
  position: relative;
  font-size: 16px;
}


/** application-setup end**/

.banner-section .image-box img {
  position: relative;
  -webkit-animation: bounce-hero 3s infinite;
  -moz-animation: bounce-hero 3s infinite;
  animation: bounce-hero 3s infinite;
}

@keyframes bounce-hero {
  0% {
    top: 0px;
  }

  50% {
    top: 25px;
  }

  100% {
    top: 0px;
  }
}
@media (max-width: 1199px) {
.whychoosus ul li {
  width: calc(36.33% - 20px);
}
}
@media (max-width: 767px) {
  .whychoosus{
    margin-top: 20px !important;
  }
  .whychoosus ul li {
    width: 100%;
  }
  }