*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.header {
  width: 100%;
  height: 60vh;
  position: relative;
  top: 0;
  left: 0;
}

.nav {
    width: 100%; 
    background-color: rgba(253, 253, 253, 0.274);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: absolute;
    z-index: 1000;
}
  
.nav .logo {
    height: 80px;
}
  
.nav .logo img {
    width: 100%;
    height: 100%;
}
  
.nav-menu ul {
    display: flex;
    list-style: none;
}
  
.nav-menu ul a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    margin: 60px 15px;
    border-radius: 10%;
    transition: color 0.3s, background-color 0.3s;
}
  
.nav-menu ul a:hover {
    color: rgba(255, 255, 255, 0.774);
    background-color: #bb86c2;
}
  
.nav.sticky {
    position: fixed;
    background-color: rgba(226, 207, 35, 0.651);
    top: 0;
    width: 100%;
    z-index: 1000;
}
  
.nav.sticky .nav-menu ul a {
    color: #55166e;
}
  
@media (max-width: 1080px) {
    .nav {
      height: auto;
    }
  
    .nav .logo {
      width: 30%;
      align-items: start;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: rgba(253, 253, 253, 0.274);
      z-index: 1000;
    }
  
    .nav-menu.active {
      display:inline;
    }
    
    .nav-menu ul {
      flex-direction: column;
      align-items:start;
    }
  
    .nav-menu ul a {
      margin: 15px;
    }
  
    .menu-toggle {
      display: block;
      margin-left: 25px;
      order: -1;
      cursor: pointer;
    }
  
    .menu-toggle::before {
      content: '\2630'; 
      font-size: 30px;
    }
 
  
    .nav.sticky .menu-toggle::before {
        color: #55166e;
    }
}

.banner{
    background: url(img/about/1.jpg);
    height: 60vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.banner .waves{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.about-us{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.about-us h1 {
    font-size: 60px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}
.about-us h1 i{
    color: #1c8be6;
    font-size: 50px;
}

.about-us h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #1c8be6;
}

.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse; 
}

.about-image {
    margin: 20px 50px;
    background-color: rgba(16, 80, 88, 0.377);
    border-radius: 500px 250px 25px 150px;

}

.about-image img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 100px 250px 15px 450px;
    display: block;
    
}

.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse; 
}

.about-image {
    margin: 20px 50px;
    background-color: rgba(16, 80, 88, 0.377);
    border-radius: 500px 250px 25px 150px;

}

.about-image img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 100px 250px 15px 450px;
    display: block;
    
}

.about-content {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}


.about-content p{
    font-size: 25px;
    line-height: 1.5;
    color: #666;
    text-align: justify;
}

.about-content p span{
    font-weight: 600;
    color: #7e2b9f;
}

@media screen and (max-width: 980px) {
  .about-us{
    width: 50%;
  }

  .about-us h1 i{
    width: 100%;
  }
}

.columns{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 50px 0;
}

.column{
    flex: 1;
    border-radius: 15px;
    margin: 10px;
    padding: 10px;
    transition: 0.3s;
}

.column:first-child{
    margin-left: 0;
    background: #a83cd345;
}

.column:last-child{
    background: #bb86c2a0;
}
.column h2{
    color: #333;
    text-align: center;
    font-size: 2.5em;
}
.column h3{
    color: #333;
    text-align: center;
    font-size: 2em;
}

.column p{
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    text-align: justify;
    padding: 15px 15px 15px 15px;
}

@media screen and (max-width: 980px) {
    .columns .column{
        margin: 0 0 5px 0;
        flex-basis: 100%;
    } 
}

.valores{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.valores h1 {
    font-size: 60px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}
.valores h1 i{
    color: #8b1ce6;
    font-size: 50px;
}

.valores h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #8b1ce6;
}

.service{
    text-align: center;
    display: inline-block;
    width: calc(100% / 2);
    margin: 0 -2px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.4s;
}

.service:hover{
    background: #ddd;
}

.service i{
    color:#7e2b9f;
    font-size: 34px;
    margin-bottom: 30px;
}

.service h2{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.service p{
    color: #333;
    font-size: 15px;
}

.cen{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

@media screen and (max-width: 800px) {
    .service{
        width: 100%;
    }
    
}

.team{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.team h1{
    font-size: 60px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.team h1 i{
    color: #2fccccea;
    font-size: 45px;
}

.team h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #2fccccea;
}

.team p{
    font-size: 25px;
    color: #666;
    margin-bottom: 25px;
    position: relative;
}
#team{
    display:flex;
    flex-wrap: wrap;
    flex-grow:4;
  }
  .card {
    width:20%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    margin:1% 1% 10% 3.5%;
    display:inline-block
  }

  .card img {
    width: 100%;
    min-height:100%;
    transition:all 0.9s
  }
  .card:hover img{
   transform:scale(1.2,1.2)
  }
  .data {
    position: absolute;
    bottom: 5%;
    background: #fff;
    text-align:center;
    width: 100%;
    height: 100px;
    overflow: hidden;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px 5%;
    box-sizing: border-box;
    opacity: 0.8;
    transition: all 0.4s
  }
  
  .card:hover .data {
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 0.9;
    padding:90px 10%
  }
  
  .data h2 {
    margin: 0 0 5px 0;
    transition:color 0.4s
  }
  
  .data p {
    opacity: 0;
    text-align:justify;
    transition: all 0.2s
  }
  
  .card:hover .data p,.card:hover .data a {
    opacity: 1
  }
  
  .data a{
    color:#333;
    text-decoration:none;
    padding:20px;
    opacity:0
  }
  .data a:hover,.card:hover h2{
    color:#38c
  }
  
  @media (max-width:900px){
    .card {
        width:100%;
        margin-right: 30px;
    }

    .data p{
        width: 100%;
    }
  }

  .footer {
    background: linear-gradient(rgba(116, 11, 158, 0.836), rgba(202, 176, 59, 0.7));
    color:#fff;
  }
  
  .footer .row{
    color: #fff;
    margin-top: 15px;
  }
  .footer .row-1{
    color: #fff;
    margin-bottom: 25px;
  }
  .footer .icono i{
    color: #fff;
    margin-right: 10px;
    font-size: 25px;
    margin-top: 2%;
  }
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
  }
  
  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }
  
  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }
  
  .footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
  }
  
  .footer .copyright a {
    color: #fff;
  }
  
  .footer .copyright a:hover {
    color: #9a2ecc;
  }
  