/* 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 {
    width: 92px;
    height: 92px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: #F2EDDC;
border-radius: 20px;
}

.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: 15px;
}

.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(0, 176, 252, 0.1);
}

.tficonbox .wrap-icon-inner .icon-2 {
    color: #8B54FF;
}

.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: 9px;
}

.tficonbox .content .title,
.tficonbox .content .title a {
    color: var(--theme-primary-color);
    font-family: 'Poppins SemiBold';
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
}

.tficonbox.style1 .wrap-icon .wrap-icon-inner .icon {
    overflow: hidden;
}

.tficonbox.style1:hover .wrap-icon .wrap-icon-inner .icon i {
    -webkit-animation: toBottomFromTop 0.3s forwards;
    -moz-animation: toBottomFromTop 0.3s forwards;
    animation: toBottomFromTop 0.3s forwards;
}

.tficonbox .content .description {
    font-family: 'Poppins';
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #535656;
}

.tficonbox.style1 {

}

.tficonbox.style1:hover {

}

.tficonbox .wrap-icon-inner i {
    font-size: 40px;
    color: var(--theme-primary-color);
}

/* style 2 */

.tficonbox.style2 {
    text-align: left;
}

.tficonbox.style2 .wrap-icon .wrap-icon-inner .icon {
background: #F2EDDC;
width: 70px;
height: 70px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
}

.tficonbox.style2 .wrap-icon-inner i {
    font-size: 32px;
    color: #4F5955;
}

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

.tficonbox.style2 .content .title {
    margin-bottom: 20px;
font-size: 16px;
line-height: 24px;
margin-bottom: 4px;
}

.tficonbox.style2 .content .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}



.tficonbox.style2 .tf-button-container a {
    width: 40px;
    height: 40px;
    background: var(--theme-accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary-color);
}

.tficonbox.style2 .tf-button-container a:hover {
    background: var(--theme-secondary-color);
    color: #fff;
}

/* 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;
    }
}

@media only screen and (max-width: 776px) {
    .tficonbox.style1 {
        align-items: center;
    }
}
/*title section
---------------------------------------------------------------- */
.tf-title-section .title-section .sub-title {
    position: relative;
    margin-bottom: 5px;
    color: var(--theme-secondary-color);
    font-family: 'Poppins';
font-weight: 700;
font-size: 14px;
line-height: 21px;
text-transform: uppercase;
}

.tf-title-section .title-section .heading {
    color: var(--theme-primary-color);
    font-family: 'Poppins';
font-weight: 700;
font-size: 40px;
line-height: 1.25em;
color: #4F5955;
margin-bottom: 0;
}

.tf-title-section .title-section .heading span {
    color: var(--theme-secondary-color);
}


@media (max-width: 767px) {
    .tf-title-section .title-section .heading {
        font-size: 35px;
    }
}.tf-posts.no-carousel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.tf-posts.no-carousel.column-1 .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tf-posts.no-carousel.column-2 .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.tf-posts.no-carousel.column-3 .item {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.tf-posts.no-carousel.column-4 .item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* style-1 */

.tf-posts.style1 .blog-post .content .meta-post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tf-posts.style1 .blog-post .content .meta-post span:not(:last-child) {
    margin-right: 10px;
}

.tf-posts.style1 .blog-post .content {
    border: 1px solid #ECECEC;
    border-radius: 3px;
    background: #fff;
    padding: 56px 20px 20px 25px;
    border-bottom: 3px solid #F2EDDC;
}

.tf-posts.style1 .blog-post:hover .content {
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}

.tf-posts.style1 .blog-post:hover .post-date-item a {
    background: #F2EDDC;
    border-color: transparent;
}

.tf-posts.style1 .blog-post:hover .post-date-item a .top-date,
.tf-posts.style1 .blog-post:hover .post-date-item a .bottom-date {
    color: var(--theme-primary-color);
}

.tf-posts.style1 .blog-post .post-date-item {
    margin-bottom: -33px;
    margin-left: 19px;
    position: relative;
    z-index: 5;
}

.post-home-3 .tf-posts.style1 .blog-post .post-date-item {
    margin-left: 25px;
}

.tf-posts.style1 .blog-post .post-date-item a {
    width: 70px;
    height: 70px;
    border: 1px solid #ECECEC;
    background: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -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;
}

.tf-posts.style1 .blog-post .post-date-item a .top-date {
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    color: var(--theme-secondary-color);
    margin-bottom: -2px;
}

.tf-posts.style1 .blog-post .post-date-item a .bottom-date {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: var(--theme-secondary-color);
    text-transform: uppercase;
}

.tf-posts.style1 .blog-post:hover .content {
    border-bottom: 3px solid #D9C3A9;
}

.tf-posts.style1 .blog-post .content .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

.tf-posts.style1 .blog-post .content .description {
    font-weight: 400;
font-size: 14px;
line-height: 24px;
margin-bottom: 18px;
}

.tf-posts.style1 .blog-post .content .tf-button-container a {
    font-weight: 600;
font-size: 14px;
}

.tf-posts.style1 .blog-post .content .tf-button-container a i {
    color: var(--theme-secondary-color);
}

.tf-posts .blog-post .content .tf-button-container a:hover {
    color: var(--theme-accent-color);
}

.tf-posts .blog-post .content .tf-button-container a:hover i {
    animation: toRightFromLeft .3s forwards;
}

.tf-posts.style1 .blog-post .content .post-meta {
    margin-bottom: 13px;
}

.tf-posts.style1 .blog-post .content .tf-button-container a i,
.tf-posts.style1 .blog-post .content .post-meta i {
    background-color: transparent;
    background-image: var(--theme-accent-color);
    margin-right: 6px;
    display: inline-block;
}

.tf-posts.style1 .blog-post .content .tf-button-container a i {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
}

.tf-posts .blog-post .featured-post a {
    width: 100%;
    display: block;
}

.tf-posts .blog-post .featured-post a img {
    object-fit: cover;
}

.tf-posts .blog-post .featured-post .post-category {
    position: absolute;
    left: 19px;
    top: 9px;
    z-index: 5;
}

.tf-posts .blog-post .featured-post .post-categories {
    display: flex;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

.tf-posts .blog-post .featured-post .post-categories li:not(:last-child) {
    margin-right: 10px;
}

.tf-posts .blog-post .featured-post a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -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;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.tf-posts .blog-post .featured-post .tf-button-container a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    font-size: 10px;
    object-fit: cover;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-accent-color);
    color: var(--theme-primary-color);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -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;
}

.tf-posts .blog-post:hover .featured-post .tf-button-container a,
.tf-posts .blog-post:hover .featured-post::after {
    opacity: 1;
    visibility: visible;
}

.tf-posts .blog-post .featured-post .tf-button-container a:hover {
    background: var(--theme-secondary-color);
    color: #fff;
}

.tf-posts .blog-post .featured-post .post-category a {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 13px;
    line-height: 28px;
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    display: inline;
    background: var(--theme-secondary-color);
}

.tf-posts .featured-post a img {
    -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;
}
.tf-posts .blog-post .content {
    padding: 18px 31px 18px 27px;
    background: #F9F9F9;
    -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;
}
.tf-posts .blog-post .content .post-meta {
    margin-bottom: 6px;
}
.tf-posts .blog-post .content .title {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    background: transparent;
    text-overflow: ellipsis;
    word-break: break-word;
    margin-bottom: 14px;
}

/* style 3 */

.tf-posts.style3 .blog-post .content {
    background: #fff;
    padding: 0;
}

.tf-posts.style3 .blog-post .content .title {
    font-size: 22px;
    line-height: 1.5em;
}

.tf-posts.style3 .blog-post .content .meta-post a {
    color: #9C9EA6;
}

.tf-posts.style3 .blog-post .content .meta-post span:not(:last-child) {
    margin-right: 15px;
}

.tf-posts.style3 .blog-post .content .meta-post {
    margin-bottom: 13px;
}

.tf-posts.style3 .blog-post .content .tf-button-container a {
    font-weight: 600;
font-size: 14px;
}

.tf-posts.style3 .blog-post .content .tf-button-container a i {
    color: var(--theme-secondary-color);
    font-size: 10px;
    margin-left: 7px;
    display: inline-block;
}

/* style3 layout 2 */

.tf-posts.no-carousel.style-layout2 {
    display: block;
    column-gap: 0px;
}

.tf-posts.no-carousel.style-layout2.column-3 {
    column-count: 3;
}

.tf-posts.no-carousel.style-layout2.column-2 {
    column-count: 2;
}

.tf-posts.no-carousel.style-layout2.column-1 {
    column-count: 1;
}

.tf-posts.no-carousel.style-layout2.column-4 {
    column-count: 4;
}

.tf-posts.no-carousel.style-layout2 .item {
    max-width: unset !important;
    break-inside: avoid;
}

.tf-posts.no-carousel.style-layout2 .item:nth-child(1) .featured-post img {
    height: 200px;
}

.tf-posts.no-carousel.style-layout2 .item:nth-child(2) .featured-post img {
    height: 246px;
}

.tf-posts.no-carousel.style-layout2 .item:nth-child(3) .featured-post img {
    height: 312px;
}

.tf-posts.no-carousel.style-layout2 .item:nth-child(4) .featured-post img {
    height: 200px;
}

.tf-posts.no-carousel.style-layout2 .item:nth-child(5) .featured-post img {
    height: 246px;
}

.tf-posts.no-carousel.style-layout2 .blog-post .content {
    padding-top: 15px;
}
.tf-posts.no-carousel.style-layout2 .blog-post .content .meta-post {
    margin-bottom: 10px;
}

.tf-posts.no-carousel.style-layout2 .blog-post .content .title {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 8px;
}

.tf-posts.no-carousel.style-layout2 .item.last-post .content {
    background: var(--theme-accent-color);
    padding: 30px 20px 22px 30px;
}

.tf-posts.no-carousel.style-layout2 .item.last-post .content .icon {
    font-size: 28px;
    margin-bottom: 25px;
}

.tf-posts.no-carousel.style-layout2 .item.last-post .content .icon i {
    display: block;
}

.tf-posts.no-carousel.style-layout2 .item.last-post .content .title {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 8px;
}

.tf-posts.no-carousel.style-layout2 .item.last-post .content .author {
    font-weight: 600;
font-size: 14px;
line-height: 21px;
color: #4F5955;
}

/* Carousel  */
.tf-posts.has-carousel .owl-nav .owl-prev,
.tf-posts.has-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 5px;
    color: #fff;
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tf-posts.has-carousel .owl-nav {
    position: absolute;
}

.tf-posts .owl-carousel .owl-nav .owl-next,
.tf-posts .owl-carousel .owl-nav .owl-prev {
    border: 3px solid #e8e8e9;
}

.tf-posts.has-carousel .owl-nav .owl-next {
    left: unset;
    right: 0;
}

.tf-posts.has-carousel .owl-nav .owl-prev:before,
.tf-posts.has-carousel .owl-nav .owl-next:before,
.tf-posts.has-carousel .owl-dots .owl-dot:before {
    display: none;
}

.tf-posts.has-carousel.no-arrow .owl-nav .owl-prev,
.tf-posts.has-carousel.no-arrow .owl-nav .owl-next {
    display: none;
}

.tf-posts.has-carousel.has-arrow .owl-nav .owl-prev,
.tf-posts.has-carousel.has-arrow .owl-nav .owl-next {
    display: block;
}

.tf-posts .owl-dots {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tf-posts .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: var(--theme-primary-color);
    display: inline-block;
    margin: 0 5px;
}

.tf-posts.has-carousel.no-bullets .owl-dots {
    display: none;
}

.tf-posts.has-carousel.has-bullets .owl-dots {
    display: block;
}

.tf-posts.style1 .owl-carousel .owl-dots .owl-dot span::after {
    width: 40px;
    height: 40px;
}

.tf-posts.style1 .owl-dots .owl-dot {
    margin: 0 15px;
}

/* style 2 */

.tf-posts.style2 .blog-post {
    display: flex;
}

.tf-posts.style2 .blog-post .featured-post,
.tf-posts.style2 .blog-post .content {
    width: 50%;
}

.tf-posts.style2 .blog-post .content {
    padding: 25px 20px 18px 20px;
}

.tf-posts.style2 .blog-post .featured-post img {
    height: 290px;
}

.tf-posts.style2 .blog-post .content h2 {
    font-weight: 700;
font-size: 22px;
line-height: 33px;
margin-bottom: 4px;
}

.tf-posts.style2 .blog-post .content .post-meta-time a,
.tf-posts.style2 .blog-post .content .post-meta-author a,
.tf-posts.style2 .blog-post .content .post-meta-comment a {
    font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #9C9EA6;
}

.tf-posts.style2 .blog-post .content .post-meta-time a i {
    margin-right: 2px;
}

.tf-posts.style2 .blog-post .content .meta-post {
    margin-bottom: 12px;
}

.tf-posts.style2 .blog-post .content .meta-post div:not(:last-child) {
    margin-bottom: 5px;
}

.tf-posts.style2 .blog-post .content .description {
    font-weight: 400;
font-size: 14px;
line-height: 24px;
margin-bottom: 13px;
}

.tf-posts.style2 .blog-post .content .tf-button-container a {
    font-weight: 600;
font-size: 14px;
}

.tf-posts.style2 .blog-post .content .tf-button-container a i {
    color: var(--theme-secondary-color);
    font-size: 10px;
    margin-left: 7px;
    display: inline-block;
}

@media (max-width: 991px) {
    .tf-posts.no-carousel.tablet-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-posts.no-carousel.tablet-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-posts.no-carousel.tablet-column-3 .item {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .tf-posts.no-carousel.tablet-column-3 {
        column-count: 3 !important;
        width: unset;
    }

    .tf-posts.no-carousel.tablet-column-2 {
        column-count: 2 !important;
        width: unset;

    }

    .tf-posts.no-carousel.tablet-column-1 {
        column-count: 1 !important;
        width: unset;

    }

    .tf-posts.style1 .blog-post .content {
        margin-right: 0px;
        margin-top: 0px;
    }
    .tf-posts.style4 .blog-post .content {
        padding: 30px 15px 37px 15px;
    }
}

@media (max-width: 767px) {
    .tf-posts.no-carousel.mobile-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-posts.no-carousel.mobile-column-2 {
        column-count: 2 !important;
    }

    .tf-posts.no-carousel.mobile-column-1 {
        column-count: 1 !important;
    }

    .tf-posts.style1 .blog-post.wg-post-1 {
        padding: 20px;
    }
    .tf-posts.style1 .blog-post.wg-post-1 .featured-post {
        padding-left: 15px;
    }

    .tf-posts.no-carousel.mobile-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-posts.style4 .blog-post .content {
        padding: 30px 30px 37px 30px;
    }
    .tf-portfolio-wrap .owl-dots {
        display: none !important;
    }
    .tf-posts.style2 .blog-post {
        display: block;
    }
     .tf-posts.style2 .blog-post .featured-post,
      .tf-posts.style2 .blog-post .content {
        width: 100%;
    }
}