/********** Template CSS **********/
:root {
  --primary: #5dd6c9;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #5caca5;
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: #03615c !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

/*** Carousel Start ***/

.carousel-caption h1 {
  font-size: 50px; /* Tamanho da fonte para os títulos */
  line-height: 1.2; /* Altura da linha */
  margin-bottom: 1rem; /* Espaçamento inferior */
}

.carousel-container {
  height: 90vh; /* Define a altura do contêiner pai do carrossel como 100% da altura da tela */
}

.carousel-item {
  height: 90vh; /* Define a altura do carrossel como 100% da altura da tela */
}

.carousel-item img {
  object-fit: cover;
  height: 100vh !important; /* Para manter a proporção da imagem e cobrir todo o carrossel */
}

.carousel-caption {
  height: 80%; /* Define a altura da legenda do carrossel como 100% */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza verticalmente o conteúdo */
}

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  opacity: 1;
}

.carousel-control-next {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 30px 0 0 30px;
  transition: 0.5s;
  opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
  width: 24px;
  height: 24px;
  background: var(--bs-dark);
  border: 2px solid var(--bs-primary);
  border-radius: 24px;
  margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 80vh;
  }

  .carousel-caption h1 {
    font-size: 30px; /* Tamanho da fonte para os títulos */
    line-height: 1.2; /* Altura da linha */
    margin-bottom: 1rem; /* Espaçamento inferior */
  }

  .carousel-item img {
    height: 400px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 6rem;
}

/*** Carousel End ***/

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 500px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 43, 24, 0.781);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}
.bg-team {
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.781) 35%,
      rgba(9, 43, 24, 0.226)
    ),
    url(../img/doctor.jpg) center center no-repeat;
  background-size: cover;
}

.bg-header {
  background: linear-gradient(rgba(9, 43, 24, 0.781), rgba(9, 43, 24, 0.781)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.bg-adolescente {
  position: relative;
  background: linear-gradient(
      rgba(105, 105, 105, 0.514),
      rgba(70, 70, 70, 0.582)
    ),
    url(../img/adolescente.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 30s infinite;
  height: 500px;
}

.bg-casais {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/casais.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px;
}

.bg-infantil1 {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/infantilbg1.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

.bgartigo {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.733), rgba(9, 43, 24, 0.767)),
    url(../img/artigos.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
}

.bg-infantil {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/infantil.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 20s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

@keyframes moveBackground {
  0%,
  100% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
}

.bg-corporativa {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/banner3.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

.bg-cookies {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/cookies.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

.bg-adulto {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/adultobg.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

.bg-adulto1 {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/adulto.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

.bg-idosos {
  position: relative;
  background: linear-gradient(rgba(9, 43, 24, 0.514), rgba(9, 43, 24, 0.582)),
    url(../img/idosos.jpg) center center no-repeat;
  background-size: cover;
  animation: moveBackground 50s infinite;
  height: 500px; /* Ajuste conforme necessário */
}

@keyframes moveBackground {
  0%,
  100% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
}

/* Estilo do conteúdo */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.bg-call {
  background: linear-gradient(rgba(9, 43, 24, 0.781), rgba(9, 43, 24, 0.781)),
    url(../img/bg1.jpg) center center no-repeat;
  background-size: cover;
}

.bg-card-cirurgia {
  background: linear-gradient(
      rgba(255, 255, 255, 0.849),
      rgba(255, 255, 255, 0.849)
    ),
    url(../img/cirurgias.jpeg) center center no-repeat;
}

.bg-card-exame {
  background: linear-gradient(
      rgba(255, 255, 255, 0.849),
      rgba(255, 255, 255, 0.849)
    ),
    url(../img/exame.jpg) center center no-repeat;
}
.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.depertment_area {
  background-image: url(../img/banner/department.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  /* line 1, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area {
    padding-top: 10px;
    padding-bottom: 80px;
  }

  .textone {
    font-size: 25px !important;
  }
}

/* line 12, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .row.custom_align {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  /* line 15, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .learn_more_btn {
    text-align: left !important;
    margin-top: 30px;
  }
}

/* line 23, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .dept_main_info .dept_thumb img {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 23, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_thumb img {
    max-width: 100%;
  }
}

/* line 30, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .dept_main_info .dept_info {
  padding-left: 68px;
  padding-right: 75px;
}

@media (max-width: 767px) {
  /* line 30, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_info {
    padding: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 30, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_info {
    padding: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 30, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_info {
    padding: 40px;
  }
}

/* line 42, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .dept_main_info .dept_info h3 {
  font-size: 25px;
  line-height: 35px;
  color: #242424;
  font-weight: 500;
  font-family: 'Work Sans', sans-serif;
}

@media (max-width: 767px) {
  /* line 42, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_info h3 {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 51, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_info h3 br {
    display: none;
  }
}

/* line 57, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .dept_main_info .dept_info p {
  /* margin-bottom: 20px; */
  /* margin-top: 20px; */
  color: #5c5c5c;
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 57, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .dept_main_info .dept_info p {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

/* line 69, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav {
  justify-content: space-evenly;
}

/* line 71, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li {
  -webkit-box-flex: 14.4%;
  -ms-flex: 14.4% 0 0px;
  flex: 14.4% 0 0;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  /* line 71, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li {
    -webkit-box-flex: 100%;
    -ms-flex: 100% 0 0px;
    flex: 100% 0 0;
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 71, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li {
    -webkit-box-flex: 30%;
    -ms-flex: 30% 0 0px;
    flex: 30% 0 0;
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 71, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li {
    -webkit-box-flex: 15%;
    -ms-flex: 15% 0 0px;
    flex: 15% 0 0;
    margin-bottom: 0 !important;
  }
}

/* line 94, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li a {
  background: #fff;
  margin-bottom: 30px;
  border: 1px solid #cdf2ff;
  padding: 0;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  /* line 94, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }
}

/* line 124, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li a i {
  font-size: 50px;
  color: #3eadf8;
  line-height: 1;
  margin-bottom: 13px;
}

@media (max-width: 767px) {
  /* line 124, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li a i {
    font-size: 25px;
    margin-right: 15px;
    margin-bottom: 0;
  }
}

/* line 135, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li a h4 {
  font-size: 18px;
  font-weight: 500;
  color: #296ea4;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  /* line 135, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li a h4 {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 135, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li a h4 {
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 146, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
  .depertment_area .depart_ment_tab .nav li a h4 br {
    display: none;
  }
}

/* line 152, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li a.active {
  color: #fff;
  background-image: linear-gradient(-45deg, #98a6a0, #5dd6c9, #148dac, #96e8d5);
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* line 157, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li a.active i {
  color: #fff;
}

/* line 160, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li a.active h4 {
  color: #fff;
}

/* line 165, ../../Arafath/CL/january 2020/241. Medical/HTML/scss/_department.scss */
.depertment_area .depart_ment_tab .nav li:last-child {
  margin-right: 0;
}
.bg-departments {
  background: linear-gradient(
    10deg,
    rgba(103, 177, 93, 0.082) 0%,
    rgba(0, 172, 138, 0.082) 100%
  );
  border-radius: 10px;
}
html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 4.5em;
}

.text-justify {
  text-align: justify;
}

.btn-new {
  padding: 15px;
}

.bg-green {
  background-color: #5dd6c9 !important; /* Use a cor verde desejada */
}

.bg-new {
  background-color: #47afa5 !important; /* Use a cor verde desejada */
}

.navcard {
  width: 300px;
  height: 100px;
  padding: 10px;
}

@media (max-width: 768px) {
  .navcard {
    width: 200px;
    height: 70px;
    padding: 10px;
  }
}
/* 
*** Travel Guide Start ***/
*/ .guide .guide-item .guide-img {
  position: relative;
}

.guide .guide-item .guide-img .guide-icon {
  position: absolute;
  bottom: 0;

  transform: translate(-50%, -50%);
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--bs-primary);
  background: var(--bs-light);
  z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
  height: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
  transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
  transform: scale(1.1);
}

.guide .guide-item .guide-title {
  position: relative;
  background: var(--bs-light);
  transition: 0.5s;
}

.guide .guide-item .guide-title::after {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
  height: 100%;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
  position: relative;
  color: var(--bs-white) !important;
  z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  color: var(--bs-white);
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.background-linear {
  background: linear-gradient(#ffffff6c, #ffffff80),
    url(../img/background-linear-photos.jpeg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team .team-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.team .team-img {
  position: relative;
}

.team .team-img img {
  width: 100%;
  height: 625px;
}

.team .team-text {
  position: relative;
  padding: 25px 15px;
  text-align: center;
  background: #00ac86;
  transition: 0.5s;
}

.team .team-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: #f7f7f7;
  transition: 0.5s;
}

.team .team-text p {
  margin: 0;
  color: #ffffff;
}

.team .team-item:hover .team-text {
  background: #f7f7f7;
}

.team .team-item:hover .team-text h2 {
  color: #00ac86;
  letter-spacing: 1px;
}

.team .team-social {
  position: absolute;
  width: 100px;
  top: 0;
  left: -50px;
  display: flex;
  flex-direction: column;
  font-size: 0;
}

.team .team-social a {
  position: relative;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
  background: #00acee;
  left: 50px;
  transition: 0.3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
  background: #3b5998;
  left: 50px;
  transition: 0.3s 0.1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
  background: #0e76a8;
  left: 50px;
  transition: 0.3s 0.2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
  background: #3f729b;
  left: 50px;
  transition: 0.3s 0.3s;
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.service .service-item {
  position: relative;
  width: 380px;
  text-align: center;
  margin-bottom: 30px;
}

.service .service-img {
  position: relative;
  overflow: hidden;
}

.service .service-img img {
  width: 380px;
  height: 400px;
}
/* @media screen and (max-width: 768px) {
  .service .service-text {
    font-size: 20px;
  }
} */

.service .service-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 15, 39, 0.7);
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover .service-overlay {
  opacity: 1;
}

.service .service-overlay p {
  margin: 0;
  color: #ffffff;
}

.service .service-text {
  display: flex;
  align-items: center;
  height: 100px;
  background: #00ac86;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  justify-content: center;
}

.service .service-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 700;
  color: #f7f7f7;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.service .service-item a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #00ac86;
  background: #f7f7f7;
  border-radius: 0;
  transition: 0.3s;
}

.service .service-item:hover a.btn {
  color: #ffffff;
}

.bgwhite {
  background: linear-gradient(#ffffff70, #ffffffce), url(../img/bgwhite.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

* * Tabs Container */ .tabs-container {
  padding: 2rem;
}

/**
 * Tabs Block
 */
.tabs-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * Tabs
 */
.tabs {
  display: flex;
}

.tabs > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 15%;
}

.tabs > ul li {
  display: block;
}

.tabs > ul li:not(:last-child) {
  border-bottom: 1px solid #002409;
}

.tabs > ul li a,
.tabs > ul li a:visited {
  display: flex;
  border-bottom: none;
  text-decoration: none;
  background-color: #00ac86;
  color: #fff;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease-in-out;
  word-wrap: break-word;
}

.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
  border-bottom: none;
  outline: 0;
}

.tabs > ul li a.active {
  background-color: #fff;
  color: #00ac86;
}

.tabs > ul li a:hover:not(.active) {
  color: white;
}

.tabs > ul li a > span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tabs > ul li a > span.tab-label {
  display: none;
}

.tabs section {
  width: 85%;
  background-color: rgb(255, 255, 255);
  padding: 1rem;
  width: 300px;
  display: none;
  word-wrap: break-word;
  border-bottom: 6px solid #002409;
}

/* .img-servicee{
  width: 100px !important;
 
} */

.img-service {
  width: 100%;
}
.tabs section > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s, transform 0.2s;
}

.tabs section > *:nth-child(1) {
  transition-delay: 0.2s;
}

.tabs section > *:nth-child(2) {
  transition-delay: 0.3s;
}

.tabs section > *:nth-child(3) {
  transition-delay: 0.4s;
}

.tabs section > *:nth-child(4) {
  transition-delay: 0.5s;
}

.tabs section > *:nth-child(5) {
  transition-delay: 0.6s;
}

.tabs section > *:nth-child(6) {
  transition-delay: 0.7s;
}

.tabs section > *:nth-child(7) {
  transition-delay: 0.8s;
}

.tabs section > *:nth-child(8) {
  transition-delay: 0.9s;
}

.tabs section > *:nth-child(9) {
  transition-delay: 1s;
}

.tabs section > *:nth-child(10) {
  transition-delay: 1.1s;
}

.tabs section > *:nth-child(11) {
  transition-delay: 1.2s;
}

.tabs section > *:nth-child(12) {
  transition-delay: 1.3s;
}

.tabs section > *:nth-child(13) {
  transition-delay: 1.4s;
}

.tabs section > *:nth-child(14) {
  transition-delay: 1.5s;
}

.tabs section > *:nth-child(15) {
  transition-delay: 1.6s;
}

.tabs section > *:nth-child(16) {
  transition-delay: 1.7s;
}

.tabs section > *:nth-child(17) {
  transition-delay: 1.8s;
}

.tabs section > *:nth-child(18) {
  transition-delay: 1.9s;
}

.tabs section > *:nth-child(19) {
  transition-delay: 2s;
}

.tabs section > *:nth-child(20) {
  transition-delay: 2.1s;
}

.tabs section.active {
  display: block;
}

.tabs section.active-content > * {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 576px) {
  .tabs > ul {
    width: 150px;
  }

  .tabs > ul li a {
    flex-wrap: wrap;
  }

  .tabs > ul li a > span {
    width: 100%;
  }

  .tabs > ul li a > span.tab-label {
    width: 100%;
    display: block;
    margin-top: 0.2rem;
  }

  .tabs section {
    width: calc(100% - 150px);
    padding: 2rem 2rem;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }

  .tabs-container {
    padding: 4rem 4rem;
  }
}
@media (min-width: 992px) {
  .tabs {
    width: 800px;
  }
}

.tabs-container {
  display: flex;
}

.tabs-container1 {
  display: flex;
  width: 60%;
}

@media (max-width: 768px) {
  .tabs-container1 {
    display: block !important;
    width: 100% !important;
  }
  .imgteam {
    justify-content: center !important;
    display: flex !important;
    width: 100% !important;
  }

  .texttime {
    justify-content: center !important;
    display: flex !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .logodisplay {
    display: none; /* Oculta a imagem com a classe logodisplay */
  }
  .logomobile {
    display: inline; /* Exibe a imagem com a classe logomobile */
  }
}

/* Para telas maiores ou iguais a 768 pixels */
@media (min-width: 768px) {
  .logodisplay {
    display: inline; /* Exibe a imagem com a classe logodisplay */
  }
  .logomobile {
    display: none; /* Oculta a imagem com a classe logomobile */
  }
}
.tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  background-color: #ffffff;
  margin-left: 10px;
  font-weight: 500;
  border: 1px solid #5dd6c9;
  border-radius: 10px 10px 10px 10px; /* Border radius para cantos arredondados */
}

.tab.active {
  background-color: #5dd6c9;
  color: #ffffff;
  /* font-weight: 600; */
  border: 2px solid #5dd6c9;
}

.tab-content1 {
  display: none;
  padding: 20px;
}

.tab-content1.active {
  display: block;
}

.dropdown-menu.dropdown-right {
  left: auto;
  right: 0;
}

.eapps-widget-toolbar-panel-share-button {
  display: none !important;
}

@media only screen and (max-width: 4680px) {
  /* .elfsight-app-c3fe472b-7c78-4be3-87bf-fae552d3c9be {
    max-width: 95% !important;
  } */

  .eapps-widget-toolbar-panel-share-button {
    display: none;
  }

  .eapps-widget-toolbar-panel-share {
    display: none;
  }
  /* .ButtonBase__Overlay-sc-p43e7i-4 {
    width: 50px;
  } */
}

/* @media (max-width: 768px) {
  .elfsight-app-c3fe472b-7c78-4be3-87bf-fae552d3c9be {
    width: 7% !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    text-align: center;
  }
} */
.dropdown {
  float: left;
  position: relative;
  z-index: 9999;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* .navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: red;
} */

.dropdown-one {
  cursor: pointer;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-two {
  cursor: pointer;
  display: none;
  position: absolute;
  left: 170px;
  top: 0px;
  min-width: 160px;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.dropdown:hover .dropdown-one,
#link1:hover > .dropdown-two {
  display: block;
}

.dropdown-one .dItem {
  color: black;
  padding: 12px 16px;
  display: block;
  text-align: left;
}

.dropdown-one .dItem:hover,
.dropdown-two a:hover {
  background-color: #ddd;
}

/* tres */

.dropdown-three {
  cursor: pointer;
  display: none;
  position: absolute;
  left: 170px;
  top: 80px;
  min-width: 160px;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.dropdown:hover .dropdown-one,
#link1:hover > .dropdown-three {
  display: block;
}

.section {
  position: relative;
  background: #fff;
}

.section > .txt-more {
  display: block;
  background: #fff;

  /*posiciona o link no final da DIV*/
  position: absolute;
  right: 0;
  bottom: 0;
}

.section > .partial {
  height: 400px; /* limita a altura aqui, assim irá limitar o texto*/
  overflow: hidden;
}

.section > a::before {
  content: 'Ocultar'; /*Texto de quando o texto estiver visivel*/
}

.section > a.txt-more::before {
  content: '... Mostrar mais'; /* texto para o link*/
}

@media (max-width: 769px) {
  .section > .partial {
    height: 400px !important; /* limita a altura aqui, assim irá limitar o texto*/
    overflow: hidden;
  }
}

/* 1 */

.section1 {
  position: relative;
  background: #fff;
}

.section1 > .txt-more1 {
  display: block;
  background: #fff;

  /*posiciona o link no final da DIV*/
  position: absolute;
  right: 0;
  bottom: 0;
}

.section1 > .partial1 {
  height: 400px; /* limita a altura aqui, assim irá limitar o texto*/
  overflow: hidden;
}

.section1 > a::before {
  content: 'Ocultar'; /*Texto de quando o texto estiver visivel*/
}

.section1 > a.txt-more1::before {
  content: '... Mostrar mais'; /* texto para o link*/
}

@media (max-width: 769px) {
  .section1 > .partial1 {
    height: 400px !important; /* limita a altura aqui, assim irá limitar o texto*/
    overflow: hidden;
  }
}

/* 2 */

.section2 {
  position: relative;
  background: #fff;
}

.section2 > .txt-more2 {
  display: block;
  background: #fff;

  /*posiciona o link no final da DIV*/
  position: absolute;
  right: 0;
  bottom: 0;
}

.section2 > .partial2 {
  height: 400px; /* limita a altura aqui, assim irá limitar o texto*/
  overflow: hidden;
}

.section2 > a::before {
  content: 'Ocultar'; /*Texto de quando o texto estiver visivel*/
}

.section2 > a.txt-more2::before {
  content: '... Mostrar mais'; /* texto para o link*/
}

@media (max-width: 769px) {
  .section2 > .partial2 {
    height: 400px !important; /* limita a altura aqui, assim irá limitar o texto*/
    overflow: hidden;
  }
}

/* 3 */

.section3 {
  position: relative;
  background: #fff;
}

.section3 > .txt-more3 {
  display: block;
  background: #fff;

  /*posiciona o link no final da DIV*/
  position: absolute;
  right: 0;
  bottom: 0;
}

.section3 > .partial3 {
  height: 400px; /* limita a altura aqui, assim irá limitar o texto*/
  overflow: hidden;
}

.section3 > a::before {
  content: 'Ocultar'; /*Texto de quando o texto estiver visivel*/
}

.section3 > a.txt-more3::before {
  content: '... Mostrar mais'; /* texto para o link*/
}

@media (max-width: 769px) {
  .section3 > .partial3 {
    height: 400px !important; /* limita a altura aqui, assim irá limitar o texto*/
    overflow: hidden;
  }
}

/* ---4--- */

/* 3 */

.section4 {
  position: relative;
  background: #fff;
}

.section4 > .txt-more4 {
  display: block;
  background: #fff;

  /*posiciona o link no final da DIV*/
  position: absolute;
  right: 0;
  bottom: 0;
}

.section4 > .partial4 {
  height: 400px; /* limita a altura aqui, assim irá limitar o texto*/
  overflow: hidden;
}

.section4 > a::before {
  content: 'Ocultar'; /*Texto de quando o texto estiver visivel*/
}

.section4 > a.txt-more4::before {
  content: '... Mostrar mais'; /* texto para o link*/
}

@media (max-width: 769px) {
  .section4 > .partial4 {
    height: 400px !important; /* limita a altura aqui, assim irá limitar o texto*/
    overflow: hidden;
  }
}
svg.loading-spinner {
  width: 2.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

circle {
  fill: none;
  stroke: hsl(0, 0%, 100%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}

.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: #5dd6c9;
  width: 98%;
  z-index: 999998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 20px;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.msg-cookies {
  margin-left: 20px;
  margin-top: 20px;
}

.box-cookies .btn-cookies {
  background: #0a0a0a;
  border: 0;
  padding: 5px;
  color: rgb(255, 255, 255);
  transition: 0.4s;
  border-radius: 4px;
  margin-right: 20px;
}

.box-cookies .btn-cookies:hover {
  background: #90ffa8;
  border: 0;
  padding: 5px;
  color: rgb(0, 0, 0) !important;
  transition: 0.4s;
  border-radius: 4px;
  margin-right: 20px;
  /* padding: 20px; */
}

.box-cookies-size {
  justify-content: center;
  display: flex;
}

.color-cookies {
  color: #303a38;
  font-weight: bold;
}

.color-cookies:hover {
  color: #a8e4c1;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}
