@use '../../utils' as *;

/*----------------------------------------*/
/*  6.2 Footer Style 2
/*----------------------------------------*/

.tp-footer-2{
    &-widget{
        &-paragraph{
            & p{
                font-weight: 500;
                font-size: 16px;
                line-height: 1.5;
                color: var(--tp-common-white);
            }
        }
        &-social{
            & a{
                height: 40px;
                width: 40px;
                line-height: 33px;
                border-radius: 50%;
                display: inline-block;
                text-align: center;
                color: rgba(255, 255, 255, 0.5);
                border: 2px solid rgba(255, 255, 255, 0.1);
                &:not(:last-child){
                    margin-right: 6px;
                }
                &:hover{
                    color: var(--tp-common-white);
                    border-color: var(--tp-common-blue);
                    background-color: var(--tp-common-blue);
                }
            }
        }
        &-title{
            font-weight: 800;
            font-size: 74px;
            line-height: .86;
            padding-bottom: 20px;
            background-clip: border-box;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background: linear-gradient(90deg, #d4fc79 0%, #96e6a1 100%);
            background: -webkit-linear-gradient(90deg, #d4fc79 0%, #96e6a1 100%);
            @media #{$lg}{
                font-size: 55px;
            }
            @media #{$md}{
                font-size: 51px;
            }
            @media #{$xs}{
                font-size: 45px;
            }
        }
        & .tp-footer-link{
            &:hover{
                color: var(--tp-common-blue);
            }
        }
    }
    &-col{
        &-1{
            padding-right: 125px;
            @media #{$lg}{
                padding-right: 80px;
            }
            @media #{$md,$xs}{
                padding-right: 0;
            }
        }
        &-2{
            padding-left: 100px;
            @media #{$lg,$md,$xs}{
                padding-left: 0;
            }
        }
    }
    &-bg{
        &::after{
            position: absolute;
            top: 0;
            left: 0;
            width: 38.9%;
            height: 100%;
            content: "";
            background-color: #082e3d;
            @media #{$xxl}{
                width: 35.9%;
            }
            @media #{$xl}{
                width: 34.9%;
            }
            @media #{$md,$xs}{
                display: none;
            }
        }
    }
}
.tp-copyright-2{
    &-left{
        & p{
            font-weight: 500;
            font-size: 14px;
            color: #72878e;
            margin-bottom: 0;
            & a{
                color: var(--tp-common-white);
            }
        }
    }
    &-middle{
        & a{
            font-weight: 500;
            font-size: 14px;
            line-height: 1.71;
            color: #afb2b8;
            transition: all .3s;
            & span{
                margin-right: 5px;
                display: inline-block;
                transform: translateY(-1px);
            }
            &:hover{
                color: var(--tp-common-white);
            }
        }
    }
    &-right{
        & ul{
            & li{
                display: inline-block;
                list-style-type: none;
                &:not(:first-child){
                    margin-left: 30px; 
                    @media #{$lg}{
                        margin-left: 20px;
                    }
                }
                & a{
                    font-weight: 500;
                    font-size: 14px;
                    color: #afb2b8;
                    transition: all .3s;
                    &:hover{
                        color: var(--tp-common-white);
                    }
                }
            }
        }
    }
    &-border{
        padding-top: 22px;
        padding-bottom: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}