/* GERAL */

* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: opacity ease .3s;
    transition: opacity ease .3s;
}

span.icon {
    font-family: 'agenda-font-icons';
    margin: 0px 5px;
}

h1,
h2 {
    font-family: 'Fira Sans', sans-serif;
}


/* HEADER */

#header {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 10;
}


/* Switch */

#switch-page {
    background: #2080cd;
    overflow: hidden;
}

.switch-page-professional {
    background: #ea1a3c;
    color: #fff
}

.switch-page-professional a {
    color: #fff
}


.switch-page-paciente {
    background: #2080cd;
    color: #fff
}


#switch-page a {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    padding: 3px 0px;
    margin: 5px 0px;
    position: relative;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    -webkit-transition: border ease .3s;
    transition: border ease .3s;
}

#switch-page a:hover {
    border-bottom: 1px solid #fff;
}


/* Menu Desk */

#menu-wrapper {
    background: #ffffff;
    border-bottom: 1px solid #f2f2f3;
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, .01);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .01);
}

#menu-wrapper #logo {
    margin-top: 20px;
    height: 40px;
    padding-left: 0;
}

#menu-wrapper #menu {
    padding: 0px;
    margin: 0px;
}

#menu-wrapper #menu a {
    display: inline-block;
    cursor: pointer;
}

#menu-wrapper #menu li {
    display: inline-block;
    padding: 35px 25px;
    font-size: 16px;
    color: #333344;
    border-bottom: 1px solid #ffffff;
    -webkit-transition: border ease .3s, color ease .3s;
    transition: border ease .3s, color ease .3s;
}

#menu-wrapper #menu li:hover {
    color: #2071b9;
}

#menu-wrapper #menu li.active {
    color: #2071b9;
    border-bottom: 2px solid #2071b9;
    margin-bottom: -1px;
}

#menu-wrapper #login {
    color: #ffffff;
    background: #0c6bb5;
    border-radius: 50px;
    padding: 5px 15px 5px 25px;
    font-size: 16px;
    margin: 30px 0px;
    font-weight: 300;
    -webkit-transition: color ease .3s, padding ease .3s;
    transition: color ease .3s, padding ease .3s;
    cursor: pointer;
    text-decoration: none;
}

#menu-wrapper #login:hover {
    background: #2071b9;
    padding: 5px 10px 5px 30px;
}

#menu-mobile-icon {
    width: 20px;
    height: 20px;
    padding: 10px;
    position: fixed;
    right: 8.333%;
    top: 65px;
    z-index: 15;
    display: none;
}

#menu-mobile-icon .first-line {
    width: 20px;
    height: 2px;
    background: #333344;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: top ease .3s, left ease .3s, -webkit-transform ease .3s;
    transition: top ease .3s, left ease .3s, -webkit-transform ease .3s;
    transition: transform ease .3s, top ease .3s, left ease .3s;
    transition: transform ease .3s, top ease .3s, left ease .3s, -webkit-transform ease .3s;
}

#menu-mobile-icon .second-line {
    width: 20px;
    height: 2px;
    background: #333344;
    position: absolute;
    top: 9px;
    left: 0;
    -webkit-transition: top ease .3s, left ease .3s, -webkit-transform ease .3s;
    transition: top ease .3s, left ease .3s, -webkit-transform ease .3s;
    transition: transform ease .3s, top ease .3s, left ease .3s;
    transition: transform ease .3s, top ease .3s, left ease .3s, -webkit-transform ease .3s;
}

#menu-mobile-icon .third-line {
    width: 20px;
    height: 2px;
    background: #333344;
    position: absolute;
    top: 18px;
    left: 0;
    -webkit-transition: top ease .3s, left ease .3s, -webkit-transform ease .3s;
    transition: top ease .3s, left ease .3s, -webkit-transform ease .3s;
    transition: transform ease .3s, top ease .3s, left ease .3s;
    transition: transform ease .3s, top ease .3s, left ease .3s, -webkit-transform ease .3s;
}

#menu-mobile-icon.menu-mobile-on .first-line {
    -webkit-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    top: 9px;
}

#menu-mobile-icon.menu-mobile-on .second-line {
    width: 2px;
    left: 9px;
}

#menu-mobile-icon.menu-mobile-on .third-line {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 9px;
}

#menu-mobile {
    width: 300px;
    height: 100%;
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, .5);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    right: -350px;
    z-index: 14;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 125px 30px 30px 30px;
    display: none;
    -webkit-transition: right ease .3s;
    transition: right ease .3s
}

#menu-mobile.menu-mobile-on {
    right: 0;
}

#menu-mobile a {
    -webkit-transition: color ease .3s;
    transition: color ease .3s;
}

#menu-mobile li {
    list-style: none;
    padding: 10px 0px;
    font-size: 16px;
    color: #333344;
    border-bottom: 1px solid #fff;
}

#menu-mobile li.active {
    color: #2071b9;
    border-bottom: 2px solid #2071b9;
}

#menu-mobile a:hover {
    text-decoration: none;
}

#menu-mobile a:hover li {
    color: #2071b9;
}

#menu-mobile .line {
    width: 100%;
    height: 1px;
    background: #f2f2f3;
}

#login-mobile {
    width: 100%;
    padding: 10px;
    position: fixed;
    z-index: 12;
    bottom: 0;
    left: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
    display: none;
}

#login-mobile .button {
    color: #ffffff;
    background: #0c6bb5;
    border-radius: 50px;
    padding: 5px 15px 5px 25px;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: color ease .3s, padding ease .3s;
    transition: color ease .3s, padding ease .3s;
    cursor: pointer;
    text-align: center;
}


/* CONTEÚDO */


/* Intro */

#intro {
    height: 90%;
    height: calc(100% - 120px);
    background: url(../images/hero-paciente.jpg) no-repeat center center;
    background-size: cover;
    /* margin-top: 120px; */
}
#intro .container {
    height: 100%;
    position: relative
}

#intro .content {
    height: 200px;
    position: absolute;
    background: rgba(255, 255, 255, .85);
    border-radius: 5px;
    text-align: center;
    bottom: 75px;
}

#intro .content h1 {
    color: #2071b6;
    font-weight: 400;
    font-size: 32px;
    position: relative;
    text-shadow: 0px 3px 15px #ffffff;
    margin-bottom: 0px;
}

#intro .content h1 b {
    font-weight: 500
}

#intro .content .text {
    color: #333344;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    text-shadow: 0px 0px 3px #ffffff;
    position: relative;
    margin-bottom: 30px;
}

#intro .content .text:after {
    content: '';
    position: absolute;
    width: 75px;
    height: 1px;
    /*    background: #ea1a3c;*/
    left: 50%;
    margin-left: -32px;
    bottom: -5px;
}

#intro .content #search {
    display: inline-block;
    background: #00ce18;
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 50px;
    padding: 6px 20px 6px 25px;
    -webkit-transition: color ease .3s, padding ease .3s;
    transition: color ease .3s, padding ease .3s;
    margin-top: 30px;
}

#intro .content #search:hover {
    background: #02B50F;
    padding: 6px 15px 6px 30px;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.blue-addon {
    color: #FFFFFF;
    background: #0c6bb5;
    border: 1px solid #0c6bb5;
}


/* RESULTADOS */

#results{
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0px;
    /* overflow: hidden; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: height ease .3s, max-height  ease .3s, padding  ease .3s;
    transition: height ease .3s, max-height  ease .3s, padding  ease .3s
}

#results.active{
    max-height: 3000px;
    padding-top: 30px;
    padding-bottom: 30px;
}

#results h2{
    font-weight: 300;
    font-size: 38px;
    position: relative;
    color: #333344;
    margin-bottom: 45px;
    text-align: center;
}

#results h2 strong{font-weight: 400;}

#results h2:after{
    content: '';
    position: absolute;
    width: 75px;
    height: 1px;
    background: #2071b9;
    left: 50%;
    margin-left: -32px;
    bottom: -15px
}

.results {
    padding-top: 15px;
    padding-bottom: 15px;
}

.results .item {
    display: list-item;
    list-style: none;
    border: 1px solid #E5E7E7;
    border-radius: 5px;
    margin: 20px 0px 30px 0px;
    background: #FFFFFF;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.results .item:hover {
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, .25);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, .25);
}

.results .item .padding {
    padding: 30px 0px;
}

.results .item h4 {
    color: #2071b9;
    font-size: 24px;
    font-weight: 700;
}


/* Perfil*/

.results .item .profile-photo img {
    width: 60%;
    margin: 0px 20%;
}

.results .item .links ul {
    padding-left: 15px;
    height: 50px;
}

.results .item .links ul li {
    display: inline-block;
    width: 33%;
    height: 50px;
    padding: 15px 0px;
    border-bottom: 1px solid #FFF;
}

.results .item .links ul li a {
    background: transparent;
}

.results .item .links ul li:hover {
    border-bottom: 1px solid #1384D8;
}

.results .item .links ul li img {
    height: 20px;
    width: 100%;
    margin: 0 auto;
}


/* Informações Pessoais*/

.results .item h4 {
    font-size: 18px;
    margin-top: 45px;
}

.results .item h4 span {
    color: #898989;
    font-size: .8em;
    position: relative;
}

.results .item h4 span:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background: url(../images/icons/verified-icon.png);
    background-size: 100%;
    top: 4px;
    right: -12px;
}

.results .item .info {
    color: #555555;
    padding: 5px 0px;
}

.results .item .adress {
    color: #898989;
    font-size: .9em;
    line-height: 150%;
}


/* Tabela de Agendas */

.results .item table {
    margin-top: 25px;
    color: #898989;
    text-align: center;
    cursor: default;
}

.results .item table th {
    color: #1384D8;
    text-align: center;
}

.results .item table td {
    border-radius: 30px;
}

.results .item table td:hover {
    background: #1384D8;
    color: #FFFFFF;
    cursor: pointer;
}


/* Lista de Convênios e Consulta Partidular*/

#planos {
    margin-top: 30px;
}

#planos span {
    display: inline-block;
    margin: 3px 2px;
    padding: 2px 15px;
    border: 1px solid #1384D8;
    color: #1384D8;
    border-radius: 50px;
    cursor: default;
}

#consulta-particular {
    color: #898989;
    margin-top: 15px;
}

#consulta-particular .rs,
#consulta-particular .valor,
#consulta-particular .cents {
    float: left;
    color: #1384D8;
    font-size: 1.1em;
}

#consulta-particular .valor {
    font-size: 2em;
}

#agendar-consulta {
    background: #FFFFFF;
    border-radius: 50px;
    color: #00ce18;
    margin-right: 10px;
    float: right;
    padding: 6px 15px 6px 25px;
    cursor: pointer;
    margin-top: 5px;
}

#agendar-consulta.mobile {
    display: none;
}

#agendar-consulta:hover {
    background: #00ce18;
    color: #FFFFFF;
    padding: 6px 10px 6px 30px;
}

#results button.see-more {
    background: #00ce18;
    color: #FFFFFF;
    border-radius: 50px;
    margin-right: 10px;
    padding: 6px 20px;
    border: none;
    -webkit-transition: background ease .3s, padding ease .3s;
    transition: background ease .3s, padding ease .3s
}

#results button.see-more:hover {
    background: #02B50F;
    color: #FFFFFF;
    padding: 6px 15px 6px 25px;
}


/* Apresentação */

#apresentacao {
    background: #f7f7f7;
    padding: 30px 0px 60px 0px;
}

#apresentacao h2 {
    font-size: 38px;
    color: #333344;
    font-weight: 300;
    position: relative;
    margin-top: 30px;
    margin-bottom: 60px;
}

#apresentacao h2:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #ccc;
    bottom: -15px;
    left: 0px;
}

#apresentacao .item {
    width: 90%;
    margin: 15px 5%;
    padding: 30px 45px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    color: #878787;
    min-height: 260px;
    cursor: default;
    -webkit-transition: box-shadow ease .3s;
    -webkit-transition: -webkit-box-shadow ease .3s;
    transition: -webkit-box-shadow ease .3s;
    transition: box-shadow ease .3s;
    transition: box-shadow ease .3s, -webkit-box-shadow ease .3s;
}

#apresentacao .item:hover {
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

#apresentacao .item strong {
    color: #666666;
}

#apresentacao .item .icon {
    margin-bottom: 30px;
    position: relative;
}

#apresentacao .item .icon:after {
    content: "";
    position: absolute;
    width: 45px;
    height: 2px;
    background: #ea1a3c;
    left: 50%;
    margin-left: -22px;
    bottom: -15px;
}

#apresentacao .item p {
    font-size: 12px;
}

/* Highlight */

#highlight {
    background: #f7f7f7;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 440px;
}

#highlight:after {
    content: '';
    position: absolute;
    background: #2080cd;
    background: -webkit-gradient(linear, left top, right bottom, from(#2080cd), to(#164ac4));
    background: linear-gradient(to bottom right, #2080cd, #164ac4);
    width: 100%;
    height: 100%;
    top: 40px;
    left: 0;
    z-index: -1;
}

#highlight h2 {
    font-size: 38px;
    font-weight: 300;
    color: #ffffff;
    position: relative;
    margin-bottom: 30px;
}

#highlight h2 strong {
    font-weight: 400;
}

#highlight h2:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #ffffff;
    left: 0px;
    bottom: -15px;
}

#highlight p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

#highlight img {
    max-width: 110%;
    position: relative;
    margin-top: -100px;
    image-rendering: crisp-edges;
}


/* Benefícios */

#beneficios {
    padding-top: 90px;
    padding-bottom: 60px;
}

#beneficios img {
    max-width: 100%;
    image-rendering: crisp-edges;
}

#beneficios .phone {
    margin-top: 60px;
}

#beneficios h2 {
    color: #333344;
    font-size: 38px;
    font-weight: 300;
    position: relative;
    margin-bottom: 30px;
}

#beneficios .item {
    margin: 30px 0px;
}

#beneficios h2:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #00cb18;
    left: 0;
    bottom: -15px;
}

#beneficios p {
    color: #878787;
    font-size: 16px;
    position: relative;
    line-height: 200%;
}

#beneficios h3 {
    font-family: 'Fira Sans', sans-serif;
    color: #666666;
    display: block;
    font-size: 19px;
    margin-bottom: 5px;
}

#beneficios p:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #cccccc;
    bottom: -15px;
    left: 0px;
}


/* Depoimento */

#quote {
    background: url(../images/depoimento.png) no-repeat center center;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
}

#quote blockquote {
    color: #333344;
    font-size: 24px;
    font-family: 'Fira Sans', sans-serif;
    font-style: italic;
    line-height: 180%;
    position: relative;
    font-weight: 300;
    padding: 0;
    border: none;
}

#quote blockquote:before {
    content: '“';
    color: #e7e7e7;
    font-size: 260px;
    position: absolute;
    font-style: normal;
    font-weight: 500;
    top: 60px;
    left: -120px;
}

#quote span {
    color: #2071b6;
    font-size: 16px;
}


/* Contato */

#contato {
    background: url(../images/hospital-bg.png) no-repeat center center;
    background-size: cover;
    padding-top: 75px;
    padding-bottom: 75px;
}

#contato .container {
    position: relative
}

#contato h2 {
    color: #333344;
    font-size: 38px;
    font-weight: 300;
    position: relative;
    margin-bottom: 30px;
}

#contato h2:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #ffffff;
    left: 0;
    bottom: -15px;
}

#contato h3 {
    color: #333344;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 15px;
}

#contato p {
    margin-bottom: 15px;
    color: #666666;
    font-size: 16px;
}

#contato p b {
    color: #2071b6;
    font-size: 18px;
}

#contato .left-col {
    padding-bottom: 15px;
    border-bottom: 2px solid #ffffff;
}

#contato .menina {
    height: 120%;
    height: calc(100% + 125px);
    position: absolute;
    background: url(../images/hospital-menina.png) no-repeat center bottom;
    background-size: contain;
    bottom: -75px;
    right: 8.3333%;
}


/* RODAPÉ */

#footer {
    color: #666677;
    font-size: 14px;
    font-weight: 300;
    line-height: 180%;
    padding-top: 60px;
    border-bottom: 5px solid #2071b6;
    position: relative;
}

#footer #to-top {
    width: 30px;
    height: 30px;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 7px;
    text-align: center;
    border-radius: 15px;
    background: #2071b6;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    -webkit-transition: background ease .3s, box-shadow ease .3s, top ease .3s;
    -webkit-transition: background ease .3s, top ease .3s, -webkit-box-shadow ease .3s;
    transition: background ease .3s, top ease .3s, -webkit-box-shadow ease .3s;
    transition: background ease .3s, box-shadow ease .3s, top ease .3s;
    transition: background ease .3s, box-shadow ease .3s, top ease .3s, -webkit-box-shadow ease .3s;
}

#footer #to-top svg * {
    -webkit-transition: fill ease .3s;
    transition: fill ease .3s;
}

#footer #to-top:hover {
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, .15);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .15);
    top: -20px;
}

#footer #to-top:hover svg * {
    fill: #2071b6;
}

#footer .logo {
    width: 160px;
    height: auto;
    margin-bottom: 30px;
}

#footer .title {
    color: #2071b6;
    font-size: 20px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 35px;
    position: relative;
}

#footer .title:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background: #2071b6;
    left: 0;
    bottom: -15px;
}

#footer a {
    color: inherit;
    text-decoration: none;
    display: list-item;
    list-style: none;
}

#footer ul li {
    display: inline-block;
    border-bottom: 1px solid #ffffff;
    -webkit-transition: border ease .3s;
    transition: border ease .3s
}

#footer a:hover li {
    border-bottom: 1px solid #2071b6;
}

#footer .phone {
    font-size: 14px;
    position: relative;
    margin-bottom: 15px;
}

#footer .phone:before {
    width: 12px;
    height: 17px;
    content: "";
    position: absolute;
    background: url(../images/icons/phone.png) no-repeat center center;
    top: 5px;
    left: -20px;
}

#footer .email {
    position: relative;
}

#footer .email:before {
    width: 15px;
    height: 11px;
    content: "";
    position: absolute;
    background: url(../images/icons/email.png) no-repeat center center;
    top: 7px;
    left: -22px;
}

#footer .social {
    overflow: hidden;
    padding: 30px 5px 15px 5px;
    margin-left: -5px;
}

#footer .social .icon {
    width: 30px;
    height: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding: 5px;
    border-radius: 15px;
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, .1);
    float: left;
    margin-right: 15px;
    -webkit-transition: background ease .3s, box-shadow ease .3s;
    -webkit-transition: background ease .3s, -webkit-box-shadow ease .3s;
    transition: background ease .3s, -webkit-box-shadow ease .3s;
    transition: background ease .3s, box-shadow ease .3s;
    transition: background ease .3s, box-shadow ease .3s, -webkit-box-shadow ease .3s;
}

#footer .social .icon svg * {
    -webkit-transition: fill ease .3s;
    transition: fill ease .3s;
}

#footer .social .icon.facebook:hover {
    background: #2071b6;
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
}

#footer .social .icon.twitter:hover {
    background: #00c0f7;
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
}

#footer .social .icon.facebook:hover svg *,
#footer .social .icon.twitter:hover svg * {
    fill: #ffffff;
}

#footer .copyright {
    border-top: 2px solid #f7f7f7;
    margin-top: 45px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (max-width:1200px) {
    #highlight {
        height: 420px;
    }
    #highlight img {
        margin-top: -30px;
    }
}

@media (max-width:992px) {

  #footer .phone {
      font-size: 14px;
      position: relative;
      margin-bottom: 15px;
  }

  #footer .phone:before {
      width: 12px;
      height: 17px;
      content: "";
      position: absolute;
      background: url(../images/icons/phone.png) no-repeat center center;
      top: 5px;
      left: 108px;
      margin-top: 15px;
  }



  #footer .email {
      position: relative;
  }

  #footer .email:before {
      width: 15px;
      height: 11px;
      content: "";
      position: absolute;
      background: url(../images/icons/email.png) no-repeat center center;
      top: 7px;
      left: 70px;
  }

    #menu-wrapper #menu {
        margin-left: 15px;
    }
    #menu-wrapper #menu li {
        padding: 35px 15px
    }
    #intro .content {
        height: 225px;
    }
    #intro .content .text {
        margin-bottom: 15px;
    }
    #intro .input-group {
        margin-bottom: 15px;
    }
    #intro .content #search {
        margin-top: 5px;
    }
    #apresentacao .item {
        min-height: 280px;
        margin-bottom: 30px
    }
    #highlight {
        height: 650px;
    }
    #highlight img {
        margin-top: 0px;
    }
    #footer {
        text-align: center;
    }
    #footer .title:after {
        left: 50%;
        margin-left: -7px
    }
    #footer a {
        display: inline-block;
        margin: 15px 10px
    }
    #footer .copyright {
        margin-top: 15px;
    }
}

@media (max-width:767px) {
    #menu-wrapper {
        height: 80px;
    }
    #menu-wrapper #logo {
        margin-top: 15px;
        text-align: center;
    }
    #menu-mobile,
    #menu-mobile-icon,
    #login-mobile {
        display: block
    }
    #intro {
        height: calc(100% - 80px);
        margin-top: 80px;
    }
    #menu-wrapper #menu,
    #menu-wrapper #login {
        display: none;
    }
    #intro {
        position: relative;
        background: url(../images/hero-paciente-mobile.jpg) no-repeat center right;
        background-size: cover;
    }
    #intro .container {
        position: relative;
        z-index: 2
    }
    #intro:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background: url(../images/white-grad.png) no-repeat bottom left;
        background-size: 100% 100%;
        opacity: .75;
        z-index: 1;
    }
    #intro .content {
        bottom: 60px
    }
    #intro .content h1 {
        text-shadow: 0px 2px 5px #ffffff;
        font-size: 24px;
    }
    #intro .content h1:after {
        bottom: -10px;
    }
    #intro .content .text {
        font-size: 16px;
    }
    #intro .content #search {
        margin-top: 15px
    }

    .results .item{padding-left: 5%;padding-right: 5%;}
    .results .item .padding{padding: 30px 0px 0px 0px;}
    .results .item h4 span{display: block;margin-top: 7px;}
    .results .item h4 span:after{left: 105px;}
    .results-per-page{margin-top: 20px; text-align: left;padding: 0px 25px;}
    .search-specs, .results .item h4,.results .item .results .adress{padding: 0px 10px;}
    #planos, #consulta-particular{margin-top: 15px;padding: 0px 15px;}
    .results .border-top{margin: 10px 0px;}
    #agendar-consulta.desktop{display: none;}
    #agendar-consulta.mobile{display: block; float: none; margin: 30px auto; text-align: center; overflow: hidden; width: 200px;}
    .results .item .info{padding: 5px 10px;}
    #results button.see-more{width: 100%;}
    #apresentacao {
        padding: 30px 0px;
    }
    #apresentacao h2 {
        text-align: center;
        margin-bottom: 30px
    }
    #apresentacao h2:after {
        left: 50%;
        margin-left: -15px
    }
    #apresentacao .item {
        min-height: 0
    }
    #apresentacao .item small {
        font-size: 100%;
    }
    #highlight {
        padding-top: 45px;
        padding-bottom: 0px;
        height: auto;
        background: #2080cd;
        background: -webkit-gradient(linear, left top, right bottom, from(#2080cd), to(#164ac4));
        background: linear-gradient(to bottom right, #2080cd, #164ac4);
    }
    #highlight:after {
        display: none
    }
    #highlight img {
        width: 100%
    }
    #beneficios {
        padding-top: 60px
    }
    #beneficios .item {
        text-align: center
    }
    #beneficios p:after {
        left: 50%;
        margin-left: -15px;
    }
    #quote blockquote:before {
        left: 0;
        top: 0
    }
    #quote {
        padding-bottom: 60px
    }
    #contato .menina {
        display: none
    }
    #footer {
        padding-bottom: 50px
    }
   .address {
        color: #898989;
        font-size: .9em;
        line-height: 150%;
    }
}

.input-group-addon {
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    background-color: #0c6bb5;
    border: 1px solid #0c6bb5;
    border-radius: 4px;
}


.see-more {
    background: #00ce18;
    color: #FFFFFF;
    border-radius: 50px;
    margin-right: 10px;
    padding: 6px 20px;
    border: none;
    -webkit-transition: background ease .3s, padding ease .3s;
    transition: background ease .3s, padding ease .3s;
}
.cursor-piont {
  cursor: pointer;
}

.displaynone {
  display: none
}
