/* Iconbox  */
.tficonbox {
    font-family: "Poppins";
    font-size: 14px;
    line-height: 25px;
}

.tficonbox .title {
    font-size: 16px;
}

.tficonbox.top {
    text-align: center;
}

.tficonbox.left {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.tficonbox.left .wrap-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.tficonbox.left .content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.tficonbox.right {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.tficonbox.right .wrap-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.tficonbox.right .content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.tficonbox .wrap-icon .wrap-icon-inner {
    display: inline-flex;
    font-size: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tficonbox .wrap-icon .wrap-icon-inner .icon-2,
.tficonbox .wrap-icon .wrap-icon-inner .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tficonbox .wrap-icon .wrap-icon-inner .icon {
    position: absolute;
    left: 4px;
    bottom: -17px;
}

.tficonbox .wrap-icon .wrap-icon-inner.image {
    line-height: 0 !important;
}

.tficonbox .wrap-icon.circle .wrap-icon-inner,
.tficonbox .wrap-icon.square .wrap-icon-inner {
    background-color: #23a455;
}

.tficonbox .wrap-icon.circle .wrap-icon-inner,
.tficonbox .wrap-icon.circle-outline .wrap-icon-inner,
.tficonbox .wrap-icon.circle .wrap-icon-spin-around:before,
.tficonbox .wrap-icon.circle-outline .wrap-icon-spin-around:before {
    padding: 0.5em;
    border-radius: 50%;
}

.tficonbox .wrap-icon.circle-outline .wrap-icon-inner,
.tficonbox .wrap-icon.square-outline .wrap-icon-inner,
.tficonbox .wrap-icon.square-outline .wrap-icon-spin-around:before,
.tficonbox .wrap-icon.circle-outline .wrap-icon-spin-around:before {
    border-width: 3px;
    border-style: solid;
}

.tficonbox,
.tficonbox a,
.tficonbox .wrap-icon .wrap-icon-inner,
.tficonbox .tf-button i,
.tficonbox .tf-button svg,
.tficonbox .description,
.tficonbox .title,
.tficonbox .tf-button.has-line:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tficonbox.top .wrap-icon {
    margin-bottom: 17px;
}

.tficonbox.left .wrap-icon {
    margin-right: 50px;
}

.tficonbox.right .wrap-icon {
    margin-left: 50px;
}

.tficonbox .tf-button-container.left {
    text-align: left;
}

.tficonbox .tf-button-container.center {
    text-align: center;
}

.tficonbox .tf-button-container.right {
    text-align: right;
}

.tficonbox .tf-button-container.justify .tf-button {
    text-align: center;
    width: 100%;
}

.tficonbox .tf-button-container a {
    margin-top: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tficonbox .tf-button.has-line:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 1px;
    width: 100%;
}

.tficonbox .tf-button.has-line:after {
    content: "";
    background-color: #ff7029;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s,
        -webkit-transform 500ms 0s;
}

.tficonbox .tf-button.has-line:hover:after {
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.tficonbox {
    position: relative;
}

.tficonbox .wrap-icon,
.tficonbox .content {
    z-index: 2;
    position: relative;
}

.tficonbox .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tficonbox .overlay.from-left,
.tficonbox .overlay.from-right,
.tficonbox .overlay.from-top,
.tficonbox .overlay.from-bottom {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.tficonbox .overlay.fadein {
    opacity: 0;
    visibility: hidden;
}

.tficonbox:hover .overlay.fadein {
    opacity: 1;
    visibility: visible;
}

.tficonbox .overlay.from-left {
    opacity: 0;
    visibility: hidden;
    left: -100%;
}

.tficonbox:hover .overlay.from-left {
    opacity: 1;
    visibility: visible;
    left: 0%;
}

.tficonbox .overlay.from-top {
    opacity: 0;
    visibility: hidden;
    top: -100%;
}

.tficonbox:hover .overlay.from-top {
    opacity: 1;
    visibility: visible;
    top: 0%;
}

.tficonbox .overlay.from-right {
    opacity: 0;
    visibility: hidden;
    left: 100%;
}

.tficonbox:hover .overlay.from-right {
    opacity: 1;
    visibility: visible;
    left: 0%;
}

.tficonbox .overlay.from-bottom {
    opacity: 0;
    visibility: hidden;
    top: 100%;
}

.tficonbox:hover .overlay.from-bottom {
    opacity: 1;
    visibility: visible;
    top: 0%;
}

.tficonbox .content .description,
.tficonbox .wrap-icon-inner .icon-2,
.tficonbox .wrap-icon-inner .icon,
.tficonbox .content .title,
.tficonbox .content .title a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tficonbox .wrap-icon-inner .icon {
    color: rgba(87, 185, 87, 0.1);
}

.tficonbox .wrap-icon-inner .icon-2 {
    color: #57B957;
}

.tficonbox:hover .wrap-icon-inner .icon {
    color: rgba(255, 255, 255, 0.2);
}

.tficonbox:hover .wrap-icon-inner .icon-2 {
    color: #fff;
}

.tficonbox .content .title {
    margin-bottom: 15px;
}

.tficonbox .content .title,
.tficonbox .content .title a {
    color: #010c2a;
    font-family: "Roboto Slab", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.tficonbox.style1:hover .content .title,
.tficonbox.style1:hover .content .title a {
    color: #fff;
}

.tficonbox .content .description {
    color: #494a4d;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tficonbox.style1:hover .content .description {
    color: #e8e8e9;
}

.tficonbox.style1 {
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 4%);
    border-radius: 5px 5px 5px 5px;
}

.tficonbox.style1:hover {
    background-color: #005DE0;
}

.tficonbox .wrap-icon-inner i {
    font-size: 60px;
}

/* style 2 */

.tficonbox.style2 .wrap-icon .wrap-icon-inner .icon {
    left: -12px;
    bottom: 15px;
}

.tficonbox.style2.left .wrap-icon {
    margin-right: 17px;
}

.tficonbox.style2 .wrap-icon-inner i {
    font-size: 48px;
}

.tficonbox.style2 .content {
    margin-top: -11px;
}

.tficonbox.style2 .content .title,
.tficonbox.style2 .content .title a {
    font-weight: 500;
    font-size: 18px;
}

.tficonbox.style2 .wrap-icon-inner .icon {
    background-color: transparent;
    background-image: linear-gradient(
        246.06deg,
        #cf00fe -19.26%,
        #005de0 87.05%
    );
    opacity: 0.1;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tficonbox.style2 .wrap-icon-inner .icon-2 {
    background-color: transparent;
    background-image: linear-gradient(
        246.06deg,
        #cf00fe -19.26%,
        #005de0 87.05%
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* style 3 */

.tficonbox.left.style3 .wrap-icon {
    margin-right: 40px;
}

.tficonbox.style3 .wrap-icon-inner i {
    font-size: 50px;
}

.tficonbox.style3 .wrap-icon .wrap-icon-inner .icon {
    left: 18px;
    bottom: -10px;
}

.tficonbox.style3 .wrap-icon-inner .icon {
    color: #005DE0;
}

.tficonbox.style3 .wrap-icon-inner .icon-2 {
    color: rgba(113, 65, 177, 0.07);
}

.tficonbox.style3 .content .title,
.tficonbox.style3 .content .title a {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-top: 6px;
}

/* style 4 */

.tficonbox.left.style4 .wrap-icon {
    margin-right: 9px;
}

.tficonbox.style4 .wrap-icon .icon {
    position: relative;
}

.tficonbox.style4 .wrap-icon-inner i {
    font-size: 20px;
}

.tficonbox.style4 .wrap-icon-inner .icon-2 {
    background-color: transparent;
    background-image: linear-gradient(
        246.06deg,
        #cf00fe -19.26%,
        #005de0 87.05%
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tficonbox.left.style4 .content {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-top: 7px;
}

.tficonbox.style4 .content .title,
.tficonbox.style4 .content .title a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    margin-right: 4px;
}

/* style 5 */
.tficonbox.style5 .wrap-icon-inner .icon-2::after,
.tficonbox.style5::after,
.tficonbox.style5 .wrap-icon-inner .icon-2 i,
.tficonbox.style5 .wrap-icon-inner .icon-2 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tficonbox.style5 {
    padding: 46px 20px 44px 46px;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.04);
    background-color: #fff;
}

.tficonbox.left.style5 .wrap-icon {
    margin-right: 33px;
}

.tficonbox.style5 .content {
    margin-top: -4px;
}

.tficonbox.style5 .content .title {
    margin-bottom: 17px;
}

.tficonbox.style5:hover .content .description,
.tficonbox.style5:hover .content .title {
    color: #fff;
}

.tficonbox.style5 .wrap-icon-inner .icon-2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgb(87, 185, 87, 0.1) 0%,
        rgb(87, 185, 87, 0.1) 100%
    );
    position: relative;
}

.tficonbox.style5 .wrap-icon-inner .icon-2 i {
    background-color: transparent;
    background-image: linear-gradient(180deg, #57B957 0%, #57B957 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
}

.tficonbox.style5 .wrap-icon-inner .icon-2::after {
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed #57B957;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.tficonbox.style5:hover .wrap-icon-inner .icon-2::after {
    border-color: #fff;
}

.tficonbox.style5:hover .wrap-icon-inner .icon-2 {
    background: #fff;
}

.tficonbox.style5::after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #57B957 0%, #57B957 100%);
    top: 0;
    left: 0;
    content: "";
    opacity: 0;
}

.tficonbox.style5:hover::after {
    opacity: 1;
}

/* style 6 */

.tficonbox.style6 {
    padding: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.tficonbox.style6:hover {
    background-color: #010c2a;
}

.tficonbox.style6 .content .title,
.tficonbox.style6 .content .title a {
    font-family: "Roboto Slab", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #010c2a;
    margin-bottom: 11px;
}

.tficonbox.style6 .content .description {
    color: #494a4d;
    font-family: "Roboto Slab", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.tficonbox.style6 .wrap-icon-inner i {
    font-size: 30px;
}

.tficonbox.style6:hover .wrap-icon-inner .icon-2 {
    color: #00b0fc;
}

.tficonbox.style6 .wrap-icon-inner .icon-2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    position: relative;
}

.tficonbox.style6:hover .wrap-icon-inner .icon-2 {
    background: #fff;
}

.tficonbox.style6:hover .content .description {
    color: #e8e8e9;
}

.tficonbox.style6:hover .content .title,
.tficonbox.style6:hover .content .title a {
    color: #ffff;
}

.tficonbox.style6 .wrap-icon .wrap-icon-inner .icon {
    left: 67px;
    bottom: -170px;
    color: #f6f6f6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tficonbox.style6:hover .wrap-icon .wrap-icon-inner .icon {
    color: rgba(246, 246, 246, 0.1);
}

.tficonbox.style6 .wrap-icon .wrap-icon-inner .icon i {
    font-size: 150px;
}

/* button */
.btn-overlay {
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-overlay:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.from-top.btn-overlay:after {
    top: -100%;
    left: 0;
}

.from-top.btn-overlay:hover:after {
    top: 0%;
}

.from-bottom.btn-overlay:after {
    top: 100%;
    left: 0;
}

.from-bottom.btn-overlay:hover:after {
    top: 0%;
}

.from-left.btn-overlay:after {
    top: 0;
    left: -100%;
}

.from-left.btn-overlay:hover:after {
    left: 0;
}

.from-right.btn-overlay:after {
    top: 0;
    left: 100%;
}

.from-right.btn-overlay:hover:after {
    left: 0;
}

.from-center.btn-overlay:after {
    width: 0%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.from-center.btn-overlay:hover:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.skew.btn-overlay:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: #fff;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.skew.btn-overlay:hover:after {
    height: 260%;
    opacity: 1;
}

/* flip box */
.container-widget.flip-box {
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box-front,
.flip-box-back {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.flip-box-front {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 1;
}

.flip-box-back {
    -webkit-transform: rotateX(0) rotateY(180deg);
    transform: rotateX(0) rotateY(180deg);
}

.container-widget.flip-box:hover .flip-box-front {
    -webkit-transform: rotateX(0) rotateY(-180deg);
    transform: rotateX(0) rotateY(-180deg);
}

.container-widget.flip-box:hover .flip-box-back {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.container-widget.flip-box.reverse-horizontal-rotation .flip-box-back {
    -webkit-transform: rotateX(0) rotateY(-180deg);
    transform: rotateX(0) rotateY(-180deg);
}

.container-widget.flip-box.reverse-horizontal-rotation:hover .flip-box-front {
    -webkit-transform: rotateX(0) rotateY(180deg);
    transform: rotateX(0) rotateY(180deg);
}

.container-widget.flip-box.reverse-horizontal-rotation:hover .flip-box-back {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.container-widget.flip-box.vertical-rotation .flip-box-back {
    -webkit-transform: rotateX(0) rotateX(180deg);
    transform: rotateX(0) rotateX(180deg);
}

.container-widget.flip-box.vertical-rotation:hover .flip-box-front {
    -webkit-transform: rotateX(0) rotateX(-180deg);
    transform: rotateX(0) rotateX(-180deg);
}

.container-widget.flip-box.vertical-rotation:hover .flip-box-back {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.container-widget.flip-box.reverse-vertical-rotation .flip-box-back {
    -webkit-transform: rotateX(0) rotateX(-180deg);
    transform: rotateX(0) rotateX(-180deg);
}

.container-widget.flip-box.reverse-vertical-rotation:hover .flip-box-front {
    -webkit-transform: rotateX(0) rotateX(180deg);
    transform: rotateX(0) rotateX(180deg);
}

.container-widget.flip-box.reverse-vertical-rotation:hover .flip-box-back {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

/* animation */
.tficonbox .wrap-icon-inner {
    position: relative;
}
.tficonbox .wrap-icon-inner.right-to-left,
.tficonbox .wrap-icon-inner.left-to-right,
.tficonbox .wrap-icon-inner.top-to-bottom,
.tficonbox .wrap-icon-inner.bottom-to-top {
    overflow: hidden;
}
.tficonbox:hover .wrap-icon-inner.right-to-left i,
.tficonbox:hover .wrap-icon-inner.right-to-left svg,
.tficonbox:hover .wrap-icon-inner.right-to-left image {
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}

.tficonbox:hover .wrap-icon-inner.left-to-right i,
.tficonbox:hover .wrap-icon-inner.left-to-right svg,
.tficonbox:hover .wrap-icon-inner.left-to-right image {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    -moz-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
}

.tficonbox:hover .wrap-icon-inner.top-to-bottom i,
.tficonbox:hover .wrap-icon-inner.top-to-bottom svg,
.tficonbox:hover .wrap-icon-inner.top-to-bottom image {
    -webkit-animation: toBottomFromTop 0.3s forwards;
    -moz-animation: toBottomFromTop 0.3s forwards;
    animation: toBottomFromTop 0.3s forwards;
}

.tficonbox:hover .wrap-icon-inner.bottom-to-top i,
.tficonbox:hover .wrap-icon-inner.bottom-to-top svg,
.tficonbox:hover .wrap-icon-inner.bottom-to-top image {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    -moz-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}

.tficonbox:hover .wrap-icon-inner.spin-around i,
.tficonbox:hover .wrap-icon-inner.spin-around svg,
.tficonbox:hover .wrap-icon-inner.spin-around image {
    -webkit-animation: spinAround 3s linear infinite;
    -moz-animation: spinAround 3s linear infinite;
    animation: spinAround 3s linear infinite;
}

.tficonbox .wrap-icon-spin-around:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tficonbox:hover
    .wrap-icon.circle-outline
    .wrap-icon-inner.wrap-icon-spin-around,
.tficonbox:hover
    .wrap-icon.square-outline
    .wrap-icon-inner.wrap-icon-spin-around {
    border-color: transparent !important;
}

.tficonbox:hover .wrap-icon.circle .wrap-icon-inner.wrap-icon-spin-around,
.tficonbox:hover .wrap-icon.square .wrap-icon-inner.wrap-icon-spin-around {
    background-color: transparent !important;
    background-image: unset !important;
}

.tficonbox:hover .wrap-icon-spin-around:before {
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
}

.tficonbox:hover .wrap-icon-pop {
    -webkit-animation: sonarEffect 0.5s ease-out 50ms;
    -moz-animation: sonarEffect 0.5s ease-out 50ms;
    animation: sonarEffect 0.5s ease-out 50ms;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes spinAround {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes toRightFromLeft {
    49% {
        -webkit-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-moz-keyframes toRightFromLeft {
    49% {
        -moz-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes toLeftFromRight {
    49% {
        -webkit-transform: translate(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}

@-moz-keyframes toLeftFromRight {
    49% {
        -moz-transform: translate(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toLeftFromRight {
    49% {
        transform: translate(-100%);
    }
    50% {
        opacity: 0;
        transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-moz-keyframes toBottomFromTop {
    49% {
        -moz-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 0px #000,
            0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 0px #000,
            0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 0px #000,
            0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 0px #000,
            0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 0px #000,
            0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 0px #000,
            0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .tficonbox.style6 {
        padding: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .tficonbox.style5 {
        padding: 46px 20px 44px 24px;
    }
}
