/*https://html.themefax.com/ai-creator/*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: var(--headingFont);
}

p,
span {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: var(--paraColor);
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    color: var(--colorBlack);
    font-family: var(--paraFont);
}

img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

input,
textarea {
    width: 100%;
    padding: 13px 20px;
    outline: none;
    resize: none;
    font-weight: 300;
    background: rgb(243 242 254);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

input::placeholder,
textarea::placeholder {
    color: #a6a6ac;
}

button {
    border: none;
    outline: none;
}

:root {
    --colorPrimary: #40a8ed;
    --colorBlack: #162B49;
    --colorWhite: #ffffff;
    --paraColor: #6C798B;
    --ratingColor: #FFA800;
    --paraFont: 'Rubik', sans-serif;
    --headingFont: 'Montserrat', sans-serif;
    --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*============================
    GLOBAL CSS START
============================*/
.common_btn {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 13px 35px 12px 35px;
    position: relative;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    border: 1px solid transparent;
    transition: all linear .3s;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.common_btn::after {
    position: absolute;
    content: "\f35a";
    font-family: "font awesome 5 free";
    font-size: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.common_btn:hover {
    background: transparent;
    color: var(--colorPrimary);
    border-color: var(--colorPrimary);
    padding-left: 50px;
    padding-right: 20px;
}

.common_btn:hover::after {
    opacity: 1;
    left: 20px;
}

.play_btn {
    width: 50px;
    height: 50px;
    line-height: 51px;
    text-align: center;
    border-radius: 50%;
    background: var(--colorBlack);
    color: var(--colorWhite);
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.play_btn:hover {
    background: var(--colorPrimary);
    transform: scale(1.01);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
}

.play_btn::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    border: 2px dotted var(--colorPrimary);
    border-radius: 50%;
    top: -5px;
    left: -5px;
    animation: play_animi linear 5s infinite;
    -webkit-animation: play_animi linear 5s infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@keyframes play_animi {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.tf__section_heading {
    text-align: center;
}

.tf__section_heading h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorPrimary);
    text-transform: uppercase;
   
    position: relative;
    display: inline-block;
    font-family: var(--paraFont);
}

.tf__section_heading h5::after,
.tf__section_heading h5::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--colorPrimary);
    top: 5px;
    left: -30px;
}

.tf__section_heading h5::after {
    left: auto;
    right: -30px;
}

.tf__section_heading h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-top: 10px;
}

.heading_left {
    text-align: left;
}

.heading_left h5 {
    margin-left: 30px;
}

.heading_left h5::after {
    display: none;
}

.heading_left h2 {
    text-align: left;
}

.read_btn {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorBlack);
    text-underline-offset: 5px;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.read_btn i {
    margin-left: 3px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.read_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 1px;
    background: var(--colorPrimary);
    bottom: 0;
    left: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.read_btn:hover {
    color: var(--colorPrimary);
}

.read_btn:hover i {
    margin-left: 7px;
}

.read_btn:hover::after {
    width: 100%;
}

.title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--colorBlack);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.title:hover {
    color: var(--colorPrimary);
}

/* slider button start */
.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 6px;
    background: #fbecf3;
    border-radius: 3px;
    margin: 0px 3px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.slick-dots li.slick-active button {
    width: 25px;
    background: var(--colorPrimary);
}

/* slider button end */

/* scroll button start */
.tf__scroll_btn {
    width: 35px;
    height: 70px;
    border-radius: 25px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 111;
    cursor: pointer;
    text-align: center;
    line-height: 70px;
    background: var(--colorPrimary);
    border: 1px solid var(--colorWhite);
}

.tf__scroll_btn span {
    font-size: 16px;
    color: var(--colorWhite);
    animation: scroll_amini linear 2s infinite alternate;
    -webkit-animation: scroll_amini linear 2s infinite alternate;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

@keyframes scroll_amini {
    from {
        bottom: -20px;
    }

    to {
        bottom: 17px;
    }
}

/* scroll button end */

/*============================
    GLOBAL CSS END
============================*/


/*============================
    HOME PAGE START
============================*/
/* header start */
header {
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--colorPrimary);
    z-index: 2;
}

header .tf__header_content ul {
    display: inline-flex;
    line-height: 40px;
}

header .tf__header_content ul li a {
    border-right: 1px solid #ddd;
    margin-right: 25px;
    padding-right: 25px;
    font-size: 15px;
    color: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

header .tf__header_content ul li:last-child a {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

header .tf__header_content ul li a i {
    min-width: 25px;
}

/* header end */


/* menu start */
.tf__main_menu {
    padding: 0;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.tf__main_menu .navbar-brand {
    max-width: 181px;
    margin: 0;
    padding: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__main_menu .navbar-nav {
    line-height: 90px;
}

.tf__main_menu .navbar-nav .nav-item {
    position: relative;
}

.tf__main_menu .navbar-nav .nav-item .nav-link {
    font-size: 17px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0px 25px;
    padding: 0;
    color: var(--colorBlack);
    transition: all linear .3s;
}

.tf__main_menu .navbar-nav .nav-item .nav-link:hover,
.tf__main_menu .navbar-nav .nav-item .nav-link.active {
    color: var(--colorPrimary);
}

.tf__main_menu .common_btn {
    border-radius: 30px;
    padding: 12px 35px !important;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.tf__main_menu .common_btn i {
    margin-left: 10px;
}

.tf__main_menu .common_btn::after {
    display: none;
}

.tf__main_menu.menu_fix {
    top: 0;
    height: 80px;
}

.menu_fix .navbar-nav {
    line-height: 80px;
}

.tf__main_menu .tf__droap_menu {
    position: absolute;
    width: 250px;
    max-height: 500px;
    top: 120%;
    left: 0;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    overflow-y: auto;
    line-height: 50px;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
    z-index: 9;
}

.tf__droap_menu::-webkit-scrollbar {
    scrollbar-width: thin !important;
    background: rgb(243 242 254);
    width: 6px;
}

.tf__droap_menu::-webkit-scrollbar-thumb {
    background: var(--colorPrimary);
}

.tf__droap_menu li a {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    color: var(--colorBlack);
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__droap_menu li:last-child a {
    border-bottom: 0;
}

.tf__droap_menu li a::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 40px;
    background: var(--colorPrimary);
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.tf__droap_menu li a:hover,
.tf__droap_menu li a.active {
    color: var(--colorBlack);
    background: rgb(243 242 254);
    border-color: var(--colorWhite);
}

.tf__main_menu .tf__droap_menu li a:hover::after,
.tf__main_menu .tf__droap_menu li a.active::after {
    opacity: 1;
    left: -6px;
}

.tf__main_menu .navbar-nav .nav-item:hover .tf__droap_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

/* menu end */

/* banner start */
.tf__banner {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 100vh;
    padding-top: 125px;
    position: relative;
}

.tf__banner div {
    height: 100%;
}

.tf__banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tf__banner_text h5 {
    font-size: 18px;
    color: var(--colorPrimary);
    text-transform: uppercase;
    font-family: var(--paraFont);
    margin-bottom: 10px;
}

.tf__banner_text h1 {
    font-size: 50px;
    font-weight: 800;
}

.tf__banner_text p {
    margin: 25px 0px 65px 0px;
    max-width: 90%;
}

.tf__banner_text .tf__banner_btn li .common_btn {
    margin-right: 35px;
}

.tf__banner .tf__banner_link {
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 30px;
    z-index: 1;
}

.tf__banner .tf__banner_link::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--colorPrimary);
    top: -20px;
    left: 19px;
    z-index: -1;
}

.tf__banner .tf__banner_link li span {
    transform: rotate(-90deg);
    display: block;
    color: var(--colorPrimary);
    /* color: var(--colorWhite); */
    padding: 5px 25px;
    border-radius: 30px;
    margin-right: -55px;
    margin-top: 9px;
    position: absolute;
    left: -40px;
    top: -80px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.tf__banner .tf__banner_link li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 5px 0px;
    font-size: 16px;
    color: var(--colorPrimary);
    background: var(--colorWhite);
    border-radius: 50%;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.tf__banner .tf__banner_link li a:hover {
    transform: scale(1.1);
    background: var(--colorPrimary);
    color: var(--colorWhite);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.tf_banner_img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tf_banner_img .img {
    height: 515px;
    width: 450px;
    position: relative;
    z-index: 2;
}

.tf_banner_img .img::after {
    position: absolute;
    content: "";
    width: 600px;
    height: 570px;
    background: url(../images/banner_shapes2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    animation: banner_img_animi linear 15s infinite;
    -webkit-animation: banner_img_animi linear 15s infinite;
    left: -80px;
    top: -30px;
}

@keyframes banner_img_animi {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

/* 
.tf__banner .banner_scroll_btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    color: #ffffff;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: var(--colorPrimary);
    border-radius: 59px;
    font-size: 14px;
    z-index: 1;
}

.tf__banner .banner_scroll_btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--colorPrimary);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: scroll_btn_animi linear 1.5s infinite;
    -webkit-animation: scroll_btn_animi linear 1.5s infinite;
}

@keyframes scroll_btn_animi {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        -o-transform: scale(1.8);
        opacity: 0;
    }
} */

/* banner end */

/* services start */
.tf__service_item {
    padding: 30px;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-top: 65px;
    border-bottom: 1px solid var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__service_item:hover {
    margin-top: 55px;
    border-color: transparent;
}

.tf__service_item .icon {
    display: block;
    width: 80px;
    height: 80px;
    background: #eee;
    border: 2px solid var(--colorWhite);
    padding: 10px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--box-shadow);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.tf__service_item h3 {
    margin-top: 35px;
    text-align: center;
}

.tf__service_item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 15px 0px 25px 0px;
}

.tf__service_item .icon.blue {
    background: #e9f0ff;
}

.tf__service_item .icon.orange {
    background: #ffebdb;
}

.tf__service_item .icon.green {
    background: #b2ffe5;
}

.tf__service_item .icon.red {
    background: #ffd5dd;
}

.tf__service_item .icon.purple {
    background: #fcdefc;
}

.tf__service_item .icon.yellow {
    background: #fcfcd3;
}

/* services end */

/* about us start */
.tf__about_us {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.tf__about_us_img {
    position: relative;
    padding-right: 30px;
}

.tf__about_us_img .img_1 {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
}

.tf__about_us_img .img_2 {
    position: absolute;
    bottom: -180px;
    left: 50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
}

.tf__about_us_img .img_3 {
    position: absolute;
    bottom: -75px;
    left: 300px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
}

.tf__about_us_text p {
    margin-top: 25px;
}

.tf__about_us_text ul {
    line-height: initial;
}

.tf__about_us_text ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    margin-top: 25px;
    padding-left: 30px;
}

.tf__about_us_text ul li::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    background: var(--colorWhite);
    border: 1px solid var(--colorPrimary);
    top: 0px;
    left: 0;
    font-size: 20px;
    color: var(--colorPrimary);
}

.tf__about_us_text ul li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--colorPrimary);
    top: 7px;
    left: 7px;
    z-index: 99;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__about_us_text a {
    margin-top: 45px;
}

/* about us end */


/* work process start */
.tf__work_process {
    position: relative;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
}

.tf__work_process::after {
    position: absolute;
    content: "";
    background: url(../images/work_shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 270px;
    height: 270px;
    bottom: -35px;
    right: -20px;
    animation: work_animi_1 linear 5s infinite alternate;
    -webkit-animation: work_animi_1 linear 5s infinite alternate;
}

@keyframes work_animi_1 {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    to {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

.tf__work_process .tf__section_heading h5,
.tf__work_process .tf__section_heading h2 {
    color: var(--colorWhite);
}

.tf__work_process .tf__section_heading h5::after,
.tf__work_process .tf__section_heading h5::before {
    background: var(--colorWhite);
}

.tf__single_process {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    position: relative;
    margin-top: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__single_process::after {
    position: absolute;
    content: "";
    background: url(../images/arrow_shapes.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 115px;
    height: 23px;
    right: -125px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.tf__single_process.last::after {
    display: none;
}

.tf__single_process .icon {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.tf__single_process .icon::after {
    position: absolute;
}

@keyframes process_icon_animi {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.tf__single_process h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--colorBlack);
    margin-top: 20px;
    text-align: center;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.tf__single_process:hover {
    margin-top: 15px;
}

.tf__single_process:hover h3 {
    color: var(--colorPrimary);
}

/* work process end */

.typewriter {

  background: linear-gradient(45deg, #162b49, 35%, #162b49  55%); /*162b49*/
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text

}

/* counter start */
.tf__counter {
    background: #f4f8ff;
}

.tf__counter_text ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 35px;
}

.tf__counter_text ul li .icon {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 25px;
    box-shadow: var(--box-shadow);
}

.tf__counter_text ul li .text {
    max-width: 83%;
}

.tf__counter_text ul li .text h3 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}

.tf__counter_img {
    height: 410px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
    margin-left: 30px;
}

.tf__main_counter {
    border-top: 1px solid #d9e5ff;
    margin-top: 50px;
    padding-top: 25px;
}

.tf__counter_item {
    margin-top: 25px;
}

.tf__counter_item h3 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--colorPrimary);
    margin-bottom: 10px;
    position: relative;
}

.tf__counter_item h3::after {
    position: absolute;
    content: "+";
}

.tf__counter_item.last_counter h3::after {
    content: "%";
}

.tf__counter_item p {
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
}

/* counter end */

/* pricing start */
.tf__single_pricing {
    padding: 50px;
    margin-left: 30px;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-top: 25px;
    border: 1px solid #eee;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__single_pricing h3 {
    text-align: left;
    font-size: 20px !important;
    text-transform: capitalize !important;
    font-weight: 700 !important;
    color: var(--colorBlack) !important;
    display: inline-block !important;
    border-top: 2px solid var(--colorPrimary);
    padding-top: 5px;
}

.tf__single_pricing p {
    width: 126%;
    background: var(--colorPrimary);
    font-size: 40px;
    color: var(--colorWhite);
    font-weight: 700;
    margin-top: 25px;
    padding-left: 75px;
    position: relative;
    left: -75px;
    margin-bottom: 43px;
}

.tf__single_pricing p::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 25px solid #225acf;
    left: 3px;
    bottom: -21px;
    transform: rotate(48deg);
    z-index: -1;
}

.tf__single_pricing p span {
    font-size: 16px;
    color: var(--colorWhite);
    font-weight: 600;
}

.tf__single_pricing ul li {
    position: relative;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    margin-top: 20px;
    padding-left: 30px;
}

.tf__single_pricing ul li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 5 free";
    font-weight: 600;
    width: 20px;
    height: 20px;
    background: var(--colorPrimary);
    font-size: 10px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    color: var(--colorWhite);
    top: 2px;
    left: 0;
}

.tf__single_pricing ul li.delete {
    color: var(--paraColor);
}

.tf__single_pricing ul li.delete::after {
    content: "\f00d";
    background: var(--paraColor) !important;
}

.tf__single_pricing a {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    padding: 15px 35px !important;
}

.tf__single_pricing a::after {
    display: none;
}

.tf__single_pricing.red h3 {
    border-color: #f83600;
}

.tf__single_pricing.red p {
    background: #f83600;
}

.tf__single_pricing.red ul li::after {
    background: #f83600;
}

.tf__single_pricing.red p::after {
    border-color: #cb2f04;
}

.tf__single_pricing.red a {
    background: #f83600;
}

.tf__single_pricing.red a:hover {
    background: transparent;
    color: #f83600;
    border-color: #f83600;
}

.tf__single_pricing.green h3 {
    border-color: #0a9ad7;
}

.tf__single_pricing.green p {
    background: #0a9ad7;
}

.tf__single_pricing.green ul li::after {
    background: #0a9ad7;
}

.tf__single_pricing.green p::after {
    border-color: #007baf;
}

.tf__single_pricing.green a {
    background: #0a9ad7;
}

.tf__single_pricing.green a:hover {
    background: transparent;
    color: #0a9ad7;
    border-color: #0a9ad7;
}

.tf__single_pricing.blue h3 {
    border-color: #25d366;
}

.tf__single_pricing.blue p {
    background: #25d366;
}

.tf__single_pricing.blue ul li::after {
    background: #25d366;
}

.tf__single_pricing.blue p::after {
    border-color: #0da546;
}

.tf__single_pricing.blue a {
    background: #25d366;
}

.tf__single_pricing.blue a:hover {
    background: transparent;
    color: #25d366;
    border-color: #25d366;
}

.tf__single_pricing:hover {
    margin-top: 15px;
}

/* pricing end */


/* testimonial start */
.tf__testimonial {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.tf__testimonial_item {
    background: var(--colorWhite);
    border-radius: 10px;
    padding-bottom: 30px;
    margin: 75px 12px 20px 12px;
    border: 1px solid #eee;
}

.tf__testimonial_img {
    text-align: center;
    background: var(--colorBlack);
    border-radius: 6px;
    padding: 100px 30px 30px 30px;
    position: relative;
}

.tf__testimonial_img::after,
.tf__testimonial_img::before {
    position: absolute;
    content: "";
    background: url(../images/quote_white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 35px;
    top: 35px;
    width: 40px;
    height: 35px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    opacity: .3;
}

.tf__testimonial_img::before {
    top: 35px;
    left: 35px;
    right: auto;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}

.tf__testimonial_img .img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.tf__testimonial_img h3 {
    color: var(--colorWhite);
    text-align: center;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tf__testimonial_img p {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
}

.tf__testimonial_text {
    position: relative;
    margin-top: 55px;
    z-index: 1;
}

.tf__testimonial_text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 55px solid transparent;
    border-top: 70px solid var(--colorBlack);
    top: -74px;
    left: 100px;
    transform: rotate(-335deg);
    z-index: -1;
    -webkit-transform: rotate(-335deg);
    -moz-transform: rotate(-335deg);
    -ms-transform: rotate(-335deg);
    -o-transform: rotate(-335deg);
}

.tf__testimonial_text p {
    position: relative;
    text-align: center;
    padding: 0px 30px;
}

.tf__testimonial_text p::after,
.tf__testimonial_text p::before {
    position: absolute;
    content: "";
    background: url(../images/quote_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 10px;
    bottom: -20px;
    width: 30px;
    height: 25px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    opacity: .3;
}

.tf__testimonial_text p::before {
    transform: rotate(0deg);
    top: -20px;
    left: 5px;
    right: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.tf__testimonial_text span {
    display: block;
    text-align: center;
    color: var(--ratingColor);
    margin-top: 30px;
}

.tf__testimonial .slick-dots {
    margin-top: 10px;
}

.tf__testimonial_page .tf__testimonial_item {
    margin: 75px 0px 20px 0px;
}

/* testimonial end */


/* team start */
.tf__single_team {
    text-align: center;
    position: relative;
    padding: 35px;
    margin-top: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__single_team_img {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__single_team_text {
    position: relative;
    padding-top: 30px;
}

.tf__single_team_text h3 {
    margin-bottom: 5px;
    color: var(--colorBlack) !important;
}

.tf__single_team_text p {
    text-transform: capitalize;
}

.tf__single_team::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: #f4f8ff;
    top: 0;
    left: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    z-index: -1;
    border: 1px solid #eee;
    transition: all linear .3s;
}

.tf__single_team_text ul {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    left: 50%;
    background: var(--colorPrimary);
    padding: 0px 40px;
    border-radius: 30px;
    transform: translateX(-50%) scale(0);
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
    -moz-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    -o-transform: translateX(-50%) scale(0);
    -webkit-transform: translateX(-50%) scale(0);
}

.tf__single_team_text ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: var(--colorWhite);
    box-shadow: var(--box-shadow);
    transition: all linear .3s;
    opacity: 0;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__single_team_text ul li a:hover {
    background: var(--colorWhite);
    color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.tf__single_team:hover::after {
    width: 100%;
}

.tf__single_team:hover .tf__single_team_text ul {
    transform: translateX(-50%) scale(1);
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
}

.tf__single_team:hover ul a {
    opacity: 1;
}

.tf__single_team_text::after {
    position: absolute;
    content: "+";
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 25px;
    color: var(--colorWhite);
    background: var(--colorPrimary);
    top: -20px;
    left: 50%;
    transition: all linear .15s;
    transform: translateX(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transition: all linear .15s;
    -moz-transition: all linear .15s;
    -ms-transition: all linear .15s;
    -o-transition: all linear .15s;
}

.tf__single_team:hover .tf__single_team_text::after {
    opacity: 0;
}

/* team end */


/* blog start */
.tf__blog {
    background: #f4f8ff;
}

.tf__single_blog {
    padding: 10px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    background: var(--colorWhite);
}

.tf__single_blog_img {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.tf__single_blog_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__single_blog_text {
    padding: 20px 20px 15px 20px;
    position: relative;
}

.tf__single_blog_author {
    display: flex;
    align-items: center;
    padding: 20px 20px 0px 20px;
}

.tf__single_blog_author .img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
    margin-right: 10px;
}

.tf__single_blog_author .text h5 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 6px;
}

.tf__single_blog_author .text p {
    text-transform: capitalize;
    font-size: 12px;
    color: var(--colorPrimary);
}

.tf__single_blog_text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}

.tf__single_blog_text .category {
    position: absolute;
    top: -95px;
    right: 18px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 6px 20px;
    text-transform: capitalize;
    border-radius: 7px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__single_blog_text .category:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.tf__single_blog:hover .tf__single_blog_img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.tf__single_blog_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #c3d6ff;
    padding-top: 15px;
    margin-top: 15px;
}

.tf__single_blog_footer span {
    color: var(--colorPrimary);
}

/* blog end */


/* footer start */

footer {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.tf__footer_content .footer_logo {
    display: block;
    max-width: 230px;
}

.tf__footer_content p {
    margin: 20px 0px 10px 0px;
}

.tf__footer_content .social_link {
    margin-top: 30px;
}

.tf__footer_content .social_link li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__footer_content .social_link li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__footer_content h3,
.tf__footer_contact h3 {
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
}

.tf__footer_content .footer_link li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--paraColor);
    display: block;
    margin-top: 15px;
    transition: all linear .3s;
}

.tf__footer_content .footer_link li a:hover {
    color: var(--colorPrimary);
}

.tf__footer_contact ul li {
    margin-top: 20px;
}

.tf__footer_contact ul li h5 {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.copyright {

    padding: 20px 0px;
    margin-top: 100px;
    text-align: center;
}

.copyright p {
    text-transform: capitalize;
}

.copyright p b {
    color: var(--colorPrimary);
    font-weight: 500;
}

.navbar-toggler {
    border: none;
}

/* footer end */



.tf__services .tf__ai_category_button {
    margin-top: 25px;
}

.tf__services .tf__ai_category_item {
    margin-top: 25px;
    margin-bottom: 0;
}


/*============================
    HOME PAGE END
============================*/


/*============================
    ABOUT US START
============================*/
.tf__breadcrumb {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 120px 0px 125px 0px;
    margin-top: 130px;
}

.tf__breadcrumb_text {
    text-align: center;
}

.tf__breadcrumb_text h1 {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tf__breadcrumb_text nav ul {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.tf__breadcrumb_text nav ul li,
.tf__breadcrumb_text nav ul li a {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.tf__breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--colorWhite);
}

.tf__breadcrumb_text nav ul li.active {
    color: #ffffffc9;
}

/*============================
    ABOUT US END
============================*/


/*============================
    SERVICES PAGE START
============================*/
.tf__pagination nav ul {
    justify-content: center;
}

.tf__pagination nav ul li a {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    line-height: 50px;
    padding: 0;
    margin: 0px 5px !important;
    text-align: center;
    color: var(--colorBlack);
    background: var(--colorWhite);
    border: none !important;
    font-size: 16px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.tf__pagination nav ul li a:focus {
    box-shadow: none;
}

.tf__pagination nav ul li a:hover,
.tf__pagination nav ul li a.active {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__pagination nav ul li .prev,
.tf__pagination nav ul li .next {
    width: auto !important;
    height: auto !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    color: var(--paraColor) !important;
    border-radius: 0 !important;
    background: var(--colorWhite) !important;
    margin: 0 !important;
    margin-right: 30px !important;
}

.tf__pagination nav ul li .next {
    margin-right: 0 !important;
    margin-left: 30px !important;
}

.tf__pagination nav ul li .prev:hover,
.tf__pagination nav ul li .next:hover {
    color: var(--colorPrimary) !important;
}

/*============================
    SERVICES PAGE END
============================*/


/*================================
    SERVICE DETAILS START
================================*/
.tf__services_details_text h1,
.tf__services_details_text h2 {
    font-size: 44px;
    font-weight: 700;
    text-transform: capitalize;
}

.tf__services_details_text h1,
.tf__services_details_text h2,
.tf__services_details_text h3,
.tf__services_details_text h4,
.tf__services_details_text h5,
.tf__services_details_text h6 {
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 25px;
}

.tf__services_details_text h1 {
    font-size: 40px;
}

.tf__services_details_text h2 {
    font-size: 35px;
}

.tf__services_details_text h3 {
    font-size: 30px;
}

.tf__services_details_text h4 {
    font-size: 25px;
}

.tf__services_details_text h5 {
    font-size: 20px;
}

.tf__services_details_text h6 {
    font-size: 16px;
}

.tf__services_details_text p {
    margin-top: 25px;
}

.tf__services_details_img {
    height: 450px;
    border-radius: 5px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__services_details_img img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf_service_det_tag {
    justify-content: space-between;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 0px;
    margin-top: 25px;
}

.tf_service_det_tag .tag_list li,
.tf_service_det_tag .share li {
    display: flex;
    align-items: center;
}

.tf_service_det_tag .tag_list li span,
.tf_service_det_tag .share li span {
    font-weight: 600;
    text-transform: capitalize;
}

.tf_service_det_tag .tag_list li span i,
.tf_service_det_tag .share li span i {
    margin-right: 10px;
    color: var(--colorPrimary);
}

.tf_service_det_tag .tag_list li a,
.tf_service_det_tag .share li a {
    background: #f4f8ff;
    padding: 2px 10px 3px 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorBlack);
    margin-left: 15px;
    border-radius: 3px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.tf_service_det_tag .tag_list li a:hover,
.tf_service_det_tag .share li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf_service_det_tag .share li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    color: var(--colorPrimary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf_service_det_btn_area ul {
    justify-content: space-between;
}

.tf_service_det_btn_area ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 40%;
    margin-top: 25px;
}

.tf_service_det_btn_area ul li .img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf_service_det_btn_area ul li .text {
    width: 227px;
    display: block;
}

.tf_service_det_btn_area ul li .text span {
    display: block;
    font-weight: 600;
    color: var(--colorBlack);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf_service_det_btn_area ul li .text span i {
    margin-left: 5px;
    color: var(--colorPrimary);
}

.tf_service_det_btn_area ul li .text p {
    text-transform: capitalize;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tf_service_det_btn_area ul li a:hover span {
    color: var(--colorPrimary);
}

.tf_service_det_btn_area ul li:last-child .img {
    margin-right: 0;
    margin-left: 15px;
}

.tf_service_det_btn_area ul li:last-child span {
    text-align: right;
}

.tf_service_det_btn_area ul li:last-child span i {
    margin-left: 0;
    margin-right: 5px;
}

.tf_service_det_btn_area ul li:last-child p {
    text-align: right;
}

.tf__service_review_list h3,
.tf__service_review_input h3 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.tf__single_review {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 25px;
    margin-top: 25px;
}

.tf__single_review .review_img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__single_review .review_text {
    width: 85%;
}

.tf__single_review .review_text h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.tf__single_review .review_text h4 span {
    color: var(--colorBlack);
    text-transform: capitalize;
}

.tf__single_review .review_text .review_star {
    color: var(--ratingColor);
    margin: 8px 0px 5px 0px;
}

.tf__single_review .review_text .review_star span {
    color: var(--colorBlack);
    margin-left: 10px;
}

.tf__single_review .review_text .reply {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorBlack);
    transition: all linear .3s;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    text-underline-offset: 5px;
}

.tf__single_review .review_text .reply:hover {
    color: var(--colorPrimary);
    text-decoration: none;
}

.tf__single_review.reply {
    padding-left: 50px;
}

.tf__single_review.reply .review_text {
    width: 85%;
}

.tf__service_review_input p {
    margin-top: 15px;
}

.tf__service_review_input p span {
    color: var(--paraColor);
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__service_review_input p span:hover {
    color: var(--ratingColor);
}

.tf__service_review_input input,
.tf__service_review_input textarea {
    border: none;
    margin-top: 25px;
}

.tf__service_review_input .form-check {
    margin-top: 15px;
    margin-bottom: 20px;
}

.tf__service_review_input input::placeholder,
.tf__service_review_input textarea::placeholder {
    color: var(--colorBlack);
}

.form-check-input:focus {
    border-color: var(--colorPrimary);
    box-shadow: none;
}

.tf__service_review_input .form-check input::placeholder {
    color: var(--colorBlack) !important;
}

.tf__service_review_input .form-check label {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}

.sidebar_item {
    background: #f4f8ff;
    border-radius: 5px;
    padding: 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #4582ff0d;
}

.sidebar_item h3 {
    font-weight: 600;
    font-size: 24px;
    padding-left: 20px;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.sidebar_item h3::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 26px;
    background: var(--colorPrimary);
    border-radius: 30px;
    top: 1px;
    left: 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.tf__sidebar_search form {
    position: relative;
    border: 1px solid #eee;
    border-radius: 5px;
}

.tf__sidebar_search form input {
    border: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background: var(--colorWhite);
}

.tf__sidebar_search form button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    right: 6px;
    transition: all linear .3s;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__sidebar_search form button:hover {
    background: var(--colorBlack);
}

.tf__sidebar_category ul li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorBlack);
    background: var(--colorWhite);
    padding: 10px 20px 10px 35px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__sidebar_category ul li a::after {
    position: absolute;
    content: "\f054";
    font-family: "font awesome 5 free";
    font-weight: 600;
    top: 14px;
    left: 20px;
    font-size: 12px;
    color: var(--paraColor);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__sidebar_category ul li:last-child a {
    margin-bottom: 0;
}

.tf__sidebar_category ul li a span {
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__sidebar_category ul li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__sidebar_category ul li a:hover span {
    color: var(--colorWhite);
}

.tf__sidebar_category ul li a:hover::after {
    color: var(--colorWhite);
}

.tf__sidebar_time p {
    text-transform: capitalize;
    color: var(--colorBlack);
    margin-top: 10px;
}

.tf__sidebar_mail {
    text-align: center;
}

.tf__sidebar_mail .img {
    border-radius: 5px;
    overflow: hidden;
    height: 180px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__sidebar_mail h5 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: #777C90;
    margin: 15px 35px;
}

.tf__sidebar_mail p {
    color: var(--colorBlack);
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.tf__sidebar_mail .common_btn {
    border-radius: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.tf__services_details_text ul,
.tf__services_details_text ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tf__services_details_text ul li,
.tf__services_details_text ol li {
    font-size: 18px;
    color: var(--colorBlack);
    padding-left: 30px;
    position: relative;
    margin-top: 20px;
    width: 50%;
}

.tf__services_details_text ul li::after,
.tf__services_details_text ol li::after {
    position: absolute;
    content: "";
    background: url(../images/check_icon.jpg);
    width: 20px;
    height: 20px;
    top: 4px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*================================
    SERVICE DETAILS END
================================*/


/*================================
    BLOG DETAILS START
================================*/
.tf__blog_details_img {
    height: 450px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__blog_details_text .header_info {
    margin-top: 20px;
    padding: 0;
}

.tf__blog_details_text .header_info li {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    list-style: none;
    margin: 0;
}

.tf__blog_details_text .header_info li i {
    color: var(--colorPrimary);
    margin-right: 10px;
}

.tf__blog_details_text h1,
.tf__blog_details_text h2,
.tf__blog_details_text h3,
.tf__blog_details_text h4,
.tf__blog_details_text h5,
.tf__blog_details_text h6 {
    text-transform: capitalize;
    color: var(--colorBlack);
    font-weight: 700;
    margin: 20px 0px;
}

.tf__blog_details_text h1 {
    font-size: 40px;
}

.tf__blog_details_text h2 {
    font-size: 35px;
}

.tf__blog_details_text h3 {
    font-size: 30px;
}

.tf__blog_details_text h4 {
    font-size: 25px;
}

.tf__blog_details_text h5 {
    font-size: 20px;
}

.tf__blog_details_text h6 {
    font-size: 16px;
}

.tf__blog_details_text p {
    margin-top: 20px;
}

.tf__blog_details_text .quot_text {
    background: rgb(243 242 254);
    border-radius: 5px;
    padding: 80px 30px 30px 30px;
    margin-top: 20px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__blog_details_text .quot_text::after {
    position: absolute;
    content: "";
    background: url(../images/quote_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50px;
    height: 40px;
    top: 25px;
    left: 30px;
    transform: rotate(180deg);
}

.tf__blog_details_text .quot_text p {
    font-size: 18px;
    font-weight: 400;
    color: var(--colorBlack);
    margin: 0;
}

.tf__blog_details_text .quot_text h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorPrimary);
    margin: 0;
    margin-top: 15px;
    padding-left: 40px;
    position: relative;
}

.tf__blog_details_text .quot_text h4::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    background: var(--colorPrimary);
    top: 10px;
    left: 0;
}

.tf__blog_details_text ul,
.tf__blog_details_text ol {
    padding-left: 18px;
    margin-top: 25px;
}

.tf__blog_details_text ul li,
.tf__blog_details_text ol li {
    font-size: 18px;
    font-weight: 400;
    color: var(--paraColor);
    list-style: disc;
    margin: 10px 0px;
}

.tf__blog_det_video_img {
    height: 300px;
    margin-top: 25px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__blog_det_video_img a {
    position: absolute;
    bottom: 55px;
    right: 10px;
}

.tf__blog_det_video_text {
    margin-top: 25px;
}

.tf__blog_det_video_text h4 {
    margin-top: 0;
    font-size: 25px;
}

.tf__sidebar_category.archive ul li a {
    padding-left: 50px;
}

.tf__sidebar_category.archive ul li a::after {
    content: "\f073";
    width: 20px;
    height: 20px;
    font-size: 10px;
    background: var(--colorPrimary);
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    color: var(--colorWhite);
    top: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__sidebar_blog ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tf__sidebar_blog ul li:last-child a {
    margin-bottom: 0;
}

.tf__sidebar_blog ul li a .img {
    width: 90px;
    height: 90px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__sidebar_blog ul li a .text {
    width: 70%;
}

.tf__sidebar_blog ul li a .text span {
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.tf__sidebar_blog ul li a .text span i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-size: 11px;
    border-radius: 50%;
    margin-right: 10px;
}

.tf__sidebar_blog ul li a .text p {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--colorBlack);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__sidebar_blog ul li a:hover p {
    color: var(--colorPrimary);
}

.tf__sidebar_tags ul li a {
    background: var(--colorWhite);
    color: var(--colorPrimary);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__sidebar_tags ul li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__sidebar_link ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #FFFFFF;
    color: var(--colorPrimary);
    border-radius: 50%;
    margin-right: 10px;
    transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__sidebar_link ul li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__bloger_area {
    background: rgb(243 242 254);
    padding: 30px;
    position: relative;
    margin-top: 75px;
    text-align: center;
}

.tf__bloger_area .img {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
    position: absolute;
    top: -50px;
    left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__bloger_area h3 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 40px;
    margin-bottom: 15px;
}

.tf__bloger_area ul {
    justify-content: center;
    margin-top: 15px;
}

.tf__bloger_area ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    color: var(--colorPrimary);
    background: var(--colorWhite);
    margin: 0px 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__bloger_area ul li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

/*================================
    BLOG DETAILS END
================================*/


/*================================
    FAQ START
================================*/
.accordion-item {
    background-color: var(--colorWhite);
    border: none;
    margin-bottom: 25px;
}

.accordion-button {
    background: rgb(243 242 254);
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--colorBlack);
    padding: 15px 50px 15px 15px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.accordion-button:not(.collapsed) {
    color: var(--colorWhite);
    background-color: var(--colorPrimary);
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 5px 8px 30px rgba(5, 13, 54, 0.05);
}

.accordion-button::after {
    background: url(../images/faq_plus.jpg);
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/faq_minus.jpg);
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.accordion-button:focus {
    box-shadow: none;
}

.tf__faq .accordion-body p {
    border-left: 5px solid var(--colorBlack);
    padding-left: 15px;
}

.tf__faq .accordion-item {
    margin-bottom: 0;
    margin-top: 25px;
}

/*================================
    FAQ END
================================*/



/*================================
    LOGIN START
================================*/
.tf__login_area {
    box-shadow: var(--box-shadow);
    padding: 50px;
    border-radius: 10px;
}

.tf__login_area h3 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.tf__login_area h5 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.tf__login_input {
    position: relative;
    margin-top: 20px;
}

.tf__login_input span {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--colorPrimary);
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    color: var(--colorWhite);
    border-radius: 5px 0px 0px 5px;
    -webkit-border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    -ms-border-radius: 5px 0px 0px 5px;
    -o-border-radius: 5px 0px 0px 5px;
}

.tf__login_input input {
    border: none;
    padding: 13px 20px 13px 75px;
}

.form-check-input {
    width: 25px;
    height: 25px;
    border: 1px solid var(--colorPrimary) !important;
    margin-top: 0 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary) !important;
}

.tf__login_input .form-check label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.tf__login_input .form-check label a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf_register_area .tf__login_input .form-check label a {
    font-weight: 400;
    text-decoration: underline;
}

.tf__login_input .form-check label a:hover {
    color: var(--colorBlack);
}

.tf__login_input button {
    width: 100%;
    text-align: center;
    padding: 17px 35px 15px 35px !important;
    margin-bottom: 30px;
}

.tf__login_input button::after,
.tf__login_input button::before {
    display: none;
}

.tf__login_area .or {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: block;
    position: relative;
    margin: 18px 0px 12px 0px;
}

.tf__login_area .or::after {
    position: absolute;
    content: "";
    width: 40%;
    height: 1px;
    background: var(--paraColor);
    top: 14px;
    right: 0;
}

.tf__login_area .or::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 1px;
    background: var(--paraColor);
    top: 14px;
    left: 0;
}

.tf__login_area p {
    text-align: center;
}

.tf__login_area p a {
    color: var(--colorPrimary);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__login_area ul {
    margin: 20px 0px 20px 0px;
}

.tf__login_area ul li a {
    width: 35px;
    height: 35px;
    background: var(--colorBlack);
    line-height: 36px;
    text-align: center;
    color: var(--colorWhite);
    font-size: 15px;
    border-radius: 50%;
    margin: 0px 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__login_area ul li a:hover {
    background: var(--colorPrimary);
}

.tf__login_area p a:hover {
    color: var(--colorBlack);
}

.tf_register_area .form-check label {
    display: block;
}

/*================================
    LOGIN END
================================*/


/*================================
    TERMS AND CONDITION START
================================*/
.tf__terms_condition_text h1,
.tf__terms_condition_text h2,
.tf__terms_condition_text h3,
.tf__terms_condition_text h4,
.tf__terms_condition_text h5,
.tf__terms_condition_text h6 {
    font-weight: 600;
    text-transform: capitalize;
    margin: 25px 0px 20px 0px;
}

.tf__terms_condition_text h1 {
    font-size: 40px;
}

.tf__terms_condition_text h2 {
    font-size: 35px;
}

.tf__terms_condition_text h3 {
    font-size: 30px;
}

.tf__terms_condition_text h4 {
    font-size: 25px;
}

.tf__terms_condition_text h5 {
    font-size: 20px;
}

.tf__terms_condition_text h6 {
    font-size: 16px;
}

.tf__terms_condition_text p {
    margin-top: 20px;
}

.tf__terms_condition_text ul,
.tf__terms_condition_text ol {
    margin-top: 20px;
}

.tf__terms_condition_text ul li,
.tf__terms_condition_text ol li {
    font-size: 18px;
    color: var(--colorBlack);
    padding-left: 30px;
    position: relative;
    margin-top: 20px;
}

.tf__terms_condition_text ul li::after,
.tf__terms_condition_text ol li::after {
    position: absolute;
    content: "";
    background: url(../images/check_icon.jpg);
    width: 20px;
    height: 20px;
    top: 4px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*================================
    TERMS AND CONDITION END
================================*/


/*================================
    404 START
================================*/
.tf___404_text {
    text-align: center;
}

.tf___404_text .img {
    width: 350px;
    height: 350px;
    margin: auto;
}

.tf___404_text h4 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--colorPrimary);
    margin-top: 40px;
}

.tf___404_text p {
    margin: 20px 0px;
}

/*================================
    404 END
================================*/


/*======================
    CHECKOUT  START
========================*/
.tf__pay_method {
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
}

.tf__checkout h5 {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin: 0;
    padding: 15px 0px;
}

.tf__pay_method #v-pills-tab {
    width: 100%;
}

.tf__pay_method .nav button:hover,
.tf__pay_method .nav button.active {
    background: rgb(243 242 254);
    color: var(--colorPrimary);
    border-color: var(--colorWhite);
}

.tf__pay_method .nav button {
    width: 100%;
    color: var(--colorBlack);
    background: var(--colorWhite);
    text-transform: capitalize;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #378fff21;
    border-radius: 0;
    font-weight: 500;
    padding: 20px 0px;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__pay_method .nav button:last-child {
    border-bottom: 0;
}

.tf__pay_details .tab-content>.active {
    display: block;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    overflow: hidden;
    padding: 25px;
}

.tf__pay_details h5 {
    border-radius: 10px 10px 0px 0px;
}

.tf__pay_card label {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    color: var(--colorBlack);
}

.tf__pay_card input {
    margin-bottom: 20px;
    border: none;
}

.tf__package_details {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: var(--colorWhite);
    box-shadow: var(--box-shadow);
}

.tf__package_details .member_price {
    margin: 0 !important;
}

.tf__package_details .tf__single_pricing {
    margin: 0 !important;
    border: none;
}

.tf__package_details .tf__single_pricing p {
    width: 170%;
}

/*======================
    CHECKOUT  END
========================*/


/*================================
    CONTACT US START
================================*/
.tf__contact_info {
    margin: 0;
    margin-top: 55px;
}

.tf__contact_map {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__contact_map iframe {
    width: 100%;
    height: 100%;
}

.tf__contact_form h2 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.tf__contact_form button {
    width: 100%;
    padding: 17px 35px 15px 35px !important;
    margin-top: 15px;
}

.tf__contact_form button::after {
    display: none;
}

.tf__contact_info {
    background: rgb(243 242 254);
    padding: 25px;
    border-radius: 10px;
    position: relative;
    margin: 55px 12px 0px 12px;
    padding-top: 100px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.tf__contact_info span {
    display: block;
    width: 90px;
    height: 102px;
    background: url(../images/contact_shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    line-height: 100px;
    font-size: 40px;
    color: var(--colorWhite);
    position: absolute;
    top: -30px;
    left: 0;
}

.tf__contact_info h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__contact_info p {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__contact_form input,
.tf__contact_form textarea {
    border: none;
    margin-top: 20px;
}

/*================================
    CONTACT US END
================================*/

/*============================
   DASHBOARD START
============================*/
.tf__dashboard_area {
    border: 1px solid #378fff21;
    border-radius: 5px;
}

.tf__dashboard_menu {
    height: 100%;
    overflow: hidden;
    border-right: 1px solid #378fff21;
    padding: 20px;
}

.dasboard_header {
    text-align: center;
}

.dasboard_header .dasboard_header_img {
    border-radius: 50%;
    border: 5px solid var(--colorWhite);
    box-shadow: var(--box-shadow);
    width: 140px;
    height: 140px;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
}

.dasboard_header .dasboard_header_img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.dasboard_header .dasboard_header_img label {
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 1;
    font-size: 13px;
    border: 2px solid var(--colorWhite);
    cursor: pointer;
    transition: all linear .3s;
}

.dasboard_header .dasboard_header_img label:hover {
    background: var(--colorBlack);
}

.dasboard_header h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-bottom: 5px;
    margin-top: 15px;
    text-align: center;
}

.dasboard_header p {
    margin: 0px;
}

.tf__dashboard_menu_package {
    text-align: center;
    margin-bottom: 35px;
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #afd2ff21;
    background: #f4f8ff;
    margin-top: 20px;
}

.tf__dashboard_menu_package h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--colorBlack);
    text-transform: capitalize;
    text-align: center;
}

.tf__dashboard_menu_package p {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 15px;
    margin-top: 5px;
    text-align: center;
}

.tf__dashboard_menu_package a {
    padding-top: 12px;
    padding-bottom: 10px;
}

.tf__dashboard_menu ul li a {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    display: block;
    transition: all 0.3s linear 0s;
    border: 1px solid #b7d7ff5e;
    padding: 0px 0px !important;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    text-transform: capitalize;
    border-radius: 5px;
    margin-top: 10px;
    color: var(--colorBlack);
}

.tf__dashboard_menu ul li a span {
    display: inline-block;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    width: 50px;
    height: 50px;
    color: var(--colorPrimary);
    text-align: center;
    line-height: 50px;
    margin-right: 10px;
    border-radius: 0px;
    background: #378fff17;
    font-size: 16px;
}

.tf__dashboard_menu ul li a.active,
.tf__dashboard_menu ul li a:hover {
    background: #f4f8ff;
    border-color: var(--colorPrimary);
}

.tf__dashboard_menu ul li a.active span,
.tf__dashboard_menu ul li a:hover span {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__dashboard_menu ul li a.active::after {
    position: absolute;
    content: "";
    background: var(--gradiantBg);
    width: 8px;
    height: 50px;
    top: 0;
    right: -3px;
    border-radius: 20px;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
}

.tf__dashboard_content {
    padding: 25px 25px 25px 0px;
}

.tf_dashboard_body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.tf_dash_personal_info {
    border-radius: 5px;
    padding: 30px;
    border: 1px solid #afd2ff21;
    background: #f4f8ff;
}

.tf__comment_imput_single {
    margin-bottom: 20px;
}

.tf_dash_personal_info label {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

.tf_dash_personal_info input,
.tf_dash_personal_info textarea {
    border: 1px solid #378fff21;
    background: var(--colorWhite);
}

/* dashboard ai writing */
.ai_writing_sidebar {
    background: #f4f8ff;
    border-radius: 5px;
    padding: 25px 25px 0px 25px;
    border: 1px solid #afd2ff21;
    margin-bottom: 25px;
}

.ai_writing_sidebar_input {
    margin-bottom: 25px;
}

.ai_writing_sidebar_input label {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.ai_writing_sidebar_input input,
.ai_writing_sidebar_input textarea {
    border: 1px solid #378fff21;
    padding: 14px 20px;
    resize: none;
    background: var(--colorWhite);
}

.ai_writing_sidebar button {
    width: 100%;
    padding: 13px 35px 12px 35px !important;
    margin-top: 28px;
}

.ai_writing_sidebar button::after {
    display: none;
}

.ai_writing_sidebar button i {
    margin-left: 5px;
}

.ai_writing_body {
    background: #f4f8ff;
    border-radius: 5px;
}

.ai_writing_body p {
    color: var(--colorBlack);
}

/* dashboard pricing */
.tf_dash_pricing h3 {
    margin-bottom: 0;
}

.tf_dash_pricing .member_price:hover {
    margin-top: 25px;
}

/* dashboard payment */
.dashboard_payment {
    margin-top: 20px;
}

.tf_dashboard_order table {
    border-radius: 5px;
    overflow: hidden;
    margin: 0px;
    background: #378fff12;
}

.tf_dashboard_order table tr {
    border-color: transparent;
    display: flex;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.tf_dashboard_order table tr th {
    background: #378fff1f;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
}

.tf_dashboard_order table tr th,
.tf_dashboard_order table tr td {
    text-align: center;
    padding: 15px 0px;
    width: 20%;
    min-width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tf_dashboard_order table tr td h5 {
    color: var(--colorBlack);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--paraFont);
}

.tf_dashboard_order table tr td p {
    text-transform: capitalize;
    margin: 0px;
    font-size: 16px;
    color: var(--colorBlack);
}

.tf_dashboard_order table tr td a {
    font-size: 16px;
    font-weight: 400;
    background: #378FFF;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s linear 0s;
    padding: 5px 25px;
    border-radius: 30px;
    cursor: pointer;
}

.tf_dashboard_order table tr td a:hover {
    background: #07123b;
}

.tf_dashboard_order table tr td span {
    border-radius: 30px;
    padding: 5px 0px;
    width: 122px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
}

.tf_dashboard_order table tr td .complete {
    background: rgb(0 234 171 / 59%);
    color: var(--colorWhite);
}

.tf_dashboard_order table tr td .cancel {
    background: #ff00005e;
    color: var(--colorWhite);
}

.tf_dashboard_order table tr td .active {
    background: #6464ff8f;
    color: var(--colorWhite);
}

.tf__invoice_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px;
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    border: 1px solid #378fff38;
}

.tf__invoice_header .header_address {
    max-width: 40%;
}

.tf__invoice_header .header_address h4 {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tf__invoice_header .header_address b {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    width: 95px;
    color: var(--colorBlack);
}

.tf__invoice_header .header_address p {
    display: flex;
    flex-wrap: wrap;
}

.tf__invoice_header h5 {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 800;
}

.tf__invoice_body {
    border-radius: 5px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tf__invoice table {
    border-left: 1px solid #378fff38;
    border-right: 1px solid #378fff38;
    margin: 0;
    border-radius: 5px;
}

.tf__invoice table tr {
    border-right: 0;
    border-top: 1px solid #378fff38;
    border-style: double;
}

.tf__invoice table tr th {
    border: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    background: #378fff1f;
}

.tf__invoice table tr th,
.tf__invoice table tr td {
    padding: 15px;
    text-align: center;
    border-right: 1px solid #378fff38;
}

.tf__invoice table tr td {
    color: var(--colorBlack);
    vertical-align: middle;
}

.tf__invoice table tr td p {
    color: var(--colorBlack);
    margin: 0;
    text-transform: capitalize;
}

.tf__invoice table tr td p b {
    font-weight: 400;
}

.tf__invoice table tr td .size,
.tf__invoice table tr td .coca_cola,
.tf__invoice table tr td .coca_cola2 {
    display: block;
    color: var(--colorBlack);
    text-transform: capitalize;
}

.tf__invoice table tr td .size {
    color: var(--colorPrimary);
}

.tf__invoice table tr td b {
    font-weight: 400;
}

.tf__invoice .sl_no {
    min-width: 60px;
}

.tf__invoice .package {
    width: 40%;
    min-width: 150px;
    text-align: left;
}

.tf__invoice .price,
.tf__invoice .qnty,
.tf__invoice .total {
    width: 20%;
    min-width: 150px;
}

.tf__invoice table tfoot {
    border-bottom: 1px solid #378fff38;
    width: 100%;
    border-top: 1px solid #378fff38;
}

.tf__invoice table tfoot tr td {
    border-top: 1px solid #378fff38;
    border-right: 1px solid #378fff38;
}

.tf__invoice table tfoot tr td b {
    margin: 0;
    border: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    display: block;
    text-align: center;
}

.tf__invoice table tfoot .coupon b,
.tf__invoice table tfoot .coast b {
    font-weight: 500 !important;
}

.tf__invoice table tfoot .coupon b {
    color: var(--colorPrimary);
}

.tf__invoice table tfoot .package {
    width: 60%;
}

.tf__invoice table tfoot .total {
    border-right: 0;
}

.tf_dashboard_body .tf__invoice {
    border-radius: 5px;
    margin-top: 25px;
}

.tf__invoice .go_back {
    padding: 12px 30px 10px 30px !important;
    border-radius: 30px;
    cursor: pointer;
}

.tf__invoice .go_back::after {
    display: none;
}

.tf__invoice .go_back i {
    margin-right: 10px;
}

.tf__invoice .print_btn {
    float: right;
    margin-top: 55px;
}

.tf__invoice .print_btn i {
    margin-right: 5px;
}

.tf__change_password .tf__comment_imput_single {
    margin-top: 20px;
}

/* dashboard ai hostory */
.tf_dash_ai_history {
    background: #f4f8ff;
    border-radius: 5px;
    overflow: hidden;
}

.tf_dash_ai_history table {
    width: 100%;
    border-left: 1px solid #378fff38;
    border-right: 1px solid #378fff38;
}

.tf_dash_ai_history table tbody {
    width: 100%;
}

.tf_dash_ai_history table tr {
    border-bottom: 1px solid #378fff38;
}

.tf_dash_ai_history table tr th {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    background: #378fff1f;
}

.tf_dash_ai_history table tr th,
.tf_dash_ai_history table tr td {
    padding: 10px 20px;
    min-width: 180px;
}

.tf_dash_ai_history table .doc_name {
    width: 35%;
}

.tf_dash_ai_history table .doc_words {
    width: 15%;
}

.tf_dash_ai_history table .doc_date {
    width: 35%;
}

.tf_dash_ai_history table .doc_action {
    width: 15%;
}

.tf_dash_ai_history table tr td a {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf_dash_ai_history table tr td a:hover {
    color: var(--colorBlack);
}

.tf_dash_ai_history table tr td p {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.tf_dash_ai_history table tr td ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #378fff12;
    color: var(--colorPrimary);
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf_dash_ai_history table tr td ul li a:hover {
    background: var(--colorPrimary);
    color: #fff;
}

.tf_dash_ai_history table tr td ul li:last-child a {
    background: #ff00000f;
    color: red;
}

.tf_dash_ai_history table tr td ul li:last-child a:hover {
    background: red;
    color: #fff;
}

.tf_dash_ai_history_edit {
    padding: 25px;
    border: 1px solid #afd2ff21;
}

.tf_dash_ai_history_edit .back_edit {
    margin-bottom: 20px;
    padding: 12px 35px 11px 35px !important;
    border-radius: 30px;
    cursor: pointer;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.tf_dash_ai_history_edit .back_edit::after {
    display: none;
}

.tf_dash_ai_history_edit .back_edit i {
    margin-right: 10px;
}

.tf_dash_ai_history_edit .note-editor.note-airframe .note-editing-area .note-editable,
.note-editor.note-frame .note-editing-area .note-editable {
    min-height: 300px;
}

.tf__ai_category_button {
    border: 1px solid #378fff21;
    border-radius: 5px;
    overflow: hidden;
}

.tf__ai_category_button button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: var(--colorWhite);
    border-bottom: 1px solid #378fff21;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__ai_category_button button:last-child {
    border: none;
}

.tf__ai_category_button button i {
    width: 30px;
}

.tf__ai_category_button button:hover,
.tf__ai_category_button button.active {
    background: rgba(40, 110, 251, .1);
    color: var(--colorPrimary);
}

.tf__ai_category_item:hover {
    background: var(--colorPrimary);
}

.tf__ai_category_item:hover h5,
.tf__ai_category_item:hover p {
    color: var(--colorWhite);
}

.tf__ai_category_item {
    display: block;
    border: 1px solid #378fff26;
    padding: 40px 30px;
    border-radius: 5px;
    margin-bottom: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__ai_category_item h5 {
    text-align: center;
    color: var(--colorBlack);
    transition: all linear .3s;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.tf__ai_category_item p {
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

/*============================
   DASHBOARD END
============================*/