* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #081a29 !important;
    width: 100%;
}

.contenedor {
    background: #082942 !important;
    width: 90%;
    margin: 0 auto;
    border-left: 2px solid #00acf080;
    border-right: 2px solid #00acf080;
    padding-bottom: 100px;
    padding-top: 150px;
}

.header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #05121b;
    z-index: 100;
    border-radius: 50px;
    border: 2px solid #00acf080;
}

.logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}

.navbar {
    height: 100%;
}

.navbar a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90px;
    height: 30px;
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
}

.navbar a:hover {
    background: #00abf0;
    color: #05121b;
}

.navbar a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00abf0;
    z-index: -1;
    transition: 0.5s;
}

.navbar a:hover::before {
    width: 100%;
}

.collapsing {
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background: #081a29;
    border-bottom: 2px solid #00abf0;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    transition: max-height 0.5s;
}

.show {
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background: #081a29;
    border-bottom: 2px solid #00abf0;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    transition: max-height 0.5s;
}

.contacto i {
    font-size: 40px;
}

.link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link a {
    text-decoration: none;
}

.contacto p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    width: 380px;
    height: 30px;
    border-radius: 20px;
    border: 2px solid;
    color: #00abf0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    margin-top: 5px;
}

.card {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-evenly;
    background-color: #081a29 !important;
    border-radius: 50px !important;
    border: 4px solid #00abf0 !important;
    width: 1000px;
    height: 600px;
}

.container :hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.imagen {
    display: flex;
    align-items: center;

}

.card img {
    width: 210px;
    height: 250px;
    border-radius: 120px;
    border: 2px solid #00abf0;
}

.texto {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.cardbody h3 {
    color: #ededed;
    font-weight: 700;
}

.cardbody h5 {
    color: #ededed;
    font-weight: 500;
}

.container {
    height: 100%;
}




.footer {
    background: #05121b;
    width: 100%;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #00acf080;

}

.footer h5 {
    font-size: 20px;
    color: #ededed;
}

.iconos {
    width: 150px;
}

.iconos i {
    font-size: 25px;
}
.iconos :hover {
    transform: scale(1.2);
    transition: 0.5s;
}