/* Universal Css Start Here */
body {
	background-color: var(--body-color);
	font-family: var(--font-default);
	color: var(--heading-color);
	position: relative;
	overflow-x: hidden;
}
html {
	overflow-x: hidden;
}
body::-webkit-scrollbar {
	width: 12px; /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
	background: #064071; /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
	background-color: white; /* color of the scroll thumb */
	border-radius: 20px; /* roundness of the scroll thumb */
	border: 3px solid #064071; /* creates padding around scroll thumb */
}
.over-hidden {
	overflow: hidden;
}
ul{
	padding: 0;
}
a {
	text-decoration: none !important;
	color: var(--primary-btn-color);
	outline: none;
}
a:hover {
	color: var(--primary-btn-color);
	transition: all 0.5s;
}
button {
	font-family: var(--font-btn);
}
figure {
	margin-bottom: 0;
}
.rounded {
	border-radius: 30px !important;
}
.btn-primary {
	color: #fff;
	border: 0;
	background: var(--bg-primary);
	font-size: 14px;
	padding: 1rem 2.5rem;
	border-radius: 100px;
	font-family: var(--font-btn);
	white-space: nowrap;
	transition: all 0.8s ease-out;
}
.btn-primary:hover {
	background: #fff;
	border: 0;
	padding: 1rem 2.5rem;
	color: var(--body-color);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
	color: #c28500;
	background-color: transparent;
	border-color: transparent;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
	color: #c28500;
	background-color: transparent;
	border-color: transparent;
	box-shadow: unset;
}
.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(42 105 177 / 14%);
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: unset !important;
}
.extra-padd {
	padding: 15px 60px !important;
}
.colored-txt {
	color: var(--extra-color-1);
}
button {
	border: 0;
}
/* Typography Start Here */
h1 {
	font-family: var(--font-heading);
}
h2 {
	font-family: var(--font-heading);
	color: var(--heading-color);
}
h3 {
	font-family: var(--font-heading);
	color: var(--heading-color);
}
h4 {
	font-family: var(--font-heading);
	color: var(--heading-color);
}
h5 {
	font-family: var(--font-heading);
	color: var(--heading-color);
}
h6 {
	font-family: var(--font-heading);
	color: var(--heading-color);
}
p {
	font-family: var(--font-default);
	font-size: 16px;
	color: var(--light-text-color)
}
.prn-express{
	background: rgb(10,116,205);
	background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}
header.without-login {
    position: absolute;
    width: 100%;
    z-index: 3;
}
a.navbar-brand.logo img {
    height: auto;
    width: 180px;
}
.navbar-light .navbar-nav li.nav-item {
    padding: 0 20px;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 16px;
	position: relative;
}
.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
	justify-content: end;
}
.navbar-light .navbar-nav .nav-link:before {
    content: "";
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(10,116,205);
	background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    transition: all 0.5s ease-in-out;
	border-radius: 100px;
	color: var(--text-color-2);
} 
.navbar-light .navbar-nav .nav-link:hover:before {
        width: 100%;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: var(--text-color-2);
	position: relative;
}
.navbar-light .navbar-toggler {
  background: #fff;
}
a.nav-link.active:before {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(10,116,205);
	background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    transition: all 0.5s ease-in-out;
	border-radius: 100px;
}
a.btn.login-btn {
    background: #239D2C;
    border-radius: 10px;
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-btn);
    margin: 0 20px;
    height: 45px;
}
a.btn.login-btn:hover {
    background: #31DD3E;
}
a.btn.signup-btn {
    background: #064071;
    border-radius: 10px;
    padding: 0 40px;
    color: #fff;
    font-size: 16px;
	font-family: var(--font-btn);
	height: 45px;
	line-height: 42px;
}
a.btn.signup-btn:hover{
    background: #0978ce;
}

section.main-banner {
    padding: 100px 0 50px 0;
    background-image: url(../img/main-bg.webp);
    background-size: cover;
    background-position: center center;
    position: relative;
}
.linear-box-text {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.linear-box-text h5 {
    margin: 0;
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    font-size: 20px;
}
.linear-box {
    position: relative;
    margin-top: 70px;
}
span.bg-light-headding {
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    position: absolute;
    width: 28%;
    padding: 25px;
    top: 7px;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 10px;
    opacity: .1;
}
section.main-banner h2 {
    text-align: center;
    font-size: 60px;
    margin: 0;
    letter-spacing: -1px;
}
section.main-banner h1 {
    text-align: center;
    font-size: 100px;
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 120px;
    margin-top: -10px;
}
.mobile-img-div {
    margin-top: -65px;
}
section.about-sec {
    text-align: center;
    padding: 60px 0;
}
section.about-sec .linear-box {
    margin-top: 0;
}
section.about-sec span.bg-light-headding {
    width: 25%;
}
section.about-sec h2 {
    font-size: 50px;
    margin: 20px 0;
    letter-spacing: -1px;
}
section.about-sec p {
    font-size: 18px;
    opacity: .8;
    letter-spacing: -1px;
    font-family: var(--font-default);
    color: #000;
    width: 80%;
    margin: auto;
}
.job-listings-div {
    background: #EAFCEC;
    padding: 30px 25px;
    border-radius: 40px;
    letter-spacing: -0.6px;
    margin: 80px 0;
}
.job-listings-div h6 {
    color: #1B7A22;
    font-size: 20px;
}
.job-listings-div p {
    color: #1B7A22;
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

.facility-listings-div {
    background: #E7F1FA;
    padding: 30px 25px;
    border-radius: 40px;
    letter-spacing: -0.6px;
    margin: 80px 0;
}
.facility-listings-div h6 {
    color: #085292;
    font-size: 20px;
}
.facility-listings-div p {
    color: #085292;
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}
.circle-shape-div{
    position: relative;
}
.circle-shape-div1 {
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    border-radius: 50%;
    width: 525px;
    height: 525px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 20%;
    z-index: -3;
    opacity: .1;
}
.circle-shape-div2 {
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    border-radius: 50%;
    width: 460px;
    height: 460px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 24%;
    z-index: -2;
    opacity: .2;
}
.circle-shape-div3 {
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    border-radius: 50%;
    width: 380px;
    height: 380px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 28%;
    z-index: -1;
    opacity: 1;
}


section.one-stop-solution {
    text-align: center;
    background-image: url(../img/video-bg.webp);
    background-size: cover;
    background-position: center center;
    padding: 50px 0;
}
section.one-stop-solution .linear-box {
    margin-top: 0;
}
span.light-color {
    color: #9AAAA8;
}
section.one-stop-solution span.bg-light-headding {
    width: 33%;
}
section.one-stop-solution h2 {
    font-size: 37px;
    letter-spacing: -1px;
}

/* Homepage Video Sec  */
.vid__toggler {
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-content: center;
    box-shadow: 0 0 0 8px #ffffff47;
    transition: 0.3s ease;
    animation: blink 2s forwards infinite;
    cursor: pointer;
  }
  
  @keyframes blink {
    0% {
      box-shadow: 0 0 0 0px #ffffff47;
    }
  
    100% {
      box-shadow: 0 0 0 8px #ffffff47;
    }
  }
  
  .vid__toggler:hover {
    background: purple !important;
    color: #fff;
  }
  
  .video__wrapp {
    border-radius: 30px;
    overflow: hidden;
    margin: 80px 0 0 0;
}
.full__vid {
    width: 100%;
    height: 650px;
    object-fit: cover;
}
  .vid__text-wrapp {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    top: 45%;
}
.vid__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.vid__actions p {
    font-size: 50px;
    color: #fff;
}
  .video__wrapp:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
section.faqs-sec {
    padding: 100px 0;
}
section.faqs-sec .linear-box {
    margin-top: 0;
}
section.faqs-sec span.bg-light-headding {
    width: 45%;
}
section.faqs-sec h2 {
    font-size: 60px;
    width: 70%;
    letter-spacing: -1px;
    margin: auto;
    text-align: center;
}
.accordion-item h2 {
    width: 100% !important;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    color: #1B7A22;
    text-align: left;
    background-color: #EAFCEC;
    border: 0;
    border-radius: 10px;
    margin: 10px 0;
}
.accordion{
    margin-top: 30px;
}
.accordion-item {
    background-color: #EAFCEC;
    border: 0;
    border-radius: 10px;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.accordion-button:not(.collapsed) {
    color: #1B7A22;
    background-color: #e7f1ff;
    box-shadow: unset;
}
a.btn.video-btn {
    font-size: 18px;
    border: 1px solid #000;
    padding: 15px 30px;
    border-radius: 15px;
    margin: 30px 0;
}
a.btn.video-btn:hover {
    background: #eafcec;
}
section.providers-sec {
    padding: 50px 0;
}
.providers-div {
    background: #E7F1FA;
    border-radius: 20px;
}
.provider-text {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #B3D4F0;
    width: 140px;
    justify-content: center;
    padding: 10px 0;
    border-radius: 10px;
}
.provider-text h5{
	margin: 0;
	color: #0B74CD;
	font-size: 18px;
}
.providers-box h2 {
    color: #064071;
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 42px;
    margin: 15px 0;
}
.providers-box p {
    color: #064071;
    font-size: 16px;
    line-height: 20px;
}
a.btn.provider-btn {
    background: #0B74CD;
    border-radius: 10px;
    padding: 12px 25px;
    color: #fff;
}
a.btn.provider-btn:hover {
    background: #064071;
}
.employer-div {
    background: #EAFCEC;
    border-radius: 20px;
}
.employer-text {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #BFF4C3;
    width: 140px;
    justify-content: center;
    padding: 10px 0;
    border-radius: 10px;
}
.employer-text h5{
	margin: 0;
	color: #1B7A22;
	font-size: 18px;
}
.employer-box h2 {
    color: #1B7A22;
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 42px;
    margin: 15px 0;
}
.employer-box p {
    color: #1B7A22;
    font-size: 16px;
    line-height: 20px;
}
a.btn.employer-btn {
    background: #31DD3E;
    border-radius: 10px;
    padding: 12px 25px;
    color: #fff;
}
a.btn.employer-btn:hover {
    background: #239D2C;
}
.btn.employer-btn {
    background: #31DD3E;
    border-radius: 10px;
    padding: 12px 25px;
    color: #fff;
}
.btn.employer-btn:hover {
    background: #239D2C;
}
section.healthcare-sec{
	text-align: center;
}
section.healthcare-sec .linear-box {
    margin-top: 0;
}
section.healthcare-sec span.bg-light-headding {
    width: 40%;
}
section.healthcare-sec h2 {
    font-size: 50px;
    margin: 20px 0;
    letter-spacing: -1px;
}
section.healthcare-sec p {
    font-size: 18px;
    opacity: .8;
    letter-spacing: -1px;
    font-family: var(--font-default);
    color: #000;
    width: 80%;
    margin: auto;
}

.footer-content-div {
    margin-bottom: 30px;
}
.footer-content-div a.logo img {
    width: 300px;
    height: 124px;
}
.footer-content-div h3 {
    width: 80%;
    font-size: 26px;
    letter-spacing: -1px;
}
a.google-play-btn img {
    width: 150px;
    margin-right: 15px;
    margin-top: 10px;
}
.quick-links h5{
	margin-bottom: 20px;
}
.quick-links ul li {
    list-style: none;
    margin-bottom: 10px;
}
.quick-links ul li a {
    color: var(--text-color-2);
    font-size: 16px;
}
.quick-links ul li a:hover {
    color: #239d2c;
    text-decoration: underline !important;
}
ul.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
ul.social-icons li a {
    text-align: center;
    width: 40px;
    background: #EAFCEC;
    padding: 10px;
    border-radius: 10px;
    color: #1B7A22;
    height: 40px;
    display: inline-block;
    line-height: 25px;
}
ul.social-icons li a:hover{
    color: #fff;
    background: rgb(10,116,205);
    background: linear-gradient(90deg, rgba(10,116,205,1) 0%, rgba(49,221,62,1) 100%);
    transform:translateY(-8px);
}
ul.social-icons li a i{
	font-size: 20px;
}
.follow-us-div p {
    font-size: 13px;
    color: var(--text-color-2);
}

.shine-overlay {
    position: relative;
    overflow: hidden;
  }
  .shine-overlay:hover .shine {
    display: block;
  }
  
  .shine {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transform: skew(30deg);
    animation: shine 0.75s linear 1;
  }
  
  @keyframes shine {
    0% {
      left: -50%;
      opacity: 0;
    }
    50% {
      left: 25%;
      opacity: 0.5;
    }
    100% {
      left: 100%;
      opacity: 0;
    }
  }
  .mobile-img-mobile {
    display: none;
}
.mobile-img-desc{
    display: block;
}


  @media (max-width: 1025px) {
    span.bg-light-headding {
        width: 38%;
    }
    section.about-sec span.bg-light-headding {
        width: 35%;
    }
    .providers-box h2 {
        font-size: 34px;
        line-height: 32px;
        margin: 10px 0;
    }
    .providers-box p {
        font-size: 14px;
        line-height: 16px;
    }
    .employer-box h2 {
        font-size: 34px;
        line-height: 32px;
        margin: 10px 0;
    }
    .employer-box p {
        font-size: 14px;
        line-height: 16px;
    }
    section.healthcare-sec p {
        width: 100%;
    }
    .circle-shape-div1 {
        width: 475px;
        height: 475px;
    }
    .circle-shape-div2 {
        width: 420px;
        height: 420px;
    }
    .circle-shape-div3 {
        width: 350px;
        height: 350px;
    }
    .job-listings-div p {
        font-size: 14px;
    }
    .job-listings-div h6 {
        font-size: 17px;
    }
    .facility-listings-div h6 {
        font-size: 17px;
    }
    .facility-listings-div p {
        font-size: 14px;
    }
    section.one-stop-solution span.bg-light-headding {
        width: 45%;
    }
    section.faqs-sec span.bg-light-headding {
        width: 55%;
    }
    section.faqs-sec h2 {
        width: 100%;
    }
    ul.social-icons {
        gap: 10px;
    }
    ul.social-icons li a {
        width: 30px;
        padding: 5px;
        height: 30px;
        line-height: 25px;
    }
    ul.social-icons li a i {
        font-size: 17px;
    }
    .footer-content-div h3 {
        width: 90%;
        font-size: 24px;
    }
    .navbar-collapse {
        width: 100%;
        background: #fff;
        padding: 120px 20px 20px 20px;
        border-radius: 10px;
        height: 100vh;
        top: 0;
        position: absolute;
        left: 0;
        z-index: -1;
    }
    a.btn.login-btn {
        margin: 20px 0 20px 0;
    }
}
@media (max-width: 992px) {
    span.bg-light-headding {
        width: 50%;
    }
    section.main-banner h2 {
        font-size: 50px;
    }
    section.main-banner h1 {
        font-size: 80px;
        line-height: 100px;
    }
    .mobile-img-div {
        margin-top: -45px;
    }
    section.about-sec {
        padding: 0;
    }
    section.about-sec h2 {
        font-size: 40px;
    }
    section.about-sec p {
        font-size: 16px;
        width: 100%;
    }
    section.healthcare-sec h2 {
        font-size: 40px;
    }
    section.healthcare-sec span.bg-light-headding {
        width: 50%;
    }
    .job-listings-div {
        padding: 25px;
        border-radius: 20px;
        margin: 20px 0;
    }
    .facility-listings-div {
        padding: 25px;
        border-radius: 20px;
        margin: 20px 0;
    }
    .circle-shape-div1 {
        width: 650px;
        height: 650px;
    }
    .circle-shape-div2 {
        width: 550px;
        height: 550px;
    }
    .circle-shape-div3 {
        width: 480px;
        height: 480px;
    }
    section.one-stop-solution h2 {
        font-size: 32px;
    }
    section.faqs-sec {
        padding: 0 0 60px 0;
    }
    section.faqs-sec h2 {
        font-size: 50px;
    }
    .footer-content-div h3 {
        width: 75%;
        font-size: 24px;
        margin: auto;
        text-align: center;
    }
    .download-btns {
        text-align: center;
    }
    .quick-links {
        margin-top: 20px;
    }
    ul.social-icons li a {
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    span.bg-light-headding {
        width: 100%;
    }
    section.main-banner h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    section.main-banner h1 {
        font-size: 42px;
        line-height: normal;
    }
    .mobile-img-mobile {
        display: block;
    }
    .mobile-img-desc{
        display: none;
    }
    .mobile-img-div {
        margin-top: -10px;
    }
    .mobile-img-div img{
        text-align: center;
    }
    section.about-sec span.bg-light-headding {
        width: 100%;
    }
    section.about-sec h2 {
        font-size: 30px;
    }
    .providers-box h2 {
        font-size: 28px;
    }
    .employer-box h2 {
        font-size: 28px;
    }
    section.healthcare-sec span.bg-light-headding {
        width: 100%;
    }
    section.healthcare-sec h2 {
        font-size: 30px;
    }
    .circle-shape-div1 {
        width: 320px;
        height: 320px;
    }
    .circle-shape-div2 {
        width: 280px;
        height: 280px;
    }
    .circle-shape-div3 {
        width: 240px;
        height: 240px;
    }
    section.one-stop-solution span.bg-light-headding {
        width: 100%;
    }
    section.one-stop-solution h2 {
        font-size: 26px;
    }
    .full__vid {
        height: 250px;
    }
    .vid__text-wrapp {
        top: 28%;
    }
    .vid__actions p {
        font-size: 40px;
    }
    section.faqs-sec span.bg-light-headding {
        width: 100%;
    }
    section.faqs-sec h2 {
        font-size: 30px;
    }
    .footer-content-div h3 {
        width: 100%;
    }
    .follow-us-div {
        text-align: center;
        margin-top: 20px;
    }
    ul.social-icons {
        justify-content: center;
    }

}