:root {
  --title-color: #015E5B;
  --highlight-color: #1acc8d;
  --highlight-box: #007874;
  --test1-background: rgba(115,194,191, .9);
  --test2-background: #99CCCC;
  --test3-background: #99CCFF;
  --test4-background: rgba(0, 150, 161, 0.91);
  --test5-background: rgba(15, 120, 127, 0.91);
  --white: #fff;
  --black: #000;
	--red: #f00;
}

.bck-grnd-w {
	background: #fff;
	color: var(--title-color) !important;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.sr-only-focusable:focus {
    position: relative;
    width: auto;
    height: auto;
    clip: initial;
    margin: inherit;
    padding: inherit;
    border: initial;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.br-3 {
  border-radius: 3px;
}
.br-5 {
  border-radius: 5px;
}
.br-15 {
  border-radius: 15px;
}

a:not(.nav-link) {
  color: #015E5B;
  text-decoration: none !important;
}
a:not(.nav-link):hover {
  text-decoration: underline !important;
}

.news-item img {
  margin-bottom: 20px;
}

.news-item>a:not(.nav-link):hover, 
.the-faq-list a:not(.nav-link):hover, 
a.added-links:hover {
  color: #1acc8d !important;
  text-decoration: underline !important;
}

a.added-links-on-green:hover {
  color: #ede2ae !important;
  text-decoration: underline !important;
}

a.footer-nav-link {
  color: #fff !important;
}

a.footer-nav-link:hover {
  color: #1acc8d;
}

a:hover {
  color: #0096a1 !important;
  text-decoration: none;
}

a.nav-link {
  color: #aaa;
}

a.nav-link:hover {
  color: #fff !important;
}

/* buttons */
.btn-border-progress::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #0096a1;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

button.btn-border-progress::before {
  left: 40px;
}

.btn-border-progress:hover::before {
  visibility: visible;
  width: 25px;
}

h1, h2, h3, h4, h5, h6, .like-h5 {
  font-family: "Montserrat", sans-serif;
}

p {
  line-height: 1.7rem;
  /* max-width: 70ch !important; */
}

p.forcing-width-64 {
  max-width: 64ch !important;
}

.like-h5 {
  font-size: 1.5rem;
  line-height: 3rem;
}
.like-h5 img {
  margin-top: -.5rem;
}

.the_faq p {
  max-width: 100% !important;
}

@media screen and (min-device-width: 1200px) {
  .only_mobile {
    display: none !important;
  }

  .goto-right-on-desktop p,
  .goto-right-on-desktop h3,
  .goto-right-on-desktop span {
    padding-left: 11rem;
  }
}
@media screen and (max-device-width: 1199px) {
  .only_desktop {
    display: none !important;
  }
}

.mt-0 {
  margin-top: 0;
}
.mr-0 {
  margin-right: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-100 {
  margin-bottom: 100px;
}
.ml-0 {
  margin-left: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1acc8d;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1acc8d;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(var(--test1-background), 0.8);
}
/* #header.header-transparent {
  background: transparent;
} */
#header.header-scrolled {
  background: rgba(15, 120, 127, 0.9);
  height: 70px;
  backdrop-filter: blur(4px);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}



#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 75px;
  transition: all .3s;
}

#header.header-scrolled .logo img {
  max-height: 55px;
}

@media (min-width: 991px) {
  #header.header-scrolled * {
    color: white;
  }
  #header.header-scrolled .dropdown-list-item a {
    color: var(--title-color);
  }
  
}

.header-description {
  color: white;
}

.header.dropdown.items *:hover {
  background: var(--title-color);
}

#header.header-scrolled .header.dropdown.items a{
  color: var(--title-color);
}

/*--------------------------------------------------------------
# Pages Navigation
--------------------------------------------------------------*/
.page-links {
  background: #fff;
  position: absolute;
  right: 10%;
  bottom: 60%;
}

.page-links ul {
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.page-links__title {
  font-size: 20px;
  font-weight: 700;
  color: #00a19b;
  margin: 0;
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.pd-100 {
  height: 600px;
}
#hero {
  width: 100%;
  background: url("../img/hero-bg.avif");
  position: relative;
  padding: 120px 0 0 0;
}
#hero:before {
  content: "";
  background: var(--test1-background);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--title-color);
}

#hero * {
  color: var(--title-color);
  /* border-bottom: 4px solid var(--test5-background); */
}
#hero h2 {
  color: var(--title-color);
  margin-bottom: 40px;
  font-size: 24px;
}
#hero .btn-get-started,
#apointments .btn-get-started,
.send-message  {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  background: #fff;
}

a.btn-get-started {
  position: relative;
  color: #000;
}
#contact .btn-get-started {
  outline: 1px solid rgba(0, 0, 0, 0.2);
}

#apointments .btn-get-started:hover {
  outline: 1px solid var(--test1-background);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .animated.paused {
  animation: paused;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
  
    #hero .container {
    padding-top: 100px;
  }
}

#hero .container {
    padding-top: 50px;
  }
  
@media (max-width: 991px) {
  #hero {
    padding-top: 100px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 50%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
    
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  overflow: hidden;
  margin-bottom: 50px;
}

#features {
  margin-bottom: 0;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2.section-master-title {
  font-size: 36px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--title-color);
  font-family: "Poppins", sans-serif;
}

.section-title h2 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--title-color) !important;
  font-family: "Poppins", sans-serif;
}

h2.section-master-title::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--title-color);
  margin: 4px 10px;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--title-color);
  margin: 4px 10px;
}

.section-title h2.cta-marcacao::after {
  background: #fff;
}
.section-title h3,
.modal-title {
  margin: 0;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--title-color);
}

main:nth-child(3) > section:nth-child(9) > div:nth-child(1) > div:nth-child(1) > p:nth-child(2) {
  color: var(--title-color);
}

/* .imgrows .img-fluid {
  max-width: 80% !important;
} */

/*--------------------------------------------------------------
# Apointments
--------------------------------------------------------------*/
section#apointments {
  background: rgba(15, 120, 127, 0.91);
  text-transform: uppercase;
  position: sticky;
}

#apointments .section-title h2 {
  color: #fff;
}

#apointments .section-title h2::after {
  color: #fff !important;
}

.apointments-info {
  background:rgba(0, 0, 0, 0.3);
  padding: 20px 40px;
  margin-bottom: 20px;
  border-radius: 5px ;
}

#apointments p {
  color: #fff;
}
#apointments p:nth-child(2) {
  color: #f00;
}

#hero .btn-get-started {
  background: transparent;
}

.c-btn,
#sticky-button {
  z-index: 2;
  width: 182px;
  height: 40px;
  line-height: 70px;
  font-size: 15px;
  text-align: center;
  background: #fff;
  opacity: 1;
  transition: background 0.3s;
  border-radius: 25px;
  margin-left: 0;
}

.c-btn {
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
  border: var(--highlight-box) !important;
  background: #F5F5FF;
}

.c-btn#goto-research:hover {
  background: var(--highlight-box);
  color: #fff !important;
}

.c-btn#goto-news {
  border: 1px solid var(--title-color) !important;
  background: #f5f5ff;
  color: var(--title-color);
}

.c-btn#goto-news:hover {
  background: var(--highlight-box);
  color: #fff !important;
}


#sticky-button {
  color: var(--title-color) !important;
}

/* sticky button disabled */
#sticky-button.disabled {
  background: #aaa;
  color: #fff !important;
  cursor: not-allowed;
}
#sticky-button.disabled:hover {
  background: #aaa;
  color: #fff;
  cursor: not-allowed;
}

#sticky-button:hover {
  background: var(--title-color);
  color: #fff !important;
}


a#sticky-button:hover::before {
  visibility: hidden;
}

@media (min-width: 991px) {
  #sticky-button {
    margin-left: 40px;
  }
}

#header.header-scrolled #sticky-button {
  color: initial;
}

ul.apointments_limitations {
  margin-bottom: 50px;
}

ul.apointments_limitations * {
  color: #fff;
  list-style: none;
  line-height: 2rem;
}

h3.white {
  color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #00a19b;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #1acc8d;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #1acc8d;
  border-color: #1acc8d;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #1acc8d;
}
.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box {
  background: url("../img/origin/homepage-foto-3.webp") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#00a19b 50%, rgba(0, 167, 153, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  left: calc(50% - 390px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 150, 161, 0.9);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #028e4f;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
  box-shadow: 0.5px 0.5px 3px rgba(212,
    212,
    212,
    0.3);
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.features .icon-box h3 {
  font-weight: 700;
  margin: 0 0 0 5px;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.features .icon-box h3 a {
  color: #00a19b;
  transition: ease-in-out 0.3s;
}
.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover img {
  mix-blend-mode:color-dodge;
}

.features .icon-box:hover {
  background: #00a19b;
  color: #ebebff;
}

.feature-padding {
  padding-top: 25px;
  padding-bottom: 125px;
}

.feature-flex {
  display: flex;
  flex-direction: column;
}
.feature-flex_header {
  background: green;
  display: flex;
  flex-direction: row;
}

.green {
  color: #0096a1;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-row {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}

.row .news-item {
  margin-bottom: 30px;
  width: 30%;
}

.featured-img {
  margin: 50px 0;
  max-width: fit-content;
}

@media screen and (max-width: 768px) {
  .news-row {
    display: block;
  }
  .row .news-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/gallery/gallery-2.avif") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,
  150,
  161,
  0.9);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #fff;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1acc8d;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}
.team .member img {
  transition: all ease-in-out 0.4s;
}
.team .member img.no-motion {
  transition: all 0.3s;
}
.team .member:hover img:not(.no-motion) {
  transform: scale(1.1);
}

.img-logo:hover {
  filter: brightness(1.55) hue-rotate(5deg);
}
.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member h4,
.member-info p,
p.contact-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #016f4c;
  position: relative;
  padding-bottom: 10px;
}

.job.fontSize12 p {
  font-size: 12px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0dfc71;
  bottom: 0;
  left: calc(50% - 25px);
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 1rem;
  /* color: #01036f; */
  /* color: rgb(135, 135, 135); */
  color: #027c51;
}
.team .member .social {
  margin-top: 10px;
}
.team .member .social a {
  transition: color 0.3s;
  color: #016f31;
}
.team .member .social a:hover {
  color: #027c51;
}
.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #34e5a6;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #1acc8d;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #00a19b;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  z-index: 1;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--title-color);
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #00a19b;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #1acc8d;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.form-control {
  border-color: #00a19b;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  border: 0;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #015E5B;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: var(--highlight-box);
  color: #fff;
  border-top: 4px solid #1acc8d;
  text-align: center;
  padding: 30px 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #1acc8d;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #61ebba;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: red;
}

.footer-logos img {
  width: 150px;
  height: auto;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter {
  border: 0;
  padding: 4px;
  height: 75px;
  /* border: 1px solid red; */
  justify-content: flex-end;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #149f6e;
}
#footer .copyright {
  border-top: 1px solid #01928e;
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Blog Post
--------------------------------------------------------------*/
.page-banner {
  background: #00a19b;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

.page-banner__bg-image {
  background-size: cover;
  background-position: 25% 35%;
  background-repeat: no-repeat;
  height: 400px;
}

.page-banner__content.container {
  padding: 50px 0;
}

ul.small-h-nav{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: start;
  align-items: flex-start;
}
ul.small-h-nav li:not(:first-child){
  margin-left: 20px;
}

.post_date {
  font-size: 11px;
  color: #606060;
  margin-bottom: 10px;
}

/* utilities */
/* https: //24ways.org/2018/managing-flow-and-rhythm-with-css-custom-properties/ */
/* .flow {
  --flow-space: 1em;
}

.flow>*+* {
  margin-top: var(--flow-space);
} */

/* doctor-single */

.displaynone {
  display: none;
}

.container.flex {
  display: flex;
  justify-content:space-around;
}

section.doctor-persona {
  color: #606060;
  overflow: visible;
}

.persona-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -100px;
  color: #606060;
}

.persona-image-container {
  
  /* the magic */
    display: block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* the rest */
    /* position: relative; */
    /* top: 11rem;
    right: 14rem; */
    z-index: 99;
    /* for the overlay later */
    text-align: center;
    margin-bottom: 10px;
    border: 3px solid #FFF;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 3px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 3px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), inset 0px 3px 8px rgba(0, 0, 0, 0.3);
}

#personaTitle {
  color: black;
}

.persona-image img {
  z-index: 9999;
  width: 200px;
    height: 200px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  /* make resized images look good in IE */
  -ms-interpolation-mode: bicubic;
}

.personal .social {
  width: 60px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;

  font-size: 25px;
}

.fp-social {
  display: flex;
  justify-content:space-evenly;
}

i.bi-linkedin::before,
i.bi-bank2::before {
  font-size: 30px;
}

.services_list {
  color: #606060;
}
.services_list li {
  list-style-type: none;
  padding: 10px;
  margin: 5px;
  background: #696969;
  width: 200px;
  text-align: center;
}

.with-tooltip {
  position: relative;
  display: inline-block;
}

.with-tooltip .with-tooltip--text {
  visibility: hidden;
  width: 100%;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 35%;
  margin-left: -60px;
}

.social .with-tooltip .with-tooltip--text {
  width: 200px;
  left: -65%;
  color: #fff;
}

.with-tooltip .with-tooltip--text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.with-tooltip:hover .with-tooltip--text {
  visibility: visible;
}

/* modal and contact form marcações apointments */
.element-off.modal {
  display: none;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--title-color);
}

.wpcf7 textarea
{
    height: 150px;
}

@media screen and (min-device-width: 700px) {
  #modalContent {
    width: 120%;
  } 
  .form-choices {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

#modalContent {
  width: 100%;
} 

.modal-title {
  font-size: 20px;
}

form p,
form label {
  color: var(--title-color);
}

.form-choice-y {
  margin-right: 50px;
}

button.form-choice.btn,
a.form-choice.btn,
.wpcf7-submit {
  border: 1px solid #165e5b;
  color: var(--title-color);
  padding: 7px 27px;
  transition: all 0.3s;
}
button.form-choice.btn:hover,
a.form-choice.btn:hover,
.wpcf7-submit:hover {
  background: #165e5b;
  color: #fff !important;
}

.wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0 0 0 0;
}

[data-name="checkbox-sabado"] .wpcf7-list-item input[type=checkbox],
[data-name="checkbox-horario"] .wpcf7-list-item input[type=checkbox],
[data-name="checkbox-estudaoureside"] .wpcf7-list-item input[type=checkbox],
[data-name="checkbox-dias"] .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  visibility: hidden;
}

[data-name="checkbox-sabado"] .wpcf7-list-item label span,
[data-name="checkbox-horario"] .wpcf7-list-item label span,
[data-name="checkbox-estudaoureside"] .wpcf7-list-item label span,
[data-name="checkbox-dias"] .wpcf7-list-item label span {
  display: flex;
  flex-direction: row;
  position: relative;
}

[data-name="checkbox-sabado"] .wpcf7-list-item.last {
  margin-left: 40px;
}

[data-name="checkbox-sabado"] .wpcf7-checkbox input[type=checkbox] + span:before,
[data-name="checkbox-horario"] .wpcf7-checkbox input[type=checkbox] + span:before,
[data-name="checkbox-estudaoureside"] .wpcf7-checkbox input[type=checkbox] + span:before,
[data-name="checkbox-dias"] .wpcf7-checkbox input[type=checkbox] + span:before
 {
  display: block;
  position: relative;
  content: '';
  border-radius: 0;
  height: 30px;
  width: 30px;
  top: 0px;
  left: -10px;
  border: 1px solid #165e5b;
  }

[data-name="checkbox-sabado"] .wpcf7-checkbox input[type=checkbox] + span:before,
[data-name="checkbox-horario"] .wpcf7-checkbox input[type=checkbox] + span:before,
[data-name="checkbox-dias"] .wpcf7-checkbox input[type=checkbox] + span:before
 {
  top: 0px;
  left: -10px;
  border: 1px solid #165e5b;
  }


  [data-name="checkbox-sabado"] .wpcf7-checkbox input[type=checkbox] + span:after, 
  [data-name="checkbox-horario"] .wpcf7-checkbox input[type=checkbox] + span:after, 
  [data-name="checkbox-estudaoureside"] .wpcf7-checkbox input[type=checkbox] + span:after, 
  [data-name="checkbox-dias"] .wpcf7-checkbox input[type=checkbox] + span:after 
  {
  display: block;
  position: relative;
  content: "\2713";
  color: #165e5b;
  height: 30px;
  width: 30px;
  top: 0;
  left: -90px;
  visibility: hidden;
  font-size: 25px;
  font-weight: 200;
  text-align: center;
  line-height: 30px;
  }
 

  [data-name="checkbox-sabado"] .wpcf7-checkbox input[type=checkbox] + span:after, 
  [data-name="checkbox-horario"] .wpcf7-checkbox input[type=checkbox] + span:after, 
  [data-name="checkbox-dias"] .wpcf7-checkbox input[type=checkbox] + span:after 
  {
  position: absolute;
  top: 0;
  left: -10px;
  }

  [data-name="checkbox-sabado"] .wpcf7-checkbox input[type=checkbox]:checked + span:before,
  [data-name="checkbox-horario"] .wpcf7-checkbox input[type=checkbox]:checked + span:before,
  [data-name="checkbox-estudaoureside"] .wpcf7-checkbox input[type=checkbox]:checked + span:before,
  [data-name="checkbox-dias"] .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
  }

  [data-name="checkbox-sabado"] .wpcf7-checkbox input[type=checkbox]:checked + span:after,
  [data-name="checkbox-horario"] .wpcf7-checkbox input[type=checkbox]:checked + span:after,
  [data-name="checkbox-estudaoureside"] .wpcf7-checkbox input[type=checkbox]:checked + span:after,
  [data-name="checkbox-dias"] .wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
  }

  .wpcf7-list-item-label {
  margin-left: 10px;
  display: inline-block;
  color: var(--title-color);
  }

  .wpcf7-form-control.wpcf7-date.wpcf7-validates-as-required.wpcf7-validates-as-date {
    border: none;
    color: var(--title-color);
  }

  [data-name="checkbox-dias"] .wpcf7-form-control {
    display: flex;
    flex-direction: column;
  }

  [data-name="checkbox-horario"] .wpcf7-list-item-label,
  [data-name="checkbox-dias"] .wpcf7-list-item-label {
    width: 200px;
    position: relative;
  }

.display-hidden {
  display: none;
}

html > body:nth-child(2) > header:nth-child(1) > div:nth-child(1) > nav:nth-child(2) > ul:nth-child(1) > li:nth-child(8) > a:nth-child(1) > span:nth-child(1) {
  color: black;
}

/* ACCESSIBILITY SETTINGS */


/* header.header-scrolled.highContrast {
  background: black !important;
  color: white !important;
}

.highContrast *:not(#features):not(.modal):not(.modal-body):not(.modal-content *):not(.about .video-box):not(.a11y),
.highContrast .team .member .member-info,
section.highContrast *,
.highContrast #hero::before {
  background: black;
  color: white !important;
}


.highContrast .faq *,
.highContrast .modal-dialog,
.highContrast .modal-dialog *:not(.form-switch>input),
.highContrast .form-check-label,
.highContrast i.keepStyle
{
  background: #fff;
  color: black !important;
}

.highContrast section#faq,
.highContrast section#faq *,
.highContrast section#contact,
.highContrast section#contact *,
.highContrast footer#footer,
.highContrast footer#footer div.footer-info {
  background: #000;
  color: #fff !important;
}

.highContrast [data-bs-backdrop="static"] {
  background: rgba(0, 0, 0, 0.7);
}

.highContrast .modal-dialog .modal-content .modal-header[data-bs-dismiss="modal"] {
  color: rgba(0, 0, 0, 0.7) !important;
  opacity: 1;
}

body.highContrast #btn-cls {
  color: red;
}


/* Light mode || Dark mode */
@media (prefers-color-scheme: light) {
  body.devicePrefs * {
      background-color: white;
      color: black;
  }
}

@media (prefers-color-scheme: dark) {
  body.devicePrefs * {
      background: black !important;
      color: white !important;
  }

}

@media (prefers-reduced-motion) {
  

}

.hidden-true {
  visibility: hidden;
}
.zIndex-2 {
  z-index: 2;
}

.cookie-banner {
  z-index: 99999;
}

#welcome > div:eq(0) {
	min-height: 100px;
	min-width: 100px;
  border: 4px solid red;
}