body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  color: #4d4d4d;
}

html {
  scroll-behavior: smooth;
}

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

img {
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}

p {
  line-height: 26px;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
}

h4{
  line-height: 1.3;
}

.zRC27e img {
  width: 250px !important;
  height: 50px !important;
}

.tailwebs-red {
  color: #e12b34;
}

.copyright-info span a:hover {
  color: #e12b34;
}

.accordion {
  border: 1px solid #898989 !important;
  margin: 30px 0px;
}

.accordion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: #000;
  padding: 10px;
}

.accordion-heading::after {
  content: "+";
  font-weight: 100;
  color: #000;
  font-size: 30px;
  /* Adjust the font-size to your desired size */
  width: 50px;
  /* Fixed width for alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  /* Add a smooth transition for the transform property */
  transform-origin: center;
  transform: rotate(0deg);
  /* Initially rotate 0 degrees */
}

.accordion-heading.collapsed::after {
  content: "+";
  transform: rotate(0deg);
  /* Initially rotate 0 degrees */
}

.accordion-heading:not(.collapsed)::after {
  transform: rotate(45deg);
  /* Rotate to 90 degrees when expanded */
}

.card-body {
  padding-top: 0px !important;
}

/* inti dropdown */

.callback-input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 50px;
  border: 0px;
  box-shadow: 0px 0px 13px 0px #d8d8d8;
  border-radius: 30px;
}


.callback-input .callback-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #e12b34;
  color: #fff;
  border: 0;
  height: 50px;
  padding: 14px 25px 14px;
  border-radius: 30px;
  font-family: "Nunito Sans", sans-serif;
  cursor: pointer;
}

.callback-input input {
  height: 50px;
  border-radius: 30px;
  border: none;
  width: 100%;
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__country-container:hover .iti__selected-country {
  background-color: transparent !important;
}

.iti--allow-dropdown .iti__country-container .iti__selected-country {
  background-color: transparent !important;
}

.iti--allow-dropdown .iti__country-container:hover {
  border-radius: 30px !important;
}

.iti .iti__country-list {
  bottom: 100%;
  /* Position above the input */
  top: auto;
  position: absolute;
  background: #fff;
  border: var(--iti-border-width) solid var(--iti-border-gray);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.iti__dropdown-content {
  position: absolute;
  bottom: 100%;
  top: auto;
}

#error-msg {
  position: absolute;
  /* Position absolutely within the parent */
  top: -80%;
  left: 37%;
  color: #fff;
  font-size: 16px;
  /* Text color for error message */
  background-color: #e12b34;
  /* Background color for error message */
  padding: 5px 10px;
  /* Padding around the text */
  border-radius: 5px;

}

/* Styling for valid message */
#valid-msg {
  position: absolute;
  /* Position absolutely within the parent */
  top: -80%;
  left: 37%;
  color: #fff;
  font-size: 16px;
  /* Text color for valid message */
  background-color: #4caf50;
  /* Background color for valid message */
  padding: 5px 10px;
  /* Padding around the text */
  border-radius: 5px;
  /* Rounded corners */

}


/* Add CSS animations for slide-in and fade-out effects */
@keyframes showError {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showValid {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#error-msg2 {
  position: absolute;
  /* Position absolutely within the parent */
  top: -80%;
  left: 37%;
  color: #fff;
  font-size: 16px;
  /* Text color for error message */
  background-color: #e12b34;
  /* Background color for error message */
  padding: 5px 10px;
  /* Padding around the text */
  border-radius: 5px;

}

/* Styling for valid message */
#valid-msg2 {
  position: absolute;
  /* Position absolutely within the parent */
  top: -80%;
  left: 37%;
  color: #fff;
  font-size: 16px;
  /* Text color for valid message */
  background-color: #4caf50;
  /* Background color for valid message */
  padding: 5px 10px;
  /* Padding around the text */
  border-radius: 5px;
  /* Rounded corners */
}


/* Add CSS animations for slide-in and fade-out effects */
@keyframes showError2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showValid2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .accordion-heading {
    font-size: 18px;
  }

  .accordion-heading::after {
    font-size: 20px;
    font-weight: 500;
  }
}

@media (max-width: 1900px) {
  .zoom {
    zoom: 1 !important;
  }
}

.fs-20 {
  font-size: 20px;
}

.fs-25 {
  font-size: 25px;
}

.explore {
  fill: rgba(225, 43, 52, 1);
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.card-style-1 {
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 5px 45px 0px rgba(175, 177, 177, 0.57);
  padding: 20px;
}

.card-style-2 {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 5px 45px 0px rgba(175, 177, 177, 0.57);
  border-radius: 0px 50px 0px 50px;
  padding: 30px;
}

.img-style-1 {
  /* box-shadow: 0px 5px 30px 0px rgba(214, 215, 216, 0.57);
  border-width: 10px 10px 10px 10px; */
  width: 40%;
  border-radius: 50% 50% 50% 50%;
  /* border-color: rgba(255, 255, 255, 1); */
  text-align: center;
  padding: 10px;
  margin: auto;
}

.img-style-1 img {
  border-radius: 50%;
}

.line-style-1 {
  background: #385173;
  width: 40px;
  height: 4px;
}

.line-style-2{
  height: 1px;
  background: rgba(221, 221, 221, 1);
  width: 100%;
}

.owl-carousel.owl-1 .owl-nav button.owl-next {
  background: #e12b34 !important;
  width: 25px;
  height: 25px;
  border-radius: 50% !important;
  color: #fff !important;
  position: static;
  top: 50%;
  right: -10%;
}

.owl-carousel.owl-1 .owl-nav button.owl-prev {
  background: #e12b34 !important;
  width: 25px;
  height: 25px;
  border-radius: 50% !important;
  color: #fff !important;
  position: static;
  top: 50%;
  left: -10%;
}

.owl-carousel.owl-2 .owl-nav button.owl-next {
  background: #e12b34 !important;
  width: 25px;
  height: 25px;
  border-radius: 50% !important;
  color: #fff !important;
  margin: 0px 5px;
}

.owl-carousel.owl-2 .owl-nav button.owl-prev {
  background: #e12b34 !important;
  width: 25px;
  height: 25px;
  border-radius: 50% !important;
  color: #fff !important;
  margin: 0px 5px;
}

.owl-carousel.owl-2 .owl-nav{
  text-align: center;
}

.owl-carousel.owl-2 .owl-dots {
  display: none;
}

.owl-theme .owl-nav{
  margin-top: 0px !important;
}

.owl-carousel.owl-1 .item {
  height: 580px !important;
}

.owl-carousel.owl-1 .item .card-style-1 {
  height: 100% !important;
  /* Adjust height to fit content */
}

.m-auto {
  margin: auto;
}

.mt-20 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 10px;
}

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

.mt-50 {
  margin-top: 50px;
}

.ml-10 {
  margin-left: 10px;
}

.w-50p {
  width: 50%;
}

.w-20p {
  width: 20%!important;
}

.p-25 {
  padding: 25px;
}

.p-10 {
  padding: 10px;
}

img {
  max-width: 100%;
}

.float-none {
  float: none !important;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.text-left {
  text-align: left !important;
}

.fw-700 {
  font-weight: 700;
}

.white {
  color: #fff;
}

.book-btn {
  background-color: #e12b34;
  border: 2px solid #e12b34;
  padding: 10px 25px;
  width: fit-content;
  border-radius: 5px;
  font-size: 16px;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

.book-btn:hover {
  background-color: #fff;
  border: 2px solid #e12b34;
  color: #e12b34;
}

.book-btn:hover a {
  color: #e12b34;
}

.book-btn a:hover {
  color: #e12b34;
}

.book-btn a span {
  font-size: 12px;
  font-weight: 500;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

a {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#messages .alert {
  padding: 7px 10px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 18px;
  display: block;
  line-height: 23px;
  text-align: center;
  background-color: #e6efe2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.wrapper {
  width: 100%;
  float: left;
  margin-top: 70px;
}

.header-info.sticky {
  background-color: #fff;
  padding: 9px 0px 11px;
}

.header-info {
  position: fixed;
  width: 100%;
  z-index: 111;
  left: 0;
  top: 0px;
  padding: 12px 0px;
  box-shadow: 0px 0px 30px 0px #dbdbdb;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-container {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carousel-item {
  background-color: #fff;
  position: relative;
}

.banner-head {
  position: absolute;
  left: 0px;
  bottom: 10px;
  width: 100%;
  color: #fff;
  text-align: center;
}

.banner-head h3 {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 60px;
  font-weight: normal;
  margin-bottom: 32px;
}

.banner-head a {
  background: url(../images/btnbg.png) repeat-x;
  height: 38px;
  line-height: 38px;
  display: inline-block;
  padding: 0px 30px;
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
  border-radius: 30px;
}

.banner-head a:hover {
  background: url(../images/btnbg2.png) repeat-x;
}

.logo {
  float: left;
  width: auto;
}

.logo img {
  width: 125px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-top: 8px
}

.navigation {
  width: auto;
  float: right;
  display: flex;
  align-items: center;
  margin: 3px 0 0 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation ul {
  width: auto;
  float: left;
  margin: 0;
  list-style: none;
  padding: 0px;
  display: flex;
  align-items: center;
}

.navigation ul li {
  float: left;
  margin: 0px 3px;
  position: relative
}

.navigation ul li.menu-item-1697 a {
  animation: pulse 2s infinite;
  color: #29a71a;
  border: 1px solid #29a71a;
  border-radius: 30px;
  padding: 4px 16px 3px;
}

.navigation ul li a {
  color: #000000;
  font-size: 15px;
  padding: 11px 10px 9px;
  position: relative;
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.navigation ul li a:hover {
  /* color: #e12b34; */
  border-radius: 0;
}

#selectrequred {
  display: block;
  font-size: 13px;
  margin-top: 12px;
  color: red;
  font-style: italic;
}

.navigation ul li ul {
  position: absolute;
  left: 0px;
  display: flex;
  flex-direction: column;
  z-index: 56;
  padding: 0px;
  transform-origin: 50% 0;
  transform: scaleY(0) translateZ(0);
  padding: 0;
  opacity: 0;
  width: 257px;
  transition: transform 0.3s, opacity 0.3s;
  background: #ffffff;
  top: 42px;
  box-shadow: 0px 15px 19px 0px rgb(228 228 228 / 54%);
  border-radius: 0 0px 30px 30px;
  padding-bottom: 6px;
  padding-top: 13px;
}

.navigation ul li ul li {
  width: 100%;
  margin: 0px;
}

.navigation ul li ul li a {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-family: "Nunito Sans", sans-serif;
  padding: 8px 16px;
  border-top: 1px solid hwb(0deg 44% 55% / 19%);
  text-transform: none;
}

.navigation ul li ul li:first-child a {
  border: 0px;
}

.navigation ul li ul li a:hover {
  border-radius: 0;
  padding-left: 18px;
  color: #12bf7c;
}

.navigation ul li ul li a .fa {
  float: right;
  margin: 3px 0 0 0;
}

.navigation ul li:hover>ul {
  opacity: 1;
  transform: scaleY(1) translateZ(0px);
}

.navigation ul li ul li ul {
  position: absolute;
  left: -318px;
  width: 320px;
  background: #12BF7C;
  top: 0;
  opacity: 0;
}

.navigation ul li ul li:hover>ul {
  opacity: 1;
  transform: scaleY(1) translateZ(0px);
  -webkit-transform: scaleY(1) translateZ(0px);
  -moz-transform: scaleY(1) translateZ(0px);
  -ms-transform: scaleY(1) translateZ(0px);
  -o-transform: scaleY(1) translateZ(0px);
}

.buy-now {
  float: right;
  width: auto;
  margin-left: 25px;
}

.buy-now a {
  color: #232323;
  border: 2px solid #232323;
  border-radius: 6px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  padding: 7px 29px 6px;
}

.buy-now a.free-trial-link {
  background: #232323;
  color: #fff;
  margin-left: 10px;
}

.buy-now a:hover {
  background: #232323;
  color: #fff;
}

.buy-now a.free-trial-link:hover {
  background: #000000;
}

.slider_area {
  background: #fff;
  width: 100%;
  padding: 0px 0 0px 0;
  position: relative;
}

.slider_area.hm {
  min-height: 100%;
  padding-bottom: 50px;
  padding-top: 50px;
}

.app-img {
  width: 80%;
}

.banner-content {
  width: 100%;
  float: left;
  /* padding: 50px 0 0 50px; */
  position: relative;
  z-index: 45;
}

.banner-content h1 {
  font-size: 40px;
  color: #111;
  font-family: "Nunito Sans", sans-serif;
  margin: 0 0 10px 0
}

.banner-content h1 span {
  font-family: "Nunito Sans", sans-serif;
  display: inline-block;
  color: #e12b34;
  /* margin-top: 12px; */
}

.banner-content p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #5f5e5e;
  line-height: 30px;
}

.banner-content p span {
  font-family: "Nunito Sans", sans-serif;
  display: inline
}

.banner-content ul {
  padding: 10px 0 3px 21px;
}

.banner-content ul li {
  margin: 7px 0px;
  color: #e12b34;
}

.banner-content ul li span {
  font-family: "Nunito Sans", sans-serif;
  color: #12bf7c;
}

.banner-content ul li strong {
  font-weight: 700;
}

.bs_price span {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  margin-left: 1px
}

.csd figure {
  margin: 0 20px;
  border-radius: 4px;
  overflow: hidden;
  width: 15%;
}

.csd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.sbt {
  margin-bottom: 20px;
}

.section_1.p30 {
  padding: 50px 0px;
  width: 100%;
  background: #f2f7f2;
}

.section_1.p30 .h2_heading {
  font-size: 25px;
  font-family: "Nunito Sans",
    sans-serif;
}

.mt_select label {
  font-size: 14px;
  display: block;
  width: 100%;
  font-weight: normal;
  margin: 3px 0px;
}

.mt_select h4 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
}

.mt_select label input[type="checkbox"] {
  margin-right: 4px;
}

.s-cunnekt {
  margin: 30px 0 0 0;
}

.s-cunnekt a {
  border: 2px solid #e12b34;
  float: left;
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 5px;
  color: #fff;
  background-color: #e12b34;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.s-cunnekts {
  border: 2px solid #e12b34;
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 12px;
  color: #fff;
  background-color: #e12b34;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.s-cunnekt a .book-text {
  font-size: 12px;
  font-weight: 500;
}

.s-cunnekt a span {
  font-family: "Nunito Sans", sans-serif;
  color: #fff;
}

.s-cunnekt a:hover {
  background: #fff;
  color: #e12b34;
}

.s-cunnekt a:hover span {
  color: #e12b34;
}

.s-cunnekt a.btn4 {
  background: #e12b34;
  color: #fff;
}

.s-cunnekt a.btn4:hover {
  background: #e12b34;
  color: #fff;
}

.about-head {
  padding: 0px 0px 0px;
}

._pages .banner-content .about-head p {
  margin: 0px;
}

.telegram-img img {
  margin-bottom: -72px;
}

.sms-img img {
  margin-bottom: -62px;
}

.solution-bx-info.tp20 {
  margin-top: 40px;
}

/* .hm-slide-bn2 {
  padding: 25px 0px 0px;
} */

.hm-slide-bn3 .banner-content {
  margin-top: 60px;
}

h2,
h3 {
  color: #2e2e2e;
  font-family: "Nunito Sans", sans-serif;
}

.inf_bx {
  padding: 0px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inf_bx h3 {
  font-size: 30px;
  font-family: "Nunito Sans", sans-serif;
  line-height: 35px;
  margin-left: 20px;
  ;
}

.inf_bx h3 span {
  color: #12bf7c;
}

.section_bx2 {
  width: 100%;
  padding: 50px 0px;
}

.section_bx2 h2,
.h2_heading {
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
}

h2 {
  margin-top: 0px;
}

/* .section_bx2 .row {
  margin-top: 50px;
  margin-bottom: 20px;
} */

/* .items_d {
  margin-top: 56px;
} */

.items_d h3 {
  font-size: 25px;
  margin: 0px 0 17px 0;
}

.items_d h3 span {
  color: #12bf7c;
}

.items_d ul {
  padding: 15px 0px 0px 0px;
  list-style: none;
}

.about-bx-info .list_item {
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.list_item li {
  padding: 1px 0px;
  background: url(../images/tick.jpg) no-repeat 0px 11px;
  padding-left: 26px;
}

.items_d ul li {
  padding: 5px 0px;
  background: url(../images/tick.jpg) no-repeat 0px 11px;
  padding-left: 26px;
}

.figb {
  border: 2px solid #12bf7d;
}

.mt15 {
  margin-top: 40px;
}

.items_d p span {
  color: #12bf7c;
  font-family: "Nunito Sans", sans-serif;
}

.items_d ul li strong {
  font-family: "Nunito Sans", sans-serif;
  font-style: italic;
}

.get_demo {
  padding: 37px 0px;
  background: url(../images/bg3.jpg) no-repeat 0px 0px;
  border-radius: 19px;
  background-size: 100%;
}

.get_link {
  background: #f2f7f2;
  display: inline-block;
  padding: 18px 33px 11px;
  color: #111;
  text-transform: uppercase;
  border-radius: 7px;
  box-shadow: 2px 5px 0px 0px #cac5b8;
  font-family: "Nunito Sans", sans-serif;
}

.get_link span {
  background: url(../images/arr23.png) no-repeat right;
  padding-right: 53px;
  display: inline-block;
}

.section_bx3 {
  width: 100%;
  background: #fadddd;
  padding: 50px 0px;
}

.section-4 {
  width: 100%;
  background: #f2f7f2;
}

.feature_list {
  list-style: none;
  padding: 0;
  margin: 30px 0 30px 0;
  width: 100%;
}

.feature_list li {
  width: 32%;
  background: #fff;
  padding: 30px;
  margin: 0.5%;
  border-radius: 3px;
  box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 16%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.feature_list li h4 {
  font-size: 20px;
  line-height: 26px;
}

.feature_list li h4 span {
  color: #12bf7c;
  display: block;
  font-family: "Nunito Sans", sans-serif;
}

.get_link.blue {
  background: #12bf7c;
}

.margin-top-bottom {
  margin-top: 0px !important;
  margin-bottom: 0 !important;
}

.scd {
  margin: 35px 0 26px 0px;
}

.scd span {
  display: inline-block;
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 12px;
}

.scd span i {
  margin-bottom: 8px;
  color: #fff;
  width: 33px;
  height: 36px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 26px;
  border-radius: 3px;
}

.scd span .fa-whatsapp {
  background: #126847;
}

.scd span .fa-twitter {
  background: #03a9f4;
}

.scd span .fa-facebook {
  background: #4267b2;
}

.scd span .fa-instagram {
  background: #fd0070;
}

.hwd {
  width: 100%;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 50px 0 50px 0;
  display: inline-flex;
  text-align: center;
}

.hwd li {
  width: 24%;
  background: #f2f7f2;
  padding: 30px 15px;
  margin: 0.5%;
}

.hwd li h4 {
  font-size: 50px;
  font-family: "Nunito Sans", sans-serif;
  color: #12bf7c;
  margin: 0 0 10px 0;
}

.hwd li p {
  font-size: 17px;
}

.hwd li p strong {
  color: #000;
}

strong {
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
}

.hwd:before {
  background: url(../images/up-dot.png) no-repeat;
  position: absolute;
  left: -10px;
  top: -25px;
  content: '';
  width: 150px;
  height: 70px;
}

.hwd:after {
  background: url(../images/down-dot.png) no-repeat;
  position: absolute;
  right: -10px;
  bottom: -25px;
  content: '';
  width: 150px;
  height: 70px;
}

.getstarted {
  clear: both;
  width: 100%;
  background: #fd0070;
  padding: 20px 0px;
  text-align: center;
}

.getbx {
  max-width: 550px;
  position: relative;
  margin: 0 auto;
}

.gets_link a {
  background: #dcf5dc;
  display: inline-block;
  padding: 10px 16px 8px;
  color: #575757;
  text-transform: uppercase;
  font-style: italic;
  font-family: "Nunito Sans", sans-serif;
  border-radius: 4px;
  border: 1px solid #dfd;
  margin: 3px 0px;
}

.gets_link {
  position: absolute;
  width: 190px;
  right: -21px;
  top: 75px;
}

.gets_link a:hover {
  background: #c7dfc7;
}

.ourclients {
  width: 100%;
  padding: 40px 0px;
  text-align: center;
}

.ourclients ul {
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  margin: 40px 0 0 0;
}

.feature_wrap.drv h3 span {
  color: #12bf7c;
}

.container.md5 {
  width: 100%;
  max-width: 1050px;
}




.enterprize-bx {
  width: 100%;
  padding: 35px 0 0 0;
  position: relative;
}


.section-head-bx {
  width: 100%;
  float: left;
  padding: 0px 120px 40px;
}

.section-head-bx h2 {
  font-size: 32px;
  color: #2e2e2e;
  font-family: "Nunito Sans", sans-serif;
  margin: 10px 0 15px 0;
  text-transform: uppercase;
}

.section-head-bx h2 span {
  color: #12bf7c;
}

.section-head-bx p {
  max-width: 950px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 27px;
}

.solution-bx {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.sm-bx {
  width: 100%;
  background: rgba(255, 255, 255, 0.59);
  z-index: 52;
  position: relative;
  float: left;
  border: 1px solid #c1f3c7;
  border-radius: 6px;
  text-align: center;
  padding: 0px 30px 20px;
  transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -webkit-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  box-shadow: 0px 1px 12px -1px rgba(0, 0, 0, 0.08);
}

.sm-bx figure {
  height: 106px;
  padding-top: 22px;
}

.sm-bx h3 {
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
  margin: 13px 0 15px 0
}

.sm-bx h3 span {
  color: #12bf7c;
}

.sm-bx p {
  font-size: 16px;
  line-height: 25px;
}

.sm-bx p span {
  font-family: "Nunito Sans", sans-serif;
}

.more a {
  background: #f6f6f6;
  border: 1px solid #ededed;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  border-radius: 6px;
  color: #262626;
  font-size: 14px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 15px;
}

.more a .fa {
  color: #12bf7c;
}

.sm-bx:hover .more a {
  background: #fff;
}

.sm-bx:hover {
  background: #eef7ef;
  border: 1px solid #fff;
  box-shadow: 0px -1px 9px -3px rgb(15, 15, 15);
}

.unified-bx {
  width: 100%;
  float: left;
  padding: 40px 0px 5px;
  background: #faf5ea;
  position: relative;
}

.unified-bx:after {
  background: url(../images/patern-3.png) no-repeat;
  width: 347px;
  height: 794px;
  content: '';
  position: absolute;
  right: 0;
  top: -230px;
  z-index: 3
}

.boldtext {
  font-family: "Nunito Sans", sans-serif;
}

.uni-bx {
  width: 96%;
  height: 510px;
  ;
  float: left;
  background: #fff;
  margin: 15px 2%;
  text-align: center;
  padding: 10px 31px 20px;
  border: 1px solid #e8ddc2;
  border-radius: 5px;
}

.uni-bx:hover {
  box-shadow: 0px 0px 5px 0px #09b774;
}

.uni-bx h3 {
  margin: 15px 0 18px 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
}

.uni-bx h3 span {
  text-transform: uppercase;
  font-size: 25px;
  font-family: "Nunito Sans", sans-serif;
  display: block;
}

.uni-bx figure {
  margin-bottom: 20px;
}

.uni-bx p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.process-bx {
  width: 100%;
  float: left;
  padding: 44px 0px 30px;
  background: #fff;
  position: relative;
}

.process-bx.sp ul li {
  padding: 20px
}

.process-bx.sp ul li h3 {
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 16px;
}

.process-bx.sp ul li p span {
  font-family: "Nunito Sans", sans-serif;
  color: #12BF7C;
}

.process-bx h2 {
  text-transform: uppercase;
  font-size: 35px;
  font-family: "Nunito Sans", sans-serif;
  display: block;
  text-align: center;
  margin: 7px 0px 20px 0px;
}

.process-bx ul {
  width: 100%;
  float: left;
  list-style: none;
  margin: 30px 0 0 0;
}

.process-bx ul li {
  float: left;
  width: 33.333%;
  text-align: center;
  border: 1px solid #dcdcdc;
  padding: 30px 20px;
  border-left: 0px;
}

.process-bx ul li:nth-child(1),
.process-bx ul li:nth-child(2),
.process-bx ul li:nth-child(3) {
  border-top: 0px;
  border-bottom: 0px;
}

.process-bx ul li:nth-child(4),
.process-bx ul li:nth-child(5),
.process-bx ul li:nth-child(6) {
  border-bottom: 0px;
}

.process-bx ul li:nth-child(3),
.process-bx ul li:nth-child(6) {
  border-right: 0px;
}

.process-bx ul li h3 {
  font-size: 17px;
  font-family: "Nunito Sans", sans-serif;
}

.process-bx ul li p {
  font-size: 16px;
  color: #111;
  line-height: 26px;
  font-family: "Nunito Sans", sans-serif;
}

.discover-bx {
  width: 100%;
  float: left;
  margin: 0px 0px 0px 0px;
  padding: 30px 0;
  background: #f9f5ea;
  text-align: center;
}

.discover-bx h2 {
  text-transform: uppercase;
  font-size: 25px;
  font-family: "Nunito Sans", sans-serif;
  display: block;
  text-align: center;
  margin: 7px 0px 20px 0px;
}

.discover-bx ul {
  width: 100%;
  float: left;
  list-style: none;
  margin: 20px 0 0 0;
}

.discover-bx ul li {
  float: left;
  width: 50%;
  padding: 15px 60px;
  border-left: 1px solid #e4e4e4;
}

.discover-bx ul li:nth-child(1) {
  border-left: 0px;
}

.discover-bx ul li h3 {
  text-transform: uppercase;
  color: #111;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
}

.discover-bx ul li p {
  font-size: 16px;
  color: #111;
  line-height: 26px;
  font-family: "Nunito Sans", sans-serif;
}

.discover-bx ul li p a {
  background: #12bf7c;
  padding: 7px 20px;
  display: inline-block;
  color: #111;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  margin-top: 15px;
  border-radius: 5px;
  border: 1px solid #12bf7c;
}

.discover-bx ul li p a:hover {
  background: #fff;
  color: #12bf7c;
}

.footer-info {
  width: 100%;
  float: left;
  background: #f2f7f2;
  padding: 47px 0px 20px;
}

.footer-info h3 {
  text-transform: uppercase;
  font-size: 16px;
  color: #424141;
  margin: 3px 0 13px 0;
}

.footer-info ul li {
  margin: 3px 0px;
}

.footer-info ul li a {
  color: #767676;
  font-size: 16px;
}

.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-info ul li a:hover {
  color: #111;
}

.ft_form {
  position: relative;
  display: flex;
  margin-bottom: 36px;
}

.ft_form .type_num {
  width: 100%;
  height: 50px;
  padding: 10px 128px 10px 19px;
  border: 0px;
  box-shadow: 0px 0px 13px 0px #d8d8d8;
  border-radius: 30px;
}

.c_btn {
  position: absolute;
  right: 0;
  background: #e12b34;
  color: #fff;
  border: 0;
  height: 50px;
  padding: 14px 25px 14px;
  border-radius: 30px;
  font-family: "Nunito Sans", sans-serif;
}



.tp-1 {
  width: 100%;
  float: left;
  position: relative;
}

.social-links {
  float: left;
  width: auto;
  margin: 8px 0 0 0;
}

.social-links a {
  font-size: 25px;
  color: #111;
  display: inline-block;
  margin: 0px 12px 0px 0px;
}

.scroll-top {
  float: right;
  width: auto;
  cursor: pointer;
}

.ft-logo {
  width: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 23px;
}

.ft-link {
  width: 100%;
  float: left;
  border-top: 1px solid #1aa46f;
  border-bottom: 1px solid #1aa46f;
  margin: 15px 0 0 0;
  padding: 3px 0px 3px;
}

.ft-bx1 {
  float: left;
  width: auto;
  border-right: 1px solid #058654;
  padding: 14px 28px 14px 0;
}

.ft-bx2 {
  float: right;
  width: auto;
  border-left: 1px solid #058654;
  padding: 14px 0px 14px 28px;
  text-align: right;
}

.ft-bx1 a,
.ft-bx2 a {
  color: #111;
  display: inline-block;
  margin-top: 4px;
}

.ft-links {
  width: auto;
  float: left;
  margin: 23px 0 0 206px
}

.ft-links li a {
  text-transform: uppercase;
  font-size: 13px;
  color: #000000;
  font-family: "Nunito Sans", sans-serif;
}

.ft-links li {
  display: inline-block;
  margin: 0px 13px;
}

.ft-links li a:hover {
  text-decoration: underline;
}

.ft-link h4 {
  text-transform: uppercase;
  font-size: 12px;
  color: #000000;
  font-family: "Nunito Sans", sans-serif;
  margin: 0px 0 0 0;
}

.copyright {
  width: 100%;
  float: left;
  text-align: center;
  color: #111;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  font-size: 14px;
}

.copyright p a {
  color: #111;
  margin: 0px 10px;
  display: inline-block;
}

.copyright p a:hover {
  text-decoration: underline;
}


.responsive-menu {
  display: none;
}

._pages .banner-content {
  padding: 0 0 0 0px;
  position: relative;
  z-index: 56;
}

._pages .banner-content h4 {
  font-size: 16px;
  color: #000;
  margin: 0 0 10px 0;
}

._pages .banner-content h1 {
  font-size: 40px;
  color: #fff;
  margin: 0 0 10px 0;
  font-family: "Nunito Sans", sans-serif;
}

._pages .banner-content h1 span {
  display: block;
  font-family: "Nunito Sans", sans-serif;
}

._pages .banner-content h2 {
  font-size: 35px;
  color: #111;
  margin: 0 0 10px 0;
  font-family: "Nunito Sans", sans-serif;
}

._pages .banner-content p {
  font-size: 18px;
  margin: 25px 0
}

._pages .banner-content ul {
  width: 100%;
  float: left;
  list-style: none;
}

._pages .banner-content ul li {
  float: left;
  width: 33.333%;
  font-size: 17px;
  padding: 0px 0px 16px 0px;
  position: relative;
  font-family: "Nunito Sans", sans-serif;
  color: #fff;
}

.more-btn a {
  background: #ffffff;
  float: left;
  font-family: "Nunito Sans", sans-serif;
  padding: 12px 17px 11px;
  border-radius: 15px;
  color: #060606;
  font-size: 15px;
  text-transform: uppercase;
  margin: 12px 12px 0 0;
  position: relative;
  border: 1px solid #fff;
}

.more-btn a:hover {
  background: #333;
  color: #fff;
}

.more-btn a.btn_ {
  background: #000;
  color: #fff;
}

.more-btn a.btn_:hover {
  background: #fff;
  color: #333;
}

.more-btn.p-bottom a {
  margin: 0px 0 20px 0;
}

.app-content.p40 {
  margin: 50px 0 0 0;
}

.solution-bx-info:before {
  background: url(../images/patern-2.png) no-repeat;
  width: 423px;
  height: 327px;
  content: '';
  position: absolute;
  left: 0;
  top: -325px;
  z-index: 3;
}

.solution-bx-info {
  width: 100%;
  float: left;
  position: relative;
  padding: 20px 0px;
}

.section-bx {
  width: 100%;
  float: left;
  margin: 20px 0px;
}

.app-content {
  width: 100%;
  float: left;
}

.app-content h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 27px;
  font-weight: normal;
  color: #2E2E2E;
  line-height: 43px;
  margin-bottom: 15px;
}

.app-content h3 span {
  color: #12BF7C;
}

.app-content h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 27px;
  font-weight: normal;
  color: #2E2E2E;
  line-height: 36px;
  margin-bottom: 15px;
}

.app-content h2 span {
  color: #12BF7C;
}

.app-content p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.app-content ul {
  list-style: none;
  padding: 0px;
  margin: 34px 0 0 0;
}

.app-content ul li {
  font-family: "Nunito Sans", sans-serif;
  color: #111;
  margin: 16px 0px;
  padding-left: 20px;
  background: url(../images/arrow-btn.jpg) no-repeat 0px 3px;
}

.app-content p span,
.section-bx._p2 .ptext span {
  font-family: "Nunito Sans", sans-serif;
}

.offset-bot {
  margin-bottom: -16px
}

.section-bx.pt40 {
  margin-top: 70px;
}

.section-head-bx.P2 {
  width: 100%;
  float: left;
  padding: 70px 60px 40px;
}

.section-bx._p2 {
  padding: 0 30px;
}

.section-bx._p2 .ptext {
  padding: 0 50px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.section-bx._p2 h3 {
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: normal;
  color: #2E2E2E;
  line-height: 43px;
  margin-bottom: 15px;
}

/*===== All Slick Slide Outline Style =====*/
.carousel {
  z-index: 87;
}

.redefine-custpmer-service-bx {
  width: 100%;
  float: left;
  background: #F5F5F5;
  padding: 22px 0px;
  text-align: center;
}

.redefine-custpmer-service-bx h2 {
  font-size: 35px;
  text-transform: uppercase;
  margin: 26px 0 44px 0;
  color: #696868;
  font-family: "Nunito Sans", sans-serif;
}

.redefine-custpmer-service-bx ul {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.redefine-custpmer-service-bx ul li {
  width: 33.333%;
  float: left;
  padding: 10px 30px;
}

.redefine-custpmer-service-bx ul li.mid {
  border-left: 1px solid #D0D0D0;
  border-right: 1px solid #D0D0D0;
}

.redefine-custpmer-service-bx ul li h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 26px 0 17px 0;
  color: #2b2a2a;
  font-family: "Nunito Sans", sans-serif;
}

.redefine-custpmer-service-bx ul li p {
  font-size: 16px;
  line-height: 26px;
}

.uses-bx {
  width: 100%;
  float: left;
  text-align: center;
  padding: 20px 0px;
  position: relative;
}

.uses-bx h2 {
  font-size: 35px;
  text-transform: uppercase;
  margin: 26px 0 22px 0;
  color: #696868;
  font-family: "Nunito Sans", sans-serif;
}

.text-head {
  font-size: 18px;
  margin-bottom: 20px;
}

.cases-bx {
  width: 100%;
  float: left;
  margin: 20px 0px;
  position: relative;
  z-index: 23;
}

.cases-bx h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0px 0 17px 0;
  color: #2b2a2a;
}

.cases-bx figure {
  width: 100%;
  float: left;
  margin-bottom: 12px;
}

.cases-bx p {
  font-size: 16px;
  line-height: 24px;
}

.uses-bx:before {
  background: url(../images/patern-4.png) no-repeat;
  width: 363px;
  height: 798px;
  content: '';
  position: absolute;
  left: 0;
  top: -325px;
  z-index: 3;
}

.structure-chatboat {
  width: 100%;
  float: left;
  margin: 53px 0 0px 0;
}

.chatboat-box {
  width: 100%;
  float: left;
  text-align: center;
  padding: 30px 40px;
  background: #F5F5F5;
  min-height: 369px
}

.chatboat-box h3 {
  font-size: 32px;
  text-transform: uppercase;
  margin: 10px 0 20px 0;
  color: #696868;
  font-family: "Nunito Sans", sans-serif;
}

.chatboat-box h3 span {
  color: #12BF7C;
}

.chatboat-box p {
  font-size: 16px;
  line-height: 25px;
}

.chatboat-box p span {
  font-family: "Nunito Sans", sans-serif;
}

.tp90 {
  padding-top: 40px;
}

.tp45 {
  padding-top: 25px;
}

.uses-bx.chatboat-bx:before {
  display: none;
}

.uses-bx.chatboat-bx {
  border-top: 1px solid #efefef;
}

.about-bx-info {
  width: 100%;
  float: left;
  padding: 30px 0px;
}

.abts-section {
  width: 100%;
  float: left;
  padding: 0px 170px;
  margin-bottom: 50px;
}

.abts-section.last {
  margin-bottom: 0px;
}

.mtop21 {
  margin-top: 5%;
}

.pricing_app_data {
  box-shadow: 0px 0px 19px 0px color(srgb 0.7 0.7 0.7 / 0.4);
  border: 1px solid #ccc;
  border-radius: 21px;
  min-height: 570px;
}

.pr_head {
  width: 100%;
  text-align: center;
  padding: 18px 10px 0px;
}

.pr_head h3 {
  margin: 0;
  font-size: 35px;
  color: #111;
}

.bs_price {
  font-size: 20px;
  color: #111;
  font-family: "Nunito Sans", sans-serif;
  margin: 0 0 0px 0;
}

.pr_head p {
  color: rgb(9 9 9 / 67%);
  line-height: 17px;
  font-size: 14px;
  margin: 9px 0 4px 0;
  font-style: italic;
}

._a1 .pr_head h3 {
  color: #12bf7c;
}

._a2 .pr_head h3 {
  color: #12bf7c;
}

._a3 .pr_head h3 {
  color: #fff;
}

.crossprice {
  font-size: 17px;
  text-decoration: line-through;
  margin-bottom: 15px;
  font-family: "Nunito Sans", sans-serif;
}

.pricing_app_data._a3 {
  background: #005033;
  color: #fff;
}

.pricing_app_data._a3 .bs_price,
.pricing_app_data._a3 .pr_head p {
  color: #fff;
}

._pt {
  text-align: center;
  margin: 0;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  bottom: -9px;
}

._pt a {
  color: #fff;
  padding: 6px 25px;
  border-radius: 30px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
}

._a1 ._pt a {
  background: #12bf7c;
  color: #fff
}

._a2 ._pt a {
  background: #12bf7c;
  color: #fff
}

._a3 ._pt a {
  background: #12bf7c;
  color: #fff
}





.strrt,
.evrplan {
  padding: 3px 25px 7px;
  text-align: center;
}

.app_pricing_list.dr1 {
  margin-top: 63px;
}

.strrt h4,
.evrplan h4 {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  padding: 10px 8px;
  font-family: "Nunito Sans", sans-serif;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 46%);
}

.strrt.a h4 {
  background: #2fd096;
  color: #fff;
}

.evrplan.a h4 {
  background: #fff;
  color: #000;
}

.app_pricing_list ul {
  list-style: none;
  padding: 0 30px;
}

.app_pricing_list ul li {
  font-size: 16px;
  padding-left: 18px;
  margin: 4px 0px;
}

.app_pricing_list.dr1 ul li {
  font-size: 16px;
  background: url(../images/tickmark_ic.png) no-repeat 0px 7px;
  background-size: 11px;
}

.app_pricing_list.dr2 ul li {
  font-size: 16px;
  background: url(../images/tickmark_ic.png) no-repeat 0px 7px;
  background-size: 11px
}

.app_pricing_list.c ul li {
  font-size: 16px;
  background: url(../images/tickmark_ic3.png) no-repeat 0px 7px;
  background-size: 11px
}

.strrt span {
  color: #18875f;
  display: inline-block;
  margin-left: 5px;
}

.evrplan span {
  display: inline-block;
  margin-left: 5px;
}


.footnote {
  flex-direction: column;
  background: #e5fff5;
  padding: 12px;
  margin: 20px 0px;
  border: 1px dashed #35b784;
  border-radius: 3px;
  width: 100%;
  display: inline-flex;
}

.abts-section h2 {
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: normal;
  color: #2E2E2E;
  line-height: 43px;
}

.about-bx-info h2 {
  text-align: left;
  font-size: 29px;
  margin: 27px 0 15px 0;
  color: #2a2a2a;
  text-align: left !important;
}

.about-bx-info h3 {
  font-size: 20px;
  color: #00a164;
  font-family: "Nunito Sans", sans-serif;
}

.abts-section h2 span {
  color: #12BF7C;
}

.abts-section p span {
  font-family: "Nunito Sans", sans-serif;
}

.abts-section p {
  font-family: "Nunito Sans", sans-serif;
  line-height: 31px;
  margin: 10px 0px;
}

.abts-section ul {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0px 50px;
  margin-top: 30px;
}

.abts-section ul li {
  float: left;
  width: 50%;
  font-size: 16px;
  margin: 10px 0px;
  position: relative;
  padding: 0px 15px;
}

.abts-section ul li span {
  font-family: "Nunito Sans", sans-serif
}

.abts-section ul li:before {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  content: '';
  position: absolute;
  left: 0px;
  top: 7px;
  background: #12BF7C;
}

.process-bx.cnk:before {
  width: 0px;
  height: 0px;
  display: none;
}

.process-bx.cnk h2 {
  font-family: "Nunito Sans", sans-serif;
}

.process-bx.cnk h2 span {
  color: #12BF7C;
}

.process-bx.cnk ul li h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  line-height: 24px;
}

.process-bx.cnk ul li h3 span {
  display: block;
  font-family: "Nunito Sans", sans-serif;
}

.process-bx.cnk ul li {
  padding: 33px 50px
}

.phone-num {
  float: right;
  width: auto;
}

.phone-num a {
  background: #01613c;
  float: left;
  margin-left: 20px;
  border: 1px solid #01613c;
  padding: 7px 8px;
  display: block;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 19px;
  border-radius: 3px;
}

.phone-num a:hover {
  background: #fff;
  color: #01613c
}

.phone-num a.getademo {
  background: #29a71a;
  color: #fff;
  border: 2px solid #29a71a;
  padding: 8px 12px 9px;
  font-size: 15px;
  border-radius: 5px;
}

.phone-num a.getademo:hover {
  background: #fff;
  color: #29a71a;
}

.phone-num a.getademo.str {
  background: #fff;
  color: #e12b34;
  border: 2px solid #e12b34;
}

._c-bg {
  border-left: 1px solid #e8e8e8;
  background-size: cover;
  height: 579px;
  position: relative;
  padding: 20px;
}

.c-info {
  width: 100%;
  float: left;
  margin: 0 0 23px 0
}

.c-info span {
  font-family: "Nunito Sans", sans-serif;
  font-size: 27px;
  display: block;
  float: left;
  width: 28px;
  text-align: right;
}

.c-info ._ad h4 {
  font-size: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.c-info ._ad p {
  font-size: 16px;
  color: #f2f2f2;
}

.c-info ._ad p.adr {
  color: #0aac6d;
}

.c-info ._ad p a {
  font-size: 16px;
  color: #0aac6d;
}

.form-container {
  width: 100%;
  float: left;
  padding-right: 25px;
}

.form-container h3 {
  font-size: 30px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  margin-bottom: 33px;
  text-transform: uppercase;
}

.form-container h3 span {
  color: #0aac6d;
}

.form-row label {
  font-weight: normal;
  color: #111;
  font-size: 15px;
}

.form-col {
  width: 100%;
}

.form-row label i {
  font-size: 23px;
  color: #ff1919;
  display: inline-block;
  line-height: 12px;
}

.form-row {
  width: 100%;
  float: left;
  margin-bottom: 23px;
}

.form-row input[type=text],
.form-row input[type=email] {
  border: 1px solid #bbb;
  float: left;
  padding: 6px 10px;
  box-sizing: border-box;
  height: 44px;
  color: #111;
  width: 100%;
}

.form-row .form-col.hf input[type=text] {
  width: 50%;
}

.form-row input[type=text].none {
  border-right: 0px;
}

.form-row input[type=text]:focus {
  outline: none;
  box-shadow: none !important;
  border-bottom: 1px solid #bbb !important;
}

.form-row .msg {
  border: 1px solid #bbb;
  float: left;
  padding: 6px 10px;
  box-sizing: border-box;
  height: 80px;
  color: #111;
  width: 100%;
}

.form-row button[type=button] {
  background: #0aac6d;
  border: 1px solid #0aac6d;
  color: #fff;
  padding: 9px 35px 8px;
  font-size: 17px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: ease all .4s;
}

.form-row button[type=button]:hover {
  background: #fff;
  color: #0aac6d
}

.form-container #message_ .alert {
  padding: 6px;
  margin-bottom: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
}

._c-bg h3 {
  font-size: 30px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: normal;
  margin-bottom: 33px;
  text-transform: uppercase;
}

._c-bg h3 span {
  color: #0aac6d;
}

.head-menu {
  float: left;
  width: auto;
}

.process-bx.s2:before {
  display: none;
}

.discover-bx h2 span {
  color: #12BF7C;
}

.call-back-phone {
  max-width: 750px;
  margin: 0 auto;
}

.c-phone {
  border: 2px solid #C8C4B8;
  width: 72%;
  border-radius: 8px;
  float: left;
  position: relative;
  overflow: hidden;
}

._pnum {
  float: left;
  font-size: 20px;
  border: 0px;
  color: #A9A9A9;
  padding: 14px 20px;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
}

.t-phone-field {
  width: 100%;
  height: 56px;
  border: 0px;
  line-height: 56px;
  padding: 0px 0 0 116px;
  font-size: 20px;
  color: #A9A9A9;
}

.call-back-btn {
  background: #12BF7C;
  height: 56px;
  float: right;
  margin-left: 0;
  padding: 0px 28px;
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
  border: 0;
  border-radius: 6px;
  box-shadow: 3px 5px 0px 0px #CAC5B8;
  font-weight: 600;
}

.call-back-btn:hover {
  background: #0ba067;
}

.discover-bx {
  padding: 46px 0;
}

._pages .banner-content.t20 {
  padding-top: 20px;
}

.p50 {
  margin-top: 50px;
}

.process-bx.whp:before,
.solution-bx-info.p0:before,
.process-bx.p2:before,
.process-bx.shd:before {
  width: 0px;
  height: 0px;
  display: none;
}

.whs-img img {
  margin-bottom: -41px;
}

._pages .banner-content.p70 {
  padding: 70px 0 0 0px
}

.process-bx.whp ul li h3 span {
  font-family: "Nunito Sans", sans-serif;
}

.process-bx.whp ul li h3 {
  text-transform: uppercase;
  line-height: 27px;
}

.process-bx.whp ul li {
  padding: 30px 20px;
}

.process-bx.sp.p2 ul li h3 span {
  font-family: "Nunito Sans", sans-serif;
  display: block;
}

.ptext50 {
  padding: 0px 120px;
  text-align: center;
}

.process-bx.shd {
  padding: 0px;
}

.process-bx.shd ul li p {
  text-align: justify;
}

.solution-bx.ply {
  margin-top: 20px;
}

.process-bx.shd .list-item {
  text-align: left;
  font-family: "Nunito Sans", sans-serif;
  color: #111;
  margin: 16px 0px;
  padding-left: 20px;
  background: url(../images/arrow-btn.jpg) no-repeat 0px 3px;
}

.process-bx2 {
  width: 100%;
  float: left;
}

.process-bx2 .list-item {
  text-align: left;
  font-family: "Nunito Sans", sans-serif;
  color: #111;
  margin: 16px 0px;
  padding-left: 20px;
  background: url(../images/arrow-btn.jpg) no-repeat 0px 3px;
}


.cmp-component {
  width: 100%;
  float: left;
  margin-top: 30px;
  border: 1px solid #e0e0e0;
  padding: 20px;
}

.cmp-component figure {
  width: 100%;
  float: left;
  text-align: center;
  margin: 0 0 20px 0px;
}

.cmp-component h3 {
  font-size: 18px;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
}

.cmp-component p {
  font-size: 16px;
  text-align: justify;
  color: #111;
  line-height: 26px;
  font-family: "Nunito Sans", sans-serif;
}

.discover-bx.secondary {
  padding: 0px 0 52px;
  background: #fff;
}

.discover-bx.secondary h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 30px;
  margin-bottom: 35px;
}

.getademo-model h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  margin-bottom: 7px;
  text-align: center;
  background: #12bf7c;
  color: #fffcfc;
  padding: 20px 10px;
  margin-top: 0;
  text-transform: uppercase;
}

.form-row-model {
  margin: 18px 0px;
}

.input-text-field {
  background: #fbfbfb;
  box-shadow: 0px 0px 3px #908f8f;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  color: #111;
  height: 48px;
  font-size: 16px;
}

.select-service-plans {
  background: #fbfbfb;
  box-shadow: 0px 0px 3px #908f8f;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  color: #111;
  height: 48px;
  font-size: 16px
}

textarea.input-text-field {
  height: 80px;
}

.getademo-model .modal-body {
  position: relative;
  padding: 15px 50px;
}

.getademo-model .sendingbutton,
.getademo-model button[type="submit"] {
  border: 1px solid #0aac6d;
  background: #0aac6d;
  color: #ffffff;
  padding: 14px 20px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  width: 100%;
  transition: ease all .4s;
  border-radius: 3px;
  letter-spacing: 1px;
  font-size: 20px;
}

.getademo-model button[type="submit"]:hover {
  color: #0aac6d;
  background: #fff;
}

.getademo-model .sendingbutton,
#gadsubmit {
  border: 1px solid #0aac6d;
  background: #0aac6d;
  color: #ffffff;
  padding: 14px 20px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  width: 100%;
  transition: ease all .4s;
  border-radius: 3px;
  letter-spacing: 1px;
  font-size: 20px;
}

#gadsubmit:hover {
  color: #0aac6d;
  background: #fff;
}

.add_info__ {
  background: #f0fff8;
  padding: 11px 15px;
}

.add_info__ h4 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
}

.add_info__ p {
  font-size: 14px;
  margin-bottom: 2px;
}

.copyright-info {
  font-size: 15px;
  color: #737373;
  margin-top: 30px;
  border-top: 1px solid #dde3dd;
  padding-top: 20px;
}

.getademo-model button.close {
  border: 0;
  opacity: 1;
  box-shadow: 0;
  color: #fff;
  font-size: 35px;
  position: absolute;
  right: 17px;
  top: 11px;
}

.knowmore {
  text-decoration: underline;
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
  background: #f2f2f2;
  color: #111;
  padding: 4px 5px;
  font-size: 15px;
  border-radius: 3px;
}

.knowmore:hover {
  text-decoration: none;
  color: #111;
}

.alert.alert-danger {
  margin-top: 5px;
  padding: 0px 5px;
  display: block;
}

.pricing-plans {
  width: 100%;
  float: left;
  margin: 45px 0 0 0
}

.pricing-plans ul {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.pricing-plans ul>li {
  width: 25%;
  float: left;
  box-shadow: 0px 0px 1px 0px #828282;
  background: #f2f2f2;
}

.pricing-plans ul>li .plans-name-head {
  width: 100%;
  float: left;
  background: #fff;
  padding: 30px 9px;
  margin-bottom: 15px;
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  font-size: 13px;
  color: #000;
}

.pricing-plans ul>li .plans-name-head span {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 23px;
  margin-bottom: 15px;
}

.pricing-plans ul>li .plans-name-head span small {
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #111
}

.pricing-plans ul>li p {
  width: 100%;
  float: left;
  font-family: "Nunito Sans", sans-serif;
  margin: 17px 0;
  list-style: none;
  padding: 8px 20px 24px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #e8e8e8;
}

.pricing-plans ul>li>ol {
  padding: 5px 30px;
  list-style: disc;
  width: 100%;
  float: left;
  padding-bottom: 20px;
}

.pricing-plans ul>li>ol li {
  padding: 5px 0px;
  font-size: 15px;
  text-align: left
}

.pricing-plans ul>li .get-started {
  width: 100%;
  float: left;
  text-align: center;
  padding: 15px;
}

.pricing-plans ul>li .get-started a {
  background: #01613c;
  border: 1px solid #01613c;
  padding: 7px 8px;
  display: block;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  border-radius: 3px;
  text-transform: uppercase;
}

.pricing-plans ul>li .get-started a:hover {
  background: #fff;
  color: #01613c
}

.pricing-plans ul>li.pro {
  background: #12bf7c;
  transform: scaleY(1.1);
  color: #fff;
}

.pricing-plans ul>li.pro .plans-name-head {
  background: #333;
  color: #fff
}

.pricing-plans ul>li.pro .plans-name-head span small {
  color: #fff
}

.pricing-plans h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 30px;
  margin: 10px 0 62px 0;
  text-align: center;
  color: #0aac6d;
}

.plans-pricing-app-components {
  width: 100%;
  float: left;
}

.plans-pricing-app-components .tab-menu {
  width: 100%;
  float: left;
  border-bottom: 1px solid #f1f1f1;
  text-align: center
}

.plans-pricing-app-components .tab-menu ul {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.plans-pricing-app-components .tab-menu ul li {
  display: inline-block;
}

.plans-pricing-app-components .tab-menu ul li a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  display: inline-block;
  padding: 10px 20px;
  color: #111;
  border: 1px solid #f2f2f2;
  background: #fff;
  margin-bottom: -1px;
}

.plans-pricing-app-components .tab-menu ul li a.active-a {
  color: #fff;
  background: #0aac6d;
}

.plans-pricing-app-components .tab {
  display: none;
}

.plans-pricing-app-components .tab.tab-active {
  display: block;
}

.api-msg h3 {
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
}

.api-msg p {
  font-size: 15px;
}

.api-msg .se {
  font-size: 15px;
  margin-bottom: 12px;
}

.api-msg .pr-app {
  font-family: "Nunito Sans", sans-serif;
  font-size: 29px;
  color: #000000;
}

.seperator {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 12px;
  margin-bottom: 23px;
}

.pricing-plans.api ul>li.pro {
  float: none;
  width: 470px;
  transform: scale(1);
  display: inline-block;
  text-align: left;
}

.pricing-plans.api ul {
  text-align: center
}

.desc-note {
  width: 100%;
  float: left;
  text-align: center;
  margin: 65px 0 0 0;
  font-size: 17px;
  color: #929191;
}

.desc-note span {
  color: #ff0101;
  font-size: 25px;
  line-height: 13px;
  display: inline-block;
}

.cunnekt-faq {
  width: 100%;
  float: left;
}

.cunnekt-faq h2 {
  text-align: center;
  font-size: 30px;
  margin: 36px 0 47px 0;
  float: left;
  width: 100%;
  color: #000;
}

.more-btn a.m-price {
  background: #000;
  color: #fff;
  border: 1px solid #111;
  padding: 12px 40px 11px;
  margin-left: 11px;
}

.more-btn a.m-price:hover {
  background: #01613c;
  border: 1px solid #01613c;
}

.cunnekt-faq .faq-qust {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.cunnekt-faq .faq-qust li h3 {
  color: #111;
  font-size: 19px;
  font-family: "Nunito Sans", sans-serif;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #d8d7d7;
  padding: 6px 20px 15px 29px;
  margin: 0;
}

.cunnekt-faq .faq-qust li h3:before {
  background: url(../images/p-plus.png) no-repeat 0px -1px;
  width: 18px;
  height: 15px;
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
}

.cunnekt-faq .faq-qust li h3.OP:before {
  background: url(../images/p-plus.png) no-repeat 0px -19px;
}

.cunnekt-faq .faq-qust li {
  background: none;
  padding: 0;
  border-bottom: 0;
}

.ans-bx {
  display: none;
  font-size: 17px;
  padding: 9px 21px 5px;
  background: #f2f2f2;
  border: 1px solid #d8d7d7;
  border-top: 0;
}

.ans-bx.ans {
  display: block;
}

.ans-bx a {
  font-family: "Nunito Sans", sans-serif;
  color: #383838;
  text-decoration: underline;
}

.ans-bx h4 {
  font-family: "Nunito Sans", sans-serif;
}

.ans-bx ul {
  padding-left: 20px;
}

.ans-bx ul li {
  margin: 5px 0px;
}

.ft-logo1{
  margin-top: 20px;
}

.service-plans-list {
  width: 100%;
  float: left;
  background: #fbefd6;
  padding: 19px 12px 5px;
}

.service_category_name {
  width: 100%;
  float: left;
  margin: 2px 0px;
}

.service_category_name label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  color: #111
}

.service_category_name label span {
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
}

.service_plan_name {
  float: left;
}

.service_category_name label input[type="checkbox"] {
  float: left;
  margin: 2px 6px 0 0
}

.tt_amount {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 14px;
  background: #ffffff;
  color: #c30505;
  text-transform: uppercase;
  padding: 17px 10px 10px;
  font-family: "Nunito Sans", sans-serif;
  margin: 8px 0 0 0;
}

.rpt_ {
  border-top: 4px solid #f0f0f0;
  margin-top: 43px;
  border-bottom: 4px solid #f0f0f0;
}


.tt_amount span {
  color: #111;
  display: block;
}

.tt_amount span small {
  font-size: 33px;
}

#service_plans_app h4 {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
  margin: 6px 0 14px 0;
}

.select-channels label {
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
}

.Mn {
  font-size: 15px;
  color: red;
  font-style: italic;
}

.form-row-model.M0 {
  margin: 0px;
}

.pricing-app-components {
  width: 100%;
  float: left;
  padding: 87px 0 40px 0;
  background: #eaeaea;
}

.composite_paging ul {
  margin: 0 0 0px 0;
  padding: 0px;
  text-align: center;
}

.composite_paging ul li {
  display: inline-block;
  position: relative;
  height: 44px;
  font-family: "Nunito Sans", sans-serif;
  line-height: 44px;
  background: #fff;
  cursor: not-allowed;
  max-width: 92%;
  margin: 0 24px 2px 0;
  color: #a5a5a5;
  padding: 0 0px;
  width: 30%;
}

.composite_paging ul li:nth-child(1):before {
  border-color: #fff;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-width: 22px;
  margin-top: -22px;
}

.composite_paging ul li a {
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

.composite_paging ul li .element_inner {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%
}

.composite_paging ul li:before,
.composite_paging ul li:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none
}

.composite_paging ul li:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #fff;
  border-width: 22px;
  margin-top: -22px
}

.composite_paging ul li:before {
  left: -22px;
  top: 50%
}

.composite_paging ul li:before {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
  border-bottom-color: #fff;

  border-width: 22px;
  margin-top: -22px
}

.composite_paging ul li.pagination_element_current {
  background: #01613c;
  color: #fff;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
}

.composite_paging ul li.pagination_element_current:after {
  border-left-color: #01613c
}

.composite_paging ul li.pagination_element_current:before {
  border-top-color: #01613c;
  border-bottom-color: #01613c
}

.composite_paging ul li:first-child:before {
  display: none
}

.composite_paging .element_index {
  color: #aaa;
  font-weight: bold
}

.composite_paging .element_index:after,
.composite_summary .step_index:after,
.component_title .step_index:after {
  content: '.'
}

.channel-type-filter input[type="checkbox"]+label {
  background-color: #fff;
  border: 1px solid #dadada;
  font-family: "Nunito Sans", sans-serif;
  color: #111 !important;
  padding: 10px;
  font-weight: normal;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 17px;
}

.channel-type-filter input[type="checkbox"] {
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 14px;
  height: 40px;
  width: 100%;
}

.channel-type-filter input[type="checkbox"] {
  display: none;
}

.channel-type-filter input[type="checkbox"]:checked+label {
  background-color: #12bf7c;
  border: 1px solid #12bf7c;
  color: #FFF !important;
}

.channel-type-filter input[type="checkbox"]:checked+label:before {
  background: url(../images/tick-icon-mark.png) no-repeat;
  width: 30px;
  height: 28px;
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.channel-type-filter input[type="checkbox"]+label:before {
  background: url(../images/tick-icon-mark.png) 0px -50px no-repeat;
  width: 30px;
  height: 28px;
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.sticky_btn {
  position: fixed;
  right: 10px;
  top: 40%;
  z-index: 12;
  background: #e1e0e0;
  width: 64px;
  padding: 8px 12px;
  border-radius: 30px;
}

.sticky_btn .btn4 {
  text-align: center;
  background: #e12b34;
  position: relative;
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 23px;
  margin: 3px 0;
}

.sticky_btn a.btn4:hover {
  background: #219f11;
}

.sticky_btn a.btn4 {
  display: inline-block;
  text-align: center;
  background: #29a71a;
  font-size: 28px;
}

.call_back_btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn4 .bp-tooltip {
  position: absolute;
  right: 51px;
  width: 141px;
  line-height: 14px;
  font-size: 13px;
  text-align: center;
  background: #333;
  padding: 6px 15px 4px;
  z-index: 99;
  border-radius: 4px;
  transform-origin: 50% 0;
  transform: scaleY(0) translateZ(0);
  opacity: 0;
  transition: transform .3s, opacity .3s;
  top: 9px;
  display: block;
}

.btn4:hover .bp-tooltip {
  opacity: 1;
  transform: scaleY(1) translateZ(0);
}

.request-call-back {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 152;
}

.request-call-fields {
  position: absolute;
  bottom: 0;
  z-index: 23;
  background: #fff4f4;
  transform: translateY(329px);
  width: 380px;
  right: 0;
  transition: .4s;
  padding: 20px;
  box-shadow: 0 0 12px 0 #000;
  border-radius: 6px 6px 0 0;
}

.request-call-fields.op {
  transform: translateY(0);
}

.request-call-fields h4 {
  font-size: 22px;
  color: #e12b34;
  font-family: "Nunito Sans", sans-serif;
}

.request-call-fields p {
  font-size: 14px;
  line-height: 19px;
}

.request-call-fields #countrycode {
  width: 93px;
  padding: 3px;
  font-size: 13px;
  height: 40px;
  border: 1px solid #ccc;
  float: left;
  border-right: 0;
}

.request-call-fields .textboxS3 {
  width: 225px;
  height: 40px;
  border: 1px solid #ccc;
  font-size: 13px;
  padding: 2px 4px 2px 12px;
  color: #111;
}

.sbt-btn11 {
  width: 100%;
  background: #e12b34;
  border: 1px solid #ccc;
  padding: 10px;
  font-family: "Nunito Sans",
    sans-serif;
  text-transform: uppercase;
  border-radius: 5px;
  color: #fff;
  margin-top: 12px;
  font-size: 17px;
}



.channel-type-filter input[type="radio"]+label {
  background-color: #fff;
  border: 1px solid #dadada;
  font-family: "Nunito Sans", sans-serif;
  color: #111 !important;
  padding: 10px;
  font-weight: normal;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 17px;
}

.channel-type-filter input[type="radio"] {
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 14px;
  height: 40px;
  width: 100%;
}

.channel-type-filter input[type="radio"] {
  display: none;
}

.channel-type-filter input[type="radio"]:checked+label {
  background-color: #12bf7c;
  border: 1px solid #12bf7c;
  color: #FFF !important;
}

.channel-type-filter input[type="radio"]:checked+label:before {
  background: url(../images/tick-icon-mark.png) no-repeat;
  width: 30px;
  height: 28px;
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.channel-type-filter input[type="radio"]+label:before {
  background: url(../images/tick-icon-mark.png) 0px -50px no-repeat;
  width: 30px;
  height: 28px;
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.channel-type-filter ul {
  width: 100%;
  float: left;
  text-align: center;
  list-style: none;
}

.channel-type-filter ul li {
  width: 100%;
  float: left;
}

.pricing-app-wrapper {
  width: 100%;
  float: left;
  padding: 0px 100px;
}

.channel-type-filter {
  margin: 60px 87px 0 0px;
}

.app-button-filter {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}

.button_app {
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 33px;
  border: 2px solid #01613c;
  color: #01613c;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
}

.app-pricing-model {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 532px;
  background: #fff;
  padding: 20px 34px;
  border-radius: 7px;
}

.appselect_channel {
  transition: ease all 0.6s;
  position: absolute;
  width: 100%
}

.appselect_channel.std1 {
  transform: translateX(0px);
}

.appselect_channel.std2 {
  transform: translateX(200%);
}

.appselect_channel.std3 {
  transform: translateX(300%);
}

.appselect_channel.std1.M0 {
  transform: translateX(-110%);
}

.appselect_channel.std2.M1,
.appselect_channel.std3.M0 {
  transform: translateX(0%);
}

.appselect_channel.std2.M1.M3 {
  transform: translateX(-110%);
}

.app-button-filter.st .button_app.bk {
  border-radius: 30px 0 0px 30px;
}

.app-button-filter.st .button_app.nk {
  border-radius: 0px 30px 30px 0px;
  border-left: 0px;
  margin-left: -4px;
}

.plans-app {
  width: 100%;
  float: left;
  margin: 0 0 64px 0;
  padding: 0 65px 0 0
}

.plans-app .channel-type-filter {
  margin: 5px 0 0 0;
  width: 100%;
  float: left;
  padding: 0px 6px;
}

.plans-app .pricing-plans ul>li>ol {
  width: 100%;
  float: left;
  margin: 18px 0 16px 0px;
  min-height: 127px;
  padding: 0 14px;
  list-style: disc;
  list-style: none;
}

.plans-app .pricing-plans ul>li>ol li {
  padding: 5px 0px;
  text-transform: uppercase;
  font-size: 13px;
  padding-left: 17px;
  margin: 6px 0px;
  color: #111;
}

.plans-app .pricing-plans ul>li .plans-name-head {
  background: #fbefd6;
}

.plans-app .pricing-plans ul>li {
  background: #ffffff;
  font-family: "Nunito Sans", sans-serif;
}

.select-communication-channel {
  width: 100%;
  margin-bottom: 30px;
  float: left;
  text-align: center;
}

.pricing-app-components.P0 {
  padding-top: 20px;
  padding-bottom: 35px;
  background: #fff;
}

.pricing-app-components.P0 h2 {
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  color: #04b36f;
  padding-bottom: 12px;
  font-size: 37px;
}

.select-communication-channel label {
  font-family: "Nunito Sans", sans-serif;
  cursor: pointer;
  color: #000;
  font-weight: normal;
  font-size: 17px;
  margin: 0 14px 0 0;
}

.active_user {
  width: 100%;
  float: left;
  margin: 0px 0 0 0;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  color: #000;
}

.active_user>small {
  color: #12bf7c !important;
  font-size: 16px;
}

.pricing-plans ul>li.pro .active_user {
  color: #fff
}

.social-s {
  margin-bottom: 15px;
}

.social-s span {
  margin-right: 6px;
  color: #01613c;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
}

.social-app-bx {
  display: inline-block;
  background: #fbefd6;
  padding: 4px 23px;
  border-radius: 30px;
  box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 55%);
}

.slider_area2.priceB {
  padding: 84px 0 0px 0;
  background: #12bf7c;
  width: 100%;
  float: left;
}

.selct-bx {
  display: inline-block;
  background: #fff;
  padding: 15px 50px;
  border-radius: 30px;
  box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 14%);
}

.app-btns {
  width: 100%;
  float: left;
  text-align: center;
  margin: 37px 0 0 0;
}

.app-btns a {
  color: #000000;
  border: 2px solid #2b2b2b;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 30px;
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 2px;
}

.app-btns a.ct,
.app-btns a:hover {
  background: #2b2b2b;
  color: #fff
}

.pricenote {
  width: 100%;
  float: left;
  margin: 59px 0 0 0;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 19px 0px 10px 0;
  color: #000;
  box-shadow: 0px 0px 3px 0 rgb(0 0 0 / 42%);
  font-size: 14px;
  text-align: left;
  padding-left: 252px;
}

.pricenote span {
  font-family: "Nunito Sans", sans-serif;
}

.callmeback {
  position: fixed;
  width: 39px;
  right: 0px;
  top: 30%;
  z-index: 898;
}

.callmeback button {
  background: none;
  border: 0px;
}

.pricing_btn_app {
  display: none;
}

.page-id-326 .pricing_btn_app {
  display: block;
}

.banner-content2 h1 {
  font-size: 36px;
  color: #1e1e1e;
  font-family: "Nunito Sans", sans-serif;
  margin: 0 0 20px 0;
}

.banner-content2 h1 span {
  color: #0aac6d;
}

.p_para {
  color: #646464;
  padding: 15px 43px 10px;
}

.feature_wrap.drv5 h3 span {
  color: #12bf7c;
}

.slider_area._pages._border {
  border-bottom: 8px solid #f2f7f2;
  margin-bottom: 30px;
  padding-bottom: 34px;
}

.banner-content2 p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #5f5e5e;
  line-height: 30px;
}

.banner-content2 ul {
  padding: 10px 0 3px 21px;
}

.banner-content2 ul li {
  margin: 7px 0px;
  color: #5f5e5e;
}

.feature_wrap {
  display: flex;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.wrap_head h2 {
  font-size: 40px;
  margin-top: 0;
}

.h3_head h3 {
  font-size: 38px;
  margin-bottom: 0;
  padding: 13px 0px 32px;
  border-radius: 30px;
  border-top: 1px solid #ccc;
  color: #272727;
  margin-top: 40px
}

.wrap_head h2 span {
  color: #12bf7c;
}

.mkdbx {
  margin: 10px 0px;
}

.wrap_head {
  margin-bottom: 26px;
}

.mkdbx figure {
  color: #47cd99;
  font-size: 38px;
  margin-bottom: 11px;
}

.mkdbx h3 {
  color: #2e2e2e;
  font-family: "Nunito Sans", sans-serif;
  font-size: 21px;
  margin: 0 0 8px 0;
}

.section_bxd {
  display: flex;
  width: 100%;
  background: #f5f7f4;
  padding: 30px 0px;
  margin: 30px 0px;
}

.section_bxd h2 span,
.h2_heading span {
  color: #12bf7c;
}

.section_bxd h2 {
  margin: 8px 0 20px 0;
  font-size: 32px;
  ;
}

.list4 {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0px;
}

.list4 li {
  position: relative;
  margin: 13px 0px;
  font-family: "Nunito Sans", sans-serif;
  padding-left: 20px;
}

.list4 li .fa {
  color: #12bf7c;
  padding-right: 20px;
}

.feature_wrap.bg {
  background: #f3f7f3;
  padding: 30px 0px;
}

.section_bx2.po {
  padding: 0;
}

.ttd3 {
  display: none;
}

.section_wrap_data {
  width: 100%;
  float: left;
  margin: 0 0 30px 0;
}

.mkdbx_p {
  width: 100%;
  float: left;
  margin: 22px 0px;
}

.mkdbx_p figure {
  width: 40px;
  float: left;
}

.mkdbx_p .bx4 {
  float: none;
  margin-left: 55px;
  width: auto;
}

.mkdbx_p .bx4 h3 {
  font-size: 22px;
  margin: 0 0 6px 0;
}

.mkdbx_p .bx4 h3 span {
  color: #12bf7c;
}

.mkdbx_p .bx4 p {
  color: #807979
}

.mb_40 {
  margin-bottom: 40px;
}

.tablistinfo {
  padding: 28px 0 20px 0;
  border-bottom: 5px solid #f2f7f1;
  float: left;
  width: 100%;
}

.tablistinfo.border-top {
  border-top: 1px solid #e5e5e5;
  margin-top: 25px;
}

.section_head {
  padding: 0 50px 30px;
  text-align: center;
}

.section_head h2 {
  margin: 6px 0 0px 0;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
}

.section_head p {
  margin-top: 12px;
}

.t_list .nav-tabs>li.active>a,
.t_list .nav-tabs>li.active>a:focus,
.t_list .nav-tabs>li.active>a:hover {
  color: #555;
  cursor: default;
  background-color: #f2f7f2;
  border: 1px solid #e5f5e5;
  border-bottom-color: transparent;
  border-radius: 4px 4px 0 0;
}

.t_list .nav-tabs {
  border-bottom: 5px solid #f2f7f2;
}

.t_list .nav-tabs>li>a {
  margin-right: 0;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  color: #424040;
  font-size: 17px;
  font-family: "Nunito Sans", sans-serif;
}

.t_list .nav>li>a:focus,
.nav>li>a:hover {
  text-decoration: none;
  background-color: #f2f7f2;
}

.t_list .nav-tabs>li>a:hover {
  border-color: #f2f7f2 #f2f7f2 #f2f7f2;
}

.list_data_info {
  padding: 13px 0;
}

.list_data_info h3 {
  font-size: 26px;
}

.list_data_info h3 span {
  color: #12bf7c;
}

.button_ {
  background: #dcf5dc;
  color: #111;
  padding: 14px 38px;
  display: inline-block;
  font-family: "Nunito Sans",
    sans-serif;
  border-radius: 7px;
  margin-top: 12px;
}

.button_:hover {
  background: #12bf7c;
  color: #000;
}

.wrapbx {
  width: 100%;
  float: left;
  margin: 75px 0 0 0;
}

.serchinfo {
  width: 100%;
  float: left;
  background: #f2f7f2;
  padding: 20px 0px 35px;
}

.serchinfo h1 {
  font-family: "Nunito Sans", sans-serif;
  color: #111;
  font-size: 36px;
}

.bx_center {
  max-width: 850px;
  margin: 0 auto;
}

.serch_items {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  margin-top: 25px;
}

.serch_items input[type="text"] {
  width: 100%;
  border-radius: 30px;
  height: 50px;
  line-height: 1.4;
  border: 1px solid #ccc;
  padding: 10px 36px 10px 25px;
}

.serch_items button {
  border: 0;
  background: no-repeat;
  position: absolute;
  right: 18px;
  top: 13px;
}

._rd .mkdbx {
  border: 1px solid #1a9d6b;
  padding: 31px 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.faq_section_app {
  display: flex;
  padding: 30px 0px;
  border-top: 2px solid #eaeaea;
}

.faq_section_app {
  display: flex;
  padding: 30px 0px;
}

.about-bx-info .m5 ul li {
  margin: 0;
  padding: 0;
}

.t_list.m5 {
  padding-top: 20px;
  margin-top: 23px;
}

.about-bx-info .m5 ul {
  padding: 0;
  margin: 0;
}

.t_list.m5 .nav-tabs>li.active>a,
.t_list.m5 .nav-tabs>li.active>a:focus,
.t_list.m5 .nav-tabs>li.active>a:hover {
  color: #fffbfb;
  background-color: #12bf7c;
  border: 1px solid #12bf7c;
}

.head_section {
  width: 100%;
  float: left;
  text-align: center;
  padding: 35px 0px;
}

.app_bxd h1 {
  font-size: 36px;
  color: #1e1e1e;
  font-family: "Nunito Sans", sans-serif;
  margin: 0 0 20px 0;
}

.app_bxd {
  max-width: 850px;
  margin: 0 auto;
}

.nt {
  border: 1px solid #eaeceb;
  padding: 14px 14px;
  font-style: italic;
  color: #709082;
  border-radius: 5px;
  margin: 35px 0;
}

.app_bxd p a {
  font-family: "Nunito Sans", sans-serif;
  color: #12bf7c;
}

.app_bxd p a:hover {
  color: #000;
}

.dt_app {
  width: 100%;
  float: left;
  background: #f2f7f2;
  text-align: center;
  padding: 30px 0px;
}

.mn_app {
  max-width: 590px;
  margin: 0 auto;
}

.mn_app h2 {
  margin: 0 0 17px 0;
}

.items_d2 {
  display: flex;
  min-height: 240px;
  justify-content: center;
  align-items: center;
}

.items_d2.LT {
  padding-left: 67px;
}

.items_d2.RT {
  padding-right: 67px;
}

.stp_ {
  color: #12bf7c;
  font-family: "Nunito Sans", sans-serif;
}

.items_d2 h3 {
  font-size: 23px;
  width: 74%;
  margin-top: 10px;
}

.items_d2 h3 a {
  color: #12bf7c;
}

.nt__ {
  font-style: italic;
  color: #709082;
}

.pr-5px {
  padding-right: 5px;
}

.yts {
  background: #eff4f0;
  padding: 30px 10px;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  border-radius: 6px;
}

.dt_app ul li {
  margin: 11px 0;
}

.app_section {
  width: 100%;
  padding: 50px 0px;
}

.app_section.even {
  background: #fff;
}

.items_bx {
  background: #fff;
  padding: 20px;
  border-radius: 11px;
  box-shadow: 0 0 4px 0px rgb(0 0 0 / 14%);
  margin: 10px 0px;
  text-align: center;
}

.items_bx svg {
  fill: #e12b34;
}

.items_bx h3 {
  margin: 8px 0 13px 0;
  font-size: 22px;
}

.items_cx {
  background: none;
  padding: 20px;
  margin: 10px 0px;
  text-align: left;
}

.items_cx svg {
  fill: #e12b34;
  width: 80px;
  height: 80px;
  box-shadow: 0px 40px 40px 0px rgba(90, 163, 213, 0.15);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.items_cx h3 {
  margin: 8px 0 13px 0;
  font-size: 22px;
}

.about-bx-info ul,
.about-bx-info ol {
  padding-left: 20px;
}

.about-bx-info ul li,
.about-bx-info ol li {
  margin: 10px 0px;
}

.v_more a {
  background: #fff;
  color: #12bf7c;
  border: 1px solid #12bf7c;
  padding: 4px 25px 4px;
  border-radius: 30px;
  font-family: "Nunito Sans", sans-serif;
  display: inline-block;
  margin-top: 20px;
}

.v_more a:hover {
  background: #12bf7c;
  color: #fff;
}

.appcontent {
  width: 100%;
  float: left;
}

.wts_page h3 {
  color: #0e7e54;
  font-size: 18px;
  margin-top: 30px;
}

.wts_page h2 {
  color: #111;
  font-size: 24px;
}

.wts_page p,
.about-bx-info .wts_page ul li,
.about-bx-info .wts_page ol li {
  font-size: 16px;
  color: #111;
}

.wts_page.apiinfo p {
  margin: 5px 0
}

.wts_page.apiinfo table p {
  margin: 0px 0
}

.ap1 {
  background: #ebfff7;
  padding: 10px 20px;
  margin: 20px 0px;
  border: 1px solid #e2fff4;
}

.feature_img {
  border: 1px solid #12bf7c;
}

.exp {
  margin: 10px 0px;
}

.info5 h3 {
  font-size: 18px;
}

.mdx_bx_indent {
  border-left: 1px solid #d9d9d9;
  padding-left: 20px;
  ;
}

.mdx_bx {
  background: #f9f2de;
  margin: 30px 0px;
  padding: 20px;
  border-radius: 4px;
}

.info5 .items_d2.ap {
  min-height: 429px;
}

.info5 .items_d2 {
  min-height: 216px;
  margin: 20px 0px;
}

.sdbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sdbar ul li {
  margin: 0;
}

.sdbar ul li a {
  color: #111;
  display: block;
  padding: 9px 0px;
  font-size: 15px;
  border-top: 1px solid #efefef;
}

.sdbar ul li:first-child a {
  border: 0;
}

.sdbar ul li a:hover {
  color: #1ec282
}

.section_ps {
  width: 100%;
  float: left;
  padding: 0px 0px;
}

.wts_page .section_ps h4 {
  color: #0c0c0c;
  font-size: 25px;
  margin-top: 78px;
  margin-bottom: 20px;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  line-height: 35px;
}

.ttrwo {
  box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 25%);
  margin: 15px 0 32px 0px;
  width: 100%;
  float: left;
}

.ttrwo h5 .fa {
  padding-right: 10px;
}

.ttrwo h5 {
  font-size: 17px;
  background: #f7f7f7;
  padding: 13px 12px;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  margin: 0px 0px 0;
  display: inline-flex;
  width: 100%;
  border-radius: 5px;
}

.ttbx2 {
  padding: 11px 20px;
  font-size: 15px;
  line-height: 27px;
  display: none;
  width: 100%;
  float: left;
}

.wts_page.apiinfo {
  width: 100%;
  float: left;
  border-left: 1px solid #e5e5e5;
  padding-left: 30px;
}

._m2 .mkdbx figure img {
  width: 50px;
  margin-bottom: 20px;
  height: 100%;
}

._m2 .mkdbx {
  background: #f3fffa;
}

._m2 .mkdbx p,
._m2 .mkdbx h3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.getstarted.mt4 {
  padding: 30px 0px
}

.getstarted.mt4 ._rd .mkdbx {
  background: #fff;
}

.prt .ttrwo {
  margin-bottom: 0;
}

.sdbar.stk {
  position: fixed;
  width: 250px;
  top: 93px;
}

.magin_top_bottom {
  margin-top: 25px;
  margin-bottom: 25px;
}

.feature_wrap.blog {
  background: #f7f7f7;
}

.feature_wrap.blog ._m2 .mkdbx {
  background: #ffffff;
  padding: 22px;
  text-align: left;
  box-shadow: 0px 0px 5px 0px #dfdfdf;
  border: 0px;
}

.feature_wrap.blog .mkdbx figure {
  float: left;
  width: 64px;
}

.feature_wrap.blog .cd__ {
  width: auto;
  float: none;
  margin-left: 72px;
}

.feature_wrap.blog .cd__ p {
  margin-bottom: 0;
}

.mkdbx h3 strong {
  color: #12bf7c;
}

.tttd table {
  font-size: 15px;
}

.tttd table td {
  padding: 5px 5px;
}

.tttd {
  margin-bottom: 20px;
}

.appq .sdbar {
  float: left;
  width: 250px;
  height: 100%;
}

.appq .cunnekt-faq {
  margin-top: 21px;
}

.appq .sdbar ul li {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  padding: 6px 0px;
  border: 0;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  color: #2c2c2c;
}

.appq .sdbar ul li.active {
  color: #13bf7d;
}

.faq_ans {
  display: none;
  width: 100%;
  float: left;
  border-left: 1px solid #dfdfdf;
  padding-left: 25px;
}

.faq_ans.activeLnk {
  display: block;
}

.faq_search_info {
  background: #12bf7c;
  padding: 24px 0 41px 0;
}

.faq_search_info h2 {
  margin-bottom: 30px;
  color: #fff;
}

.search_faq {
  width: 620px;
  height: 50px;
  border: 1px solid #ccc;
  padding: 8px 21px;
  border-radius: 30px;
}

.faqwrap h4 {
  color: #12bf7c;
  font-family: "Nunito Sans", sans-serif;
  font-size: 21px;
  padding: 15px 0px 10px;
  display: table;
}

.mb_ {
  display: none !important;
}

.cse {
  overflow: hidden;
  position: relative;
}

.d-none-lg {
  display: none; 
}

.owl-carousel.owl-1 .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-carousel.owl-1 .owl-nav .owl-prev {
  left: -10px;
  position: absolute;
  /* Adjust the value as needed */
}

.owl-carousel.owl-1 .owl-nav .owl-next {
  right: -10px;
  position: absolute;
  /* Adjust the value as needed */
}

.owl-carousel.owl-1 .owl-dots {
  text-align: center;
  margin-top: 20px;
  /* Adjust the value as needed */
}

.owl-carousel.owl-1 .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  /* Change this to your preferred color */
  border-radius: 50%;
}

.owl-carousel.owl-1 .owl-dot.active {
  background: #e12b34;
  /* Change this to your preferred active color */
}

#callback-form{
  height: 100%;
  display: flex;
}

@media screen and (max-width:991px) {

  .mt-50-md {
    margin-top: 50px;
  }

  .section_1.p30 {
    padding: 30px 0px;
  }

  .phone-num a.getademo {
    padding: 10px 8px 8px;
    text-transform: none;
    font-size: 13px;
  }

  .phone-num a {
    margin-left: 3px;
  }

  .logo {
    margin-top: 0px;
  }

  .buy-now {
    margin-left: 25px;
    margin-top: 9px;
  }

  .navigation{
    display: block;
  }

  .navigation ul {
    position: absolute;
    left: 0;
    height: 220px;
    display: none;
    top: 57px;
    width: 100%;
    transition: ease all 0.4s;
    text-align: center;
    float: left;
    background: #12bf7c;
  }

  .navigation ul li,
  .header-info.sticky .navigation ul li {
    margin: 0px;
    padding: 5px 0;
    width: 100%
  }

  .logo img {
    width: 117px;
  }

  .navigation {
    width: auto;
    float: right;
    /* margin: 5px 0 0 0; */
  }

  .responsive-menu {
    float: right;
    background: none;
    color: #fff;
    border: 0px;
    font-size: 25px;
    margin: 0px 0 0 14px;
    display: block;
  }

  .responsive-menu:focus,
  .responsive-menu:active {
    background: none;
    outline: none;
  }

  .close-menu {
    background: no-repeat;
    border: 0px;
    color: #fff;
    font-size: 30px;
    position: absolute;
    left: -23px;
  }

  .navigation ul li a,
  .header-info.sticky .navigation ul li a {
    font-size: 16px;
  }

  .banner-content {
    padding: 0;
  }

  .banner-content h1 {
    font-size: 30px;
  }

  .s-cunnekt a {
    font-size: 14px;
  }

  .header-info,
  .header-info.sticky {
    padding: 11px 0 11px 0px;
    background: #fff;
  }

  .section-head-bx {
    padding: 0px 0px 40px;
  }

  .section-head-bx h2 {
    font-size: 25px;
  }

  .pricing-plans ul>li {
    width: 50%;
  }

  .pricing-plans ul>li.pro {
    transform: scaleY(1);
  }

  .callmeback {
    display: none
  }

  .footer-info {
    padding: 26px 0px ;
  }
}


@media screen and (max-width:767px) {

  .d-block-sm {
    display: block;
  }

  .fs-20-sm {
    font-size: 20px;
  }

  .d-none-sm {
    display: none;
  }

    .hm-slide-bn2{
      padding: 0px;
    }

  .sticky_btn {
    top: auto;
    bottom: 30px;
  }

  .mb_ {
    display: inline-block !important;
  }

  .dx_ {
    display: none !important;
  }

  .csd {
    gap: 24px;
    flex-wrap: wrap;
  }

  .csd figure {
    width: 19%;
  }

  .items_d2.LT,
  .items_d2.RT {
    padding: 0;
    display: block;
  }

  .app_bxd h1 {
    font-size: 28px;
  }

  .mn_app h2 {
    font-size: 25px;
  }

  .items_d2 h3 {
    font-size: 20px;
    width: 100%;
    margin-top: 10px;
  }

  .section_head {
    padding: 0 0px 30px;
  }

  .ttd3 {
    display: inline-block;
    margin-top: 7px;
    margin-right: 10px;
  }

  .ttd3 a {
    color: #12bf7c;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
  }

  .ft-logo1 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-container h3 {
    font-size: 24px;
  }

  .about-head {
    padding: 19px 0px 0;
  }

  .banner-content h1 span {
    font-family: "Nunito Sans", sans-serif;
    background: none;
    color: #e12b34;
    display: inline-block;
    padding: 0;
    /* margin-top: 12px; */
  }

  .slider_area.hm{
    padding-bottom: 10px;
    padding-top: 10px;
  }

  h2 {
    font-size: 25px;
  }

  .csd figure {
    width: 30%;
  }

  .img-style-1 {
    width: 30%;
  }

  .s-cunnekt a {
    padding: 12px 10px 11px;
  }

  .inf_bx figure {
    display: none;
  }

  .inf_bx {
    padding: 0px 0px;
    display: inline-flex;
    padding: 20px 0px;
  }

  .inf_bx h3 {
    font-size: 21px;
    line-height: 32px;
    margin-left: 0;
    text-align: center;
  }

  .section_bx2 h2,
  .h2_heading {
    /* margin: 19px 0 0px 0; */
    font-size: 26px;
  }

  .section_bx2 figure {
    margin-bottom: 30px;
  }

  /* .section_bx2 .row {
    margin-top: 13px;
    margin-bottom: 20px;
  } */

  .slider_area._pages {
    padding: 35px 0 0px 0;
    margin-bottom: -1px;
  }

  .feature_list li {
    width: 100%;
    margin: 7px 0;
  }

  .hwd li {
    width: 100%;
    background: #f2f7f2;
    padding: 30px 15px;
    margin: 10px 0;
    float: left;
  }

  .hwd {
    width: 100%;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 26px 0 20px 0;
    display: block;
    text-align: center;
  }

  .get_demo {
    background: #14b278 url(../images/bg3.jpg) no-repeat 0px 0px;
  }

  .gets_link {
    position: absolute;
    width: 190px;
    right: 0;
    top: 55px;
  }

  .gets_link a {
    padding: 10px 14px 8px;
    font-size: 12px;
  }

  .mean-container .mean-nav ul li.ttd {
    display: none;
  }

  .banner-content2 h1 {
    font-size: 27px;
    margin: 0 0 20px 0;
  }

  .wrap_head h2 {
    font-size: 28px;
  }

  .section_bx2 {
    padding: 30px 0px;
  }

  .section_bx3 {
    padding: 30px 0px;
  }

  .tcld {
    width: 850px;
  }

  .app-img {
    margin: 20px 0px;
    width: 100%;
  }

  .call-back-btn {
    height: 44px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
  }

  ._pages .banner-content h1 {
    font-size: 26px;
    margin: 20px 0 7px 0;
  }

  ._pages .banner-content h1 span {
    display: inline-block;
  }

  ._pages .banner-content p {
    font-size: 16px;
    margin: 20px 0;
  }

  .plans-pricing-app-components .tab-menu ul li a {
    font-size: 13px;
    padding: 10px 10px;
  }

  .plans-pricing-app-components {
    margin-top: 39px;
  }

  .discover-bx h2 {
    font-size: 16px;
  }

  .c-phone {
    border: 1px solid #C8C4B8;
    width: 100%;
  }

  .buy-now a.free-trial-link {
    margin-left: 1px;
  }

  .buy-now a {
    font-size: 12px;
    padding: 7px 9px 6px;
  }

  .process-bx ul li {
    width: 100%;
  }

  .discover-bx ul li {
    float: left;
    width: 100%;
    padding: 15px 10px;
    border-left: 0;
  }

  .enterprize-bx:before {
    display: none;
  }

  .ft-bx1 {
    float: left;
    width: 100%;
    border-right: 0;
    padding: 14px 28px 14px 0;
  }

  .ft-links {
    width: 100%;
    float: left;
    margin: 0;
  }

  .ft-links li {
    display: inline-block;
    margin: 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #089a62;
    padding: 7px;
  }

  .ft-bx1 {
    float: left;
    width: 100%;
    border-right: 0;
    padding: 14px 8px 14px 0;
    text-align: center;
  }

  .ft-bx2 {
    float: right;
    width: 100%;
    border-left: 0;
    padding: 14px 0px 14px 0px;
    text-align: center;
  }

  .ft-logo,
  .solution-bx-info:before {
    display: none
  }

  .section-bx._p2 .ptext {
    padding: 0 0px;
  }

  ._pages .banner-content h2 {
    font-size: 26px;
  }

  ._c-bg {
    border-bottom: 0;
    background-size: cover;
    height: auto;
    position: relative;
    padding: 0;
    float: left;
    width: 100%;
  }

  .getademo-model h3 {
    font-size: 18px;
    padding: 24px;
  }

  .getademo-model .modal-body {
    padding: 4px 16px;
  }

  .pricing-plans ul>li {
    width: 100%;
  }

  .pricing-plans h2 {
    margin: 0px 0 28px 0;
  }

  .pricing-app-components.P0 h2 {
    font-size: 25px;
    margin-top: 29px;
  }

  .selct-bx {
    padding: 5px 10px;
  }

  .select-communication-channel label {
    font-size: 14px;
    margin: 5px 0 5px 0;
    width: 50%;
    float: left;
    text-align: left;
    padding: 0px 21px;
  }

  .select-communication-channel {
    margin-bottom: 0px
  }

  .pricing-plans {
    margin: 11px 0 0 0;
  }

  .pricing-app-components.P0 .pricing-plans ul>li {
    width: 50%;
  }

  .active_user {
    margin: 5px 0 0 0;
    font-size: 12px;
    line-height: 15px;
  }

  .pricing-plans ul>li .plans-name-head span {
    font-size: 16px;
  }

  .pricing-plans ul>li .plans-name-head span small {
    font-size: 11px;
  }

  .pricing-plans ul>li .plans-name-head {
    padding: 12px 9px;
    font-size: 12px;
  }

  .pricing-plans ul>li>ol {
    padding: 5px 22px;
  }

  .pricing-plans ul>li>ol li {
    padding: 2px 0px;
    font-size: 12px;
  }

  .app-btns {
    margin: 37px 0 0 0;
  }

  .app-btns a {
    padding: 7px 6px;
    letter-spacing: 0;
    border: 1px solid #111;
    font-size: 13px;
  }

  .pricing-plans ul>li>ol {
    padding: 5px 0 10px 22px;
  }

  .pricenote {
    padding-left: 20px;
    padding-right: 20px;
  }

  .active_user>small {
    display: block;
    margin-top: 6px;
  }

  .logo img {
    width: 86px;
    margin-top: 11px;
  }

  .header-info,
  .header-info.sticky {
    padding: 0 0 5px 0px;
  }

  .phone-num a.getademo {
    padding: 6px 8px 5px;
    margin-top: 4px;
  }

  .page-id-1325 .sticky_btn {
    right: 0;
    top: auto;
    background: none;
    padding: 0;
    border-radius: 0px;
    bottom: 0;
    width: 100%;
    text-align: center;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .page-id-1325 .sticky_btn .btn4 {
    text-align: center;
    position: relative;
    color: #fff;
    border: 0;
    width: 50%;
    height: 40px;
    border-radius: 0;
    margin: 3px 0;
    float: left;
  }

  .page-id-1325 .footer-info {
    padding: 26px 0px 50px;
  }

  .padding-auto {
    padding: 0 0px;
  }

  .pricing_app_data {
    min-height: auto;
    margin-bottom: 30px;
    padding-bottom: 40px;
  }

  .slider_area.hm {
    padding-left: 0 !important;
  }

  .section_bx2 img {
    height: 100%;
  }

  .ttd3 {
    display: none !important;
  }

  .mt-50-sm {
    margin-top: 50px;
  }

  .mt-30-sm {
    margin-top: 30px;
  }

  .mt-10-sm{
    margin-top: 10px;
  }
}


@media screen and (max-width:568px){
  .book-btn{
    padding: 5px 20px;
  }

  .items_d {
      margin-top: 0px;
  }

  .mb-30-xs {
    margin-bottom: 30px;
  }

    .mb-20-xs {
      margin-bottom: 30px;
    }
}


@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(35, 32, 68, .6)
  }

  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(35, 32, 68, 0)
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(35, 32, 68, 0)
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(35, 32, 68, .6);
    box-shadow: 0 0 0 0 rgba(35, 32, 68, .6)
  }

  70% {
    -moz-box-shadow: 0 0 0 15px rgba(35, 32, 68, 0);
    box-shadow: 0 0 0 15px rgba(35, 32, 68, 0)
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(35, 32, 68, 0);
    box-shadow: 0 0 0 0 rgba(35, 32, 68, 0)
  }

}
