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

body {
    background: #081a29 !important;
}

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

.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;
}

#trabajos {
    padding-top: 150px;
}

#trabajos h2 {
    color: #00abf0;
    font-weight: 700;
}

.card {
    width: 20em;
    border-radius: 20px !important;
    background: #05121b !important;
    color: #ededed;
}

.card img {
    border-radius: 20px;
    transition: 0.5s;
    border: 2px solid #00abf0 !important;
    width: 314px;
    height: 350px;
    object-fit: cover;
}

.card img:hover {
    transform: scale(1.1);

}

#trabajos h5 {
    margin-left: 5px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

#trabajos p {
    margin: 10px;
    font-weight: 400;
    color: #00abf0;
}

#trabajos a {
    background: yellowgreen;
    border-radius: 20px;
    border: 2px solid #00abf0;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
    color: #082942;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 0;
}

#trabajos a:hover {
    background: #00abf0;
    color: #ededed;
}

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

#trabajos a:hover::before {
    width: 100%;
}

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

.container {
    height: 100%;
}

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

.iconos {
    width: 150px;
}

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