footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0px 20px;

    .circle-footer-other-color {
        display: none;
    }

    .footer-content {
        width: 100%;
        background: radial-gradient(97.57% 210.75% at 0.9% 2.98%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
        border-radius: 34px 34px 0px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 80px;
        border: 1px solid #fff;
        backdrop-filter: blur(42px);

        .logo-footer {
            width: 100%;
            display: flex;
            justify-content: start;

            .logo {
                width: 100%;
                max-width: 380px;
            }

            .logo-other-color {
                display: none;
            }
        }
        
        .sm-and-menu {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 70px;
            margin-top: 20px;

            .sm-icons {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 60px;

                img {
                    width: 60px;
                    height: 60px;
                }
            }

            .sm-icons-other-color {
                display: none;
            }

            .menu-container {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: start;
                gap: 100px;

                .menu {
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    gap: 30px;

                    p {
                        font-weight: 700;
                        font-size: 21px;
                        color: #fff;
                        text-align: center;
                    }

                    ul {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 30px;
                        font-weight: 700;
                        font-size: 21px;
                        color: #d9d9d9;
                        list-style-type: none;
                        
                        li {
                            text-align: center;
                        }

                        a {
                            text-decoration: none;
                        }
                    }
                }
            }
        }

        .copyright-and-designedby {
            display: flex;
            justify-content: space-between;
            align-items: end;
            width: 100%;
            margin-top: 120px;

            .copyright-nr {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

            .nr {
                font-weight: 400;
                font-size: 21px;
                color: #fff;
            }

            .copyright {
                display: flex;

                a, p {
                    font-weight: 400;
                    font-size: 21px;
                    color: #fff;
                }

                a {
                    text-decoration: underline;
                }
            }

            .designed-by {
                a {
                    display: flex;
                    text-decoration: none;
                    gap: 5px;
                }
                p {
                    font-weight: 400;
                    font-size: 21px;
                    color: #fff;

                    &:nth-child(2) {
                        font-family: 'Montserrat';
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {
    footer {
        .footer-content {
            padding: 40px 70px;

            .logo-footer {
                img {
                    max-width: 290px;
                }
            }

            .sm-and-menu {
                gap: 60px;

                .sm-icons {
                    gap: 50px;

                    img {
                        width: 50px;
                        height: 50px;
                    }
                }

                .menu-container {
                    gap: 70px;

                    .menu {
                        gap: 30px;
                        
                        p, ul {
                            font-size: 16px;
                        }
                    }
                }
            }
            .copyright-and-designedby {
                margin-top: 70px;

                .nr {
                    font-size: 16px;
                }

                .copyright {
                    a, p {
                        font-size: 16px;
                    }
                }

                .designed-by {
                    p {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    footer {
        padding: 0px 10px;
        
        .footer-content {
            padding: 40px;

            .sm-and-menu {
                flex-direction: row;
                align-items: start;
                gap: 40px;

                .sm-icons {
                    flex-direction: column;
                    align-items: start;
                    gap: 25px;
                    padding-left: 5px;
                    position: relative;
                    width: 60px;
                    justify-content: start;

                    img {
                        width: 35px;
                        height: 35px;
                    }

                    &:after {
                        content: "";
                        position: absolute;
                        width: 1px;
                        height: 130px;
                        background-color: #fff;
                        right: -10px;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                }

                .menu-container {
                    flex-direction: column;
                    align-items: start;
                    gap: 40px;

                    .menu {
                        align-items: start;
                        gap: 20px;

                        ul {
                            align-items: start;
                            margin-left: 40px;
                            gap: 20px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    footer {
        .footer-content {
            padding: 20px;

            .copyright-and-designedby {
                flex-direction: column;
                gap: 10px;
                justify-content: center;
                align-items: center;

                .copyright-nr {
                    gap: 10px;
                }

                .nr {
                    text-align: center;
                }

                .copyright {
                    text-align: center;
                    flex-wrap: wrap;
                    justify-content: center;
                }
            }
        }
    }
}