#footer {
    background: #35247A;
    background: linear-gradient(45deg, rgba(53, 36, 122, 1) 0%, rgba(29, 146, 169, 1) 100%);
    color: #fff;
}

#footer .footer-wrapper {
    display: flex;
}

#footer .footer-wrapper .left {
    background-color: rgba(0,0,0,0.1);
    width: 35%;
    box-sizing: border-box;
    padding: 40px;
}


.direct-contact ul  {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.direct-contact ul li {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    margin: 10px 0;
    border-left: 8px solid #43c1cb;
}
.direct-contact ul li:first-child {
    border-top: 1px solid rgba(0,0,0,0.2);
}
.direct-contact ul li span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.direct-contact ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

#footer .footer-wrapper .left ul.social-media {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

#footer .footer-wrapper .left .secondary-footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 10px;
}

#footer .footer-wrapper .left .secondary-footer-menu ul li a {
    color: #43c1cb;
    font-size: 12px;
    text-decoration: none;
}

#footer .footer-wrapper .left .copyrights-area {
    font-size: 12px;
    opacity: 0.4;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
    margin-top: 40px;
}
#footer .footer-wrapper .right {
    width: 65%;
    box-sizing: border-box;
    padding: 40px;
}

#footer .footer-wrapper .right .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

#footer .footer-wrapper .right .footer-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#footer .footer-wrapper .right .footer-nav ul li a {
    color: #fff;
    font-size: 3.5rem;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    display: block;
}

#footer .footer-wrapper .right ul.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

#footer .footer-wrapper .right ul.achievements li {
    width: calc((100% - 60px) / 4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 20px 10px;
    box-sizing: border-box;
}

#footer .footer-wrapper .right ul.achievements li img {
    width: 48px;
    height: 48px;
    display: block;
}
#footer .footer-wrapper .right ul.achievements li h5 {
    width: calc(100% - 48px);
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin: 0;
}

#footer .footer-wrapper .right ul.achievements li h5 span {
    font-weight: normal;
    font-size: 10px;
}
#footer .footer-wrapper .right ul.achievements li h5 strong {
    font-weight: 600;
    margin-bottom: 2px;
}