@charset "utf-8";
/* CSS Document */


.header .topbar .contact-info a {
    color: #FFFFFF;
    margin-right: 30px;
    text-align: end;
    font-size: 18px;
}
.header .topbar .contact-info a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Hero2 Section
--------------------------------------------------------------*/
.hero2 {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color-rgb: 0, 0, 0;
  --heading-color: #ffffff;
  --heading-color-rgb: 169, 167, 167;
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero2:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.7);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero2 .container {
  position: relative;
  z-index: 3;
}
.hero2 h2 {
  margin: 0;
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 700;
}
.hero2 p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}
.hero2 .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 8px 30px;
  margin: 30px 0 0 0;
  transition: 0.5s;
  text-transform: uppercase;
  border: 2px solid rgba(var(--default-color-rgb), 0.8);
}
.hero2 .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.hero2 h3 {
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    }
@media (max-width: 768px) {
  .hero2 h2 {
    font-size: 32px;
  }  
  .hero2 p {
    font-size: 18px;
  }
}

.container p {
    text-align: justify;
}

/*--------------------------------------------------------------
# miembros Section
--------------------------------------------------------------*/
.miembros {
    background-color: #F1EEEE;
}
.miembros .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
  background-color: #FFFFFF;
}
.miembros .info-item img {
    height: 100px;
}

.miembros .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted rgba(var(--accent-color-rgb), 0.6);
}

.miembros .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.miembros .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# starter-section Section
--------------------------------------------------------------*/
.starter-section .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
  background-color: #FFFFFF;
}
.starter-section .info-item img {
    height: 80px;
    padding-left: 40px;
}
.starter-section h3, h4, h5 {
    text-align: left;
}
.starter-section p {
    text-align: justify;
}
.starter-section i {
    color: rgba(13,110,253,1.00);
}

