/* Iconbox  */

.tficonbox .content .tf-button:hover i {
    color: var(--theme-primary-color);
}

.tficonbox.style1 .wrap-icon i {
    font-size: 80px;
    color: #161E2D;
}

.tficonbox.style1 .wrap-icon {
    margin-bottom: 30px;
}

.tficonbox.style1 .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    margin-bottom: 12px;
    color: #161E2D;
}

.tficonbox.style1 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    margin-bottom: 12px;
}

.tficonbox.style1 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style1 .content .tf-button i {
    vertical-align: middle;
    color: var(--theme-primary-color);
}

.tficonbox.style1 .content .tf-button:hover {
    color: var(--theme-primary-color);
}

.tficonbox.style1 .wrap-icon-inner > *,
.tficonbox.style3 .wrap-icon-inner > * {
    display: inline-block;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.tficonbox.style1:hover .wrap-icon-inner > *,
.tficonbox.style3:hover .wrap-icon-inner > * {
    transform: rotateY(360deg);
}

.tficonbox.style1:not(.hover-border-button) .tf-button span,
.tficonbox.style2 .tf-button span,
.tficonbox.style3 .tf-button span {
    position: relative;
}

.tficonbox.style1:not(.hover-border-button) .tf-button span::after,
.tficonbox.style2 .tf-button span::after,
.tficonbox.style3 .tf-button span::after {
    position: absolute;
    content: "";
    bottom: 0;
    height: 2px;
    width: 0;
    left: auto;
    right: 0;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background-color: #161e2d;
}

.tficonbox.style1:not(.hover-border-button):hover .tf-button span::after,
.tficonbox.style2:hover .tf-button span::after,
.tficonbox.style3:hover .tf-button span::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* style 2 */

.tficonbox.style2 {
    display: flex;
    box-shadow: 0px 10px 25px 0px #365F681A;
    padding: 29px 28px 29px 28px;
    border-radius: 16px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.tficonbox.style2:hover {
    transform: scale(1.07);
}

.tficonbox.style2 .wrap-icon {
    margin-right: 30px;
}

.tficonbox.style2 .wrap-icon i {
    font-size: 80px;
    color: #161E2D;
}

.tficonbox.style2 .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    margin-bottom: 12px;
}

.tficonbox.style2 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    margin-bottom: 8px;
}

.tficonbox.style2 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style2 .content .tf-button i {
    vertical-align: middle;
    color: var(--theme-primary-color);
}

.tficonbox.style2 .content .tf-button:hover {
    color: var(--theme-primary-color);
}

/* style 3 */

.tficonbox.style3 {
    display: flex;
}

.tficonbox.style3 .wrap-icon {
    margin-right: 30px;
}

.tficonbox.style3 .wrap-icon .wrap-icon-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary-rgba);
}

.tficonbox.style3 .wrap-icon i {
    font-size: 51px;
    color: var(--theme-primary-color);
}

.tficonbox.style3 .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    margin-bottom: 12px;
}

.tficonbox.style3 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    margin-bottom: 8px;
}

.tficonbox.style3 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style3 .content .tf-button i {
    vertical-align: middle;
    color: var(--theme-primary-color);
}

.tficonbox.style3 .content .tf-button:hover {
    color: #161E2D;
}

/* style 4 */

.tficonbox.style4 {
    text-align: center;
}

.tficonbox.style4 .wrap-icon i {
    font-size: 120px;
    color: #161E2D;
}

.tficonbox.style4 .wrap-icon {
    margin-bottom: 34px;
}

.tficonbox.style4 .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    margin-bottom: 12px;
}

.tficonbox.style4 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    color: #5C6368;
    margin-bottom: 30px;
}

.tficonbox.style4 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    line-height: 26px;
    letter-spacing: 0em;
    color: #161E2D;
    padding: 12px 31px;
    border: 1px solid #161E2D;
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style4 .content .tf-button:hover {
    border-color: var(--theme-primary-color);
    background: var(--theme-primary-color);
    color: #fff;
}

.tficonbox.style4 .content .tf-button i {
    vertical-align: middle;
}

/* default */

.tficonbox,
.tficonbox .wrap-icon i,
.tficonbox .wrap-icon svg {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tficonbox .content .tf-button i {
    display: inline-block;
}

.tficonbox:hover .content .tf-button i {
    -webkit-animation: toRight 0.3s forwards;
    -moz-animation: toRight 0.3s forwards;
    animation: toRight 0.3s forwards;
}

/* hover border */

.tficonbox.hover-border-button .tf-button span {
    position: relative;
}

.tficonbox.hover-border-button .tf-button span::after,
.tficonbox.hover-border-button .tf-button span::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-primary-color);
    transition: all ease 0.4s;
}

.tficonbox.hover-border-button .tf-button span::after {
    width: 0;
    left: 0;
    transition: all ease 0.8s;
}

.tficonbox.hover-border-button .tf-button:hover span::after {
    width: 100%;
}

.tficonbox.hover-border-button .tf-button:hover span::before {
    width: 0;
}

@keyframes toRight {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@media (max-width: 767px) { 
   
}

