html {
    visibility: hidden;
}

#project-content {
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #fdfdfd, #f2f2f2, #d9dbda);
}

#project-content .navItems li a:hover{
    color: #0eb55f;
}

#project-content .hover-underline-animation {
    color: #0eb55f;
}
  
#project-content .hover-underline-animation::after {
    background-color: #0eb55f;
}

.logo img {
    height: 80px!important;
}

.bottom-navigation {
    display: flex;
    justify-content: center;
    align-self: center;
}

.navigation {
    position: fixed;
    z-index: 100;
    bottom: 30px;
    display: flex;
    gap: 30px;
}

.navigation li {
    position: relative;
    list-style: none;
}

.navigation li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-self: center;
    width: 60px;
    height: 60px;
    background: #fff;
    color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

.navigation li a.active {
    background: #0eb55f;
    color: #fff;
}

.navigation li i {
    display: flex;
    justify-content: center;
    align-self: center;
}

.nav-bottom-item:hover {
    background-color: rgb(12, 191, 98);
    color: #fff!important;
}

#mobile-projects {
    display: none;
}

#other-projects {
    display: none;
}

.content-card {
    width: 100%;
    min-height: 100px;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    border: 1px solid transparent;
    margin-bottom: 20px;
}

.content-card img {
    width: 100%;
    margin: auto;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    padding-top: 20px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
}

.content-card p {
    padding: 0 15px;
    padding-bottom: 10px;
    font-size: 1em;
    font-weight: 400;
    text-align: justify;
}

.btn-website {
    text-align: center;
    padding-bottom: 20px;
}

.action {
    display: inline-flex;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
    align-items: center;
    gap: 0.25rem;
    background-color: #0eb55f;
    padding: 10px 14px;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.action span {
    transform: translateX(2px);
}

.action:hover {
    text-decoration: none;
    color: #fff;
    background-color: rgb(12, 191, 98);
}
  
.action span {
    transition: .3s ease;
}
  
.action:hover span {
    transform: translateX(4px);
}
  