@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

html,
body {
    scroll-behavior: smooth;
	overflow-x:hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

body,
p {
    line-height: 1.4;
    font-family: "Open Sans", sans-serif;
	color:#2d1939;
	font-size:25px;
}
li {
	color:#2d1939;	
}

a {
    text-decoration: none;
}

.grape {
    color: #5e3869;
}

.peacock {
    color: #0f6eab;
}

.seafoam {
    color: #23c399;
    fill: #23c399;
}

.white {
    color: #fff;
}

.mulberry {
    color: #2d1939;
}

.salmom {
    color: #fc7c64;
}

.fog {
    color: #eaf2ff;
}

.grape_bg {
    background: #5e3869;
}

.peacock_bg {
    background: #0f6eab;
}

.seafoam_bg {
    background: #23c399;
}

.mulberry_bg {
    background: #2d1939;
}

.salmom_bg {
    background: #fc7c64;
}

.fog_bg {
    background: #eaf2ff;
}
.dark_gray_bg {
    background:#a8aec6;
}

.container {
    margin: 0 auto;
    max-width: 1540px;
    padding: 0px 35px;
	width:94%;
}


.page-loader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5e3869;
    z-index: 999
}

.page-loader .spin {
    width: 80px;
    height: 80px
}

.page-loader .loader {
    width: 100%;
    height: 80px
}

.loader span {
    position: absolute;
    display: block;
    width: 52px;
    height: 52px
}

.loader span img {
    width: 100%
}

.loader span:nth-child(1) {
    bottom: 0;
    left: 0
}

.loader span:nth-child(2) {
    top: 0;
    right: 0
}

.spin {
    -webkit-animation: spin 2s linear infinite;
    animation-delay: 1s
}

.translate1 {
    -webkit-animation: translate1 2s linear infinite
}

.translate2 {
    -webkit-animation: translate2 2s linear infinite
}

@keyframes spin {
    0%,50% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(720deg)
    }
}

@keyframes translate1 {
    0%,50% {
        transform: translate(0,0)
    }

    75% {
        transform: translate(-10px,10px)
    }

    100% {
        transform: translate(0,0)
    }
}

@keyframes translate2 {
    0%,50% {
        transform: translate(0,0)
    }

    75% {
        transform: translate(10px,-15px)
    }

    100% {
        transform: translate(0,0)
    }
}





/**************Header CSS START*****************/
.logo img {
    max-width: 217px;
    width: 100%;
    min-width: 217px;
}

.top_head p {
    color: #fff;
    font-size: 20px;
}
.top_head a {
    color: #22c399;
}
.top_head {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #2D1939;
    padding: 13px 0px;
}

header#header {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 99;
}

/* Navbar container */



div#mobileMenu ul ul.submenu li a {
    display: grid;
	column-gap: 20px;
    grid-template-columns: 36px auto;
}
div#mobileMenu .submenu img {
    width: 42px;
}

@media screen and (min-width:1025px) {
button.menu-toggle {
    display: none;
}
div#mobileMenu ul ul.submenu li a span {
    color: #4a4a4a;
    line-height: 1.3;
    font-size: 19px;
}
div#mobileMenu ul ul.submenu li a strong {
    color: #2d1939;
    font-size: 21px;
    margin-bottom: 3px;
    display: inline-block;
}

.menu_link {
	display: flex;
    list-style: none;
}
div#mobileMenu ul li {
    margin: 0px 34px;
    font-weight: 400;
    position: relative;
    line-height: normal;
    font-family: "Roboto", sans-serif;
}
.fr div#mobileMenu ul li {
    margin: 0px 16px;
}
.fr div#mobileMenu  .dropdown>a::after {
    left: 102%;
    top: 9px;
    width: 18px;
    height: 18px;
}
div#mobileMenu ul li a {
    text-decoration: none;
    color: #2D1939;
    font-size: 22px;
}
.submenu-inner {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    background: white;
}
div#mobileMenu .submenu {
    display: none;
    position: absolute;
    top: 24px;
    left: 0;
    min-width: 510px;
    z-index: 10;
    padding-top: 44px;
}
div#mobileMenu ul li ul.submenu li:last-child {
    margin-bottom: 0;
}
div#mobileMenu .dropdown:hover .submenu {
	display:block;
}
div#mobileMenu ul ul.submenu li a {
    /*display: block;*/
    color: rgb(45, 25, 57);
    font-size: 19px;
    padding: 20px 30px;
}
div#mobileMenu ul ul.submenu li a:hover {
    background: #eaf2ff;
}
div#mobileMenu ul li.menu_btn {
    margin: 0;
    margin-left: 30px;
    transition: transform 0.3s ease-in-out;
}
div#mobileMenu ul li.menu_lang {
    margin: 0px;
    margin-left: 15px;
}
span.toggle-arrow {
    display: none;
}
div#mobileMenu li a span.new {
    background: #eaf2ff;
    font-size: 14px;
    padding: 9px 15px;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    top: -2px;
}
div#mobileMenu ul li ul.submenu li {
    margin: 0;
    list-style: none;
}
div#mobileMenu  .dropdown>a::after {
    content: "";
    position: absolute;
    left: 105%;
    top: 8px;
    background: url(../images/down-arrow-menu.png) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
}
li.menu_btn a {
    background: #22c399;
    padding: 10px 27px;
    font-weight: 700;
    border-radius: 30px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

li.menu_btn a:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.08);
}
li.menu_btn a:hover {
	    background-color: #1DAA84;
}
li.menu_btn:active, li.menu_btn:focus {
	transform: translateY(1px) !important;
}
 li.menu_lang {
    margin: 0px;
    margin-left: 15px;
}

li.menu_btn {
    margin: 0;
    margin-left: 30px;
	transition: transform 0.3s ease-in-out; 
}
li.menu_btn:hover {
	transform: translateY(-2px); 
}

}


.navbar {
    background: white;
    padding: 33px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: relative;
    border-bottom: 0;
}


/**************Header CSS END*****************/



/**************Home Page CSS START*****************/

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none; /* Hidden by default */
  cursor: pointer;
  z-index: 1000;
}

.scroll-top img {
  width: 61px;
  height: 61px;
  transition: transform 0.3s ease;
}

.scroll-top img:hover {
    transform: translateY(-15px);
}
.scroll-top {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  display: block;
}

.left_banner h1, .feature_sec1 h1 {
    font-size: 56px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 42px;
    margin-bottom: 32px;
}
.f_integrations .left_int {
    padding-bottom: 0;
}
.f_integrations a.security_link {
    margin-top: 50px;
}
.feature_list li {
    font-weight: 500 !important;
}
.left_banner h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0f6eab;
    width: 126px;
    height: 10px;
    border-radius: 15px;
}

.left_banner p, .feature_sec1 p {
    font-size: 25px;
}
.padding_section {
	padding-top:110px;
	padding-bottom:110px;
}
.home_banner {
    background: #eaf2ff;
    padding-top: 90px;
    position: relative;
}
.home_banner .left_banner  p {
    padding-right: 10px;
}
.home_banner .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
	align-items: center;
    column-gap: 60px;
}

.banner_btn {
    display: flex;
    gap: 60px;
    margin-top: 65px;
    margin-bottom: 74px;
}

.home_section3 {
    margin-top: 130px;
    margin-bottom: 130px;
}

.home_section3 h2, .heading44 {
    font-size: 44px;
}

.home_section3 p {
    font-size: 25px;
    margin-top: 30px;
}

a.down-arrow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translateX(-50%);
}
/*.test-content {
    text-align: center;
}*/
/**************Home Page CSS END*****************/

/* ---------------- logo sec css---------------- */
.home_section2 {
    padding: 100px 0 60px 0;
    box-shadow: inset 0 -40px 40px #dddddd40;
}

.home_section2 h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}

.logo_section_main .logo_section {
    display: flex;
    align-items: center;
    column-gap: 80px;
}

.logo_section_main .logo_section img {
    width: auto;
    height: 60px;
    filter: grayscale(1);
}

.logo_section_main {
    display: flex;
  animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  position: relative;
  column-gap: 80px;
}

#sec_2 {
  overflow: hidden;
  width: 100%;
  background: white;
  padding: 20px 0;
}
div#trusted {
    max-width: 1710px;
	margin:0 auto;
}
.logo_slider {
  display: flex;
  position: relative;
  width: 100%;
}
.logo_grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 37px;
    padding: 0px;
    row-gap: 70px;
    margin-top: 70px;
}
.logo_grid + .logo_grid {
	margin-top:35px;
}

.logo_grid img {
    height: auto;
}
.logo_track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: scroll;
    animation-fill-mode: forwards;
    margin-left: 50px;
}

.logo_track img {
  height: 60px;
  /*filter: grayscale(1);
  transition: filter 0.3s;*/
}
.logo_track img:hover {
  filter: grayscale(0);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ---------------- logo sec css---------------- */

.home_section3_in {
    display: grid;
    gap: 35px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 100px;
}

.home_section3_box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature_core .home_section3_box:hover,
.home_section5 .home_section3_box:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transform: translateY(0px);
}

.home_section3_box {
    background: #eaf2ff;
    border-radius: 40px;
    padding: 40px 50px 40px 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.home_section3_box span {
    display: flex;
    width: 100%;
    min-height: 90px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
}
span.p_conn_logo img {
    height: 44px;
}
.home_section3_box span.telus_logo img {
    height: 60px;
}
span.lumino_health_logo img {
    height: 60px;
}
span.physitrack_logo img {
    height: 42px;
}
span.patientsites_logo img {
    height: 60px;
}
span.inputKit_logo img {
    height: 60px;
}
span.motionai_logo img {
    height: 40px;
}
span.allomia_logo img {
    height: 64px;
}
span.azure_logo img {
    height: 60px;
}
span.open_api_logo img {
    height: 55px;
}
.sec3_image {
    min-height: 100px;
    margin-bottom: 40px;
}
.home_section3_in .home_section3_box:first-child .sec3_image img {
    width: 92px;
    height: auto;
}
.home_section3_in .home_section3_box:nth-child(2) .sec3_image img {
    width: 70px;
    height: auto;
}
.home_section3_in .home_section3_box:last-child .sec3_image img {
    width: 130px;
    height: auto;
}
.home_section3_box img {
    margin: 0 auto 15px;
    display: block;
    object-fit: contain;
    width: auto;
    height: 100px;
}

.home_section3_box h3 {
    font-size: 29px;
}

.home_section3_box p {
    margin-top: 15px;
    font-weight: 400;
	padding-right: 15px;
    font-size: 25px;
    line-height: 1.4;
}
.home_section3_box P+img {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 25px;
    bottom: 28px;
    margin: 0;
}

.home_section3_box_first {
    display: flex;
    align-items: end;
    justify-content: center;
}

.home_section3_box_first img {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    bottom: -35px;
}

.home-4 {
    background-color: #5e3869;
}

.home-4 .row {
    display: flex;
    align-items: end;
}

.home-4 h2 {
    color: #fff;
    font-size: 44px;
    margin-bottom: 15px;
    white-space: nowrap;
}

.home-4 h2 img {
    width: 75px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

.home-4 p {
    font-size: 25px;
    color: #fff;
}

.btn-box {
    margin-top: 80px;
    gap: 60px;
    display: flex;
}

.btn {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    display: inline-block;
    padding: 13px 40px;
    border-radius: 50px;
    border: 2px solid;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-white {
    background-color: #FFFFFF;
    color: #2D1939;
    border: none;
}
.btn-white:active {
    background-color: #D3D3D3;
}

.btn-white:hover {
    background-color: #E0E0E0;
}
.home-4 .col-left {
    max-width: 60%;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
    padding-right: 3%;
}

.home-4 .container {
    padding-top: 80px;
	padding-bottom:0px;
    position: relative;
}

.home-4 .col-right {
    width: 100%;
    max-width: 40%;
    text-align: right;
}

.home-4 .col-right img {
    width: 100%;
    height: auto;
    max-width: 517px;
}

.home_section5 .home_section3_box {
    padding: 40px;
}

.home_section5 {
    padding: 130px 0 100px;
}
.home_section5 .btn,
.home_section6 .btn {
    margin-top: 60px;
    display: inline-block;
    color: #0f6eab;
    border-color: #0f6eab;
}

.btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.btn:focus {
    transform: translateY(1px) !important;
}
.home_section5 .home_section3_in {
    margin-top: 50px;
}

.home_section5 h2 {
    font-size: 44px;
}

.home_section5 p,
.home_section6 .col-left p, .feature_mgt_sft p {
    font-size: 25px;
    margin-top: 25px;
}

.home_section6 {
    padding: 30px 0 130px;
}

.home_section6 .row {
    display: grid;
    align-items: center;
    gap: 30px 20px;
    grid-template-columns: 2fr 1.1fr;
}
/*.home_section6 .row>div {
    width: calc(50% - 50px / 2);
}*/
.col-right {
    text-align: center;
}
.home_section6 .col-right img {
    width: 100%;
    height: auto;
    max-width: 580px;
}

.home_section6 .col-left h2 {
    font-size: 44px;
    color: #2d1a3a;
    max-width: 750px;
}

.home_section6 .btn {
    margin-top: 40px;
    padding: 12px 70px;
}

.home_section3_box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home_section7 {
    background: #eaf2ff;
    padding: 100px 0 130px 0;
    overflow: hidden;
}

.home_section7 h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 50px;
}

.home_section7 .grid-home-7 {
    display: grid;
    grid-gap: 50px 35px;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-home-7 .grid-box {
    background: #fff;
    border-radius: 40px;
    padding:40px 16px 40px 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.grid-home-7 .grid-box h3 {
    font-size: 29px;
    color: #2d1a3a;
}

.grid-home-7 .grid-box p {
    font-size: 25px;
    color: #2d1a3a;
    margin-top: 15px;
}

.grid-box-w {
    position: relative;
}

.grid-box-w img {
    height: auto;
    position: absolute;
    top: 0;
    width: 100%;
}

.ready_transform {
    display: inline-block;
    width: 100%;
    background: #2D1939;
    padding: 90px 0px;
}
.ready_transform a.btn-secondary-outline.btn {
    background: #fff;
}
.ready_transform a.btn-secondary-outline.btn:active {
    background: #0F6EA8;
}
.ready_transform h2 {
    font-size: 44px;
    color: #fff;
}

.ready_transform p {
    font-size: 25px;
    color: #fff;
    max-width: 910px;
    margin-top: 30px;
}

.ready_transform .banner_btn {
    margin-bottom: 0;
}

.seamless_support h2 {
    font-size: 44px;
    color: #2d1a3a;
}


.seamless_support p {
    font-size: 25px;
    color: #000;
    margin-top: 18px;
}

.seamless_support li:before {
    content: "";
    position: absolute;
    background: #0F6EA8;
    width: 14px;
    height: 14px;
    top: 11px;
    border-radius: 50px;
    left: 0;
}

.seamless_support li {
    list-style: none;
    font-size: 25px;
    position: relative;
    padding-left: 35px;
    color: #2E1839;
    margin-bottom: 30px;
}

.seamless_support ul {
    margin-top: 50px;
    padding-left: 20px;
    margin-bottom: 60px;
    max-width: 65%;
}
.f_integrations ul.feature_list {
    max-width: 100%;
}
ul.full_wdith {
    max-width: 100%;
}
.seamless_support {
    margin-top: 100px;
    margin-bottom: 100px;
}




.numbers {
    background: #5E3869;
    padding: 95px 0px;
}

.numbers h2 {
    font-size: 44px;
    color: #fff;
}

.numbers ul, .stats-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 60px;
    margin-top: 70px;
}

.numbers ul li {
    list-style: none;
    text-align: center;
    color: #fff;
}

.numbers ul li strong, .stats-box h2 {
    display: inline-block;
    font-size: 76px;
    width: 100%;
    text-align: center;
}

.numbers ul li span, .stats-box p {
    display: inline-block;
    font-size: 25px;
    text-align: left;
	color:#fff;
    padding-right: 5px;
}

.home_section8 {
    padding: 100px 0;
}

.home_section8 h2 {
    font-size: 44px;
    color: #2d1a3a;

}

.home_section8 p {
    font-size: 25px;
    margin-top: 30px;
    color: #2d1a3a;
}

.grid-home-8 {
    display: grid;
    column-gap: 20px;
    margin-top: 70px;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-home-8 .grid-box {
    text-align: center;
}

.grid-home-8 .grid-box img {
    margin: 0 auto 20px;
}

.grid-home-8 .grid-box h3 {
    max-width: 280px;
    margin: 0 auto;
    color: #2d1a3a;
    font-size: 26px;
}
.btn-primary:focus {
	background-color: #17896A;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.btn-primary {
    background: #22c399;
    text-decoration: none;
    color: #2D1939;
    border: 0 !important;
}
.btn-primary:hover {
    background-color: #1DAA84;
}
.btn-secondary-outline-dark:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.btn-secondary-outline-dark
 {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}
.btn-secondary-outline-dark:active {
    background-color: #FFFFFF;
    color: #2D1939;
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid #0F6EA8;
    color: #0F6EA8;
}
.btn-secondary-outline:hover {
    background-color: #FAFDFF;
    color: #0F6EA8;
}
.btn-secondary-outline:active {
    background-color: #0F6EA8;
    color: #FFFFFF;
    transform: translateY(1px);
}
.testimonial-sec .col-left h2 {
    font-size: 44px;
    color: #2d1a3a;
}

.testimonial-sec .row {
    display: flex;
    margin-bottom: 50px;
}

.testimonial-sec .col-left {
    width: 100%;
}

.testimonial-sec .col-right {
    width: 40%;
    position: relative;
}

.testimonial-sec .col-right img {
    position: absolute;
    right: 0;
    bottom: -51px;
    width: 100%;
    max-width: 446px;
}
.owl-stage-outer {
    background: #eaf2ff;
    border-radius: 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s 
ease, box-shadow 0.2s 
ease, transform 0.2s 
ease;
}
.owl-carousel .item {
    background: #eaf2ff;
    padding: 80px 90px 90px 90px;
}

.test-row {
    display: flex;
    align-items: center;
    gap: 50px 70px;
    padding-left: 40px;
}

.test-row .img {
width: 100%;
    max-width: 22%;
    min-width: 307px;
}

.test-row .img img {
    width: 100%;
    height: auto;
}

.test-content p {
    position: relative;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: left;
}

.test-content p:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -47px;
    width: 35px;
    height: 35px;
    background: url(../images/testimonial.png) no-repeat center;
    background-size: contain;
}

.test-content h4 {
    font-weight: 400;
    font-size: 25px;
    margin-top: 50px;
}

.test-content h5 {
    margin-top: 5px;
    font-size: 25px;
}

.right_banner {
    display: flex;
    align-items: end;
    height: 100%;
}
.right_banner img {
    width: 100%;
    height: auto;
}

/**************Home Page CSS END*****************/



/*****************Footer CSS START***********/
#footer {
    background: #5e3869;
    padding: 70px 0px;
}
.address {
    margin-bottom: 40px;
}

.address p {
    color: #fff;
}
.top_foot {
    display: flex;
    gap: 50px;
}

.left_foot {
    display: inline-flex;
    width: 50%;
    flex-direction: column;
}

.left_foot svg {
    max-width: 225px;
    width: 100%;
}

.sign_up {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
}

.sign_up h4 {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.sign_up form input[type="email"] {
    max-width: 410px;
    width: 100%;
    background: none;
    font-size: 20px;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 14px 0px;
}

.sign_up form {
    margin-bottom: 50px;
    max-width: 410px;
    position: relative;
}

.sign_up form input[type="submit"] {
    background: url(../images/right-arrow.png) no-repeat;
    width: 30px;
    height: 28.5px;
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
    border: 0;
    background-size: contain;
}

.sign_up form input[type="email"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.sign_up form input[type="email"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.sign_up form input[type="email"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.sign_up form input[type="email"]:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.sign_up form {
    margin-bottom: 50px;
}

.social a {
    margin: 0px 7px;
}

.social svg {
    width: 45px;
    height: 45px;
}

.social svg path {
    fill: #e9f1fe;
}

.right_foot {
    display: inline-flex;
    width: 50%;
    flex-direction: column;
    align-items: end;
}

.right_foot li {
    list-style: none;
    font-size: 20px;
    margin-bottom: 5px;
}

.right_foot li a {
    color: #fff;
}

.right_foot ul {
    padding-top: 30px;
}

.bottom_foot ul li:after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    background: #fff;
    width: 4px;
    height: 5px;
    border-radius: 100%;
}

.bottom_foot ul li a {
    color: #fff;
}

.bottom_foot ul li {
    display: inline-block;
    position: relative;
    padding-right: 16px;
    margin-right: 3px;
    font-size: 16px;
}

.bottom_foot ul li:last-child:after {
    display: none;
}

.bottom_foot {
    display: grid;
    width: 100%;
    margin-top: 80px;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 20px;
}

.bottom_foot p {
    color: #fff;
    text-align: right;
    font-size: 16px;
}

.testimonial-sec {
    padding: 50px 0 120px 0;
}

.owl-carousel .owl-dots {
    margin: 0;
    position: absolute;
    width: 100%;
    bottom: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 20px !important;
    height: 20px !important;
    margin: 5px 7px !important;
    background: #fff !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #0f6ea8 !important;
}

.seamless_support .container {
    position: relative;
    z-index: 1;
}

/*****************Footer CSS END***********/


/*****************Feature Page CSS START***********/

.home_section5.explore_sec {
    padding-bottom: 0;
}
.explore_sec .home_section3_in {
    grid-template-columns: 1fr 1fr;
}
.explore_sec .home_section3_in .home_section3_box .sec3_image img {
    width: 100px !important;
}
/* --- SCROLL SLIDER SECTION --- */
.scroll-section {
  position: relative;
  min-height: 100vh;
}
.sticky-wrapper p {
    text-align: left;
}
.sticky-wrapper {
  position: sticky;
  top: 0;
  margin: 0 auto;
  text-align: center;
}

.slide-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide-box {
    background: white;
    margin-bottom: 20px;
	    display: inline-block;
    min-height: 325px;
    text-align: left;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.slide img {
    max-width: 100%;
    height: 420px;
    object-fit: contain;
}
.slide-container .slide {
    grid-template-columns: 2fr 1fr;
    column-gap: 50px;
    align-items: center;
    display: grid;
}
/* Extra scroll space so multiple slides fade in */
.spacer {
  height: 300vh; /* adjust for more/less scrolling length */
}
.electronic-medical-sticky {
	padding-bottom:50px;
}

.f_sec1_col2 {
    text-align: center;
}
.feature_sec1  .banner_btn {
    gap: 20px;
}	
.f_sec1_col1 p a {
    color: #0F6EA8;
}
.feature_mgt_con {
    margin-top: 70px;
}
.feature_logo img {
    height: 50px;
    margin-bottom: 0;
}
.f_integrations a {
    margin-top:10px;;
}
.feature_mgt1 img {
    width: 100%;
}
.feature_mgt_text h4 {
    font-size: 29px;
}
/*.feature_mgt_text {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.feature_mgt_con.feature_case .feature_mgt_text {
    background: #eaf2ff;
}
*/
.feature_mgt1 {
    position: sticky;
    top: 120px;
    grid-template-columns: 1fr 1.1fr;
    column-gap: 50px;
    align-items: center;
    display: grid;
    margin-bottom: 70px;
    opacity: 1;
    z-index: 0;
    transition: opacity 0.2s linear;
    background: #eaf2ff;
    border-radius: 40px;
    padding: 30px 15px 30px 45px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.fog_bg  .feature_mgt1 {
    border-radius: 40px;
    padding: 30px 45px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    background: #fff;
}
.feature_mgt_text {
    padding-right: 20px;
}
.book_manage_in.book_manage_last {
    display: grid;
    grid-template-columns: 3fr  1fr;
    column-gap: 5px;
}
.f_real_image {
    margin-top: -60px;
}
.f_real_image img{
	width:100%;
}
.key_use_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 50px;
    column-gap: 30px;
}
.key_use_con {
    position: relative;
    background: white;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.key_use_con p {
    font-size: 29px;
}
/*.key_use_con:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 20px solid white;
}*/
.book-and-manage {
    padding-bottom: 70px;
}
.feature_sec1 {
    position: relative;
}

.book_manage_in h3 {
    font-size: 38px;
    margin-bottom: 7px;
}
.book_manage_in {
	margin-top:65px;
}
.white_bg {
	background:#fff !important;
}
.f_sec1_col2 img {
    width: 100%;
}
.f_sec1_col1 strong a {
	color:#000;
}
h2.margin-top50 {
    margin-top: 50px;
}
.feature_sec1_in {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    column-gap: 60px;
    align-items: center;
}
.feature_sec1_in .banner_btn {
    margin-bottom: 0px !important; 
}
.feature_sec1 h1{
	padding-bottom:0 !important;
	margin-bottom:15px !important;
}
h5.small_tagline {
    color: #0f6eab;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.feature_sec1 h2 {
    font-size: 29px;
	margin-bottom: 20px;
}
span.feature_subhead {
    color: #0f6eab;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 15px;
    display: inline-block;
}
.feature_sec1 p {
    margin-bottom: 45px;
}
.feature_sec1 {
    padding-top: 70px;
    padding-bottom: 90px;
}
.home_section3.feature_core {
    margin-top: 120px;
}
.feature_mgt_sft h2 {
    text-align: left;
    margin-bottom: 0;
}
.feature_how_patient .home_section3_in{
    grid-template-columns: 1fr 1fr;
}
.feature_problems_in {
    box-shadow: 0px 0px 11px -3px #ccc;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
}
.feature_problems_in .f_problems_col:first-child {
    background: url(../images/icon-challenge.png) no-repeat;
}
.feature_problems_in .f_problems_col:last-child {
    background: url(../images/minimize-errors.png) no-repeat;
    padding-left: 72px;
    background-position: 0px !important;
}
.feature_problems_in .f_problems_col {
    padding: 40px 40px 40px 105px;
    background-size: 50px !important;
    background-position: 33px !important;
    min-height: 150px;
    display: flex;
    align-items: center;
}
.first_f_prob {
	-webkit-border-top-left-radius: 30px;
	-webkit-border-top-right-radius: 30px;
	-moz-border-radius-topleft: 30px;
	-moz-border-radius-topright: 30px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}
.last_f_prob {
	-webkit-border-bottom-right-radius: 30px;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-radius-bottomright: 30px;
	-moz-border-radius-bottomleft: 30px;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 30px;
}
.problem_head {
    padding: 0 0px;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 35px;
}

.problem_head h3 {
    font-size: 35px;
    display: inline-block;
    font-weight: 700;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.4;
}
.f_problems_col strong {
    font-size: 29px;
    display: inline-block;
    font-weight: 700;
    width: 100%;
    margin-bottom: 15px;
    line-height: 1.4;
}
.margin100 {
	margin-top:100px;
	margin-bottom:100px;
}
.f_problems_col p {
    color: #2d1939;
}
.feature_sec14 p {
    font-size: 25px;
    max-width: 980px;
    margin: 30px auto 0;
    text-align: center;
}
.feature_sec14 a.btn {
    border-radius: 8px;
    margin-top: 30px;
}
.feature_sec14 {
    text-align: center;
}

.inner50 {
    margin-top: 50px;
}
.feature_int ul {
    max-width: 100%;
}
.feature_int {
    margin-bottom: -1px;
}
.left_int {
    padding-bottom: 70px;
}
.feature_int .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: end;
}
.book_inner {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 15px;
    column-gap: 20px;
}
.security_work .book_inner {
    grid-template-columns: 1fr !important;
}
.book_image {
    text-align: right;
}

.book_image img {
    width: 100%;
    max-width: 420px;
}
.accordion {
    margin: 50px auto;
}

.accordion-item {
    background: #eaf2ff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 13px;
}

.accordion-header {
    padding: 18px 50px 18px 20px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    font-size: 25px;
    display: inline-block;
    font-weight: 700;
    width: 100%;
    line-height: 1.4;
}
.book_inner .accordion {
    margin: 30px auto 0;
    width: 100%;
}

/*.accordion-header:hover {
  background: #f9f9f9;
}
*/
.accordion-header::after {
    content: "+";
    position: absolute;
    right: 16px;
    font-size: 37px;
    transition: transform 0.3s ease;
    top: 7px;
    color: #0F6EA8;
}
.book_inner .accordion-header::after {
    content: "" !important;
    right: inherit;
    left: 0;
    top: 29px;
    background: url(../images/blue-arrow-down.png) no-repeat;
    width: 25px;
    height: 15px;
    background-size: 100%;
}
.book_inner .accordion-item {
    background: none;
    padding: 0;
    margin-bottom: 10px;
}
.book_inner .accordion-header {
    padding: 18px 0px 18px 40px;
}
.book_inner .accordion-header.active:after {
    transform: rotate(180deg);
}
.accordion-header.active::after {
  content: "-";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px !important;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    margin: 0;
    padding: 15px 0 25px 0;
}
/*****************Feature Page CSS END***********/



/*****************About Page CSS START***********/
.about_sec1 {
    padding-top: 100px;
    text-align: center;
}
.about_sec1 .left_banner {
    text-align: left;
}
.about_sec1 .container {
    grid-template-columns: 1fr;
}
.about_sec1 .left_banner h1:after {
    right: 0;
}


.about_sec3 {
	padding:100px 0;
}
.about_sec3_in {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 40px;
}
.about_sec3_in {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 100px;
}
.about_sec3_left {
    position: sticky;
    top:100px;
    align-self: start;
}
.about_sec3_right h4:before {
    content: "";
    width: 16px;
    height: 16px;
    background: #22C399;
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 100%;
}
.about_sec3_left h2 {
    margin-top: 20px;
}
.about_sec3_right p {
    color: #fff;
    padding-left: 30px;
}
.about_sec3_right h4 {
    color: #fff;
    font-size: 29px;
    margin-bottom: 11px;
    position: relative;
    padding-left: 30px;
}
.about_sec3_box {
    border: 1px solid #5E486C;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}
.about_sec4_col {
    border-radius: 40px;
    padding: 40px 50px 40px 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: background-color 0.2s 
ease, box-shadow 0.2s 
ease, transform 0.2s 
ease;
}
.about_sec4_in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    margin-top: 60px;
}
.about_sec4 p {
    margin-top: 30px;
}
.about_sec4_col h4 {
    margin-top: 30px;
	font-size:29px;
}
.about_sec4_col p {
    margin-top: 20px;
}
.about_sec5_in {
    align-items: center;
    border-radius: 40px;
    padding: 60px 50px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: background-color 0.2s 
ease, box-shadow 0.2s 
ease, transform 0.2s 
ease;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    column-gap: 40px;
    margin-bottom: 20px;
}
.about_sec5_left {
    padding-bottom: 6px;
    padding-left: 97px;
}
.about_sec5_in:first-child .about_sec5_left {
    background: url(../images/innovation.png) no-repeat 11px 3px;
}
.about_sec5_in:nth-child(2) .about_sec5_left {
    background: url(../images/collaborative.png) no-repeat 0px 3px;
}
.about_sec5_in:nth-child(3) .about_sec5_left {
    background: url(../images/accountable.png) no-repeat 0px 3px;
}
.about_sec5_in:nth-child(4) .about_sec5_left{
    background: url(../images/diligent.png) no-repeat 0px 3px;
}
.about_sec6 {
    margin-top: 100px;
}
.about_sec6_in {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: 60px;
}
.about_sec6_box {
    border: 1px solid #5E486C;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}
.about_sec6_box p {
    color: #fff;
}
.about_sec6_box span {
    font-size: 29px;
    font-weight: 800;
    width: 68px;
    height: 68px;
    display: inline-block;
    background: #22C399;
    border-radius: 100%;
    text-align: center;
    line-height: 68px;
}
.about_sec6_box h3 {
    margin: 20px 0px;
    font-size: 29px;
}
.about_sec6_box h5 {
    font-size: 25px;
    margin-bottom: 30px;
}
/*****************About Page CSS END***********/


/*****************PRICING Page CSS END***********/
.pricing_info {
    margin-top: 15px !important;
    background: url(../images/info.png) no-repeat 0px 4px;
    padding-left: 37px;
}
.pricing_lets p {
    max-width: 100%;
}
.plan_comparison  .accordion-header {
    display: grid;
    grid-template: 1fr / 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #BDBDBD;
    align-items: stretch;
	    padding: 18px 0px 18px 0px;
}
.plan_comparison  .accordion-item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    padding: 0;
}
.plan_comparison  h3 {
    font-size: 25px;
    padding-left: 40px;
}
.plan_comparison .accordion-header span {
    opacity: 0;
    text-align: center;
}
.plan_comparison .accordion-header.active span {
    opacity: 1;
    font-weight: 400;
}
.plan_comparison  .accordion-content {
    display: grid;
    grid-template: 1fr / 2fr 1fr 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    row-gap: calc(16px / 8);
}

.plan_comparison  .accordion-header::after {
    content: "";
    right: inherit;
	left:0px;
    transition: transform 0.3s ease;
    top: 30px;
	width:17px;
	height:12px;
	background:url(../images/pricing_arrow.png) no-repeat;
	background-size:100%;
}
.plan_comparison  .accordion-header.active::after {
	 transform: rotate(180deg);
}
.plan_comparison  .accordion-content {
    padding: 0 !important;
}
.plan_comparison  .accordion-content span {
    display: grid;
    align-items: center;
    justify-content: center;
}
.plan_comparison  .accordion-content span{
	    display: grid;
    align-items: center;
    justify-content: center;
}
.plan_comparison .accordion-content strong {
    font-size: 22px;
    font-weight: 400;
    text-align: left;
}
.plan_comparison .accordion-content>* {
    border-bottom: 1px solid #BDBDBD;
    text-align: center;
	padding:15px 0px;
}
#new-pricing .feature-matrix .feature .feature-row.head>* {
    font-weight: 600;
    font-size: 21px;
    margin: 0;
    border-bottom: 1px solid #ededed;
    line-height: 1;
}
.pricing_table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 60px;
    column-gap: 18px;
}
.pricing_box {
    background: #EAF2FF;
    border-radius: 40px;
    padding: 28px;
    padding-bottom: 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pricing_img img {
    width: 100px;
}
.pricing_img {
    text-align: center;
    min-height: 135px;
    display: grid;
    justify-content: center;
    align-items: end;
}
.pricing_box h3 {
    text-align: center;
    font-size: 29px;
    margin-top: 35px;
    margin-bottom: 30px;
}
.pricing_box li {
    background: url(../images/blue-check.png) no-repeat 0px 6px;
    list-style: none;
    padding-left: 41px;
    margin-bottom: 17px;
    line-height: 30px;
}

.plan_comparison .accordion {
    margin-bottom: 0;
}
.pricing_box h3 span {
    font-size: 25px;
    font-weight: 400;
    display: inline-block;
    margin-top: 7px;
}
.prioing_quote {
    margin-top: 180px;
}
.prioing_quote_in {
    border-radius: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 100px 50px;
    column-gap: 25px;
    align-items: center;
    position: relative;
}
.prioing_quote_img {
    position: absolute;
    right: 80px;
    bottom: 0;
}
.prioing_quote_con {
    background: url(../images/testimonial-white.png) no-repeat 0px 0px;
    padding-left: 45px;
}
.prioing_quote_con strong {
    color: #fff;
    margin-top: 25px;
    display: inline-block;
}
.prioing_quote_con p {
    color: #fff;
}
/*****************PRICING Page CSS END***********/


/*****************How we care Page CSS START***********/

.hw_care_sec1 img {
    width: auto;
}
.hw_care_sec3 .home_section3_box {
    background: #fff;
}
.hwc_video {
    margin-bottom: 130px;
}
.hwc_video video {
    width: 100%;
}
.hw_care_sec3_in {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 40px;
    margin-top: 70px;
}
.hw_care_sec3 p {
    margin-top: 25px;
}

/*HOW WE CARE TEAM SLIDER CSS START*/
  .how_care_team .slider-wrapper {
    display: flex;
    overflow: hidden;
    margin-top: 50px;
}
.hct_slide {
    position: relative;
}
    .how_care_team .slider {
      display: flex;
      transition: transform 0.4s ease;
    }

    /* CARD */
    .how_care_team .card {
    flex: 0 0 calc(50% - 10px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: #eaf2ff;
    border-radius: 40px;
    padding: 40px 50px 40px 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

   /* .how_care_team .card-top {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
*/
.how_care_team .card-left {
    /*flex: 0 0 190px;*/
    text-align: center;
    float: left;
    width: 29%;
}
.how_care_team .card-left img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    aspect-ratio: 1/1;
}

.how_care_team .card-right {
    width: 70%;
   /* flex: 1;*/
    padding-left: 4%;
    float: left;
}

    .how_care_team .card-right h3 {
      margin: 0;
    }

    .how_care_team .card-right .role {
      margin: 4px 0 12px;
    }


    /* HIGHLIGHT FULL WIDTH */
    .how_care_team .highlight {
      padding: 12px 20px;
      border-radius: 0 0 12px 12px;
      background: #fafafa;
	  margin-top:40px;
    }
	.how_care_team p.highlight strong {
    display: inline-block;
    width: 100%;
}
    .how_care_team .card-left {
   /* flex: 0 0 190px;*/
    text-align: center;
}

    /* ARROWS */
    .how_care_team .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #666;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      color: #333;
      z-index: 2;
    }

    .how_care_team .arrow.left {
      left: -20px;
    }

    .how_care_team .arrow.right {
      right: -20px;
    }
	.how_care_team .container{
      position: relative;
      margin: 0px auto;
    }
/*HOW WE CARE TEAM SLIDER CSS END*/



/*****************How we care Page CSS END***********/



/*****************Contact Page CSS START***********/

.left_contact .social svg path {
    fill: #0f6eab;
}
.left_contact .social a:hover svg path {
    fill: #5a2d82;
}
.left_contact .social a {
    margin: 0px 0px;
}
.left_contact ul li a {
    color: #2d1939;
    background: url(../images/phone.png) no-repeat;
    background-size: 34px;
    padding-left: 46px;
    background-position: 0px 2px;
    padding-bottom: 4px;
    font-weight: 600;
}
.left_contact ul {
    margin-bottom: 20px;
}
.left_contact ul li {
    list-style: none;
    margin-bottom: 20px;
    display: inline-block;
}
form#contactForm input#consent {
    width: 30px;
    height: 30px;
    float: left;
}
.contact_wrap {
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding-top: 90px;
    padding-bottom: 90px;
    column-gap: 20px;
}
form#contactForm label {
    font-size: 22px;
    margin-left: 10px;
}
.left_contact {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.contact-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
}

.contact-container h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    font-size: 22px;
    color: #2D1939;
    font-family: "Open Sans", sans-serif;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #2D1939;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #2D1939;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #2D1939;
}
:-moz-placeholder { /* Firefox 18- */
  color: #2D1939;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 2px solid #5a2d82;
}

.form-check {
    margin: 25px 0 15px 0;
    font-size: 14px;
}
.contact-container .btn {
    cursor: pointer;
    margin-top: 20px;
}
/*****************Contact Page CSS END***********/


/*****************Terms Page CSS END***********/
.term_sec1 h1 {
    margin-bottom: 10px;
	font-size: 44px;
}
.term_sec1 ul li {
    margin: 12px 0px;
}
.term_sec1 ul {
    padding-left: 25px;
    margin-top: 20px;
}
.term_sec1 h2 + p {
    margin-top: 20px;
}
.term_sec1 ul li li {
    list-style: outside;
}
.term_sec1 h3 {
    margin-top: 60px;
    margin-bottom: 12px;
}
.term_sec1 ul + p {
    margin-top: 40px;
}
/*****************Terms Page CSS END***********/



/*****************AI Charting CSS START***********/

.charting_col4 .key_use_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/*****************AI Charting CSS END***********/


/*FR CSS START*/

/*FR HOME CSS START*/
.fr .home-4 .col-right {
    right: 0;
    max-width: 710px;
}
.fr .btn-box {
    gap: 40px;
}
.fr .seamless_support ul {
    max-width: 100%;
}
/*FR HOME CSS END*/



/*FR CSS END*/


@media screen and (min-width:1251px) and (max-width:1900px) {
.container {
    padding: 0px 100px;
    max-width: 100%;
}
}

@media screen and (max-width:1750px) {
.container {
    max-width: 100%;
}
.fr div#mobileMenu ul li a {
    font-size: 20px;
}
.fr div#mobileMenu ul li.menu_btn {
    margin-left: 20px;
}
div#mobileMenu ul li {
    margin: 0px 24px;
}
}

@media screen and (max-width:1650px) {
.btn-box, .banner_btn {
    gap: 30px;
}
.fr div#mobileMenu ul li {
    margin: 0px 14px;
}
.fr div#mobileMenu ul li a {
    font-size: 19px;
}
.fr div#mobileMenu ul li.menu_lang {
    margin-left: 0px;
    margin-right: 0;
}
}

@media(max-width: 1600px) {
div#mobileMenu ul li {
    margin: 0px 33px;
}
.right_banner {
    align-items: center;
    height: auto;
}
.fr div#mobileMenu ul li a {
    font-size: 18px;
}
.padding_section {
    padding-top: 80px;
    padding-bottom: 80px;
}
div#mobileMenu ul li a {
    font-size: 20px;
}
div#mobileMenu ul li {
    margin: 0px 19px;
}
.btn {
    padding: 12px 30px;
}
}

@media(max-width: 1550px) {
.charting_col4 .key_use_grid {
    grid-template-columns: 1fr 1fr;
	column-gap: 30px;
    row-gap: 30px;
}
.contact_wrap {
    grid-template-columns: 1.4fr 3fr;
}
.feature_mgt_text {
    padding-right: 0px;
}
.fr div#mobileMenu ul li.menu_btn {
    margin-left: 15px;
    margin-right: 10px;
}
.fr li.menu_btn a {
    padding: 10px 10px;
}
.fr div#mobileMenu ul li {
    margin: 0px 13px;
}
}

@media(max-width: 1490px) {
    div#mobileMenu ul li {
		margin: 0px 15px;
	}

.btn {
    padding: 12px 29px;
}
.home-4 .col-left {
    max-width: 70%;
}
.home-4 .row {
    position: relative;
}
.home-4 .col-right {
    position: absolute;
    right: 0;
}
	div#mobileMenu li a span.new {
		font-size: 13px;
		padding: 7px 10px;
		top: -2px;
	}
	div#mobileMenu  .dropdown>a::after {
		top: 11px;
		width: 17px;
		height: 17px;
	}
	.grid-home-7 .grid-box br {
		display:none;
	}
	div#mobileMenu ul li a {
		font-size: 18px;
	}
	.home-4 p {
		padding-right: 0px;
	}	
    .home_banner {
        padding-top: 80px;
        position: relative;
    }

    .banner_btn {
        gap: 10px;
        margin-bottom: 70px;
    }

    .left_banner h1, .feature_sec1 h1 {
		font-size: 52px;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

    .left_banner h1:after {
        width: 100px;
        height: 5px;
    }

	.btn {
		padding: 12px 30px;
	}	
    .btn-primary, .secondary-outline-dark  {
        font-size: 25px;
    }

    .home_section2 {
        padding: 80px 0 50px 0;
    }

    .home_section3 {
        margin-top: 120px;
        margin-bottom: 100px;
    }

    .btn-box {
        margin-top: 30px;
        gap: 10px;
    }

    .home_section5 {
        padding: 80px 0 80px;
    }
	
    .home_section6 {
        padding: 0px 0 80px;
    }

    .home_section7 {
        padding: 80px 0;
    }

    .home_section8 {
        padding: 130px 0;
    }

    .numbers {
        padding: 80px 0px;
    }

    .numbers ul, .stats-section {
        column-gap: 20px;
        margin-top: 50px;
    }

    .seamless_support {
    margin-top: 130px;
    margin-bottom: 130px;
}

.testimonial-sec .col-right img {
    max-width: 360px;
}
div#mobileMenu .submenu {
    min-width: 490px;
}
.fr div#mobileMenu ul li a {
    font-size: 17px;
}
.fr div#mobileMenu  .dropdown>a::after {
    left: 100%;
    top: 12px;
    width: 15px;
    height: 15px;
}
.fr div#mobileMenu ul li {
    margin: 0px 8px;
    text-align: center;
}
.fr div#mobileMenu ul .submenu-inner li {
    text-align: left;
}
div#mobileMenu ul ul.submenu li a strong {
    font-size: 19px;
}
div#mobileMenu ul ul.submenu li a span {
    font-size: 17px;
}
}

@media(max-width: 1380px) {
div#mobileMenu ul li {
    margin: 0px 18px;
}
.fr div#mobileMenu ul li {
    margin: 0px 7px;
}
.how_care_team .card {
    padding: 40px 20px 40px 20px;
}
.left_banner h1, .feature_sec1 h1 {
    font-size: 40px;
}
div#mobileMenu ul li a {
    font-size: 17px;
}
.fr div#mobileMenu ul li a {
    font-size: 16px;
}
div#mobileMenu ul li.menu_btn {
    margin-left: 15px;
}
.logo img {
    max-width: 197px;
    min-width: 197px;
}
div#mobileMenu .submenu {
    min-width: 450px;
}
div#mobileMenu ul ul.submenu li a strong {
    font-size: 19px;
}
div#mobileMenu ul ul.submenu li a span {
    font-size: 16px;
}
div#mobileMenu ul ul.submenu li a {
    padding: 20px 20px;
	column-gap: 15px;
}
.btn {
    padding: 12px 21px;
}

}

@media(max-width: 1300px) {
div#mobileMenu ul li {
    margin: 0px 14px;
}
.fr .logo img {
    max-width: 175px;
    min-width: 175px;
}
.fr div#mobileMenu ul li a {
    font-size: 15px;
}
.fr div#mobileMenu  .dropdown>a::after {
    top: 13px;
    width: 13px;
    height: 13px;
}
div#mobileMenu ul li a {
    font-size: 16px;
}
.btn {
    padding: 12px 17px;
}
}

@media(max-width: 1250px) {
div#mobileMenu ul li a {
    font-size: 17px;
}

.dropdown>a::after {
    top: 10px;
    width: 18px;
    height: 18px;
}
div#mobileMenu .submenu {
    min-width: 350px;
}
div#mobileMenu ul ul.submenu li a {
    padding: 12px 15px;
}
}

@media(max-width: 1199px) {
	
    div#mobileMenu ul li a {
		font-size: 16px;
	}
	.left_banner h1, .feature_sec1 h1 {
		font-size: 42px;
	}
	.logo img {
		max-width: 190px;
		min-width: 190px;
	}

    div#mobileMenu ul li  {
		margin: 0px 12px;
	}

    .dropdown>a::after {
        left: 100%;
        top: 12px;
        width: 15px;
        height: 15px;
    }
	div#mobileMenu  .dropdown>a::after {
		top: 12px;
		width: 15px;
		height: 15px;
		left: 102%;
	}
    div#mobileMenu ul li a span {
        padding: 4px 10px;
		font-size: 13px;
    }

    li.menu_btn a {
        padding: 10px 15px;
    }

    .home_banner .container {
        column-gap: 20px;
    }

    .btn-primary, .secondary-outline-dark  {
        padding: 16px 25px;
        font-size: 22px;
    }


    .home_section3_in {
        gap: 20px;
        margin-top: 70px;
    }

    .home_section3_box {
        padding: 30px 50px 30px 30px;
    }

    .btn {
        font-size: 22px;
    }

    .home_section5 .home_section3_box {
        padding: 30px;
    }

    .home_section8 {
        padding: 80px 0;
    }

    .numbers ul li strong, .stats-box h2 {
        font-size: 54px;
    }

    .seamless_support {
    margin-top: 80px;
    margin-bottom: 80px;
}

.testimonial-sec {
    padding: 0px 0 80px 0;
}
#mobileMenu li.menu_btn {
    margin-left: 15px;
}
div#mobileMenu ul ul.submenu li a strong {
    font-size: 17px;
}
div#mobileMenu ul ul.submenu li a span {
    font-size: 15px;
}
.contact_wrap {
    grid-template-columns: 1.8fr 3fr;
}
div#mobileMenu ul li.menu_lang {
    margin-left: 9px;
}
.fr div#mobileMenu ul li {
    margin: 0px 10px;
}
.fr .logo img {
    max-width: 160px;
    min-width: 160px;
}
.fr div#mobileMenu ul li.menu_btn {
    margin-left: 7px;
    margin-right: 8px;
}
}
@media(max-width: 1100px) {
.fr .logo img {
    max-width: 170px;
    min-width: 170px;
}
 header .container {
	width:100%;
}
.fr div#mobileMenu ul li.menu_btn {
    margin-left: 7px;
    margin-right: 6px;
}
.fr div#mobileMenu ul li {
    margin: 0px 7px;
}
}
@media(max-width: 1024px) {
	
	 /* Menu Button */
  .menu-toggle {
    color: #2d1939;
    border: none;
    padding: 0px;
    font-size: 18px;
    width: auto;
    text-align: left;
    cursor: pointer;
    background: none;
    text-transform: uppercase;
}
.fr div#mobileMenu ul li a {
    text-align:left;
    font-size: 20px;
}
.fr div#mobileMenu ul li {
    margin: 0;
}
.fr div#mobileMenu ul .submenu-inner li {
    text-align: left;
    margin: 0;
}
.fr div#mobileMenu ul li.menu_btn {
    margin-left: 0;
    margin-right: 0px;
}
div#mobileMenu ul li {
    margin: 0px 0px;
}
  /* Sidebar Menu */
  div#mobileMenu li a span.new {
		font-size: 13px;
		padding: 4px 7px;
		top: -2px;
		background: #eaf2ff;
		border-radius: 30px;
		font-weight: bold;
		position: relative;
		color: #2d1939;
		line-height: 1;
	}
	div#mobileMenu ul li a span.toggle-arrow {
		padding: 0 !important;
		margin-top: 6px;
	}
	li.menu_btn a {
		padding: 15px 0px;
	}
	div#mobileMenu ul li a span.toggle-arrow img {
		width: 7px;
		filter: brightness(0);
	}
	#mobileMenu li.menu_btn a {
    color: #2D1939;
    font-weight: 700;
}
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background:  #fff;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
}
div#mobileMenu ul li.menu_btn {
    margin-left: 0;
}
div#mobileMenu ul ul li {
    margin: 0;
}
div#mobileMenu .submenu {
    min-width: inherit;
}
	div#mobileMenu ul li a {
		font-size: 20px;
	}
  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
div#mobileMenu ul ul.submenu li a {
    padding: 12px 0px;
}
/*div#mobileMenu .submenu img {
    filter: invert(59%) sepia(37%) saturate(441%) hue-rotate(112deg) brightness(92%) contrast(91%);
}*/
  .mobile-menu li a{
    border-bottom: 1px solid #444;
  }

.mobile-menu a {
    display: block;
    padding: 14px 17px;
    color: #2D1939;
    text-decoration: none;
}

  

  /* Submenus */
  .mobile-menu .submenu,
  .mobile-menu .sub-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-menu .submenu a {
    padding-left: 5px;
    font-size: 17px !important;
}

  .mobile-menu .sub-submenu a {
    padding-left: 55px;
    font-size: 13px;
  }

  /* Active states */
  .mobile-menu .submenu.open,
  .mobile-menu .sub-submenu.open {
    max-height: inherit; /* Enough to show children */
  }

  /* Arrow indicator */
  .toggle-arrow {
    float: right;
    transition: transform 0.3s ease;
  }

  .rotate {
    transform: rotate(90deg);
  }
	.container {
		width: 100%;
	}
    #mobileMenu li.menu_btn {
    margin: -1px auto 0;
    margin-left: auto;
    width: 100%;
    padding-right: 0;
    background: #22c399;
    padding: 0px 15px;
    position: relative;
}
    #mobileMenu li.menu_btn a {
        border: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .navbar {
        padding: 10px 0px;
    }

    .logo img {
        max-width: 183px;
    }

    .top_head p {
        font-size: 15px;
        line-height: 1.2;
    }
	.container {
		padding: 0px 15px;
	}

}

@media(max-width: 989px) {
.left_banner h1, .feature_sec1 h1 {
	font-size: 34px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.pricing_box h3 span {
    font-size: 21px;
}

.btn-box {
    align-items: center;
}
.plan_comparison .accordion-content strong {
    font-size: 18px;
}
.bottom_foot p {
    text-align: left;
}
.f_integrations a {
    margin-top: 0px;
}
a.down-arrow {
    bottom: -50px;
}
a.down-arrow img {
    width: 75px;
}
.seamless_support li:before {
    top: 8px;
}
.problem_head h3 {
    font-size: 28px;
}
.key_use_con p,
.accordion-header {
    font-size: 20px;
}
.bottom_foot {
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.home-4 .col-left {
    padding-bottom: 20px;
	padding-right: 0;
}
.home_banner .container {
    grid-template-columns: 1.5fr 1fr;
}
.about_sec1 .container {
    grid-template-columns: 1fr;
} 

body, p {
    font-size: 20px;
}
.btn {
    font-size: 19px;
}
    .left_banner p, .feature_sec1 p {
        font-size: 20px;
    }
.container {
    padding: 0px 25px;
}
    .banner_btn {
        margin-top: 20px;
        margin-bottom: 70px;
        flex-wrap: wrap;
    }

    .home_section3 {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .home_section3 h2, .heading44 {
        font-size: 34px;
    }

    .home_section3 p {
        font-size: 20px;
        margin-top: 15px;
    }

    .home_section3_in {
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
    }

    .home-4 h2 {
        font-size: 34px;
    }

    .home-4 p {
        font-size: 20px;
    }

    .home-4 .col-left {
        max-width: 100%;
    }

    .home-4 .col-right {
        position: unset;
        max-width: 100%;
    }

    .home-4 .row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .home-4 .container {
        padding-top: 80px;
		padding-bottom:0;
    }

    .home_section5 h2 {
        font-size: 34px;
    }

    .home_section5 p,
    .home_section6 .col-left p, .feature_mgt_sft p {
        font-size: 20px;
        margin-top: 15px;
    }

    .home_section6 .col-left h2 {
        font-size: 34px;
    }

    .home_section6 .btn {
        margin-top: 30px;
        padding: 12px 40px;
    }

    .home_section6 .row {
        gap: 30px 20px;
    }

    .home_section7 h2 {
        font-size: 34px;
    }

    .home_section7 .grid-home-7 {
        grid-gap: 20px 20px;
        grid-template-columns: 1fr 1fr;
    }

    .grid-home-7 .grid-box {
        padding: 30px;
    }

    .home_section8 h2 {
        font-size: 34px;
    }

    .home_section8 p {
        font-size: 20px;
        margin-top: 15px;
    }

    .numbers h2 {
        font-size: 34px;
    }

    .numbers ul, .stats-section {
        column-gap: 20px;
        margin-top: 30px;
    }

    .numbers ul li strong, .stats-box h2 {
        font-size: 44px !important;
    }

    .numbers ul li span, .stats-box p {
        font-size: 20px;
    }

    .seamless_support h2 {
    font-size: 34px;
}

.seamless_support p, .grid-home-7 .grid-box p {
    font-size: 20px;
}

.seamless_support ul {
    margin-top: 20px;
	max-width: 100%;
    margin-bottom: 50px;
}
.home_section3_box h3,
.grid-home-7 .grid-box h3,
.grid-home-8 .grid-box h3 {
    font-size: 24px;
}
.sec3_image {
    margin-bottom: 30px;
}
.seamless_support li {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-sec .col-right img {
    max-width: 300px;
}

.testimonial-sec .col-left h2 {
    font-size: 34px;
}

.owl-carousel .item {
    padding: 30px 30px 70px;
}

.test-row {
    gap: 50px 50px;
}

.test-row .img {
    max-width: 30%;
    min-width: 260px;
}

.test-row  .test-content {
   /* width: 70%;*/
	 width: 100%;
}

.test-content p {
    font-size: 20px;
}

.test-content h4 {
    font-size: 20px;
}

.test-content h5 {
    font-size: 20px;
}

.ready_transform {
    padding: 80px 0px;
}

.ready_transform h2 {
    font-size: 34px;
}

.ready_transform p {
    font-size: 20px;
    margin-top: 20px;
}
.left_contact ul li a {
    font-size: 21px;
}
.left_contact ul li a {
    background-size: 24px;
    padding-left: 36px;
}
.left_contact ul {
    margin-bottom: 10px;
}
.left_contact .social svg {
    width: 40px;
    height: 40px;
}
.about_sec4_col h4, .about_sec5_left h2 {
    font-size: 28px !important;
}
}

@media(max-width: 850px) {
.about_sec6_in {
    grid-template-columns: 1fr;
}	

.pricing_table {
    grid-template-columns: 1fr;
    row-gap: 30px;
}
.pricing_img {
    justify-content: start;
}
.pricing_box h3 {
	        text-align: left;
    margin-bottom: 30px;
}
.plan_comparison  .accordion-header {
    grid-template: 1fr / 1fr 1fr 1fr;
}
.plan_comparison .accordion-header span {
    display: none;
    margin-top: 20px;
    font-size: 19px;
}
.plan_comparison  .accordion-content {
    grid-template: 1fr / 1fr 1fr 1fr;
}
.plan_comparison .accordion-content strong {
    font-size: 16px;
    grid-column: span 3;
    font-weight: 600;
    padding: 12px 0px;
}
.plan_comparison .accordion-content span img {
    width: 13px;
}
.plan_comparison .accordion-header span {
    display: none;
}
.plan_comparison  .accordion-header::after {
    top: 25px;
}
.plan_comparison  h3 {
    font-size: 20px !important;
    grid-column: span 3;
    padding-left: 30px;
}
}

@media(max-width: 767px) {
.home_banner .left_banner  p {
    padding-right: 0px;
}
.home_section3_box {
    padding: 30px 30px 30px 30px;
}
.home_section3_box P+img {
    width: 20px;
    height: 20px;
}
h2.margin-top50 {
    margin-top: 0;
}
.home_section6 .col-right {
    order: 1;
}
.home_section6 .col-left {
    order: 2;
}
.home_section6 .row {
    grid-template-columns: 1fr;
}
.home_section6 .col-left h2 {
    max-width: 100%;
}
.home-4 .col-left {
    padding-bottom: 60px;
}
.home-4 .col-right {
    display: none;
}
.home_section3_box_first, .f_sec1_col2 {
    display: none;
}
.col-right {
    text-align: left;
}
.home_banner .right_banner {
    display: none;
}
.logo_grid {
    column-gap: 25px;
    row-gap: 40px;
}
	 /* How we care testimonial slider */
.how_care_team .card {
	flex: 0 0 100%; /* show 1 card */
	margin-right: 0;
	max-width: 100%;
}
.term_sec1 h1 {
	font-size: 34px;
}

.about_sec3_right h4 {
    font-size: 28px;
}
.about_sec6 {
    margin-top: 60px;
}
.about_sec6_in {
        margin-top: 30px;
}
.left_contact ul li a {
    background-size: 30px;
    padding-left: 42px;
    font-size: 24px;
}
.left_contact ul li {
    width: 100%;
}
.left_contact {
k2312    order: 2;
}
.form-group input, .form-group textarea, form#contactForm label {
    font-size: 20px;
}
.contact-container {
    padding: 30px 30px;
}
.contact_wrap {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.about_sec3_in {
    grid-template-columns: 1fr;
    row-gap: 50px;
}
.about_sec4_in {
    grid-template-columns: 1fr;
    margin-top: 60px;
    row-gap: 20px;
}
.about_sec3 {
    padding: 50px 0;
}
.about_sec5_in {
    padding: 40px 30px;
    grid-template-columns: 1fr;
}
.about_sec4.padding_section {
    padding-bottom: 20px;
}
div#story {
    padding-top: 20px;
}
.about_sec4 p {
    margin-top: 10px;
}
.feature_mgt_sft.white_bg.electronic-medical-sticky {
    margin-top: 60px;
}
.about_sec3_left {
    position: static;
    top: 0;
}
.feature_mgt_con.feature_case .feature_mgt1:last-child {
    margin-bottom: 30px;
}
.how_care_team .card-left {
    width: 100%;
}
.about_sec5_right p {
    margin-top: 15px;
}
.about_sec5_in .about_sec5_left {
    background-position: left 0px !important;
    padding-left: 0;
    text-align: left;
    padding-top: 100px;
}
.faq.ai_faq {
    margin: 0 0 70px 0;
}
.seamless_support.ai_scribe {
    padding-bottom: 0;
}
.seamless_support.ai_benefit {
    padding: 0;
}

.how_care_team .card-left img {
    max-width: 190px;
    margin-bottom: 20px;
}
.hw_care_sec1 img {
    width: 100%;
}
.how_care_team .highlight {
    text-align: center;
}
.how_care_team .slider {
    width: 100%;
}
  .numbers ul li {
    text-align: left;
}
.how_care_team .card-top {
    align-items: center;
    flex-direction: column;
}
.how_care_team .card-right {
    text-align: center;
    width: 100%;
    padding-left: 0;
    float: left;
}
.how_care_team .card{
    padding: 40px 15px 40px 15px;
}
.f_integrations a {
    margin-top: 30px;
}
.f_integrations ul.feature_list + a {
	margin-top:0;
}
.hide_padding_mob {
	padding:0 !important;
}
.feature_sec1 p {
    margin-bottom: 25px;
}
.feature_sec1  .banner_btn {
    margin-bottom: 20px;
}
.scroll-top img {
    width: 41px;
    height: 41px;
}
.scroll-top {
    bottom: 10px;
    right: 10px;
}
.seamless_support.f_integrations {
    padding: 0;
}
.home_section3.feature_core {
    margin-top: 80px;
}
.book_inner .accordion-header::after {
    width: 17px;
    height: 11px;
}
.book_inner .accordion-header {
    padding: 18px 0px 18px 30px;
}
.feature_mgt1 {
    top: 60px;
    margin-top: 60px;
}
.feature_sec1 {
    padding-bottom: 60px;
    padding-top: 50px;
}
.book-and-manage {
    padding-bottom: 50px;
}
.feature_sec1_in {
    row-gap: 20px;
}
.book_inner {
    grid-template-columns: 1fr;
}
h5.small_tagline {
    margin-bottom: 22px;
}
.feature_mgt1 {
    padding: 30px 30px !important;
    column-gap: 30px;
}
.feature_mgt_con {
    margin-top: 40px;
}
.feature_mgt_text h4 {
    font-size: 26px;
}
.home-4 h2 {
    white-space: inherit;
}
.book_image {
    text-align: center;
}
.home-4 h2 img {
    width: 56px;
}
.key_use_grid {
    grid-template-columns: 1fr;
    column-gap: 0;
	margin-top:30px;
    row-gap: 30px;
}
.feature_problems_in .f_problems_col {
    padding: 20px 30px 20px 60px;
    background-size: 35px !important;
    background-position: 10px !important;
}
.feature_problems_in .f_problems_col:last-child {
    padding-left: 52px;
	}
.home_section7,
.home_section5,
.home_section8,
.numbers,
.seamless_support,
.ready_transform,
#footer,
.padding_section {
    padding: 50px 0;
}
.seamless_support {
	margin:0;
}
  .how_care_team .arrow.left {
	left: -10px;
  }

  .how_care_team .arrow.right {
	right: -10px;
  }
 /* How we care testimonial slider */
  
  
.home_banner .container, .feature_sec1_in {
	grid-template-columns: 1fr;
	column-gap: 20px;
}
.testimonial-sec .col-right {
	display: none;
}
.testimonial-sec .col-left {
	width: 100%;
}
.home_banner {
	text-align:left;
	padding-top: 50px; padding-bottom: 15px;
}
.about_sec1 .left_banner h1:after {
    right: inherit;
}
.about_sec1 .banner_btn {
    justify-content: start;
}

    a.down-arrow {
        bottom: -30px;
        width: 60px;
        height: 60px;
    }

    a.down-arrow img {
        width: 100%;
        height: auto;
    }

    .home_section2 {
        padding: 50px 0 30px 0;
    }

    .logo_section_main .logo_section {
        column-gap: 40px;
    }

    .logo_section_main .logo_section img {
        height: 50px;
    }

    .home_section3 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .home-4 .container {
        padding-top: 50px;
		padding-bottom:0px;
    }

    .home_section3_box p {
        font-size: 20px;
    }

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

    .home_section6 .row>div {
        width: 100%;
    }

    .grid-home-7 .grid-box p {
        font-size: 20px;
    }

    .grid-box-w {
        order: 7;
        display: flex;
        align-items: flex-end;
    }

    .grid-box-w img {
        top: auto;
        bottom: 0;
    }

    .grid-home-8 {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }


    .numbers ul, .stats-section {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .testimonial-sec .row {
    margin-bottom: 30px;
}

.testimonial-sec .col-right img {
    max-width: 180px;
    bottom: -31px;
    right: 20px;
}

/*.test-row {
    gap: 30px 30px;
    flex-direction: column;
}*/
.test-row {
    gap: 30px 30px;
    flex-direction: column;
    padding-top: 34px;
    padding-left: 0;
}
.test-row .img {
    max-width: 100%;
    min-width: 170px;
    max-width: 170px;
}

.test-row  .test-content {
    width: 100%;
}
.test-content p:before {
    top: -34px;
    left: 0;
}

.logo_section_main {
    display: flex;
    animation-iteration-count: infinite;
    animation-name: marquee;
    animation-duration: 100s;
    column-gap: 40px;
}
.hwc_video {
    margin-bottom: 60px;
}	
.term_sec1 h3 {
    margin-top: 30px;
}
.sec8_img {
    text-align: left;
}
.grid-home-8 .grid-box h3 {
	max-width: 100%;
	text-align: left;
}
}

@media(max-width: 600px) {
.btn { 
    width: 100%;
    text-align: center;
}
.fog_bg.hw_care_sec3 {
    text-align: center;
}
.hw_care_sec1 .feature_sec1_in {
    row-gap: 40px;
}
.hw_care_sec3_in {
	row-gap: 20px;
    grid-template-columns: 1fr;
	    margin-top: 50px;
		text-align: center;
}
.hw_care_sec3_in img {
    margin: 0 auto;
}
.charting_col4 .key_use_grid {
    grid-template-columns: 1fr;
}
}

@media(max-width: 574px) {
	.container {
    padding: 0px 15px;
}
.feature_logo img {
    height: auto;
    width: 150px;
}
.fr .btn-box {
    gap: 20px;
}
.grid-box-w {
	display:none;
}
.term_sec1 h1 {
	font-size: 28px;
}
.term_sec1 h2, .term_sec1 h3, .term_sec1 p {
    text-align: left !important;
}
.about_sec4_col h4, .about_sec5_left h2 {
    font-size: 24px !important;
}
.about_sec3_right h4 {
    font-size: 24px;
}
.left_contact .social {
    text-align: left;
}
.contact-container h2 {
    text-align: left !important;
}
.about_sec4_in {
    margin-top: 40px;
}
.about_sec3_right p {
    text-align: left !important;
}
.about_sec6_box {
	    padding: 30px 20px;
}
.about_sec6_box h5 {
    font-size: 23px;
}
.about_sec3_left h2 {
    text-align: left !important;
}
.seamless_support.ai_scribe,
.seamless_support.ai_benefit {
    padding-bottom: 40px;
}
.seamless_support.ai_scribe h2,
.seamless_support.ai_benefit h2,
.ai_faq h2{
	text-align:left !important;
}
    .banner_btn {
        gap: 5px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
	.sec3_image {
		min-height: inherit;
		margin-bottom: 30px;
	}
	.home_section3_box P+img {
		right: 20px;
		bottom: 20px;
		margin-top: 0px;
		display: inline-block;
		width: 14px;
	}
.home_section3_box {
    padding: 30px 30px 60px 30px;
    /* text-align: center; */
}
    .left_banner h1, .feature_sec1 h1 {
        font-size: 28px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .left_banner h1:after {
		left: 0;
		bottom: -4px;
		width: 80px;
		transform: inherit;
	}
	h2 {
		font-size:28px !important;
	}
	h3 {
		font-size:24px !important;
	}

    body,
    p {
        line-height: 1.3;
		font-size:18px !important;
    }

    .btn-primary, .secondary-outline-dark  {
        padding: 12px 25px;
        font-size: 18px;
    }

    .home_section2 h2 {
        margin-bottom: 30px;
    }

    .home_section3 h2, .heading44 {
        font-size: 28px;
    }

    .home_section3_in {
        grid-template-columns: 1fr;
    }


    .home-4 h2 {
        margin-bottom: 15px;
    }


    .home-4 h2 img {
        width: 50px;
    }

    .btn {
        font-size: 18px;
        padding: 12px 25px;
    }

    .btn-box {
        justify-content: center;
        flex-wrap: wrap;
    }

    .home_section5 .btn,
    .home_section6 .btn {
        margin-top: 30px;
    }

    .home_section6 {
        padding: 0px 0 50px;
    }

    .home_section6 .col-left h2 {
        margin: 0 auto;
    }


    .home_section7 h2 {
        margin-bottom: 30px;
		text-align: left;
    }

    .home_section7 {
        padding: 50px 0 60px;
    }

    .home_section7 .grid-home-7 {
        grid-template-columns: 1fr;
    }

    .grid-box-w img {
        position: unset;
        margin-bottom: -59px;
    }

    .home_section8 {
        padding: 50px 0;
    }

    .grid-home-8 .grid-box img {
		margin: 0 auto 10px;
		width: auto;
		height: 80px;
	}

    .grid-home-8 .grid-box h3 {
        font-size: 24px;
    }

    .numbers {
        padding: 50px 0px;
    }

    .numbers ul, .stats-section {
        grid-template-columns: 1fr;
    }

    .numbers ul li strong, .stats-box h2 {
        display: block;
        font-size: 34px !important;
    }

    .numbers ul li span, .stats-box p {
		font-size: 18px;
		text-align: left;
		margin-top: 10px;
		width: 100%;
	}

.seamless_support li {
    font-size: 18px;
    padding-left: 25px;
    margin-bottom: 5px;
}

.seamless_support li:before {
    content: "";
    position: absolute;
    background: #0F6EA8;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    left: 0;
}

.seamless_support ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.testimonial-sec .col-left {
    width: 100%;
}

.testimonial-sec .col-right {
    display: none;
}

.owl-carousel .item {
    padding: 30px 15px 50px;
}


.test-content h4 {
    font-size: 18px;
}

.test-content h5 {
    font-size: 18px;
}

.test-content p:before {
    top: -30px;
    width: 30px;
    height: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
}


.ready_transform {
    padding: 50px 0px;
}

.ready_transform p {
    margin-top: 15px;
}
.top_foot {
    gap: 30px;
    flex-wrap: wrap;
}

#footer {
    padding: 50px 0px;
}

.left_foot {
    width: 100%;
}

.right_foot {
    width: 100%;
    align-items: start;
}

.right_foot ul {
    padding-top: 0;
}

.right_foot li {
    font-size: 18px;
    margin-bottom: 2px;
    text-align: left;
}

.sign_up {
    margin-top: 30px;
}

.sign_up h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.sign_up form {
    margin-bottom: 20px;
}

.social svg {
    width: 30px;
    height: 30px;
}

.social a {
    margin: 0px 4px;
}

.sign_up form input[type="email"] {
    font-size: 16px;
}

.sign_up form input[type="submit"] {
    width: 25px;
    height: 22.5px;
    top: 12px;
}

.bottom_foot {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
}

.bottom_foot ul li {
    margin-bottom: 3px;
    display: inline-block;
    position: relative;
    padding-right: 0;
    margin-right: 0;
    text-align: left;
    width: 100%;
}

.bottom_foot ul li:after{
    display: none;
}
.f_problems_col p {
    text-align: left !important;
}
.bottom_foot p {
    font-size: 16px !important;
}
.feature_mgt1 {
    grid-template-columns: 1fr;
}
.feature_mgt_img {
    order: 1;
}
.feature_mgt_text {
    order: 2;
}
.feature_problems_in .f_problems_col {
    padding: 20px 15px 20px 15px;
    background: none !important;
    align-items: start;
    min-height: inherit;
}
.problem_head h3 {
    font-size: 20px !important;
}
.feature_problems_in .f_problems_col:last-child {
	padding-left: 15px;
}
.problem_head {
    position: sticky;
    top: 0px;
    background: #fff;
    padding: 10px 0px;
}
.problem_head h3 {
    background-size: 21px !important;
    background-position: 0px 4px !important;
    padding-left: 26px;
    text-align: left !important;
}
.problem_head h3:first-child {
    background: url(../images/icon-challenge.png) no-repeat;
}
.problem_head h3:last-child {
    background: url(../images/minimize-errors.png) no-repeat;
}
  .numbers ul li {
    text-align: center;
}
.book_inner .accordion-content p {
    text-align: left !important;
}
.faq {
    margin-top: 50px;
	        margin-bottom: 70px;
}
ul.full_wdith.feature_list {
    margin-bottom: 0;
}
.feature_mgt_con .feature_mgt1:last-child {
    margin-bottom: 20px;
}
.book_inner .accordion {
    margin: 0px auto 0;
}
.faq  .accordion {
    margin-top: 30px;
}
.accordion-header {
    padding: 18px 50px 18px 0px;
}
.accordion-content p {
    text-align: left !important;
    padding: 0px 0 15px 0;
}
.accordion-content {
    padding: 0 0px !important;
}
.seamless_support li:before {
    top: 6px;
}
}