footer {
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .foot1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        margin-top: 40px;

        .foot1_a {
            display: flex;
            width: 90%;

            .box {
                float: left;
                width: 25%;
                display: flex;
                flex-direction: column;

                .teespace {
                    display: flex;
                    align-items: center;
                    height: 40px;
                    margin-bottom: 20px;

                    p {
                        font-weight: bold;
                        font-size: 25px;
                    }
                }

                .text {
                    display: flex;
                    align-items: center;
                    font-weight: bold;
                    font-size: 20px;
                    color: black;
                }

                a {
                    margin-bottom: 20px;
                    color: gray;
                }

                .social_task {
                    display: flex;

                    .size_icon {
                        margin-right: 5%;
                        width: 30px;
                        height: 30px;
                    }
                }
            }
        }
    }

    i {
        margin: 10px;
    }

    padding-top: 5px;

    .foot2 {
        margin-top: 2%;
        background-color: #F5F5F5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .pay {
            width: 45px;
            height: 32px;
            border-radius: 5px;
        }
    }
}


@media (max-width: 990px) {
    footer {
        .foot1 {
            .foot1_a {
                .box {
                    .teespace {
                        p {
                            font-size: 15px;
                        }
                    }

                    a {
                        font-size: 10px;

                    }

                    .text {
                        font-size: 15px;
                    }
                }
            }
        }
    }

}

@media (max-width: 600px) {
    footer {
        .foot1 {
            .foot1_a {
                .box {
                    .teespace {
                        img {
                            width: 20px;
                        }

                        p {
                            font-size: 10px;
                        }
                    }

                    a {
                        font-size: 8px;

                    }

                    .text {
                        font-size: 10px;
                    }
                }
            }
        }

        .foot2 {
            p {
                font-size: 10px;
            }
        }
    }

}