* {
  outline: none !important;
  font-family: 'Open Sans', sans-serif;
}
.cards a {
	color:#fff !important
}
body {
  background-color: #fcfcfc;
}
iframe{
	border:none
}
iframe::-webkit-scrollbar {
     display: none; 
}

.navbar {
  padding: .8rem 5rem;
  background-color: var(--color-main);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}


.disabled .cards__item-overlay{
   background-color: #ccc !important;
}

.disabled:hover{
   color: rgba(255,255,255,.25)  !important;
   
}
.navbar .nav-item:hover .nav-link.disabled {
    color: rgba(255,255,255,.25)  !important;
}


@media (max-width: 768px) {
  .navbar {
    padding: .8rem 2rem;
  }
}



.navbar-dark .navbar-nav .nav-link {
  font-size: 0.9rem;
  color: var(--menuTextColor) !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--menuTextColorHover) !important;
}

.btn-menu {
  border: 1px solid var(--menuTextColor) !important;
  color: var(--menuTextColor) !important;
}

.cards a {
 
  color: var(--menuTextColor) !important;
}

@media (min-width: 1200px) {
	.cards a:hover {
   
    color: var(--menuTextColorHover) !important;
  }
  .btn-menu:hover {
    /*background-color: var(--menuTextColorHover) !important;*/
    color: var(--menuTextColor) !important;
  }
}

.navbar .navbar-img {
  width: 130px;
  height: auto;
}

@media (max-width: 768px) {
  .navbar .navbar-img {
    width: 100px;
  }
}

.navbar-nav .dropdown-menu {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
	.navbar .dropdown-menu .dropdown-item {
    white-space: unset;
  }
  .navbar-collapse {
    padding-top: 2rem;
	max-height:500px;
	overflow:auto
  }
}

.header {
  width: 100%;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 768px) {
  .header {
    height: 300px;
  }
}

.header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -2;
}

.header__text {
  padding-top: 5rem;
  position: relative;
}

.header__text-title {
  font-size: 4.5rem;
  font-weight: 800;
  text-shadow: 0.1em 0.1em 0.05em #333;
}

@media (max-width: 768px) {
  .header__text-title {
    font-size: 4rem;
  }
}

.header__text-subtitle {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .header__text-subtitle {
    font-size: 0.9rem;
  }
}

.header__text-logo {
  width: 300px;
  left: 50%;
  opacity: 0.3;
  z-index: -1;
  position: absolute;
}

@media (max-width: 768px) {
  .header__text-logo {
    width: 150px;
  }
}

footer {
  margin-top: 2rem;
  background-color: #20282b;
  color: #cccccc;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* welcome section */
.welcome {
  margin-top: 5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
}

@media (max-width: 768px) {
  .welcome {
    margin-top: 3rem;
  }
}

.welcome__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.welcome__text {
  font-size: 0.9rem;
 
  text-align: justify;
}

@media (max-width: 768px) {
  .welcome__text {
    text-align: left;
    width: 100%;
  }
}

.welcome__divide {
  width: 50px;
  height: 5px;
  background-color: var(--color-secundary);
  margin: .8rem 0;
}

/* info section */
.info {
  margin-top: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
}

.info__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.info__text {
  font-size: 0.9rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .info__text {
    text-align: left;
    width: 100%;
  }
}

.info__divide {
  width: 50px;
  height: 5px;
  background-color: var(--color-ternary);
  margin: 1rem 0;
}

/* section cards */
.cards {
  margin-top: 5rem;
}

@media (max-width: 768px) {
  .cards {
    margin-top: 3rem;
  }
}

.cards__item {
  width: 100%;
  height: 100px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.5s;
  border: 2px solid transparent;
}
@media (min-width: 1200px) {
  .navbar .dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
  }

  .cards__item:hover {
    border: 2px solid white;
    box-shadow: 2px 5px 6px rgba(0, 33, 53, 0.16), 2px 5px 6px rgba(5, 0, 70, 0.23);
  }
  .cards__item:hover .cards__item-icon {
    padding-right: .5rem;
  }
}

.cards__item:hover, .cards__item:active {
  text-decoration: none;
  color: white;
}

.cards__item-img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 8px;
}

.cards__item-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: var(--color-main);
  opacity: 0.8;
  z-index: -1;
  transition: 0.5s;
}

@media (min-width: 1200px) {
  .cards__item-overlay:hover {
    background-color: var(--color-main);
  }
  
  
}

.cards__item-icon {
  font-size: 2rem;
  width: 22%;
  text-align: center;
  transition: 0.5s;
}

.cards__item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  width: 70%;
}

/* FAQ */
.faq {
  background-color: #f5f5f5;
  margin-top: 5rem;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .faq {
    margin-top: 4rem;
  }
}

.faq__section-title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.faq__slide {
  margin: 0 auto;
  width: 50%;
}

@media (max-width: 768px) {
  .faq__slide {
    width: 90%;
  }
}

.faq__slide__text {
  text-align: center;
}

.faq__slide__text-question {
  font-weight: 600;
}

.faq__slide__text-answer {
  font-size: 0.9rem;
  color: #5e5e5e;
}
/*# sourceMappingURL=home.css.map */

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{  display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0;  }
	.navbar .nav-item:hover .nav-link{ color: #fff;  }
	.navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
}