/*
01 - Fonts Variable Style
<<<<======================================================>>>>*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
/*
02 - Color Variable Style
<<<<======================================================>>>>*/
/*
03 - Global Style
<<<<======================================================>>>>*/
body {
  font-size: 17px;
  font-family: "Nunito Sans", serif;
  color: #000000;
  font-weight: 400;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

a {
  transition: all ease 0.5s;
  color: #000000;
}
a:hover {
  color: #0943b5;
}
a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  box-shadow: none;
  border: none;
  padding: 0;
}
button:focus {
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #020202;
  font-weight: 700;
}

p {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  height: 55px;
  border: 1px solid #dfdfdf;
  background-color: #ffffff;
  color: #020202;
  border-radius: 4px;
  font-size: 14px;
  padding: 10px 20px;
  width: 100%;
  transition: all ease 0.5s;
}
.form-control::-moz-placeholder {
  color: #959ca9;
}
.form-control::placeholder {
  color: #959ca9;
}
.form-control:focus {
  color: #000000;
  background-color: transparent;
  box-shadow: unset;
  outline: 0;
  border-color: #0943b5;
}

.form-control:hover:focus,
.form-control:focus {
  box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.bg-color-012b95 {
  background-color: #012b95;
}

.bg-color-f7f7f7 {
  background-color: #f7f7f7;
}

.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

/*
04 - Preloader Style
<<<<======================================================>>>>*/
.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 99999;
}
.preloader .content {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  transform: translate(-50px, -50px);
}
.preloader .ball {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 11%;
  height: 50%;
  background-color: transparent;
  transform-origin: bottom center;
  overflow: visible;
}
.preloader .ball:nth-of-type(2) {
  transform: translate(-50%, 0) rotate(36deg);
}
.preloader .ball:nth-of-type(3) {
  transform: translate(-50%, 0) rotate(72deg);
}
.preloader .ball:nth-of-type(4) {
  transform: translate(-50%, 0) rotate(108deg);
}
.preloader .ball:nth-of-type(5) {
  transform: translate(-50%, 0) rotate(144deg);
}
.preloader .ball:nth-of-type(6) {
  transform: translate(-50%, 0) rotate(180deg);
}
.preloader .ball:nth-of-type(7) {
  transform: translate(-50%, 0) rotate(216deg);
}
.preloader .ball:nth-of-type(8) {
  transform: translate(-50%, 0) rotate(252deg);
}
.preloader .ball:nth-of-type(9) {
  transform: translate(-50%, 0) rotate(288deg);
}
.preloader .ball:nth-of-type(10) {
  transform: translate(-50%, 0) rotate(324deg);
}
.preloader .ball::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 56%;
  border-radius: 70px;
  background-color: #0943b5;
}
.preloader .ball::after {
  position: absolute;
  content: "";
  bottom: -100;
  left: 0;
  width: 100%;
  height: 56%;
  border-radius: 70px;
  background-color: #4f87ff;
  animation: opacity-six 2.5s infinite linear;
  opacity: 0;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}

@keyframes spin-six {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes opacity-six {
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
09 - Main Btn Style
<<<<======================================================>>>>*/
.main-btn {
  display: inline-block;
  position: relative;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 17px 35px;
  transition: all ease 0.5s;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(5.6px);
          backdrop-filter: blur(5.6px);
  background-color: #0943b5;
}
.main-btn:hover {
  background-color: #0943b5;
  color: #ffffff;
  border-color: #0943b5;
}
.main-btn:visited {
  color: #ffffff;
}

/*
12 - Main Section Title Style
<<<<======================================================>>>>*/
.section-title {
  text-align: center;
  max-width: 800px;
  margin: -5px auto 50px;
}
.section-title img {
  margin-bottom: 20px;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.16;
}
.section-title h2 span {
  color: #0943b5;
}
.section-title h2:last-child {
  margin-bottom: 0;
}
.section-title p {
  max-width: 600px;
  margin: auto;
  font-size: 17px;
}

.header-area {
  background-color: #0943b5;
  padding: 13px 0;
}

.navbar-area {
  padding: 27px 0;
}

.banner-area {
  padding-top: 150px;
  padding-bottom: 150px;
}

.banner-content h2 {
  font-size: 20px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 45px;
}

.mb-30 {
  margin-bottom: 30px;
}

.banner-single-item {
  border-radius: 5px;
  border: 1px solid #eee;
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 100%;
  transition: all ease 0.5s;
  position: relative;
  z-index: 1;
}
.banner-single-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: -1;
  border-radius: 5px;
}
.banner-single-item:hover {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #971444, #34b5a9) border-box;
  border: 1px solid transparent;
}
.banner-single-item h3 {
  font-size: 18px;
  font-weight: 500;
}
.banner-single-item img {
  margin-bottom: 15px;
}

.feature-area {
  margin-top: -65px;
  position: relative;
  z-index: 11;
}

.banner-slide.owl-theme .owl-nav {
  margin: 0 !important;
}
.banner-slide.owl-theme .owl-nav .owl-prev,
.banner-slide.owl-theme .owl-nav .owl-next {
  background-color: transparent;
  color: #ffffff;
  font-size: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}
.banner-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -50px;
}

.newspaper-area {
  background: var(--bg, linear-gradient(100deg, #d50013 -9.39%, #0943b5 10.49%, #2182ae 67.62%, #34b5a9 92.66%));
}

#encuesta .newspaper-single-item {
  border: 1px solid #d2d2d2;
}
#encuesta h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
  margin: 0 0 30px 0px;
}
#encuesta .main-btn {
  padding: 17px 30px;
}
#encuesta .newspaper-single-item .newspaper-content {
  padding: 42px 32px;
}

.newspaper-single-item {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  height: 100%;
  z-index: 1;
}
.newspaper-single-item .newspaper-img {
  border-radius: 20px 20px 5px 5px;
}
.newspaper-single-item .tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  padding: 4px 20px;
  border-radius: 20px 0 0 0;
  display: inline-block;
}
.newspaper-single-item .tag span {
  color: #1a1b20;
  font-size: 10px;
  font-weight: 700;
  line-height: 240%;
  margin-left: 5px;
}
.newspaper-single-item .newspaper-content {
  padding: 16px 32px;
}
.newspaper-single-item .newspaper-content .date {
  color: #495057;
  font-size: 14px;
  font-weight: 400;
  line-height: 142.857%;
  letter-spacing: 0.25px;
}
.newspaper-single-item .newspaper-content h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 1px;
}
.newspaper-single-item .newspaper-content h3 a {
  text-decoration: none;
}

.newspaper-area .col-lg-4:hover .hover-border::after {
  bottom: -5px;
}

.hover-border {
  position: relative;
}
.hover-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-image: linear-gradient(to right, #522d7a, #34b5a9);
  border-radius: 20px;
  transition: all ease 0.5s;
}

.read-more {
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
}
.read-more:hover {
  color: #020202;
}

.informacion-single-item {
  border-radius: 5px;
  border: 1px solid #eee;
  background: #fff;
  padding: 32px 16px;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}
.informacion-single-item img {
  border-radius: 24px;
  margin-bottom: 20px;
}
.informacion-single-item .date {
  color: #787878;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.informacion-single-item h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.informacion-single-item .read-mores {
  text-decoration: none;
  color: #0943b5;
}
.informacion-single-item .main-btn {
  font-size: 16px;
  padding: 1rem;
  line-height: 0.8;
}

.informacion-slide.owl-theme .owl-nav {
  margin: 0 !important;
  text-align: right;
}
.informacion-slide.owl-theme .owl-nav .owl-prev,
.informacion-slide.owl-theme .owl-nav .owl-next {
  background-color: transparent;
  color: #000000;
  font-size: 25px;
  border: 1px solid #000000;
  font-size: 20px;
  width: 66px;
  height: 44px;
  border-radius: 50px;
  transition: all ease 0.5s;
  margin: 0;
}
.informacion-slide.owl-theme .owl-nav .owl-prev i,
.informacion-slide.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 2px;
}
.informacion-slide.owl-theme .owl-nav .owl-prev:hover,
.informacion-slide.owl-theme .owl-nav .owl-next:hover {
  background-color: #0943b5;
  color: #ffffff;
  border-color: #0943b5;
}
.informacion-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -50px;
  margin-left: 16px;
}

.informacion-tabs {
  border-bottom: 2px solid #e2e2e9;
  margin-bottom: 30px;
}
.informacion-tabs .nav-item .nav-link {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 0;
  color: #000000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 142.857%;
  letter-spacing: 0.1px;
  padding: 15px 136px;
  position: relative;
  background-color: #fcfcff;
}
.informacion-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  border-radius: 100px 100px 0px 0px;
  background: var(--bordersns, linear-gradient(90deg, #522d7a 0%, #34b5a9 100%));
  opacity: 0;
  transition: all ease 0.5s;
}
.informacion-tabs .nav-item .nav-link.active {
  background-color: transparent;
  border: 0;
}
.informacion-tabs .nav-item .nav-link.active::before {
  opacity: 1;
}
.informacion-tabs.epidemiologia-tabs .nav-item .nav-link {
  padding: 14px 16px;
}

.footer-area {
  background-color: #0052b8;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-single-item {
  border-left: 2px solid #ffffff;
  padding-left: 40px;
  margin-top: 30px;
}
.footer-single-item h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 34px;
}
.footer-single-item p {
  color: #ffffff;
  margin-bottom: 15px;
}
.footer-single-item p a {
  color: #ffffff;
}
.footer-single-item .mb-34 {
  margin-bottom: 34px;
}
.footer-single-item .info li a {
  color: #ffffff;
}

.interes-info-area .owl-item {
  transition: 0.3s all;
  transform: scale(1);
}
.interes-info-area .owl-item.active:not(.center) {
  transform: translateX(30%) scale(0.75);
}
.interes-info-area .owl-item.active.center {
  z-index: 1;
  opacity: 1;
}
.interes-info-area .owl-item.active.center + .active {
  transform: translateX(-30%) scale(0.75);
}

.gallery-item img {
  border-radius: 40px;
}

.gallery-slide.owl-theme .owl-nav {
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
  max-width: 200px;
  margin: auto !important;
  text-align: center;
  position: relative;
  top: 27px;
}
.gallery-slide.owl-theme .owl-nav .owl-prev,
.gallery-slide.owl-theme .owl-nav .owl-next {
  font-size: 20px;
  margin: 0;
  background-color: transparent;
}
.gallery-slide.owl-theme .owl-nav .owl-prev:hover,
.gallery-slide.owl-theme .owl-nav .owl-next:hover {
  color: #0943b5;
}
.gallery-slide.owl-theme .owl-dots {
  max-width: 250px;
  margin: auto;
}
.gallery-slide.owl-theme .owl-dots .owl-dot {
  position: relative;
  z-index: 1;
}
.gallery-slide.owl-theme .owl-dots .owl-dot span {
  background-color: #999999;
  width: 12px;
  height: 12px;
  transition: all ease 0.5s;
}
.gallery-slide.owl-theme .owl-dots .owl-dot.active span {
  background-color: #0943b5;
}

.histoplasmosis-links {
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.histoplasmosis-links span {
  color: #616161;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  line-height: 300%;
}

.histoplasmosis-link a {
  color: #616161;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 300%;
  text-decoration: none;
  position: relative;
  padding: 0 24px;
}
.histoplasmosis-link a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, #0943b5, #2182ae, #34b5a9);
  opacity: 0;
}
.histoplasmosis-link a.active {
  color: #000000;
  font-weight: 700;
}
.histoplasmosis-link a.active::before {
  opacity: 1;
}

.histoplasmosis-content h1 {
  color: #000;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.7);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 50px;
}
.histoplasmosis-content p,
.histoplasmosis-content li {
  font-size: 1.125rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #3c4043;
  letter-spacing: 0.00688rem;
  line-height: 1.75rem;
  /*font-family: Roboto, sans-serif;*/
}
.histoplasmosis-content p {
  margin: 0 0 1.875rem;
}
.histoplasmosis-content li {
  margin: 0.3rem 0;
}
.histoplasmosis-content .faq-accordion .accordion-item {
  border-radius: 0;
  border-color: #eee;
}
.histoplasmosis-content .faq-accordion .accordion-item .accordion-button {
  font-size: 1.125rem;
  border-radius: 0;
  border-color: #eee;
}
.histoplasmosis-content .faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.main-btn.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.accordion-body h2,
.accordion-body h3,
.accordion-body h4 {
  color: #020202 !important;
  font-weight: 800 !important;
  font-size: 1.125rem !important;
  /*line-height: 3.5rem;*/
  margin: 20px 0px 20px 0;
  text-align: left;
}
.accordion-body p {
  color: #000 !important;
}

.accordion-body {
  padding: 2.5rem 1.25rem;
}

.histoplasmosis2-area {
  background: linear-gradient(100deg, #d50013 -9.39%, #0943b5 10.49%, #2182ae 67.62%, #34b5a9 92.66%);
}

#acordeonZonaDeseada {
  text-align: left;
}

.histoplasmosis2-content {
  text-align: center;
}
.histoplasmosis2-content .send-icon {
  margin-bottom: 20px;
}
.histoplasmosis2-content h3,
.histoplasmosis2-content p {
  color: #fff;
}
.histoplasmosis2-content > h3:first-of-type {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
.histoplasmosis2-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}
.histoplasmosis2-content .main-btn {
  margin-bottom: 40px;
}

.histoplasmosis-link3 {
  border-bottom: 3px solid #e2e2e2;
}
.histoplasmosis-link3 a {
  text-decoration: none;
  color: #44464f;
  font-size: 15px;
  font-weight: 500;
  line-height: 142.857%;
  letter-spacing: 0.1px;
  position: relative;
  padding-bottom: 5px;
  padding: 10px;
}
.histoplasmosis-link3 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #0943b5;
  opacity: 0;
  border-radius: 8px 8px 0 0;
}
.histoplasmosis-link3 a.active {
  color: #020202;
}
.histoplasmosis-link3 a.active::before {
  opacity: 1;
}

.participate p {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 142.857%;
  margin-bottom: 35px;
}
.participate h3 {
  color: #000;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.7);
  font-size: 25px;
  font-weight: 700;
  line-height: 192%;
}
.participate .main-btn {
  background-color: #0943b5;
  color: #fff;
  border-color: #0943b5;
}

.histoplasmosis-link-item {
  background-color: #f9f9f9;
  padding: 30px;
  margin-bottom: 77px;
}
.histoplasmosis-link-item img {
  margin-bottom: 20px;
}
.histoplasmosis-link-item p {
  margin-bottom: 0;
}
.histoplasmosis-link-item h2 {
  font-size: 30px !important;
  margin: 0 !important;
  line-height: normal !important;
}

button.accordion-button.collapsed:hover {
  background-color: #eee;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #eee;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  font-weight: 700;
}

.recursos-bg {
  background: rgba(249, 249, 249, 0.97);
  padding-top: 92px;
  padding-bottom: 92px;
  padding: 100px 58px;
}
.recursos-bg h3 {
  color: #000;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.7);
  font-size: 35px;
  font-weight: 700;
  line-height: 137.143%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.recursos-bg p {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%; /* 125% */
  margin-bottom: 57px;
}
.recursos-bg .seleccione {
  display: block;
  margin-bottom: 20px;
}
.recursos-bg .mb-96 {
  margin-bottom: 90px !important;
}

.recursos-single-item {
  border-radius: 5px;
  border: 1px solid #eee;
  background: #fff;
  padding: 15px;
  margin-bottom: 24px;
}
.recursos-single-item span {
  color: #545454;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.recursos-single-item h4 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 10px;
}
.recursos-single-item .main-btn {
  font-size: 15px;
  padding: 1rem;
}

.page-btn-wrap a {
  border: 1px solid #0943b5;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  color: #0943b5;
}
.page-btn-wrap a:hover {
  background-color: #0943b5;
  color: #ffffff;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.navbar-content h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom: 20px;
}
.navbar-content .link li {
  margin-bottom: 10px;
}
.navbar-content .link li:last-child {
  margin-bottom: 0;
}
.navbar-content .link li a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 133.333%;
  letter-spacing: 0.25px;
  text-decoration-line: underline;
}

.navbar-content-item {
  border-radius: 12px;
  background: #f2f8ff;
  padding: 24px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.navbar-content-item img {
  margin-bottom: 21px;
}
.navbar-content-item h4 {
  color: #1a1b20;
  font-size: 18px;
  font-weight: 700;
  line-height: 111.111%;
  letter-spacing: 0.25px;
}
.navbar-content-item .main-btn {
  background-color: #0943b5;
  border-color: #0943b5;
  color: #ffffff;
}

.nav-accordion .accordion-item {
  border: 0;
}
.nav-accordion .accordion-button {
  border: 0;
}
.nav-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
}
.nav-accordion .accordion-button:focus {
  box-shadow: none;
}

.fixed-top.is-sticky {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.navbar-area.bg-white .col-lg-3 {
  position: relative;
}
.navbar-area.bg-white .col-lg-3::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -30px;
  width: 1px;
  height: 170px;
  background-color: #f3f0f1;
}
.navbar-area.bg-white .col-lg-3:first-child::before {
  display: none;
}
.navbar-area.bg-white .col-lg-3:last-child::before {
  display: none;
}

div#navbarToggleExternalContent {
  box-shadow: 0px 4px 12px 0px rgba(70, 93, 145, 0.4);
  position: relative;
  top: 27px;
}

.navbar-toggler {
  position: relative;
  z-index: 1;
}
.navbar-toggler::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -24px;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-color: #f7f7f7;
  z-index: -1;
  opacity: 0;
}
.navbar-toggler.active::before {
  opacity: 1;
}

.histoplasmosis-area h2 {
  color: #212121;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 1.8rem;
}
.histoplasmosis-area h2.accordion-header {
  line-height: 2rem;
  margin: auto;
}

.dropdown-menus {
  border-radius: 0;
  border: 1px solid #eee;
  border-left: 0;
  border-right: 0;
}
.dropdown-menus .dropdown-toggle::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url(../../assets/images/chevron-down.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  width: 16px;
  height: 16px;
}
.dropdown-menus .btn-secondary {
  border-radius: 0;
  background-color: transparent;
  padding: 7px 0;
  color: #616161;
  text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 300%;
}
.dropdown-menus .btn-secondary:focus {
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */