.flex {
  display: flex;
}

.flex-hcenter {
  justify-content: center;
}

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

@media (min-width: 992px) {
  .flex__row-reverse {
    flex-direction: row-reverse !important;
  }
}

.flex__vertical {
  flex-direction: column;
}

.flex__vertical-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.p-relative {
  position: relative !important;
}

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

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

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

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

.text-uppercase {
  text-transform: uppercase !important;
}

.w-100 {
  width: 100% !important;
}

.w-max-100 {
  max-width: 100% !important;
}

@media (min-width: 1200px) {
  .w-max-100-md {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .zoom-md {
    transform: scale(1.2);
  }
}

.circle {
  border-radius: 50% !important;
}

.c-blue {
  color: #3e61a4 !important;
}

.c-white {
  color: white !important;
}

.c-red {
  color: #C71C2D !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-md {
  margin-bottom: 50px;
}

.p-30 {
  padding: 30px !important;
}

.bg-blue {
  background: linear-gradient(to right, #3D61A4 0%, #4E8BC0 65%, #3D61A4 100%) !important;
}

.rounded-sm {
  border-radius: 10px;
}

@media (max-width: 730px) {
  .ds-hidden {
    display: none !important;
  }
}

@media (min-width: 949px) {
  .pr-md-24 {
    padding-right: 24px;
  }

  .pl-md-24 {
    padding-left: 24px;
  }
}

@media (min-width: 1200px) {
  .mb-md {
    margin-bottom: 50px;
  }
}

.bordered {
  border: 1px solid #404041;
}

.bordered-bottom {
  border-bottom: 1px solid #404041;
}

@keyframes fadeInMenu {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }

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

@keyframes fadeDownMenu {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

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

@keyframes scrollDown {
  0% {
    transform: translateY(-20px);
  }

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(153, 0, 240, 0.651);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(153, 0, 240, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(153, 0, 240, 0);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline-color: transparent;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-regular.woff?v=1") format("woff");
}

@font-face {
  font-family: "Montserrat Bold";
  src: url("../fonts/montserrat-bold.woff?v=1") format("woff");
}

body.integration-sublanding,
html.integration-sublanding {
  font-family: "Montserrat", sans-serif !important;
  box-sizing: border-box;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
}

section {
  position: relative;
}

ul {
  list-style: none;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  display: inline-block;
  height: auto;
}

a,
input,
label,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.deactivate__scroll {
  position: fixed;
}

.deactivate__scroll .header>.row:after {
  content: "";
  display: block;
  height: 100vh;
  width: 100vw !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  background-color: #3961a5;
  overflow: hidden;
}

body.integration-sublanding {
  font-family: "Montserrat", sans-serif !important;
  color: #3e61a4;
  font-weight: 400;
}

body div.healthcare {
  font-size: 20px !important;
}

body.integration-sublanding h1,
body.integration-sublanding h2,
body.integration-sublanding h3,
body.integration-sublanding h4,
body.integration-sublanding h5,
body.integration-sublanding h6 {
  font-family: "Montserrat Bold", serif !important;
  color: black;
  margin-bottom: 3rem !important;
  font-weight: 900;
}
body.integration-sublanding div#nav a {
  font-family: 'Droid Sans', sans-serif!important;
}

h1 {
  font-size: 5rem;
  line-height: 1;
}

@media (min-width: 992px) {
  h1 {
    font-size: 8rem;
    font-weight: 900;
  }
}

h2 {
  font-size: 2.5rem;
}

@media (min-width: 992px) {
  h2 {
    font-size: 4rem;
  }
}

h3 {
  font-size: 2.2rem;
}

@media (min-width: 992px) {
  h3 {
    font-size: 3.5rem;
  }
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 2.2rem;
}

h6 {
  font-size: 1.8rem;
}

.integration-sublanding > p,
.integration-sublanding > a {
  color: #3e61a4;
  font-family: "Montserrat", sans-serif !important;
  /* line-height: 24px; */
}

p {
  line-height: 30px;
}

p>a {
  /* color: #c4202c !important; */
  text-decoration: underline !important;
}

i {
  font-style: normal;
}

.threecx-banner h3 {
  font-weight: bold !important;
}

.threecx-banner p {
  margin-bottom: 30px;
}

@media (max-width: 730px) {
  .threecx-banner {
    text-align: center;
  }

  .threecx-banner .row {
    padding: 50px 10px;
  }
}

@media (min-width: 730px) {
  .threecx-banner .row {
    padding: 20px;
  }
}


.integration-sublanding .btn,
.integration-sublanding .btn:link,
.integration-sublanding .btn:visited,
.integration-sublanding .btn .wp-block-button__link {
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 11px 2rem;
  outline: none;
  cursor: pointer;
  transition: all 0.4s;
  color: white;
}

@media (min-width: 992px) {
  .btn {
    display: inline-flex;
    align-self: stretch;
    font-size: 16px;
    padding: 15px 40px;
  }
}

@media (min-width: 1200px) {
  .btn:not(.no-extra-padding) {
    padding: 25px 7rem !important;
    font-size: 22px !important;
  }
}

@media (min-width: 1800px) {
  .btn {
    min-width: 150px !important;
  }
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active,
.btn:focus {
  transform: translateY(-1px);
}

.btn--red {
  background: #c4202c;
  color: white;
  border: 1px solid white;
}

.btn--blue {
  background-color: #3e61a4;
  color: white;
  font-weight: bold;
  padding: 12px 30px !important;
  font-size: 14px !important;
}


.btn--white {
  background: white !important;
  ;
  color: #c4202c !important;
  ;
}

.btn--white-blue {
  display: inline-flex;
  background-color: white;
  padding: 12px 30px !important;
  font-weight: bold;
  color: #3e61a4;
  font-size: 14px !important;
}

.btn--rounded {
  border-radius: 21px;
}

.card {
  text-align: center;
}

.card__header-icon {
  width: 77px;
  min-width: 77px;
  height: 77px;
  /* Center vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(61, 97, 164, 0.15);
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .card__header-icon {
    margin-left: 0;
  }
}

.card__header-bg {
  min-height: 16.7rem;
}

.card__body p {
  color: #344860;
}

@media (min-width: 992px) {
  .card__body p {
    padding-right: 7rem;
  }
}

.card__body ul {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .card {
    text-align: left;
  }
}

.list__icons-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}

.list__icons-item-image {
  display: block;
  width: 100%;
  max-width: 14rem;
  max-height: 14rem;
  border-radius: 50%;
}

.list__icons-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 992px) {
  .list__icons-item-image {
    margin-right: 7.5rem;
  }
}

@media (min-width: 992px) {
  .list__icons-item {
    margin-bottom: 7.5rem;
    flex-direction: row;
    text-align: left;
  }
}

.header-banner {
  background-color: #3961a5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.header-banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.header-banner ul li {
  padding: 8px 6px;
  margin-right: 23px;
}

.header-banner ul li a,
.header-banner ul li i {
  color: white;
  font-size: 11px;
}

.header-banner ul .menu-banner-btn-red {
  background-color: #c4202c;
}

@media (min-width: 730px) {
  .header-banner ul {
    justify-content: end;
  }
}

.hnav {
  position: relative;
}

.hnav .sub-menu-container {
  position: relative;
}

.hnav .sub-menu-container:hover .sub-menu {
  visibility: visible;
}

.hnav .sub-menu {
  display: none;
  opacity: 0;
}

.hnav .sub-menu>a {
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 730px) {
  .hnav .sub-menu {
    display: block;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .hnav .sub-menu {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 100%;
    min-width: 135px;
    min-height: 220px;
    background-color: #001f3f;
    padding-top: 24px;
    padding-left: 14px;
    padding-right: 14px;
    z-index: -1;
  }

  .hnav .sub-menu::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    top: 6px;
    left: 6px;
  }
}

.hnav__btn {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  appearance: none;
  transition: all 0.2s;
  z-index: 999;
  border: 0px solid transparent;
  outline: none;
}

.hnav__btn:hover .hnav__btn-span {
  transform: scale(1.1);
}

.hnav__btn-span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  transition: all 0.2s;
  background: black;
}

@media (max-width: 768px) {
  .hnav__btn-span {
    background: black;
  }
}

.header-scrolled .hnav__btn-span,
.header-active .hnav__btn-span {
  background: black;
}

.hnav__btn-span:nth-child(1) {
  top: 6px;
  width: 100%;
}

.hnav__btn-span:nth-child(2) {
  top: 14px;
  width: 100%;
}

.hnav__btn-span:nth-child(3) {
  top: 22px;
  right: 0;
  left: auto;
  width: 50%;
}

@media (min-width: 1800px) {
  .hnav__btn {
    display: none;
  }
}

.hnav__menu {
  display: none;
  opacity: 0;
  padding-top: 20rem;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 130px;
  overflow-x: hidden;
  z-index: 99;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  transform: translateX(-100%);
  text-align: center;
}

.hnav__menu::after {
  width: calc(100vw - 24px);
  height: calc(100vh - 24px);
  top: 10px;
  left: 10px;
}

.hnav__menu::-webkit-scrollbar {
  display: none;
}

.hnav__menu>ul {
  display: inline-block;
  width: 100%;
}

.hnav__menu>ul>li:first-child {
  margin-top: 0;
}

.hnav__menu>ul>li::after:last-of-type {
  content: "";
  height: 2px;
  width: calc(100% - 140px);
  margin: 0 auto;
  display: block;
}

@media (min-width: 1800px) {
  .hnav__menu>ul {
    display: flex;
    justify-content: flex-end;
  }
}

.hnav__menu>ul a {
  color: black;
}

.hnav__menu>ul a:hover {
  padding-bottom: 5px;
  transition: all 0.5s;
}

.hnav__menu>ul li {
  margin: 30px 0;
}

@media (min-width: 1800px) {
  .hnav__menu>ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    margin-right: 5.3rem;
    margin-top: 0;
  }
}

.hnav__menu>ul>li>a {
  font-size: 20px;
}

@media (min-width: 992px) {
  .hnav__menu>ul>li>a {
    font-size: 13px !important;
  }
}

.hnav__menu>ul>li>ul>li {
  margin: 20px 0 0px 0;
  display: block;
}

@media (min-width: 992px) {
  .hnav__menu>ul>li>ul>li {
    margin-top: 35px;
  }
}

.hnav__menu>ul>li>ul>li>a {
  font-size: 15px;
  font-weight: 400;
}

@media (min-width: 1800px) {
  .hnav__menu {
    display: block;
    position: relative;
    opacity: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    overflow: visible;
    background-image: none;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    transform: none;
  }
}

@media (min-width: 1200px) {
  .hnav__menu {
    min-width: 79rem;
  }
}

.active_hnav_btn .hnav__btn-span {
  background: white;
}

.active_hnav_btn .hnav__btn-span:nth-child(1),
.active_hnav_btn .hnav__btn-span:nth-child(3) {
  top: 14px;
  left: 0;
  width: 100%;
}

.active_hnav_btn .hnav__btn-span:nth-child(2) {
  opacity: 0;
}

.active_hnav_btn .hnav__btn-span:nth-child(1) {
  transform: rotate(45deg);
}

.active_hnav_btn .hnav__btn-span:nth-child(3) {
  transform: rotate(-45deg);
}

.active__menu {
  display: block;
  animation: fadeInMenu 0.5s ease-in-out forwards;
}

.slideDown {
  display: block !important;
  animation: fadeDownMenu 0.4s ease forwards;
}

.active_page a {
  color: white !important;
}

.socials {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px auto;
}

.socials li {
  border-radius: 50%;
  transition: all 0.5s;
  margin-right: 30px;
}

.socials li:last-of-type {
  margin-right: 0;
}

.socials li i {
  transition: all 0.5s;
}

.socials li:hover {
  transition: all 0.5s;
}

.socials li:hover i {
  transition: all 0.5s;
  color: white;
}

.socials a {
  /* Center vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transition: all 0.5s;
  background-color: #3961a5;
}

.socials a i {
  font-size: 18px !important;
  font-weight: 350;
  margin-right: 0;
  color: white;
}

@media (min-width: 992px) {
  .socials a {
    width: 5rem;
    height: 5rem;
  }

  .socials a i {
    font-size: 22px !important;
  }
}

@media (min-width: 992px) {
  .socials {
    margin-bottom: 0;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
}

.swiper-pagination-bullets {
  width: auto !important;
  z-index: 10;
}

.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: auto;
  margin-right: 20px;
  position: relative;
  z-index: 99;
  background-color: transparent;
  border: 1px solid white;
  opacity: 1;
  margin-top: 20px;
}

@media (min-width: 768px) {

  .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 2rem;
  }
}

.swiper-pagination-bullet-active {
  position: relative;
}

.swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  top: 1px;
  left: 1px;
  position: absolute;
  background-color: #f900bf;
  border-radius: 50%;
}

.btn--container {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .btn--container .btn {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .btn--container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .btn--container-left {
    justify-content: flex-start;
  }

  .btn--container-center {
    justify-content: center !important;
  }

  .btn--container-right {
    justify-content: flex-end;
  }

  .btn--container .btn {
    margin-right: 10px;
  }
}

.btn--container .btn:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.img__container {
  position: relative;
  display: block;
  width: 100%;
  min-height: 40rem;
  overflow: hidden;
}

.img__container-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img__container::after {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  top: 15px;
  left: 15px;
}

@media (max-width: 768px) {
  .img__container-mobile {
    display: block;
  }

  .img__container-desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .img__container-mobile {
    display: none;
  }

  .img__container-desktop {
    display: block;
  }
}

.text__container {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.text__container h3 {
  color: #3961a5 !important;
}

.text__container p {
  margin-bottom: 1.5rem !important;
  text-align: center;
}

.text__container p a {
  color: #c4202c !important;
  text-decoration: underline !important;
}

@media (min-width: 992px) {
  .text__container p {
    text-align: left;
  }

  .text__container p:not(:last-of-type) {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 992px) {
  .text__container {
    margin-bottom: 0;
    text-align: left;
  }
}

.default-text-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.default-text-section p {
  margin-bottom: 35px;
  text-align: center;
}

@media (min-width: 992px) {
  .default-text-section p {
    font-size: 20px !important;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .default-text-section {
    padding-top: 9.5rem;
    padding-bottom: 12.5rem;
  }
}

/* .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
} */
.footer-logo {
  max-width: 30rem;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.footer .social-container {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .footer .social-container {
    margin-bottom: 60px;
  }
}

.footer-menu li {
  margin-bottom: 20px;
}

.footer-menu li:last-of-type {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .footer-menu li {
    margin-bottom: 40px;
  }
}

.footer-mega {
  background-color: #D8E0ED;
}

.footer-mega *:not(i, .c-red) {
  font-size: 15px !important;
  color: #344860 !important;
}

.footer-mega h4 {
  margin-bottom: 18px !important;
}

.footer-mega ul {
  margin-bottom: 30px;
}

.footer-mega .footer-col {
  min-width: 50%;
}

@media (max-width: 730px) {
  .footer-mega .footer-col {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}

@media (min-width: 730px) {
  .footer-mega .footer-col {
    min-width: 31.5rem;
  }
}

@media (min-width: 992px) {
  .footer-mega .footer-col {
    min-width: 18rem;
  }
}

.footer-mega .footer-logo {
  max-width: 13.5rem;
}

.footer-mega .socials--item {
  margin-right: 13px;
}

.footer-mega .socials--item a {
  width: 30px !important;
  height: 30px !important;
}

.footer-mega .socials--item a i {
  font-size: 14px !important;
}

@media (min-width: 730px) {
  .footer-mega .socials {
    margin-left: 0;
  }
}

.footer-mega .swiper-button-next-footer {
  margin-right: 18px;
}

.footer-mega .footer-slider-wrapper {
  border: 3px solid white;
  width: 100%;
  max-width: 19rem;
  min-height: 17.5rem;
  overflow: hidden;
}

.footer-mega .footer-slider-wrapper p {
  font-weight: bold !important;
}

@media (max-width: 730px) {
  .footer-mega .footer-slider-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 730px) {
  .footer-mega .footer-slider-wrapper {
    max-width: 25rem;
    padding-left: 15px;
  }
}

.copy-rights {
  background-color: #C61C2E;
  padding: 10px 0;
}

.copy-rights .row {
  justify-content: space-between !important;
}

.copy-rights .row * {
  font-size: 13px !important;
}

.section-form {
  background-color: #c4202c;
  background-image: url("../images/points.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  .section-form {
    padding-top: 10rem;
    padding-bottom: 6.7rem;
  }
}

.section-form input::placeholder,
.integration-sublanding input::placeholder,
.section-form textarea::placeholder,
.integration-sublanding textarea::placeholder {
  font-size: 20px !important;
  font-weight: bold;
  font-family: "Montserrat", sans-serif !important;
}

.section-form .btn {
  font-weight: bold !important;
}

.section-form p {
  color: white !important;
  max-width: 85rem;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .section-form p {
    margin-bottom: 7.5rem;
  }
}

.section-form h3 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5rem !important;
}

@media (min-width: 992px) {
  .section-form h3 {
    font-size: 3.5rem;
    margin-bottom: 7.5rem !important;
  }
}

.section-form .form-field {
  max-width: 85rem;
}

@media (min-width: 992px) {
  .section-form .form-field>.col--half:first-of-type {
    padding-right: 25px;
  }
}

@media (min-width: 992px) {
  .section-form .form-field>.col--half:last-of-type {
    padding-left: 25px;
  }
}

.section-form .form-field input,
.section-form .form-field textarea,
.section-form .form-field select {
  width: 100%;
  padding: 10px;
  color: black;
  font-weight: 400;
  border: 1px solid transparent;
  margin-bottom: 10px;
  border-radius: 10px;
}

@media (min-width: 992px) {

  .section-form .form-field input,
  .section-form .form-field textarea {
    padding: 20px;
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .section-form .form-field {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px auto;
  }
}

.row {
  display: flex;
  flex-direction: column;
  width: calc(100% - 34px);
  margin: 0 auto;
}

.row:last-of-type {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 90rem;
  }

  .row-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .row {
    max-width: 114rem !important;
  }

  .row-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 1800px) {
  .row {
    max-width: 140rem !important;
  }

  .row-100 {
    max-width: 100% !important;
  }
}

.row .col {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.row .col:last-of-type {
  margin-bottom: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col {
    margin-bottom: 0;
  }

  .col--half {
    width: 50%;
  }

  .col--half:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  .col--1-3 {
    width: 33.3333333333%;
  }

  .col--1-3:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  .col--2-3 {
    width: 66.6666666667%;
  }

  .col--2-3:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  .col--1-4 {
    width: 25%;
  }

  .col--1-4:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  .col--2-4 {
    width: 50%;
  }

  .col--3-4 {
    width: 75%;
  }

  .col--3-4:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }
}

.header {
  position: fixed;
  min-height: 10rem;
  width: 100%;
  z-index: 999;
  background-color: white;
}

.header__logo-box {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 98;
  max-width: 14.5rem;
  max-height: 8rem;
  transition: all 0.1s;
}

@media (min-width: 992px) {
  .header__logo-box {
    margin-top: 0;
    margin-left: 0;
    max-width: 14.5rem;
    max-height: 8rem;
    padding: 10px;
  }
}

.header__logo-image {
  display: block;
  min-width: 13rem;
  min-height: 42px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .header__logo-image {
    min-width: 20rem;
    min-height: 7rem;
    margin-top: -35px;
  }
}

.header>.row {
  max-width: none !important;
  width: 90%;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

@media (min-width: 1800px) {
  .header>.row {
    width: 100%;
    padding-left: 39rem;
    padding-right: 39rem;
  }
}

.header-scrolled .header__logo-box,
.header-active .header__logo-box {
  max-height: auto;
  transition: all 0.5s;
}

.header-scrolled .header__logo-image,
.header-active .header__logo-image {
  min-width: 50px;
  min-height: auto;
  object-fit: contain;
}

@media (min-width: 992px) {

  .header-scrolled .header__logo-image,
  .header-active .header__logo-image {
    min-width: 50px;
    min-height: auto;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  /*margin-top: 16rem; */
}

.hero-sm {
  display: flex;
  height: 40vh;
}

@media (min-width: 768px) {
  .hero {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .hero {
    /* margin-top: 10rem; */
    height: 80rem;
  }

  .hero-sm {
    display: flex;
    height: 28.6rem;
  }
}

.hero-inner {
  max-height: 53rem;
}

@media (min-width: 992px) {
  .hero-inner {
    max-height: 74rem;
  }
}

.hero-swiper {
  height: 100%;
  width: 100%;
}

.hero-overtop {
  position: absolute;
  display: block !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(62, 97, 164, 0.6);
  z-index: 2;
  pointer-events: none;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__image-mobile {
    display: block;
  }

  .hero__image-desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .hero__image-mobile {
    display: none;
  }

  .hero__image-desktop {
    display: block;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: calc(100% - 22px);
}

.hero-content h1,
.hero-content h2,
.hero-content p {
  margin-bottom: 2rem;
  color: white !important;
}

@media (min-width: 992px) {
  .hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 97rem;
  }

  .hero-content h1,
  .hero-content h2,
  .hero-content p {
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 992px) {
  .listing-section-banner .row {
    align-items: center;
  }
}

.logos-section .row {
  gap: 48px;
}

.logos-section .row .logo {
  width: 100%;
  cursor: pointer;
  transition: all 0.5s;
}

@media (min-width: 992px) {
  .logos-section .row .logo {
    max-width: calc((100% - 192px) / 5);
  }

  .logos-section .row .logo:hover .card {
    scale: 1.05;
  }
}

@media (min-width: 992px) {
  .logos-section .row {
    justify-content: space-between;
    max-width: 182.4rem !important;
  }
}

.logos-section .card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 2rem;
  min-height: 17.5rem;
  width: 100%;
  transition: all 0.5s;
}

@media (min-width: 1200px) {
  .logos-section .card {
    padding: 23px 7rem;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 5rem;
}

/* .section-heading h3 {
  text-transform: uppercase;
} */

@media (min-width: 992px) {
  .section-heading {
    margin-bottom: 9rem;
  }
}

.text-img-section {
  background-color: #f2f2f3;
}

@media (min-width: 992px) {
  .text-img-section .text-img-block:nth-of-type(even) .row {
    flex-direction: row-reverse;
  }

  .text-img-section .text-img-block:nth-of-type(even) .row .text__container {
    margin-left: 5rem;
  }
}

.text-img-block {
  background-color: #f2f2f3;
}

.text-img-block .img__container img {
  opacity: 0.5;
}

.text-img-block .text__container {
  padding-top: 30px;
}

.text-img-block .text__container>.row {
  margin-top: 3rem;
}

.text-img-block .text__container>.row p {
  font-weight: bold;
}

@media (min-width: 1200px) {
  .last-read-button {
    max-width: 60rem;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .last-read-button {
    max-width: 45rem;
  }
}

@media (min-width: 992px) {
  .text-img-block .text__container>.row {
    margin-top: 6rem;
  }
}

@media (min-width: 992px) {
  .text-img-block .text__container {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1200px) {
  .text-img-block .text__container {
    padding-top: 22rem;
    padding-bottom: 22rem;
    padding-left: 10rem;
  }

  .text-img-block .text__container p {
    max-width: 60rem;
  }
}

@media (min-width: 992px) {
  .text-img-block .flex__row-reverse .text__container {
    padding-right: 5rem;
  }
}

@media (min-width: 1200px) {
  .text-img-block .flex__row-reverse .text__container {
    padding-left: 15rem;
    padding-right: 10rem;
    max-width: 100%;
  }
}

@media (min-width: 1800px) {
  .text-img-block .flex__row-reverse .text__container {
    padding-left: 26rem;
  }
}

@media (min-width: 992px) {
  .text-img-block h3 {
    line-height: 65px;
  }
}

@media (min-width: 992px) {
  .text-img-block p {
    max-width: 65rem;
  }
}

@media (max-width: 768px) {
  .text-img-block .img__container:not(.description__section .img__container) {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.video__container {
  position: relative;
  z-index: 10;
  height: 30rem;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .video__container {
    max-width: 140.6rem;
    height: 64rem;
    border-radius: 40px;
    transition: all 0.5s;
  }

  .video__container:hover .play_btn {
    animation-name: pulse;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transition: all 0.5s;
  }
}

.video__container .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  z-index: 10;
  opacity: 0.8;
  border-radius: 50%;
  pointer-events: none;
}

.video__container .play_btn img {
  object-fit: cover;
}

@media (min-width: 992px) {
  .video__container .play_btn {
    width: 20rem;
    height: 20rem;
    transition: all 0.5s;
  }
}

W .video__player,
.video__container video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.video img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero .video__player,
.hero .video__container,
.hero video {
  height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  object-fit: cover;
  border-radius: 0 !important;
}

.case-study2 h1 {
  margin-bottom: 2rem !important;
}

.case-study3 h1 {
  margin-bottom: 2rem !important;
}

.landing .hero {
  background-color: #205ca1;
}

@media (max-width: 768px) {
  .landing .hero {
    height: auto;
  }

  .landing .hero__image {
    object-fit: contain;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}

@media (min-width: 992px) {
  .landing .hero__image {
    object-fit: contain;
  }
}

@media (min-width: 1200px) {
  .landing div.case-study3 .hero__image {
    object-position: 50% 50% !important;
    object-fit: cover;
  }

  .landing .hero__image {
    object-position: top left;
    object-fit: cover;
  }

}

@media (min-width: 992px) {
  .landing .hero-overtop {
    display: none;
  }
}

@media (max-width: 768px) {
  .landing .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .landing .hero-content.main-landing {
    max-width: 57rem;
    /* left: auto; */
    right: 5rem;
    transform: translate(0, -50%);
  }
}

@media (min-width: 1800px) {
  .landing .hero-content .main-landing {
    max-width: 63rem;
    right: 30rem;
  }
}

.landing .listing-section-banner {
  background-image: url("../images/transparent-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 4rem;
}

.landing .listing-section-banner p,
.landing .listing-section-banner h1,
.landing .listing-section-banner h2,
.landing .listing-section-banner h3,
.landing .listing-section-banner h4,
.landing .listing-section-banner h5 {
  color: #3961a5 !important;
}

.landing .listing-section-banner .col--1-3 {
  line-height: 1;
  margin-bottom: -8px;
}

@media (min-width: 992px) {
  .landing .listing-section-banner {
    padding-top: 9rem;
  }
}

.landing .listing-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212f61;
  background-image: url("../images/points.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.landing .listing-section p,
.landing .listing-section h1,
.landing .listing-section h2,
.landing .listing-section h3,
.landing .listing-section h4,
.landing .listing-section h5 {
  color: white !important;
}

@media (min-width: 992px) {
  .landing .listing-section {
    padding-top: 9rem;
    padding-bottom: 12rem;
  }
}

.landing .section-info .text__container {
  background-image: url("../images/efficiency.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

.landing .section-info .text__container p {
  color: #3e61a4 !important;
}

/* so nav doesnt warp on bigger screens */
@media (min-width: 768px) {
  #topnavwrapper .topnav .nav {
    width: 42.5% !important;
  }
}

/*#navwrapper {
  width: 67% !important;
}*/
#pages.healthcare button {
  border: none;
  border-radius: 10px;
}

#pages.healthcare div#target-el {
  position: relative;
}

#pages.healthcare div#target-el span {
  position: absolute;
  top: -130px;
}

/*3CX Start*/
@media (min-width: 730px) {
  .threecx-landing .row {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .threecx-landing .row .col--half {
    width: 50%;
  }

  .threecx-landing .row .col--half:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  .threecx-landing .row .col--1-3 {
    width: 33.3333333333%;
  }

  .threecx-landing .row .col--1-3:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  .threecx-landing .row .col--2-3 {
    width: 66.6666666667%;
  }

  .threecx-landing .row .col--2-3:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .threecx-landing h3 {
    font-size: 3.7rem;
    line-height: 4.5rem;
  }
}

.threecx-landing header *:not(i),
.threecx-landing footer *:not(i) {
  font-family: "Droid Sans" !important;
}

.threecx-landing .hero .row {
  position: relative;
  justify-content: start !important;
}

.threecx-landing .hero-overtop {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0) 100%);
}

.threecx-landing .hero-content {
  text-align: center;
}

.threecx-landing .hero-content img {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .threecx-landing .hero-content {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    max-width: 62.2rem;
    text-align: left;
  }
}

.threecx-landing .icon-section {
  padding-top: 50px;
}

.threecx-landing .icon-section h4 {
  margin-bottom: 10px !important;
}

.threecx-landing .icon-section-table {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: black;
}

.threecx-landing .icon-section-table .card {
  padding: 50px 17px;
  font-size: 16px !important;
}

.threecx-landing .icon-section-table .card__header {
  box-shadow: none;
}

.threecx-landing .icon-section-table .card ul {
  list-style: disc;
  list-style-position: inside;
}

.threecx-landing .icon-section-table .card ul li {
  font-size: 14px !important;
  line-height: 27px;
}

.threecx-landing .icon-section-table .card p {
  margin-bottom: 30px;
  line-height: 24px;
}

@media (min-width: 992px) {
  .threecx-landing .icon-section-table .card {
    padding: 10.3rem 8.3rem;
  }
}

.threecx-landing .icon-section-table .col--1-3:nth-of-type(odd) {
  background: linear-gradient(to right, #4E8BC0, #3D61A4);
}

.threecx-landing .icon-section-table .col--1-3:nth-of-type(odd) * {
  color: white !important;
}

@media (min-width: 730px) {
  .threecx-landing .icon-section-table .col--1-3 {
    margin: 0 auto;
  }
}

@media (min-width: 730px) {
  .threecx-landing .icon-section .col--1-3 {
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .threecx-landing .icon-section {
    padding-top: 8rem;
    padding-bottom: 20px;
  }

  .threecx-landing .icon-section .col--1-3 {
    padding: 0px;
  }
}

.threecx-landing .threecx-banner p {
  font-size: 16px !important;
}

@media (min-width: 992px) {
  .threecx-landing .threecx-banner .col--half:first-of-type {
    padding-top: 40px;
    padding-left: 40px;
    padding-bottom: 6rem;
  }
}

.threecx-landing .banner--img {
  background-image: url(../images/dots.png);
  background-position: center;
  background-size: cover;
}

@media (max-width: 730px) {
  .threecx-landing .banner--img .col--half {
    margin-bottom: 20px;
  }
}

.threecx-landing .banner--img p {
  color: black !important;
}

.threecx-landing .features {
  margin-top: 50px;
  padding: 50px 0;
}

.threecx-landing .features .section-heading {
  margin-bottom: 0 !important;
}

.threecx-landing .features .feature {
  font-size: 18px;
  margin-top: 40px;
}

.threecx-landing .features .feature .col--half img {
  margin-top: 20px;
  margin-bottom: 20px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .threecx-landing .features .feature .col--half img {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 730px) {
  .threecx-landing .features .feature .col--half:first-of-type {
    padding-right: 10px;
  }

  .threecx-landing .features .feature .col--half:last-of-type {
    padding-left: 10px;
  }
}

@media (min-width: 992px) {
  .threecx-landing .features .feature .col--half:first-of-type {
    padding-right: 40px;
  }

  .threecx-landing .features .feature .col--half:last-of-type {
    padding-left: 40px;
  }
}

.threecx-landing .features .feature ul {
  color: white;
  list-style: disc;
  list-style-position: inside;
}

@media (min-width: 992px) {
  .threecx-landing .features .feature {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .threecx-landing .features {
    margin-top: 8.2rem;
    padding: 8rem 0;
  }
}

.threecx-landing .footer>div {
  justify-content: center;
}

.threecx-landing .footer .socials {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .threecx-landing .footer .socials {
    margin-left: 0;
  }
}

.threecx-landing .copy-rights .row {
  flex-direction: row !important;
}

/*Integrations Start*/
.integration-grid {
  background-color: #F6F8FA;
}

@media (min-width: 992px) {
  .integration-grid .hero-content h2 {
    font-size: 5rem;
    font-weight: bold;
  }
}

.integration-grid .card {
  background-color: white;
}

.integration-grid .integrations {
  padding: 50px 0;
}

.integration-grid .integrations .row {
  gap: 32px;
}

@media (min-width: 992px) {
  .integration-grid .integrations .row .col--half {
    width: calc(50% - 16px);
  }
}

@media (min-width: 992px) {
  .integration-grid .integrations .row .col--1-3 {
    width: calc(1 * (100% - 64px) / 3);
  }
}

.integration-grid .integrations .row .col--half .bordered,
.integration-grid .integrations .row .col--half .bordered-bottom,
.integration-grid .integrations .row .col--1-3 .bordered,
.integration-grid .integrations .row .col--1-3 .bordered-bottom {
  border-color: #DEE2E6;
}

.integration-grid .integrations .row .col--half .card .card__body h4,
.integration-grid .integrations .row .col--1-3 .card .card__body h4 {
  font-size: 3rem;
}

.integration-grid .integrations .row .col--half .card .card__body p,
.integration-grid .integrations .row .col--1-3 .card .card__body p {
  font-size: 16px;
  line-height: 24px;
  padding-right: 0;
}

.integration-grid .integrations .row:last-of-type {
  margin-top: 32px;
}

@media (min-width: 992px) {
  .integration-grid .integrations {
    padding: 104px 0 80px 0;
  }
}

@media (min-width: 992px) {
  .integration-landing .hero-content {
    /* top: 28rem;this was causing it to get pushed down too much */
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .integration-landing .hero-content h2 {
    font-size: 5.4rem;
  }
}

@media (min-width: 992px) {
  .integration-landing .hero-content p {
    max-width: 71rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .integration-landing .hero-content p {
    font-size: 27px;
  }
}

.integration-landing .image-section {
  padding: 50px 0 0 0;
}

@media (min-width: 992px) {
  .integration-landing .icon-section .card__body p {
    padding-right: 3.2rem;
  }
}

.integration-landing .banner {
  background-color: #F4F4F4;
  padding: 77px 0;
}

.integration-landing .banner .row {
  padding: 0;
}

@media (min-width: 992px) {
  .integration-landing .banner .row h3 {
    font-size: 27px;
    line-height: 1.75;
  }
}

.integration-landing .banner .row img {
  margin-lefT: 14.7rem;
}

.integration-landing .logos-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  .integration-landing .logos-section {
    padding-top: 10.4rem;
    padding-top: 10.4rem;
  }
}

.integration-landing .logos-section .btn {
  font-weight: bold;
}

.integration-landing .section-form {
  background-image: url("../images/form.png");
  background-size: cover;
}

.integration-landing .section-form .form-field {
  max-width: 100%;
  gap: 24px;
}

.integration-landing .section-form .form-field .button {
  width: 10%;
}

@media (min-width: 992px) {

  .integration-landing .section-form input,
  .integration-landing .section-form textarea,
  .integration-landing .section-form select {
    padding: 12px 20px;
  }

  .integration-landing .section-form select {
    height: 49px;
  }
}

.integration-landing .section-form input::placeholder,
.integration-landing .section-form textarea::placeholder {
  font-size: 14px !important;
  font-weight: normal;
}

.integration-landing .section-form .btn {
  padding: 15px 40px !important;
  font-size: 14px !important;
  border: none;
  border-radius: 24px;
  background-color: #C51C2C;
  color: white;
  justify-content: center;
}

.integration-landing .integrations p span.text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.integration-landing .integrations p span small {
  color: #3a61a4;
  cursor: pointer;
}

.integration-landing .integrations .col--half p span.text {
  -webkit-line-clamp: 4;
}

.shadow {
  box-shadow: 1px 2px 20px rgba(64, 64, 65, 0.19);
}

.popup-wrapper {
  display: none;
  overflow-y: auto;
}

.popup-wrapper p {
  color: black;
  font-size: 16px;
}

.popup-wrapper-active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(52, 72, 96, 0.9);
  z-index: 1000;
}

.popup--closer {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: black;
  border-radius: 50%;
}

.popup--closer i {
  font-size: 25px;
}

@media (min-width: 992px) {
  .popup--closer {
    top: -25px;
    right: -25px;
  }
}

.popup-content-container {
  position: relative;
  width: 100%;
  overflow: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.popup-image {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .popup-image {
    min-width: 18.5rem;
    margin-right: 8rem;
  }
}

.popup-content {
  position: relative;
  z-index: 1000;
  background-color: white;
  width: 100%;
  max-width: calc(100% - 22px);
  border-radius: 6px;
  padding: 40px 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 730px) {
  .popup-content {
    max-width: calc(100% - 10rem);
    padding: 80px;
  }
}

@media (min-width: 992px) {
  .popup-content {
    flex-direction: row;
  }
}

@media (min-width: 1400px) {
  .popup-content {
    max-width: 120rem;
  }
}

.integration-landing button.card {
  background-color: white;
  border: none;
}

/*Integrations end*/

/*Integrations sub page start*/
.integration-sublanding .hero {
  /*margin-top: 15rem;*/
  height: 30vh;
}

.integration-sublanding .hero-content h2 {
  font-size: 3.6rem;
  margin-bottom: 0 !important;
}

@media (max-width: 730px) {
  .integration-sublanding .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 949px) {
  .integration-sublanding .hero-content h2 {
    font-size: 4rem;
  }
}

/*@media (min-width: 730px) {
  .integration-sublanding .hero {
    margin-top: 12.2rem;
    height: 22vh;
  }
}*/
.integration-sublanding .features {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F6F8FA;
}

.integration-sublanding .features .feature .col--half {
  text-align: center;
}

.integration-sublanding .features .feature .col--half .img {
  margin-bottom: 30px;
}

@media (min-width: 949px) {
  .integration-sublanding .features .feature .col--half .img {
    margin-bottom: 0;
  }
}

@media (min-width: 949px) {
  .integration-sublanding .features .feature .col--half {
    text-align: left;
  }
}

.integration-sublanding .features p {
  color: #344860;
  font-size: 20px;
}

@media (min-width: 949px) {
  .integration-sublanding .features .img {
    object-fit: none !important;
  }
}

.integration-sublanding .icon-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: white;
}

@media (min-width: 949px) {
  .integration-sublanding .icon-section .row {
    justify-content: start;
  }
}

@media (min-width: 949px) {
  .integration-sublanding .icon-section .card__header {
    margin-right: 16px;
  }
}

.integration-sublanding .icon-section .card p {
  color: #344860 !important;
  line-height: 30px;
  font-size: 20px;
}

@media (min-width: 949px) {
  .integration-sublanding .icon-section .card {
    display: flex;
  }
}

.integration-sublanding .banner {
  background-color: #F6F8FA;
  padding: 50px 0;
}

.integration-sublanding .banner .row {
  padding: 0;
}

@media (min-width: 949px) {
  .integration-sublanding .banner .row h3 {
    font-size: 27px;
    font-weight: 100;
    line-height: 40px;
  }
}

.integration-sublanding .banner .row img {
  margin-lefT: 14.7rem;
}

.integration-sublanding .section-form {
  background-image: url(/hc_resources/images/contact-form-bg.png);
  background-position: center;
  background-size: cover;
}

.integration-sublanding .section-form .btn {
  width: 50%;
  padding: 15px 40px !important;
  border: none;
  border-radius: 24px;
  background-color: #C51C2C;
  color: white;
  justify-content: center;
}

/*Integrations sub page end*/
/* latin */
@font-face {
  font-family: 'Droid Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/droidsans/v18/SlGVmQWMvZQIdix7AFxXkHNSbQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Droid Sans';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/droidsans/v18/SlGWmQWMvZQIdix7AFxXmMh3eDs1Zw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}