html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  -o-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth
}
.cus-height {
    height: 115px !important;
}
.no-padding-left {
  padding-left: 0
}

.no-padding-right {
  padding-right: 0
}
a {
  font-family: 'Roboto', sans-serif;
}
a:hover {
  transition: .6s all ease-in-out;
  -webkit-transition: .6s all ease-in-out;
  -moz-transition: .6s all ease-in-out;
  -o-transition: .6s all ease-in-out
}

header {
  top: 0;
  width: 100%
}
.logo {
  text-align: center;
}
.con_dtls-main {
  text-align: right;
  margin-top: 35px
}

.con_dtls {
  position: relative
}
.con_dtls span {
    color: #f5f5f5;
    font-size: 22px;
    position: absolute;
    top: -2px;
    margin-left: -25px;
}
.br_quote blockquote {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  margin-top: 38px;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  letter-spacing: 1px
}

.socail_icons {
  margin-top: 28px;
  text-align: center;
}

.socail_icons a {
  text-decoration: none;
  color: #f5f5f5;
  border: 2px solid #f5f5f5;
  height: 40px;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  border-radius: 50%
}

.socail_icons a:hover {
  background-color: #fff;
  color: #0e2f5a
}

.con_dtls a {
  font-weight: 500;
  color: #f5f5f5;
  text-decoration: none;
  letter-spacing: 1px
}

.banner .carousel-item img {
  width: 100%
}

.tp-bar {
  border-bottom: 1px solid #ffffff1f
}

.banner {
  position: relative;
  background-color: #0e2f5a;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%
}

.slider {
  background-color: #0e2f5a;
  height: 100%;
  padding: 100px 0 265px
}

.main_nav {
  width: 100%
}

.slider_main {
  width: 100%;
  background-color: #1bace3
}

nav {
  position: fixed;
  top: 0;
  right: 3px;
  width: 3.125rem;
  height: 100%;
  z-index: 28
}

nav .nav-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  padding: .2rem .5rem;
  background-color: white;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2)
}

nav .nav-wrap .hamburger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.5rem;
  cursor: pointer;
  margin-bottom: 0rem
}

nav .nav-wrap .hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: .125rem;
  background-color: #0e2f5a
}

.nav-wrap h3 {
  font-size: .75rem;
  margin-bottom: 0;
  text-align: center;
  width: 100%
}

nav .nav-wrap .hamburger span:before,
nav .nav-wrap .hamburger span:after {
  position: absolute;
  content: "";
  width: 100%;
  height: .125rem;
  background-color: #0e2f5a
}

nav .nav-wrap .hamburger span:before {
  transform: translateY(-0.375rem);
  animation: burger1 250ms linear
}

nav .nav-wrap .hamburger span:after {
  transform: translateY(0.375rem);
  animation: burger2 250ms linear
}

nav .nav-wrap .menu-bg {
  position: fixed;
  top: 0;
  right: 0rem;
  width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: all .5s ease;
  z-index: -1
}

nav .nav-wrap .menu-bg a {
  position: relative;
  display: flex;
  align-items: center;
  width: 0;
  margin: 0;
  overflow: hidden;
  padding: 2rem 2rem;
  transition: width .75s ease;
  color: #f5f5f5;
  font-size: .8rem;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 1px 2px 6px #fffdfdab;
  text-decoration: none
}

nav .nav-wrap .menu-bg a:nth-of-type(2) {
  transition-delay: .5625s
}

nav .nav-wrap .menu-bg a:nth-of-type(3) {
  transition-delay: .375s
}

nav .nav-wrap .menu-bg a:nth-of-type(4) {
  transition-delay: .1875s
}

nav .nav-wrap .menu-bg a:hover {
  background-color: #3498db;
  transition: background-color 500ms linear!important
}

nav .nav-wrap #hamburger {
  display: none
}

nav .nav-wrap #hamburger:checked~.hamburger span {
  display: block;
  width: 100%;
  background-color: white
}

nav .nav-wrap #hamburger:checked~.hamburger span:before,
nav .nav-wrap #hamburger:checked~.hamburger span:after {
  background-color: #0e2f5a;
  transform-origin: center center
}

nav .nav-wrap #hamburger:checked~.hamburger span:before {
  transform: rotate(45deg);
  animation: burger3 250ms linear
}

nav .nav-wrap #hamburger:checked~.hamburger span:after {
  transform: rotate(-45deg);
  animation: burger4 250ms linear
}

nav .nav-wrap #hamburger:checked~.menu-bg {
  right: 0px;
  width: 20%;
  margin: 0;
  padding: 0;
  transition: all .5s ease;
  height: 100vh;
  background-color: #000
}

nav .nav-wrap #hamburger:checked~.menu-bg a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  margin: 0;
  padding: 0rem 4rem;
  height: 10vh;
  letter-spacing: 1px;
  border-bottom: 1px solid #f5f5f529;
  overflow: hidden;
  transition: width .75s ease
}

nav .nav-wrap #hamburger:checked~.menu-bg a:nth-of-type(1) {
  transition-delay: .5625s
}

nav .nav-wrap #hamburger:checked~.menu-bg a:nth-of-type(2) {
  transition-delay: .375s
}

nav .nav-wrap #hamburger:checked~.menu-bg a:nth-of-type(3) {
  transition-delay: .1875s
}

nav .nav-wrap #hamburger:checked~.menu-bg a:hover {
  background-color: #3498db;
  transition: background-color 500ms linear!important
}

nav .brand {
  position: absolute;
  bottom: 4.25rem;
  left: -1.875rem;
  transform: rotate(-90deg);
  color: #3498db
}

nav .brand a {
  text-decoration: none;
  color: #3498db
}

.feat_dtls {
  font-family: 'Roboto', sans-serif;
  margin-top: 100px
}

.feat_dtls h1 {
  font-size: 45px;
  letter-spacing: 1px;
  color: #f5f5f5;
  font-weight: 700;
  margin-bottom: 10px
}

.feat_dtls h2 {
  color: #f5f5f5;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px
}

.feat_dtls ul {
  padding-inline-start: 0
}

.feat_dtls ul li {
  list-style: none;
  margin-bottom: 20px
}

.feat_dtls ul li h3 {
  font-size: 16px;
  font-weight: 400;
  color: #f5f5f5;
  display: inline-block;
  margin-left: 20px
}

.sign_up {
  background-color: #fff;
  width: 100%;
  padding: 0 0 15px;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 1px 12px #17171799;
  border-radius: 5px;
  margin-top: 65px;
  min-height: 515px
}

.sign_up input[type="submit"] {
  font-family: 'Roboto', sans-serif;
  border: 0;
  background-color: #1bace3;
  color: #fff;
  padding: 10px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #1bace3;
  cursor: pointer
}

.sign_up input[type="submit"]:hover {
  background-color: transparent;
  color: #2e2e2e;
  border-color: #0e2f5a;
  transition: .6s all ease-in-out;
  -webkit-transition: .6s all ease-in-out;
  -moz-transition: .6s all ease-in-out;
  -o-transition: .6s all ease-in-out
}

.sign_up label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0
}

.sign_up_head h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5f5f5
}

.sign_up_head h2 {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 6px;
  color: #f5f5f5
}

.details {
  padding: 10px 15px 0
}

.mouse_scroll {
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  margin-top: 0;
  position: absolute;
  bottom: 40px;
  transform: translate(50%)
}

.col-lg-4.col-md-6.col-sm-12.col-12.no-padding-right {
  max-width: 30%
}

.col-lg-4.col-md-12.col-sm-12.col-12.extra-width {
  max-width: 40%;
  flex: 0 0 38%;
  margin: 0 auto
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 0 5px 4px;
  width: 12px;
  height: 12px
}

.unu {
  margin-top: 1px
}

.unu,
.doi,
.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite
}

.unu {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate
}

.doi {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  margin-top: -6px
}

.trei {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  margin-top: -6px
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px
}

.sign_up_head {
  background-color: #0e2f5a;
  padding: 25px 15px;
  border-radius: 5px 5px 0 0
}

.sign_up input[type="text"],
.sign_up input[type="password"],
.sign_up input[type="email"] {
  width: 100%;
  text-indent: 10px;
  outline: 0;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  height: 45px
}

.sign_up select {
  background-color: #fff;
  width: 100%;
  text-indent: 10px;
  outline: 0;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  color: #2e2e2e;
  height: 45px;
  font-size: 12px
}

.sign_up option {
  color: #2e2e2e
}

.sign_up input[type="text"]::placeholder,
.sign_up input[type="password"]::placeholder,
.sign_up input[type="email"]::placeholder {
  font-size: 12px;
  text-transform: capitalize;
  color: #2e2e2e
}

.feat_dtls a {
  background-color: #0e2f5a;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 22px;
  margin-top: 10px;
  display: inline-block;
  border: 2px solid #0e2f5a
}

.feat_dtls a:hover {
  background-color: #fff;
  color: #2e2e2e;
  text-decoration: none
}

.wheel {
  -webkit-animation: mouse-wheel .6s linear infinite;
  -moz-animation: mouse-wheel .6s linear infinite
}

.no-padding {
  padding: 0
}

.no-margin {
  margin: 0
}

.pricing_dtls {
  padding-top: 25px;
  background-color: #e2e2e2bf;
  text-align: center
}

.pricing_dtls h1 {
  color: rgba(13, 17, 43, .75);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  margin: 0;
  margin-bottom: 15px
}

.pricing_dtls p {
  color: rgba(13, 17, 43, .75);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px
}

.pricing-banner h1 {
  margin: 150px 0;
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 35px;
  background-color: #2121219e;
  color: #f5f5f5;
  letter-spacing: 1.5px
}

.layout_unlimit {
  display: inline-block;
  width: 100%;
  background-color: #fff
}

.pricing {
  padding: 0 85px;
  text-align: center;
  display: inline-block;
  width: 100%
}

.para_head .pricing h3 {
  color: #f5f5f5;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 35px;
  margin: 0;
  margin-bottom: 15px
}

.para_head .pricing h4 {
  color: #f5f5f5;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px
}

.globe .para_head .pricing h3 {
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
  margin: 0;
  margin-bottom: 15px
}

.globe .para_head .pricing h4 {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1px
}

.pricing-main .country-select select {
  border: 0;
  height: 60px;
  min-height: 60px;
  cursor: pointer;
  padding: 0 35px
}

.pricing-main .bfh-selectbox .bfh-selectbox-toggle {
  box-shadow: 0 0 2px #04040475;
  display: inline-block;
  padding: 15px 29px;
  text-decoration: none;
  height: 60px;
  min-height: 60px;
  border-radius: 0;
  border: 0;
  letter-spacing: 2px
}

.pricing-main .bfh-countries {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase
}

.pricing-main .bfh-selectbox .bfh-selectbox-toggle .bfh-selectbox-option {
  height: 30px;
  font-weight: 900;
  text-align: left;
  padding: 5px
}

.pricing-main .bfh-selectbox .bfh-selectbox-options ul {
  text-align: left
}

.country-main {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: 1px 0 10px #ccc
}

.country-main .bfh-selectbox .bfh-selectbox-options {
  width: 100%;
  min-width: 100%
}

.pricing-section {
  padding: 20px 15px;
  box-shadow: 0 0 5px #04040412
}

._globe-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

._globe {
  width: 350px;
  height: 350px;
  background: url(../img/_map.jpg) repeat;
  border-radius: 100%;
  background-size: cover;
  animation: spin 15.5s infinite linear
}

.pricing-table__headers {
  background-color: #f5f5f5
}

.uk-container.uk-container-center {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px
}

.pricing-table__title {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(44, 44, 42, .25);
  line-height: 1;
  padding-bottom: 8px
}

.pricing-table__field {
  width: 22%
}

.pricing-table__field-label {
  font-family: 'Raleway', sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: rgba(13, 17, 43, .75);
  line-height: 1.7
}

.pricing-table__field {
  padding: 32px 8px 32px 32px
}

.pricing-table__field {
  padding: 20px 4px 20px 20px;
  display: inline-block;
  min-height: 85px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.pricing-table__field:not(:first-child) {
  width: 35%;
  max-width: 350px;
  min-width: 145px
}

#messaging-pricing .pricing-table__headers .pricing-table__field .pricing-table__columns {
  border-top: 1px solid rgba(44, 44, 42, .25);
  padding-top: 5px;
  margin-top: 8px
}

.pricing--shaded .pricing-table--striped .pricing-table__row:nth-child(odd) {
  background: #e9e9e9
}

.pricing-table--striped .pricing-table__row:nth-child(odd) {
  background: #f5f5f5
}

.pricing-header {
  text-align: center;
  padding: 10px 0 10px;
  background-color: #1aa6df;
  box-shadow: 0 0 5px #04040412;
  color: #656262;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px
}

.pricing-table__field-description a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600
}

.pricing-table__field-description a:hover {
  color: #1aa6df;
  text-decoration: none;
  transition: all ease-in-out .6s
}

.pricing-header+.pricing-section {
  margin-top: -60px;
  background-color: #fff
}

.pricing-table__title {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 0;
  line-height: 1;
  padding: 12px;
  text-align: center;
  background-color: #1aa6df;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase
}

.pricing-table__field:first-child {
  width: 65%;
  clear: left;
  min-width: 65%;
  background-color: #f5f5f5
}

.pricing-table--striped .pricing-table__row:nth-child(odd) {
  background: #00b5ff30;
  color: #656262;
  font-weight: 700
}

.pricing-table--striped .pricing-table__row:nth-child(even) {
  background: #f5f5f5;
  color: #656262;
  font-weight: 700
}

.globe {
  padding: 35px 0 35px
}

.pricing-footer {
  padding: 10px 10px 10px
}

footer .email {
  text-align: center
}

footer .email>span {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 500;
  margin-right: 6px
}

footer .email>a {
  color: #fff;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-top: 25px;
  display: inline-block
}

footer .email a:hover {
  color: #8cdeff;
  text-decoration: none
}

.talk-sales {
  background: #0e2f5a;
  border: 2px solid #0e2f5a;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  text-transform: uppercase;
  width: 20%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 14px
}

a:hover.talk-sales {
  background-color: transparent;
  color: #2e2e2e;
  text-decoration: none
}

.pricing-table__field-label aside {
  display: inline-block
}

.price__value {
  color: #626262;
  letter-spacing: 1px;
  display: -webkit-box;
  width: 100%
}

.pricing_main {
  width: 100%;
  display: inline-block;
  margin-top: 20px
}

.pricing_main h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  color: #44475a
}

.pricing-header__description {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 0
}

.pri-show {
  text-align: left;
  width: 100%;
  display: inline-block;
  margin-top: 8px
}

.pri-show h6 {
  font-size: 18px;
  font-weight: 600;
  color: #44475a;
  margin-top: 5px;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: capitalize
}

.custom_select select {
  cursor: pointer;
  width: 100%;
  outline: 0;
  height: 45px;
  min-height: 45px;
  box-shadow: none;
  text-indent: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #0e2f5a;
  border-color: #0e2f5a;
  color: #fff
}

.pricing-sec {
  width: 100%;
  background-color: #0e2f5a;
  padding: 45px 0
}

.choose_box {
  background-color: #f5f5f5;
  padding: 55px 45px;
  border-radius: 50%;
  width: 375px;
  box-shadow: 1px 3px 10px #4388a5;
  height: 385px
}

.choose_box:hover {
  transform: scale(1.1);
  transition: .4s all ease-in-out;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  -moz-transition: .4s all ease-in-out;
  cursor: pointer
}

.choose_main {
  padding: 45px 0;
  background-color: #8cdeff
}

.choose_box span {
  display: flex;
  justify-content: center;
  margin-bottom: 15px
}

.choose_box h4 {
  text-align: center;
  color: #2e2e2e;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif
}

.choose_box p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #2e2e2e
}

.why_choose h1 {
  text-align: center;
  color: #2e2e2e;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 35px;
  margin: 0;
  margin-bottom: 15px
}

.why_choose h3 {
  text-align: center;
  color: #2e2e2e;
  font-weight: 500;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif
}

.how_works {
  background-color: #f5f5f5;
  padding: 35px 35px 35px
}

.how_dtls {
  margin-top: 32px
}

.how_works a {
  color: #0e2f5a
}

.how_works a:hover {
  text-decoration: none
}

.how_dtls ul {
  padding-inline-start: 0
}

.how_dtls ul li {
  list-style-type: none
}

.how_dtls ul li span {
  color: #8cdeff;
  margin-right: 10px;
  font-size: 20px
}

.how_dtls h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px
}

.how_dtls p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  display: inline-block
}

.how_works h1 {
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
  margin: 0;
  margin-bottom: 15px;
  text-align: center
}

.how_works h4 {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 25px
}

.how_works p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #2e2e2e;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: .5px
}

footer {
  background: #0e2f5a;
  position: relative;
  padding: 20px 0 10px 0
}

footer ul {
  list-style: none;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 0
}

footer ul li {
  display: inline-block;
  text-align: center;
  margin: 0 3px
}

footer ul li a {
  color: #797979;
  font-size: 13px;
  font-weight: 300
}

footer p,
footer p a {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
  margin-bottom: 0;
  text-decoration: none;
  font-family: 'Roboto', sans-serif
}

footer p a:hover {
  color: #8cdeff;
  text-decoration: none
}

#mainSlider .item img {
  display: block;
  width: 100%;
  height: auto
}

.footerLogo {
  position: absolute;
  margin: 0 auto;
  top: -39px;
  left: 0;
  right: 0;
  float: none;
  width: 92px
}

#tp_btn {
  bottom: 25px;
  right: 5px
}

#tp_btn {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 10px;
  z-index: 98;
  font-size: 18px;
  border: 0;
  outline: 0;
  width: 45px;
  height: 45px;
  background-color: #0e2f5a;
  border: 2px solid #8cdeff;
  color: #fff;
  cursor: pointer;
  padding: 6px 0;
  text-align: center;
  border-radius: 50px;
  transition: .2s all ease-in-out;
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  -moz-transition: .2s all ease-in-out
}

#tp_btn:hover {
  background-color: #1aa6df;
  color: #0e2f5a;
  border-color: #f5f5f5;
  transition: .4s all ease-in-out;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  -moz-transition: .4s all ease-in-out
}

.faq_dtls .btn {
  white-space: inherit
}
.sec_banner {
    width: 100%;
    background-image: url(../img/sms-api.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.sec-bann-dtls {
    background-color: #ffffff8c;
    padding: 15px 0px;
    width: 100%;
    margin: 0px auto;
}
.sec-bann-dtls h1 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-weight: 700;
    width: auto;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 35px;
    margin: 0px;
    margin-bottom: 8px;
}
.sec-bann-dtls h3 {
    margin: 0px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}
.sec-content {
    margin-top: 20px;
}
.sec-bann-dtls {
    background-color: #ffffff8c;
    padding: 15px 0px;
    width: 100%;
    margin: 0px auto;
}
.sec-bann-dtls h1 {
    text-align: center;
    font-weight: 800;
    width: auto;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 40px;
    margin: 0px;
    margin-bottom: 8px;
}
.sec-bann-dtls h3 {
    margin: 0px;   
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}
.sec-content .signup_dtls .signup_btn h2 {
  font-size: 14px;
}
.sec-content .signup_dtls .signup_btn h1 {
  font-size: 14px;
}

.sec-content .signup_dtls .signup_btn {
  background: #000;
  text-align: center;
  padding: 12px 0;
  min-height: 70px;
  width: 100%;
}
.sec-content .signup_dtls .signup_btn h1 {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0px;
  font-weight: 500;
}
.sec-content .signup_dtls .signup_btn h2 {
  margin: 0;
  letter-spacing: 2px;
  margin-top: 7px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
}
.sec-content .signup_dtls .signup_btn a {
  text-decoration: none;
}
.sec-content ._pricing {
    padding: 10px 20px;
    letter-spacing: 1px;
    width: 100%;
    font-size: 40px;
}
.sec-content ._pricing h3 {
    text-align: center;
    color: #2e2e2e;
    margin: 0;
    font-weight: 800;
    font-size: 35px;
}
.sec-dtls {
    margin-top: 15px;
}
.sec-dtls h3 {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    font-size: 14px;
    padding-right: 8px;
    margin: 0;
    font-weight: 500;
    color: #2e2e2e;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sec-dtls a {
    color: #3391d4;
    text-decoration: none;
    font-weight: 500;
}
.sec-dtls a:hover {
  text-decoration: none;
  color: #2e2e2e;
    transition: .6s all ease-in-out;
}
.sec-dtls p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .3px;
    font-weight: 400;
    margin-bottom: 0px;
}
.sec-content ._pricing h2 {
    color: #2e2e2e;
    margin: 0;
    font-weight: 800;
    font-size: 35px;
    text-align: center;
}
.sec-dtls p > strong {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #0e2f5a;
}
.lightblue-bg {
    background-color: #caf0ff;
}
.sec-b-main {
    padding: 5px 0px 15px;
}
.sec-b-main .sec-dtls h4 {
    color: #0e2f5a;
    font-size: 18px;
    letter-spacing: .5px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    position: relative;
}
.sec-b-main .sec-dtls h4:after {
    position: absolute;
    content: "\f0d6";
    font: normal normal normal 14px/1 FontAwesome;
    top: 0px;
    left: -29px;
    font-size: 20px;
    color: #0e2f5a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.sec-b-main .sec-dtls .swift:after {
   content: "\f0e6";
}
.sec-b-main .sec-dtls .uni:after {
   content: "\f1ab";
}
.sec-b-main .sec-dtls .open:after {
   content: "\f2b7";
}
.sec-b-main .sec-dtls .downreq:after {
  content: "\f0ed";
}
.sec-b-main h3 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    display: inline-block;
    width: 100%;
    font-size: 24px;
    color: #0e2f5a;
    margin: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}
.sec-dtls-b {
    padding: 20px 45px 20px;
    text-align: left;
    margin-bottom: 12px;
    box-shadow: 0px 0px 5px #0e2f5a40;
    background-color: #caf0ff;
}
.sec-dtls-b:hover {
  cursor: pointer;
    transform:scale(1.1);
    transition: 0.6s all ease-in-out;
    -webkit-transition: 0.6s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
}

.tab-content .why-choose, .tab-content .options, .tab-content .api-docs {
    padding: 0px 25px;
}
.tabs-main .tab-pane h2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
    margin-top: 0px;
    color: #2e2e2e;
    letter-spacing: .5px;
}
.sec-content .tabs-main .tab-content {
    min-height: 280px;
}
/*tabs*/
.sec-content .tabs-main {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 55px;
    display: inline-block;
    background-color: #caf0ff;
}
.nav-tabs {
    border-bottom: none;
}
.tabs-main .nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid #8cdeff;
    border-radius: 0px;
    outline: none;
    color: #0e2f5a;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}
.tabs-main .nav-tabs .nav-item.show .nav-link, .tabs-main .nav-tabs .nav-link.active {
    color: #f5f5f5;
    background-color: #0e2f5a;
}
.tab-content {
    padding: 15px 25px;
}
.tabs-main .tab-pane ul {
    padding-inline-start: 0px;
}
.tabs-main .tab-pane ul li {
  list-style-type: none;
}
.tabs-main .tab-pane ul li p {
    display: inline;
    font-size: 14px;
    margin: 0;
    color: #585757;
    font-weight: 400;
    line-height: 25px;
}
.tabs-main .tab-pane ul li h3 {
    display: inline-block;
    font-size: 16px;
    padding-right: 5px;
    margin: 0;
    font-weight: 500;
    color: #2e2e2e;
    letter-spacing: 1px;
}
.tabs-main .tab-pane ul li a {
    text-decoration: none;
}
.tabs-main .tab-pane h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
    margin-top: 0px;
    color: #2e2e2e;
    letter-spacing: .5px;
}
/*tabs*/
.testim {
    background-image: url(../img/testi-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: inline-block;
    background-color: #f2f9ed;
    margin-top: 30px; 
    padding: 40px 0px;
    position: relative;
}
.testim .arrow {
    width: 40px;
    height: 40px;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #0e2f5a;
    border: 2px solid #0e2f5a;
    background-color: #8cdeff;
    box-shadow: 0px 0px 2px #f5f5f5;
    cursor: pointer;
    font-size: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}
.testim .arrow:before {
    cursor: pointer;
}
.testim .arrow:hover {
    background-color: #1aa6df;
    color: #0e2f5a;
    border-color: #f5f5f5;
    transition: .4s all ease-in-out;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    -moz-transition: .4s all ease-in-out;
}
.testim .arrow.left {
    left: 10%;
}

.testim .arrow.right {
    right: 10%;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    margin: 0px;
    left: -1.3%;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #8cdeff;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #8cdeff;
    border-color: #8cdeff;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    background-color: #0e2f5a52;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 0 30px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #f5f5f5;
    font-size: 1.2rem;
    margin: 15px 0;
}


.testim .cont div p {
    font-size: 2rem;
    color: #f5f5f5;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #8cdeff;        
        box-shadow: 0px 0px 10px 5px #8cdeff;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #8cdeff;        
        box-shadow: 0px 0px 0px 0px #8cdeff;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #8cdeff;        
        box-shadow: 0px 0px 10px 5px #8cdeff;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #8cdeff;        
        box-shadow: 0px 0px 0px 0px #8cdeff;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #8cdeff;        
        box-shadow: 0px 0px 10px 5px #8cdeff;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #8cdeff;        
        box-shadow: 0px 0px 0px 0px #8cdeff;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #8cdeff;        
        box-shadow: 0px 0px 10px 5px #8cdeff;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #8cdeff;        
        box-shadow: 0px 0px 0px 0px #8cdeff;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #8cdeff;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #8cdeff;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    } 
}
.faqs_sec-2 {
  margin-top: 30px;
}
.sign-up {
    position: relative;
}
.sign-up a {
    font-family: 'Raleway', sans-serif;
    border: 2px solid #0e2f5a;
    background-color: #0e2f5a;
    color: #fff;
    position: fixed;
    font-size: 14px;
    left: -8px;
    transform: translateY(-55%);
    padding: 5px 10px;
    letter-spacing: 1px;
    border-radius: 0px 45px 20px 0px;
    font-weight: 600;
    text-shadow: 3px 2px 8px #242424;
    z-index: 1;
    text-decoration: none;
}
.sign-up a:hover {
    background-color: #1a84c6;
    transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    -ms-transition: 0.3s all linear;
}
.sign-up a:hover span.active {
  border: 2px solid #0e2f5a;
  transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    -ms-transition: 0.3s all linear;
  box-shadow: 1px 1px 5px #0e2f5a;
  background-color: #0e2f5a;
}
.sign-up a > span {
    box-shadow: 1px 1px 5px #0e2f5a;
    background-color: #1a84c6;
    border-radius: 50px;
    font-size: 15px;
    width: 40px;
    padding-top: 9px;
    padding-left: 2px;
    margin-left: 10px;
    height: 40px;
    display: inline-block;
    text-align: center;
}
@media only screen and (min-device-width :320px) and (max-device-width :812px) {
  .sign-up a {
    font-size: 14px;
    border: 1px solid #1a84c6;
    transform: translateY(-55%);
    left: -0px;
    padding: 4px 4px 5px 12px;
    letter-spacing: 0px;
    border-radius: 0px 28px 25px 0px;
    font-weight: 500;
  } 
  .sign-up a > span {
    box-shadow: none;
    font-size: 15px;
    width: 35px;
    padding-top: 6px;
    padding-left: 2px;
    margin-left: 10px;
    height: 35px;
}
  .cus-height {
    height: auto !important;
}
  .sec-b-main .sec-dtls h4:after {
    left: -25px;
 }
  .testim {
    padding:15px 0px;
  }
  .testim .dots {
    width: auto;
    left: 10%;
    bottom: 15%;
}
  .testim .cont > div {
    padding-top: 10px;
  }
  .testim .cont div h2 {
    font-size: 1rem;
    margin: 4px 0px 10px;
  }
  .testim .arrow.left {
    left: 0%;
  }
  .testim .arrow.right {
    right: 0%;
  }
  .testim .arrow {
    height: 25px;
    width: 25px;
  }
  .testim .cont div p {
    font-size: 1rem;
  }
  .tabs-main .nav-tabs .nav-link {
    font-size: 14px;
  }
  .tabs-main .nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 100%;
  }
  .sec-b-main .sec-dtls h4 {
    text-align: left;
  }
  .sec-b-main {
    padding: 0px 15px 20px;
    text-align: left;
  }
  .sec-dtls p {
    margin-bottom: 0px;
    text-align: left;
}
  .sec-dtls-b {
    padding: 15px 35px;
    margin-bottom: 0px;
    height: auto;
}
  .sec-b-main h3 {
    text-align: left;
    font-size: 16px;
    margin-bottom: 0px;
  }
  .sec-content ._pricing h2 {
    font-size: 20px;
  }
  .sec-content ._pricing h3 {
    font-size: 25px;
  }
  .sec_banner {
    min-height: 125px;
  }
  .sec-bann-dtls h1 {
    font-size: 20px;
  }
  .sec-bann-dtls h3 {
    font-size: 16px;
  }
  .details .col-md-7.col-sm-12.no-padding-left {
    padding-left: 15px;
  }

  nav .nav-wrap #hamburger:checked~.menu-bg a {
    padding: 0rem 2rem;
  }
  nav {
    right: 0px;
  }
  .col-lg-4.col-md-12.col-sm-12.col-12.extra-width {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0 auto
  }
  .col-lg-4.col-md-6.col-sm-12.col-12.no-padding-right {
    max-width: 100%
  }
  .slider_main {
    padding-bottom: 20px
  }
  .feat_dtls a {
    padding: 3px 22px
  }
  .feat_dtls ul li {
    list-style: none;
    margin-bottom: 5px
  }
  nav .nav-wrap #hamburger:checked~.menu-bg {
    width: 65%;
    transition: all .6s ease-in-out;
    z-index: -1
  }
  #tp_btn {
    right: 2px;
    bottom: 0
  }
  footer p,
  footer p a {
    font-size: 10px
  }
  .faq_dtls .card-header button {
    font-size: 12px;
    font-weight: 500
  }
  .faq_dtls .card-body {
    padding: .85rem
  }
  .faq_dtls .card-body p {
    margin-bottom: 0
  }
  .faqs_sec h1 {
    font-size: 1.2rem;
    margin-bottom: 5px
  }
  .faq_dtls {
    margin-top: 10px
  }
  .faq_dtls .btn {
    white-space: inherit
  }
  .faqs_sec .lead {
    line-height: 20px;
    font-size: 15px
  }
  .how_works {
    background-color: #f5f5f5;
    padding: 15px 10px 15px
  }
  .faqs_sec {
    padding: 15px 0 50px
  }
  .how_works h1 {
    font-size: 28px
  }
  .how_works h4 {
    font-size: 15px
  }
  .how_works h4 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500
  }
  .how_dtls ul li p {
    font-size: 14px
  }
  .how_dtls {
    margin-top: 10px
  }
  .how_dtls h2 {
    font-size: 18px;
    margin-bottom: 5px
  }
  .how_works p {
    line-height: 22px;
    margin-bottom: 0;
    font-size: 14px
  }
  .pricing-table__title {
    padding: 12px 0
  }
  .talk-sales {
    width: 100%
  }
  .pricing_main h2 {
    margin-top: 0;
    margin-bottom: 15px
  }
  .globe {
    padding: 15px 0 15px
  }
  .globe .para_head .pricing h4 {
    font-size: 15px
  }
  ._globe {
    width: 290px;
    height: 290px
  }
  .mouse_scroll {
    transform: translate(48%)
  }
  .pricing-sec {
    padding: 15px 0
  }
  .pri-show h6 {
    text-align: center
  }
  .pricing-header__description {
    font-size: 14px
  }
  .pricing {
    padding: 0 10px
  }
  .para_head .pricing h4 {
    font-size: 14px;
    margin-bottom: 10px
  }
  .para_head .pricing h3 {
    margin-bottom: 5px;
    font-size: 28px
  }
  .sign_up input[type="text"],
  .sign_up input[type="password"],
  .sign_up input[type="email"] {
    height: 32px
  }
  .sign_up select {
    height: 32px
  }
  .details {
    padding: 2px 7px 0
  }
  .sign_up label {
    font-size: 13px
  }
  .choose_main {
    padding: 15px 0
  }
  .why_choose h3 {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 12px
  }
  .choose_box {
    width: 300px;
    height: 300px;
    margin: 0 auto 15px;
    padding: 28px 35px 0
  }
  .choose_box h4 {
    font-size: 18px
  }
  .choose_box p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500
  }
  .slider {
    height: 365px;
    padding: 0
  }

  .sign_up {
    margin-top: 25px
  }
  .feat_dtls ul li h3 {
    font-size: 14px;
    font-weight: 500
  }
  .sign_up_head {
    padding: 10px 15px
  }
  .feat_dtls {
    margin-top: 15px;
    margin-bottom: 25px
  }
  .sign_up_head h2 {
    font-size: 13px;
    margin-bottom: 0
  }
  .feat_dtls h1 {
    font-size: 35px
  }
  .feat_dtls h2 {
    font-size: 20px
  }
  .br_quote blockquote {
    margin-top: 55px;
    font-size: 12px
  }
  .con_dtls span {
    font-size: 18px;
    top: 1px
  }
  .con_dtls-main {
    margin-top: 12px
  }
  .con_dtls a {
    font-size: 12px;
    margin-left: 27px
  }
  .socail_icons {
    margin-top: 5px;
    margin-bottom: 12px;
    text-align: right
  }
  .sign_up {
    margin-top: 25px;
    min-height: auto
  }
  .why_choose h1 {
    font-size: 28px;
    margin-bottom: 5px
  }
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  .con_dtls-main {
   margin-top: 47px;
}
.socail_icons {
    margin-top: 47px;
}
.testim .dots {
    left: 35%;
    bottom: 22%;
}
}
@media only screen and (max-width :736px) {
  .con_dtls-main {
    text-align: left;
    margin-left: 25px
  }
  .con_dtls a {
    font-size: 12px;
    margin-left: 35px
  }
}
@media only screen and (max-width :768px) {
/*  .con_dtls-main {
    margin-top: 47px
  }
  .socail_icons {
    margin-top: 47px
  }*/
  .con_dtls span {
  }
  .con_dtls a {
    font-size: 10px;
    margin-left: 6px
  }
}

@media only screen and (max-width :812px) {
  .how_dtls ul li span {
    margin-right: 0;
    font-size: 12px
  }
  .how_dtls ul li p {
    font-size: 9px;
    font-weight: 500
  }
}

@keyframes burger1 {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(0)
  }
  100% {
    transform: translateY(5px) rotate(0deg)
  }
}

@keyframes burger2 {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(0)
  }
  100% {
    transform: translateY(-5px) rotate(0deg)
  }
}

@keyframes burger3 {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(0)
  }
  100% {
    transform: translateY(0) rotate(-45deg)
  }
}

@keyframes burger4 {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(0)
  }
  100% {
    transform: translateY(0) rotate(45deg)
  }
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px)
  }
}

@-moz-keyframes mouse-wheel {
  0% {
    top: 1px
  }
  25% {
    top: 2px
  }
  50% {
    top: 3px
  }
  75% {
    top: 2px
  }
  100% {
    top: 1px
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0
  }
  50% {
    opacity: .5
  }
  100% {
    opacity: 1
  }
}

@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0
  }
  50% {
    opacity: .5
  }
  100% {
    opacity: 1
  }
}

@-o-keyframes mouse-scroll {
  0% {
    opacity: 0
  }
  50% {
    opacity: .5
  }
  100% {
    opacity: 1
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0
  }
  50% {
    opacity: .5
  }
  100% {
    opacity: 1
  }
}

@keyframes spin {
  0% {
    background-position-x: 0
  }
  100% {
    background-position-x: 380px
  }
}

/* NAV */

/* .main_nav .dropmenu-link a.drop-menu::after {
  padding-left: 10px;
  content: '\25BC';
  position: relative;
  font-size: 0.8em;
}

.main_nav .dropmenu-link:hover .dropdown-links {
  transition: all 0.6s ease-out;
  opacity: 1;
  height: 20vh !important;
}

.main_nav .dropmenu-link:hover .dropdown-links a {
  transition: all 0.6s ease-out;
  opacity: 1;
  height: 10vh !important;
}

.main_nav .dropmenu-link:hover a.drop-menu {
  background-color: #3498db;
}

.main_nav .dropmenu-link .dropdown-links,
.main_nav .dropmenu-link .dropdown-links a {
  transition: all 0.6s ease-out;
  opacity: 0;
  height: 0 !important;
}

.main_nav .dropmenu-link .dropdown-links a:hover {
  background-color: #3498db;
}

.main_nav .dropmenu-link .dropdown-links {
  background-color: rgba(255,255,255,0.2);
} */

/*  */

.message-api .tab-pane li:before {
  content: '✓';
}

.message-api .sec-dtls-b {
  min-height: 22vh;
}

body#api-page-body {
  background: #f5f5f5;
}
 
nav {
	width: auto !important;
	height: auto !important;
}

@media (min-width: 1200px){
  .container, .owl-pagination {
      width: inherit;
  }
}

/*  */
@media screen and (min-width:992px) {
	.navbar .nav-custom-item .dropdown-menu {
		display: block !important;
		margin-top: 6px;
		transition: all 0.6s ease;
		opacity: 0;
		visibility: hidden;
		width: max-content;
		border-radius: 0;
	}
	.navbar .nav-custom-item:hover .dropdown-menu {
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.navbar .nav-custom-item:hover a.dropdown-toggle {
		background-color: white !important;
		color: #000 !important;
	}
	.navbar .nav-custom-item .dropdown-menu>li>a {
		display: block;
	}
}

#api-page-body .navbar-brand>img {
  height: auto;
}

#api-page-body .inner-page-nav .inner-nav {
	padding-top: 0
}

#api-page-body .navbar-custom-dropdown {
  background: #000;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 820px) {
  #api-page-body .navbar-brand img {
      top: 5px;
  }
}

@media (max-width: 767px) {
  #api-page-body .navbar-custom .nav li a {
    display: block;
  }

  #api-page-body ul.dropdown-menu.navbar-custom-dropdown li {
    border-bottom: none;
  }
}

#api-page-body footer {
  background: #fff;
  position: relative;
  padding: 50px 0 0 0;
}

#api-page-body footer ul {
  width: inherit;
  margin: revert;
}

#api-page-body footer ul li {
  margin: 0 12px;
}

#api-page-body footer ul li a {
  color: #585858;
  font-size: 14px;
}

#api-page-body .tabs-main .tab-pane ul li h3 {
  font-size: 14px;
  font-weight: 600;
}

#api-page-body .tabs-main .tab-pane ul li p {
  display: revert;
  line-height: 1.4;
}

#api-page-body .tabs-main .tab-pane ul li {
  margin-bottom: 5px;
}

#api-page-body .tabs-main .tab-pane ul li a {
  font-weight: 100;
  color: #007bff;
}


#api-page-body h1,
#api-page-body h2,
#api-page-body h3,
#api-page-body h4,
#api-page-body h5,
#api-page-body h6 {
    margin: unset;
    margin-bottom: 0.5rem;
    text-transform: initial;
    letter-spacing: 0px;
}

#api-page-body .sec_banner {
  margin-top: 100px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) {
  #api-page-body .sec_banner {
      margin-top: 65px;
  }

  #api-page-body .sec-b-main h3 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  #api-page-body .navbar-toggler {
      background-color: #4bb3f7d1!important;
      color: #fff;
      position: relative;
      padding: 4px 7px;
      bottom: 12px;
  }

  #api-page-body .navbar-toggler:hover {
    background-color: #56cefb!important;
    color: #fff;
    transition: .6s all ease-in-out;
    -moz-transition: .6s all ease-in-out;
    -o-transition: .6s all ease-in-out;
    -webkit-transition: .6s all ease-in-out;
    cursor: pointer;
  }
}
/*  */


/* Top Promotion */

.navbar, #navbar {
	top: 40px;
}


#topPromotionBanner {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  background: #3aade3;
  color: white;
  font-weight: 400;
  font-size: 16px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999999;
}

#topPromotionBanner span {
  margin-right: 10px;
  background-color: #da2b2b;
  padding: 2px 10px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
}

#topPromotionBanner a {
  color: #0e2f5a;
  margin-left: 20px;
  font-weight: 500;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) {

  #api-page-body .sec_banner {
    margin-top: 130px;
  }

  #topPromotionBanner a {
    width: 45%;
  }

  .navbar, #navbar {
    top: 65px;
  }

}
