.buttons {

    // z-index: 1;
    position: relative;
    border-radius: 50px !important;
    &-theme {
        margin-top: 20px;
        display: inline-block;
        font-weight: 600;
        line-height: 1.5;
        color: $ctaTextColor;
        border: none;
        background: $ctaBgColor;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;

        border-radius: 0;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-transform: capitalize;

        &::after {
            position: absolute;
            top: inherit;
            right: inherit;
            bottom: inherit;
            left: -5%;
            content: "";
            height: 150px;
            width: 115%;
            z-index: -1;
            background-color: $ctaBgHoverColor;
            
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            -webkit-transform: translateY(-45%) skew(25deg) scale(0);
            transform: translateY(-45%) skew(25deg) scale(0);
        }

        &:hover::after {
            -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
            transform: translateY(-45%) skew(25deg) scale(1.2); 
        }
                 &:hover { 
                     color: $ctaHoverTextColor !important;
                 }
    }

    &-md {
        padding: 14px 22px;
        font-size: 18px;
    }

    &-themex {
        &-border {
            border: 2px solid $whiteColor;
        }

        cursor: pointer;
        font-size: 15px;
        font-weight: 600;
        background:  linear-gradient(90deg, #f5e3b3, #e4ca97, #9c895e);
               
        color: $blackColor;
        padding: 9px 20px;
        border-radius: 30px;
        font-family: $fontFamilyPrimary;
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;

        i {
            margin-right: 5px;
        }

        &:hover {
            background: $SecondaryColor;
            color: $whiteColor;
        }
    }

    &-crud {
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;

        .item {
            margin: 0 5px;
            background: #090909;
            font-size: 12px;
            text-align: center;
            border-radius: 50%;
            cursor: pointer;
            padding: 5px;
        }
    }
}




.tf__section_bg {
    background: #F3F3F3;
}

strong {
    font-weight: 600;
}