#section-footer {
    background-color: var(--bg-dark);
    padding-top: 40px;
}

.wrapper .footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    margin-bottom: 50px;
}

.icon-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.icon-text:hover p, .icon-text:hover i {
    color:  #FFF;
    transition: 0.5s ease;
}

.icon-text i {
    margin-right: 20px;
    color: #ededed;
}

.footer-wrapper h3 {
    color: #FFF;
}

.footer-wrapper p,
.footer-wrapper a {
    color: #D1D1D1;
}

.footer-wrapper a {
    padding-bottom: 2px;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    background-position: 0 100%; 
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition: background-size 0.3s, background-position 0s 0.3s;
}

.footer-wrapper a:hover {
    background-position: 100% 100%;
    background-size: 100% 2px;
}

.footer-content {
    flex-basis: calc(100% / 3); 
}

.footer-content:nth-child(2) {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.footer-content:last-child {
   margin-top: 60px;
}

.footer-content .copyright-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.footer-content .copyright-wrapper img {
    height: 120px;
}

@media (max-width: 767px) {
    .wrapper .footer-wrapper {
        flex-direction: column;
    }

    .wrapper .footer-wrapper .footer-content {
        margin-bottom: 30px;
        align-items: baseline;
    }
    
    .wrapper .footer-wrapper .footer-content:last-child {
        margin: 0; 
    }
    
}
