@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
html,
body,
ul,
ol,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.p-none {
  padding-top: 0px !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
  padding-bottom: 0px !important;
}

.pt-none {
  padding-top: 0px !important;
}

.pb-none {
  padding-bottom: 0px !important;
}

.pr-none {
  padding-right: 0px !important;
}

.pl-none {
  padding-left: 0px !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.15);
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
}
.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header nav .navbar-brand img {
  max-width: 180px;
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.navbar-expand-lg .navbar-collapse {
  justify-content: end;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #0E7C99;
}
.navbar-nav .nav-item .nav-link.active {
  color: #0E7C99;
}

.dropdown-item {
  transition: all 400ms ease-in-out;
  padding: 8px 16px;
}
.dropdown-item:hover {
  background-color: #0E7C99;
  color: #fff;
}

.dropdown-item.active {
  background-color: #0E7C99;
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #5f6c71;
  font-weight: 700;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 22px 16px;
}

button.navbar-toggler {
  color: #0E7C99;
  border: 0px;
  border-radius: 4px;
  padding: 8px 0;
  font-size: 32px;
}
button.navbar-toggler:focus {
  background-color: #0897bd;
  color: #fff;
}

@media (min-width: 1025px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: end;
  }
  .navbar-collapse .login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar {
    padding: 0px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    margin: 0px;
    padding: 0px;
    border: none;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1215686275);
    top: 65px;
    border-radius: 0px 0px 4px 4px;
    min-width: 250px;
  }
}
@media (min-width: 768px) {
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
  }
}
@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  .navbar .nav-link {
    font-size: 13px !important;
    padding: 16px 8px !important;
  }
  .login-btn > .btn-md {
    font-size: 14px;
    padding: 8px 8px;
  }
  .navbar-nav .dropdown-menu {
    top: 51px !important;
  }
}
@media (max-width: 1280px) {
  .navbar-nav .dropdown-menu {
    border-width: 0px !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1399.98px) {
  .login-btn > .btn-md {
    font-size: 14px;
    padding: 8px 8px;
  }
}
.btn-lg {
  font-size: 22px;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
}

.btn-md {
  font-size: 16px;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
}

.primary-btn {
  border: 0px;
  background-color: #0E7C99;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  color: #fff;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.primary-btn:hover {
  color: white;
  background-color: #0897bd;
}

.secondary-btn {
  border: 0px;
  background-color: #D95B00;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  color: #fff;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.secondary-btn:hover {
  color: white;
  background-color: #F56701;
}

.tertiary-btn {
  border: 0px;
  background-color: transparent;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  color: #0E7C99;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.tertiary-btn .arrow {
  display: inline-block;
  transition: transform 0.4s;
}
.tertiary-btn .arrow .arrow-path {
  fill: #05445E;
}
.tertiary-btn:hover .arrow {
  transform: translateX(10px);
  fill: #05445E;
}
.tertiary-btn:hover .arrow .arrow-path {
  fill: #05445E;
}

.book-into-btn svg {
  fill: #fff;
}

.primary-btn .arrow {
  display: inline-block;
  transition: transform 0.4s;
}
.primary-btn:hover .arrow {
  transform: translateX(10px);
}

@keyframes fill-animation {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.pulse {
  animation: pulse 2s infinite cubic-bezier(0.17, 0.67, 0.89, 0.49);
}

@keyframes wave1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wave2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes move {
  0% {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  100% {
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
nav.vertical-tabs {
  position: fixed;
  top: 5%;
  bottom: auto;
  z-index: 10;
}
nav.vertical-tabs ul {
  list-style: none;
  padding: 0;
}
nav.vertical-tabs ul li {
  padding: 10px 0;
}
nav.vertical-tabs ul li a {
  display: inline-block;
  color: #272727;
  text-decoration: none;
  font-size: 1em;
}
nav.vertical-tabs span {
  display: inline-block;
  position: relative;
}
nav.vertical-tabs .circle {
  height: 10px;
  width: 10px;
  left: -10px;
  border-radius: 50%;
  background-color: #272727;
}
nav.vertical-tabs .rect {
  height: 3px;
  width: 0px;
  left: 0;
  bottom: 4px;
  background-color: #272727;
  transition: transform 0.6s, width 1s;
}

nav.vertical-tabs a:hover, nav.vertical-tabs .active-section {
  color: #9b59b6;
}

nav.vertical-tabs a:hover span, nav.vertical-tabs .active-section span {
  background-color: #9b59b6;
}

nav.vertical-tabs .active-section .rect {
  width: 40px;
}

.content-section {
  position: relative;
  width: 80%;
  height: 90%;
  left: 50%;
  background-color: #ecf1f1;
  text-align: center;
  transform: translateX(-50%);
}

.content-section h1 {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #9b59b6;
  font-size: 3em;
}

/*CREDITS*/
.about {
  position: fixed;
  bottom: 0;
  left: 1%;
}

.about a {
  text-decoration: none;
  font-size: 1.5em;
}

.about a:visited, .about a:active, .about a:link {
  color: #000;
}

.about a:hover {
  color: red;
}

.plan-features-wrap {
  padding: 32px;
  box-shadow: 0px 5px 16px #ddd;
  margin-top: 24px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
}

.pricing-plan-tab {
  border-bottom: 0px;
}
.pricing-plan-tab .nav-item {
  margin-bottom: 16px;
  flex-grow: 1;
  max-width: 250px;
  text-align: center;
  /*margin-left: -2px;*/
}
.pricing-plan-tab .nav-item:nth-child(1) .nav-link {
  border-radius: 4px 0px 0px 4px;
}
.pricing-plan-tab .nav-item .nav-link {
  border-radius: 0px 4px 4px 0px;
  background-color: #fff;
  border-color: #0E7C99;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  color: #0E7C99;
}
.pricing-plan-tab .nav-item .nav-link.active {
  background-color: #0E7C99;
  border-color: transparent;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

.toggle-switch-for-pay {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.toggle-switch-for-pay span {
  font-weight: 700;
}

.feature-heading {
  display: flex;
  justify-content: space-between;
}
.feature-heading .heading,
.feature-heading .trial,
.feature-heading .core,
.feature-heading .integrate {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}
.feature-heading .heading h1,
.feature-heading .trial h1,
.feature-heading .core h1,
.feature-heading .integrate h1 {
  font-weight: bold;
  font-size: 2rem;
  padding-top: 6px;
  margin-bottom: 0px;
}
.feature-heading .heading h1 sup,
.feature-heading .trial h1 sup,
.feature-heading .core h1 sup,
.feature-heading .integrate h1 sup {
  top: -0.5em;
  font-size: 0.5em;
}
.feature-heading .heading p,
.feature-heading .trial p,
.feature-heading .core p,
.feature-heading .integrate p {
  font-size: 0.8rem;
}
.feature-heading .trial,
.feature-heading .core,
.feature-heading .integrate {
  width: 150px;
  text-align: center;
}
.feature-heading .heading {
  width: 60%;
}

.feature-list {
  margin: 16px 0px;
}
.feature-list li {
  list-style: disc;
  display: flex;
  justify-content: space-between;
  padding: 4px 0px;
  position: relative;
  padding-left: 16px;
}
.feature-list li::before {
  position: absolute;
  content: "-";
  left: 0;
  color: #0E7C99;
  font-weight: bold;
}
.feature-list li .feature-name {
  width: 60%;
}
.feature-list li .feature-availability {
  width: 150px;
  text-align: center;
}
.feature-list li .feature-availability i.fa {
  font-size: 22px;
  font-weight: 800 !important;
}
.feature-list li .feature-availability i.fa-check {
  color: rgba(34, 199, 122, 0.7);
}
.feature-list li .feature-availability i.fa-xmark {
  color: rgba(220, 53, 69, 0.7);
  font-size: 22px;
}

.plan-header {
  /* Rounded sliders */
}
.plan-header .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.plan-header .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.plan-header .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.plan-header .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.plan-header input:checked + .slider {
  background-color: #0E7C99;
}
.plan-header input:focus + .slider {
  box-shadow: 0 0 1px #0E7C99;
}
.plan-header input:checked + .slider:before {
  transform: translateX(26px);
}
.plan-header .slider.round {
  border-radius: 34px;
}
.plan-header .slider.round:before {
  border-radius: 50%;
}

.header-payment-toggle .feature-heading {
  border-bottom: 1px #ddd solid;
  margin-bottom: 16px;
}
.header-payment-toggle .feature-heading .heading {
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}
.header-payment-toggle .feature-heading .heading p {
  font-size: 1rem;
}

.instruction-content-wrap {
  margin-bottom: 16px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  padding: 16px 32px;
}
.instruction-content-wrap .instruction-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.instruction-content-wrap .instruction-content p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0px;
}

#ribbon {
  background: #0E7C99;
  height: 30px;
  width: auto;
  display: inline-block;
  position: relative;
  color: #FFF;
  line-height: 30px;
  padding: 0px 20px;
  font-weight: bold;
  border-radius: 4px;
}
#ribbon:after {
  content: "";
  height: 0;
  width: 0;
  top: 0px;
  right: -30px;
  position: absolute;
  border-left: 31px solid transparent;
  border-right: 31px solid transparent;
  border-bottom: 31px solid #0E7C99;
}
#ribbon:before {
  content: "";
  height: 0;
  width: 0;
  top: 0px;
  right: -30px;
  position: absolute;
  border-style: solid;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #0E7C99;
}

body {
  letter-spacing: 0.05em;
}

.text-primary {
  color: #0E7C99 !important;
}

.text-default {
  color: #374151;
}

.text-green {
  color: #22c77a;
}

.text-orange {
  color: #fd7e14;
}

.text-red {
  color: #dc3545;
}

.text-yellow {
  color: #ffc107;
}

.text-indigo {
  color: #6610f2;
}

.text-purple {
  color: #6f42c1;
}

.text-pink {
  color: #d63384;
}

.text-teal {
  color: #20c997;
}

.text-cyan {
  color: #293234;
}

.list-with-check-icon {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 16px !important;
}
.list-with-check-icon li {
  list-style-type: none;
  position: relative;
  font-size: 16px;
  line-height: normal;
  padding-left: 24px !important;
  line-height: 27px;
}
.list-with-check-icon li::before {
  position: absolute;
  content: "✓";
  left: 0;
  font-size: 20px;
  color: #0E7C99;
}

.calendly-inline-widget {
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.3);
}

.registration-form-wrap {
  max-width: 70%;
  margin: 0 auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 32px 60px;
}
.registration-form-wrap .notes {
  font-size: 0.7rem;
  margin-top: 4px;
  line-height: normal;
}
.registration-form-wrap form {
  margin-top: 32px;
  border-top: 1px dotted #ccc;
}
.registration-form-wrap form .sub-heading {
  font-weight: bold;
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 8px;
}
.registration-form-wrap form .sub-heading p {
  font-size: 0.8rem;
  color: #374151;
  text-transform: math-auto;
  line-height: normal;
}
.registration-form-wrap form .form-label {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}
.registration-form-wrap form .form-control {
  height: 38px;
  border-radius: 4px;
  border: 1px #ccc solid;
}
.registration-form-wrap .add-team-wrap {
  border: 1px #ccc solid;
}
.registration-form-wrap .add-team-wrap .add-team-form-body {
  padding: 16px;
}
.registration-form-wrap .add-team-wrap .add-team-form-body .form-label {
  color: #111827;
  font-weight: bold;
}
.registration-form-wrap .footer-note {
  font-size: 0.8rem;
  padding: 16px 0px;
}
.registration-form-wrap .footer-note p {
  font-size: 0.8rem;
  line-height: normal;
  line-height: 22px;
}

.release-card {
  /*box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
  margin-bottom: 24px;
  position: relative;
  -webkit-transition: 1s ease all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 8px;
}
.release-card::before, .release-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.release-card::after {
  bottom: -22px;
  left: 62px;
  border-width: 22px 32px 0 0;
  border-color: #ffffff transparent transparent transparent;
}
.release-card .release-card-head {
  border-bottom: 1px #ddd solid;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.release-card .release-card-head .post-pic {
  width: 72px;
  height: 72px;
  border-radius: 72px;
  -moz-border-radius: 72px;
  -webkit-border-radius: 72px;
  -ms-border-radius: 72px;
  align-content: center;
}
.release-card .release-card-head .post-pic img {
  padding: 0;
  border-radius: 72px;
  -moz-border-radius: 72px;
  -webkit-border-radius: 72px;
  -ms-border-radius: 72px;
  margin: 0;
  border: 1px #ddd solid;
}
.release-card .release-card-head .post-info .release-date {
  font-size: 0.9rem;
  color: #374151;
}
.release-card .release-card-head .post-info .post-by {
  line-height: normal;
}
.release-card .release-card-head .post-info .post-by h2 {
  font-size: 1.2rem;
  line-height: normal;
}
.release-card .release-card-head .post-info .post-by p {
  line-height: normal;
  font-size: 1rem;
  color: #0E7C99;
  margin-bottom: 8px;
}

.release-card-body {
  padding: 16px;
}
.release-card-body .post-title {
  font-weight: 600;
  color: #111827;
  font-size: 1rem;
  font-style: italic;
}
.release-card-body .post-title strong {
  font-weight: 700;
}
.release-card-body .description {
  margin-top: 16px;
  color: #374151;
}
.release-card-body .description p {
  font-size: 1rem;
  line-height: 22px;
  text-align: inherit;
}

.release-card-footer {
  position: relative;
  height: 32px;
}

.masonry { /* Masonry container */
  -moz-column-count: 3;
  column-count: 3;
  -moz-column-gap: 1em;
  column-gap: 1em;
  padding: 0;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: 0.85em;
}

.item {
  display: inline-block;
  width: 100%;
}

.item img {
  max-width: 100%;
}

@media only screen and (max-width: 320px) {
  .masonry {
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media only screen and (max-width: 768px) {
  .masonry {
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1279.98px) {
  .masonry {
    -moz-column-count: 2;
    column-count: 2;
  }
  .post-pic img {
    max-width: 100% !important;
  }
}
@media only screen and (min-width: 1280px) {
  .masonry {
    -moz-column-count: 3;
    column-count: 3;
  }
}
.tags {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  list-style: none;
  opacity: 0.6;
}

.tags li, .tags a {
  float: left;
  height: 26px;
  line-height: 24px;
  position: relative;
  font-size: 16px;
}

.tags a {
  margin-left: 20px;
  padding: 0 10px 0 12px;
  background: #0E7C99;
  color: #fff !important;
  text-decoration: none;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.tags a:before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent #0E7C99 transparent transparent;
  border-style: solid;
  border-width: 12px 12px 14px 0;
}

.tags a:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  float: left;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  box-shadow: -1px -1px 2px #004977;
}

.tags a:hover {
  background: #D95B00;
}

.tags a:hover:before {
  border-color: transparent #D95B00 transparent transparent;
}

.tags:hover {
  opacity: 1;
}

.text-italic {
  font-style: italic !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-bg-primary {
  background-color: #0E7C99;
}

.text-bg-secondary {
  background-color: #D95B00;
}

.color-primary {
  color: #0E7C99 !important;
}

.color-secondary {
  color: #D95B00 !important;
}

.no-border {
  border: 0px !important;
}

.most-highlited {
  color: #fff;
  background-image: linear-gradient(to right, #4CB8C4 0%, #3CD3AD 51%, #4CB8C4 100%);
}

.upto10 {
  font-size: 0.8rem;
  padding: 2px 8px;
  display: inline-block;
  line-height: 20px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}

.highlight-text {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #42d392, #3d5dff, #c94dff);
}

.content {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #374151;
  letter-spacing: 0.01071em;
}
.content img {
  padding: 16px;
  margin: 16px;
  /*border: 1px #eee solid;*/
  margin-top: 0;
}
.content img[align=left] {
  margin-left: 0px;
}
.content img[align=right] {
  margin-right: 0px;
}
.content strong {
  color: #111827;
}
.content ul {
  margin-bottom: 8px;
  padding-left: 32px;
}
.content ul li {
  padding-left: 16px;
  text-indent: initial;
  margin-bottom: 8px;
}
.content ul li::marker {
  color: #D95B00;
}
.content .number-list {
  margin: 0;
  padding: 0;
  counter-reset: li;
}
.content .number-list li {
  list-style: none;
  position: relative;
  margin: 0 0 0px 1.7em;
  padding: 6px 0;
  text-indent: inherit;
}
.content .number-list li:before {
  content: counter(li) ".";
  counter-increment: li;
  position: absolute;
  left: -30px;
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin-right: 8px;
  border-radius: 2rem;
  text-align: center;
  line-height: 31px;
  font-weight: 700;
  color: #D95B00;
}
.content .legal-list li::before {
  color: #D95B00;
  font-weight: 800;
  background-color: transparent;
  border: none;
}
.content .point-list {
  padding-left: 0;
  margin-left: 0px !important;
}
.content .point-list li {
  counter-reset: li;
  padding-left: 24px !important;
  list-style-type: disc !important;
  background-color: transparent;
  text-indent: initial;
  font-weight: normal;
}
.content .point-list li::before {
  content: "•" !important;
  line-height: 28px;
  color: #D95B00;
  left: 0px;
  position: absolute;
}
.content .number-sublist {
  padding-left: 0;
}
.content .number-sublist li {
  counter-reset: li;
  padding-left: 44px;
  list-style-type: none;
  background-color: transparent;
  text-indent: initial;
  margin-left: 8px;
}
.content .number-sublist li span {
  text-indent: -45px;
  position: absolute;
  color: #D95B00;
}
.content .number-sublist li::before {
  content: "";
}
.content .number-sublist .point-list li {
  padding-left: 32px !important;
  margin-left: 0;
}
.content p {
  margin-bottom: 16px;
  text-align: justify;
}
.content strong {
  font-weight: 700;
}
.content h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111827;
}
.content h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 800;
  color: #111827;
}
.content a {
  text-decoration: none;
  color: #0E7C99;
}
.content a:hover {
  color: #D95B00;
}
.content img {
  max-width: 100%;
  outline: none;
  text-decoration: none;
}

.owl-carousel.testimonials {
  position: relative;
}
.owl-carousel.testimonials .item {
  padding: 16px 16px;
}
.owl-carousel.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
}
.owl-carousel.testimonials .owl-nav button.owl-prev,
.owl-carousel.testimonials .owl-nav button.owl-next {
  font-size: 2rem;
  background-color: #0E7C99;
  padding: 0px 16px 6px !important;
  color: #fff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
}

.testimonial-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url("../img/map.png");
  padding-bottom: 32px !important;
}
.testimonial-section .section-head h1 {
  color: #0E7C99;
  margin: 8px 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-section .section-head .testimonial-heading {
  margin: 0 auto;
  padding: 8px 16px;
  border: 1px #0E7C99 solid;
  color: #0E7C99;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

.testimonial-content-wrap {
  padding: 32px 32px;
  background-color: #fff;
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  text-align: center;
}
.testimonial-content-wrap .client-profile-pic {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  margin: 8px auto;
}
.testimonial-content-wrap .testimonial-content {
  font-size: 1.5rem;
  color: #374151;
  padding: 32px 0.5rem;
}
.testimonial-content-wrap .testimonial-content p {
  font-size: 1.1rem;
}
.testimonial-content-wrap .client-info {
  border-top: 4px #0E7C99 solid;
  display: inline-block;
  font-size: 1rem;
  padding: 16px 16px 8px;
}
.testimonial-content-wrap .client-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
.testimonial-content-wrap .client-info p {
  font-size: 1rem;
}
.testimonial-content-wrap .client-info .review-stars {
  color: #D95B00;
  font-size: 1rem;
  padding: 8px 16px 0px;
}

.fixed-bottom.gdpr-modal {
  left: inherit;
  bottom: 1rem;
  right: 1rem;
}

.cookie-footer {
  display: flex;
  justify-content: space-between;
}

p {
  font-size: 1rem;
}
p a {
  word-break: keep-all;
  text-wrap: nowrap;
}

@media (min-width: 1400px) {
  .fixed-bottom.gdpr-modal {
    width: 40%;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1399.98px) {
  .fixed-bottom.gdpr-modal {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
  .fixed-bottom.gdpr-modal {
    width: 80%;
  }
}
@media screen and (min-width: 580px) and (max-width: 767.98px) {
  .fixed-bottom.gdpr-modal {
    width: 90%;
  }
}
@media (max-width: 579.98px) {
  .fixed-bottom.gdpr-modal {
    width: 90%;
  }
  .cookie-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-footer .btn {
    display: block;
    width: 100%;
  }
  .cookie-footer > :nth-child(1) {
    order: 2;
  }
  .cookie-footer > :nth-child(2) {
    display: flex;
    gap: 8px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  position: relative;
}

.m-top-8 {
  margin-top: 8px;
}

.m-top-12 {
  margin-top: 12px;
}

.m-top-16 {
  margin-top: 16px;
}

.m-top-24 {
  margin-top: 24px;
}

.m-top-32 {
  margin-top: 32px;
}

.m-top-40 {
  margin-top: 40px;
}

.m-bottom-8 {
  margin-bottom: 8px;
}

.m-bottom-12 {
  margin-bottom: 12px;
}

.m-bottom-16 {
  margin-bottom: 16px;
}

.m-bottom-24 {
  margin-bottom: 24px;
}

.m-bottom-32 {
  margin-bottom: 32px;
}

.m-bottom-40 {
  margin-bottom: 40px;
}

.m-0 {
  margin: 0px;
}

/*Padding*/
.p-0 {
  padding: 0;
}

.p-top-8 {
  padding-top: 8px;
}

.p-top-12 {
  padding-top: 12px;
}

.p-top-16 {
  padding-top: 16px;
}

.p-top-24 {
  padding-top: 24px;
}

.p-top-32 {
  padding-top: 32px;
}

.p-top-40 {
  padding-top: 40px;
}

.p-bottom-8 {
  padding-bottom: 8px;
}

.p-bottom-12 {
  padding-bottom: 12px;
}

.p-bottom-16 {
  padding-bottom: 16px;
}

.p-bottom-24 {
  padding-bottom: 24px;
}

.p-bottom-32 {
  padding-bottom: 32px;
}

.p-bottom-40 {
  padding-bottom: 40px;
}

/*bg colors*/
.bg-white {
  background-color: #fff;
}

.bg-dark-blue {
  background-color: #05445E;
}

.bg-light-orange {
  background-color: rgba(215, 206, 200, 0.3);
}

section {
  position: relative;
  max-width: 100%;
}

.svg-image-box img {
  max-width: 100%;
}

.hero-section {
  background-color: rgba(225, 235, 236, 0.44);
  padding: 150px 0;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  position: relative;
  overflow: hidden;
}

.common-section {
  padding: 130px 0;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
}

.common-section.inner {
  padding: 60px 0px 15px 0px;
}

.primary-heading {
  word-break: keep-all;
  font-size: 48px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  font-weight: 600;
  color: #414F54;
}
.primary-heading b {
  font-weight: 800;
}

.secondary-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #414F54;
}
.secondary-heading b {
  font-weight: 800;
}

.highlight {
  color: #0E7C99;
}

.counter {
  animation-duration: 1s;
  animation-delay: 0s;
}

/*Counter Section*/
.counter-section {
  position: relative;
  overflow: hidden;
  background-color: #0E7C99;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  -ms-border-radius: 12px;
  padding: 32px 32px;
  text-align: center;
  color: white;
}
.counter-section .counter-items {
  padding: 32px 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.counter-section .counter-items .counter-items-no {
  font-size: 2.5rem;
}
.counter-section h3 {
  font-size: 16px;
  text-align: center;
}
.counter-section .counter {
  font-weight: 800;
}

.counter-section::before,
.counter-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3; /* Adjust opacity */
  z-index: 1;
}

.counter-section::before {
  background-position: left;
  border-radius: 0.5rem;
  background: url("../img/bubble-bg-left.png") no-repeat;
  mix-blend-mode: multiply;
}

.counter-section::after {
  background-position: right;
  border-radius: 0.5rem;
  background: url("../img/bubble-bg-right.png") no-repeat;
  mix-blend-mode: multiply;
}

/*Our Feture*/
.our-features {
  position: relative;
  overflow: hidden;
  background-color: #05445E;
  margin: 70px 0;
  padding: 70px 0;
  text-align: center;
  color: white;
}
.our-features::before, .our-features::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1; /* Adjust opacity */
  z-index: 0;
}
.our-features::before {
  background-position: 101% 10%;
  background-image: url("../img/bg-section-01.png");
}
.our-features::after {
  background-position: top left;
  background-image: url("../img/bg-section-02.png");
}
.our-features .primary-heading {
  color: #fff;
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}
.section-head p {
  font-size: 18px;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}

.owl-carousel {
  z-index: 1;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 12px 16px;
  /*@include box-shadow (2px, 4px, 6px, 0px, rgba(0, 0, 0, 0.3));*/
}
.card .card-img {
  width: 100%;
  background-color: rgba(225, 235, 236, 0.44);
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
}
.card .card-img img {
  max-height: 160px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
}
.card .card-body {
  padding: 0;
  margin: 0;
}
.card .card-body .card-head {
  font-weight: 700;
  font-size: 18px;
  color: #0E7C99;
  text-align: left;
  padding: 8px 0px;
}
.card .card-body .card-content {
  font-size: 16px;
  color: #374151;
  line-height: 150%;
  text-align: left;
  min-height: 120px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  max-height: calc(5 * 1.5em);
}
.card .card-body .card-footer {
  background-color: transparent;
  border-top: 0px;
  padding: 8px 0;
}
.card .card-body .card-footer .arrow {
  vertical-align: bottom;
}

.horizontal-card-wrap {
  padding-top: 80px;
}

.card-horizontal {
  position: relative;
  border: 0;
  overflow: visible;
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 100px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  position: relative;
  z-index: 0;
}
.card-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0E7C99;
  z-index: -1;
  transition: transform 400ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 8px;
}
.card-horizontal:hover::before {
  transform: scaleX(100%);
  animation: fill-color 0.3s forwards;
}
@keyframes fill-color {
  0% {
    width: 0;
    background: #0897bd;
  }
  100% {
    width: 100%;
    background: #0E7C99;
  }
}
.card-horizontal::before {
  transition: width 0.5s ease-in-out;
}
.card-horizontal .card-img {
  width: 128px;
  height: 128px;
  text-align: center;
  margin: -80px auto 0px auto;
  padding: 0px 0px;
  background-color: #fff;
  box-shadow: 2px 4px 6px 0px rgba(0, 0, 0, 0.1);
  transition: color ease-in-out 0.5s;
}
.card-horizontal .card-img img {
  max-width: 100%;
}
.card-horizontal .card-body {
  text-align: center;
}
.card-horizontal .card-body .card-head {
  text-align: center;
  padding-top: 16px;
}
.card-horizontal .card-body .card-content {
  min-height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  max-height: calc(2 * 1.5em);
  text-align: center;
}
.card-horizontal:hover {
  color: #fff;
}
.card-horizontal:hover .card-body .card-head {
  color: #fff;
}
.card-horizontal:hover .card-body .card-content {
  color: #fff;
}
.card-horizontal:hover .card-body .card-footer .tertiary-btn {
  color: #0897bd;
  background-color: #fff;
}
.card-horizontal:hover .card-img {
  background-color: #fff;
}

.key-features-section {
  padding: 24px 0px;
}
.key-features-section .horizontal-card-wrap {
  position: relative;
}
.key-features-section .horizontal-card-wrap .external-button {
  position: absolute;
  bottom: 20px;
  right: 0;
}
.key-features-section .section-head .primary-heading {
  margin-bottom: 24px;
  color: #0E7C99;
}

.external-button {
  text-align: right;
  clear: both;
  z-index: 2;
  position: relative;
  margin-top: 24px;
}

.client-goals-section {
  position: relative;
  overflow: hidden;
}

.gematric {
  width: auto;
  position: absolute;
}

.gematric.top {
  top: -17%;
  left: -10%;
}

.gematric.bottom {
  bottom: -17%;
  right: -10%;
}

.apis-ui-list {
  margin: 0;
  padding: 0 0;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.apis-ui-list li {
  list-style: none;
  width: calc(50% - 16px);
  float: left;
}
.apis-ui-list li a {
  text-decoration: none;
  background-color: rgba(24, 154, 180, 0.14);
  border-left: 4px #05445E solid;
  display: block;
  padding: 8px 16px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #05445E;
  font-weight: 700;
  transition: color ease-in-out 0.4s;
}
.apis-ui-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0E7C99;
  z-index: -1;
  width: 0;
  transition: width 0.5s ease-in-out;
}
.apis-ui-list li a:hover::before {
  width: 100%;
  animation: fill-color 0.5s forwards;
}
@keyframes fill-bg-color {
  0% {
    width: 0;
    background: #0897bd;
  }
  100% {
    width: 100%;
    background: #0E7C99;
  }
}
.apis-ui-list li:hover a {
  color: #fff;
}

.partners-logo-section {
  margin: 32px 0;
}

.partner-logo-wrap {
  margin: 0;
  padding: 16px 32px;
  background-color: #fff;
  /*@include box-shadow (2px, 4px, 16px, 0px, rgba(0, 0, 0, 0.1));*/
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
}
.partner-logo-wrap .item {
  text-align: center;
}
.partner-logo-wrap .item img {
  max-width: 140px;
  margin: 0 auto;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}
.partner-logo-wrap .item:hover {
  cursor: pointer;
}
.partner-logo-wrap .item:hover img {
  filter: grayscale(0%);
}

footer {
  background-color: #032026;
  padding: 32px 0px;
  padding-bottom: 0px !important;
}
footer .foot-heading {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin: 16px 0;
}
footer .foot-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .foot-contact-info li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}
footer .foot-contact-info li .icon {
  background-color: #fff;
  color: #0E7C99;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  padding: 4px 8px;
}
footer .foot-contact-info li .info {
  color: #fff;
  font-size: 1rem;
}
footer .foot-contact-info li .info a {
  text-decoration: none;
  color: #fff;
}
footer .foot-contact-info li .info a:hover {
  color: #0897bd;
}
footer .quick-links-container {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
footer .quick-links-container .quick-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .quick-links-container .quick-links li {
  list-style: none;
  display: block;
  font-size: 1rem;
  word-break: keep-all;
}
footer .quick-links-container .quick-links li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
footer .quick-links-container .quick-links li a .arrow-move {
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}
footer .quick-links-container .quick-links li a:hover {
  color: #0897bd;
}
footer .quick-links-container .quick-links li a:hover .arrow-move {
  transform: translateX(5px);
}
footer .social-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
footer .social-links li {
  list-style: none;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  padding: 4px 6px;
  background-color: #fff;
  text-align: center;
}
footer .social-links li img {
  max-width: 24px;
  max-height: 24px;
}
footer .last-footer {
  border-top: 1px #063842 solid;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 1rem;
  margin-top: 32px;
}

.scroll-to-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* Place the button at the bottom */
  right: 24px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #D95B00; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 12px 16px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

.scroll-to-top:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.seection-img-box {
  max-width: 100%;
  text-align: center;
}
.seection-img-box img {
  max-width: 100%;
}

.text-italic {
  font-style: italic;
}

.custom-blockquote {
  font-weight: 500;
  padding: 16px;
  border-left: 4px #f56701 solid;
  font-style: oblique;
}

ul.point-list {
  margin: 0;
  padding: 0;
  list-style: none;
  /** Server status css **/
}
ul.point-list li {
  list-style: none;
  display: block;
  background-color: rgba(24, 154, 180, 0.14);
  position: relative;
  padding: 8px 16px 8px 32px;
  margin: 8px 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
}
ul.point-list .server-status {
  left: 10px;
  top: 50%;
  margin-left: 0px;
  margin-top: -5px;
  position: absolute;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ECC71;
}
ul.point-list .server-status::before, ul.point-list .server-status::after {
  left: 0;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  position: absolute;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2ECC71;
}
ul.point-list .server-status::before {
  content: "";
  animation: bounce 1.5s infinite;
}
ul.point-list .server-status::after {
  content: "";
  animation: bounce 1.5s infinite;
}
ul.point-list .server-status::before {
  content: "";
  animation: bounce 1.5s infinite;
}
ul.point-list .server-status::after {
  content: "";
  animation: bounce 1.5s -0.4s infinite;
}

.animated-text {
  animation: color-change 5s ease-in-out infinite, cubic-bezier(0.14, 0.96, 0.83, 0.44);
}

@keyframes color-change {
  0% {
    color: #0E7C99;
  }
  100% {
    color: #D95B00;
  }
}
.owl-item .item {
  text-align: center;
  padding: 8px 16px;
}
.owl-item .item img {
  max-width: 100%;
  width: inherit;
  display: initial;
}

.common-section.client-portal-section {
  padding-bottom: 60px;
}

.trusted-by-section {
  padding: 60px 0;
}
.trusted-by-section .owl-item .item img {
  box-shadow: 0px 0px 16px rgba(221, 221, 221, 0.5803921569);
  border-radius: 8px;
}

.stiky-btn {
  position: fixed;
  z-index: 9;
  right: -53px;
  top: 40%;
}
.stiky-btn .btn.btn-book-demo {
  background-image: linear-gradient(to right, #3300ff 0%, #ff0695 51%, #0033ff 100%);
  background-size: 200% auto;
  /*background-color:$secondary-color-hover;*/
  color: #fff;
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px 8px 0px 0px;
  /*   box-shadow: 0 0 20px #eee;*/
}
.stiky-btn .btn.btn-book-demo:hover {
  background-position: right center;
  /*background-color: $primary-color-hover;*/
}

.inner-common-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.innerpage-hero-section {
  background-image: url(../img/header-design.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  text-align: center;
  padding: 12px 0;
}
.innerpage-hero-section .primary-heading {
  color: #0E7C99;
}
.innerpage-hero-section .breadcrumb {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerpage-hero-section .breadcrumb li {
  color: #D95B00;
}
.innerpage-hero-section .breadcrumb a {
  text-decoration: none;
  color: #0E7C99;
}

/*About Us Page*/
.team-section .team-sub-section {
  position: relative;
}
.team-section h1 {
  margin: 0 auto 24px;
  padding: 8px 16px;
  border: 1px #189AB4 solid;
  color: #189AB4;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
}
.team-section h3 {
  text-align: center;
}
.team-section .team-group {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.team-section .team-group .team-card {
  max-width: 250px;
  box-shadow: 0px 5px 16px #ddd;
  background-color: #fff;
  position: relative;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
}
.team-section .team-group .team-card .team-img {
  position: relative;
  height: 244px;
}
.team-section .team-group .team-card .team-img .hover-info {
  position: absolute;
  bottom: 0px;
  padding: 8px 16px;
  background-color: rgba(14, 124, 153, 0.6);
  color: #fff;
  left: 0;
  right: 0;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.team-section .team-group .team-card .team-img .hover-info:hover {
  background-color: #0e7c99;
}
.team-section .team-group .team-card .team-img .hover-info a {
  text-decoration: none;
  color: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.team-section .team-group .team-card .team-info {
  padding: 8px 16px;
  font-size: 14px;
  color: #374151;
}
.team-section .team-group .team-card .team-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0px;
}
.team-section .team-group .team-card .team-info p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
}
.team-section .team-group .team-card img {
  max-width: 100%;
  height: 100%;
  border-radius: 4px 4px 0px 0px;
}

.smart-goals {
  display: grid;
  grid-column-gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}
.smart-goals .goals {
  text-align: center;
  padding: 24px 16px;
  border-radius: 8px;
}
.smart-goals .goals .goal-content p {
  text-align: center;
}
.smart-goals .goals .goal-title {
  font-weight: bold;
  font-size: 18px;
}
.smart-goals .goals .goal-icon {
  text-align: center;
}
.smart-goals .goals .goal-icon img {
  max-width: 150px;
  margin: 0;
  padding: 0;
}
.smart-goals .goals:nth-child(1) {
  background-color: #D5DBFF;
}
.smart-goals .goals:nth-child(2) {
  background-color: #CEEAFF;
}
.smart-goals .goals:nth-child(3) {
  background-color: #DAFFFF;
}
.smart-goals .goals:nth-child(4) {
  background-color: #FFF8D7;
}
.smart-goals .goals:nth-child(5) {
  background-color: #FFE6E2;
}
.smart-goals p {
  text-align: center;
  line-height: normal;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 32px;
}
.about-section .content-box {
  flex-grow: 2;
  width: 60%;
}
.about-section .content-box h1 {
  font-size: 44px;
  font-weight: 700;
}
.about-section .img-box {
  text-align: center;
  min-width: 450px;
  flex-grow: 1;
  width: 40%;
}
.about-section .img-box img {
  border: 0px;
  max-width: 100%;
}

/*Contact Us Page*/
.contact-box-wrap {
  display: flex;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 20px -20px;
  border: 1px #eee solid;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  flex-wrap: wrap;
}
.contact-box-wrap .contact-info-wrap {
  width: 50%;
  padding: 32px;
  flex: 1;
}
.contact-box-wrap .contact-form {
  width: 50%;
  padding: 32px;
  flex: 1;
  text-align: center;
  /*background-color: rgba($bg-light-gray, 0.5);*/
}
.contact-box-wrap .contact-form img {
  max-width: 550px;
}
.contact-box-wrap .contact-form .form-label {
  color: #0E7C99;
  font-size: 16px;
  font-weight: 700;
}
.contact-box-wrap .contact-form .form-control {
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  height: 44px;
  border: 1px #0E7C99 solid;
  background-color: transparent;
}
.contact-box-wrap .contact-form textarea.form-control {
  height: inherit;
}
.contact-box-wrap .contact-form .btn.btn-submit {
  background-color: #0E7C99;
  color: #fff;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1.2rem;
}
.contact-box-wrap .contact-form .btn.btn-submit:hover {
  background-color: #F56701;
}

.contact-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 16px;
  margin-top: 32px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact-list li .icon {
  border-radius: 100%;
  border: 1px #fff solid;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  background-color: #0E7C99;
}
.contact-list li .icon i.fa {
  font-size: 44px;
  font-weight: 700;
}
.contact-list li .contact-info {
  color: #374151;
  line-height: normal;
  font-size: 16px;
}
.contact-list li .contact-info h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.2em;
  color: #111827;
}
.contact-list li .contact-info p {
  line-height: normal;
  font-size: 1rem;
}

a.learnMoreBtn {
  background-image: linear-gradient(to right, #4CB8C4 0%, #3CD3AD 51%, #4CB8C4 100%);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
a.learnMoreBtn:hover {
  background-image: linear-gradient(to right, #4CB8C4 0%, #4CB8C4 51%, #3CD3AD 100%);
  background-position: center right;
  color: #fff;
}

/*Responsive*/
@media (min-width: 1280px) {
  body {
    padding-top: 67px;
  }
  .img-lg {
    min-width: 450px;
  }
  .sectcion-header {
    text-align: center;
    max-width: 80%;
    margin: 0px auto;
  }
}
@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  body {
    padding-top: 58px;
  }
}
@media (max-width: 991.98px) {
  body {
    padding-top: 70px;
  }
  .innerpage-hero-section {
    height: 90px;
    background-size: cover;
    padding: 8px 0px;
  }
  .innerpage-hero-section .primary-heading {
    font-size: 32px;
  }
  .about-section {
    flex-wrap: wrap;
    padding: 32px 0px;
  }
  .about-section .primary-heading {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
  .primary-heading {
    font-size: 32px;
  }
  .secondary-heading {
    font-size: 24px;
  }
  .btn-lg {
    font-size: 18px;
  }
  .section-head p {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  .apis-ui-list li a {
    padding: 4px 8px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
  .content img {
    max-width: 350px;
  }
}
@media (max-width: 1279.98px) {
  .quick-links li,
  .foot-contact-info li {
    font-size: 0.9rem !important;
  }
  .foot-heading {
    font-size: 1.2rem !important;
  }
  .content p {
    text-align: start;
  }
  .counter-section {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -ms-border-radius: 8px;
  }
  .btn-lg {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
  }
  .gematric.top {
    top: -24%;
    left: -6%;
  }
  .gematric.top svg {
    max-width: 150px;
  }
  .gematric.bottom {
    bottom: -24%;
    right: -6%;
  }
  .gematric.bottom svg {
    max-width: 150px;
  }
  .svg-image-box img {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .apis-ui-list li {
    width: calc(100% - 16px);
  }
  .our-features {
    margin: 70px 0px 0px;
  }
  .quick-links-container {
    flex-wrap: wrap !important;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 8px;
  }
  .partner-logo-wrap .item img {
    max-width: 180px;
    filter: grayscale(0%);
  }
  footer .last-footer {
    font-size: 0.9rem;
  }
  .smart-goals {
    display: grid;
    grid-template-columns: 33.333% 33.333% 33.333%;
    grid-column-gap: 16px;
    row-gap: 16px;
  }
  .common-section {
    text-align: center;
    padding: 60px 0px;
  }
  .common-section.client-portal-section {
    padding-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .counter-section {
    background-color: transparent;
    padding-bottom: 0px;
  }
  .counter-section .counter-iteams {
    background-color: #0E7C99;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -ms-border-radius: 8px;
    padding: 32px 0px;
    margin-bottom: 16px;
  }
  .counter-section .counter-iteams h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .section-cont-wrap.conent img {
    max-width: 100%;
  }
  .section-cont-wrap.conent .content img[align=right] {
    margin-right: inherit !important;
    margin-left: inherit !important;
  }
  .content img[align=right] {
    margin-right: inherit !important;
    margin-left: inherit !important;
  }
  .smart-goals {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 16px;
    row-gap: 16px;
  }
  .hero-section {
    padding: 70px 0px;
  }
  .hero-section .hero-section-content {
    text-align: center;
  }
  .hero-section .hero-section-content .secondary-heading {
    padding: 16px 50px;
  }
  .hero-section .hero-section-content .col-sm-12.col-md-6:nth-child(1) {
    order: 2;
  }
  .hero-section .hero-section-content .svg-image-box {
    text-align: center;
  }
  .hero-section .hero-section-content .svg-image-box img {
    max-width: 80%;
  }
  .primary-heading {
    font-size: 28px;
  }
  .secondary-heading {
    font-size: 24px;
  }
  .counter-iteams {
    margin-bottom: 24px;
  }
  .counter-iteams:last-child {
    margin-bottom: 0px;
  }
  .gematric.top {
    top: -16%;
    left: -6%;
  }
  .gematric.top svg {
    max-width: 120px;
  }
  .gematric.bottom {
    bottom: -16%;
    right: 0%;
  }
  .gematric.bottom svg {
    max-width: 120px;
  }
  .clients-goals-content .col-sm-12.col-md-6:nth-child(1) {
    order: 2;
  }
  .key-features-section .section-head p {
    width: auto;
    max-width: inherit;
  }
  .testimonial-content-wrap .testimonial-content {
    padding: 16px 16px;
  }
  .testimonial-content-wrap .testimonial-content p {
    font-size: 1rem;
  }
  .quick-links-container,
  .foot-contact-info {
    margin-bottom: 24px;
  }
  .login-btn {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .login-btn a {
    flex-grow: 1;
    text-align: center;
  }
}
@media (max-width: 580px) {
  .smart-goals {
    grid-template-columns: 100%;
  }
  .login-btn {
    flex-direction: column;
    gap: 8px;
  }
  .login-btn a {
    flex-grow: 1;
  }
  .gematric.bottom {
    bottom: -18%;
    right: -6%;
  }
  .gematric.top {
    top: -16%;
    left: -6%;
  }
  .svg-image-box {
    width: 80%;
    margin: 24px auto;
  }
  .svg-image-box img {
    max-width: 100%;
  }
  .hero-section-content .primary-heading {
    font-size: 32px;
  }
  .hero-section-content .secondary-heading {
    font-size: 22px;
    margin-top: 8px;
    padding: 8px 24px;
  }
  .hero-section-content .primary-btn {
    margin: 8px 0px;
  }
  .common-section {
    padding: 64px 0;
  }
  .common-section .primary-heading {
    font-size: 32px;
  }
  .common-section .secondary-heading {
    font-size: 22px;
    margin-top: 8px;
    padding: 8px 24px;
  }
  .common-section p {
    margin: 16px 0;
  }
  .common-section .primary-btn {
    margin: 8px 0px;
  }
  .our-features .section-head .primary-heading {
    font-size: 32px;
  }
  .our-features .section-head p {
    max-width: inherit;
  }
  .testimonial-section .section-head h1 {
    font-size: 32px;
  }
  .testimonial-section .section-head p {
    max-width: inherit;
  }
}
@media (max-width: 991.98px) {
  body {
    letter-spacing: normal;
  }
  .inner-common-section .content.text-justify {
    text-align: left;
  }
  .contact-box-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 32px;
  }
  .contact-box-wrap .primary-heading {
    text-align: center;
  }
  .contact-box-wrap .contact-info-wrap,
  .contact-box-wrap .contact-form {
    width: 100%;
  }
  .contact-box-wrap .contact-info-wrap img,
  .contact-box-wrap .contact-form img {
    max-width: 90%;
  }
  .contact-box-wrap .contact-list {
    gap: 32px;
  }
  .contact-box-wrap .contact-list .contact-info p {
    margin-bottom: 0;
  }
  .registration-form-wrap {
    width: 90%;
    max-width: inherit;
    padding: 32px;
  }
  .instruction-content-wrap {
    padding: 8px 16px;
  }
  .instruction-content-wrap .instruction-content p {
    font-size: 1rem;
  }
  .feature-list li .feature-availability i.fa {
    font-size: 16px;
  }
  .pricing-plan-tab .nav-item {
    flex-grow: inherit;
  }
  .pricing-plan-tab .nav-item .nav-link {
    font-size: 0.75rem;
  }
  .pricing-plan-tab .nav-item .nav-link.active {
    font-size: 0.75rem;
  }
  .plan-card-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
  .plan-card-wrap .plan-card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 8px;
    flex-grow: 1;
  }
  .plan-card-wrap .plan-card .plan-card-head {
    border-bottom: 1px #ddd solid;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .plan-card-wrap .plan-card .plan-card-head .trial,
  .plan-card-wrap .plan-card .plan-card-head .integrate,
  .plan-card-wrap .plan-card .plan-card-head .core {
    align-items: center;
  }
  .plan-card-wrap .plan-card .plan-card-head .trial p,
  .plan-card-wrap .plan-card .plan-card-head .integrate p,
  .plan-card-wrap .plan-card .plan-card-head .core p {
    font-size: 12px;
    margin-bottom: 0px;
  }
  .plan-card-wrap .plan-card .plan-card-head .trial h1,
  .plan-card-wrap .plan-card .plan-card-head .integrate h1,
  .plan-card-wrap .plan-card .plan-card-head .core h1 {
    font-weight: bold;
    font-size: 2rem;
    padding-top: 0px;
    margin-bottom: 0px;
  }
  .plan-card-wrap .plan-card .plan-card-head .trial h1 sup,
  .plan-card-wrap .plan-card .plan-card-head .integrate h1 sup,
  .plan-card-wrap .plan-card .plan-card-head .core h1 sup {
    top: -0.5em;
    font-size: 0.5em;
  }
  .plan-card-wrap .plan-card .plan-card-head .trial {
    display: block;
    flex-grow: 1;
    text-align: center;
  }
  .plan-card-wrap .plan-card .plan-card-head .integrate {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .plan-card-wrap .plan-card .plan-card-head .integrate div {
    flex-grow: 1;
  }
  .plan-card-wrap .plan-card .plan-card-head .core {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .plan-card-wrap .plan-card .plan-card-head .core div {
    flex-grow: 1;
  }
  .plan-card-wrap .plan-card .plan-card-body {
    padding: 16px 16px;
  }
  .plan-card-wrap .plan-card .plan-card-body .feature-list {
    margin-top: 0px;
  }
  .plan-card-wrap .plan-card .plan-card-body .feature-list li {
    padding-left: 32px;
  }
  .plan-card-wrap .plan-card .plan-card-body .feature-list li .feature-name {
    width: 100%;
  }
  .plan-card-wrap .plan-card .plan-card-body .feature-list li:before {
    position: absolute;
    content: "\f00c";
    left: 0;
    color: #22c77a;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
  }
  .plan-card-wrap .plan-card .plan-card-body .feature-availability {
    width: 70px;
  }
  .plan-card-body .feature-heading {
    border-bottom: 0px #ddd solid;
    padding: 0px;
    margin-bottom: 8px;
    margin-top: 16px;
  }
  .plan-card-body .feature-heading .heading {
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    width: 100%;
  }
  .stiky-btn {
    right: -55px;
  }
  .stiky-btn .btn.btn-book-demo {
    padding: 4px 16px;
    font-size: 16px;
    border-radius: 4px 4px 0px 0px;
  }
}
@media (max-width: 767.98px) {
  .content .number-list li {
    padding: 6px 0px;
    padding-left: 8px !important;
  }
  .content .number-list li::before {
    left: -20px;
  }
  .content .number-list li li {
    margin-left: 0.5rem;
  }
  .content .number-list li::before {
    line-height: 30px;
  }
  .content .number-list .point-list li {
    padding-left: 8px !important;
  }
  .content .point-list li {
    padding-left: 8px;
  }
  .content .point-list li:before {
    left: -8px;
  }
  .content h3 {
    font-size: 1.1rem;
  }
  .about-section {
    flex-direction: column;
  }
  .about-section .content-box {
    width: auto;
  }
  .about-section .img-box {
    max-width: 100%;
    width: inherit;
    overflow: hidden;
    min-width: inherit;
  }
  .about-section .img-box img {
    max-width: 100%;
    margin: 0px;
  }
  .navbar-brand img {
    max-width: 150px;
  }
  .innerpage-hero-section {
    height: 80px;
  }
  .innerpage-hero-section .primary-heading {
    font-size: 1.5rem;
  }
  .inner-common-section .content.text-justify {
    text-align: left;
  }
  .inner-common-section .content p {
    font-size: 1rem;
    line-height: 1.5rem;
    word-spacing: -1px;
    text-align: justify;
  }
  .testimonial-content-wrap {
    padding: 16px;
  }
  .contact-box-wrap {
    border: 0px;
  }
  .contact-box-wrap .contact-info-wrap {
    padding: 0;
  }
  .contact-box-wrap .contact-form {
    border-radius: 4px;
  }
  .contact-box-wrap .contact-form img {
    max-width: 90%;
  }
  .contact-list li {
    flex-direction: column;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 24px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
  }
  .contact-list li .contact-info h3 {
    padding-bottom: 4px;
  }
  .contact-list li .icon {
    width: 64px;
    height: 64px;
  }
  .contact-list li .icon i.bi {
    font-size: 32px;
  }
}
@media (max-width: 579.98px) {
  .trusted-by-section {
    padding: 32px 0px;
  }
  .instruction-content-wrap .instruction-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .feature-name {
    font-size: 0.8rem;
  }
  .owl-item .item img {
    max-width: 200px;
  }
}
@media screen and (min-width: 580px) and (max-width: 767.98px) {
  .counter-section {
    padding: 0px;
  }
  .counter-section .row {
    gap: 16px;
  }
  .counter-section .row .col-sm-6.counter-iteams {
    width: calc(50% - 16px);
  }
  .counter-section .counter-iteams {
    padding: 16px 0px;
    margin-bottom: 0px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -ms-border-radius: 8px;
  }
  .counter-section .counter-iteams:last-child {
    margin-bottom: inherit;
  }
}/*# sourceMappingURL=styles.css.map */