<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Cabin-Regular";
  src: url("../../assets/fonts/Cabin-Regular.woff2");
}
@font-face {
  font-family: "Cabin-SemiBold";
  src: url("../../assets/fonts/Cabin-SemiBold.woff2");
}
@font-face {
  font-family: "SinkinSans-Light";
  src: url("../../assets/fonts/SinkinSans-300Light.woff2");
}
@font-face {
  font-family: "SinkinSans-Regular";
  src: url("../../assets/fonts/SinkinSans-400Regular.woff2");
}
@font-face {
  font-family: "SinkinSans-SemiBold";
  src: url("../../assets/fonts/SinkinSans-600SemiBold.woff2");
}
@font-face {
  font-family: "SinkinSans-Bold";
  src: url("../../assets/fonts/SinkinSans-700Bold.woff2");
}
/*----------------------
    Global Parameters
 -----------------------*/
/*-------------------
    Global Mixins
 --------------------*/
/*------------------
    Global Styles
 -------------------*/
h1 {
  font-family: "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  font-size: 56px;
}

h2 {
  font-family: "SinkinSans-Regular", Helvetica, Arial, Verdana, sans-serif;
  font-size: 34px;
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-family: "SinkinSans-Regular", Helvetica, Arial, Verdana, sans-serif;
  font-size: 30px;
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 26px;
  }
}

/* Body Styles */
html {
  background-color: #2a2b30 !important;
}

.bg {
  background: url("../../assets/background-graphic.jpg") no-repeat center center;
  background-size: cover;
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.content {
  position: absolute;
  width: 100%;
}

body {
  font: 14px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif;
  line-height: 1.38rem;
  color: #f1f1f1;
  letter-spacing: 0.015rem;
  background-color: #2a2b30 !important;
  overflow-x: hidden;
}

a {
  color: #f1f1f1;
  font-family: "SinkinSans-Regular", Helvetica, Arial, Verdana, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #f1f1f1;
  text-decoration: underline !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  cursor: default;
}

button {
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #0fa1f6;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
}
button:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}

input:not([type=checkbox]):not([type=submit]) {
  --color1: #4c5057;
  --color2: #474b55;
  transition: --color1 406ms, --color2 406ms;
  background-color: transparent;
  background: linear-gradient(to bottom, #1e2024 0%, #31333a 8%, #3d4148 30%, #3d4148 87%, var(--color1) 99%, var(--color2) 100%);
  border: solid 2px #262a2d;
  letter-spacing: 0.018rem;
  border-radius: 0.5rem !important;
  color: #f1f1f1 !important;
  width: 100%;
  padding: 10px;
  font: 16px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
input:not([type=checkbox]):not([type=submit]):focus, input:not([type=checkbox]):not([type=submit]):active, input:not([type=checkbox]):not([type=submit]):focus-visible {
  --color1: #0fa1f6;
  --color2: #6e9ba3;
  box-shadow: none;
  background-clip: padding-box !important;
  outline: none !important;
}

input[type=submit] {
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #0fa1f6;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
}
input[type=submit]:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}

/*Change background of autofill text area to blue. Can't be transparent as of now.*/
input:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #087ac5 inset !important;
}

/*Change text color in autofill text area*/
input:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: white !important;
}

/*Hides blue outline on safari browser*/
input:focus,
select:focus,
textarea:focus,
select-selected {
  outline: none !important;
}

/*----------------------
	  Scroll Bar Styles
------------------------*/
html {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px rgba(20, 21, 23, 0.8);
  border-radius: 10px;
}
html ::-webkit-scrollbar-thumb {
  background: rgb(22, 23, 24);
  border-radius: 10px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: rgb(20, 21, 23);
}

/*-------------------
	  Nav Bar Styles
---------------------*/
.synx-nav {
  position: sticky;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 70px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background-color: rgba(81, 81, 81, 0.3450980392);
}
.synx-nav .nav-logo {
  margin-top: 8px;
  height: 40px;
}
.synx-nav .nav-content-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1650px;
}
.synx-nav .nav-content-wide ul {
  display: flex;
  align-items: baseline;
  list-style: none;
  margin: 0;
  padding: 0;
}
.synx-nav .nav-content-wide ul li:nth-of-type(2) {
  margin-left: 30px;
}
.synx-nav .nav-content-wide ul a {
  font: 18px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
@media only screen and (max-width: 675px) {
  .synx-nav .nav-content-wide {
    display: none;
  }
}
.synx-nav .nav-content-wide .nav-left {
  display: flex;
  align-items: center;
}
.synx-nav .nav-content-wide .nav-left ul {
  margin-left: 25px;
}
.synx-nav .nav-content-wide .nav-wide-signup {
  font-size: 21px;
  color: #0fa1f6;
}
.synx-nav .nav-content-narrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 25px;
}
.synx-nav .nav-content-narrow ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.synx-nav .nav-content-narrow ul li:nth-of-type(2) {
  margin-left: 30px;
}
.synx-nav .nav-content-narrow ul a {
  font: 18px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
@media only screen and (min-width: calc(676px)) {
  .synx-nav .nav-content-narrow {
    display: none;
  }
}
.synx-nav .nav-content-narrow .nav-narrow-signup {
  font: 24px "Cabin-SemiBold", Helvetica, Arial, Verdana, sans-serif;
}
.synx-nav .nav-content-narrow .hamburger-icon {
  width: 25px;
}

/*--------------------------
	  Hamburger Menu Styles
----------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  min-height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  background-color: rgba(24, 25, 28, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: 0.4s;
}
.mobile-menu a {
  font: 18px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
.mobile-menu.is-active {
  right: 0;
}
.mobile-menu .mobile-menu-top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
}
.mobile-menu .mobile-menu-top img {
  margin-bottom: 30px;
  width: 135px;
}
.mobile-menu .mobile-menu-top .menu-divider {
  color: #444752;
  width: 100px;
  margin: 0.65rem 0;
  box-shadow: 1px 1px 3px rgba(15, 15, 16, 0.5725490196);
}
.mobile-menu .mobile-menu-top .exit-menu {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
}
.mobile-menu .mobile-menu-bottom {
  display: flex;
  justify-content: center;
}
.mobile-menu .mobile-menu-bottom button {
  width: 119px;
  height: 36px;
}
.mobile-menu .mobile-menu-bottom .mobile-signin {
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #5C616E;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
  margin-right: 25px;
}
.mobile-menu .mobile-menu-bottom .mobile-signin:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}

/*------------------
	  Footer Styles
--------------------*/
.synx-footer {
  width: 100%;
  height: 250px;
  background-color: rgba(81, 81, 81, 0.3450980392);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding: 0 20px;
}
.synx-footer .footer-top {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.synx-footer .footer-top .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 25px;
}
.synx-footer .footer-top .contact .footer-title {
  font: 15px "SinkinSans-Bold", Helvetica, Arial, Verdana, sans-serif;
  margin-bottom: 4px;
}
.synx-footer .footer-top .contact a {
  font: 13px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif !important;
  padding: 0 0 5px 2px;
}
.synx-footer .footer-top .social {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 250px;
  margin: 18px 0;
}
@media only screen and (max-width: 575px) {
  .synx-footer .footer-top .social {
    flex-basis: 10%;
  }
}
.synx-footer .footer-top .request-demo {
  text-align: center;
}
.synx-footer .footer-top .request-demo a {
  font: 13px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif !important;
}
.synx-footer .legal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.synx-footer .legal .links {
  display: flex;
  justify-content: space-around;
  margin-bottom: 6px;
}
.synx-footer .legal .links a {
  font: 11px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif !important;
}
.synx-footer .legal p {
  font-size: 10px;
  font-style: italic;
  margin: 0;
  text-align: center;
  line-height: 1.5em;
}

/*--------------------------
	  Error Page Styles
----------------------------*/
.p-error {
  min-height: calc(100vh - 250px - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*-------------------
        Index
 --------------------*/
.p-main .s-landing {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-landing {
    min-height: calc(100vh - 70px);
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-main .s-landing .landing-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
  .p-main .s-landing .landing-left .full-img {
    display: none;
  }
}
.p-main .s-landing .landing-left .wrap-img {
  padding: 75px 15% 0 0;
  width: 100%;
  max-width: 675px;
  height: auto;
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-landing .landing-left .wrap-img {
    display: none;
  }
}
.p-main .s-landing .landing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .p-main .s-landing .landing-right {
    margin-top: 4%;
  }
}
.p-main .s-landing .landing-right .txt-container {
  max-width: 550px;
  margin: 0 40px;
}
.p-main .s-landing .landing-right .txt-container .title-block {
  position: relative;
  margin-bottom: 3%;
}
@media only screen and (max-width: 900px) {
  .p-main .s-landing .landing-right .txt-container .title-block {
    margin: 4% 0 3% 0;
  }
}
@media only screen and (max-width: 465px) {
  .p-main .s-landing .landing-right .txt-container .title-block {
    margin: 14% 0 6% 0;
  }
}
.p-main .s-landing .landing-right .txt-container .title-block .improve-care-subtitle {
  position: absolute;
  top: -12px;
  left: 40px;
  font-size: 19px;
  line-height: 1rem;
}
@media only screen and (max-width: 465px) {
  .p-main .s-landing .landing-right .txt-container .title-block .improve-care-subtitle {
    top: -10px;
    left: 32px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 465px) {
  .p-main .s-landing .landing-right .txt-container .title-block h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-landing .landing-right .txt-container .txt-content {
    margin-left: 15px;
  }
}
.p-main .s-landing .landing-right .txt-container button {
  width: 140px;
  height: 36px;
  float: right;
  margin-top: 24px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #0fa1f6;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
}
.p-main .s-landing .landing-right .txt-container button:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}
.p-main .s-connect {
  margin-bottom: 150px;
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect {
    margin: 150px 0;
  }
}
.p-main .s-connect .connect-tile {
  display: flex;
  align-items: center;
  flex-direction: column;
  display: flex;
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect .connect-tile {
    margin: 0 35px;
  }
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-connect .connect-tile {
    border-radius: 0 20px 20px 0;
    margin-right: 12%;
    flex-direction: row;
    background-image: linear-gradient(45deg, rgba(31, 32, 36, 0.55) -30%, rgba(62, 65, 72, 0.55) 40%);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    box-shadow: rgba(0, 0, 0, 0.05) 6px 2px 16px 0px;
    height: 435px;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect .connect-tile {
    margin-top: 75px;
  }
}
.p-main .s-connect .connect-tile .tile-icon {
  flex-basis: 40%;
  padding: 0 4%;
}
.p-main .s-connect .connect-tile .tile-icon img {
  width: 100%;
  max-width: 325px;
  float: right;
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect .connect-tile .tile-icon img {
    float: none;
  }
}
@media only screen and (max-width: 500px) {
  .p-main .s-connect .connect-tile .tile-icon {
    flex-basis: 40%;
    padding: 0 4%;
  }
  .p-main .s-connect .connect-tile .tile-icon img {
    width: 100%;
    max-width: 275px;
    float: right;
  }
}
@media only screen and (max-width: 500px) and (max-width: 900px) {
  .p-main .s-connect .connect-tile .tile-icon img {
    float: none;
  }
}
@media only screen and (min-width: 901px) {
  .p-main .s-connect .connect-tile .tile-text {
    flex-basis: 60%;
    padding-right: 8%;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect .connect-tile .tile-text {
    max-width: 550px;
    margin-top: 10%;
  }
  .p-main .s-connect .connect-tile .tile-text p,
  .p-main .s-connect .connect-tile .tile-text .links {
    margin: 5% 2% 0 2%;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect .connect-tile .tile-text .links {
    display: flex;
    flex-direction: column;
  }
}
.p-main .s-connect .connect-tile .tile-text .links a {
  font-weight: 500;
  padding-right: 35px;
  text-decoration: underline;
}
@media only screen and (max-width: 900px) {
  .p-main .s-connect .connect-tile .tile-text .links a {
    padding-top: 20px;
  }
}
.p-main .s-share {
  margin-bottom: 150px;
}
.p-main .s-share .share-tile {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  display: flex;
}
@media only screen and (max-width: 900px) {
  .p-main .s-share .share-tile {
    margin: 0 35px;
  }
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-share .share-tile {
    border-radius: 20px 0 0 20px;
    margin-left: 12%;
    flex-direction: row;
    background-image: linear-gradient(45deg, rgba(31, 32, 36, 0.55) -30%, rgba(62, 65, 72, 0.55) 40%);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    box-shadow: rgba(0, 0, 0, 0.05) 6px 2px 16px 0px;
    height: 435px;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-share .share-tile {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 901px) {
  .p-main .s-share .share-tile .tile-text {
    flex-basis: 60%;
    padding-left: 8%;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-share .share-tile .tile-text {
    max-width: 550px;
    margin-top: 10%;
  }
  .p-main .s-share .share-tile .tile-text p,
  .p-main .s-share .share-tile .tile-text .links {
    margin: 5% 2% 0 2%;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-share .share-tile .tile-text .links {
    display: flex;
    flex-direction: column;
  }
}
.p-main .s-share .share-tile .tile-text .links a {
  font-weight: 500;
  padding-right: 35px;
  text-decoration: underline;
}
@media only screen and (max-width: 900px) {
  .p-main .s-share .share-tile .tile-text .links a {
    padding-top: 20px;
  }
}
.p-main .s-share .share-tile .tile-icon {
  flex-basis: 40%;
  padding: 0 4%;
}
.p-main .s-share .share-tile .tile-icon img {
  width: 100%;
  max-width: 240px;
  float: left;
}
@media only screen and (max-width: 900px) {
  .p-main .s-share .share-tile .tile-icon img {
    float: none;
  }
}
@media only screen and (max-width: 500px) {
  .p-main .s-share .share-tile .tile-icon {
    flex-basis: 40%;
    padding: 0 4%;
  }
  .p-main .s-share .share-tile .tile-icon img {
    width: 100%;
    max-width: 170px;
    float: left;
  }
}
@media only screen and (max-width: 500px) and (max-width: 900px) {
  .p-main .s-share .share-tile .tile-icon img {
    float: none;
  }
}
.p-main .s-view {
  margin-bottom: 150px;
}
.p-main .s-view .view-tile {
  display: flex;
  align-items: center;
  flex-direction: column;
  display: flex;
}
@media only screen and (max-width: 900px) {
  .p-main .s-view .view-tile {
    margin: 0 35px;
  }
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-view .view-tile {
    border-radius: 0 20px 20px 0;
    margin-right: 12%;
    flex-direction: row;
    background-image: linear-gradient(45deg, rgba(31, 32, 36, 0.55) -30%, rgba(62, 65, 72, 0.55) 40%);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    box-shadow: rgba(0, 0, 0, 0.05) 6px 2px 16px 0px;
    height: 435px;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-view .view-tile {
    margin-top: 35px;
  }
}
.p-main .s-view .view-tile .tile-icon {
  flex-basis: 40%;
  padding: 0 4%;
}
.p-main .s-view .view-tile .tile-icon img {
  width: 100%;
  max-width: 400px;
  float: right;
}
@media only screen and (max-width: 900px) {
  .p-main .s-view .view-tile .tile-icon img {
    float: none;
  }
}
@media only screen and (min-width: 901px) {
  .p-main .s-view .view-tile .tile-text {
    flex-basis: 60%;
    padding-right: 8%;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-view .view-tile .tile-text {
    max-width: 550px;
    margin-top: 10%;
  }
  .p-main .s-view .view-tile .tile-text p,
  .p-main .s-view .view-tile .tile-text .links {
    margin: 5% 2% 0 2%;
  }
}
@media only screen and (max-width: 900px) {
  .p-main .s-view .view-tile .tile-text .links {
    display: flex;
    flex-direction: column;
  }
}
.p-main .s-view .view-tile .tile-text .links a {
  font-weight: 500;
  padding-right: 35px;
  text-decoration: underline;
}
@media only screen and (max-width: 900px) {
  .p-main .s-view .view-tile .tile-text .links a {
    padding-top: 20px;
  }
}
.p-main .s-action-bar {
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: linear-gradient(rgba(21, 22, 25, 0.3), rgba(14, 150, 230, 0.3));
  display: grid;
}
@media only screen and (max-width: 900px) {
  .p-main .s-action-bar {
    grid-template-rows: 74% 1% 25%;
    height: 500px;
  }
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-action-bar {
    grid-template-rows: 79% 1% 20%;
    height: 700px;
  }
}
.p-main .s-action-bar .action-bar-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
  .p-main .s-action-bar .action-bar-top {
    padding-top: 75px;
  }
}
@media only screen and (min-width: calc(901px)) {
  .p-main .s-action-bar .action-bar-top {
    padding-top: 4%;
  }
}
.p-main .s-action-bar .action-bar-top .action-bar-top-text {
  padding: 0 20px 35px 20px;
  text-align: center;
}
.p-main .s-action-bar .action-bar-top .action-bar-top-text p {
  font-size: 0.7rem;
  margin-bottom: 0;
}
.p-main .s-action-bar .action-bar-top #splide01 {
  height: 150px;
}
.p-main .s-action-bar .action-bar-top #splide01 .splide__slide div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-main .s-action-bar .action-bar-top #splide01 .splide__slide div .hospital-logo {
  width: 70%;
}
.p-main .s-action-bar .action-bar-top #splide01 .splide__slide div picture {
  text-align: center;
}
.p-main .s-action-bar hr {
  color: #0fa1f6;
}
.p-main .s-action-bar .action-bar-btm {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-main .s-action-bar .action-bar-btm .demo-button {
  width: 175px;
  height: 36px;
}
.p-main .s-action-bar .action-bar-btm .action-bar-signup-button {
  width: 140px;
  height: 36px;
  margin-left: 75px;
}
@media only screen and (max-width: 575px) {
  .p-main .s-action-bar .action-bar-btm .action-bar-signup-button {
    margin-left: 9%;
  }
}/*# sourceMappingURL=index.css.map */</pre></body></html>