    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .footer {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 400px;
            height: 200px;
            display: flex;
            z-index: 9999;

            &:hover {
                >.social {

                    >.row {
                        padding-right: 20px;

                        >.instagram {
                            opacity: 1;
                        }

                        >.gmail {
                            opacity: 1;
                        }

                        >.linkedin {
                            opacity: 1;
                        }

                        >.github {
                            opacity: 1;
                        }
                    }
                }
            }


            /* start socials//////// */

            >.social {
                width: 50%;
                height: 100%;

                >.row {
                    width: 100%;
                    height: 25%;
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    padding-right: 0;
                    transition: .8s;

                    >* {

                        transition-duration: .4s;
                        transition-delay: 0s;

                    }

                    >.instagram {
                        width: 23px;
                        height: 23px;
                        border-radius: 5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: scale(1.5);
                        opacity: 0;

                        &:hover{
                            transform: scale(1.7);
                            >a{
                                background-color: dimgray;
                            }
                        }

                        >a {
                            border-radius: 5px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100%;
                            color: white;
                            background-color: rgba(0, 0, 0, 0.842);

                        }
                    }

                    >.gmail {
                        width: 23px;
                        height: 23px;
                        border-radius: 5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: scale(1.5);
                        opacity: 0;

                        &:hover{
                            transform: scale(1.7);
                            >a{
                                background-color: dimgray;
                            }
                        }

                        >a {
                            border-radius: 5px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100%;
                            color: white;
                            background-color: rgba(0, 0, 0, 0.842);

                        }
                    }

                    >.linkedin {
                        width: 23px;
                        height: 23px;
                        border-radius: 5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: scale(1.5);
                        opacity: 0;

                        &:hover{
                            transform: scale(1.7);
                            >a{
                                background-color: dimgray;
                            }
                        }

                        >a {
                            border-radius: 5px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100%;
                            color: white;
                            background-color: rgba(0, 0, 0, 0.842);

                        }
                    }

                    >.github {
                        width: 23px;
                        height: 23px;
                        border-radius: 5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: scale(1.5);
                        opacity: 0;

                        &:hover{
                            transform: scale(1.7);
                            >a{
                                background-color: dimgray;
                            }
                        }
                        
                        >a {
                            border-radius: 5px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100%;
                            color: white;
                            background-color: rgba(0, 0, 0, 0.842);

                        }
                    }

                }

            }



            /* end of social////// */



            /* start profile////////// */


            >.profile {
                width: 50%;
                height: 100%;
                object-fit: cover;
                object-position: -35px 0;
                border-radius: 32% 68% 82% 18% / 42% 51% 49% 58%;
            }

            /* end of profile/////// */

        }