/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ROOT */

html {
    scroll-behavior: smooth;
}
body {
    margin: 0 50px ;
    font-family: 'Mulish', sans-serif;
    margin-top: 56px;

}

#main {
    overflow: auto;
    height: 100%;
}




/* HEADER */


.header__nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: white;
    width: 100%;
    /* box-shadow: 0px 1px 3px darkgray; */
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    z-index: 10;
    overflow: hidden;
    padding: 0px 10%;
    
}





.header__logo {
display: inline-block;
}

.logo-t {
    font-style: normal;
    font-weight: bold;
    color: white;
    background-color: #458FF6;
    border-radius: 50%;
    padding: 7px 15px;
    margin-right: 10px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.logo-name {
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    cursor: pointer;
    color: #233348;
}

.nav__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    
    
}

.nav__link {
   
    text-decoration: none;
    font-size: 15px;
    color: #7D7987;
    justify-content: space-between;
   transition: all 0.3s ease 0s;
}
.nav__item {
    display: inline-block;
    padding: 0px 20px;
}

.nav__link:hover, .nav__link:active, .nav__link:focus {
    color: black;
    transition: all 0.3s ease 0s;
}

.nav__toogle {
    display: block;

    position: relative;
    right: -10px;
}

@media (max-width: 768px) {
    .header__nav {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        height: 50px;
        padding: 10px 0px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        overflow: hidden;
        z-index: 10;
        padding-left: 10px;
    }

    .nav__link {
        display: none;
        
    }
    .logo-name {
        font-size: 15px;
        
    }
    .logo-t {
        font-size: 15px;
       
       width: 10px;
        height: 15px;
       
    }
    
    
    .nav__toogle {
    display: block;
    position: relative;
    margin-right: 30px;
    cursor: pointer;
    font-size: 15px;
    align-items: center;
    }

    
}

/* HOME */
.home__container {
    display: flex;
    height: 100vh;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    margin-top: 50px;
    margin: 20px;
}



.home__img {
    width: 600px;
    height: 500px;
    
}
.home__info {
    max-width: 350px;
    position: relative;
    top: -80px;
    
}
.home_title {
    font-size: 40px;
    font-weight: bold;
padding-bottom: 20px;
}

.home__description {
    color: #7D7987;
    font-size: 17px;
    padding-bottom: 60px;
    line-height: 1.2;
}

.home__button {
    font-size: 18px;
    font-weight: normal;
    color: white;
    background-color: #458FF6;
    border-radius: 55px;
    width: 200px;
    height: 60px;
    text-decoration: none;
    padding: 10px 15px;
}



@media (max-width: 768px) {
    .home__container {
        margin-top: -30px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        flex: 1 1;
    }
    .home__img {
        width: 300px;
        height: 250px;
        padding-bottom: 100px;
        margin: 0 auto;
    }
    
    .home__info {
        max-width: 350px;
        position: relative;
        margin: 0 auto;
    }  

    .home_title {
        font-size: 30px;
        font-weight: bold;
        padding-bottom: 20px;
        text-align: center;
        line-height: 1.5;
    }
    
    .home__description {
    line-height: 1.5;
        font-size: 15px;
        padding-bottom: 60px;
        text-align: center;
    }

    .home__button {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px 15px;
        width: 150px;
        height: 30px;
        flex-wrap: nowrap;

    }

}


/* SERVICES */
#services {
    display: block;
    height: 100vh;
    
}

.services__title {
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    padding-bottom: 50px;
}



.services__description {
    color: #7D7987;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    padding-bottom: 20px;
    max-width: 800px;
    flex: 1 1 50%;
    margin: 0 auto;
    line-height: 1.5;
}

.services__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 100px;
    
}

.s-card {
    flex: 1 1 30%;
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 10px 40px 50px #E5E9F6;
    margin: 10px;
    margin-bottom: 20px;
}
.s-card:hover {
    transform: scale(1.1);
        transition: .5s;
    }

.s-icons {
    font-size: 50px ;
    color: #458FF6;
    padding: 20px 20px;
}

.s-card__title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    
}

.s-card_-description {
    color: #7D7987;
    font-weight: normal;
    font-size: 15px;
    padding: 5px 20px;
    line-height: 2;
    
}

.services__btn {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #458FF6;
    background-color: transparent;
    border: 2px solid #458FF6;
    border-radius: 55px;
    width: 100px;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 50px;
    cursor: pointer;
    z-index: 10;
}

.services__btn:hover, .services__btn:focus {
    background-color: #458FF6;
    color: white;
    transition: .5s;
}


@media (max-width: 768px) {
    
    #services {
        display: block;
        height: 250vh;
        margin-bottom: 100px;
        z-index: 10;
        
    }  
    .services__cards {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
.s-card {
    
    justify-content: space-between;
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 10px 40px 50px #E5E9F6;
    margin: 10px;
    margin-bottom: 20px;
    padding: 50px 10px;

}



.s-icons {
    font-size: 40px ;
    color: #458FF6;
    padding: 20px 20px;
}

.s-card__title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
}


.s-card_-description {
    color: #7D7987;
    font-size: 15px;
    line-height: 1.5;
}

.services__btn {
    display: block;
    margin: 0 auto;
   
   
}

}



/* HEALTHCARE PROVIDERS */
#providers {
    display: flex;
    height: 100vh;
    margin-top: 50px;
    
}

.providers__container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.providers__img {
    width:500px ;
    height: 400px;
    margin-left: 100px;
}
.providers__info {
    display: flex;
    flex-direction: column;
    margin: 100px;
}
.providers__title {
    line-height: 1.5;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 50px;
    text-align: left;
    max-width: 300px;
}

.providers__description {
    font-weight: normal;
    color: #7D7987;
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    max-width: 300px;
}

.providers__btn {
   display: block;
    font-size: 18px;
    font-weight: bold;
    color: #458FF6;
    background-color: transparent;
    border: 2px solid #458FF6;
    border-radius: 55px;
    width: 100px;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
   
   
    margin-top: 50px;
}

.providers__btn:hover, .providers__btn:focus {
    background-color: #458FF6;
    color: white;
    transition: .5s;
}



@media (max-width: 768px) {
    
    #providers {
        display: block;
        height: 100vh;
       
    }


    .providers__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 800px;
        
    }
    
    .providers__img {
        width: 300px;
        height: 250px;
        margin: 0 auto;
    }

    .providers__info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }

    .providers__title {
       min-width: 250px;
        font-size: 25px;
        
        text-align: center;
        max-width: 300px;
    }

    .providers__description {
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
        max-width: 300px;
        min-width: 250px;
    } 

    .providers__btn {
        margin-bottom: 50px;
    }
}

/* DOWNLOAD APP */
#apps {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.apps__container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}


.apps__img {
    width: 600px;
    width: 500px;
}

.apps__info {
    display: flex;
    flex-direction: column;
    margin: 100px;
}

.apps__title {
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 300px;
}

.apps__description {
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    color: #7D7987;
    max-width: 300px;
}

.apps__btn {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #458FF6;
    background-color: transparent;
    border: 2px solid #458FF6;
    border-radius: 55px;
    width: 100px;
    text-decoration: none;
    padding: 10px 15px;
   text-align: center;
   
   
    margin-top: 50px;
}

.apps__btn-icon {
    display: inline;
    font-size: 20px;
    font-weight:bold ;
}

.apps__btn:hover, .apps__btn:focus {
    background-color: #458FF6;
    color: white;
    transition: .5s;
}

@media (max-width: 768px) {
    #apps {
        height: 100vh;
        display: block;
        margin-top: 500px;
        z-index: 2;
    }

    .apps__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .apps__img {
        width: 300px;
        height: 250px;
        
    }

    .apps__info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }

    .apps__title {
       min-width: 250px;
        font-size: 25px;
        
        text-align: center;
        max-width: 300px;
    }

    .apps__description {
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
        max-width: 300px;
        min-width: 250px;
    } 

    .apps__btn {
        margin-bottom: 50px;
    }

}

/* TESTIMONIAL */
#testimonial {
    display: block;
    position: relative;
    height: 100vh;
}

.testimonial__containter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.testimonial__card {
    box-sizing: border-box;
    width: 1000px;
    height: 400px;
    background-image: linear-gradient(#67C3F3, #5A98F2 );
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
   flex: 0 1 20%;
}



.testimonial__card-title {
    font-size: 30px;
    font-weight: bold;
    font-style: normal;
    text-align: left;
    line-height: 1.5;
    color: white;
    justify-content: center;
    align-self: center;
    max-width: 400px;
    display: block;
    align-self: center;
}

.testimonial__info {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
   padding: 10px 0px;
   justify-content: center;
   align-content: center;
   align-items: center;
}


.testimonial__card-profile {
    display: flex;
    flex-direction: row;
    padding: 150px 10px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
}

.testimonial__card-profile__pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border:3px solid white;
    background-position: center;
    display: block;
    margin: 10px;
}

.testimonial__card-profile__name {
    font-weight: bold;
    color: white;
    font-style: 20px;
    display: block;
    padding-bottom: 20px;
    position: relative;
    
}

.testimonial__card-profile__work-status {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 15px;
    position: relative;
    padding-top: 30px;
    right: 133px;
    
}


.testimonial__card-testimonial {
    font-size: 15px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
    position: relative;
    top: -50px;
    line-height: 1.5;
}


.testimonial__bottom {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    cursor: pointer;
    
}

.testimonial__bottom-arrow__first {
    font-size: 25px;
    color: rgba(91, 155, 243, .3);
    padding-right: 50px;
}

.testimonial__bottom-dots {
    display: flex;
    position: relative;
    flex-direction: row;

    justify-content: center;
    align-items: center;
}

.testmonial__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(91, 155, 243, .3);
    margin: 0px 5px;
}
.testmonial__dot:nth-of-type(1) {
    background-color: rgba(91, 155, 243, 1);
}

.testmonial__dot:hover, .testmonial__dot:active {
    background-color: rgba(91, 155, 243, 1);
    transition: 1s;
}

.testimonial__bottom-arrow__last {
    font-size: 25px;
    padding-left: 50px;
   color: rgba(91, 155, 243, 1);
}

.testimonial__bottom-arrow__last:hover, .testimonial__bottom-arrow__last:active, .testimonial__bottom-arrow__first:hover, .testimonial__bottom-arrow__first:active {
    color: rgba(91, 155, 243, 1);
    transition: 1s;
} 


@media (max-width: 768px) {
    .testimonial__card {
        box-sizing: border-box;
        width: 300px;
        height: 1000px;
        background-image: linear-gradient(#67C3F3, #5A98F2 );
        border-radius: 24px;
        padding: 50px;
        display: flex;
       
       
    }
 .testimonial__card-title {
    max-width: 300px;
    font-size: 25px;
    line-height: 1.2;
}

.testimonial__card-profile {
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 100px;
    flex-wrap: nowrap;
}

.testimonial__card-profile__pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border:3px solid white;
    background-position: center;
    justify-content: center;
    display: block;
    margin: 10px;
}

.testimonial__card-profile__name {
    font-weight: bold;
    color: white;
    font-style: normal;
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    flex-wrap: nowrap;
}

.testimonial__card-profile__work-status {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-align: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    position: absolute;
    top: 280px;
    margin: 0 auto;
    right: auto;
    padding-bottom: 70px;
   
}


}


/* BLOG ARTICLES */
#articles {
    display: flex;
    flex-direction: column;
    height: 100vh;
}


.artciles__title {
    display: block;
    font-size: 30px;
    font-weight: bold;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-top: 50px;
}

.articles__container {
    display: flex;
   flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   
   
}

.articles__cards {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

.article-card{
    margin: 50px;
    width: 300px;
    height: 450px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 10px 40px 50px #E5E9F6;
    box-sizing: border-box;
    
}

.article-card:hover {
    transform: scale(1.1);
    transition: .5s;
}

.article-card__img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding-bottom: 10px;
}

.article-card__title {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    padding: 20px;
    
}

.article-card__description {
    font-size: 15px;
    line-height: 1.5;
    color: #7D7987;
    text-align: left;
    padding: 0px 20px;
    
}


.article-card__link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #4089ED;
    padding: 20px;
    display: inline-block;
}

.article-card__link-icon {
    font-size: 20px;
    display: inline-block;
    text-align: center;
    align-items: center;
}

.articles__btn {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #458FF6;
    background-color: transparent;
    border: 2px solid #458FF6;
    border-radius: 55px;
    width: 100px;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    margin-top: 50px;
}

.articles__btn:hover, .articles__btn:focus {
    background-color: #458FF6;
    color: white;
    transition: .5s;
}
 
@media (max-width: 768px) {


    
    .artciles__title {
        display: block;
        font-size: 25px;
        font-weight: bold;
        max-width: 400px;
        text-align: center;
        margin: 0 auto;
        padding-bottom: 50px;
    }
    
    .articles__container {
        display: flex;
       flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
       
       
    }
    .articles__cards {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        }


}


/* FOOTER */
#footer {
    margin-top: 700px;
    background-image: linear-gradient(#67C3F3, #5A98F2 );
     padding: 80px;
     height: 1000px;
        margin-top: -100px;
     position: relative;
    height: 400px;
    margin-bottom: -400px;
    clear: both;
    width: 100%;
     right: 0;
     bottom: 0;
     left: 0;
     padding: 1rem;
    

  
}

.footer__container {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
}
   
.footer__info {
    display: flex;
    flex-direction: column;
    
}

.footer__logo {
    display: inline;
    padding: 10px 50px;
    flex-wrap: nowrap;
}

.footer__logo-t {
    font-style: normal;
    font-weight: bold;
    color: #458FF6;
    background-color:white;
    border-radius: 50%;
    padding: 7px 15px;
    margin-right: 10px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.footer__logo-name {
    display: inline;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.footer__description {
    font-size: 15px;
    color: white;
    line-height: 1.5;
    text-align: left;
    max-width: 300px;
    min-width: 200px;
    padding: 10px 50px;
    font-weight: lighter;
}

.footer__copyright {
    font-size: 15px;
    color: white;
    line-height: 1.5;
    text-align: left;
    max-width: 300px;
    padding: 10px 50px;
    font-weight: lighter;
}


.footer__nav {
    display: flex;
    flex-direction: row;
    margin: 20px 50px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;

}

.footer__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 50px;
    
}

.footer__link-title {
 font-size: 17px;
font-weight: bold;
text-decoration: none;
color: white;
text-align: left;
padding-bottom: 15px;
display: block;
}

.footer__item {
   position: relative;
   
}

.footer__link {
    text-decoration: none;
    font-weight: lighter;
    font-size: 15px;
    color: white;
    padding: 10px 0px;
    display: block;
}

@media (max-width: 768px) {
    #footer {

        position: relative;
        height: 1000px;
        margin-top: -100px;
        clear: both;
        width: 100%;
         right: 0;
         bottom: 0;
         left: 0;
         padding: 1rem;
    } 

    .footer__container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
       
        }
           
        .footer__info {
            display: flex;
            flex-direction: column;
            
        }
        
        .footer__logo {
            padding-top: 20px;
            display: inline;
            padding: 10px 50px;
            flex-wrap: nowrap;
        }
        
        .footer__logo-t {
            font-style: normal;
            font-weight: bold;
            color: #458FF6;
            background-color:white;
            border-radius: 50%;
            padding: 7px 15px;
            margin-right: 10px;
            font-size: 15px;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
        
        .footer__logo-name {
            display: inline;
            font-weight: bold;
            font-style: normal;
            font-size: 15px;
            cursor: pointer;
            color: white;
        }
        
        .footer__description {
            font-size: 15px;
            color: white;
            line-height: 1.5;
            text-align: left;
            max-width: 300px;
            min-width: 200px;
            padding: 10px 50px;
            font-weight: lighter;
        }
        
        .footer__copyright {
            font-size: 15px;
            color: white;
            line-height: 1.5;
            text-align: left;
            max-width: 300px;
            padding: 10px 50px;
            font-weight: lighter;
        }
        
        
        .footer__nav {
            display: flex;
            flex-direction: column;
           
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
        
        }
        
        .footer__list {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            align-content: center;
            padding: 0px 50px;
            margin-bottom: 20px;
        }
        
        .footer__link-title {
         font-size: 17px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        text-align: left;
        padding-bottom: 15px;
        display: block;
        }
        
        .footer__item {
           position: relative;
           justify-content: center;
           align-content: center;
           align-items: center;
        }
        
        .footer__link {
            text-decoration: none;
            font-weight: lighter;
            font-size: 15px;
            color: white;
            padding: 10px 0px;
            display: block;
        }

    
}