@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,700,900'); /*font import*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body { /*general properties of body*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    background: #fff;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
}

main { /*font of main content*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a5a;
    line-height: 1.5;
}

/*general properties*/

main h2 {
    font-weight: 400;
    line-height: 1.2;
    font-size: 2rem;
}

p {
    text-align: left;
}

img { /*general image properties*/
    max-width: 100%;
    height: auto;
}

.divider { /*hr divider properties*/
    margin: 1rem 0 0 0;
    padding-bottom: 2.25rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/*header and logo properties*/

header {
	position: relative;
	background: #fff;
	padding: 1em 0;
	color: #000;
    width: 100%;
    height: 4.5em;
}

header::after {
	content: '';
	clear: both;
	display: block;
}

header img {
    margin-top: -22px;
    margin-left: 55px;
    float: left;
}

.logo {
    float: left;
    display: none;
    font-size: 1.65em;
    margin: -0.075em 0 0 -0.5em;
    font-weight: 400;
}

.logo span {
    color: #275B2D;
}

/*site navigation*/

.site-nav {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #000;
    height: 0;
    overflow: hidden;
    z-index: 999;
}

.site-nav--open {
    height: auto;
    width: 100%;
    transition: ease-in-out 50ms;
}

header a.logo-link {
    color: #000;
    text-decoration: none;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 230em;
}

.site-nav ul li {
    border-bottom: solid #fff 0.005em;
}

.site-nav ul li:last-child {
    border-bottom: none;
}

.site-nav a {
  color: #fff;
  display: block;
  padding: 1.25em 2.5em 1.25em 2.5em; 
  text-decoration: none;
}

.site-nav a:hover, .site-nav a:focus {
    color: #B8B8B8;
}

.menu-toggle {
    position: absolute;
    background: #fff;
    right: 0.5em;
    top: 1.25em;
    padding: 1em;
    cursor: pointer;
}

.hamburger, .hamburger::before {
    content: '';
    display: block;
    margin-top: -0.25em;
    background: #000;
    width: 1.75em;
    height: 1.5px;
    transition: ease-in-out 250ms;
}

.hamburger::before {
    transform: translateY(0.5em);
}

.open .hamburger {
    transform: rotate(45deg);
    width: 1.5em;
    margin-top: 0.25em;
}

.open .hamburger::before {
  width: 1.5em;
  transform: translateY(0.05em) rotate(90deg);
}

/*navigation media queries*/

@media screen and (max-width: 950px) { /*screen size: 950px*/
    header img {
        display: none;
    }
    
    .logo {
        display: block;
        margin: 0.1em 0 0 0.5em;
    }
}

@media screen and (min-width: 850px) { /*screen size: 850px*/
    .menu-toggle {
        display: none;
    }
    
    .site-nav {
        position: absolute;
        height: auto;
        background: transparent;
        float: right;
        overflow: visible;
        top: 0;
    }
    
    .site-nav ul {
        height: 4em;
    }
    
    .site-nav ul li {
        display: inline-block;
        border: none;
    }
    
    .site-nav ul a {
        color: #000;
        padding: 1.75em;
        font-weight: 400;
        height: 3.75em;
    }
    
    .site-nav a:hover, .site-nav a:focus {
        color: #707070; 
    }
}

@media screen and (min-width: 955px) { /*screen size: 955px*/
    .site-nav ul {
        margin-right: 35px;
        margin-top: 1.5em;
    }
    
    header {
        height: 7.5em;
    }
}

/*banner section*/

.home-hero {
    position: relative;
    background-image: url(images/medical-image1.jpg);
    background-size: cover;
    background-position: center center;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    height: 512px;
}

.home-hero .shape-1 {
    background-color: rgba(136,136,136,0.6);
    color: #fff;
    position: relative;
    height: 100%;
    width: 100%;
}

.home-hero .shape-1 .shape-content {
    position: absolute;
    right: 15%;
    left: 15%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.home-hero .shape-1 h1 {
    padding: .5rem 0;
    line-height: 1.2;
    border-radius: .3rem;
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    margin-top: 10%;
}

.home-hero .shape-1 p {
    margin-bottom: 1rem;
}

.home-hero .shape-1 h1 span {
    text-transform: lowercase;
    display: block;
    font-size: 1em;
    font-weight: 400;
}

.home-hero .button-1 {
    background-color: #275B2D;
    border-color: #275B2D;
    outline: none;
    color: #fff;
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
    text-decoration: none;
}

.home-hero .button-1:hover {
    background: #006600;
    border-color: #006600;
}

/*banner section media queries*/

@media (min-width: 40em) {
    .home-hero .shape-1 h1 {
        margin-top: 25%;
    }
    
    .home-hero .shape-1 p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

@media (min-width: 40em) {
    .home-hero .shape-1 h1 {
        margin-top: 15%;
    }
}

/*home about section*/

.home-about {
    background: #fff;
    height: 0%;
    width: 100%;
}

.home-about .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.home-about .container .blurb {
    margin: 0 10px 10px 10px;
    padding-top: 20px;
}

.home-about .container .blurb h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.home-about .row {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
}

.home-about .container p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/*home about media queries*/

@media (min-width: 1200px) {
    .container {
        min-width: 80%;
    }
}

@media (min-width: 992px) {
    .container {
        min-width: 80%;
    }
} 

@media (min-width: 768px) {
    .container {
        min-width: 60%;    
    }
} 

@media (min-width: 576px) {
    .container {
        width: 540px;
    }
}    

/*slides section*/

section.slides {
    width: 100%;
}

section.slides div.slides-container {
    width: 89.58333333333333%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

section.slides div.slide {
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 2px 4px 8px 0 rgba(0,0,0,.35); 
    max-width: 500px;
}

section.slides div.picture {
    min-height: 200px;
    width: 100%;
    background-position: center center;
    background-size: cover;
}

section.slides div#pic-1 {
    background-image: url(images/call-center-1.jpeg);
}

section.slides div#pic-2 {
    background-image: url(images/business-women-1.jpg);
}

section.slides div#pic-3 {
    background-image: url(images/send-referral-1.jpg);
}

section.slides div.picture h1 {
    font-weight: 400;
    font-size: 58px;
    color: #fff;
    padding: 15px;
}

/*slide 1 background and link*/

section.slides div#slide1 {
    background: #243746;
}

section.slides div#slide1 a {
    background: #275B2D;
}

/*slide 2 background and link*/


section.slides div#slide2 {
    background: #1F618D;
}

section.slides div#slide2 a {
    background: #243746;
}

/*slide 3 background and link*/

section.slides div#slide3 {
    background: #5D6D7E;
}

section.slides div#slide3 a {
    background-color: #275B2D;
}

section.slides div#slide2 p {
    padding-bottom: 0;
}

section.slides div.shape {
    background-color: rgba(136,136,136,0.6);
    color: #fff;
    height: 100%;
    width: 100%;
    min-height: 200px;
}

section.slides div.information {
    max-width: 326px;
    margin-left: auto;
    margin-right: auto;
}

section.slides p {
    padding: 15px;
}

.link {
    overflow: hidden;
    margin-bottom: 15px;
    padding: 10px;
    margin-top: 15px;
}

section.slides a {
    width: 100%;
    border-radius: 19.5px;
    color: #fff;
    font-weight: 500;
    line-height: 12px;
    text-align: center;
    padding: 10px;
    text-decoration: none!important;
    font-size: 14px!important;
    max-width: 137px!important;
}

/*slides media queries*/

@media screen and (min-width: 872px) {
    section.slides div.slides-container {
        width: 100%;
        flex-direction: row;
        margin-bottom: 15px;
    }
    
    section.slides div.slide {
        margin: 0 5px;
    }
}

@media screen and (min-width: 1200px) {
    section.slides div.slides-container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1779px) {
     section.slides div.slide {
        margin: 0 10px;
        max-width: none;
        width: 500px;
    }
    
    section.slides div.information {
        max-width: 400px;
    }
}

/*nurse case management information*/

hr#divider-2 {
    margin: 2rem 0;
    padding-bottom: 0;
}

#about-2 .container .blurb {
    padding-top: 0;
}

/*close section*/

section.closer div.contact-info {
    width: 40%;
    margin-left: 30%;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

section.closer div.contact-info p {
    margin-bottom: 2rem;
}

section.closer div.contact-info a {
    text-decoration: none;
    color: #fff;
    background-color: #275B2D;
    border-color: #275B2D;
    border-radius: 5px;
    padding: 10px;
    font-weight: 700;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    transition: 0.5s ease-out;
}

section.closer div.stripe {
    background-color: #2d3541;
    background-position: left top;
    background-repeat: no-repeat;
    padding-top: 65px;
    padding-right: 30px;
    padding-bottom: 35px;
    padding-left: 30px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-color: #eae9e9;
    border-top-style: solid;
    border-bottom-style: solid;
}

/*footer*/

footer {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    position: relative;
    width: 100%;
    height: 13em;
    background: #5f6a6a;
}

footer div.link-cards {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    transform: translate(0, -50%);
}

footer ul.card-links {
    margin: 0 auto;
    display: inline-block;
    list-style: none;
}

footer ul.card-links li {
    width: 280px;
    float: left;
    margin: 0 2.5px;
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.24), 0px 6px 18px rgba(0,0,0,0.12);
    background: #fff;
    height: 100px;
    transform: translateY(-50);
}

footer ul.card-links li a.style-link {
    position: relative;
    width: 280px;
    height: 100px;
    background-color: #fff;
    display: block;
    overflow: hidden;
    color: #000;
    text-decoration: none;
    outline: none;
}

footer ul.card-links li a.style-link .inner-font {
    background-position: 100% 50%;
    background-size: 15px 17px;
    background-image: url(images/next.png);
    background-repeat: no-repeat;
    font-size: 17px;
    line-height: 28px;
    font-weight: 300;
    position: relative;
    margin: 0 40px;
    height: 100%;
    text-align: left;
}

footer ul.card-links li a.style-link .inner-font span {
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

/*Copyright information*/

footer div.copyright-info {
    transform: translate(0, 85%);
}

footer div.copyright-info h2 {
    font-size: 1em;
    padding-top: 0.75em;
    margin-bottom: 10px;
    font-weight: 400;
    color: #ddd;
}

footer div.copyright-info ul.social-links-info li {
    display: inline-block;
}

footer div.copyright-info ul.social-links-info li a {
    color: #d5dbdb;
}

footer div.copyright-info ul.social-links-info li a:hover {
    color: #000;
}

footer div.copyright-info ul.social-links-info span {
    color: #424949;
    padding-left: 0.75em;
    padding-right: 0.75em;
}

/*link to icon credit information*/

footer div.icon-information {
    margin-top: 10px;
    color: #ddd;
}

footer div.icon-information a {
    color: #ddd;
}

footer div.icon-information a:hover {
    color: #000;
}

/*media queries for footer*/

@media screen and (max-width: 1023px) { /*screen size: 1024px*/
    footer ul.card-links li {
        width: 140px;
        height: 50px;
    }

    footer ul.card-links li a.style-link {
        width: 140px;
        height: 50px;        
    }
    
    footer ul.card-links li a.style-link .inner-font {
        margin: 0 20px;
        font-size: 12px;
        line-height: 16px;
        background-size: 10px 12px;
    }
    
    footer div.copyright-info {
        transform: translate(0, 60%);
    }
}

@media screen and (max-width: 479px) { /*screen size: 480*/
    footer ul.card-links li {
        width: 104px;
        height: 50px;
    }

    footer ul.card-links li a.style-link {
        width: 104px;
        height: 50px;        
    }
    
    footer ul.card-links li a.style-link .inner-font {
        margin: 0 10px;
    }
    
    footer div.copyright-info {
        transform: translate(0, 50%);
    }
}