/* Iconbox  */

.tficonbox .number-step {
    width: 70px;
    height: 70px;
    border: 2px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -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:hover .number-step {
    background-color: var(--theme-primary-color);
    color: #fff;
}

.tficonbox .content .tf-button:hover i {
    color: var(--theme-primary-color);
}

.tficonbox.style1 {
    padding: 48px 50px 48px 50px;
    border-radius: 10px;
    border: 2px solid rgb(234, 234, 234);
    -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;
    text-align: center;
}

.tficonbox.style1 .wrap-icon {
    margin-bottom: -13px;
    font-size: 50px;
}

.tficonbox.style1 .content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    margin-bottom: 13px;
    position: relative;
    z-index: 5;
}

.tficonbox.style1 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #2b2b2b;
    margin-bottom: 17px;
}

.tficonbox.style1 .content .tf-button  {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    color: var(--theme-primary-color);
    display: inline-flex;
    align-items: center;
    column-gap: 11px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style1 .content .tf-button i {
    vertical-align: middle;
}

.tficonbox.style1 .content .tf-button:hover {
    color: var(--theme-primary-color);
}

.tficonbox.style1 .wrap-icon-inner > *,
.tficonbox.style2 .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.style2: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: currentColor;
}

.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;
    padding: 44px 28px 38px 58px;
    border-radius: 10px;
    border: 2px solid rgb(234, 234, 234);
    -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 .wrap-icon {
    margin-right: 41px;
    flex-shrink: 0;
    margin-top: 3px;
}

.tficonbox.style2 .wrap-icon i {
    font-size: 80px;
    color: #161E2D;
}

.tficonbox.style2 .content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    margin-bottom: 13px;
}

.tficonbox.style2 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #2b2b2b;
    margin-bottom: 17px;
}

.tficonbox.style2 .content .tf-button  {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    color: #aaaaaa;
    display: inline-flex;
    align-items: center;
    column-gap: 11px;
    width: max-content;
    justify-content: center;
}

.tficonbox.style2 .content .tf-button i {
    vertical-align: middle;
}

.tficonbox.style2 .content .tf-button:hover {
    color: var(--theme-primary-color);
}

/* style 3 */

.tficonbox.style3 {
    display: flex;
    padding: 44px 28px 38px 41px;
    border-radius: 10px;
    border: 2px solid rgb(234, 234, 234);
    -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.style3:hover {
    border-color: var(--theme-primary-color);
}

.tficonbox.style3 .wrap-icon {
    margin-right: 39px;
    flex-shrink: 0;
    margin-top: 6px;
}

.tficonbox.style3:hover .wrap-icon .wrap-icon-inner {
    background: var(--theme-primary-color);
    color: #fff;
}

.tficonbox.style3 .wrap-icon .wrap-icon-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    border: 2px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
    -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.style3 .wrap-icon i {
    font-size: 51px;
}

.tficonbox.style3 .content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    margin-bottom: 13px;
}

.tficonbox.style3 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #2b2b2b;
    margin-bottom: 17px;
}

.tficonbox.style3 .content .tf-button  {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    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;
}

.tficonbox.style3 .content .tf-button:hover {
    color: var(--theme-primary-color);
}

/* style 4 */

.tficonbox.style4 {
    text-align: center;
    border-radius: 10px;
    padding: 27px 46px 35px 46px;
}

.tficonbox.style4 .wrap-icon i {
    font-size: 120px;
    color: #161E2D;
}

.tficonbox.style4 .wrap-icon {
    margin-bottom: 32px;
}

.tficonbox.style4 .content .title {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    margin-bottom: 14px;
}

.tficonbox.style4 .content .title.show-line::after {
    content: '';
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%);
    background: #eaeaea;
}

.tficonbox.style4 .content .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #2b2b2b;
    margin-bottom: 30px;
}

.tficonbox.style4 .content .tf-button  {
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    line-height: 26px;
    letter-spacing: 0em;
    color: var(--theme-primary-color);
    padding: 7px 36px;
    border: 2px solid var(--theme-primary-color);
    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;
    }
}

/* icon list */

.tf-icon-carousel .item-icon-list {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 41px 40px 43px 40px;
    text-align: center;
    -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;
}

.tf-icon-carousel .item-icon-list:hover h6::after {
    background: var(--theme-primary-color);
}

.tf-icon-carousel .item-icon-list .icon {
    font-size: 60px;
    color: var(--theme-primary-color);
}

.tf-icon-carousel .item-icon-list .wrap-icon .wrap-icon-inner > * {
    -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;
}

.tf-icon-carousel .item-icon-list:hover .wrap-icon .wrap-icon-inner > * {
    transform: rotateY(360deg);
}

.tf-icon-carousel .item-icon-list h6 {
    font-size: 20px;
    color: rgb(43, 43, 43);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 44px;
    position: relative;
}

.tf-icon-carousel .item-icon-list h6::after {
    content: '';
    width: 90px;
    height: 2px;
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translate(-50%);
    background: #eaeaea;
    -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;
}

.tf-icon-carousel .item-icon-list .description {
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: 1.625;
}

.tf-icon-carousel .item-icon-list .wrap-icon {
    margin-bottom: 27px;
}

.tf-icon-carousel .item-icon-list .wrap-icon .wrap-icon-inner > * {
    max-height: 71px;
    min-height: 71px;
    margin-left: auto;
    margin-right: auto;
    font-size: 54px;
    color: var(--theme-primary-color);
}

.tf-icon-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    color: #fff !important;
    background: var(--theme-primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-icon-carousel .owl-nav button i::before {
    vertical-align: middle;
}

.tf-icon-carousel .owl-nav button:hover,
.tf-icon-carousel .owl-nav button.disabled {
    opacity: 0.8;
}

.tf-icon-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.tf-icon-carousel .owl-nav {
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translate(-50%);
}

@media (max-width: 767px) { 
   
}

