footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding: 30px 0;
}

.fs-footer {
    width: 1200px;
}

.fs-social {
    display: flex;
    gap: 12px;
    width: 350px;
    justify-content: flex-end;
}

.fs-footer-nav {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.fs-social span svg {
    width: 100%;
    height: 100%;
}

.fs-social span {
    border: 2px solid var(--white);
    padding: 5px;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    transition: all 0.5s ease-in-out;
}

.fs-social span svg path {
    fill: var(--white);
    transition: all 0.5s ease-in-out;
}

.fs-social span:nth-child(1n):hover svg path {
    fill: var(--red);
}
.fs-social span:nth-child(1n):hover{
    border-color:  var(--red);
}

span.coppy-text {
    color: var(--white);
    line-height: 44.15px;
    font-weight: 500;
    font-size: 20px;
}

span.coppy-text a{
    color: var(--white);
    line-height: 44.15px;
    font-weight: 500;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.coppy {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 350px;
    flex-direction: row;
}

span.coppy-icon {
    width: 35px;
    height: 35px;
}

span.coppy-icon svg {
    width: 100%;
    height: 100%;
}

.fs-footer-nav nav ul li a {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: 44.15px;
    transition: all 0.5s ease-in-out;
}

.fs-footer-nav nav ul li a:hover{
    color: var(--red);
}

.fs-footer-nav nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    align-content: center;
}

.fs-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.fs-footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.fs-footer-bottom>.copyright,.fs-footer-bottom>.coppy-text,.fs-footer-bottom>.coppy-text>a {
	color: #5c6d7f;
	font-size: 0.7rem;
}

span.coppy-text a:hover{
    color: var(--red);
}


span.copyright {
    color: var(--white);
    line-height: 44.15px;
    font-weight: 500;
    font-size: 16px;
}


@media (max-width: 555px) {
    .fs-footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .coppy,
    .fs-footer-nav,
    .fs-social{
        width: auto;
    }

    .fs-footer-top{
        flex-direction: column;
        gap: 12px;
    }

    span.coppy-text{
        text-align: center;
    }

    .fs-footer-nav{
        flex-wrap: wrap;;
    }

    .fs-footer-nav nav ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        list-style: none;
    }

    span.coppy-text a{
        width: auto;
        display: block;
        text-wrap: balance;
    }

}