.footer {
    position: relative;
}
.footer_content {
    position: relative;
    padding: 6rem 4.75rem;
    display: flex;
    gap: 6rem;
    justify-content: start;
}
.footer_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #01072a;
    opacity: 0.87;
}
.footer_content_bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.colum-1 {
    position: relative;
    z-index: 10;
    width: 33%;
}
.footer_logo {
    width: 14.25rem;
    height: 10.063rem;
    object-fit: contain;
    margin: 0 auto;
}
.colum-1 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.colum-1_contact {
    gap: 0.5rem;
}
.colum-1_contact svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
    transition: all 0.3s;
    display: inline;
}
.colum-1_contact p {
    color: white;
    transition: all 0.3s;
    display: inline;
}
.colum-1_contact:hover svg {
    fill: #4edceb;
}
.colum-1_contact:hover p {
    color: #4edceb;
}
.colum-1_social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.colum-1_social a img {
    width: 3rem;
    height: 3rem;
    fill: white;
    transition: all 0.3s;
}
.colum-1_social a img:hover {
    fill: #4edceb;
}
.colum-3,
.colum-2 {
    position: relative;
    z-index: 10;
}
.colum-3 ul,
.colum-2 ul {
    margin-top: 0.5rem;
    list-style: none;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.colum-3 ul a,
.colum-2 ul a {
    color: white;
}
.colum-3 {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.footer_copyright {
    background: #000a3f;
    padding: 1rem 4.75rem 2rem;
}
.footer_copyright p {
    width: 100%;
    text-align: center;
    color: #c9c9c9;
    font-family: "Plus Jakarta Sans", Sans-serif;
}
@media (max-width: 639px) {
    .colum-1 {
        width: 100%;
    }
    .footer_content {
        padding: 1.118rem;
        flex-direction: column;
    }
    .footer_copyright {
        padding: 0.25rem 1.118rem;
    }
    .footer_copyright p {
        font-size: 1.4rem;
        line-height: 1.875rem;
    }
}
