/*
Plugin Name: Digilink Assistance
Plugin URI: https://omanthemes.com/digilink/wp/
Description: Assistance plugin for all Digilink Assistance.
Version: 1.0
Author: THEMEWAR
Author URI: https://themeforest.net/user/themewar
License:
Text Domain: themewar
 */
/*==================================
    [Table of contents]
===================================
    01. Image
    02. Hero Section
    03. Themewar Editor
    04. Animated Heading Animation 
    05. Themewar Image Morphing
    06. Themewar Marquee Text
    07. Themewar Icon Boxes
    08. Blog Post
    09. Team
    10. Folio
    11. Case Study TAb
    12. Accordion
    13. Testimonial
    14. Clients Slider
    15. Chart Item    
    16. Service Item
    17. Service List
    18. Post Feature Image
    19. About Tab
    20. Process Step
    21. Instagram Carousel
    22. Skill / Progress Bar
    23. Pricing Table
    24. Funfact
    25. Circle Progress Bar
    26. Video Image
    27. Animated Video Image
    28. Video Button
    29. Contact Form
    30. Image Carousel
    31. Map Section
    32. Mailchimp 4WP
    33. Tw Nav Menu
    34. Tw Nav Showcase
    35. History List
    36. Post Meta
    37. BlockQuote
    38. Awards Widget
    39. Post Tags
    40. Social Share
    41. Post Pagination
    42. All Sidebar Widgets
    43. All Footer Widgets
    44. Shape Image
    45. List Icon
    46. Experience Card


/*-----------------------------------------
/  01. Image
/-----------------------------------------*/
.themeWar_image{
    position: relative;
}
.themeWar_image img {
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
}
.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}
.reveal.reveal__overlay {
    background-color: var(--tw-primary-color);
}
.reveal img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.reveal__clip__vert {
    -webkit-clip-path: url(#clip-vert);
            clip-path: url(#clip-vert);
}
.reveal__clip__simple {
    -webkit-clip-path: url(#clip-simple);
            clip-path: url(#clip-simple);
}
.themeWar_image_normal {
    -webkit-mask-size: cover;
    mask-size: cover;
}

/*-----------------------------------------
/  02. Hero Section
/-----------------------------------------*/
.tw_hero01 {
    padding: 252px 0 95px;
    background-color: #0a0a0a;
    background-image: url(../images/hero-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.tw_hero_title {
    font-size: 10.6vw;
    text-transform: uppercase;
    color: var(--tw-white-color);
    line-height: 0.85;
    letter-spacing: -3px;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tw_hero_title span.tw_reveal_text {
    display: block;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    margin: 0 -10px;
}
.tw_hero_title span.tw_reveal_text2{
    margin:-53px -10px 0;
}
.tw_hero_float_item.tw_users_review{
    top: -58px;
    left: -7px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
}
.tw_hero_float_item .tw_star{
    position: relative;
    width: 68px;
    height: 68px;
    margin-right: 5px;
}
.tw_users_review .user_avatars img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: -9px;
}
.tw_hero_float_item .tw_star svg{
    width: 68px;
    height: auto;
}
.tw_hero_float_item .tw_star svg path{
    fill: inherit;
}
.tw_users_review .user_avatars_count{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: -9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #111111;
    background-color: var(--tw-primary-color);

}
.text-spacial{
    color: var(--tw-primary-color);
}
.hero_funfact{
    margin-left: 23px;
}
.hero_funfact span:first-child{
    font-size: 16px;
    line-height: 29px;
    color: #FFFFFF;
}
.hero_funfact span:last-child{
    font-size: 16px;
    line-height: 29px;
    color: #FFFFFF;
}

/* Glassmorphism for user review pill */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(30, 30, 30, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.tw_hero_float_item {
    z-index: 3;
    pointer-events: none;
}
.tw_torus_shape {
    margin: 0 0 0 -42px;
    top: -20px;
    position: relative;
}
.tw_hero_float_item img{
    max-width: 233px;
}

.tw_users_review {
    pointer-events: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.tw_users_review:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}

/* Animations for floating shapes */
@-webkit-keyframes floatY {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(0deg);
                transform: translateY(0) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-20px) rotate(2deg);
                transform: translateY(-20px) rotate(2deg);
    }
}
@keyframes floatY {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(0deg);
                transform: translateY(0) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-20px) rotate(2deg);
                transform: translateY(-20px) rotate(2deg);
    }
}

@-webkit-keyframes floatX {

    0%,
    100% {
        -webkit-transform: translateX(0) rotate(-10deg);
                transform: translateX(0) rotate(-10deg);
    }

    50% {
        -webkit-transform: translateX(15px) rotate(-8deg);
                transform: translateX(15px) rotate(-8deg);
    }
}

@keyframes floatX {

    0%,
    100% {
        -webkit-transform: translateX(0) rotate(-10deg);
                transform: translateX(0) rotate(-10deg);
    }

    50% {
        -webkit-transform: translateX(15px) rotate(-8deg);
                transform: translateX(15px) rotate(-8deg);
    }
}

.tw_torus_shape img {
    -webkit-animation: floatY 6s ease-in-out infinite;
            animation: floatY 6s ease-in-out infinite;
}

.tw_leftImg_shape {
    -webkit-animation: floatX 7s ease-in-out infinite;
            animation: floatX 7s ease-in-out infinite;
}
.tw_loadingImg_shape{
    margin-left: -60px;
}
.tw_hero_arrow svg {
    -webkit-filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}
.tw_leftImg_shape{
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 243px auto;
    margin-right: -24px;
}
.tw_leftImg_shape img{
    max-width: 243px;
}

.star_burst {
    -webkit-animation: pulse 7s infinite;
            animation: pulse 7s infinite;
}

.tw_hero_desc {
    position: relative;
    text-align: left;
    max-width: 770px;
    margin:-41px 70px 0 auto;
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.tw_hero_desc > div{
    max-width: 108px;
    width: 100%;
    margin-right: 33px;
}
.tw_hero_desc img{
    position: relative;
    top: 9px;
    max-width: 100%;
    width: 100%;
}
.tw_hero_desc p{
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
         
    }

    50% {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        
    }

    50% {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .tw_hero_title {
        font-size: 15vw;
        letter-spacing: -1px;
    }

    .tw_hero_float_item {
        opacity: 0.5;
    }
}

/*-----------------------------------------
/  03. Themewar Editor
/-----------------------------------------*/
.themewart_editor{
    position: relative;
}
.themewart_editor ul{
    margin: 0 0 15px;
    padding: 0;
}
.themewart_editor ul li ul{
    margin: 0;
}
.themewart_editor ul li{
    list-style: none;
    position: relative;
    padding: 0 0 0 25px;
}
.themewart_editor ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 16px;
    height: 16px;
    background-image: url('../images/check-check.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
/*-----------------------------------------
/  04. Animated Heading Animation 
/-----------------------------------------*/
.tw_animatedTitle{
    font-size: 140px;
    line-height: 210px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--tw-secondary-font);
    color: var(--tw-white-color);
}
.tw_animatedTitle.enable_animation h1,
.tw_animatedTitle.enable_animation h2,
.tw_animatedTitle.enable_animation h3,
.tw_animatedTitle.enable_animation h4,
.tw_animatedTitle.enable_animation h5,
.tw_animatedTitle.enable_animation h6{
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}
.tw_animatedTitle.is-animated h1,
.tw_animatedTitle.is-animated h2,
.tw_animatedTitle.is-animated h3,
.tw_animatedTitle.is-animated h4,
.tw_animatedTitle.is-animated h5,
.tw_animatedTitle.is-animated h6{
    opacity: 1;
    
}
/*-----------------------------------------
/  05. Themewar Image Morphing
/-----------------------------------------*/
.themeWarImageMorph{
    position: relative;
}
.themeWarImageMorph svg{
    position: relative;
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    overflow: visible;
}
.themeWarImageMorph .themewar-morph-image{
    height: auto;
    width: 100%;
    max-width: 100%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}


/*-----------------------------------------
/  06. Themewar Marquee Text
/-----------------------------------------*/
.marqueeWrap{
    position: relative;
    max-width: 100vw;
    overflow: hidden;
}
.marquee{
    --animdur: 10s;
    --animn: marqueeLoop;
    position: relative;
    white-space: nowrap;
    will-change: transform;
    display: -webkit-box;
}
.marquee div{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.marquee div a{
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    color: #111111;
}
.marquee div span{
    position: relative;
    line-height: 1;
    font-size: 26px;
    color: #111111;
    fill: #111111;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 30px 0 30px;
}
.marquee div span svg{
    width: 26px;
    height: 26px;
    fill: inherit;
}
.marquee div span svg path{
    fill: inherit;
}
.marquee:hover[data-marqueeanim] {
    --animps: paused;
}
[data-marqueeanim] {
    -webkit-animation: var(--animn, none) var(--animdur, 0s) var(--animtf, linear) var(--animic, infinite) var(--animps, running);
    animation: var(--animn, none) var(--animdur, 0s) var(--animtf, linear) var(--animic, infinite) var(--animps, running);
}
@-webkit-keyframes marqueeLoop {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}
@keyframes marqueeLoop {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

/*-----------------------------------------
/  07. Themewar Icon Boxes
/-----------------------------------------*/
/* ================== Icon Box 01 =============== */
.themeWarIconBox01{
    position: relative;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}
.themeWarIconBox01 h3 {
    font-size: 26px;
    line-height: 36px;
    color: var(--tw-heading-color);
    margin-bottom: 39px;
}
.themeWarIconBox01 h3 a {
    color: inherit;
}
.themeWarIconBox01 h3 a:hover {
    color: var(--tw-primary-color);
}
.themeWarIconBox01Img{
    position: relative;
    border-radius: 20px;
    margin-bottom: 23px;
    overflow: hidden;
}
.themeWarIconBox01Img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}
.themeWarIconBox01Img:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: rgba(28, 39, 52, 50%);
}
.themeWarIconBoxIcon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}
.themeWarIconBoxIcon i{
    color: inherit;
}
.themeWarIconBoxIcon svg{
    fill: inherit;
}
.themeWarIconBoxIcon svg path{
    fill: inherit;
}
.themeWarIconBox01 .tw_iconBoxInnerI {
    width: 50px;
    height: 50px;
    background: var(--tw-primary-color);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #FFF;
}
.themeWarIconBox01.icon_position_top .tw_iconBoxInnerI{
    margin-bottom: 22px;
}
.themeWarIconBox01 .tw_iconBoxInnerI svg{
    width: 18px;
    height: 18px;
}
.themeWarIconBox01 p {
    margin-bottom: 23px;
}
.themeWarIconBox01.icon_position_top p{
    margin: 0;
}


/* ================== Icon Box 02 =============== */
.themeWarIconBox02{
    position: relative;
    padding: 18px 42px 40px 33px;
    background-color: #0A0A0A;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}
.themeWarIconBox02:hover{
    background: url(../images/bg/1.jpg) no-repeat center center / cover;
}
.themeWarIconBox02 .tw_iconBoxInnerI {
    margin: 0 0 80px;
    color: var(--tw-heading-color);
}
.themeWarIconBox02 .tw_iconBoxInnerI > *{
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.themeWarIconBox02 .tw_iconBoxInnerI i {
    font-size: 120px;
    color: inherit;
}
.themeWarIconBox02 .tw_iconBoxInnerI svg {
    width: 120px;
    height: 120px;
    fill: inherit;
}
.themeWarIconBox02 .tw_iconBoxInnerI svg path{
    fill: inherit;
    stroke: inherit;
}
.themeWarIconBox02:hover .tw_iconBoxInnerI {
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}

.themeWarIconBox02 h3 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    color: var(--tw-heading-color);
    margin: 0 0 14px;
    text-transform: uppercase;
}
.themeWarIconBox02:hover h3{
    color: var(--tw-white-color);
}
.themeWarIconBox02 h3 a{
    color: inherit;
}
.themeWarIconBox02 h3 a:hover{
    color: var(--tw-primary-color);
}
.themeWarIconBox02 p{
    margin: 0 0 14px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}
.themeWarIconBox02:hover p{
    color: var(--tw-white-color);
}
.themeWarIconBox02:hover .themeWarLink{
    color: var(--tw-white-color);
}
.themeWarIconBox02:hover .themeWarLink:hover{
    color: var(--tw-primary-color);
}
.tw_iconboxIconHoverShape,
.tw_iconboxIconShape{
    position: absolute;
    top:57px;
    right:42px;
    width: 111px;
    height: 111px;
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}
.tw_iconboxIconHoverShape{
    opacity: 0;
    visibility: hidden;
    z-index: -2;
}
.themeWarIconBox02:hover .tw_iconboxIconHoverShape{
    opacity: 1;
    
    visibility: visible;
    z-index: 1;
}
.themeWarIconBox02:hover .tw_iconboxtw_iconboxIconShapeIconHoverShape{
    opacity: 0;
    visibility: hidden;
    z-index: -2;
}



/* ================== Icon Box 03 =============== */
.themeWarIconBox03{
    position: relative;
}
.themeWarIconBox03Img{
    position: relative;
    border-radius: 30px;
}
.elementor .themeWarIconBox03Img img,
.themeWarIconBox03Img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: inherit;
}
.themeWarIconBox03Cnt{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0px;
    left:0px;
    background: transparent;
    padding: 40px 24px 29px 37px;
}
.tw_iconBoxItemSerial{
    font-size: 96px;
    line-height: 1;
    font-family: var(--tw-primary-font);
    color: var(--tw-white-color);
    -webkit-text-fill-color: transparent; 
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--tw-white-color);
}
.themeWarIconBox03Cnt h3{
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    color: var(--tw-white-color);
    font-family: var(--tw-heading-font);
    margin: 0;
    text-transform: uppercase;
}
.themeWarIconBox03Cnt .themeWarLink{
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}

/* ================== Icon Box 04 =============== */
.tw_iconBoxInnerI{
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
    margin: 0 0 60px;
}
.tw_iconBoxInnerI i{
    font-size: 100px;
    color: inherit;
}
.tw_iconBoxInnerI svg{
    height: 100px;
    fill: inherit;
}
.tw_iconBoxInnerI svg path{
    fill: inherit;
    stroke: inherit;
}
.themeWarIconBox04 {
    position: relative;
    padding: 58px 59px 62px 51px;
    border-radius: 0;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.themeWarIconBox04 h3{
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    font-family: var(--tw-heading-font);
    color: var(--tw-heading-color);
    margin: 0 0 14px;
    text-transform: uppercase;
}
.themeWarIconBox04 p{
    font-size: 18px;
    line-height: 36px;
    color: var(--tw-body-color);
    margin: 0;
}

.themeWarLink.hiddenLine:after{
    display: none;
}

/* ================== Icon Box 05 =============== */
.themeWarIconBox05{
    position: relative;
    box-sizing: border-box;
    background: #111111;
    border: 1px solid #2B2B2B;
    padding: 58px 59px 69px 51px;
}
.themeWarIconBox05 .tw_iconBoxInnerI{
    font-size: 80px;
    margin: 0 0 52px;
}
.themeWarIconBox05 .tw_iconBoxInnerI i{
    font-size: inherit;
    color: inherit;
}
.themeWarIconBox05 .tw_iconBoxInnerI svg{
    width: 80px;
    height: 80px;
    fill: inherit;
}
.themeWarIconBox05 h3{
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
    color: #F5F7F5;
    font-family: var(--tw-heading-font);
    margin: 0 0 72px;
    text-transform: capitalize;
    position: relative;
}
.themeWarIconBox05 h3:after {
    position: absolute;
    bottom: -12px;
    content: "";
    width: 60px;
    height: 1px;
    background: #FFF;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.themeWarIconBox05 p{
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    text-align: start;
    color: #A1A1A1;
    margin: 0;
}
.themeWarIconBox05 h3,
.themeWarIconBox05 p{
    text-align: inherit;
}


/*-----------------------------------------
/  08. Blog Post
/-----------------------------------------*/
/* ================== Blog Style 01 =============== */
.blogPostItem01 {
    position: relative;
    background: var(--tw-white-color);
    box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.03);
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;

}

.blogPostItem01:hover {
    background: #1C2734;
}

.bpi_thumb {
    margin: 0 12px;
    text-align: center;
    overflow: hidden;
}

.blogPostItem01 .bpi_thumb {
    border-radius: 0;
    overflow: hidden;
    margin: 0 20px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.blogPostItem01 .bpi_thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.elementor .bpi_thumb img,
.bpi_thumb img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.blogPostItem01:hover .bpi_thumb img,
.blogPostItem02:hover .bpi_thumb img {
    -webkit-transform: scale(1.07) rotate(-3deg);
        transform: scale(1.07) rotate(-3deg);
}

.bpi_details {
    position: relative;
    padding: 23px 18px 21px 28px;
}

.bpi_details .bpi_meta {
    position: relative;
    font-size: 14px;
    color: var(--tw-body-color);
    line-height: 26px;
    text-transform: capitalize;
    margin: 0 0 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
}

.bpi_details .bpi_meta:not(:first-child) {
    margin-bottom: 0 !important;
}

.bpi_details .bpi_meta>* {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
    color: var(--tw-body-color);
}

.bpi_details .bpi_meta>* i,
.bpi_details .bpi_meta>* svg {
    font-size: 12px;
    height: 12px;
    color: rgba(28, 39, 52, 20%);
    fill: rgba(28, 39, 52, 20%);
    width: auto;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.bpi_details .bpi_meta>* a {
    color: inherit;
}

.bpi_details .bpi_meta>a:hover,
.bpi_details .bpi_meta>* a:hover {
    color: var(--tw-primary-color);
}

.blogPostItem01 .bpi_details .bpi_meta>a:hover,
.blogPostItem01 .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-primary-color);
}

.bpi_details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin: 0 0;
}

.bpi_details h3 a {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}

.blogPostItem01 .bpi_details p {
    margin: 12px 0 0;
}

.bpi_details h3 a:hover {
    color: var(--tw-primary-color);
}

.blogPostItem01 .bpi_details h3 a:hover {
    color: var(--tw-primary-color);
}

.blog01_linkWrap {
    padding: 13px 29px 14px;
    background: rgba(28, 39, 52, 2%);
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
    color: var(--tw-heading-color);
}
.blog01_linkWrap a{
    color: inherit;
    -webkit-transition: unset;
    transition: unset;
}
.blog01_linkWrap a i{
    color: inherit;
}
.blog01_linkWrap a svg{
    fill: var(--tw-heading-color)''
}

.blogPostItem01:hover .blog01_linkWrap {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tw-white-color);
}

.blogPostItem01:hover .blog01_linkWrap svg {
    fill: var(--tw-white-color);
}

.blogPostItem01:hover .digilinkLink {
    color: var(--tw-white-color);
}
.blogPostItem01:hover .digilinkLink:hover{
    color: var(--tw-primary-color);
}
.blogPostItem01:hover .digilinkLink:hover svg{
    fill: var(--tw-primary-color);
    stroke: var(--tw-primary-color);
}
.blogPostItem01:hover .bpi_details h3 {
    color: var(--tw-white-color);
}

.blogPostItem01:hover .bpi_details .bpi_meta>* {
    color: rgba(255, 255, 255, 0.7);
}

.blogPostItem01:hover .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-primary-color);
}

.blogPostItem01:hover .bpi_details .bpi_meta>* i,
.blogPostItem01:hover .bpi_details .bpi_meta>* svg {
    color: rgba(255, 255, 255, 0.2);
    fill: rgba(255, 255, 255, 0.2);
    stroke: rgba(255, 255, 255, 0.2);
}


/* ================== Blog Style 02 =============== */
.blogPostItem02 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.blogPostItem02 .bpi_thumb {
    margin: 0;
    overflow: hidden;
}

.blogPostItem02 .bpi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1.12);
        transform: scale(1.12);
}

.blogPostItem02:hover .bpi_thumb img {
    -webkit-transform: scale(1);
        transform: scale(1);
}

.bpi02_details_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bpi02_details_wrap:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 39, 52, .5);
    z-index: -1;
}
.blogPostItem02:hover .bpi02_details_wrap:after{
    background: rgba(28, 39, 52, .8);
}

.blogPostItem02 .bpi_details {
    padding: 23px 30px 0px;
    position: absolute;
    top: 0px;
    bottom: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100% - 41px);
    overflow: hidden;
}

.blogPostItem02 .bpi_details .bpi_meta {
    position: relative;
    font-size: 14px;
    color: var(--tw-white-color);
    line-height: 26px;
    text-transform: capitalize;
    margin: 0 0 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 66px;
       -moz-column-gap: 66px;
            column-gap: 66px;
    opacity: 0;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem02 .bpi_details .bpi_meta>* {
    color: rgba(255, 255, 255, 0.7);
}

.blogPostItem02 .bpi_details .bpi_meta>* i,
.blogPostItem02 .bpi_details .bpi_meta>* svg {
    color: rgba(255, 255, 255, 1);
    fill: rgba(255, 255, 255, 1);
}

.blogPostItem02:hover .bpi_details .bpi_meta {
    opacity: 1;
    
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.bpi02_dtHv_cnt {
    -webkit-transition: -webkit-transform 300ms;
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
    transition: transform 300ms, -webkit-transform 300ms;
    -webkit-transform: translate3d(0, calc(100% - 4.28rem), 0);
            transform: translate3d(0, calc(100% - 4.28rem), 0);
}

.blogPostItem02:hover .bpi02_dtHv_cnt {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.blogPostItem02 .bpi_details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--tw-white-color);
    position: relative;
}

.blogPostItem02 .bpi_details p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin: 4px 0 33px;
}

.blogPostItem02 .digilinkLink {
    color: var(--tw-white-color);
}

.blog02_linkWrap {
    padding: 13px 29px 14px;
    background: rgba(28, 39, 52, 2%);
    border-radius: 0px 0px 20px 20px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
    position: absolute;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    color: var(--tw-white-color);
}

.blogPostItem02:hover .blog02_linkWrap {
    padding: 13px 29px 13px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    bottom: 0px;
    opacity: 1;
    
    visibility: visible;

}
.blog02_linkWrap a{
    color: inherit;
}
.blog02_linkWrap a:hover{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
    stroke: var(--tw-primary-color);
}
.blog02_linkWrap a:hover svg{
    fill: inherit;
    stroke: inherit;
}

.blogPostItem02:hover .blog02_linkWrap svg {
    fill: var(--tw-white-color);
}

.blogPostItem02:hover .digilinkLink {
    color: var(--tw-white-color);
}


/* ================== Blog Style 03 =============== */
.blogPostItem03 .bpi_thumb {
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.blogPostItem03 .bpi_thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem03 .bpi_details {
    padding: 23px 0 21px;
}

.blogPostItem03 .bpi_thumb img {
    -webkit-transform: translate3d(0, -10px, 0), scale(1.1, 1.1);
    transform: translate3d(0, -10px, 0), scale(1.1, 1.1);
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    transition: opacity .35s, transform .35s, -webkit-transform .35s;
}

.blogPostItem03:hover .bpi_thumb img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0) scale(1.13, 1.13);
    -webkit-transition-delay: .15s;
       transition-delay: .15s;
}

.blogPostItem03 .bpi_details .bpi_meta {
    margin-bottom: 14px;
    -webkit-column-gap: 66px;
       -moz-column-gap: 66px;
            column-gap: 66px;
}

.blogPostItem03 .bpi_details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin: 0;
}

.blogPostItem03 .bpi_details p {
    margin: 12px 0 0;
}

.blog03_linkWrap {
    border-top: 1px solid var(--tw-border-color);
    padding: 19px 0 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--tw-heading-color);
}
.blog03_linkWrap a{
    color: inherit;
    fill: inherit;
}
.blog03_linkWrap a svg{
    fill: inherit;
}
.blog03_linkWrap a:hover{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}

.blog03_linkWrap a:hover svg{
    fill: inherit;
}
.blogPostItem03:hover .bpi_thumb:after {
    opacity: .15;
}

.blogPostItem03 .bpi_thumb:hover:after {
    z-index: -1;
}

/* ================== Blog Style 04 =============== */
.blogPostItem04 .bpi_thumb {
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.blogPostItem04 .bpi_thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem04 .bpi_details {
    padding: 23px 0 0px;
}

.blogPostItem04 .bpi_details .bpi_meta {
    margin-bottom: 15px;
    -webkit-column-gap: 49px;
       -moz-column-gap: 49px;
            column-gap: 49px;
}

.blogPostItem04 .bpi_details .bpi_meta>*,
.blogPostItem04 .bpi_details .bpi_meta>* i,
.blogPostItem04 .bpi_details .bpi_meta>* svg {
    color: rgba(255, 255, 255, 0.7);
    fill: var(--tw-border-w-color);
}

.blogGridRow .blogPostItem04 .bpi_details .bpi_meta>*,
.blogGridRow .blogPostItem04 .bpi_details .bpi_meta>* i,
.blogGridRow .blogPostItem04 .bpi_details .bpi_meta>* svg {
    color: rgba(0, 0, 0, 0.7);
    fill: var(--tw-border-color);
}

.blogPostItem04 .bpi_details h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    color: var(--tw-white-color);
    font-family: var(--tw-heading-font);
}

.blogGridRow .blogPostItem04 .bpi_details h3 {
    color: var(--tw-heading-color);
}

.blogGridRow .blogPostItem04 .bpi_details p {
    margin: 12px 0 0;
}

.blogPostItem04 .bpi_details .bpi_meta>a:hover,
.blogPostItem04 .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-white-color);
}

.blogGridRow .blogPostItem04 .bpi_details .bpi_meta>a:hover,
.blogGridRow .blogPostItem04 .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-secondary-color);
}

.blog04_linkWrap {
    border-top: 1px solid var(--tw-border-w-color);
    padding: 19px 0 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 21px 0 0;
}

.blogPostItem04 .bpi_details .bpi_meta>* svg {
    height: 1px;
}

.blog04_linkWrap .digilinkLink {
    color: var(--tw-white-color);
}

.blog04_linkWrap .digilinkLink i,
.blog04_linkWrap .digilinkLink svg {
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}

.blogGridRow .blog04_linkWrap .digilinkLink {
    color: var(--tw-heading-color);
}

.blogGridRow .blog04_linkWrap .digilinkLink i,
.blogGridRow .blog04_linkWrap .digilinkLink svg {
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
}

.blogPostItem04 .bpi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1.08);
        transform: scale(1.08);
}

.blogPostItem04:hover .bpi_thumb img {
    -webkit-transform: scale(1);
        transform: scale(1);
}

.blogPostItem04:hover .bpi_thumb:after {
    opacity: .15;
}

.blogPostItem04 .bpi_thumb:hover:after {
    z-index: -1;
}

/* ================== Blog Style 05 =============== */
.blogPostItem05 {
    position: relative;
    overflow: hidden;
}

.blogPostItem05 .bpi_thumb {
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.blogPostItem05 .bpi_thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.bpi05_details_wrap {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: auto;
    z-index: 3;
}

.blogPostItem05 .bpi_details {
    padding: 39px 49px 39px;
}

.blogPostItem05 .bpi_details .bpi_meta {
    margin-bottom: 15px;
    -webkit-column-gap: 49px;
       -moz-column-gap: 49px;
            column-gap: 49px;
}

.blogPostItem05 .bpi_details .bpi_meta>*,
.blogPostItem05 .bpi_details .bpi_meta>* i,
.blogPostItem05 .bpi_details .bpi_meta>* svg {
    color: var(--tw-white-color);
    fill: rgba(255, 255, 255, 0.3);
}

.blogPostItem05 .bpi_details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--tw-white-color);
}

.blogPostItem05 .bpi_details p {
    color: var(--tw-white-color);
    margin: 12px 0 0;
}

.blogPostItem05 .bpi_details .bpi_meta>a:hover,
.blogPostItem05 .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-primary-color);
}

.blogPostItem05 .bpi_details .bpi_meta>* svg {
    height: 1px;
}

.blogPostItem05 .bpi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1.08);
        transform: scale(1.08);
}

.blogPostItem05:hover .bpi_thumb img {
    -webkit-transform: scale(1);
        transform: scale(1);
}

.blogPostItem05:hover .bpi_thumb:after {
    opacity: .4;
}


/* ================== Blog Style 06 =============== */
.blogPostItem06 .bpi_thumb {
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.blogPostItem06 .bpi_thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem06 .bpi_details {
    padding: 23px 0 0px;
}

.blogPostItem06 .bpi_details .bpi_meta {
    margin-bottom: 15px;
    -webkit-column-gap: 49px;
       -moz-column-gap: 49px;
            column-gap: 49px;
}

.blogPostItem06 .bpi_details .bpi_meta>*,
.blogPostItem06 .bpi_details .bpi_meta>* i,
.blogPostItem06 .bpi_details .bpi_meta>* svg {
    color: var(--tw-body-color);
    fill: var(--tw-body-color);
}

.blogPostItem06 .bpi_details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
}

.blogGridRow .blogPostItem06 .bpi_details p {
    margin: 12px 0 0;
}

.blogPostItem06 .bpi_details .bpi_meta>a:hover,
.blogPostItem06 .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-primary-color);
}

.blog06_linkWrap {
    margin: 38px 0 0;
}

.blogPostItem06 .bpi_details .bpi_meta>* svg {
    height: 1px;
}

.blog06_linkWrap .digilinkLink {
    color: var(--tw-heading-color);
    border: 1px solid var(--tw-border-color);
    padding: 18px 51px 18px;
    border-radius: 100px;
}
.blog06_linkWrap .digilinkLink a{
    color: inherit;
}
.blog06_linkWrap .digilinkLink:hover{
    border-color: var(--tw-primary-color);
    color: var(--tw-primary-color);
}
.blog06_linkWrap .digilinkLink i,
.blog06_linkWrap .digilinkLink svg {
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
}
.blog06_linkWrap .digilinkLink:hover i,
.blog06_linkWrap .digilinkLink:hover svg{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}

.blogPostItem06 .bpi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1.05, 1);
        transform: scale(1.05, 1);
}

.blogPostItem06:hover .bpi_thumb img {
    -webkit-transform: scale(1, 1.05);
        transform: scale(1, 1.05);
}

.blogPostItem06:hover .bpi_thumb:after {
    opacity: .15;
}

.blogPostItem06 .bpi_thumb:hover:after {
    z-index: -1;
}

/* ================== Blog Style 07 =============== */
.blogPostItem07 {
    position: relative;
}

.blogPostItem07 .bpi_thumb {
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.blogPostItem07 .bpi_thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem07 .bpi_details {
    padding: 13px 22px 13px;
    height: 100%;
}

.blogPostItem07 .bpi_details .bpi_meta {
    margin-bottom: 14px;
    -webkit-column-gap: 49px;
       -moz-column-gap: 49px;
            column-gap: 49px;
}

.blogPostItem07 .bpi_details .bpi_meta>*,
.blogPostItem07 .bpi_details .bpi_meta>* i,
.blogPostItem07 .bpi_details .bpi_meta>* svg {
    color: var(--tw-body-color);
    fill: var(--tw-border-color);
}

.blogPostItem07 .bpi_details h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
    margin: 0 0 10px;
}

.blogPostItem07 .bpi_details h3 a {
    font-size: inherit;
}

.blogPostItem07 .bpi_details .bpi_meta>a:hover,
.blogPostItem07 .bpi_details .bpi_meta>* a:hover {
    color: var(--tw-primary-color);
}

.blogPostItem07 .bpi_details .bpi_meta>* svg {
    height: 1px;
}

.blogPostItem07 .bpi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem07:hover .bpi_thumb img {
    -webkit-transform: scale(1.08);
        transform: scale(1.08);
}

.blogPostItem07:hover .bpi_thumb:after {
    opacity: .15;
}

.blogPostItem07 .bpi_thumb:hover:after {
    z-index: -1;
}

/* ================== Blog Style 08 =============== */
.blogPostItem08 {
    position: relative;
    overflow: hidden;
}

.blogPostItem08 .bpi_thumb {
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.blogPostItem08 .bpi_details {
    padding: 20px 35px 20px 0;
    height: 100%;
}
.blogPostItem08 .bpi_details .bpi_meta {
    margin-bottom: 13px;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
}
.blogPostItem08 .bpi_details .bpi_meta>*{
    font-size: 12px;
    font-weight: 400;
    color: #929292;
    line-height: 18px;
    text-transform: uppercase;
    font-family: var(--tw-primary-font);
}
.blogPostItem08 .bpi_details .bpi_meta > a{
    font-size: 10px;
    line-height: 18px;
    color: var(--tw-white-color);
    background: var(--tw-primary-color);
    padding: 7px 20px;
    border-radius: 30px;
}
.blogPostItem08 .bpi_details .bpi_meta > a:hover{
    background: #000;
    color: #FFF;
}
.blogPostItem08 .bpi_details .bpi_comments{
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: #929292;
    line-height: 18px;
    font-family: var(--tw-primary-font);
    margin-left: 6px;
}
.blogPostItem08 .bpi_details .bpi_comments a{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.blogPostItem08 .bpi_details .bpi_meta>*,
.blogPostItem08 .bpi_details .bpi_meta>* i,
.blogPostItem08 .bpi_details .bpi_meta>* svg {
    color: #929292;
    fill: #929292;
}
.blogPostItem08 .bpi_comments:after{
    position: absolute;
    content: "";
    left: -13.5px;
    right: auto;
    width: 4px;
    height: 4px;
    top: 50%;
    background: #929292;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.blogPostItem08 .bpi_details h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
    margin: 0 0 10px;
    font-family: var(--tw-heading-font);
}
.blogPostItem08 .bpi_details P{
    font-size: 16px;
    line-height: 24px;
}

.blogPostItem08 .bpi_details .bpi_meta>* svg {
    height: 1px;
}

.blogPostItem08 .bpi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.blogPostItem08:hover .bpi_thumb img {
    -webkit-transform: scale(1.08);
        transform: scale(1.08);
}

.blogPostItem08:hover .bpi_thumb:after {
    opacity: .15;
}

.blogPostItem08 .bpi_thumb:hover:after {
    z-index: -1;
}
.blog08_linkWrap .digilinkLink{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    font-family: var(--tw-primary-font);
    color: var(--tw-heading-color);
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 3px;
    position: relative;
}
.blog08_linkWrap .digilinkLink i,
.blog08_linkWrap .digilinkLink svg{
    margin:0 2px 0 13px;
    color: inherit;
    fill: var(--tw-heading-color);
}
.blog08_linkWrap .digilinkLink:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left:0;
    bottom: 0;
    background: var(--tw-primary-color);
}
.blog08_linkWrap .digilinkLink:hover{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}
.blog08_linkWrap .digilinkLink:hover i,
.blog08_linkWrap .digilinkLink:hover svg{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}
.blog08_linkWrap .digilinkLink:hover:after{
    background: var(--tw-heading-color);
}
.blog08_linkWrap .digilinkLink svg {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.blog08_linkWrap .digilinkLink svg path{
    stroke: inherit;
    fill: inherit;
}

/* ================== Blog Style 09 =============== */
.blogPostItem09 {
    position: relative;
    overflow: hidden;
}

.tw_blog_thumb {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 10px;
}
.tw_blog_thumb_inner{
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
    min-height: 373px;
    border-radius: 10px;
}
.tw_blog_thumb_inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: inherit;
    background-size: cover;
    -o-object-fit: cover;
       object-fit: cover;
}

.tw_blog_thumb_inner img:nth-child(1),
.elementor .tw_blog_thumb_inner img:nth-child(1) {
    -webkit-transform: translatex(50%) scalex(2);
            transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
}
.blogPostItem09:hover .tw_blog_thumb_inner img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    
    -webkit-filter: blur(0);
    filter: blur(0);
}
.blogPostItem09:hover .tw_blog_thumb_inner img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
            transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
}

.tw_blog_cnt {
    padding: 22px 20px;
    background: transparent;
    text-align: center;
}

.tw_blog_cnt .blog_date {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6B7280;
    display: inline-block;
    text-transform: capitalize;
}

.tw_blog_cnt h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: var(--tw-white-color);
    margin: 0;
}

.tw_blog_cnt h2 a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.tw_blog_cnt h2 a:hover {
    color: var(--tw-primary-color);
}
.tw_blog_cnt p{
    margin: 14px 0 0;
    color: #6B7280;
    font-size: 16px;
    line-height: 28px;
}


/*-----------------------------------------
/  09. Team
/-----------------------------------------*/

/* ================== Team Style 01 =============== */
.team_box_01 {
    position: relative;
    overflow: hidden;
}

.tmThumb {
    position: relative;
    overflow: hidden;
}

.tmThumb:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 39, 52, .5);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.tmThumb img {
    -webkit-transform: scale(1.08);
        transform: scale(1.08);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.team_box_01:hover .tmThumb img {
    -webkit-transform: scale(1);
        transform: scale(1);
}

.team_box_01:hover .tmThumb:after {
    opacity: .1;
}

.tmDetails h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
    margin: 0 0 5px;
}
.tmDetails h3 a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}
.tmDetails h3 a:hover{
    color: var(--tw-primary-color);
}
.tmDetails {
    padding: 22px 0 13px;
    background: transparent;
    border-bottom: 1px solid var(--tw-border-color);
}

.tm_ftWrapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.tm_ftWrapp>* {
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
}

.tm_ftWrapp p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tmSocial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.tmSocial a {
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--tw-border-color);
    color: rgba(79, 87, 98, .4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tmSocial a:hover {
    background-color: var(--tw-primary-color);
    border-color: var(--tw-primary-color);
    color: var(--tw-secondary-color);
}

/* ================== Team Style 02 =============== */
.team_box_03 {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tw-border-color);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
}

.team_box_03>* {
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
}

.team_box_03 .tmThumb {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.team_box_03 .tmDetails {
    padding: 0 0 0 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    border: 0;
}

.team_box_03 .tmDetails h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
    margin: 0 0 5px;
}

.team_box_03 .tmDetails p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-body-color);
}

.team_box_03 .tmSocial {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
}

.team_box_03 .tmThumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.team_box_03:hover .tmThumb img {
    -webkit-transform: scale(1.18);
        transform: scale(1.18);
}

/* ================== Team Style 03 =============== */
.team_box_05{
    position: relative;
}
.team_box_05 .tmThumb img {
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale3d(1.07,1.07,1);
            transform: scale3d(1.07,1.07,1);
    border-radius: inherit;
}

.team_box_05:hover .tmThumb img {
    -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
}
.team_box_05 .tmSocial {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding: 11px 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.team_box_05:hover .tmSocial{
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    
    visibility: visible;
}
.team_box_05 .tmSocial a{
    border: unset;
    border-radius: 0;
    font-size: 15px;
    color: var(--tw-white-color);
    background: transparent;
    width:25px;
    height: 25px;
    opacity: 0;
    -webkit-transition: opacity 300ms ease, visibility 300ms ease, background 300ms ease, color 300ms ease, border 300ms ease, -webkit-transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: opacity 300ms ease, visibility 300ms ease, background 300ms ease, color 300ms ease, border 300ms ease, -webkit-transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms ease, visibility 300ms ease, background 300ms ease, color 300ms ease, border 300ms ease;
    transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms ease, visibility 300ms ease, background 300ms ease, color 300ms ease, border 300ms ease, -webkit-transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
}


.team_box_05 .tmSocial a:hover{
    background: transparent;
    color: var(--tw-primary-color);
}
.team_box_05 .tmThumb:after{
    background: rgba(255, 255, 255, .0);
}
.team_box_05:hover .tmSocial a {
    opacity: 1;
    
}
.team_box_05:hover .tmSocial a:nth-child(1) { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; -webkit-transform: translate(0); transform: translate(0); }
.team_box_05:hover .tmSocial a:nth-child(2) { -webkit-transition-delay: 0.4s; transition-delay: 0.4s; -webkit-transform: translate(0); transform: translate(0) }
.team_box_05:hover .tmSocial a:nth-child(3) { -webkit-transition-delay: 0.5s; transition-delay: 0.5s; -webkit-transform: translate(0); transform: translate(0) }
.team_box_05:hover .tmSocial a:nth-child(4) { -webkit-transition-delay: 0.6s; transition-delay: 0.6s; -webkit-transform: translate(0); transform: translate(0) }
.team_box_05:hover .tmSocial a:nth-child(5) { -webkit-transition-delay: 0.7s; transition-delay: 0.7s; -webkit-transform: translate(0); transform: translate(0) }
.team_box_05:hover .tmSocial a:nth-child(6) { -webkit-transition-delay: 0.8s; transition-delay: 0.8s; -webkit-transform: translate(0); transform: translate(0) }
.team_box_05 .tmDetails{
    border: 0;
}
.team_box_05 .tmDetails h3{
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    margin: 0;
}
.team_box_05 .tmDetails p{
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
.team_designation span{
    display: inline-block;
    position: relative;
}

/* ================== Team Style 04 =============== */
.team_row{
    padding: 0 48px;
}
.tw_team_card {
    position: relative;
    overflow: hidden;
}
.team_row [class^="col-"]:nth-child(odd) .tw_team_card,
.team_row [class*=" col-"]:nth-child(odd) .tw_team_card{
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}
.team_row [class^="col-"]:nth-child(even) .tw_team_card,
.team_row [class*=" col-"]:nth-child(even) .tw_team_card{
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    margin-top: 72px;
}
.team_row [class^="col-"]:hover .tw_team_card,
.team_row [class*=" col-"]:hover .tw_team_card{
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    z-index: 2;
}
.tw_team_card .tw_team_img {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 23.5px 21.5px;
    margin-bottom: 18px;
}
.tw_team_card .tw_team_img img {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}
.tw_team_card h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-align: inherit;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 0;
}
.tw_team_card h3 a{
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.tw_team_card h3 a:hover{
    color: var(--tw-primary-color);
}
.tw_team_card p{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: inherit;
    color: #6B7280;
    margin: 0;
}
/*-----------------------------------------
/  10. Folio
/-----------------------------------------*/

/* ================== Folio Style 01 =============== */
.caseStudyItems01 {
    position: relative;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    overflow: hidden;
}

.cspi_thumb {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cspi_thumb:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.cspi_thumb img {
    border-radius: inherit;   
     -webkit-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}
.caseStudyItems01:hover .cspi_thumb img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.caseStudyItems01:hover .cspi_thumb:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 28, 39, 0)), to(rgba(18, 28, 39, 0.8)));
    background: -webkit-linear-gradient(top, rgba(18, 28, 39, 0) 0%, rgba(18, 28, 39, 0.8) 100%);
    background: linear-gradient(180deg, rgba(18, 28, 39, 0) 0%, rgba(18, 28, 39, 0.8) 100%);
}

.cspi_meta {
    position: relative;
    margin: 0 0 21px;
}

.cspi_meta a {
    position: relative;
    display: inline-block;
    font-family: var(--tw-primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding: 2px 20px;
    color: var(--tw-white-color);
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border-radius: 50px;
}

.cspi_meta a:hover {
    color: var(--tw-primary-color);
}

.cspi_details {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 55;
    padding: 30px 30px 43px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

.caseStudyItems01:hover .cspi_details {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
}

.caseStudyItems01 .cspi_meta,
.caseStudyItems01 .cspi_details h3,
.caseStudyItems01 .cspi_details p {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
            transform: translate3d(0, 60px, 0);
    -webkit-transition: opacity 300ms ease, -webkit-transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: opacity 300ms ease, -webkit-transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms ease;
    transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 300ms ease, -webkit-transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    will-change: transform, opacity;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.caseStudyItems01 .cspi_details h3 {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
}

.caseStudyItems01 .cspi_details p {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
}

.caseStudyItems01:hover .cspi_meta,
.caseStudyItems01:hover .cspi_details h3,
.caseStudyItems01:hover .cspi_details p {
    opacity: 1;
    
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.cspi_details h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    color: var(--tw-white-color);
    margin-bottom: 9px;
}

.cspi_details h3 a {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.cspi_details h3 a:hover {
    color: var(--tw-primary-color);
}

.cspi_details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 13px;
    border-top: 1px solid var(--tw-border-w-color);
    margin: 0;
    position: relative;
}

.caseStudyItems01 .cspi_details p:before {
    position: absolute;
    content: "";
    left: 0;
    top: -1px;
    width: 126px;
    height: 1px;
    background: #1C2734;
    z-index: 22;
}

.caseStudy_linkWrap {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 999;
    -webkit-transform: translate3d(-60px, -100px, 10px);
            transform: translate3d(-60px, -100px, 10px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudy_linkWrap .digilinkLink {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-radius: 100px;
    padding: 22.5px 31.5px;
    color: #FFFFFF;
    fill: #FFFFFF;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudy_linkWrap .digilinkLink .link_text {
    display: none;
}

.caseStudy_linkWrap .digilinkLink svg {
    height: 9px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudy_linkWrap .digilinkLink svg,
.caseStudy_linkWrap .digilinkLink i {
    margin: 0;
    color: inherit;
    fill: inherit;
}

.caseStudyItems01:hover .caseStudy_linkWrap {
    -webkit-transform: translate3d(0px, 0px, 1px);
            transform: translate3d(0px, 0px, 1px);
}

.caseStudy_linkWrap .digilinkLink:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}

.caseStudy_linkWrap .digilinkLink:hover svg,
.caseStudy_linkWrap .digilinkLink:hover i {
    -webkit-transform: unset;
            transform: unset;
}

/* ================== Folio Style 02 =============== */
.caseStudyItems02 {
    position: relative;
    overflow: hidden;
}

.caseStudyItems02 .cspi_thumb {
    border-radius: 20px;
}

.caseStudyItems02 .cspi_thumb img {
    -webkit-transform: scale(1.1);
        transform: scale(1.1);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudyItems02:hover .cspi_thumb img {
    -webkit-transform: scale(1);
        transform: scale(1);
}

.caseStudyItems02 .cspi_details {
    opacity: 1;
    
    -webkit-transform: unset;
            transform: unset;
    padding: 40px 30px;
    width: 100%;
}

.caseStudyItems02 .cspi_details h3 {
    margin: 0;
}
.caseStudyItems02 .cspi_details h3 a:hover{
    color: rgba(255,255,255,.5);
}

.caseStudy_linkWrap2 {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 999;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudy_linkWrap2 .digilinkLink {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-radius: 100px;
    max-width: 84px;
    padding: 14px 31.5px 14px 21.5px;
    color: #FFFFFF;
    fill: #FFFFFF;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    min-height: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    font-weight: 400;
}

.caseStudy_linkWrap2 .digilinkLink svg {
    height: 9px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudy_linkWrap2 .digilinkLink svg,
.caseStudy_linkWrap2 .digilinkLink i {
    margin: 0;
    color: inherit;
    fill: inherit;
    margin-left: 9px;
}

.caseStudy_linkWrap2 .digilinkLink:hover svg,
.caseStudy_linkWrap2 .digilinkLink:hover i {
    -webkit-transform: unset;
            transform: unset;
}

.caseStudy_linkWrap2 .digilinkLink:hover {
    max-width: 300px;
}

.caseStudy_linkWrap2 .digilinkLink .link_text {
    opacity: 0;
    color: inherit;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    -webkit-transition: max-width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: max-width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.caseStudy_linkWrap2 .digilinkLink:hover .link_text {
    opacity: 1;
    
    max-width: 200px;
}
.caseStudyItems02 .cspi_details h3 a:hover{
    color: var(--tw-primary-color);
}


/* ================== Folio Style 03 =============== */
.caseStudyItems03 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.caseStudyItems03>* {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
}

.caseStudyItems03 .cspi_thumb {
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 606px;
            flex: 0 0 606px;
}

.caseStudyItems03 .cspi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudyItems03:hover .cspi_thumb img {
    -webkit-transform: scale(1.1);
        transform: scale(1.1);
}

.caseStudyItems03 .cspi_details {
    padding: 0;
    -webkit-transform: unset;
            transform: unset;
    opacity: 1;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
}

.cspi_psNumber {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-body-color);
}

.cspi_psNumber-center .cspi_psNumber {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.cspi_psNumber-right .cspi_psNumber {
    right: 0;
    left: auto;
}

.caseStudyItems03 .cspi_details h3 {
    color: var(--tw-heading-color);
}

.caseStudyItems03 .cspi_meta {
    margin: 0 0 22px;
}

.caseStudyItems03 .cspi_meta a {
    padding: 1px 19px;
    border: 1px solid var(--tw-border-color);
    color: var(--tw-body-color);
}

.caseStudyItems03 .cspi_meta a:hover {
    color: var(--tw-primary-color);
}

.caseStudy_linkWrap3 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 9;
}

.caseStudy_linkWrap3 .digilinkLink {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-radius: 100px;
    padding: 38.36px 32.44px;
    color: #FFFFFF;
    fill: #FFFFFF;
    -webkit-transform: scale(0.5);
            transform: scale(0.5); 
    opacity: 0; 
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudy_linkWrap3 .digilinkLink svg {
    margin: 0;
    -webkit-transform: unset;
            transform: unset;
    color: inherit;
    fill: inherit;
}

.caseStudyItems03:hover .digilinkLink {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    
}


/* ================== Folio Style 04 =============== */
.caseStudyCarousel04 .owl-item .caseStudyItems04 {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    margin: 35px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.caseStudyCarousel04 .owl-item.active.center .caseStudyItems04 {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.caseStudyItems04 {
    position: relative;
    overflow: hidden;
}

.caseStudyItems04 .cspi_details {
    padding: 29px 48px 19px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    -webkit-transform: unset;
            transform: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.caseStudyItems04 .cspi_psNumber {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    padding: 23px 0 0 49px;
}

.caseStudyItems04 .cspi_thumb img {
    position: relative;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudyItems04:hover .cspi_thumb img {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
}

.caseStudyCarousel04 .owl-item.active.center .cspi_thumb img {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
}

.caseStudy_linkWrap4 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 99;
}

.caseStudy_linkWrap4 .digilinkLink {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-radius: 100px;
    padding: 38.36px 32.44px;
    color: #FFFFFF;
    fill: #FFFFFF;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    min-height: 14px;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.caseStudy_linkWrap4 .digilinkLink svg {
    margin: 0;
    -webkit-transform: unset;
            transform: unset;
    color: inherit;
    fill: inherit;
}

.caseStudyCarousel04 .owl-item.active.center .digilinkLink {
    -webkit-transform: scale(1);
            transform: scale(1);
}

div:not(.caseStudyCarousel04) .caseStudyItems04:hover .digilinkLink {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.caseStudyCarousel04 .owl-dots {
    display: none !important;
}

.caseStyCarouse_count {
    position: relative;
    max-width: 526px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 72px;
}

.caseStyCarouse_count:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: rgba(28, 39, 52, .1);
}

#counterSlide {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--tw-primary-font);
    color: rgba(28, 39, 52, .2);
    width: 138px;
    background: #FFF;
    text-align: center;
    overflow: hidden;
    z-index: 3;
    position: relative;
}

#counterSlide>span {
    color: var(--tw-heading-color);
}

/* ================== Folio Style 05 =============== */
.caseStudyItems05 {
    position: relative;
    overflow: hidden;
}

svg.clippy {
    position: absolute;
    top: -999px;
    left: -999px;
    width: 0;
    height: 0;
}

.caseStudyItems05 .cspi_thumb img {
    position: relative;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudyItems05:hover .cspi_thumb img {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
}

.caseStudyCarousel05 .owl-item.active.center .cspi_thumb img {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
}

.caseStudyItems05 .cspi_details_wrap {
    padding: 12px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    height: 100%;
}

.caseStudyItems05 .cspi_details {
    position: relative;
    -webkit-clip-path: url(#clip-ftbefore);
            clip-path: url(#clip-ftbefore);
    -webkit-transform: unset;
            transform: unset;
    width: auto;
    padding: 23px 28px 32px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    -webkit-transform: translate3d(-60px, 160px, 1px);
            transform: translate3d(-60px, 160px, 1px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudyItems05:hover .cspi_details {
    -webkit-transform: translate3d(0px, 0px, 1px);
            transform: translate3d(0px, 0px, 1px);
    opacity: 1;
    
}

.caseStudyCarousel05 .owl-item.active.center .cspi_details {
    -webkit-transform: translate3d(0px, 0px, 1px);
            transform: translate3d(0px, 0px, 1px);
    opacity: 1;
    
}

.caseStudyItems05 .cspi_details h3 {
    font-weight: 400;
    font-size: 32px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 0;
}

.caseStudyItems05 .cspi_meta {
    margin: 0 0 1px;
}

.caseStudy_linkWrap5 {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
    z-index: 99;
}

.caseStudy_linkWrap5 .digilinkLink {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-radius: 100px;
    padding: 43.36px 37.44px;
    color: #FFFFFF;
    fill: #FFFFFF;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -webkit-transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s;
    transition: width 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    min-height: 14px;
    -webkit-transform: scale(0);
            transform: scale(0);
    z-index: 9;
}

.caseStudy_linkWrap5 .digilinkLink svg {
    margin: 0;
    -webkit-transform: unset;
            transform: unset;
    color: inherit;
    fill: inherit;
}

.caseStudyItems05:hover .digilinkLink {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.caseStudyCarousel05 .owl-item.active.center .digilinkLink {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.caseStudyCarousel05 .owl-dots {
    display: none !important;
}

/* ================== Folio Style 06 =============== */
.caseStudyItems06 {
    position: relative;
}

.caseStudyItems06 .cspi_details {
    -webkit-transform: unset;
            transform: unset;
    padding: 22px 0 0;
}

.caseStudyItems06 .cspi_details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
    margin: 0 0 14px;
}

.caseStudyItems06 .cspi_details h3 a:hover {
    color: rgba(28, 39, 52, .7);
}

.caseStudyItems06 .cspi_psNumber {
    padding: 23px 0 0 29px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    z-index: 99;
}

.caseStudyItems06 .cspi_meta {
    margin: 0 0 12px;
}

.caseStudyItems06 .cspi_meta a {
    background: var(--tw-primary-color);
    color: var(--tw-white-color);
}

.caseStudyItems06 .cspi_meta a:hover {
    background: rgba(0, 0, 0, 0.6)
}
.caseStudyItems06 .cspi_thumb img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.caseStudyItems06:hover .cspi_thumb img {
    -webkit-transform: scale(1.2) rotate(5deg);
        transform: scale(1.2) rotate(5deg);
}


/* ================== Folio Style 07 =============== */
.folioCarousel .owl-carousel .owl-stage{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.folioItems07{
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.folioItems07 .foliopi_thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 480px;
    max-height: 480px;
}
.folioItems07 .foliopi_thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.folioRow .folioItems07:hover .foliopi_thumb img{
    -webkit-transform: translate(-50%, -50%) scale3d(1.08,1.08,1);
            transform: translate(-50%, -50%) scale3d(1.08,1.08,1);
}
.foliopi_psNumber {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--tw-heading-font);
    color: var(--tw-primary-color);
}
.folio_linkWrap7 {
    position: absolute;
    bottom: -59px;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-100px, 150px);
            transform: translate(-100px, 150px);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.folioItems07:hover .folio_linkWrap7{
    opacity: 1;
    
    visibility: visible;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
}
.folio_linkWrap7 .digilinkLink {
    display: inline-block;
    position: relative;
    font-size: 135px;
    z-index: 22;
    top: 31px;
    right: 17px;
    visibility: visible;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
    stroke: var(--tw-white-color);
}
.folio_linkWrap7 .digilinkLink svg{
    fill: inherit;
    stroke: inherit;
    width: 135px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    height: auto;
}
.folio_linkWrap7 .digilinkLink svg path{
    stroke: inherit;
}
.folioCol .folio_linkWrap7 .digilinkLink svg{
    width: 85px;
}
.folio_linkWrap7 .digilinkLink:hover svg,
.folio_linkWrap7 .digilinkLink:hover path{
    stroke: var(--tw-primary-color);
}
.folioCol .folio_linkWrap7 {
    width: 200px;
    height: 240px;
}
.folio_linkWrap7:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--tw-primary-color);
    -webkit-filter: blur(100px);
    filter: blur(100px);
}
.foliopi_details {
    padding: 21px 0 10px;
    background: var(--tw-white-color);
}
.foliopi_meta{
    margin-bottom: 7px;
    line-height: 1;
}
.foliopi_meta a{
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    color: var(--tw-body-color);
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.foliopi_meta a:hover{
    color: var(--tw-primary-color);
}
.foliopi_details h3 {
    font-size: 26px;
    line-height: 36px;
    color: var(--tw-heading-color);
    margin-bottom: 9px;
    text-transform: uppercase;
}
.foliopi_details h3 a{
    font-size: inherit;
    color: inherit;
}
.foliopi_details h3 a:hover{
    color: var(--tw-primary-color);
}
.foliopi_details p{
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    color: var(--tw-body-color);
}
/* ================== Folio Style 08 =============== */
.folioItems08{
    position: relative;
}
.folioItems08 .foliopi_thumb{
    border-radius: 20px;
    overflow: hidden;
}
.folioItems08 .foliopi_thumb img{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.folioItems08:hover .foliopi_thumb img{
    -webkit-transform: scale(1.015);
            transform: scale(1.015);
}
.folioItems08 .foliopi_details {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    padding: 40px 24px 29px 37px;
}
.folioItems08 .foliopi_details {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 37px 24px 29px 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.foliopi_detInnerBtm{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    gap: 10px;
}
.folioItems08 .foliopi_psNumber{
    -webkit-text-stroke: 1px var(--tw-white-color);
    -webkit-text-fill-color: transparent;
    font-size: 96px;
    line-height: 1;
    font-family: var(--tw-primary-font);
    font-weight: 700;
    top: 40px;
    left: 37px;
}
.folioItems08 .foliopi_meta a{
    color: var(--tw-white-color);
}
.folioItems08 .foliopi_meta a:hover{
    color: var(--tw-primary-color);
}
.folioItems08 .foliopi_details h3{
    color: var(--tw-white-color);
}
.folioItems08 .foliopi_details h3 a:hover{
    color: var(--tw-primary-color);
}
.folio_linkWrap8 .digilinkLink{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.folio_linkWrap8 .digilinkLink svg{
    fill: inherit;
    stroke: inherit;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.folio_linkWrap8 .digilinkLink svg path{
    stroke: inherit;
    fill: inherit;
}
.folio_linkWrap8 .digilinkLink:hover{
    background: var(--tw-primary-color);
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}
.folio_linkWrap8 .digilinkLink:hover svg,
.folio_linkWrap8 .digilinkLink:hover i{
    -webkit-transform: rotate(47deg);
            transform: rotate(47deg);
}
.cspi_psNumber-right .foliopi_psNumber{
    left: auto;
    right: 37px;
}
.cspi_psNumber-left .foliopi_psNumber{
    left: 37px;
    right: auto;
}
.cspi_psNumber-center .foliopi_psNumber{
    left: auto;
    right: auto;
}
/* ================== Folio Style 09 =============== */
.folioItems09 {
    position: relative;
}
.folioItems09 .foliopi_thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.folioItems09 .foliopi_details {
    padding: 32px 0 0;
    background: transparent;
}
.folioItems09 .foliopi_thumb img {
    max-width: 100%;
    border-radius: inherit;
    width: 100%;
}
.folioItems09 .foliopi_details h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--tw-white-color);
    margin: 0 0;
    text-transform: capitalize;
}
.folioItems09 .foliopi_meta{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6px;
    margin: 0;
}
.folioItems09 .foliopi_meta a{
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: var(--tw-white-color);
    margin: 0;
}
.folioItems09 .foliopi_meta a:hover{
    color: var(--tw-primary-color);
}
.folioRow09{
    row-gap: 160px;
}
.folioRow09 .col-md-4 {
    width: 34.152%;
}
.folioMasonry__item {
    position: relative;
    overflow: hidden;
}
.folioMasonry__item .foliopi_thumb {
    position: relative;
    overflow: hidden;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
}
.folioMasonry__item .foliopi_details {
    padding: 26px 48px 29px;
    position: absolute;
    top: auto;
    bottom: 40px;
    left: 40px;
    z-index: 99;
    width: calc(100% - 80px);
    max-width: 498px;
    background: rgba(17,17,17,.8 );
    -webkit-transform: unset;
    transform: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-transform: translate3d(-40px, 40px, 0);
            transform: translate3d(-40px, 40px, 0);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.folioMasonry__item:hover .foliopi_details{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
    
    visibility: visible;
}
.folioMasonry__item .foliopi_details h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--tw-white-color);
    margin: 0 0;
    text-transform: inherit;
}
.folioMasonry__item .foliopi_meta a{
    font-family: var(--tw-body-font); 
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}
.folioMasonry__item .foliopi_meta{
    margin-bottom: 5px;
}
.folioMasonry__item .foliopi_meta a:hover{
    color: var(--tw-primary-color);
}

/*-----------------------------------------
/  11. Case Study TAb
/-----------------------------------------*/
.caseStudyHistoryTab {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cstd_tabItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    -webkit-transition: .8s ease;
    transition: .8s ease;
    overflow: hidden;
    width: calc(208px + 2px);
    cursor: pointer;
}

.cstd_tabItem:last-child {
    border-right: 1px solid #e7e7da;
}

.cstd_tabItem.active-tab {
    width: 880px;
}

.cstd_tabInner {
    position: relative;
    width: calc(880px);
    min-height: 514px;
}

.cstd_psNumber {
    position: absolute;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-body-color);
    top: 43px;
    left: 49px;
}

.cstd_tabTitle_warp {
    width: 100%;
    max-width: 208px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 10px;
}

.cstd_tabTitle_warp .cspi_thumb img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-animation: reveal-image 1s cubic-bezier(.57, .18, 0, .92) .2s forwards;
    animation: reveal-image 1s cubic-bezier(.57, .18, 0, .92) .2s forwards;
}

.cstd_tabTitle {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 270px;
    -webkit-transform-origin: 61px 21px;
            transform-origin: 61px 21px;
}

.cstd_tabTitle h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: #1C2734;
    width: 270px;
    margin: 0;
    min-height: 60px;
}

.cspi_thumb {
    border-radius: 10px;
}

.cspi_thumb img {
    height: 100px;
    width: 100%;
}

.cstd_tabItem {
    border: 1px solid #E8E9EB;
    border-right: 0;
}

.cstd_tabItem .cspi_meta a {
    color: var(--tw-body-color);
    border: 1px solid var(--tw-border-color);
    padding: 1px 19px;
}

.active-tab .cstd_tabTitle_warp {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.cstd_tabContent {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-transition: .8s ease;
    transition: .8s ease;
    width: calc(880px);
    right: 0px;
    padding: 30px 74px 44px 108px;
    display: none;
}

.active-tab .cstd_tabContent {
    display: block;
}

.cstd_conInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 26px;
}

.cstd_conInner>* {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.cstd_conInner_cnt {
    max-width: 306px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0 0;
}

.cstd_conInner_cnt h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
}

.cstd_conInner_cnt p {
    margin: 0;
}

.cstd_tabItem.active-tab .cspi_thumb {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-animation: reveal-image 1s cubic-bezier(.57, .18, 0, .92) .2s forwards;
    animation: reveal-image 1s cubic-bezier(.57, .18, 0, .92) .2s forwards;
}

/*-----------------------------------------
/  12. Accordion
/-----------------------------------------*/
.digilinkAccordion .accordion-item{
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    overflow: hidden;
    background: -webkit-radial-gradient(155.99% 118.93% at 100% 98.08%, rgba(47, 47, 0, 0) 0%, #151515 53.15%, #151515 55.18%);
    background: radial-gradient(155.99% 118.93% at 100% 98.08%, rgba(47, 47, 0, 0) 0%, #151515 53.15%, #151515 55.18%);
    margin-bottom: 10px;
}
.digilinkAccordion .accordion-item:last-child{
    margin-bottom: 0 !important;
}
.digilinkAccordion .accordion-header{
    border-radius: inherit !important;
}
.digilinkAccordion .accordion-button {
    box-sizing: border-box;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    color: var(--tw-white-color);
    padding: 25px 30px;
    margin: 0;
}
.digilinkAccordion .accordion-button:focus,
.digilinkAccordion .accordion-button:hover{
    background-color: transparent;
}
.digilinkAccordion .accordion-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: var(--tw-white-color);
    padding: 0 30px 23px;
    margin: -8px 0 0;
}
.digilinkAccordion .accordion-body p{
    margin: 0;
}
.digilinkAccordion .accordion-icon {
    position: absolute;
    right: 30px;
    top: 25px;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
    width: 34px;
    height: 34px;
    background: #1C1C1C;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.digilinkAccordion .accordion-icon i{
    font-size: 16px;
    color: inherit;
}
.digilinkAccordion .accordion-icon svg{
    width: 16px;
    height: auto;
    fill: inherit;
}
.digilinkAccordion .accordion-button:not(.collapsed) .digilinkAcd-opened{ 
    display: none !important;
}
.digilinkAccordion .accordion-button.collapsed .digilinkAcd-closed{ 
    display: none !important;
}


/*----------------------------------------------------------
/  13. Testimonial
/---------------------------------------------------------*/
/* ================== Testimonial 02 =============== */
.slider-content_02 {
    max-width: 856px;
}

.testCarouseStyle02 .slider-content_02 .rating-section {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 41px;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
}

.slider-content_02 .rating-section .fas {
    color: #ccc;
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.testCarouseStyle02 .rating-section .fas:nth-child(-n+5) {
    color: #dfdfdf;
}

.testCarouseStyle02 .content-section {
    margin-bottom: 20px;
}

.testCarouseStyle02 .content-section p {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    color: #4F5762;
    margin-bottom: 39px;
    font-family: var(--tw-heading-font);
}

.testCarouseStyle02 .author-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.testCarouseStyle02 .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.testCarouseStyle02 .slider-content_02 .author-info img {
    width: auto;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}

.testCarouseStyle02 .author-details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    white-space: nowrap;
    color: var(--tw-heading-color);
    margin: 0 0 4px;
}

.testCarouseStyle02 .author-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-body-color);
    margin: 0;
}

.testCarouseStyle02 {
    margin: 0 auto;
    padding: 0;
    font-family: var(--tw-primary-font);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.testCarouseStyle02 .slider-container {
    position: relative;
    overflow: visible;
    width: 100%;
}

.testCarouseStyle02 .slider-content {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.testCarouseStyle02 .owl-dots {
    position: absolute;
    right: 0;
    bottom: 35px;
    margin: 0;
}

.slider-logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 45px;
}

.slider-logo__inner {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.rotatingText {
    -webkit-animation: rotate-circle 10s linear infinite;
            animation: rotate-circle 10s linear infinite;
}

@-webkit-keyframes rotate-circle {
    to {
        -webkit-transform: rotate(1turn);
                transform: rotate(1turn);
    }
}

@keyframes rotate-circle {
    to {
        -webkit-transform: rotate(1turn);
                transform: rotate(1turn);
    }
}

.text {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    fill: #111;
    stroke: #f0f0f0;
    stroke-width: 6px;
    paint-order: stroke fill;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    background-color: #1c2530;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_01 .center-logo i {
    font-size: 45px;
    color: #fff;
}

.center-logo svg {
    width: 25px;
    height: 25px;
}

/* ================== Testimonial 01 =============== */

.testCarouseStyle01 .slider-content_01 .author-section .rating-section {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 13px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 5px;
}

.slider-content_01 .rating-section .fas {
    color: #ccc;
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slider-content_01 .slider-logo img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
}

.slider-content_01 .rating-section .fas:nth-child(-n+5) {
    color: #dfdfdf;
}

.slider-content_01 .content-section {
    margin-bottom: 35px;
}

.slider-content_01 .content-section p {
    font-family: var(--tw-heading-font);
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    color: var(--tw-heading-color);
    margin: 0;
}

.slider-content_01 .author-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_01 .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_01 .author-info img {
    width: auto;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}

.slider-content_01 .author-details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    white-space: nowrap;
    margin-bottom: 4px;
    color: var(--tw-heading-color);
}

.slider-content_01 .author-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-body-color);
    margin: 0;
}

.slider-content_01 {
    margin: 0 auto;
    padding: 0;
    font-family: var(--tw-primary-font);
    color: #333;
    position: relative;
    max-width: 1076px;
    box-sizing: border-box;
}

.slider-content_01 .slider-container {
    position: relative;
    overflow: visible;
    width: 100%;
}

.slider-content_01 {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.testCarouseStyle02 .owl-dots {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slider-content_01 .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #9b9b9b !important;
    display: inline-block;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.slider-content_01 .owl-dots .owl-dot.active span {
    background-color: #000 !important;
}

.testCarouseStyle01 .owl-nav button.disabled {
    opacity: 0;
    visibility: hidden;
}


/* ================== Testimonial 03 =============== */

.slider-content_03 {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
    max-width: 806px;
}

.slider-content_03 .rating-section {
    margin-bottom: 21px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 13.5px;
       -moz-column-gap: 13.5px;
            column-gap: 13.5px;
}

.slider-content_03 .rating-section .fas {
    color: #ccc;
    font-size: 21.32px;
    line-height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slider-content_03 .rating-section .fas:nth-child(-n+5) {
    color: #dfdfdf;
}

.slider-content_03 .content-section {
    margin-bottom: 20px;
}

.slider-content_03 .content-section p {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    color: #1C2734;
    margin-bottom: 39px;
    font-family: var(--tw-heading-font);
}

.testCarouseStyle03 .slider-content_03 .author-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_03 .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_03 .author-info img {
    width: auto;
    height: auto;
    border-radius: 50%;
    margin-right: 19px;
    -o-object-fit: cover;
       object-fit: cover;
}

.slider-content_03 .author-details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 4px;
    white-space: nowrap;
    color: #1C2734;

}

.slider-content_03 .author-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4F5762;
    margin: 0;
    text-align: left;
}

.slider-content_03 .slider-container {
    position: relative;
    overflow: visible;
    width: 100%;
}

.slider-content_03 .slider-content {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.testCarouseStyle03 .owl-dots {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
}

.testCarouseStyle03 .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #9b9b9b !important;
    display: inline-block;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.testCarouseStyle03 .owl-dots .owl-dot.active span {
    background-color: #000 !important;
}

/* ================== Testimonial 04 =============== */
.slider-content_04 {
    padding: 49px 50px 50px;
    background-color: #172230;
    border-radius: 20px;
}

.slider-content_04 .rating-section {
    margin-bottom: 22px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 13.5px;
       -moz-column-gap: 13.5px;
            column-gap: 13.5px;
}

.slider-content_04 .rating-section .fas {
    color: rgba(255, 255, 255, .1);
    font-size: 21.32px;
    line-height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slider-content_04 .content-section {
    margin-bottom: 20px;
}

.slider-content_04 .content-section p {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    font-family: var(--tw-heading-font);
    color: rgba(255, 255, 255, .7);
    text-align: center;
    margin-bottom: 39px;

}

.slider-content_04 .author-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_04 .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_04 .author-info img {
    width: auto;
    height: auto;
    border-radius: 50%;
    margin-right: 19px;
    -o-object-fit: cover;
       object-fit: cover;
}

.slider-content_04 .author-details h3 {
    color: #FFFFFF;
    white-space: nowrap;
    font-weight: 400;
    font-size: 24px;
    text-align: left;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.slider-content_04 .author-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #4F5762;
    white-space: nowrap;
    text-align: left;
    margin: 0;
}



.slider-content_04 .slider-container {
    position: relative;
    overflow: visible;
    width: 100%;
}

.slider-content_04 .slider-content {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.testCarouseStyle04 .owl-item {
    opacity: 1;
    
    -webkit-transition: opacity .7s;
    transition: opacity .7s;
}

.testCarouseStyle04 .owl-item.activePrev {
    opacity: .3;
}

.testCarouseStyle04 .owl-item.activeNext {
    opacity: .3;
}

/* ================== Testimonial 05 =============== */

.slider-content_05 .slider-box {
    padding: 50px 28px 40px;
    border: 1px solid var(--tw-border-color);
    border-radius: 20px;
    margin-bottom: 48px;
    position: relative;
}

.slider-content_05 .slider-box .back-icon {
    position: absolute;
    top: 41.5px;
    right: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.slider-content_05 .slider-box .rating-section {
    margin-bottom: 22px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 13.5px;
       -moz-column-gap: 13.5px;
            column-gap: 13.5px;
}

.slider-content_05 .slider-box .rating-section .fas {
    color: rgba(28, 39, 52, .1);
    font-size: 21.32px;
    line-height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slider-content_05 .slider-box .content-section p {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #4F5762;
    font-family: var(--tw-heading-font);
    margin: 0;
}

.slider-content_05 .author-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-content_05 .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.slider-content_05 .author-info:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 40px;
    top: -63px;
    background: #fff;
    border-bottom: 1px solid var(--tw-border-color);
    border-left: 1px solid var(--tw-border-color);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-radius: 0 0 0px 10px;
}

.testCarouseStyle05 .slider-content_05 .author-info img {
    width: auto;
    height: auto;
    margin-right: 15px;
    -o-object-fit: cover;
       object-fit: cover;
}

.slider-content_05 .author-details h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 4px;
    text-align: left;
    color: #1C2734;
}

.slider-content_05 .author-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    margin: 0;
}

.slider-content_05 .slider-container {
    position: relative;
    overflow: visible;
    width: 100%;
}

.slider-content_05 .slider-content {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* ================== Testimonial 06 =============== */
.testimonial_item{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.testimonial_img{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 55.548%;
    margin-right: -285px;
}
.testimonial_img img{
    border-radius: inherit !important;
}
.testimonial_contents{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 63.793%;
    background: #FFF;
    position: relative;
    padding: 84px 100px 99px 114px;
}
.tsti_quote_icon {
    position: absolute;
    bottom: 0;
    right: 100%;
    width: 184px;
    height: 188px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 110px;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}
.tsti_quote_icon svg{
    height: 71px; 
    width: auto;
    fill: inherit;
}
.tsti_quote_icon svg path{
    fill: inherit;
}
.tsti_cnt h4{
    font-size: 18px;
    line-height: 28px;
    font-family: var(--tw-primary-font);
    font-weight: 600;
    color: var(--tw-body-color);
    text-transform: uppercase;
    margin: 0 0 16px;
}
.tsti_cnt h2{
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.tsti_author{
    display: inline-block;
}
.tsti_author h3{
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.tsti_author p{
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--tw-body-color);
    margin: 0;
}
.tsti_author.show_img{
    padding:4px 0 4px 72px;
    position: relative;
}
.tsti_author.show_img img{
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.shape_img{
    width: 191px;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}


/* ================== Testimonial 07 =============== */
.testimonial_item_07{
    position: relative;
}
.tsti_quote_inner{
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 36px;
}
.tsti_text_quoteIcon {
    position: absolute;  
    padding: 15px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
}
.tsti_text_quoteIcon i{
    font-size: 56px;
    color: var(--tw-primary-color);
}
.tsti_text_quoteIcon svg{
    fill: var(--tw-primary-color);
    width: 56px;
    height: auto;
}
.tsti_text_quoteIcon svg path{
    stroke: inherit;
    fill: inherit;
}
.tsti_rotatingText{
    position: relative;
    width: 159px;
    height: 159px;
    background: transparent;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.tsti_text{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-animation: rotateText 10s linear infinite;
            animation: rotateText 10s linear infinite;
}
.tsti_text span{
    top:-8px;
    font-size: 16px;
    position: absolute;
    left: 50%;
    -webkit-transform-origin: 0 88px;
            transform-origin: 0 88px;
    letter-spacing: 0;
    word-spacing: 0;
    text-transform: uppercase;
}
@-webkit-keyframes rotateText {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes rotateText {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
.testimonial_item_07 .tsti_author h3 {
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    text-align: left;
}
.testimonial_item_07 .tsti_author p{
    text-transform: capitalize;
}
.testimonial_item_07 .tsti_cnt h2{
    font-size: 40px;
    line-height: 64px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 28px;
}

/* ================== Testimonial 08 =============== */

.testCarouseStyle08 .testimonial_item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.testCarouseStyle08 .testimonial_img{
    position: relative;
    z-index: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 32.122%;
    margin: 0;
}
.testCarouseStyle08 .testimonial_img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
}
.testCarouseStyle08 .tsti_quote_icon {
    position: absolute;
    bottom: 43px;
    right: 34px;
    z-index: 2;
    width: auto;
    height:auto;
    background: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
}
.testCarouseStyle08 .testimonial_contents{
    padding: 44px 20px 30px 47px;
    background: transparent;
}
.testCarouseStyle08 .tsti_cnt h2{
    font-weight: 500;
    font-size: 34px;
    line-height: 44px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
}
.testCarouseStyle08 .tsti_cnt p{
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #A1A1A1;
    max-width: 576px;
    margin: 0;
}
.test-item-layout-center .testCarouseStyle08 .tsti_cnt p{
    margin: 0 auto;
}
.test-item-layout-end .testCarouseStyle08 .tsti_cnt p{
    margin-left: auto;
}
.testCarouseStyle08 .tsti_author{
    padding: 4.5px 60px;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 31px 0 0;
    max-width: 416px;
}
.test-item-layout-center .testCarouseStyle08 .tsti_author{
    margin-left: auto;
    margin-right: auto;
}
.test-item-layout-end .testCarouseStyle08 .tsti_author{
    margin-left: auto;
}
.testCarouseStyle08 .tsti_author img{
    width: 50px;
    max-width: 100%;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.testCarouseStyle08 .tsti_author h3{
    color: var(--tw-white-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 5px;
}
.testCarouseStyle08 .tsti_author p{
    color: #A1A1A1;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin: 0;
}

.test-item-layout-end .testCarouseStyle08 .tsti_author{
    -webkit-box-align: end;
        -ms-flex-align: end;
                -ms-grid-row-align: end;
            align-items: end;
}
.test-item-layout-end .testCarouseStyle08 .tsti_author img{
    right: 0;
    left: auto;
}
.testCarouseStyle08 .tsti_review{
    position: absolute;
    top: 16px;
    left: auto;
    right: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5px;
}
.test-item-layout-end .testCarouseStyle08 .tsti_review{
    right: auto;
    left: 0;
}
.testCarouseStyle08 .tsti_review i{
    font-size: 17.7px;
    color: #F9D866;
}
.testCarouseStyle08 .tsti_review svg{
    width: 20px;
    height: auto;
    fill: #F9D866;
}

/*-----------------------------------------
/  14. Clients Slider
/-----------------------------------------*/
.clientLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.clientLogo i{
    font-size: 120px;
    color: #BEBEBE;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.clientLogo svg{
    -webkit-transition: 0.3s;
    transition: 0.3s;
    fill: #BEBEBE;
}
.clientLogo:hover i,
.clientLogo:hover svg{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}
.clientLogo svg rect{
    fill: inherit;
}
.clientLogo svg path{
    fill: inherit;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.clientsSliderWrap .clientsSlider .clientLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 107px;
    cursor: pointer;
    border: 1px solid #17171B;
}

.clientsSliderWrap .clientsSlider .owl-item {
    width: auto;
}

.clientsSliderWrap .clientsSlider .clientLogo img {
    width: auto;
}



/*-----------------------------------------
/  15. Chart Item
/-----------------------------------------*/

/* ================= Chart 01 ==================== */
.chart_one_box {
    background: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.chart_one_left {
    width: 100%;
}

.chart_one_box .canvas_section {
    height: 18em;
}

.chart_one_box .chart_one_left {
    margin: 1em;
}

.chart_one_box .title_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.chart_one_box .title_section p,
.chart_one_box .title_section h3 {
    margin: 0;
}

.chart_one_box .right_section {
    padding-left: 40px;
    border-left: 1px solid #eee;
    height: 100%;
}

.chart_one_box .industry_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chart_one_box .industry_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
}

.chart_one_box .industry_list .industry_item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 9px;
    margin-right: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.chart_one_box .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.chart_one_box .info strong {
    font-size: 12px;
    line-height: 26px;
    color: #1f2733;
    font-weight: 500;
    white-space: nowrap;
}

.chart_one_box .info p {
    margin: 2px 0 0;
    font-size: 16px;
    color: #7d838a;
    font-weight: 400;
    line-height: 26px;
}

.chart_one_box .info p span {
    font-size: 10px;
    color: #a0a5ab;
    font-weight: 400;
    line-height: 26px;
}


.chart_one_box .title_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.chart_three_box_01,
.chart_three_box_02,
.chart_three_box_03 {
    background-color: #3E4754;
    padding: 2rem;
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--tw-primary-font)
}

.chart_three_box_02 {
    padding: 32px 32px 36px;
}

.chart_three_box_01 .content h3,
.chart_three_box_02 .content h3,
.chart_three_box_03 .content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;

}

.chart-container_03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 2rem;
}

.chart_three_box_01 .chartThreeStyle_01 canvas,
.chart_three_box_02 .chartThreeStyle_02 canvas,
.chart_three_box_03 .chartThreeStyle_03 canvas {
    width: 290px;
    height: 290px;
}

.pie-chart-box_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #ffffff;
    border: 1px solid #FFFFFF1A;
}

.pie-chart-box_01 .pie-chart-separator span {
    border: 1px solid #FFFFFF1A;
    display: block;
    width: 37px;
}

.pie-chart-box_01 .pie-chart-item span.text,
.pie-chart-box_02 .pie-chart-item span.text {
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    vertical-align: middle;
    text-transform: none;
    color: #FFFFFFB2;
}

.pie-chart-item .percentage {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    vertical-align: middle;
    color: #FFFFFF;
    padding-left: 0.9rem;
}

.pie-chart-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ffffff;
}

.pie-chart-item .content {
    line-height: 1;
}

/* ================= Chart 02 ==================== */
.chart_two_box {
    background: #172230;
}

.pie-chart-box_02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
}

.chartThreeStyle_02 {
    width: 281px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
}

.pie-chart-box_02 .pie-chart-separator {
    border: 1px solid #FFFFFF1A;
    height: 47px;
}

.chart_three_box_03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #172230;
    padding: 30px;
    border-radius: 20px;
    color: #ffffff;
    font-family: var(--tw-primary-font);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.chart_three_box_03 .pie-chart-box_03 {
    background-color: #202B3A;
    padding: 20px 11px 19.5px 20px;
    border: 1px solid #2E3A4C;
    border-radius: 12px;
}

.pie-chart-box_03 .pie-chart-separator {
    border: 1px solid #FFFFFF1A;
    width: 37px;
}

.pie-chart-box_03 .pie-chart-separator span {
    display: inline;
}

.pie-chart-item .text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.pie-chart-item .percentage strong {
    font-size: 1.2rem;
    font-weight: 600;
}



.chart-container_03.chartThreeStyle_01 {
    width: 100%;
    height: 281px;
}

.pie-chart-box_03 .pie-chart-item {
    display: block;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 19px;
}

.chart_three_box_03 .pie-chart-box_03 .content .text {
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    vertical-align: middle;
    text-transform: none;
    white-space: nowrap;
}

.chart_three_box_03 .pie-chart-box_03 .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
}

.chart-container {
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.chart-container_04 {
    background-color: #1a1a2e;
    color: #ffffff;
    font-family: var(--tw-primary-font);
    padding: 20px;
}


/*-----------------------------------------
/  16. Service Item
/-----------------------------------------*/
/* ================== Service 01 =============== */
.service_item_01 {
    position: relative;
}

.service_item_01 h3 {
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
    margin-bottom: 39px;
}

.service_item_01 h3 a {
    color: inherit;
    font-size: inherit;
}

.service_item_01 h3 a:hover {
    color: var(--tw-secondary-color);
}

.service_imgWrap {
    position: relative;
    border-radius: 20px;
    margin-bottom: 23px;
    overflow: hidden;
}

.service_imgWrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.service_imgWrap img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.service_item_01:hover .service_imgWrap img {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
}

.service_item_01 p {
    margin-bottom: 23px;
}

.serviceIcon {
    width: 50px;
    height: 50px;
    background: var(--tw-primary-color);
    color: var(--tw-white-color);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 9px;
    font-size: 24px;
}

.icon_position_top {
    margin-bottom: 23px;
}

.serviceIcon i,
.serviceIcon svg {
    color: inherit;
    fill: inherit;
    position: relative;
}

.elementor .serviceIcon img,
.serviceIcon img {
    max-width: 24px;
    width: 100%;
}

/* ================== Service 02 =============== */
.service_item_02 {
    border: 1px solid var(--tw-border-color);
    padding: 41px 48px 49px 48px;
    border-radius: 20px;
}

.service_item_02 h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    margin-bottom: 12px;
    color: var(--tw-heading-color);
}

.service_item_02 h3 a {
    color: inherit;
    font-size: inherit;
}

.service_item_02 h3 a:hover {
    color: var(--tw-primary-color);
}

.service_item_02 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 73px;
    color: var(--tw-body-color);
}

.service_item_02 .serviceIcon {
    width: 86px;
    height: 86px;
    background: var(--tw-primary-color);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 9px;
}

.service_item_02 .serviceIcon i {
    font-size: 52px;
}

.service_item_02 .serviceIcon svg {
    width: 52px;
    height: 52px;
}

/* ================== Service 03 =============== */
.service_item_03 {
    border: 1px solid #FFFFFF1A;
    padding: 42px 48px 42px 48px;
    border-radius: 20px;
    border: 1px solid var(--tw-border-color);
    height: 100%;
}

.service_item_03 h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    margin-bottom: 12px;
    color: var(--tw-heading-color);
}

.service_item_03 h3 a {
    color: inherit;
    font-size: inherit;
}

.service_item_03 h3 a:hover {
    color: var(--tw-secondary-color);
}

.service_item_03 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 65px;
    color: var(--tw-body-color);
}

.service_item_03 .serviceIcon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
}

.service_item_03 .serviceIcon i {
    font-size: 86px;
}

.service_item_03 .serviceIcon svg {
    width: 86px;
    height: 86px;
}

/* ================== Service 04 =============== */
.service_item_04 {
    position: relative;
    padding: 50px 30px 43px;
    border: 1px solid #E8E9EB;
    height: 100%;
}

.servicePostRow .service_item_04 {
    height: auto;
}

.service_item_04 .service_imgWrap {
    position: relative;
    border-radius: 20px;
    margin-bottom: 22px;
    z-index: 1;
}

.service_item_04 .service_imgWrap img {
    border-radius: inherit;
    max-width: 100%;
    width: 100%;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.service_item_04 .service_imgWrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    z-index: 2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.service_item_04:hover img {
    -webkit-transform: scale(1.07) rotate(-3deg);
    transform: scale(1.07) rotate(-3deg);
}

.service_item_04 h3 {
    font-size: 24px;
    line-height: 34px;
    color: var(--tw-heading-color);
    margin-bottom: 4px;
}

.service_item_04 h3 a {
    color: inherit;
    font-size: inherit;
}

.service_item_04 h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--tw-heading-color);
    margin: 0 0 5px;
}

.service_item_04 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service_item_04 ul li {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding-left: 16px;
    color: var(--tw-body-color);
    position: relative;
}

.service_item_04 ul li i {
    font-size: 6px;
    color: var(--tw-heading-color);
    position: absolute;
    left: 2px;
    top: 9.2px;
}

/* ================== Service 05 =============== */
.service_item_05 {
    position: relative;
    padding: 50px 30px;
    border: 1px solid var(--tw-border-color);
    border-radius: 10px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    height: auto;
}

.servicePostCarousel .service_item_05 {
    height: 100%;
}

.service_item_05 h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    margin: 0 0 11px;
}

.service_item_05 h3 a {
    color: inherit;
    font-size: inherit;
}

.service_item_05 h3 a:hover {
    color: var(--tw-secondary-color);
}

.service_item_05 .digilinkAWBtn {
    padding: 0 23px;
    height: 40px;
    border: 1px solid var(--tw-border-color);
    background: var(--tw-white-color);
    color: var(--tw-body-color);
    border-radius: 10px;
}

.service_item_05 .digilinkAWBtn .digilinkAWBtnHover {
    background: var(--tw-primary-color);
}

.service_item_05 .digilinkAWBtn:hover {
    color: var(--tw-white-color);
}

.service_item_05 .serviceIcon {
    width: unset;
    height: 80px;
    padding: 0;
    background: transparent;
    border-radius: unset;
    color: var(--tw-heading-color);
    font-size: 80px;
    margin: 0 0 42px;
}

.elementor .service_item_05 .serviceIcon img,
.service_item_05 .serviceIcon img {
    width: 80px;
    max-width: unset;
}

.service_item_05 .serviceIcon i {
    left: 0;
    top: 0;
}

.srvPostCarousel_05 .owl-stage-outer {
    padding: 0 2px;
    margin: 0 -2px;
}

.srvPostCarousel_05 .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.srvPostCarousel_05 .owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.service_item_05 .digilinkAWBtn:hover span.digilinkAWBtnHover {
    width: 210%;
    height: 303.5px;
}


/* ================== Service 06 =============== */
.service_item_06 {
    position: relative;
    padding: 58px 59px 62px 51px;
    border-radius: 0;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.service_item_06 h3{
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    font-family: var(--tw-heading-font);
    color: var(--tw-heading-color);
    margin: 0 0 14px;
    text-transform: uppercase;
}
.service_item_06 h3 a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
.service_item_06 h3 a:hover{
    color: var(--tw-primary-color);
}
.service_item_06 p{
    font-size: 18px;
    line-height: 36px;
    color: var(--tw-body-color);
    margin: 0;
}
.service_item_06 .serviceIcon {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--tw-heading-color);
    border-radius: unset;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    font-size: 24px;
    margin: 0 0 60px;
}

.service_item_06 .serviceIcon i{
    font-size: 100px;
    color: inherit;
}
.service_item_06 .serviceIcon svg{
    height: 100px;
    fill: inherit;
}
.service_item_06 .serviceIcon svg path{
    fill: inherit;
    stroke: inherit;
}
.ser6_readMoreBtn {
    position: relative;
    width: 76px;
    height: 76px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    background: #FAFAFA;
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-top: 40px;
}
.ser6_readMoreBtn i{
    color: inherit;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.ser6_readMoreBtn svg{
    fill: inherit;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.ser6_readMoreBtn svg path{
    stroke: inherit;
    fill: inherit;
}
.ser6_readMoreBtn:hover{
    background:var(--tw-primary-color);
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}

/* ================== Service 07 =============== */
.service_item_07 {
    position: relative;
    box-sizing: border-box;
    background: #111111;
    border: 1px solid #2B2B2B;
    padding: 58px 59px 69px 51px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.service_item_07 h3{
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
    color: #F5F7F5;
    font-family: var(--tw-heading-font);
    margin: 0 0 72px;
    text-transform: capitalize;
    position: relative;
}
.service_item_07 h3:after {
    position: absolute;
    bottom: -12px;
    content: "";
    width: 60px;
    height: 1px;
    background: #FFF;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.elementor-widget-themewar-services.elementor-align-start .service_item_07 h3:after,
.elementor-widget-themewar-services.elementor-align-left .service_item_07 h3:after{
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}
.elementor-widget-themewar-services.elementor-align-end .service_item_07 h3:after,
.elementor-widget-themewar-services.elementor-align-right .service_item_07 h3:after{
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}
.service_item_07 h3 a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
.service_item_07 h3 a:hover{
    color: var(--tw-primary-color);
}
.service_item_07 p{
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #A1A1A1;
    margin: 0;
}
.service_item_07 .serviceIcon {
    font-weight: 400;
    font-size: 80px;
    line-height: 52px;
    width: 80px;
    height: 80px;
    background: transparent;
    text-align: start;
    color: var(--tw-white-color);
    margin: 0 0 52px;
}

.service_item_07 .serviceIcon i{
    font-size: 80px;
    color: inherit;
}
.service_item_07 .serviceIcon svg{
    height: 80px;
    fill: inherit;
}
.service_item_07 .serviceIcon svg path{
    fill: inherit;
    stroke: inherit;
}
.ser7_readMoreBtn {
    position: relative;
    width: 76px;
    height: 76px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    background: #FAFAFA;
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-top: 40px;
}
.ser7_readMoreBtn i{
    color: inherit;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.ser7_readMoreBtn svg{
    fill: inherit;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.ser7_readMoreBtn svg path{
    stroke: inherit;
    fill: inherit;
}
.ser7_readMoreBtn:hover{
    background:var(--tw-primary-color);
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}

/*-----------------------------------------
/  17. Service List
/-----------------------------------------*/
/* ================== Service cus 01 =============== */
section.service_listItems_Wrap {
    position: relative;
    overflow: hidden;
    min-height: 694px;
}

.service__listItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    padding: 43px 86px 39px 79px;
    border-radius: 20px;
    border: 1px solid var(--tw-border-color);
    background: var(--tw-white-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.service__listItem:nth-child(2) {
    top: 241px;
    z-index: -2;
}

.service__listItem:nth-child(3) {
    top: 449px;
    z-index: -2;
}

.service__listItem:nth-child(4) {
    top: 560px;
    z-index: -2;
}

.service__listItem:nth-child(5) {
    top: 671px;
    z-index: -2;
}

.service__listNum {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19.757%;
            flex: 0 0 19.757%;
    text-align: left;
}

.service__listNum p {
    font-size: 150px;
    line-height: 1;
    color: var(--tw-heading-color);
    margin: -13px 0 0 -2px;
}

.service__listBtn {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(37.772% - 30px);
            flex: 0 0 calc(37.772% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
}

.service__listBtn a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 9px 14px;
    border: 1px solid var(--tw-border-color);
    border-radius: 40px;
    font-family: var(--tw-primary-font);
    color: var(--tw-heading-color);
    background: var(--tw-white-color);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.service__listBtn a:nth-child(odd) {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
}

.service__listBtn a:nth-child(even) {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
}

.service__listBtn a:hover {
    border-color: var(--tw-primary-color);
    color: var(--tw-primary-color);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

.service__listCnt {
    position: relative;

    -webkit-box-flex: 0;

        -ms-flex: 0 0 calc(42.471% - 30px);

            flex: 0 0 calc(42.471% - 30px);
}

.service__listCnt h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    color: var(--tw-heading-color);
    margin: 0 0 12px;
}

.service__listDesc {
    font-size: 16px;
    font-weight: 400;
    color: var(--tw-body-color);
    margin: 0 0 35px;
    max-width: 270px;
    width: 100%;
}

.service__listDesc p {
    margin: 0;
}

.service__listCnt i {
    font-size: 85px;
    color: var(--tw-heading-color);
}

.service__listCnt svg {
    width: auto;
    height: 85px;
    fill: var(--tw-heading-color);
}

/* ================== Service Query 01 =============== */
.serviceListPostRow{
    position: relative;
}
.servicelistItem01{
    position: relative;
    z-index: 9;
    opacity: 1;
    
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
.servicelistContent01{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 27px 0 31px;
    border-bottom: 1px solid #C4C4C4;
} 
.serviceListIcon{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 85px;
}
.serviceListIcon i{
    font-size: 48px;
    color: var(--tw-heading-color);
    font-weight: 500;
}
.servicelistContent01 h3{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 42.579%;
    margin: 0;
    font-size: 30px;
    line-height: 40px;
    color: var(--tw-heading-color);
}
.servicelistContent01 h3 a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
.servicelistContent01 p{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 51.05%;
}
.servicelistContent01 p{
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    margin: 0;
    padding-left: 30px;
    color: var(--tw-body-color);
}
.swipeHvImage img.swipeimage {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 180px;
    width: 100%;
    min-height: 180px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ================== Service Query 02 =============== */
.servicelistItem02{
    position: relative;
    z-index: 9;
    opacity: 1;
    
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
.servicelistContent02{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 34px 0 52px;
    border-bottom: 1px solid #C4C4C4;
} 
.serviceListSerial{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 57px;
    margin-top: 4px;
}
.serviceListSerial span{
    display: inline-block;
    font-size: 20px;
    color: var(--tw-heading-color);
    font-family: var(--tw-heading-font);
    line-height: 30px;
    font-weight: 500;
}
.servicelistContent02 h3{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 62.444%;
    margin: 0;
    font-size: 64px;
    line-height: 72px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--tw-heading-color);
}
.servicelistContent02 h3 a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
.servicelistContent02 p{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.284%;
}
.servicelistContent02 p{
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    margin: 0;
    padding-left: 30px;
    color: var(--tw-body-color);
}
.swipeHvImage img.swipeimage {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 206px;
    width: 100%;
    min-height: 206px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/*=============== Service List 03 / Stacking Cards ============*/
.tw_service_item {
    -webkit-perspective: 500px;
            perspective: 500px;
    margin-bottom: 40px;
}

.tw_service_card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

/* Card Content */
.tw_service_num {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
}

.tw_service_title {
    font-size: 70px;
    line-height: 60px;
    font-weight: 700;
    color: var(--tw-white-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tw_service_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tw_service_tags a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--tw-white-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    padding: 5px 19.08px;
    border: 1px solid var(--tw-border-color2);
    border-radius: 30px;
    text-transform: capitalize;
}
.tw_service_tags a:hover{
    color: var(--tw-secondary-color);
    background: var(--tw-primary-color);
    border-color: var(--tw-body-color);
}

.tw_service_desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Image */
.tw_service_img {
    height: 350px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tw_service_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.tw_service_card:hover .tw_service_img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.tw_service_card .busuxAWBtn {
    margin-top: 10px;
}


/* ================== Service Query 04 =============== */
.servicelistItem04{
    position: relative;
    z-index: 9;
    opacity: 1;
    
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
.servicelistContent04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 57px 0 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.servicelistContent04 > *{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.servicelistContent04 .serviceListSerial{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 40px;
    margin-top: 30px;
}
.servicelistContent04:hover{
    padding-left: 40px;
    padding-right: 40px;
}
.servicelistContent04 .serviceListSerial span{
    display: inline-block;
    font-size: 15px;
    color: var(--tw-white-color);
    font-family: var(--tw-heading-font);
    line-height: 30px;
    font-weight: 500;
}
.servicelistContent04 h3{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    margin: 0;
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tw-white-color);
}
.servicelistContent04 h3 a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
.service-arrow-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin-top: 13px;
    font-size: 32px;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
    margin-left: auto !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.servicelistContent04:hover .service-arrow-icon{
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}
.service-arrow-icon svg{
    fill: inherit;
    width: 32px;
    height: auto;
}
.service-arrow-icon svg path{
    fill: inherit;
}


/*-----------------------------------------
/  18. Post Feature Image
/-----------------------------------------*/
.imgWidth_is_full .thumbImg img {
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.imgWidth_is_full img {
    -o-object-fit: cover;
       object-fit: cover;
}

/*-----------------------------------------
/  19. About Tab 
/-----------------------------------------*/
.tw_about01 {
    padding: 130px 0 0;
    background: #0A0A0A;
    position: relative;
    z-index: 2;
}

/* About Section  */
.tw_aboutcnt_rcol {
    padding-left: 40px;
}

.tw_aboutcnt_inner {
    position: relative;
    margin: 37px 0 0;
    padding: 21px 23px 0;
    border-top: 1px solid var(--tw-border-color);
}

/* shpae design  */
.about_center_shape {
    width: 630px;
    height: 630px;
    position: absolute;
    left: 23.33%;
    right: 43.85%;
    top: 6.79%;
    bottom: 88.89%;
    background: -webkit-radial-gradient(50% 50% at 50% 50%, rgba(107, 55, 255, 0.44) 0%, rgba(107, 55, 255, 0) 100%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(107, 55, 255, 0.44) 0%, rgba(107, 55, 255, 0) 100%);
    z-index: -1;
}

.tw_aboutcnt_rcol {
    padding: 0 12px 0 48px;
}

.tw_aboutcnt_inner__text {
    position: relative;
    margin: 0 0 0 6%;
    padding: 0 0 0 6%;
    border-left: 1px solid var(--tw-border-color2);
}

.tw_aboutcnt_inner__text h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--tw-primary-font);
    margin: 0 0 10px;
}

.tw_aboutcnt_inner__text p {
    color: var(--tw-body-color);
    margin: 0;
}

.tw_about_img_wrapper {
    width: 948px;
    height: 492px;
    -webkit-transform: translateX(19.7%);
            transform: translateX(19.7%);
}
.tw_about_img_wrapper {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    position: absolute;
    z-index: 1;
    max-width: 100vw;
    margin-left: 0px;
    will-change: transform;
}
.tw_shape_full_image{
  height: 100vh;
}


.aboutTabWrapper.tabSecStyle-1 {
    position: relative;
}

.aboutTabWrapper.tabSecStyle-1 .row .col-lg-6:nth-child(1) {
    padding-right: 94px;
}

.aboutTabWrapper.tabSecStyle-1 .row .col-lg-6:nth-child(2)>div {
    margin-left: -22px;
}

.aboutTabWrapper.tabSecStyle-2 .row .col-lg-6:nth-child(2) {
    padding-left: 94px;
}

.aboutTabWrapper.tabSecStyle-2 .row .col-lg-6:nth-child(1)>div {
    margin-right: -22px;
}

.aboutSec_title {
    position: relative;
    margin: 0 0 38px;
    padding: 141px 0 0;
}

.tabSecStyle-2 .aboutSec_title {
    margin-bottom: 59px;
}

.aboutSec_title h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 11px;
    text-transform: uppercase;
}

.tabSecStyle-2 .aboutSec_title p,
.tabSecStyle-2 .aboutSec_title h4 {
    color: rgba(0, 0, 0, 0.7);
}

.tabSecStyle-2 .aboutSec_title h2 {
    color: var(--tw-heading-color);
}

.aboutSec_title h2 {
    font-size: 52px;
    line-height: 62px;
    font-weight: 400;
    color: var(--tw-white-color);
    margin: 0 0 28px;
}

.aboutSec_title p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    margin: 0;
    padding-right: 90px;
}

.aboutTabSec_title {
    position: relative;
    margin: 0 0 38px;
}

.tabSecStyle-2 .aboutTabSec_title h3 {
    color: var(--tw-heading-color);
}

.tabSecStyle-2 .aboutTabSec_title p {
    color: rgba(0, 0, 0, 0.7);
}

.aboutTabSec_title h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    color: var(--tw-white-color);
    margin: 0 0 6px;
}

.aboutTabSec_title p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(255, 255, 255, .7);
    margin: 0;
    padding-right: 90px;
}

.aboutTabList {
    padding: 0 0 143px;
}

.aboutTabList ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.tabSecStyle-2 .aboutTabList {
    max-width: 547px;
}

.tabSecStyle-2 .aboutTabList ul:after {
    position: absolute;
    content: "";
    left: 79px;
    top: 8px;
    width: 1px;
    height: calc(100% - 16px);
    background: var(--tw-border-color);
}

.aboutTabList ul li:not(:last-child) {
    margin-bottom: 65px;
}

.tabSecStyle-2 .aboutTabList ul li:not(:last-child) {
    margin-bottom: 40px;
}

.aboutTabList .tab-link {
    padding: 0 110px 0 135px;
    position: relative;
    display: block;
}

.tabSecStyle-2 .aboutTabList .tab-link {
    padding: 0 110px 0 109px;
}

.aboutTabList .tab-link .tabIconWrap {
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 72px;
    color: rgba(255, 255, 255, .7);
    fill: rgba(255, 255, 255, .7);
}

.tabSecStyle-2 .aboutTabList .tab-link .tabIconWrap {
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 72px;
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
    left: auto;
}

.aboutTabList .tab-link .tabIconWrap svg {
    width: 72px;
    height: auto;
    fill: inherit;
    stroke: inherit;
}

.aboutTabList .tab-link span {
    display: block;
}

.tabSecStyle-2 .aboutTabList .tab-link .h4 {
    color: var(--tw-heading-color);
}

.tabSecStyle-2 .aboutTabList li:last-child .tab-link .p {
    padding-bottom: 0 !important;
}

.tabSecStyle-2 .aboutTabList .tab-link .p {
    color: var(--tw-body-color);
    padding-bottom: 25px;
}

.aboutTabList .tab-link .h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 0 0 14px;
}

.aboutTabList .tab-link .p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
}

.aboutTabWrapper.tabSecStyle-2 .tab-body,
.aboutTabWrapper.tabSecStyle-1 .tab-body {
    height: 100%;
}

.tab-body {
    display: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.tab-body.active {
    display: block;
}

.elementor .tab-body img,
.tab-body img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.tab-body.active img {
    -webkit-transition: .8s ease;
    transition: .8s ease;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.tab-link .tabItemCount {
    font-family: var(--tw-primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-heading-color);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    position: absolute;
    top: 8px;
    left: 0;
    padding-top: 15px;
    width: 80px;
    height: 100%;
    border-right: 1px solid transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.tab-link:hover .tabItemCount,
.tab-link.active .tabItemCount {
    border-color: var(--tw-primary-color);
}

.tab-link .tabItemCount .indicateor {
    color: rgba(28, 39, 52, .2);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}


.aboutTabInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 110px;
       -moz-column-gap: 110px;
            column-gap: 110px;
}

.tabSecStyle-3 .aboutTabSec_title {
    padding-top: 70px;
}

.tabSecStyle-3 .aboutTabSec_title p {
    padding: 0;
}

.tabSecStyle-3 .aboutTabList .tab-link {
    padding: 0 0 0 85px;
}

.tabSecStyle-3 .tab-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.tabSecStyle-3 .tab-body img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.tabSecStyle-3 .aboutTabList .tab-link .tabIconWrap svg {
    width: 52px;
    height: auto;
}

.tabSecStyle-3 .aboutTabList {
    padding: 0;
}




/* =================== SVG Drow ==================== */
.tw_arrowDrow_wrap svg {
    margin: 0 auto;
}

.tw_arrowDrow_wrap .draw-arrow {
    stroke-width: 5;
    stroke: var(--tw-border-w-color);
    fill: none;
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: draw;
    animation-name: draw;
}

.tw_arrowDrow_wrap .draw-arrow.tail-1 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.tw_arrowDrow_wrap .draw-arrow.tail-2 {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

@-webkit-keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}


/*-----------------------------------------
/  20. Process Step 
/-----------------------------------------*/
.processBox_wrapp {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    z-index: 1;
    overflow: hidden;
}

.process_items {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
    background: #FFF;
    border: unset;
    border-radius: 10px;
    padding: 0;
    padding: 0 20px 20px;
}

.precessBox_style1 .process_items {
    margin-top: 31px;
}

.precessBox_style1 .process_item-2 {
    margin-top: 111px;
}

.process_item__icon {
    position: relative;
    margin-top: -31px;
    width: 60px;
    height: 60px;
    border: 1px solid var(--tw-border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    background: var(--tw-white-color);
}

.process_item__icon i {
    position: relative;
}

.process-elementor-center .process_item__icon {
    margin-left: auto;
    margin-right: auto;
}

.process-elementor-end .process_item__icon {
    margin-left: auto;
}

.process_item__icon svg {
    width: 30px;
    height: auto;
}

.process_item__subtitle h4 {
    font-family: var(--tw-primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-body-color);
    margin: 23px 0 14px;
}

.process_item__title h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--tw-heading-color);
}

.process_item__desc p {
    margin-bottom: 21px;
}

.elementor .process_item__img img,
.process_item__img img {
    max-width: 100%;
    width: 100%;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}

/*==================== Box Style 02 ====================== */
.precessBox_style2 {
    background: transparent;
    position: relative;
    border-radius: unset;
}

.precessBox_style2:before {
    position: absolute;
    content: "";
    top: 50px;
    left: 50%;
    width: 68%;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: var(--tw-border-color);
    opacity: 1;
    
    -webkit-transition-duration: 1.4s;
            transition-duration: 1.4s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
}

.process_item__iconWrap {
    padding: 20px;
    background: #FFF;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    z-index: 99;
    position: relative;
}

.process_item__iconWrap .process_item__icon {
    margin: 0;
}

.precessBox_style2 .process_items {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 345px;
            flex: 0 0 345px;
    background: transparent;
}

.precessBox_style2 .process_item__title h2 {
    margin-bottom: 16px;
}

/*================= Box Style 03 ================== */
.precessBox_style3 .process_items {
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
}

.precessBox_style3 .process_items img {
    width: 100%;
    max-width: unset;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 100px;
}

.precessBox_style3 .process_item__title h2 {
    margin-bottom: 21px;
}

.process_separator {
    margin-top: 97px;
}

.process_separator:last-child {
    display: none;
}

.process_separator svg path:nth-child(1) {
    stroke: none !important;
}

.process_separator svg path:nth-child(2) {
    fill: none !important;
}

/* ================= Box Style 04 =================== */
.precessBox_style4 {
    position: relative;
    z-index: 2;
    -webkit-box-align: end;
        -ms-flex-align: end;
                -ms-grid-row-align: end;
            align-items: end;
    padding: 0 57px 93px 110px;
}

.precessBox_style4 .process_items {
    padding: 0;
    margin: 0;
    background: transparent;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 212px;
            flex: 0 0 212px;
}

.precessBox_style4 .process_item__img {
    margin: 0 0 30px;
}

.precessBox_style4 .process_item__img img {
    width: 136px;
    height: 136px;
    border-radius: 50%;
}

.precessBox_style4 .process_item__icon {
    background: #2E3845;
    color: #FFF;
    margin: 0 0 22px;
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.precessBox_style4 .process_item__icon svg {
    fill: #FFF;
    width: 24px;
    height: auto;
}

.process-elementor-center .precessBox_style4 .process_item__icon {
    margin-left: auto;
    margin-right: auto;
}

.process-elementor-end .precessBox_style4 .process_item__icon {
    margin-left: auto;
}

.precessBox_style4 .process_item__title h2 {
    font-family: var(--tw-heading-font);
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 0;
}

.precessBox_style4 .process_item-2 {
    margin-bottom: 12px;
}

.precessBox_style4 .process_item-3 {
    margin-bottom: 80px;
}

.precessBox_style4 .process_item-4 {
    margin-bottom: 216px;
}

/* ================= Box Style 05 =================== */
.precessBox_style5 .process_items {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 306px;
            flex: 0 0 306px;
    padding: 0;
    margin: 0;
    background: var(--tw-white-color);
}

.precessBox_style5 .process_item__subtitle h4 {
    font-family: var(--tw-primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-white-color);
    margin: 0;
    padding: 8px 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--tw-heading-color);
    border-radius: 5px;
    position: relative;
    z-index: 5;
}

.precessBox_style5 .process_item__icon {
    margin-top: 80px;
    margin-bottom: 22px;
    position: relative;
    background-color: var(--tw-white-color);
    z-index: 2;
}

.precessBox_style5 .process_item__icon:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    left: 50%;
    bottom: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #1C27341A;
    z-index: -1;
}

/*=================== Svg style =================== */
.drowing_svg1 {
    position: absolute;
    z-index: -1;
    left: 162px;
    top: 66px;
    max-width: 1017px;
    width: 100%;
}

.svg_processUp,
.process4_svg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

.process4_svg svg path {
    stroke: rgba(255, 255, 255, .1)
}

.process4_svg svg rect {
    fill: rgba(255, 255, 255, .1)
}

.svg_processUp {
    margin-bottom: 206px;
    left: 41px;
}

/*-----------------------------------------
/  21. Instagram Carousel
/-----------------------------------------*/
.instaCarousel {
    position: relative;
}

.instaCarousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.instaItem {
    position: relative;
}

.instaItem a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: unset;
    font-size: 32px;
    color: var(--tw-white-color);
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.owl-item.active.center .instaItem a {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
}

/*------------------------------------------------
/ 22. Skill / Progress Bar 
------------------------------------------------*/
.themWarSkillBar {
    position: relative;
}

.singleSkill {
    position: relative;
    margin: 0 0 28px;
}

.TSKB_2 .singleSkill {
    margin: 0;
}

.singleSkill p {
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-white-color);
    margin: 0 0 18px;
}

.TSKB_2 .singleSkill p {
    padding: 14px 0 0 27px;
    font-size: 12px;
    margin: 0;
    position: relative;
    z-index: 3;
}

.skillWrap {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, .05);
}
.TSKB_1 .skillWrap {
    -webkit-clip-path: polygon(0 0, 100% 0, 99.5% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 99.5% 100%, 0% 100%);
}
.TSKB_1 .skillWrap .skill {
    -webkit-clip-path: polygon(0 0, 100% 0, 99.5% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 99.5% 100%, 0% 100%);
}

.TSKB_2 .skillWrap {
    height: 40px;
    background: transparent;
}

.skillWrap .skill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--tw-white-color);
}

.TSKB_2 .skillWrap .skill {
    background-color: rgba(255, 255, 255, .05);
}

.TSKB_3 .skillWrap{
    height: 8px;
}

.TSKB_3 .singleSkill:not(:last-child){
    margin-bottom: 39px;
}
.TSKB_3 .singleSkill p{
    font-weight: 400;
    text-transform: uppercase;
    color: var(--tw-heading-color);
    font-family: var(--tw-heading-font);
    line-height: 1;
    margin: 0 0 14px;
}
.TSKB_3 .singleSkill .skill{
    overflow: unset !important;
}
.TSKB_3 .singleSkill .skill span {
    position: absolute;
    right: -13px;
    top: -28px;
    z-index: 99;
    color: inherit;
    font-size: 14px;
    font-weight: inherit;
    line-height: 1;
    font-family: var(--tw-heading-font);
}

/*------------------------------------------------
/ 23. Pricing Table
------------------------------------------------*/
.pricingPackage {
    position: relative;
    border: 1px solid rgba(28, 39, 52, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
}

.pricingPackage.pricingPackage_2 {
    padding: 48px 48px 30px 48px;
}

.activePlanLabel {
    position: absolute;
    left: 30px;
    top: -20px;
    z-index: 2;
    padding: 7px 25px;
    height: 40px;
    border-radius: 40px;
    background: #F54822;
    color: var(--tw-white-color);

}

.packageIcon {
    position: relative;
    stroke: var(--tw-primary-color);
    color: var(--tw-primary-color);
    font-size: 32px;
    margin: 0 0 22px;
}

.pricingPackage.pricingPackage_2 .packageIcon {
    fill: var(--tw-primary-color);
    color: var(--tw-primary-color);
    margin: 0 15px 0 0;
    font-size: 28px;
    position: relative;
    top: -2px;
}

.packageIcon i {
    color: inherit;
}

.packageIcon svg {
    height: 32px;
    width: auto;
    stroke: inherit;
}

.pricingPackage.pricingPackage_2 .packageIcon svg {
    stroke: none;
    fill: inherit;
    width: 24px;
    height: 24px;
}

.packageHeader {
    position: relative;
    margin: 0 0 20px;
}

.pricingPackage.pricingPackage_2 .packageHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 42px;
}

.packageHeader h2,
.packageHeader h3 {
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    margin: 0 0 3px;
}

.pricingPackage.pricingPackage_2 .packageHeader h2,
.pricingPackage.pricingPackage_2 .packageHeader h3 {
    margin: 0;
    text-transform: capitalize;
    line-height: 1;
}

.packageHeader p {
    margin: 0;
}

.packageBody {
    position: relative;
    background: var(--tw-gray-color);
    border-radius: 20px;
    padding: 23px 20px 23px 20px;
}

.pricingPackage_2 .packageBody {
    background: inherit;
    border-radius: 0;
    padding: 0;
}

.packagePrice {
    font-size: 52px;
    line-height: 1;
    text-transform: capitalize;
    padding: 0 0 19px;
    margin: 0 0 23px;
    border-bottom: 1px solid var(--tw-border-color);
}

.pricingPackage_2 .packagePrice {
    border-top: 1px solid var(--tw-border-color);
    border-bottom: none;
    padding: 44px 0 0;
    margin: 25px 0 0;
}

.packagePrice .period {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--tw-primary-font);
    font-weight: 400;
    color: var(--tw-heading-color);
    text-transform: none;
}

.packageFeatures {
    position: relative;
}

.packageFeatures>p {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 23px;
}

.packageFeatures ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.packageFeatures ul li {
    list-style: none;
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 0 31px;
}

.packageFeatures ul li:last-child {
    margin: 0;
}

.packageFeatures ul li .featureIcons {
    position: absolute;
    left: 0;
    top: -2px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    color: var(--tw-body-color);
    fill: var(--tw-body-color);
    font-size: 20px;
}

.packageFeatures ul li .featureIcons i {
    color: inherit;
}

.packageFeatures ul li svg {
    width: auto;
    height: 24px;
    fill: inherit;
    margin: 0 0 0 -2px;
}
.packageFeatures ul li svg path{
    stroke: inherit;
}
.packageFeatures ul li svg path{
    fill: inherit;
}
.pricingPackage .digilinkAWBtn {
    margin: 50px 0 0;
    width: calc(100% - 40px);
    border-radius: 12px;
    font-size: 18px;
}

.pricingPackage.pricingPackage_2 .digilinkAWBtn {
    margin: 48px 0 0;
    width: 100%;
}

.pricingGroupBtns {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 68px;
}

.pricingGroupBtns.buttonBottoms {
    margin: 68px 0 0;
}

.pricingGroupBtns button {
    background: var(--tw-gray-color);
    font-family: var(--tw-primary-font);
    color: var(--tw-primary-color);
    stroke: var(--tw-primary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    border: none;
    min-width: 98px;
    height: 60px;
    padding: 0 25px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.pricingGroupBtns button:first-child {
    border-radius: 60px 0 0 60px;
}

.pricingGroupBtns button:last-child {
    border-radius: 0 60px 60px 0;
}

.pricingGroupBtns button.active,
.pricingGroupBtns button:hover {
    background: var(--tw-primary-color);
    color: var(--tw-white-color);
    stroke: var(--tw-white-color);
}

.pricingGroupBtns button svg {
    stroke: inherit;
    width: 16px;
    height: auto;
    margin: 0 10px 0 0;
}

.pricingGroupBtns button i {
    color: inherit;
    margin: 0 10px 0 0;
}

@media(max-width: 1199px) and (min-width: 1024px) {
    .pricingPackage {
        padding: 50px 16px;
    }
}

@media(max-width: 575px) {
    .pricingPackage {
        padding: 50px 15px;
    }
}

.pricingPackage .pricPackageBtm{
    margin:40px 0 0;
}

/* ================== Pricing Package 03 =============== */
.pricingPackage_3{
    border-color: #F0F0F0;
    padding: 46px 38px 38px 38px;
    border-radius: 0;
    z-index: 2;
}
.pricingPackage_3:after{
    position: absolute;
    content: "";
    width: 105px;
    height: 90px;
    right: 26px;
    top: 26px;
    z-index: -1;
    background-image: url('../images//pricing-fixed-shape.svg');
    background-repeat: no-repeat;
    background-size: auto;
}
.pricingPackage_3 .activePlanLabel {
    font-size: 16px;
    line-height: 1;
    top: -18px;
    padding: 9px 15px;
    height: auto;
}
.pricingPackage_3 .packageHeader{
    margin: 0 0 39px;
}
.pricingPackage_3 .packageHeader h3{
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--tw-primary-font);
    font-weight: 600;
    color: var(--tw-heading-color);
    margin: 0 0 30px; 
}
.pricingPackage_3 .packageHeader p{
    font-size: 21px;
    line-height: 28px;
    font-weight: 400;
    color: var(--tw-heading-color);
    text-transform: capitalize;
}
.packageBody03{
    padding: 40px 42px 42px;
    border-radius: 0;
    background: #EEEEEE;
}
.packageBody03 .pricPackageBtm .digilinkAWBtn_2 > * {
    color: var(--tw-white-color);
}
.packageBody03 ul li{
    font-size: 14px;
    line-height: 26px;
    margin: 0 0 10px;
    padding: 0 0 0 24px;
    text-transform: capitalize;
}
.packageBody03 .packageFeatures ul li .featureIcons{
    font-size: 14px;
    line-height: 26px;
    top: 0;
}
.packageBody03 ul li svg{
    height: 12px;
    margin: 0;

}
.packageBody03 .packagePrice {
    margin: 20px 0 0;
    font-size: 64px;
    line-height: 74px;
    padding: 0 0 23px;
    border: 0;
}
.packageBody03 .packagePrice .period{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    font-family: inherit;
    text-transform: capitalize;
    margin: 0;
}

.packageBody03 .pricPackageBtm{
    margin:40px 0 0;
}

/* ================== Pricing Package 04 =============== */
.pricingPackage_4{
    border: 1px solid var(--tw-border-color);
    padding: 31px 40px 40px;
    border-radius: 0;
}
.activePlan.pricingPackage_4{
    border-color: var(--tw-primary-color);
    background: var(--tw-primary-color);
}
.pricingPackage_4 .packageHeader {
    margin: 0 0 43px;
}
.pricingPackage_4 .packageIcon {
    fill: var(--tw-white-color);
    stroke: var(--tw-white-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 10px 0 0;
    bottom: 6px;
}
.pricingPackage_4 .packageIcon svg{
    width: 8px;
    height: auto;
}
.pricingPackage_4 .packageIcon svg path{
    fill: inherit;
}
.pricingPackage_4 .packageHeader h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--tw-white-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: capitalize;
    margin: 0;
}
.pricingPackage_4 .packageHeader p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 26px;
}
.packageBody04  {
    background: transparent;
    padding: 0;
    margin: 0;
}
.packageBody04 .packagePrice {
    font-weight: 500;
    font-size: 65px;
    line-height: 1;
    padding: 21px 0 20px;
    color: var(--tw-white-color);
    border: 0;
    margin: 0 0 43px;
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-color: var(--tw-border-color);
}
.packageBody04 .packagePrice .period {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    font-family: inherit;
    margin: 0;
    color: rgba(161, 161, 161, 1);
}
.packageBody04 .packageFeatures ul li {
    margin: 0 0 14px;
    padding: 0 0 0 31px;
    font-size: 14px;
    color: rgba(161, 161, 161, 1);
}
.packageBody04 .packageFeatures ul li .featureIcons {
    font-size: 16px;
    line-height: 29px;
    top: 0;
}
.packageBody04 .digilinkAWBtn {
    margin: 18px 0 0;
    background: transparent;
    color: var(--tw-white-color);
    border-color: var(--tw-white-color);
    border-radius: 0;
}
.packageBody04 .pricPackageBtm{
    margin:40px 0 0;
}
.packageBody04 .digilinkAWBtn:hover{
    border-color: var(--tw-primary-color);
    color: var(--tw-secondary-color);
}
.pricingPackage_4 .activePlanLabel {
    position: absolute;
    right: -27px;
    left: auto;
    top: 19px;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
    padding: 8px 20px;
    height: 32px;
    border-radius: 40px;
    background: #0A0A0A;
    color: var(--tw-white-color);
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}
.pricingPackage_4.activePlan .packageHeader h2{
    color: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .packageHeader p{
    color: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .packagePrice{
    color: var(--tw-secondary-color);
    border-color: rgba(18, 18, 18, 0.1);
}
.pricingPackage_4.activePlan .packagePrice .period{
    color: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .packageFeatures ul li{
    color: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .packageFeatures ul li .featureIcons{
    color: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .digilinkAWBtn{
    color: var(--tw-secondary-color);
    border-color: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .digilinkAWBtn:hover{
    color: var(--tw-white-color);
    border-color: var(--tw-primary-color);
}
.pricingPackage_4.activePlan .digilinkBtnIcon,
.pricingPackage_4.activePlan .digilinkBtnCnt{
    color: var(--tw-white-color);
    border-color: var(--tw-secondary-color);
    background: var(--tw-secondary-color);
}
.pricingPackage_4.activePlan .digilinkBtn:hover .digilinkBtnIcon,
.pricingPackage_4.activePlan .digilinkBtn:hover .digilinkBtnCnt{
    color: var(--tw-primary-color);
    border-color: var(--tw-white-color);
    background: var(--tw-white-color);
}

/*------------------------------------------------
/ 24. Funfact
------------------------------------------------*/
/* ================== Funfact Style 01, 02, 03, 04 =============== */
.themeWarCounter {
    position: relative;
    width: 306px;
    height: 306px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    padding: 103px 0;
    margin: 0;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.themeWarCounter.twc_3 {
    width: auto;
    height: auto;
    padding: 50px 30px 50px 50px;
    background: #FFF;
}

.themeWarCounter.twc_3:hover {
    background-color: var(--tw-primary-color);
}

.themeWarCounter p {
    font-size: 18px;
    line-height: 28px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
    margin: 0;
}

.themeWarCounter.twc_3 .twc3Footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.themeWarCounter.twc_3 .twc3Footer p {
    font-size: 16px;
    line-height: 26px;
}

.themeWarCounter.twc_3 .twc3Footer p:first-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.themeWarCounter.twc_3 .twc3Footer p:last-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 0 0 0 8px;
}

.themeWarCounter.twc_3:hover .twc3Footer p:last-of-type {
    color: rgba(255, 255, 255, .7);
}

.themeWarCounter .countfact {
    font-size: 52px;
    line-height: 42px;
    background-color: var(--tw-primary-color);
    font-family: var(--tw-primary-font);
    margin: 0 0 30px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all ease 35ms;
    transition: all ease 35ms;
}

.themeWarCounter.twc_3 .countfact {
    font-size: 52px;
    line-height: 42px;
    margin: 0 0 147px;
}

.themeWarCounter.twc_3:hover .countfact {
    background-color: #FFF;
}

.themeWarCounter .countfact .suffix {
    position: relative;
    background-color: inherit;
    background-image: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.themeWarCounter2 {
    position: relative;
    background: rgba(79, 87, 98, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 19px 21px 19px 23px;
}

.twc2Header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.twc2Header p {
    margin: 0;
    font-weight: normal;
    color: #FFF;
}

.twc2Header .countfact {
    font-size: 72px;
    line-height: 1;
    margin: 0 0 55px auto;
    position: relative;
    top: -17px;

    background-color: #FFF;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.twc2Header .countfact .suffix {
    position: relative;
    background-color: inherit;
    background-image: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.twc2RatingDesc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 12px;
    line-height: 15px;
    color: #FFF;
    white-space: break-spaces;
}

.twc2RatingDesc>span {
    font-size: inherit;
    -webkit-columns: inherit;
       -moz-columns: inherit;
            columns: inherit;
}

.twc2RatingDesc i {
    font-size: 23px;
    line-height: 1;
    color: #FFF;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 2px 7px 0 0;
}

.twc2RatingDesc svg {
    width: 23px;
    height: 23px;
    stroke: #FFF;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 2px 7px 0 0;
}

/* ================== Funfact Style 04 =============== */
.themeWarCounter.twc_4 {
    position: relative;
    width: auto;
    height: auto;
    padding: 43px 0 40px 43px;
    border-top: 1px solid rgba(0,0,0,.20);
    border-radius: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.themeWarCounter.twc_4:before{
    position: absolute;
    content: "";
    left: 0;
    top: 58px;
    width: 30px;
    height: 30px;
    background: var(--tw-primary-color);
    -webkit-clip-path: polygon(100% 1%, 0 0, 0 100%);
            clip-path: polygon(100% 1%, 0 0, 0 100%);
}
.themeWarCounter.twc_4 h2{
    font-size: 128px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--tw-heading-font);
    margin: 0;
    color: var(--tw-heading-color);
    background-color: var(--tw-heading-color);
}
.themeWarCounter.twc_4 h2 span{
    color: inherit;
    font-family: inherit;
}
.twc4Footer {
    position: relative;
    text-align: left;
    margin: 0 0 14px 17px;
}
.twc4Footer h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--tw-heading-font);
    margin: 0;
    color: var(--tw-heading-color);
    margin-bottom: 17px;
}
.twc4Footer p{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--tw-body-color);
}
/* Funfact Style 05 */
.tw_Counter {
    --funfact_bdrWidth: 3px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    border: var(--funfact_bdrWidth) solid transparent;
    border-radius: 150px;
    padding: 20px 64.5px;
    min-height: 344px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.tw_Counter:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: -1;
    border-radius: inherit;
    background: #121310;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.tw_Counter:after{
    content: "";
    position: absolute;
    width: calc(100% + (var(--funfact_bdrWidth) * 2));
    height: calc(100% + (var(--funfact_bdrWidth) * 2));
    top:calc(var(--funfact_bdrWidth) * -1);
    left:calc(var(--funfact_bdrWidth) * -1);
    z-index: -2;
    border-radius: inherit;
    background: -webkit-linear-gradient(bottom, rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5));
    background: linear-gradient(0deg, rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.tw_Counter:hover:after{
    background: -webkit-linear-gradient(bottom, rgba(249,216,102,.4), rgba(10,10,10,.4));
    background: linear-gradient(0deg, rgba(249,216,102,.4), rgba(10,10,10,.4))
}

.tw_Counter .countfact {
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
    color: #FFFFFF;
    margin: 0 0 22px;
    min-width: 85px;
    text-align: center;
}

.tw_Counter .countfact .counter {
    display: inline-block;
}

.tw_Counter .countfact .suffix {
    display: inline-block;
    margin-left: 5px;
    position: relative;
}
.twc5Footer{
    position: relative;
}
.twc5Icon{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: 76px;
    background: transparent;
    font-size: 76px;
    margin: 0 0 23px;
    color: var(--tw-white-color);
}
.twc5Icon svg{
    width: 76px;
    height: 76px;
}
/*------------------------------------------------
/ 25. Circle Progress Bar
------------------------------------------------*/
.twCircleSkillWrap {
    position: relative;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.twCircleSkillWrap>p {
    color: var(--tw-heading-color);
    margin: 0 0 11px;
}

.twCircleSkillWrap.twcsw_2>p {
    color: var(--tw-heading-color);
    margin: 11px 0 0;
}

.twCircleSkill {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.innerCircle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.innerCircle canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.twCircleSkillWrap .theCounter {
    font-size: 13px;
    line-height: 26px;
    color: var(--tw-heading-color);
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


/*------------------------------------------------
/ 26. Video Image
------------------------------------------------*/
.videoWrap {
    position: relative;
    width: 100%;
    height: auto;
}

.videoWrap.vwOverlay:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 39, 52, .5);
    z-index: 1;
}

.videoWrap img {
    display: block;
    width: 100%;
    height: auto;
}

.videoWrap video {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.playTheVideo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 26px;
    color: #FFF;
    fill: #FFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.playTheVideo span.vidBtnLabel {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.playTheVideo span.vidBtnIcon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0 0 8px;
}

.playTheVideo span.vidBtnIcon .vidPausIcon {
    display: none;
}

.videoWrap.playing span.vidBtnIcon .vidPlayIcon {
    display: none;
}

.videoWrap.playing span.vidBtnIcon .vidPausIcon {
    display: block;
}

.playTheVideo i {
    font-size: 18px;
    line-height: 1;
}

.playTheVideo svg {
    width: auto;
    height: 18px;
    fill: inherit;
    stroke: inherit;
}

.playTheVideo:hover {
    background: var(--tw-primary-color);
}

.cursor-pointer {
    cursor: pointer;
}
.playTheVideo_3 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    width: 663px;
    height: 78px;
    border-radius: 0;
    background: transparent;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: var(--tw-heading-font);
    font-size: 90px;
    font-weight: 500;
    line-height: 1;
    color: #FFF;
    fill: #FFF;
    gap: 30px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.playTheVideo_3 .vidBtnLabel{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.playTheVideo_3:hover .vidBtnLabel{
    color: var(--tw-primary-color);
}
.playTheVideo_3 .vidBtnIcon{
    width: 78px;
    height: 78px;
    background: #111111;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 26px;
    color: #FFF;
    fill: #FFF;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.playTheVideo_3 .vidBtnIcon svg{
    width: 16px;
    height: auto;
    fill: inherit;
}
.playTheVideo_3:hover .vidBtnIcon{
    background: var(--tw-primary-color);
}

/*------------------------------------------------
/ 27. Animated Video Image
------------------------------------------------*/
.videoWrap_inner{
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.videoPlaySec_title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--tw-secondary-font);
    color: var(--tw-white-color);
    width: 100%;
}
.videoPlaySec_title > span{
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    letter-spacing: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.videoPlaySec_title > span.videoPlaySec_title__shape_wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 238px;
    height: 64px;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 15px;
    z-index: 10;
}
.videoPlaySec_title__shape {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    z-index: 3;
}
.elementor .videoPlaySec_Hero img,
.videoPlaySec_Hero img,
.elementor .videoPlaySec_title__shape img,
.videoPlaySec_title__shape img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videoPlaySec_Hero{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 0;
  pointer-events: none;
}
.videoPlaySec_Hero img {
  -webkit-transform: scale(1.18);
          transform: scale(1.18);
}
.videoPlaySec_Hero_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}


/*------------------------------------------------
/ 28. Video Button
------------------------------------------------*/
.videoButtonWrap {
    position: relative;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.videoButtonWrap-aligns-right .videoButtonWrap {
    text-align: right;
}

.videoButtonWrap-aligns-center .videoButtonWrap {
    text-align: center;
}

.videoPlayBtn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--tw-white-color);
}

.videoButtonWrap-aligns-center .videoPlayBtn {
    text-align: left;
}

.videoButtonWrap-aligns-right .videoPlayBtn span:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
}

.videoButtonWrap-aligns-right .videoPlayBtn span:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.videoPlayBtn:hover {
    color: var(--tw-secondary-color);
}

.videoPlayBtn span:first-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 23.5px;
    margin-right: 9px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.videoPlayBtn span:first-child svg {
    height: 23.5px;
    width: auto;
    fill: var(--tw-white-color);
}

.videoPlayBtn:hover span:first-child svg {
    fill: var(--tw-secondary-color);
}

.videoPlayBtn span:first-child i {
    font-size: inherit;
}

.videoPlayBtn span:last-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.videoPlayBtn_2{
    width: 104px;
    height: 104px;
    background: var(--tw-white-color);
    border-radius: 50%;
}
.videoPlayBtn_2.showBtnAnim{
    animation: shadows 1.4s linear infinite;
    -webkit-animation: shadows 1.4s linear infinite;
    -moz-animation: shadows 1.4s linear infinite;
}
.videoPlayBtn_2 span:first-child i,
.videoPlayBtn_2 span:first-child svg{
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
    stroke: var(--tw-heading-color);
}
.videoPlayBtn_2 svg path{
    stroke: inherit;
}
.videoPlayBtn_2 span:first-child{
    margin: 0;
}

/*------------------------------------------------
/ 29. Contact Form
------------------------------------------------*/
.contactForm {
    position: relative;
}
.contactForm h3{
    font-size: 24px;
    line-height: 30px;
    font: 700;
    text-transform: uppercase;
    margin: 0 0 35px;
}
.contactForm p {
    margin: 0;
}

.contactForm p label {
    font-size: 16px;
    line-height: 20px;
    display: block;
}

.contactForm p>label>span {
    color: #F54822;
}

.contactForm p .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contactForm input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="file"]), .contactForm textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    margin: 0 0 25px;
    padding: 11px 30px 11px;
    color: #616670;
    background: transparent;
}

.contactForm input.wpcf7-not-valid:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="file"]),
.contactForm textarea.wpcf7-not-valid {
    border-bottom-color: #F54822;
}
.wpcf7 form .wpcf7-response-output {
    margin: 30px 0 0 0;
    font-size: 14px;
    line-height: 24px;
}
.contactForm textarea {
    height: 150px;
    resize: none;
}

.contactForm ::-webkit-input-placeholder {
    color: rgba(79, 87, 89, .5);
    opacity: 1;
    
}

.contactForm ::-moz-placeholder {
    color: rgba(79, 87, 89, .5);
    opacity: 1;
    
}

.contactForm :-ms-input-placeholder {
    color: rgba(79, 87, 89, .5);
    opacity: 1;
    
}

.contactForm ::placeholder {
    color: rgba(79, 87, 89, .5);
    opacity: 1;
    
}

.contactForm ::-ms-input-placeholder {
    color: rgba(79, 87, 89, .5);
}

.contactForm input:focus,
.contactForm textarea:focus {
    outline: 0;

}

.contactForm .wpcf7-checkbox,
.contactForm .wpcf7-radio {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 3px 0 0;
    margin: 0 0 16px;
}

.contactForm .wpcf7-checkbox .wpcf7-list-item,
.contactForm .wpcf7-radio .wpcf7-list-item {
    margin: 0 18px 0 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--tw-body-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.contactForm .wpcf7-checkbox .wpcf7-list-item>label,
.contactForm .wpcf7-radio .wpcf7-list-item>label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    cursor: pointer;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--tw-body-color);
}

.contactForm .wpcf7-checkbox input[type=checkbox],
.contactForm .wpcf7-radio input[type=radio] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    appearance: none;
    outline: none;
    content: none;
    position: relative;
    top: 4px;
    margin-right: 8px;
}

.contactForm .wpcf7-radio input[type=radio] {
    top: 5px;
}

.contactForm .wpcf7-checkbox input[type=checkbox]:before {
    font-family: "FontAwesome";
    content: "";
    font-size: 10px;
    line-height: 13px;
    color: transparent !important;
    background: #FFF;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(28, 39, 52, .1);
    border-radius: 0;
    text-align: center;
}

.contactForm .wpcf7-checkbox input[type=checkbox]:checked:before {
    content: "\f00c";
}

.contactForm .wpcf7-checkbox.wpcf7-not-valid input[type=checkbox]:before {
    border-color: #F54822;
}

.contactForm .wpcf7-radio input[type=radio]:before {
    content: '';
    color: transparent !important;
    background: #FFF;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(28, 39, 52, .1);
    border-radius: 50%;
    text-align: center;
}

.contactForm .wpcf7-radio.wpcf7-not-valid input[type=radio]:before {
    border-color: #F54822;
}

.contactForm .wpcf7-radio input[type=radio]:after {
    content: '';
    color: transparent !important;
    background: var(--tw-primary-color);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    opacity: 0;
    visibility: hidden;
}

.contactForm .wpcf7-checkbox input[type=checkbox]:checked:before {
    background: var(--tw-primary-color);
    color: var(--tw-white-color) !important;
}

.contactForm .wpcf7-radio input[type=radio]:checked:before {
    border-color: var(--tw-primary-color);
}

.contactForm .wpcf7-radio input[type=radio]:checked:after {
    opacity: 1;
    
    visibility: visible;
}

.contactForm input[type=file] {
    margin: 8px 0 24px;
}

.contactForm input[type=file]::file-selector-button {
    border: 1px solid rgba(28, 39, 52, .1);
    padding: 2px 15px;
    font-size: 15px;
    line-height: 26px;
    border-radius: 4px;
    color: var(--tw-body-color);
    background-color: var(--tw-gray-color);
    margin-right: 15px;
    cursor: pointer;
}

.contactForm .wpcf7-acceptance {
    position: relative;
}

.contactForm .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.contactForm .wpcf7-acceptance .wpcf7-list-item label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    cursor: pointer;
}

.contactForm .wpcf7-acceptance .wpcf7-list-item label a {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.contactForm .wpcf7-acceptance input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    appearance: none;
    outline: none;
    content: none;
    position: relative;
    top: 5px;
    margin-right: 8px;
}

.contactForm .wpcf7-acceptance input[type=checkbox]:before {
    font-family: "FontAwesome";
    content: "\f00c";
    font-size: 10px;
    line-height: 13px;
    color: transparent !important;
    background: #FFF;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(28, 39, 52, .1);
    border-radius: 0;
    text-align: center;
}

.contactForm .wpcf7-acceptance input[type=checkbox]:checked:before {
    background: var(--tw-primary-color);
    color: var(--tw-white-color) !important;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.contactForm input[type="submit"] {
    color: var(--tw-white-color);
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: 50px;
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--tw-heading-font);
    font-weight: 500;
    background: var(--tw-primary-color);
    border: none;
    padding: 0 37px;
    line-height: 26px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
    margin:0;
}

.contactForm input[type="submit"]:hover {
    background: var(--tw-secondary-color);
    color: var(--tw-primary-color);
}

.contactForm button[type="submit"] {
    height: 64px;
    border-radius: 50px;
    margin: 12px 0 0;
    width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    margin: 30px 0 0 0;
}

.wpcf7-spinner {
    background: var(--tw-primary-color);
    opacity: 1;
    

    margin: 0 0 0 8px;
    position: relative;
    top: 7px;
}

.wpcf7-spinner:before {
    background-color: #FFF;
}

.contactForm .select2-container {
    margin-bottom: 6px;
}

.contactForm .select2-container--default .select2-selection--single {
    height: auto !important;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(28, 39, 52, .1);
    position: relative
}

.contactForm .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 3px 0 3px !important;
    color: rgba(79, 87, 89, 1);
}

.contactForm .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 0;
    text-align: right;
    margin: 0;
    width: 8px;
}

.contactForm .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.contactForm .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: "\eafd";
    font-family: 'Digilink' !important;
    color: rgba(79, 87, 89, 1);
    position: relative;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
}

.select2-dropdown {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-radius: 0.25rem;
    border: 1px solid rgba(28, 39, 52, .1) !IMPORTANT;
    border-radius: 4px !important;
}

.select2-search--dropdown {
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 5px 8px 5px !important;
    color: rgba(79, 87, 89, 1);
    border-radius: 4px;
    border: 1px solid rgba(28, 39, 52, .1);
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: 0;
}

.select2-results__option {
    font-size: 14px;
    line-height: 24px;
    color: rgba(79, 87, 89, 1);
    padding: 7px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #f1f5f9;
    color: var(--tw-primary-color);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--tw-primary-color);
    color: var(--tw-white-color);
}

.contactForm .select2 .select2-selection {
    height: auto !important;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(28, 39, 52, .1);
}

.contactForm .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 !important;
    margin: 0 0 -8px;
}

.contactForm .select2-container--default .select2-search--inline input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="file"]) {
    border: none;
    margin: 0;
    line-height: 27px;
    padding: 0;
}

.contactForm .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e2e8f0;
    border: none;
    border-radius: 3px;
    cursor: default;
    float: left;
    margin-right: 2px;
    margin-top: 0;
    margin-bottom: 2px;
    padding: 0px 10px;
    font-size: 14px;
    line-height: 27px;
    color: var(--tw-body-color);
}

.contactForm .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--tw-body-color);
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
    border-right: 1px solid #d0d0d0;
    padding-right: 9px;
}
.contactForm button.digilinkAWBtn_2{
    border: unset;
    outline:unset;
    box-shadow: unset;
    padding: unset;
    border-radius: unset;
}
.contactForm button.digilinkAWBtn_2{
    height: auto;
    margin: unset;
}

/*------------------------------------------------
/ 30. Image Carousel
------------------------------------------------*/
.digilinkCarouselImage {
    position: relative;
    overflow: hidden;
}

.digilinkCarouselImage:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(28, 39, 52, .5);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: opacity 0.2s, transform 0.3s;
    transition: opacity 0.2s, transform 0.3s, -webkit-transform 0.3s;
}

.digilinkCarouselImage img {
    -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: opacity 0.2s, -webkit-transform 0.3s;
    transition: opacity 0.2s, transform 0.3s;
    transition: opacity 0.2s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
}

.digilinkCarouselImage:hover:after {
    -webkit-transform: scale3d(1, 1, 0);
            transform: scale3d(1, 1, 0);
    opacity: 0;
}

.digilinkCarouselImage:hover img {
    -webkit-transform: scale3d(-1, 1, -2);
            transform: scale3d(-1, 1, -2);
    opacity: 1;
    
}


/*------------------------------------------------
/ 31. Map Section
------------------------------------------------*/
.contact-googleMap {
    position: relative;
}

.contact-googleMap iframe {
    max-width: 100%;
    width: 100%;
    height: 612px;
    display: block;
}

.blackAndWhite iframe {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}


/*-----------------------------------------
/  32. Mailchimp 4WP
/-----------------------------------------*/
.subscribeForm {
    position: relative;
}

.subscribeForm form {
    margin: 0;
    padding: 0;
}

.subscribeForm.SF_2 form .mc4wp-form-fields,
.subscribeForm.SF_3 form .mc4wp-form-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.subscribeForm.SF_3 form .mc4wp-form-fields {
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
}

.subscribeForm input[type="email"] {
    position: relative;
    border: none;
    padding: 17px 28px;
    margin: 0;
    border-radius: 100px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--tw-heading-color);
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .1);
}

.subscribeForm input[type="email"]::-webkit-input-placeholder {
    color: #4F5762;
}

.subscribeForm input[type="email"]::-moz-placeholder {
    color: #4F5762;
}

.subscribeForm input[type="email"]:-ms-input-placeholder {
    color: #4F5762;
}

.subscribeForm input[type="email"]::placeholder {
    color: #4F5762;
}

.subscribeForm.SF_2 input[type="email"],
.subscribeForm.SF_3 input[type="email"] {
    background: transparent;
    padding: 0 0 16px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--tw-heading-color);
    border-bottom: 1px solid rgba(28, 39, 52, .1);
    border-radius: 0;
}

.subscribeForm.SF_2 input[type="email"]::-webkit-input-placeholder,
.subscribeForm.SF_3 input[type="email"]::-webkit-input-placeholder {
    color: var(--tw-body-color);
}

.subscribeForm.SF_2 input[type="email"]::-moz-placeholder,
.subscribeForm.SF_3 input[type="email"]::-moz-placeholder {
    color: var(--tw-body-color);
}

.subscribeForm.SF_2 input[type="email"]:-ms-input-placeholder,
.subscribeForm.SF_3 input[type="email"]:-ms-input-placeholder {
    color: var(--tw-body-color);
}

.subscribeForm.SF_2 input[type="email"]::placeholder,
.subscribeForm.SF_3 input[type="email"]::placeholder {
    color: var(--tw-body-color);
}

.subscribeForm.SF_3 input[type="email"] {
    font-size: 16px;

    padding: 0 0 20px 0;
}

.subscribeForm.SF_4 input[type="email"] {
    padding: 17px 0 17px 28px;
    background: rgba(0, 0, 0, .1);
}

.subscribeForm.SF_5 input[type="email"] {
    background: rgba(0, 0, 0, .1);
    font-size: 16px;
    padding: 17px 0 17px 28px;
}

.subscribeForm.SF_6 input[type="email"] {
    padding: 17px 0 17px 28px;
    border-color: #000;
}

.subscribeForm input[type="email"]:focus {
    outline: 0;
    box-shadow: none;
}

.subscribeForm [type="submit"] {
    background: transparent;
    padding: 17px 28px;
    margin: 0;
    border: none;
    color: #000;
    font-size: 16px;
    line-height: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.subscribeForm [type="submit"]::-moz-placeholder,
.subscribeForm [type="submit"]::-moz-placeholder {
    color: var(--tw-body-color);
}

.subscribeForm [type="submit"]::placeholder,
.subscribeForm [type="submit"]::-moz-placeholder {
    color: var(--tw-body-color);
}

.subscribeForm.SF_2 [type="submit"],
.subscribeForm.SF_3 [type="submit"] {
    position: relative;
    top: auto;
    right: auto;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--tw-heading-color);
    border-bottom: 1px solid rgba(28, 39, 52, .1);
    padding: 5px 0 21px;
}

.subscribeForm.SF_2 [type="submit"] {
    font-size: 16px;
    line-height: 1;
    padding: 6px 0 20px;
}

.subscribeForm.SF_3 [type="submit"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 0 0 20px;
}

/* icon style  */
.subscribeForm [type="submit"] i {
    font-size: 18px;
    color: var(--tw-heading-color);
    display: inline-block;
    line-height: 26px;
}

.subscribeForm [type="submit"] i.digilink-paper-plane,
.subscribeForm [type="submit"] span {
    display: none;
}

.subscribeForm.SF_2 [type="submit"] i,
.subscribeForm.SF_3 [type="submit"] i.digilink-paper-plane {
    display: none;
}

.subscribeForm.SF_2 [type="submit"] span,
.subscribeForm.SF_3 [type="submit"] span {
    display: block;
}

.subscribeForm [type="submit"]:hover {
    color: var(--tw-primary-color);
}

.subscribeForm [type="submit"]:hover i {
    color: var(--tw-primary-color);
}

.subscribeForm.SF_4 [type="submit"] i.digilink-paper-plane,
.subscribeForm.SF_5 [type="submit"] i.digilink-long-arrow-right,
.subscribeForm.SF_5 [type="submit"] span,
.subscribeForm.SF_6 [type="submit"] i.digilink-paper-plane {
    display: none;
}

.subscribeForm.SF_4 [type="submit"] i.digilink-long-arrow-right,
.subscribeForm.SF_4 [type="submit"] span,
.subscribeForm.SF_5 [type="submit"] i.digilink-paper-plane,
.subscribeForm.SF_6 [type="submit"] i.digilink-long-arrow-right,
.subscribeForm.SF_6 [type="submit"] span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 2;
    -webkit-transition: transform ease 500ms;
    -webkit-transition: -webkit-transform ease 500ms;
    transition: -webkit-transform ease 500ms;
    transition: transform ease 500ms;
    transition: transform ease 500ms, -webkit-transform ease 500ms;
}

.subscribeForm.SF_4 [type="submit"],
.subscribeForm.SF_5 [type="submit"],
.subscribeForm.SF_6 [type="submit"] {
    background: var(--tw-primary-color);
    color: var(--tw-white-color);
    font-size: 14px;
    line-height: 100%;
    font-weight: 700;
    border: 1px solid transparent;
    text-transform: capitalize;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 20px 12px 18px;
    border-radius: 100px;
    overflow: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    top: 4px;
    right: 4px;
}

.subscribeForm.SF_4 [type="submit"] {
    gap: 8px;
    color: var(--tw-white-color);
}
.subscribeForm.SF_4 [type="submit"] i{
    color: var(--tw-white-color)
}

.subscribeForm.SF_5 [type="submit"] {
    padding: 17px 28px;
    background: transparent;
    border: unset;
    top: 0;
    right: 0;
}

.subscribeForm.SF_6 [type="submit"] {
    color: var(--tw-heading-color);
    position: relative;
    margin-top: 20px;
    right: 0;
    top: 0;
    padding: 16px 28px;
    background: rgba(0, 0, 0, .1);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    gap: 8px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.subscribeForm.SF_5 [type="submit"]:hover{
    color: rgba(255, 255, 255, .7);
}
.subscribeForm.SF_6 [type="submit"] span{
    -webkit-transition: unset;
    transition: unset;
}
.subscribeForm.SF_6 [type="submit"]:hover {
    color: var(--tw-white-color);
    background: var(--tw-primary-color);
}
.subscribeForm.SF_6 [type="submit"]:hover i{
    color: var(--tw-white-color);
}
.subscribeForm.SF_4 [type="submit"]:hover{
    color: var(--tw-heading-color);
}
.subscribeForm.SF_4 [type="submit"]:hover i{
    color: var(--tw-heading-color);
}

.subscribeForm.SF_4 [type="submit"] i,
.subscribeForm.SF_5 [type="submit"] i,
.subscribeForm.SF_6 [type="submit"] i {
    font-weight: 400;
    margin-right: 2px;
    z-index: 2;
    -webkit-transition: transform ease 500ms;
    -webkit-transition: -webkit-transform ease 500ms;
    transition: -webkit-transform ease 500ms;
    transition: transform ease 500ms;
    transition: transform ease 500ms, -webkit-transform ease 500ms;
}

.mc4wp-response {
    position: relative;
    padding: 15px 0 0;
    margin: 0;
}

.mc4wp-response .mc4wp-alert {
    background: #cfe2ff;
    color: #052c65;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #9ec5fe;
    padding: .65rem 1rem;
}

.mc4wp-response .mc4wp-alert.mc4wp-success {
    color: #0a3622;
    background: #d1e7dd;
    border-color: #a3cfbb;
}

.mc4wp-response .mc4wp-alert.mc4wp-error {
    color: #58151c;
    background: #f8d7da;
    border-color: #f1aeb5;
}

.mc4wp-response .mc4wp-alert p {
    margin: 0;
}

/*-----------------------------------------
/  33. Tw Nav Menu
/-----------------------------------------*/
.tw_nav_title {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    font-family: var(--tw-heading-font);
    font-weight: 400;
    color: var(--tw-heading-color);
    margin-bottom: 40px;
}

.tw_nav_title+div {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.tw_mobile_nav_menu .menu,
.tw_nav_menu .menu {
    box-shadow: unset;
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
    position: relative;
    visibility: visible;
    opacity: 1;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    z-index: 999;
    pointer-events: unset;
    -webkit-transform: translate(0);
            transform: translate(0);
    min-width: unset;
}
.tw_mobile_nav_menu .menu{
    gap: 0px;
}
.tw_mobile_nav_menu ul{
    list-style: none;
    padding: 0;
    color: var(--tw-white-color);
}
.tw_mobile_nav_menu .menu li,
.tw_nav_menu .menu li {
    width: 100%;
    display: block;
}

.tw_mobile_nav_menu ul li a,
.tw_mobile_nav_menu .menu li a,
.tw_nav_menu .menu li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--tw-primary-font);
    text-transform: capitalize;
    color: var(--tw-body-color);
    margin: 0;
    padding: 0;
    display: inline-block;
}

.tw_nav_menu .menu li a:hover {
    color: var(--tw-primary-color);
}

.tw_mobile_nav_menu,
.tw_sidebarNav {
    position: relative;
}
.tw_mobile_nav_menu .menu
.tw_sidebarNav .menu {
    row-gap: 0;
}
.tw_mobile_nav_menu .menu li,
.tw_sidebarNav .menu li {
    padding: 4.5px 0;
    position: relative;
}
.tw_mobile_nav_menu .menu li a,
.tw_sidebarNav .menu li a {
    font-size: 18px;
}
.tw_mobile_nav_menu .menu li ul li a,
.tw_sidebarNav .menu li ul li a {
    font-size: 16px;
}
.tw_mobile_nav_menu .menu li a:hover,
.tw_sidebarNav .menu li a:hover {
    color: rgba(255, 255, 255, .5);
}
.tw_mobile_nav_menu .digilinkDP_arrow,
.tw_sidebarNav .digilinkDP_arrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--tw-white-color);
    position: absolute;
    margin: 0;
    right: 0;
    top: 6px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
    cursor: pointer;
}

.tw_mobile_nav_menu .menu li.active>.digilinkDP_arrow,
.tw_sidebarNav .menu li.active>.digilinkDP_arrow {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
}

.tw_mobile_nav_menu .menu li a,
.tw_sidebarNav .menu li a {
    color: var(--tw-white-color);
}

.tw_mobile_nav_menu .menu li ul,
.tw_sidebarNav .menu li ul {
    margin-top: 5px;
    padding: 0 0 0 25px;
    display: none;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.tw_mobile_nav_menu .menu li.active>ul ,
.tw_sidebarNav .menu li.active>ul {
    visibility: visible;
    opacity: 1;
    
    pointer-events: unset;
}
.tw_mobile_nav_menu .menu ul ul ul li{
    padding-bottom: 0px;
}



/*-----------------------------------------
/  34. Tw Nav Showcase
/-----------------------------------------*/
.tw_navShowcase_thumb {
    position: relative;
    display: block;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}
.tw_navShowcase_thumb:hover{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}

.tw_navShowcase_thumb h2 {
    font-size: 18px;
    line-height: 28px;
    display: inline-block;
    margin: 0;
    font-weight: 400;
    font-family: var(--tw-heading-font);
    text-transform: capitalize;
    letter-spacing: .2px;
    word-spacing: 2px;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
    background-image: -webkit-linear-gradient(left, currentColor 0, currentColor 100%);
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size .4s cubic-bezier(.51, .5, .07, .99), color .2s ease-out;
    transition: background-size .4s cubic-bezier(.51, .5, .07, .99), color .2s ease-out;
    background-size: 0% 1px;
    background-position: 100% calc(50% + 10px);
}
.tw_navShowcase_thumb:hover h2{
    background-size: 100% 1px;
    background-position: 0 calc(50% + 10px);
    color: #4F5762;
}
.tw_navShowcase_thumb .tw_nav_thumbImg a{
    margin: 0;
    padding: 0;
    display: inline-block;
}
.tw_nav_thumbImg {
    position: relative;
    margin: 0 0 12px;
}
.elementor .tw_nav_thumbImg img,
.tw_nav_thumbImg img {
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.tw_hd_letter_animated .tw-e-character {
    display: inline-block;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.tw_hd_letter_animated.tw-animated .tw-e-character {
    opacity: 1;
    
    -webkit-transform: translateY(0);
            transform: translateY(0);
}




/*-----------------------------------------
/  35. History List
/-----------------------------------------*/
.historyListWrap{
    padding: 0 0 0 33px;
    position: relative;
}
.historyListWrap:before{
    position: absolute;
    content: "";
    left: 7px;
    top: 10px;
    width: 1px;
    height: calc(100% - 22px);
    background: #B4B4B4;
}
.historyItem{
    position: relative;
    margin-bottom: 34px;
}
.historyItem:last-child{
    margin-bottom: 0 !important;
}
.hiYear h2{
    color: var(--tw-primary-color);
  -webkit-text-fill-color: var(--tw-white-color);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--tw-primary-color);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  margin: 0 0 19px;
}
.hiYear h2:before {
    position: absolute;
    content: "";
    left: -33px;
    top: 9px;
    width: 16px;
    height: 16px;
    background: var(--tw-primary-color);
    border: 2px solid var(--tw-white-color);
    border-radius: 50%;
}
.hiContent h3{
    font-size: 24px;
    color: #1E2025;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.hiContent p{
    font-size: 18px;
    line-height: 36px;
    color: var(--tw-body-color);
    margin: 0;
}

/*-----------------------------------------
/  36. Post Meta
/-----------------------------------------*/
.singlePostMeta{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 18px;
}
.post_cat a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    font-family: var(--tw-primary-font);
    text-transform: uppercase;
    color: #FCFCFF;
    padding: 7px 20px;
    border-radius: 40px;
    background: var(--tw-primary-color);
}
.post_cat a:hover{
    background: var(--tw-heading-color);
    color: var(--tw-white-color);
}
.postDate {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #929292;
    margin: 0;
    font-weight: 400;
    font-family: var(--tw-primary-font);
}
.postComment {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: #929292;
    line-height: 18px;
    font-family: var(--tw-primary-font);
    margin-left: 6px;
    text-transform: uppercase;
}
.postComment a{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
.postComment:after{
    position: absolute;
    content: "";
    left: -13.5px;
    right: auto;
    width: 4px;
    height: 4px;
    top: 50%;
    background: #929292;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.postAuthor {
    font-size: 12px;
    font-weight: 400;
    color: #929292;
    line-height: 18px;
    font-family: var(--tw-primary-font);
    text-transform: uppercase;
}
.digilinkViewCount {
    font-size: 12px;
    font-weight: 400;
    color: #929292;
    line-height: 18px;
    font-family: var(--tw-primary-font);
    text-transform: uppercase;
}
.digilinkViewCount i{
    margin-right: 8px;
}

/*-----------------------------------------
/  37. BlockQuote
/-----------------------------------------*/
blockquote.wp_blockQuote {
    padding: 21.5px 60px 21.5px 160px;
    background: rgba(255, 255, 255, .10);
    position: relative;
    line-height: 1;
}
.quote-icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 125px;
    height: 100%;
    background: var(--tw-primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.wp_blockQuote p{
    font-family: var(--tw-heading-font);
    color: var(--tw-heading-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 11px;
}
.wp_blockQuote cite{
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--tw-primary-color);
    text-transform: capitalize;
    font-style: normal;
    margin: 0;
    word-spacing: 8px;
    padding-left: 50px;
}
.wp_blockQuote i,
.wp_blockQuote svg{
    position: absolute;
}
.wp_blockQuote i{
    font-size: 50px;
    color: var(--tw-secondary-color);
}
.wp_blockQuote svg{
    width: 50px;
    height: auto;
    fill: var(--tw-secondary-color);
}
.wp_blockQuote svg path{
    stroke: inherit;
    fill: inherit;
}

/*-----------------------------------------
/  38. Awards Widget
/-----------------------------------------*/
.award_header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}
.award_header > *{
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
}
.award_header .award_list{
    width: 18.5%;
}
.award_header .award_title,
.award_header .award_nomination{ 
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-white-color);
    font-family: var(--tw-primary-font);
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}
.award_header .award_title{
    width: 37.875%;
}
.award_header .award_nomination{
    width: 32.25%;
}
.award_header .award_time{
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-white-color);
    font-family: var(--tw-primary-font);
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    width: 11.375%;
}
.award_body{
    position: relative;
}
.swipeHvImage2 img.swipeimage{
    position: fixed;
    top: 0;
    left: 0;
    max-width: 143px;
    width: 100%;
    min-height: 80px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 10px;
}
.award_cnt_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid;
    border-color: var(--tw-border-color);
    padding: 25px 0 24px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px; 
    position: relative;
    z-index: 9;
    opacity: 1;
    
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.award_cnt_list:last-child{
    border-bottom: 1px solid;
    border-color: var(--tw-border-color);
}
.award_cnt_list:hover{
    padding-left: 30px;
    padding-right: 30px;
}
.award_cnt_list > *{
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
}
.award_cnt_list .award_cnt_title,
.award_cnt_list .award_cnt_name{ 
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-white-color);
    font-family: var(--tw-primary-font);
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}
.award_cnt_list .award_cnt_title{
    width: 37.875%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.award_cnt_list .award_cnt_name{
    width: 32.25%;
}
.award_cnt_list .award_cnt_num,
.award_cnt_list .award_cnt_date{
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-white-color);
    font-family: var(--tw-primary-font);
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}
.award_cnt_list .award_cnt_num{
    width: 18.5%;
}
.award_cnt_list .award_cnt_date{
    width: 11.375%;
}
/*============== Award Style 02  ============== */
.awardsWrapper2 {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
}
.awardCard_01 {
    position: relative;
    max-width: 760px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 72px 70px 53px 60px;
    background: #000;
    border: 1px solid rgba(255,255,255, .13);
    border-radius: 40px;
}
.awardCard_01_cnt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 58px;
       -moz-column-gap: 58px;
            column-gap: 58px;
}
span.awardCard_01_cnt_list {
    font-size: 34px;
    line-height: 44px;
    font-family: var(--tw-heading-font);
    font-weight: 700;
    color: var(--tw-secondary-color);
    background: var(--tw-primary-color);
    width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    height: 120px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.awardCard_01_cnt_title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--tw-white-color);
    margin: -7px 0 7px;
}
.awardCard_01_cnt_description{
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: #A1A1A1;
    margin: 0 0 -6px;
}
.awardCard_01_ftr {
    position: relative;
    overflow: hidden;
    margin-top: 122px;
}
.awardCard_01_cnt_year{
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--tw-white-color);
    margin: 0;
    position: relative;
    text-align: right;
    z-index: 2;
}
.awardCard_01_cnt_year span{
    position: relative;
    background: #000;
    display: inline-block;
    padding: 0 0 0 20px;
}
.awardCard_01_cnt_year:before{
    position: absolute;
    content: "";
    width: calc( 100% - 20px);
    height: 2px;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: rgba(255, 255, 255, .20);
    z-index: -1;
}
.awardCard_01_cnt_year:after{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    right: auto;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: var(--tw-primary-color);
    z-index: 2;
    border-radius: 50%;
}
/*============== Award Style 03 ==============*/
.awardCards3 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border-bottom: 1px solid #202020;
    padding: 46px 0 52px;
    position: relative;
    z-index: 9;
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}
.awardCards3 img.swipeimage{
    position: absolute;
    top: 50%;
    left: 10px;
    max-width: 144px;
    width: 100%;
    max-height: 152px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 10px;
}
.award_subtitle03 {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    margin: 0;
}
.award_title03 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin: 0;
}
.award_description03 {
    font-size: 18px;
    line-height: 29px;
    margin: 12px 0 0;
}
.award_date {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: #CCCCCC;
    margin: 0;
}
/*-----------------------------------------
/  39. Post Tags
/-----------------------------------------*/
.postTags{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap:10px;
}
.postTags h3{
    font-size: 18px;
    line-height: 36px;
    margin: 0;
}
.postTags a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    font-family: var(--tw-primary-font);
    color: var(--tw-body-color);
    padding: 7px 22px;
    border-radius: 40px;
    background: #F8F7FC;
}
.postTags a:hover{
    background: var(--tw-primary-color);
    color: var(--tw-white-color);
}
.postTagsList{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.postTagsList a{
    display: inline-block;
    width: auto;
    height: 41px;
    line-height: 41px;
    background: transparent;
    color: #ffffff;
    padding: 0 17px;
    border-radius: 5px;
    border: 1px solid rgba(227, 227, 227, 0.15);
    font-size: 16px !important;
    font-weight: 400;
    font-family: var(--tw-primary-font);
    text-transform: capitalize;
}
.postTagsList a:hover{
    background: var(--tw-primary-color);
    color: var(--tw-secondary-color);
    border-color: var(--tw-primary-color);
}
/*-----------------------------------------
/  40. Social Share
/-----------------------------------------*/
.footerSocial{
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}
.footerSocial h3{
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    font-weight: 700;
    font-family: var(--tw-heading-font);
    text-transform: capitalize;
}
.ftSocial__items{
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}
.ftSocial__items a{
    font-size: 16px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 35px;
    height: 35px;
    background: var(--tw-heading-color);
    border-radius: 50%;
    color: #111111;
    fill: #111111;
}
.ftSocial__items a:hover{
    background: var(--tw-primary-color);
}
.ftSocial__items a svg{
    fill: inherit;
}
.ftSocial__items a svg path{
    fill: inherit;
}

/*-----------------------------------------
/  41. Post Pagination
/-----------------------------------------*/
.tw_fticon_list_items {
    margin: 0;
    padding: 0;
    list-style: none;
}
.tw_fticon_list_item {
    padding: 14px 0 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.tw_fticon_list_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}
.tw_fticon_list_item .tw_fticon_list_text {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
}
.tw_fticon_list_item i {
    font-size: 14px;
    margin-right: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.tw_fticon_list_item a:hover {
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
}
.tw_fticon_list_item:hover .tw_fticon_list_icon {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
}
.tw_fticon_list_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.tw_fticon_list_icon svg{
    width: 14px;
    height: auto;
    fill: inherit;
}
.tw_fticon_list_icon svg path{
    fill: inherit;
}
/*-----------------------------------------
/  32. Post Pagination
/-----------------------------------------*/
.pagePagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pagePagination a{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 360px;
}
.pagePagination a:hover i,
.pagePagination a:hover h3{
    color: var(--tw-primary-color);
}
.pagePagination a i,
.pagePagination a h3{
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
a.nextPost,
a.prevPost {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
a.nextPost{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
a.nextPost > *,
a.prevPost > * {
    -webkit-box-flex:  0;
        -ms-flex:  0 0 auto;
            flex:  0 0 auto;
}
.pagePagination a i{
    font-size: 18px;
    color: #C4C3D6;
} 
a.prevPost i{
    margin-right: 19px;
}
a.nextPost i{
    margin-left: 19px;
}
a.prevPost img{
    margin-right: 17px;
}
a.nextPost img{
    margin-left: 17px;
}
span.pstNavdate {
    display: block;
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    color: #929292;
    text-transform: uppercase;
    font-family: var(--tw-primary-font);
    margin: 0 0 13px;
}
.postNav_cnt{
    width: calc(100% - 116px);
}
.postNav_cnt h3{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: var(--tw-heading-color);
    margin: 0;
}
.nextPost .postNav_cnt h3{
    text-align: right;
}




/*-----------------------------------------
/  42. All Sidebar Widgets
/-----------------------------------------*/

/* Search Widget  */
.searchForm {
    position: relative;
}
.searchForm>.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.blogPostStatic .wp-block-search__input::-webkit-input-placeholder,
.searchForm input::-webkit-input-placeholder {
    color: #A1A1A1;
}

.blogPostStatic .wp-block-search__input::-moz-placeholder,
.searchForm input::-moz-placeholder {
    color: #A1A1A1;
}

.blogPostStatic .wp-block-search__input:-ms-input-placeholder,
.searchForm input:-ms-input-placeholder {
    color: #A1A1A1;
}

.blogPostStatic .wp-block-search__input::placeholder,
.searchForm input::placeholder {
    color: #A1A1A1;
}

.blogPostStatic .wp-block-search__button:hover,
.searchForm button:hover {
    color: var(--tw-primary-color);
}
.searchForm button .bxSearchText{
    display: none;
}

/* About me Sidebar Widget  */
.sidebar_autWrap {
    position: relative;
}

.sidebar_authead {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 19px;
    margin: 0 0 23px;
}

.sidebar_authead:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100% ;
    height: 1px;
    background: var(--tw-border-color);
}

.elementor .sidebar_authead img,
.sidebar_authead img {
    max-width: 100%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.sidebar_authName {
    position: relative;
    padding-left: 27px;
}

.sidebar_authName:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    height: 46px;
    width: 1px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: var(--tw-border-color);
}

.sidebar_authName h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--tw-heading-color);
    color: var(--tw-heading-color);
    margin: 0;
}

.sidebar_authName h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--tw-body-color);
    font-family: var(--tw-primary-font);
    margin: 0;
}

.sidebar_autbody p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 20px;
}

.sidber_autSocial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
}

.sidber_autSocial .social-icon-link {
    width: unset;
    height: unset;
    background: unset;
    color: var(--tw-heading-color);
    fill: var(--tw-heading-color);
    font-size: 17px;
}
.sidber_autSocial .social-icon-link svg{
    width: 17px;
    height: auto;
    fill: inherit;
}

.sidber_autSocial .social-icon-link:hover,
.sidber_autSocial .social-icon-link:hover svg {
    color: var(--tw-primary-color);
    fill: var(--tw-primary-color);
    background: transparent;
}


/* Add Banner Widget */
.addBanner {
    position: relative;
    height: 100%;
    height: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}
.addBanner_inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
}
.elementor .addBanner img,
.addBanner img {
    max-width: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 580px;
    overflow: hidden;
}
.sidebar_bnr_cnt{
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-clip-path: polygon(50% 0%, 100% 30%, 101% 101%, 0 100%, 0 30%);
            clip-path: polygon(50% 0%, 100% 30%, 101% 101%, 0 100%, 0 30%);
    background: rgba(31, 33, 45, 0.8);
    padding: 77px 74px 36px;
    text-align: center;
}
.sidebar_bnr_cnt h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.sidebar_bnr_contact{
    padding: 10px 10px 10px 78px;
    position: relative;
    text-align: left;
    display: inline-block;
}
.sidebar_bnr_contact i {
    font-size: 53px;
    color: var(--tw-primary-color);
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 0;
}
.sidebar_bnr_contact p {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0;
}
.sidebar_bnr_contact a {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}
.sidebar_bnr_contact a:hover{
    color: var(--tw-primary-color);
}
/*-----------------------------------------
/  43. All Footer Widgets
/-----------------------------------------*/
.fw_widgetTitle {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--tw-white-color);
    font-family: var(--tw-heading-font);
    margin: 0 0 32px;
    text-transform: uppercase;
}


/* Footer Navigation  */
/* Footer Navigation  */
.aboutFooterNav {
    position: relative;
}

.aboutFooterNav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aboutFooterNav ul li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    font-family: var(--tw-primary-font);
    text-transform: capitalize;
}

.aboutFooterNav ul li a:hover {
    color: var(--tw-white-color);
}

.aboutFooterNav ul li {
    margin-bottom: 11px;
}

.aboutFooterNav ul li:last-child {
    margin-bottom: 0px !important;
}

.aboutFooterNav.isInlineNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 50px;
    row-gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aboutFooterNav.isInlineNav ul li {
    position: relative;
    line-height: 1;
    margin: 0;
}

.aboutFooterNav.isInlineNav.separator ul li:after {
    position: absolute;
    content: "";
    top: 50%;
    left: auto;
    right: -25px;
    width: 1px;
    height: 8px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
}

.aboutFooterNav.isInlineNav.separator ul li:last-child:after {
    display: none !important;
}

/* footer Info .  */
.footerInfo {
    position: relative;
}

.footerInfo h3 {
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-body-color);
    margin: 0 0 8px;
    font-weight: 400;
    font-family: var(--tw-primary-font);
}
.footerInfo p {
    font-size: 18px;
    line-height: 29px;
    color: var(--tw-white-color);
    margin: 0;
    font-weight: 400;
}
.footerInfo a {
    font-size: 18px;
    line-height: 29px;
    color: var(--tw-white-color);
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
    display: inline-block;
}

.footerInfo a:hover {
    color: var(--tw-primary-color);
}

.footerInfo2 {
    position: relative;
    background: #4F5762;
    padding: 25px 33px 23px 114px;
    -webkit-transition: all ease 350ms;
    transition: all ease 350ms;
}

.footerInfo2:hover {
    margin-top: -20px;
    padding-top: 45px;
}

.footerInfo2 h3 {
    font-size: 16px;
    line-height: 26px;
    color: var(--tw-white-color);
    margin: 0 0 5px;
}

.footerInfo2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.footerInfo2 ul li {
    line-height: 1;
}

.footerInfo2 a {
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    margin: 0;
    display: inline-block;
}

.footerInfo2 a:hover {
    color: var(--tw-white-color);
}

.footerInfo2 .info_icon {
    position: absolute;
    bottom: 40px;
    left: 30px;
    font-size: 38px;
    color: var(--tw-white-color);
    fill: var(--tw-white-color);
}

.elementor-ftInfoI-align-right .footerInfo2 .info_icon {
    left: auto;
    right: 30px;
}

.footerInfo2 .info_icon svg {
    width: 38px;
    height: auto;
    fill: inherit;
}

.elementor-ftInfoI-align-right .footerInfo2 {
    padding: 25px 114px 23px 33px;
}

.elementor-ftInfoI-align-right .footerInfo2 {
    text-align: right;
}

.elementor-ftInfoI-align-right .footerInfo2 ul {
    -webkit-box-align: end;
        -ms-flex-align: end;
            -ms-grid-row-align: flex-end;
        align-items: flex-end;
}

/*================ Info Items 3 Style =============== */
.footerInfo3{
    position: relative;
    background: rgba(249, 249, 249, 0.1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.info_items3 {
    position: relative;
    display: block;
}

.info_items3 .info_icon {
    position: relative;
    width: 60px;
    height: 60px;
    float: left;
    background: #111111;
    font-size: 15px;
    border-radius: 15px;
    color: #FFFFFF;
    fill: #FFFFFF;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
}
.elementor-ftInfoI-align-right .info_items3{
    text-align: right;
}
.elementor-ftInfoI-align-right .info_items3 .info_icon {
    float: right;
    margin-right: 0;
    margin-left: 20px;
}   
span.info_icon svg {
    width: 15px;
    height: auto;
    fill: inherit;
}
.info_items3 p.infoLable {
    font-size: 16px;
    text-transform: capitalize;
    color: #616670;
    position: relative;
    margin: 0 0 3px;
    font-weight: 400;
    line-height: 29px;
}
.info_items3 p.infoCnt {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
    margin: 0;
    font-weight: 900;
    line-height: 29px;
}
.info_items3 a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
    margin: 0;
    font-weight: 900;
    line-height: 29px;
}
.info_items3 a:hover{
    color: var(--tw-primary-color);
}

/* Footer LatestPost  */
.fwLatestPost {
    position: relative;
    margin: 0 0 30px;
    min-height: 80px;
    padding: 0 0 0 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.fwLatestPost> a{
    position: absolute;
    left: 0;
    top:0;
}
.fwLatestPost p {
    font-size: 12px;
    margin: 0 0;
    line-height: 18px;
    color: #929292;
    text-transform: uppercase;
    margin: -3px 0 9px;
}

.fwLatestPost h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    font-family: var(--tw-heading-font);
    margin: 0;
    color: var(--tw-white-color);
}

.fwLatestPost h3 a {
    color: inherit;
    display: inline-block;
}

.fwLatestPost h3 a:hover {
    color: var(--tw-primary-color);
}




/*-----------------------------------------
/  44. Shape Image
/-----------------------------------------*/
.layer_img img{
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
}
.layer_img {
    position: relative;
}
.left_top{
    left:0;
    right: auto;
}
.right_top {
    left: auto;
    right: 0;
}
.left_bottom {
    top: auto;
    bottom: 0;
}
.right_bottom {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}
.animation_swing{
    -webkit-animation: digilinkSwing 3s linear infinite;
    animation: digilinkSwing 3s linear infinite
}
.animation_shake{
    -webkit-animation: shake 22s infinite both;
    animation: shake 22s infinite both;
}
.anim_rotate{
    -webkit-animation: welAnim 7s linear infinite;
    animation: welAnim 7s linear infinite;
}
.scroll_layer_img{
    position: relative;
}
.scroll_into_view{
    position: relative;
    display: inline-block;
}
.scroll_into_view img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    position: relative;
    z-index: 1;
    max-width: 100vw;
    margin-left: 0px;
    will-change: transform;
    -webkit-transform-origin: center center;
            transform-origin: center center;
}

/*-----------------------------------------
/  Css Animation. 
/-----------------------------------------*/
@-webkit-keyframes digilinkSwing{
    0%{
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
    50%{
      -webkit-transform: scaleY(1.1);
              transform: scaleY(1.1);
    }
    100%{
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
 }
 
 @keyframes digilinkSwing{
    0%{
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
    50%{
      -webkit-transform: scaleY(1.1);
              transform: scaleY(1.1);
    }
    100%{
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
 }

 

/*-----------------------------------------
/  45. List Icon
/-----------------------------------------*/
.tw_icon_list_items{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.tw_icon_list_item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--tw-body-color);
    fill: var(--tw-body-color);
    position: relative;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
}
.tw_icon_list_items.tw_inline_items{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-inline: -8px;
}
.tw_icon_list_items.tw_inline_items .tw_icon_list_item:nth-last-child(1):after{
    display: none !important;
}
.tw_icon_list_item:after{
    content: "";
    border-color: #ddd;    
    inset-inline-start: 0;    
    inset-block-end: 0;
    position: absolute;
    width: 100%;
}
.tw_icon_list_items.tw_inline_items .tw_icon_list_item:after {
    border-width: 0;
    border-inline-start-width: 1px;
    border-style: solid;
    height: 100%;
    inset-inline-end: -8px;
    inset-inline-start: auto;
    position: relative;
    width: auto;
}
.tw_icon_list_item a{
    font-size: 16px;;
    color: 1;
    font-family: var(--tw-primary-font);
    font-weight: 400;
    color: var(--tw-body-color);
    fill: var(--tw-body-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.tw_icon_list_icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    inset-block-start: 0px;
    color: inherit;
    fill: inherit;
}
.tw_icon_list_icon > *{
    position: relative;
}
.tw_icon_list_icon i{
    font-size: 16px;
    line-height: 1;
}
.tw_icon_list_icon svg{
    width: 16px;
    height: auto;
    fill: inherit;
}
.tw_icon_list_item svg path{
    stroke: inherit;
    fill: inherit;
}
.tw_icon_list_text{
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-padding-start: 5px;
       -moz-padding-start: 5px;
            padding-inline-start: 5px;
    position: relative;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
}


/*-----------------------------------------
/  46. Experience Card
/-----------------------------------------*/
.tw_experience_card{
    position: relative;
    border: 1px solid rgba(227, 227, 227, 0.15);
    padding: 40px 45px 38px;
    border-radius: 20px;
    background: #0A0A0A;
    overflow: hidden;
}
.tw_experience_card .number{
    font-family: var(--tw-primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: var(--tw-secondary-color);
    position: relative;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--tw-primary-color);
    position: absolute;
    left: -9px;
    top: -7px;
}
.tw_experience_card h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 3px;
}
.tw_experience_card p{
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: var(--tw-white-color);
    margin-bottom: 0;
    font-family: var(--tw-body-font);
}

@media (max-width: 1365px) and (min-width: 1024px) {
    .scroll_into_view {
        width: calc(100vw - 160px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}

@media (max-width: 1023px) {
    .scroll_into_view {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .scroll_into_view img {
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .tw_shape_full_image{
        display: none !important;
    }
}