footer {
    padding: 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(26, 26, 26, 1);
    opacity: 0;
    transition: opacity 4.8s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

footer.revealed {
    opacity: 1;
}

footer .wrapper{
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.logo_info{
    display: flex;
    max-width: 600px;
    width: 100%;
    gap: 24px;
    color: var(--text-sacondary, rgba(203, 213, 225, 0.80));
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    vertical-align: middle;

}

.logo_footer{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #F1F5F9;
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -1px;
  text-wrap: nowrap;
}


.logo_footer img{
    width: 40px;
    height: 40px;
}

.footer_nav p{
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer_nav ul{
    display: flex;
    /* flex-direction: column; */
    gap: 16px;
}

.footer_nav a{
    color: var(--text-sacondary, rgba(203, 213, 225, 0.80));
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    text-wrap: nowrap;
}

.soc_footer p{
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.soc_footer_wrap{
    display: flex;
    gap: 16px;
}

.footer_soc_block{
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
}

.footer_bottom{
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-top: 32px;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer_bottom p{
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-sacondary, rgba(203, 213, 225, 0.80));
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}


.footer_bottom p svg{
    margin-top: 2px;
}

.footer_bottom_span{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.sf_line_footer{
    width: 1px;
    height: 26px;
    background: #222;
}

.nav_soc_container{
    display: flex;
  gap: 24px;
  height: max-content;
  align-items: center;
}


@media (max-width: 1150px) {
    .logo_info{
        flex-direction: column;
    }
}

@media (max-width: 990px) {
    .logo_footer{
        justify-content: center;
    }
    .logo_info p{
        text-align: center;
    }
    footer .wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


@media (max-width: 640px) {
    .nav_soc_container{
          flex-direction: column;
    }
    .sf_line_footer{
        width: 26px;
        height: 1px;
    }
    .footer_nav ul{
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 850px) {
    .logo_info{
        max-width: 500px;
    }
}


@media (max-width: 650px) {
    footer .wrapper{
        flex-direction: column;
        gap: 40px;
    }
    .logo_info{
        max-width: 100%;
    }
    .logo_info br{
        display: none;
    }
    .footer_bottom{
        margin-top: 40px;
        gap: 7px !important;
    }
    footer{
        padding-bottom: 16px;
        padding-top: 50px;
    }
}
