:root {
    --w3e-body-color: #121212;
    --w3e-heading-color: #222;
    --w3e-primary-color: #F9895B;
    --w3e-primary-color-rgb: 249, 137, 91;
    --w3e-secondary-color: #5F6F52;
    --w3e-accent-foreground-color: #fff;
    --w3e-lightOrange-color: #FF824C;
    --w3e-white-color: #fff;
    --w3e-dark-color: #000;
    --w3e-gray-color: #686262;
    --w3e-lightgray-color: #F7F7F7;
    --page-nav-color: #343434;
    --w3e-common-btn-bg: var(--w3e-primary-color);
    --w3e-common-btn-hover-bg: #EBEBEB;

    --w3e-primary-gradient-color-1: #290E58;
    --w3e-primary-gradient-color-2: #5355A5;

    --w3e-gradient-primary: linear-gradient(271.66deg, var(--w3e-primary-gradient-color-1), 13.13%, var(--w3e-primary-gradient-color-2) 80.85%);
    --w3e-gradient-primary-hover: linear-gradient(271.66deg, var(--w3e-primary-gradient-color-2), 13.13%, var(--w3e-primary-gradient-color-1) 80.85%);

    --w3e-secondary-gradient-color-1: #FF1E89;
    --w3e-secondary-gradient-color-2: #FFA424;
    --w3e-gradient-secondary: linear-gradient(69.04deg, var(--w3e-secondary-gradient-color-1) -24.55%, var(--w3e-secondary-gradient-color-2) 138.49%);
    --w3e-gradient-secondary-hover: linear-gradient(69.04deg, var(--w3e-secondary-gradient-color-2) -24.55%, var(--w3e-secondary-gradient-color-1) 138.49%);

    --w3e-btn-border-radius: 6px;
    --w3e-btn-padding-x: 1rem;
    --w3e-btn-padding-y: 0.826rem;
    --w3e-header-background-color: #1C1724;

    --bs-body-color: var(--w3e-body-color, #121212);
    --bs-primary: var(--w3e-primary-color);
    --bs-secondary: var(--w3e-secondary-color);
    --bs-link-color-rgb: var(--w3e-primary-color-rgb);

    --e-global-typography-text-font-family: var(--bs-body-font-family);
    --e-global-color-text: var(--w3e-body-color);
}

html{
    overflow-x: hidden;
}
body {
    font-family: var(--bs-body-font-family, "Montserrat", "Lato", sans-serif);
    color: var(--w3e-body-color, #121212);
	--bs-body-font-weight: 300;
    overflow-x: hidden;
}

.container-fullwidth{
    max-width: 100%;
    padding: 0px 18px;
}

.container-fluid{
    max-width: 100%;
    padding: 0px 15px;
}

h1,h2,h3,h4,h5,h6{
    font-family: var(--bs-headings-font-family, "Montserrat", "Lato", sans-serif);
    font-weight: 500;
}
.line-through {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}
.color-primary {
    color: var(--w3e-body-color);
}
.color-accent {
    color: var(--w3e-primary-color);
}
.link-accent {
    color: var(--w3e-primary-color);
}
.link-accent:hover {
    color: var( --w3e-lightOrange-color);
}
.color-white {
    color: var(--w3e-white-color)
}
.cursor-pointer {
    cursor: pointer;
}
.list-style-none {
    list-style: none;
}

.transition-base{
    transition: all 0.25s ease-in-out;
}

.br-25{
    border-radius: 25px;
}

.form-control{
    padding: 0.75rem;
}

.btn-common {
    background-color: var(--w3e-common-btn-bg);
    color: #fff; 
    border: 0;
    outline: 0;
}

.btn-common:hover, .btn-common:active {
	--bs-btn-active-bg: var(--w3e-common-btn-hover-bg);
    background-color: var(--w3e-common-btn-hover-bg);
    color: var(--bs-navbar-color); 
}

.btn-outline-common {
    border: 1px solid var(--bs-navbar-active-color);
}

.btn {
    --bs-btn-padding-x: var(--w3e-btn-padding-x);
    --bs-btn-padding-y: var(--w3e-btn-padding-y);
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-border-radius: var(--w3e-btn-border-radius);
    text-transform: uppercase;
    line-height: 1.2;
    fill: currentColor;
    width: fit-content;
}

.btn-tra{
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: transparent;
}

button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
    box-shadow: none;
}

.btn-primary{
    --bs-btn-bg: var(--w3e-primary-color);
    --bs-btn-border-color: var(--w3e-primary-color);
    --bs-btn-hover-bg: var(--w3e-secondary-color);
    --bs-btn-hover-border-color: var(--w3e-secondary-color);
    --bs-btn-active-bg: var(--w3e-secondary-color);
    --bs-btn-active-border-color: var(--w3e-secondary-color);
}

.btn-outline-primary {
    --bs-btn-color: var(--w3e-primary-color);
    --bs-btn-border-color: var(--w3e-primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--w3e-primary-color);
    --bs-btn-hover-border-color: var(--w3e-primary-color);
    --bs-btn-active-bg: var(--w3e-primary-color);
    --bs-btn-active-border-color: var(--w3e-primary-color);
    --bs-btn-disabled-color: var(--w3e-primary-color);
    --bs-btn-disabled-border-color: var(--w3e-primary-color);
}

.btn-tra-primary{
    --bs-btn-color: var(--w3e-primary-color);
    --bs-btn-hover-color: var(--w3e-secondary-color);
}

.btn-tra-secondary{
    --bs-btn-color: var(--w3e-secondary-color);
    --bs-btn-hover-color: var(--w3e-primary-color);
}

.btn-tra-white{
    --bs-btn-color: var(--w3e-white-color);
    --bs-btn-hover-bg: var(--w3e-primary-color);
    --bs-btn-active-bg: var(--w3e-primary-color);
}

.btn-gradient-primary{
    background: var(--w3e-gradient-primary);
    --bs-btn-padding-y: 1.0625rem;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-border-width: 0;
}

.btn-gradient-primary:hover{
    background: var(--w3e-gradient-primary-hover);
}

.btn-secondary{
    --bs-btn-bg: var(--w3e-secondary-color);
    --bs-btn-border-color: var(--w3e-secondary-color);
    --bs-btn-hover-bg: var(--w3e-primary-color);
    --bs-btn-hover-border-color: var(--w3e-primary-color);
    --bs-btn-active-bg: var(--w3e-primary-color);
    --bs-btn-active-border-color: var(--w3e-primary-color);
}

.btn-outline-secondary {
    --bs-btn-color: var(--w3e-secondary-color);
    --bs-btn-border-color: var(--w3e-secondary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--w3e-secondary-color);
    --bs-btn-hover-border-color: var(--w3e-secondary-color);
    --bs-btn-active-bg: var(--w3e-secondary-color);
    --bs-btn-active-border-color: var(--w3e-secondary-color);
    --bs-btn-disabled-color: var(--w3e-secondary-color);
    --bs-btn-disabled-border-color: var(--w3e-secondary-color);
}

.btn-gradient-secondary{
    background: var(--w3e-gradient-secondary);
    --bs-btn-padding-y: 1.0625rem;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-border-width: 0;
}

.btn-gradient-secondary:hover{
    background: var(--w3e-gradient-secondary-hover);
}


.btn-light {
    --bs-btn-bg: var(--w3e-white-color);
    --bs-btn-border-color: var(--w3e-white-color);
    --bs-btn-hover-bg: var(--w3e-white-color);
    --bs-btn-hover-border-color: var(--w3e-white-color);
    --bs-btn-active-bg: var(--w3e-white-color);
}

.btn-dark {
    --bs-btn-bg: var(--w3e-dark-color);
    --bs-btn-border-color: var(--w3e-dark-color);
    --bs-btn-hover-bg: var(--w3e-dark-color);
    --bs-btn-hover-border-color: var(--w3e-dark-color);
    --bs-btn-active-bg: var(--w3e-dark-color);
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    background-color: var(--w3e-primary-color);
    border: medium none;
    font-size: 1rem;
    color: #fff;
    padding: var(--w3e-btn-padding-y) var(--w3e-btn-padding-x);
    border-radius: var(--w3e-btn-border-radius) !important;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.view-all-link{
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    text-transform: uppercase;
    color: var(--w3e-view-all-link-color);
    transition: all 0.3s ease-in-out;
}
.view-all-link:hover{
    color: var(--w3e-primary-color);
    --w3e-view-all-link-color: var(--w3e-primary-color);
}
.view-all-link:hover::before{
    width: 30px;
    right: -45px;
}
.view-all-link:hover::after{
    right: -47px;
}
.view-all-link::before, .view-all-link::after {
    content: '';
    margin: 0;
    opacity: 1!important;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    transition: all 0.3s ease-in-out;
}

.view-all-link::before {
    position: absolute;
    width: 20px;
    height: 2px;
    right: -35px;
    top: calc(50% - 1px);
    background: var(--w3e-view-all-link-color, #fff);
}
.view-all-link::after {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-left: 7px solid var(--w3e-view-all-link-color, #fff);
    border-bottom: 7px solid transparent;
    left: auto;
    height: 2px;
    right: -37px;
    top: calc(50% - 7px);
}

.w3e-bg-image{
    background-color: #5355A50D;
    background-image: var(--w3e-bg-image);
    background-repeat: no-repeat;
    background-size: cover;
}

.ult-button-content-wrapper{
    display: flex;
}

.ult-button-content-wrapper svg{
    width: 1em;
    height: auto;
}

.btn-group-xl>.btn, .btn-xl {
    --bs-btn-padding-y: 1.25rem;
    --bs-btn-padding-x: 1.75rem;
    --bs-btn-font-size: 2rem;
    --bs-btn-border-radius: 0.938rem;
    font-weight: 500;
}

.form-control:focus {
    --bs-border-color: var(--w3e-secondary-color);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--w3e-secondary-color);
    outline: 0;
    box-shadow: none;
}

.arrow-top::before, .arrow-top::after {
    content: '';
    margin: 0;
    opacity: 1!important;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    transition: all 0.3s ease-in-out;
}
.arrow-top::before {
    position: absolute;
    width: 2px;
    height: 16px;
    left: calc(50% - 1px);
    top: calc(50% - 6px);
    background: var(--w3e-arrow-color);
}
.arrow-top::after {
    position: absolute;
    width: 0;
    border-top: 7px solid transparent;
    border-left: 7px solid var(--w3e-arrow-color);
    border-bottom: 7px solid transparent;
    left: auto;
    height: 2px;
    left: calc(50% - 3px);
    top: calc(50% - 12px);
    transform: rotate(-90deg);
}

.ult-slider-pagination .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-inactive-opacity: 0.3;
    --swiper-pagination-bullet-inactive-color: var(--w3e-secondary-color);
    --swiper-pagination-color: var(--w3e-secondary-color);
}

/* nav */
.header-area{
    background-color: var(--w3e-header-background-color);
    transition: all 0.5s ease-in-out;
}
.header-area.transparent-header {
    background: transparent;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--wp-admin--admin-bar--height);
    width: 100%;
    z-index: 9999;
    transition: all 0.1s ease-in-out;
}
.header-area.sticky {
    background-color: var(--w3e-header-background-color);
    top: var(--wp-admin--admin-bar--height, 0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.header-area .container-fluid{
    padding: 0px 20px;
}

.header-area .offcanvas-menu{
    top: var(--wp-admin--admin-bar--height);
}

.header-area .logo {
    width: 200px;
}

.header-area .main-logo {
    display: block;
}

.header-area .scroll-logo {
    display: none;
}

.header-area .phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-nav-link-color);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.header-area .call-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #2C2D3538;
    border-radius: 50%;
}

.header-area.transparent-header:not(.sticky) .navbar-toggler {
   --bs-navbar-toggler-border-color: #fff;
}

.header-area .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-area .navbar-toggler {
    --bs-navbar-toggler-border-color: transparent;
    padding: 0;
	border: 0;
}

.main-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.header-area.sticky ~ .w3e-page-banner{
    padding-top: 250px;
}

.navbar {
    --bs-navbar-color: var(--page-nav-color);
    --bs-navbar-active-color: var(--w3e-white-color);
    --bs-navbar-hover-color:var(--bs-navbar-active-color);
    --bs-navbar-brand-margin-end: 0;
    padding: 20px 0px;
}

.header-area.sticky .navbar{
    padding: 20px 0px;
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--w3e-white-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
}

.header-area .navbar-nav .nav-item .nav-link{
    position: relative;
}

.header-area .navbar-nav .nav-item .nav-link::before{
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    background-color: var(--w3e-white-color);
    left: 10px;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}

.header-area .navbar-nav .nav-item .nav-link:hover::before{
    width: calc(100% - 20px);
}

.header-area .navbar-nav .nav-item .nav-link,
.header-area .navbar-nav .nav-item .dropdown-item{
    font-size: 1rem;
    font-weight: 400;
}

.transparent-header:not(.sticky) .nav-link {
    --bs-nav-link-color: #fff;
    --bs-nav-link-hover-color: var(--w3e-white-color);
    --bs-nav-link-active-color: var(--w3e-white-color);
}

.navbar-nav .nav-item.active .nav-link::before{
    width: calc(100% - 20px);
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--w3e-primary-color);
    --bs-dropdown-link-hover-bg: var(--w3e-primary-color);
    --bs-dropdown-link-hover-color: #fff;
}

.navbar-nav .dropdown-menu .nav-item.active .dropdown-item{
    background-color: var(--w3e-primary-color);
    color: #fff;
}

.navbar .nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

/*common section*/
.ult-section-title{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.section-title-holder{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 70px;
    width: 100%;
    max-width: 700px;
}
.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .08rem;
    line-height: 1.25;
    margin:0 0 35px;
}
.section-pre-title {
    font-family: var(--ult-pre-title-font-family);
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-pre-title .box-style{
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    text-align: center;
    color: white;
    background: var(--w3e-secondary-color);
    border-radius: 7px;
    opacity: 1;
}
.section-pre-title .line-style {
    position: relative;
    color: var(--w3e-secondary-color);
    display: inline-block;
    padding-bottom: 13px;
    margin-bottom: 8px;
}
.section-pre-title .line-style:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--w3e-primary-color);
    border-radius: 10px;
}
.section-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.22;
    text-transform: capitalize;
    margin:0;
}
.section-title-holder .section-description{
    margin-top: 20px;
}
.section-title-holder .section-description p{
    margin: 0;
}

.section-title-holder.style2 .section-title-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.section-title-holder.style2 .section-description{
    width: 70%;
}

.section-title-holder.style1 .section-pre-title svg,
.section-title-holder.style2 .section-pre-title svg {
    margin-top: -4px;
}

.section-title-overlay {
    position: absolute;
    top: -30px;
    left: -110px;
    width: 100%;
    max-width: 950px;
    height: 500px;
    background: linear-gradient(180deg, #6061E7 0%, #9C7AF2 100%);
    border-radius: 15px;
    z-index: -1;
}

.section-para {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.08rem;
}
.section-para:last-of-type {
    margin-bottom: 0;
}

/* hero section */
.hero {
    background-color: var(--w3e-primary-color);
    padding: 120px 0px;
    height: 100vh;
}

.hero .content-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.hero .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-buttons {
    background-color: #F7F7F7;
    background-image: url("../images/hero-img-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero.hero-buttons .hero-overlay{
    background: linear-gradient(180deg, #6061E7 0%, #9C7AF2 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 0;
}

.hero .button-group{
    margin-top: 50px;
}

.hero-wrapper {
    z-index: 1;
}

.hero-middle {
    padding-bottom: 2%;
    padding-top: 5%;
    text-align: center;
}

.hero.hero-buttons.w3e-banner .hero-overlay {
    background: #1EBB8C;
    opacity: 0.4;
}

.hero .counter-up{
    margin-top: 100px;
}

.hero .counter-up .counter-item:not(:last-child) .counter-box::after{
    content: '';
    position: absolute;
    top: 20px;
    right: -24px;
    width: 1px;
    height: calc(100% - 30px);
    background-color: #E2E2E2;
}

.w3e-banner .section-pre-title {
    font-family: inherit;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--w3e-secondary-color);
    margin-bottom: 10px;
}
.w3e-banner .section-pre-title svg {
    margin-top: -4px;
}
.w3e-banner .section-title{
    max-width: 50px;
    width: 100%;
}
.w3e-banner p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
    letter-spacing: 1px;
}

.partners ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    text-align: center;
}

.hero-counter{
    padding-bottom: 125px;
}

.hero-counter::after{
    display: none;
}

.hero-counter .counter-block .counter-item .count-number{
    color: #fff;
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1;
}

.hero-counter .hero-bottom{
    margin-top: 50px;
}

/* Counter Section */
.counter-section .counter-up .counter-box{
    padding: 20px;
    position: relative;
}

.counter-section.layout-style1 .counter-up .col:not(:last-child) .counter-box::after{
    --w3e-bs-gutter-x-half: calc(var(--bs-gutter-x) * 0.5);
    content: '';
    position: absolute;
    top: 20px;
    right: calc(-1* var(--w3e-bs-gutter-x-half));
    width: 1px;
    height: calc(100% - 40px);
    background-color: #E2E2E2;
}

.counter-section.layout-style2 .counter-box{
    background-color: var(--w3e-primary-color);
    padding: 120px 20px;
    border-radius: 25px;
}

/* Section common styles */
.ult-section{
    padding: 80px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}
.ult-section .container{
    position: relative;
    z-index: 2;
}
.ult-section-overlay-enabled .ult-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 0;
}
.ult-section-overlay-enabled .ult-section .container{
    position: relative;
    z-index: 2;
}

.ult-section .ult-background-video-hosted{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
}

.ult-section .video-h-reversed .ult-background-video-hosted{
    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg);
    -moz-transform:rotateY(180deg);
}

.header-area, .footer, .ult-section, .hero{
    max-width: 1920px;
    margin: 0 auto;
}

.content-block .content-image.image-mockup{
    position: relative;
}

.content-block .content-image.image-mockup::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 100px);
    padding-top: calc(100% - 100px);
    background-color: var(--w3e-primary-color);
    border-radius: 50%;
    opacity: 50%;
    z-index: -1;
}

.content-block .content-image.image-mockup img{
    position: relative;
}

.content-block .content-image.image-mockup .mockup-image:first-of-type{
    top: 50px;
}

.content-block .content-image.image-mockup .mockup-image:last-of-type{
    top: -50px;
    right: -100px;
}

.content-block .shape {
    position: absolute;
    bottom: 80px;
    left: -50px;
    z-index: -1;
}

.block-content .section-title-holder {
    gap: 20px;
    margin-bottom: 50px;
}

.block-content p{
    margin-bottom: 0;
}

.block-content.list-column-2 ul,
.block-content.list-column-2 ol{
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 50px;
}

.block-content.list-column-2 ul li,
.block-content.list-column-2 ol li{
    width: calc(50% - 25px);
}

.block-content .content-text ol, .block-content .content-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.block-content ol > li, .block-content ul > li{
    position: relative;
}

.block-content .content-text ol > li:before, .block-content .content-text ul > li:before {
    content: '✓';
    position: absolute;
    top: 4.5px;
    left: -35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 18px;
}
.block-content .content-text ol > li:before{
    content: counter(list-item);
}

.block-content .counter-block{
    margin-top: 50px;
}

.counter-block{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.counter-block .counter-item{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.counter-block .count-number-holder {
    font-weight: 700;
    font-size: 3.125rem;
    line-height: 60px;
    color: var(--w3e-secondary-color);
}

.counter-block .counter-item .count-number{
    color: var(--w3e-secondary-color);
    font-weight: 700;
    line-height: 1;
}

.block-content .icon-box{
    margin-top: 50px;
}

.icon-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.icon-box .icon-box-item {
    width: calc(33.33% - 20px);
    flex-basis: calc(33.33% - 20px);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 1.32px 23.62px 63.84px 0px #2929290A;
}

.icon-box .icon-box-item .title{
    font-size: 1.25rem;
    font-weight: 400;
}

.block-content .button-group, 
.block-content .item-list-holder,
.block-content .icon-list-holder{
    margin-top: 50px;
}
.block-content .button-group.image-buttons{
    margin-top: 20px;
}

.button-group .image-btn img {
    border-radius: 10px;
    max-width: 200px;
    width: 100%;
}

.image-slider .image-slider-item{
    text-align: center;
    color: #fff;
}
.image-slider .image-slider-item .image-holder {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.image-slider .image-slider-item .image-holder img{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.image-slider .image-slider-item .image-holder .img-layer {
    filter: blur(39px);
    position: absolute;
    bottom: -25px;
    left: calc(50% - 240px);
    z-index: -1;
    min-width: calc(100% + 30px);
    border-radius: 12px;
}
.image-slider .image-slider-navigation{
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    width: fit-content;
    margin: 40px auto 0px auto;
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    background: var(--w3e-gradient-primary);
    box-shadow: 0px 40px 32px -24px #0F0F0F1F;
}

.image-slider .image-slider-navigation:after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(50% - 8px);
    width: 2px;
    height: 20px;
    background-color: #fff;
    border-radius: 12px;
    opacity: 0.5;
}

/* app feature */
.app-feature-grid .section-title-holder {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.app-feature.section-title-overlay-enabled .section-title-holder{
    color: #fff;
}

.app-feature .feature-overlay {
    position: absolute;
    top: -30px;
    left: -110px;
    width: 100%;
    max-width: 950px;
    height: 500px;
    background: linear-gradient(180deg, #6061E7 0%, #9C7AF2 100%);
    border-radius: 15px;
    z-index: 0;
}

.app-feature .feature-image{
    position: absolute;
    right: 20px;
    top: -80px;
    z-index: 2;
}

.feature-card-holder {
    position: relative;
    z-index: 3;
}

.features-grid{
    gap: 50px;
}

.features-grid .content-holder{
    gap: 10px;
}


.feature-card-holder.shift-left {
    padding-right: 70px;
}

.feature-card .card {
    background-color: #fff;
    color: var(--w3e-body-color, #121212);
    border-radius: 15px;
    border: none;
    gap: 40px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0px 20px 80px 0px #0000000D;
    transition: all 0.3s ease 0s;
}

.feature-card svg path, .feature-card .card-title{
    transition: all 0.3s ease-in-out;
}

.feature-card .card:hover{
    box-shadow: 0px 80px 80px 0px #0000000D;
}

.feature-card .card:hover .card-title{
    color: var(--w3e-primary-color);
}

.feature-card .card .card-img-top{
    min-height: 65px;
    color: var(--w3e-primary-color);
}

.feature-card .card .card-img-top svg{
    width: 65px;
    height: auto;
}

.feature-card .card-img-top.featured-image img {
    display: block;
    padding: 0px;
    width: 100px;
    height: 100px !important;
    border-radius: 50% !important;
    margin: 0 auto;
    object-fit: cover;
}

.feature-card .card-img-top.icon-image img {
    display: block;
    padding: 0px;
    width: 100px;
    height: 100px !important;
    margin: 0 auto;
    object-fit: cover;
}

.feature-card.style4 .card {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 30px;
    gap: 30px;
    text-align: start;
    padding: 32px 32px;
    box-shadow: none;
    transition: all 0.3s ease 0s;
}

.feature-card.style4 .card:hover {
   border: 1px solid var(--w3e-primary-color);
}

.feature-card.style4 .card .card-img-top{
    width: fit-content;
    position: relative;
}

.feature-card.style4 .card .card-img-top::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 75%;
    height: 75%;
    background-color: var(--w3e-primary-color);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.feature-card-holder .w3e-image-box .image-holder,
.feature-card-holder .w3e-image-box .content-holder{
    width: 100%;
    flex-basis: 100%;
}

.feature-card-holder .w3e-image-box .image-holder{
    max-width: 150px;
    height: 150px;
}

.feature-card-holder .w3e-image-box .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.feature-card .card-body {
    padding: 0;
}

.feature-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0px 0px 25px 0px;
}

.feature-card .card-text {
    font-size: 1.125rem;
    line-height: 1.22;
}

.feature-card .btn{
    margin-top: 15px;
}

.feature-card:hover .card img {
    opacity: 1;
}

.w3e-slider-navigation.vertically-middle {
    position: absolute;
    top: calc(50% - 25px);
    width: 100%;
    justify-content: space-between;
}

.w3e-slider-navigation.top-right {
    position: absolute;
    top: -120px;
    right: 0;
    color: #000;
}
.w3e-slider-navigation .w3e-slider-prev,
.w3e-slider-navigation .w3e-slider-next {
    width: 50px;
    height: 50px;
    border: 1px solid #1918251A;
    border-radius: 50%;
    background-color: var(--w3e-secondary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    z-index: 99;
}

.w3e-slider-navigation .w3e-slider-prev:hover,
.w3e-slider-navigation .w3e-slider-next:hover{
    background-color: var(--w3e-white-color);
    color: #191825;
}

.w3e-slider-navigation.vertically-middle .w3e-slider-prev{
    position: relative;
    left: -50px;
}

.w3e-slider-navigation.vertically-middle .w3e-slider-next{
    position: relative;
    right: -50px;
}

.w3-slider-pagination{
    --swiper-pagination-bullet-size: 12px;
    --swiper-pagination-color: var(--w3e-primary-color);
    --swiper-pagination-bullet-inactive-color: var(--w3e-primary-color);
    --swiper-pagination-bullet-inactive-opacity: 0.2;
}

.w3-slider-pagination.bottom-center{
    bottom: -60px !important;
}

/* Video popup */
.video-popup {
    position: relative;
    background-image: var(--wellnessxpert-video-popup-bg, url("../images/app-video-bg.jpg"));
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.video-popup .video-play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 15px;
    width: 100%;
    max-height: auto;
}

.video-popup .icon-wrapper{
    position: relative;
    width: 100px;
    height: 100px;
    border: 2px solid var(--w3e-primary-color);
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 0px 40px 80px 0px var(--w3e-primary-color);
    z-index: 2;
}

.video-popup .video-play {
    width: 50px;
    height: 50px;
    background-color: var(--w3e-primary-color);
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
}

.video-popup .icon-wrapper svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.has-scale-animation {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -webkit-animation: smallScale 3s infinite;
    animation: smallScale 3s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    z-index: 0;
}
 
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* clients */
.partners-section .partners-list .partner-logo{
    width: auto;
}

/* download */
.download-app {
    background: #F3EEFF;
    padding: 175px 0;
}
.download-card {
    display: block;
    height: auto;
    max-width: 211px;
    line-height: 0;
}
.download-card img {
    max-height: 100%;
}

/* explore-feature section */
.explore-feature.shape::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/feature-explorer-shape.svg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: .05;
}
.feature-block-holder {
    padding: 1px 0;
}
.feature-block {
    margin: 150px 0;
}
.feature-block:last-child {
    margin-bottom: 75px;
}
.feature-block::before {
    background-color: var(--w3e-lightgray-color);
    bottom: 0px;
    border-radius: 0 200px 200px 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
}
.feature-block-img {
    height: 1px;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.block-img-layer-style1 .feature-block-img::after {
    content: none;
}

.block-img-layer-style2 .feature-block-img::before {
    content: none;
}

.block-img-layer-style2 .feature-block-img::after {
    content: none;
}

.feature-block-img img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.feature-block-title {
    font-size: 2rem;
    line-height: 1.225;
    font-weight: 600;
}
.feature-block-description {
    font-size: 1.25rem;
    line-height: 1.666;
}
.feature-block-content {
    gap: 31px;
    padding: 50px 100px 50px 50px;
}
.even-block.feature-block::before {
    border-radius: 200px 0 0 200px;
}
.even-block .feature-block-content {
    padding: 50px 50px 50px 100px;
}

/* Service section */
.service-card.card{
    --bs-card-spacer-x: 15px;
    --bs-card-spacer-y: 20px;
    --bs-card-border-color: #EAEEF3;
    --bs-card-border-radius: 10px;
    --bs-card-title-color: var(--w3e-body-color);
    --bs-card-border-width: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.service-card .service-img-holder{
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.service-card.card .card-img-top{
    border-radius: 10px;
    max-height: 300px;
    min-height: 300px;
	object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.service-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
}
.service-card .card-text{
    font-size: 1rem;
}

.service-card.card:hover{
    --bs-card-bg: #E5E7E5;
    box-shadow: var(--bs-box-shadow-sm);
}
.service-card.card:hover .service-img-holder{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.service-card.card:hover .card-img-top{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: scale(1.05);
}

.sidebar .related-services .view-all-link{
    --w3e-view-all-link-color: #000
}

.service-tile-content{
    width: 316px;
    margin: 0 auto;
}

.service-tile .service-img-holder {
    width: 316px;
    height: 414px;
    margin: 0 auto;
}

.service-tile .service-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.service-tile .service-title a{
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--w3e-heading-color);
}

.swiper-slide-active .service-tile{
    margin-top: 100px;
}

.service-slider-wrapper .w3e-slider-navigation.vertically-middle .w3e-slider-next {
    right: -80px;
}

.service-slider-wrapper .w3e-slider-navigation.vertically-middle .w3e-slider-prev {
    left: -80px;
}

.service-list .service-list-item{
    background-color: #fff;
    padding: 40px 50px;
    border: 1px solid #E5F5BD;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.service-list .service-list-item .item-header,
.service-list .service-list-item .item-content{
    position: relative;
    z-index: 2;
}

.service-list .service-list-item:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: var(--w3e-secondary-color);
    transform: translateY(-100%);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.service-list .service-list-item:hover{
    color: #fff;
}

.service-list .service-list-item:hover::before{
    transform: translateY(0);
}

.service-list .card-img-top {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: var(--w3e-primary-color);
    display: flex;
	flex-shrink: 0;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.service-list .card-img-top img, .service-list .card-img-top svg{
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.service-list .service-list-item .read-more{
    border: 1px solid #222;
    border-radius: 50%;
    padding: 15px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    transition: all 0.5s ease-in-out;
}

.service-list .service-list-item .read-more svg{
    flex-shrink: 0;
}

.service-list .service-list-item:hover .read-more{
    border-color: #fff;
    color: #fff;
    fill: #fff;
    transform: rotate(0deg);
}

/* Posts Section */
.post-card .card-title a{
    color: #000;
    transition: all 0.25s ease-in-out;
}

.post-card .card-title a:hover{
    color: var(--w3e-primary-color);
}

/* subscription section */
.subscription-form .row {
    --bs-gutter-x: 36px;
}
.subscription-form form{
    display: flex;
    justify-content: start;
}
.subscription-form-holder {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 16px;
    width: 100%;
    max-width: 750px;
}
.subscription-form .form-control {
    border-radius: 10px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    padding: 20.5px 20px 20.5px 20px;
}
.subscription-form .form-fields{
    position: relative;
    width: 100%;
}
.subscription-form .btn {
    --bs-btn-padding-y: 0.875rem;
    --bs-btn-padding-x: 2rem;
    color: #fff;
    border-radius: 10px;
    background-color: var(--w3e-secondary-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 6px;
    top: 6px;
}

.subscription-form .wpcf7-spinner {
    position: absolute;
    top: calc(50% - 12px);
    right: -15px;
    color: #000;
}

.subscription-form .wpcf7-not-valid-tip{
    position: absolute;
    bottom: -30px;
    text-align: left;
    color: #fff;
}

.subscription-form .wpcf7 form.invalid .wpcf7-response-output, 
.subscription-form .wpcf7 form.unaccepted .wpcf7-response-output, 
.subscription-form .wpcf7 form.payment-required .wpcf7-response-output {
    color: #fff;
}

/* Fitness Video */
.video-content-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.video-content-wrapper .left-part, .video-content-wrapper .right-part {
    width: calc(50% - 25px);
    flex-basis: calc(50% - 25px);
}

.video-content-wrapper.full-width .left-part, .video-content-wrapper.full-width .right-part {
    width: 100%;
    flex-basis: 100%;
}

/* review section */
.review-slider-holder .testimonial-inner {
    background-color: #fff;
    border-radius: 15px;
}

.review-slider-holder .testimonial-box-style1 .testimonial-inner {
    background-color: transparent;
}

.review-slider-holder .testimonial-box-style1 .review-author-details {
    padding: 30px;
    box-shadow: 2px 4px 60px 0px #292C7C1A;
    border-left: 3px solid var(--w3e-primary-color);
    border-radius: 6px;
}

.review-content {
    box-shadow: 13px 13px 31px 0px #0000000D;
    padding: 30px;
}
.review-author-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}
.review-slider-holder .review-author-name {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
}
.review-author-designation {
    font-size: 1rem;
    line-height: 1.4;
}
.testimonial-box-style1 .review-star {
    margin-top: 20px;
}
.review-slider-holder .review-star {
    width: fit-content;
}
.review-star-bg {
    display: inline-block;
    opacity: .4;
}
.review-star-rank {
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}
.review-star img {
    padding: 0 5px;
}
.review-star img:first-child {
    padding-left: 0;
}
.review-star img:last-child {
    padding-right: 0;
}
.review-content-bottom {
    font-size: 16px;
    line-height: 1.3;
}

.review-author-images {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.review-slider-holder .review-author-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.review-slider-holder .review-quote {
    font-size: 18px;
    line-height: 1.875;
    margin: 30px 0px;
    position: relative;
}
.testimonial-box-style1 .review-quote {
    margin: 0;
}

.testimonial-box-style2 .review-author-details {
    text-align: center;
    border: 0;
    padding: 94px 30px 30px 30px;
    box-shadow: 0px 5px 40px 0px #0000000F;
}

.testimonial-box-style2 .review-author-images {
    width: 128px;
    height: 128px;
    margin: 0 auto;
    position: relative;
    top: 64px;
}

.review-slider-holder .testimonial-box-style2 .quote-icon {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 36px;
    height: 36px;
    background-color: var(--w3e-primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-slider-holder .review-quote {
    font-size: 1rem;
    margin: 0;
}

.testimonial-box-style2 .review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-box-style2 .review-star {
    margin: 0 auto;
}

.testimonial-box-style3 .review-author-details{
    padding: 0px 30px;
}

.review-slider-holder .testimonial-box-style3 .review-author-images{
    max-width: 500px;
    max-height: 500px;
    border-radius: 50%;
    background-color: var(--w3e-primary-color);
}
.testimonial-box-style3 .review-author-images img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    top: 30px;
    left: 30px;
    border: 4px solid #fff;
}
.testimonial-box-style3 .quote-icon,
.testimonial-box-style4 .quote-icon{
    color: var(--w3e-primary-color);
}

.review-slider-holder .testimonial-box-style4 .testimonial-inner {
    background-color: transparent;
}

.testimonial-box-style4 .review-author-images{
    position: relative;
    padding: 50px 0px 50px 50px;
}

.testimonial-box-style4 .review-author-images img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 30px 0px 50px 70px;
    object-fit: cover;
}

.review-slider-holder.style4::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 500px;
    height: 500px;
    background-color: var(--w3e-primary-color);
    opacity: 25%;
    border-radius: 50%;
    z-index: -1;
}

.review-slider-holder.style4 .shape {
    left: -50px;
    bottom: 50px;
}

.review-slider-holder.style4 .w3e-slider-navigation.top-right {
    top: 0;
}

.review-slider-holder .review-quote::before,
.review-slider-holder .review-quote::after{
    content: none;
    background-image: url(../images/quote-icon-rounded.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 49px;
    position: absolute;
    width: 67px;
}
.review-slider-holder .review-quote::before {
    left: -30px;
    top: 0;
    transform: rotate(-180deg);
}
.review-slider-holder .review-quote::after {
    right: -30px;
    bottom: 0;
}

.testimonial-thumb-swiper {
    max-width: 650px;
    padding: 15px;
    margin: 0 auto;
}

.testimonials-slider-navigation.vertically-middle .w3e-slider-prev {
    left: -100px;
}
.testimonials-slider-navigation.vertically-middle .w3e-slider-next {
    right: -100px;
}

.button-holder {
    display: flex;
    height: 46px;
    justify-content: space-between;
    margin: 0 auto 0;
    position: relative;
    width: 120px;
}
.review-slider-holder .button-holder {
    position: absolute;
    margin-top: 0;
    top: -50px;
    right: 0;
}

.carousel-control-next, .carousel-control-prev {
    height: 46px;
    width: 46px;
}
.carousel-control-next-icon, 
.carousel-control-prev-icon {
    width: 8px;
}
.review-slider-holder .carousel-control-next-icon, 
.review-slider-holder .carousel-control-prev-icon {
    width: 50px;
}
.carousel-control-prev-icon {
    background-image: url(../images/slider-arrow-left.svg)
}
.carousel-control-next-icon {
    background-image: url(../images/slider-arrow-right.svg);
}

.review-slider-holder .carousel-control-prev-icon {
    background-image: url(../images/slider-prev-icon.svg);
}
.review-slider-holder .carousel-control-next-icon {
    background-image: url(../images/slider-prev-icon.svg);
    transform: rotate(180deg);
}

.user-review .testimonial-pagination{
    text-align: center;
    margin-top: 50px;
}

.ult-slider-navigation .next-icon svg{
    transform: rotate(180deg);
}

/* home faq section*/
.home-faq .nav-pills {
    --bs-nav-pills-border-radius: 1rem;
    --bs-link-hover-color: var(--text-white);
    --bs-nav-link-color: var(--w3e-primary-color); 
    --bs-nav-pills-link-color: var(--w3e-primary-color);
    --bs-nav-pills-link-bg: var(--w3e-lightgray-color);
    --bs-nav-pills-link-active-bg: var(--w3e-primary-color);
    --bs-nav-link-font-size:1.125rem;
    --bs-nav-link-padding-x: 20px;
    --bs-nav-link-padding-y: 4px;
    font-family: "Lato", sans-serif;
}
.home-faq-inner .dots-shape {
    position: absolute;
    top: -70px;
    right: -120px;
}
.home-faq .nav-link {
    background-color: #EBEBEB;
}
.home-faq .nav-link:hover {
    background-color: #FFBEA3;
    color:#fff;
}
.home-faq-banner {
    line-height: 0;
    position: absolute;
    height: 100%;
    width: 50%;
    border-radius: 15px;
}
.home-faq-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px !important;
}
.home-faq-accordion {
    width: 100%;
    z-index: 2;
}
.home-faq .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-color: var(--w3e-body-color);
    --bs-accordion-btn-bg: #F8F8F8;
    --bs-accordion-active-bg: #5355A51A;
    --bs-accordion-btn-padding-x: 1rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-body-padding-x: 1rem;
    --bs-accordion-body-padding-y: 1rem;
    --ult-accordion-btn-initial-icon-transform: rotate(-90deg);
    --bs-accordion-btn-icon-transform: rotate(0deg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300000075' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2' /%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300000075' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8' /%3e%3c/svg%3e");
}

.home-faq .accordion-item {
    margin-bottom: 20px;
}

.home-faq .accordion-button {
    font-size: 1.375rem;
    line-height: 1.46;
    text-transform: initial;
    font-size: 1.125rem;
    font-weight: 500;
}
.home-faq .accordion-button::after {
    content: none;
    transform: var(--ult-accordion-btn-initial-icon-transform);
}
.home-faq .accordion-button:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon-transform);
}

.home-faq .accordion-button svg{
    position: absolute;
    right: 1rem;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.home-faq .accordion-button > svg:first-of-type {
    display: none;
}
.home-faq .accordion-button > svg:last-of-type {
    display: block;
}
.home-faq .accordion-button.collapsed > svg:first-of-type {
    display: block;
}
.home-faq .accordion-button.collapsed > svg:last-of-type {
    display: none;
}

.home-faq.banner-right .faqs-style-1 .home-faq-inner{
    flex-direction: row-reverse;
}

.home-faq.banner-right .faqs-style-1 .home-faq-accordion {
    margin: 50px auto 50px 0px;
}

.home-faq.banner-right .faqs-style-1 .dots-shape {
    left: -120px;
}

.home-faq.banner-right .faqs-style-2 .faqs-banner {
    left: unset;
    right: 0;
}
.home-faq.banner-right .faqs-style-2 .home-faq-accordion {
    margin: 50px auto 50px 0px;
}

.home-faq.banner-right .faqs-style-2 .home-faq-accordion {
    padding: 0 30px 0 0;
}

.home-faq .faqs-style-2 .faqs-banner{
    position: absolute;
    width: 40%;
    top: 0;
    left: 0;
    height: 100%;
}
.home-faq .faqs-style-2 .faqs-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-faq .faqs-style-2 .home-faq-accordion {
    background-color: transparent;
    padding: 0 0 0 30px;
    box-shadow: none;
}
.home-faq .faqs-style-2 .accordion{
    --bs-accordion-active-color: #fff;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-radius: 12px;
    --ult-accordion-btn-initial-icon-transform: 0;
    --bs-accordion-btn-icon-transform: rotate(-90deg);
    --bs-accordion-btn-icon: url("../images/elements/accordion-arrow.svg");
    --bs-accordion-btn-active-icon: url("../images/elements/accordion-arrow.svg");
    --bs-accordion-btn-icon-width: 15px;
}
.faqs-style-2 .accordion-item {
    --bs-accordion-color: #fff;
    background-color: #2040664D;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
}
.faqs-style-2 .accordion-item:last-child {
    margin-bottom: 0px;
}
.home-faq .faqs-style-2 .accordion-body {
    padding: 20px 30px 0px 0px;
}
.faqs-style-2 .accordion-button {
    --bs-accordion-btn-color: #fff;
    font-size: 1.25rem;
    line-height: 1.2;
    padding: 0px 20px 0px 0px;
}

/* pricing section */
.pricing.layout-style1 .plan-tabs-wrapper{
    max-width: 350px;
}
.pricing .nav-tabs{
    --bs-nav-tabs-border-width: 0;
    --bs-nav-tabs-link-active-bg: var(--w3e-primary-color);
	--bs-nav-link-hover-color: var(--w3e-primary-color);
    --bs-nav-tabs-link-active-color: #fff;
    --bs-nav-tabs-border-radius: 15px;
    justify-content: center;
    background-color: #5355A50D;
    width: fit-content;
    border-radius: 15px;
}
.pricing .nav {
    --bs-nav-link-padding-x: 1.5rem;
    --bs-nav-link-padding-y: 0.75rem;
    --bs-nav-link-color: var(--bs-body-color);
}
.pricing .nav-tabs .nav-link {
    border-bottom-left-radius: var(--bs-nav-tabs-border-radius);
    border-bottom-right-radius: var(--bs-nav-tabs-border-radius);
}
.pricing-card-holder > .row {
    --bs-gutter-x: 38px;
}
.pricing-card {
    background-color: var(--w3e-white-color);
    border: none;
    border-radius: 6px;
    background-color: #5355A50D;
    color: var(--w3e-body-color, #121212);
    box-shadow: 0px 4px 9px 0px #0000000D;
    transition: all 0.25s ease-in-out;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.pricing-card .card-body {
    padding: 40px 50px;
    text-align: start;
}
.pricing-card .plan-header {
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #6567C21A;
    position: relative;
    z-index: 2;
}
.pricing-card .plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}
.pricing-card .plan-desc {
    margin: 30px 0px;
    color: #909090;
}
.pricing-card  .price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: end;
}
.pricing-card .price-value {
    color: var(--ult-black-color);
    display: inline-block;
	padding-top: 30px;
}
.pricing-card .plan-duration{
    display: block;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    bottom: 5px;
    margin-left: 10px;
}
.pricing-card .price-tag span {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
}
.pricing-card .price-features ol, .pricing-card .price-features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 1rem;
    text-align: left;
    margin-bottom: 50px;
}
.pricing-card .price-features li {
    position: relative;
    font-size: 1.125rem;
}
.pricing-card .price-features ol > li:before, .pricing-card .price-features ul > li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
}
.pricing-card .price-features ol > li:before {
    content: counter(list-item);
}
.pricing-card .btn {
    align-items: center;
    display: flex;
    font-size: 1.125rem;
    font-weight: 600;
    justify-content: center;
    max-width: 317px;
    width: 100%;
    box-shadow: 0px 4px 9px 0px #0000000D;
}

.pricing-card.active {
    background-color: var(--w3e-primary-color);
    color: #fff;
    box-shadow: 0px 14.53px 29.07px 0px #88888801, 
                0px 12.7px 10.13px 0px #00000002, 
                0px 31.17px 20.26px 0px #00000003,
                0px 60px 39.74px 0px #00000003,
                0px 102.08px 73.01px 0px #00000004,
                0px 155.84px 124.67px 0px #00000005;
}

.pricing.layout-style1 .pricing-card.active .plan-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing.layout-style1 .pricing-card.active .btn {
    color: var(--w3e-primary-color);
    background-color: #fff;
}

.pricing-card:not(.active):hover .btn{
    background-color: var(--w3e-primary-color);
    border-color: var(--w3e-primary-color);
    color: #fff;
}

/* Pricing Style 2 */
.pricing.layout-style2 .nav-tabs {
    justify-content: start; 
    margin-bottom: 50px;
    background-color: transparent;
}

/* Pricing Style 3 */
.pricing.layout-style3 .pricing-card{
    border: 1px solid #EEF8D3;
    box-shadow: none;
}
.pricing.layout-style3 .nav-tabs{
    margin-bottom: 50px;
}
.pricing.layout-style3 .pricing-card .plan-header {
    margin-bottom: 0;
    border-bottom: 0;
}

.pricing.layout-style3 .pricing-card .price{
    color: var(--w3e-secondary-color);
}

/* About Company */
.about-company .content p{
    margin-bottom: 0;
}

.about-company .image-holder{
    position: relative;
    top: -80px;
}

/*  Team Section */
.team-card .team{
    border-radius: 15%;
}
.team-card:hover .team {
    bottom: 28px;
    background-color: #fff;
    box-shadow: 0px 1.85px 3.15px 0px #00000001,
                0px 8.15px 6.52px 0px #00000002,
                0px 20px 13px 0px #00000003,
                0px 38.52px 25.48px 0px #00000003,
                0px 64.81px 46.85px 0px #00000004,
                0px 100px 80px 0px #00000005;
    padding: 80px 30px;
    border-radius: 10%;
}

.team-card .card-hover-bottom-left::before{
    bottom: -15px;
    height: 100px;
    left: -15px;
    z-index: -1;
    border-radius: 10%;
}

.team-card:hover .card-hover-bottom-left::before {
    opacity: 1;
}

.team-card:hover .team .member-data{
    justify-content: space-between;
    gap: 25px;
    height: 100%;
}

.team-card:hover .team .member-data .member-contact-info{
    display: block;
}

.team-card:hover .team .member-image{
    display: none;
}

.team-card .member-data{
    display: flex;
    flex-direction: column;
}

.team-card .member-data .social-icons{
   gap: 16px;
}

.team-card .member-data .member-contact-info{
    display: none;
}

.team-section .team .name{
    font-size: 2.125rem;
    color: #000;
}

.team-section .team .member-image {
    border-radius: 15%;
    width: 100%;
    object-fit: cover;
}

.team-section .team .name{
    font-size: 1.5rem;
    color: #000;
}

.team-section .team .social-icons svg{
    width: 20px;
    height: 20px;
    fill: var(--w3e-primary-color);
}

/* home contact section */
.contact-section .contact-content-wrapper{
    padding: 50px;
    border-radius: 50px;
    background-color: #FAF8FF;
    box-shadow: 0px 141px 200px -80px #193A4B4D;
}

.contact-info-area {
    margin-top: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 100px;
}

.contact-info-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: #3B3D54;
    padding: 80px 20px 60px 20px;
    box-shadow: 0px 141px 200px -80px #193A4B4D;
    background-color: #FAF8FF;
    border-radius: 50px;
    width: calc(33.33% - 66.667px);
    max-width: 420px;
}

.contact-info-item:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: var(--w3e-gradient-secondary);
    border-radius: 50px;
    z-index: -1;
}

.contact-info-item .info-icon {
    position: absolute;
    top: -65px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    padding: 15px;
    background-color: #FAF8FF;
    border-radius: 50%;
    z-index: 2;
}

.contact-section .contact-title{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-section .contact-subtitle{
    color: var(--w3e-secondary-color);
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

/* App Screens */
.app-screen-area .swiper-slide{
    z-index: 1;
}
.app-screen-area .swiper-slide-active{
    z-index: 2;
}

.app-screen-area .app-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.app-screen-area .app-screen-slider{
    padding: 50px 0px;
}

.app-screen-area.layout-style1 .app-screen {
    opacity: 0.5;
}
.app-screen-area.layout-style1 .swiper-slide-active .app-screen {
    transform: scale(1.1);
    opacity: 1;
    z-index: 5;
}

.app-screen-area.layout-style2 .swiper-slide-active .app-screen {
    position: relative;
    top: -38px;
    transform: scale(1.15);
    opacity: 1;
    z-index: 5;
}

.app-screen-area .app-screen img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.app-screen-area .ult-slider-navigation{
    color: var(--w3e-secondary-color);
    display: flex;
    height: auto;
    justify-content: space-between;
    margin: 0 auto 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 5;
}

.app-screen-pagination{
    text-align: center;
    margin-top: 0px;
}
.app-screen-area.layout-style1 .app-screen-pagination {
    margin-top: 50px;
}

/* Service details page */
.single-service .sidebar .sidebar-item-title{
    font-size: 2rem;
    font-weight: 500;
}

.single-service .sidebar .related-service-holder{
    background-color: #5355A50D;
    padding: 30px;
    border-radius: 30px;
}

.single-service .sidebar .related-service-holder .sidebar-item-title{
    font-size: 1.5rem;
    padding-left: 20px;
}

.single-service .sidebar .related-services > li > a {
    font-size: 1.25rem;
    font-weight: 400;
    padding: 20px;
    border-radius: 56px;
    transition: all 0.3s ease-in-out;
}

.single-service .sidebar .related-services > li > a:hover{
    background-color: var(--w3e-primary-color);
    color: #fff;
}

.single-service .sidebar .about-agency{
    --w3e-bg-image: url(../images/about-agency-bg.jpg);
    position: relative;
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    z-index: 2;
}

.single-service .sidebar .about-agency::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: #000;
    opacity: 0.6;
    z-index: -1;
}

.single-service .sidebar .about-agency .contact-info{
    margin-top: 45px;
    gap: 20px;
}

.single-service .sidebar .about-agency .contact-info .contact-item:not(:last-child){
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 20px;
}

.single-service .sidebar .about-agency .contact-info label{
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
}

/* Coach Tiles */
.coach-card{
    min-height: 540px;
    max-height: 540px;
}
.coach-card .coach-img-holder img{
    object-fit: cover;
}
.coach-card .coach-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: var(--w3e-white-color);
    text-align: center;
    background: linear-gradient(5.51deg, #5F6F52 37.47%, rgba(0, 0, 0, 0.1) 95.76%);
    z-index: 3;
    transform: translateY(calc(100% - 180px));
    transition: all 0.5s ease-in-out;
}

.coach-card:hover .coach-info {
    justify-content: center;
    transform: translateY(0px);
}

.coach-card .coach-info .coach-name{
    font-size: 2rem;
    font-weight: 700;
    color: var(--w3e-white-color);
}

.coach-card .coach-social-links li a {
    color: var(--w3e-white-color);
    fill: var(--w3e-white-color);
    width: 40px;
    height: 40px;
    border: 1px solid var(--w3e-white-color);
}

.coach-card .coach-social-links li a:hover {
    border-color: var(--w3e-primary-color);
}

.coach-card .coach-social-links li svg {
    width: 18px;
    height: 18px;
}

.coach-card.style2 .coach-info {
    background: linear-gradient(5.51deg, #59371D 37.47%, rgba(0, 0, 0, 0.1) 95.76%);
    transition: all 0.5s ease-in-out;
}

.coach-card.style2 .hover-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}

.coach-card.style2 .hover-overlay img{
    width: 100%;
    height: 100%;
}

.coach-card.style2:hover .hover-overlay {
    transform: translateX(0);
}

.coach-card.style2:hover .coach-info {
    background: transparent;
}

/* Coach details page */
.single-coach .featured-image img{
    border-radius: 6px;
}
.single-coach .coach-profile .coach-name{
    font-size: 3rem;
    font-weight: 500;
}
.single-coach .coach-profile .coach-designation{
    color: #909090;
}
.single-coach .contact-info{
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 20px;
}

.single-coach .contact-info .info-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--w3e-primary-color);
    color: #fff;
}

.single-coach .contact-info span{
    color: #909090;
}

.single-coach .contact-info .contact-item:not(:last-child){
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 20px;
}

.single-coach .contact-info label{
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    margin-bottom: 7px;
}

.coach-social-links li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    fill: var(--w3e-primary-color);
    border: 1px solid var(--w3e-primary-color);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.coach-social-links li a:hover{
    background-color: var(--w3e-primary-color);
    color: #fff;
    fill: #fff;
}

.coach-social-links li svg {
    width: 20px;
    height: 20px;
}

/* ===============================
footer 
=================================*/
.footer {
    position: relative;
    color: var(--w3e-footer-text-color, #fff);
    padding: 80px 0 40px;
    width: 100%;
    background-image: var(--ult-footer-bg-image, url("../images/footer-bg.png"));
    background-size: var(--ult-footer-background-size, cover);
    background-position: var(--ult-footer-background-position, bottom center);
    background-repeat: no-repeat;
}
.footer.footer-style2{
	padding: 40px 0 0px;
}

.footer-overlay{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--ult-footer-bg-color, var(--w3e-gradient-primary));
    opacity: var(--ult-footer-background-opacity, 0.85);
    z-index: 1;
}
.footer .container{
	position: relative;
	z-index: 2;
}
.footer-descirption{
    max-width: 950px;
}

.footer .subscription-form-wrapper .form-control {
    background-color: transparent;
    color: #fff;
}

.footer .subscription-form-wrapper .form-control::placeholder {
    color: #fff;
    opacity: 0.25;
}

.footer-social-links .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--w3e-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.footer-social-links .menu-fallback-menu .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: 0;
    border-radius: 50%;
    width: auto;
    height: auto;
}

.footer-social-links .menu-fallback-menu .nav-link:hover {
    background-color: unset;
}

.footer-menu-title {
    font-size: 1.5rem;
    line-height: 1.2;
}

.footer-contact-info .footer-menu-list{
    gap: 35px;
}

.footer-menu .nav-link {
    color: var(--w3e-footer-text-color, #fff);
    font-size: 1.125rem;
    line-height: 1;
    padding: 0;
	position: relative;
}

.footer-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--w3e-footer-text-color, #fff);
    transition: all 0.3s ease-in-out;
}

.footer-menu .nav-link:hover::after {
    width: 100%;
}

.footer-contact {
    word-break: break-word;
}
.footer-contact svg{
    width: 24px;
    height: 24px;
    color: var(--w3e-primary-color);
}
.footer-contact .info-item {
    align-items: anchor-center;
    display: flex;
    gap: 6px;
    color: #fff;
    font-size: 1rem;
}
.footer-menu .footer-address {
    line-height: 1.444;
}

.footer-menu .mail-address svg {
    width: 24px;
    height: 18px;
}

/* footer bottom */
.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom {
    padding-top: 20px;
    text-align: center;
}
.footer-bottom-list.nav {
    --bs-nav-link-padding-x: .5rem;
    --bs-nav-link-padding-y: 0;
}
.footer-bottom-list .nav-link {
    position: relative;
    font-size: 1rem;
    line-height: 1.688;
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-color: var(--w3e-footer-text-color, var(--w3e-white-color));
    --bs-nav-link-hover-color: var(--w3e-footer-text-color, #fff);
}

.footer-bottom-list li:first-child .nav-link{
    padding-left: 0;
}

.footer-bottom-list li:last-child .nav-link{
    padding-right: 0;
}

.footer-bottom-list .nav-item:not(:last-child) .nav-link:after {
    content: '';
    width: 1px;
    height: 14px;
    background-color: #fff;
    opacity: 60%;
    position: absolute;
    right: 0;
    top: calc(50% - 7px);
}

.footer.footer-style2 .top-part {
    border-bottom: 1px solid #CED4DA;
    padding-bottom: 20px;
}

@media screen and (max-width: 1400px) {
	.section-pre-title span.transparent-style {
    	font-size: 60px;
	}
	
    .app-feature .feature-image {
        display: none;
    }
	
	.feature-card-holder.shift-left {
   		padding-right: 0px;
	}

    .app-feature .blank-card{
        display: none;
    }
}

@media screen and (max-width: 1199px) {
	.header-area .navbar-nav{
		gap: 15px;
	}
	.header-area .offcanvas-menu .phone-number, .header-area .offcanvas-menu .btn {
        margin-top: 25px;
    }
    .section-subtitle {
        font-size: 20px;
    }    
    .section-title {
        font-size: 3rem;
    }    
    .section-para {
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 0px 50px 0px;
    }
	
	.hero .counter-up {
        margin-top: 50px;
    }

    .home-faq .faqs-style-2 .faqs-banner{
        display: none;
    }

    .home-faq .faqs-style-2 .home-faq-accordion {
        padding: 0px;
        width: 100%;
    }

    .home-faq.banner-right .faqs-style-2 .home-faq-accordion {
        padding: 0;
    }

    /* process section */
    .process-title {
        font-size: 1.5rem;
    }
    .process-description {
        font-size: 1rem;
    }
    /* explore feature */
    .feature-block-content {
        padding: 30px 80px 30px 30px;
    }
    .even-block .feature-block-content {
        padding: 30px 30px 30px 80px;
    }
    .feature-block-img {
        max-width: 250px;
    }
    .feature-block {
        margin: 90px 0;
    }
    /* review section*/
    .carousel-inner {
        padding-bottom: 48px;
    }

    .review-slider-holder .review-author-name {
        font-size: 20px;
    }
    .testimonial-box-style4 .review-author-images::after {
        left: 50px;
        width: 400px;
        height: 400px;
    }
    /* Pricing */
    .pricing-card-style2 .card-body {
        padding: 20px;
    }
	
	.contact-info-area {
        gap: 30px;
    }

    .contact-info-item {
        width: calc(33.33% - 20px);
    }

    .w3e-slider-navigation.vertically-middle .w3e-slider-next {
        right: 0px;
    }

    .w3e-slider-navigation.vertically-middle .w3e-slider-prev {
        left: 0px;
    }
	
	.service-slider-wrapper .w3e-slider-navigation.vertically-middle .w3e-slider-prev {
        left: 0px;
    }

    .service-slider-wrapper .w3e-slider-navigation.vertically-middle .w3e-slider-next {
        left: 0px;
    }
	
	.w3e-slider-navigation.top-right {
        top: -65px;
    }
}
@media screen and (max-width: 991px) {
	.header-area .navbar-collapse {
		background-color: rgb(0, 0, 0);
		color: #fff;
		padding: 30px;
		border-radius: 12px;
		margin-top: 10px;
	}
	
	.header-area .navbar-toggler:focus {
		box-shadow: none;
	}
	
	.header-area.sticky .nav-link {
		--bs-nav-link-color: #fff;
	}
	
	.header-area .btn-nav-download {
    	margin-top: 20px;
	}
	
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
    /* Banner hero */
    .hero{
        height: 100%;
    }


    .hero.hero-buttons .hero-left,
    .hero.hero-buttons .hero-right,
    .hero.hero-buttons.w3e-banner .hero-left,
    .hero.hero-buttons.w3e-banner .hero-right{
        width: 100%;
        max-width: 100%;
        top: 0;
    }

    .hero.hero-buttons .hero-right{
        display: none;
    }

    .hero.hero-buttons .hero-right .hero-image-holder{
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .hero.hero.hero-buttons .hero-content-holder{
        flex-wrap: wrap;
        flex-direction: column;
        gap: 50px;
    }

    .hero.hero.hero-buttons .download-buttons{
        margin-top: 50px;
    }

    .block-content-wapper .content-image{
        text-align: center;
    }
	
	.block-content-wapper .content-image img{
        width: 100%;
		max-width: 500px;
    }

    .content-block .shape {
        display: none;
    }

    /* parners list */
    .partners ul {
        justify-content: center;
        gap: 30px;
    }
	
	.partners-section .partners-list .partner-logo {
        width: 100%;
        padding: 0px 15px;
    }

    /* app feature */
    .app-feature::before {
        clip-path: ellipse(100% 52% at 50% -2%);
    }
    .feature-card-holder {
        padding: 0px 30px 0;
    }

    /* explore feature */
    .feature-block {
        margin: 50px 0;
    }
    .feature-block:last-child {
        margin-bottom: 30px;
    }
    .feature-block::before {
        border-radius: 0 120px 120px 0;
    }
    .even-block.feature-block::before {
        border-radius: 120px 0 0 120px;
    }
    .feature-block-img {
        max-width: 200px;
    }

    .feature-block-title {
        font-size: 1.5rem;
    }
    .feature-block-description {
        font-size: 1rem;
    }

    .services-grid .service-image{
        display: none;
    }

    /* user review */
    .review-author-info {
        left: 0;
    }

    .review-slider-holder.style1 .button-holder {
        margin: 0 auto 0;
    }
	
	.review-slider-holder .testimonial-box-style3 .review-author-images {
        max-width: 350px;
        max-height: 350px;
        margin: 0 auto;
    }

    .testimonial-box-style4 .review-author-images,
    .testimonial-box-style4 .review-author-images img {
        padding: 0;
        text-align: center;
    }

    .review-slider-holder.style4::after {
        content: none;
    }
    
    /* App Screen */
    .app-screen-area .ult-slider-navigation {
        top: 0;
        width: 100%;
    }

    .ultimate-app-video-popup .dots-shap {
        display: none;
    }

    /* pricing */
    .pricing-card .card-body {
        padding: 40px 20px;
    }
    .pricing-card .section-subtitle {
        font-size: 1.25rem;
    }
    .price {
        font-size: 1.5rem;
    } 
    span.price-value {
        font-size: 6.25rem;
    }   
    .pricing-card .btn {
        font-size: 1.25rem;
        padding: 15px 10px 15px 25px;
        max-width: 250px;
    }
    .pricing-card .btn i {
        font-size: 44px;
        line-height: 1;
    }

    /* Team */
    .team-card:hover .team {
        padding: 50px 10px;
    }

    .contact-section .contact-content-wrapper {
        border-radius: 15px;
    }

    .video-content-wrapper .left-part{
        width: 100%;
        flex-basis: 100%;
    }
    .video-content-wrapper .right-part{
        width: 100%;
        flex-basis: 100%;
        display: none;
    }
	
	.contact-section .contact-content-wrapper {
    	padding: 40px 20px;
	}
	
	.contact-info-area {
        justify-content: center;
        gap: 120px;
    }

    .contact-info-item {
        width: 100%;
    }
	
	.footer .wpcf7-form{
        max-width: 300px;
    }
    .footer .wpcf7-form input[type="submit"]{
        width: 100%;
    }
}

@media screen and (max-width: 950px) {
    .section-title-overlay {
        position: absolute;
        top: -60px;
        left: 0;
        border-radius: 0;
    }
    .app-feature .feature-overlay {
        top: -60px;
        left: 0px;
        border-radius: 0;
    }
}

@media screen and (max-width: 767px) {
    /* common */
    .section-title-holder {
        gap: 20px;
    }
	.section-pre-title span.transparent-style {
    	font-size: 42px;
	}
    .section-title-holder.style3 .section-title-inner {
        flex-direction: column;
    }
    .section-title-holder.style3 .section-title, .section-title-holder.style3 .section-description {
        width: 100%;
    }

    .btn-common{
        --bs-btn-padding-y: 0.5rem;
        --bs-btn-padding-x: 1rem;
        --bs-btn-font-size: 1.25rem;
        --bs-btn-border-radius: 0.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
	.section-title-holder.style2 .section-title-inner {
		flex-direction: column;
		justify-content: start;
		align-items: start;
	}
	.section-title-holder.style2 .section-description {
    	width: 100%;
	}
	
    .hero {
        padding: 100px 0px 70px 0px;
    }

    .feature-card-holder .w3e-image-box .content-holder {
        align-items: center;
        text-align: center;
    }
  
    .download-app,
    .flexible,
    .explore-feature,
    .home-contact {
        padding: 70px 0;
    }

    .hero.hero-counter{
        padding-bottom: 0px;
    }

    .process::after {
        height: 75%;
    }

    .home-faq {
        padding-bottom: 70px;
    }

    .hero-counter .hero-bottom.counter-up{
        position: relative;
    }

    .counter-up .number-count {
        font-size: 4rem;
    }

    .counter-section.layout-style1 .counter-up .col:not(:last-child) .counter-box::after{
        content: none;
    }

    /* Content Block */
    .block-content.list-column-2 ul li, .block-content.list-column-2 ol li {
        width: 100%;
    }
	
	.swiper-slide-active .service-tile {
        margin-top: 0px;
    }
       
    /* app feature */
    .feature-card-holder {
        padding: 40px 10px 0px 10px;
    }
    .app-feature::before {
        clip-path: ellipse(100% 24% at 50% -2%);
    }

    /* explore feature */
    .feature-block::before,
    .even-block.feature-block::before {
        content: none;
    }
    .feature-block-img {
        height: auto;
    }
    .feature-block-img img {
        position: static;
        transform: none !important;
    }
    .even-block .feature-block-content,
    .feature-block-content {
        background-color: var(--w3e-lightgray-color);
        border-radius: 30px;
        gap: 20px;
        margin-top: 20px;
        padding: 30px;
        text-align: center;
    }
    .feature-block-title {
        font-size: 1.5rem;
    }
    .feature-block-description {
        font-size: 1.125rem;
    }

    .review-slider-holder .testimonial-inner {
        padding: 20px;
    }

    .review-slider-holder.style2 .button-holder {
        margin-top: 0px;
    }

    /* subscription */
    .subscription-form .row {
        --bs-gutter-x: 24px;
    }
    .subscription-form .btn {
        --bs-btn-padding-x: 1rem;
    }
    .subscription-form .form-control {
        background-position: 15px center;
        line-height: 24px;
        padding: 20px;
    }
	
	.subscription-form-holder {
   		max-width: 650px;
	}
    
    /* pricing tag */
    .pricing-card-holder > .row {
        --bs-gutter-x: 24px;
    }
    /* faq section */
    .home-faq .accordion-button {
        padding-right: 20px;
    }

    .home-faq-banner {
        display: none;
    }

    .home-faq-inner .dots-shape {
        display: none;
    }

    .home-contact-form .wpcf7-spinner{
        position: absolute;
        top: calc(50% - 12px);
    }
}

@media screen and (max-width: 620px) {
    .coach-card .coach-info {
        transform: translateY(calc(100% - 200px));
    }
}

@media screen and (max-width: 575px) {
	.section-pre-title span.transparent-style {
    	font-size: 42px;
    	white-space: wrap;
	}
	.btn {
        --bs-btn-padding-x: 1rem;
        --bs-btn-padding-y: 1rem;
        --bs-btn-font-size: 1rem;
    }
    .btn-tra {
        --bs-btn-padding-x: 0;
        --bs-btn-padding-y: 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta-common .section-title {
        font-size: 1.75rem;
    }
    /* hero section */
	.hero {
    	padding: 100px 0px 50px 0px;
	}
    .partners ul li {
        width: calc(33.33% - 20px);
        flex-basis: calc(33.33% - 20px);
        padding: 0;
    }

    .icon-box .icon-box-item {
        width: 100%;
        flex-basis: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .counter-block .counter-item .count-number {
        font-size: 3rem;
    }
	
	.feature-slider .feature-item {
		padding: 20px;
	}
    
    /* download section*/
    .download-links .col-auto:not(:last-of-type) .download-card {
        margin-bottom: 20px;
    }
    
    /* subscription */
    .subscription-form .row {
        --bs-gutter-x: 16px;
    }
	
	.subscription-form .btn {
		position: relative;
		width: 100%;
		margin-top: 10px;
		right: unset;
		top: unset;
	}
    
    /* pricing tag */	
	.pricing .nav {
    	--bs-nav-link-padding-x: 1rem;
    	--bs-nav-link-padding-y: 0.75rem;
    	font-size: 1rem;
	}
	
	span.price-value {
    	font-size: 4rem;
	}
	
	.app-feature-slider .feature-slider-navigation {
    	display: none !important;
	}
	.team-section .team-slider-arrow .team-slider-prev,
	.team-section .team-slider-arrow .team-slider-next{
    	display: none;
	}
	.review-slider-holder .button-holder {
    	display: none;
	}

    /* review section */
    .review-author-name {
        font-size: 22px;
    }
    .review-author-designation {
        font-size: 1.125rem;
    }
    .review-star img {
        padding: 0 2px;
    }
    .review-author-info {
        padding: 20px;
    }
	
	.process-icon svg {
    	width: 65px;
    	height: 65px;
	}
	
	.footer {
    	padding: 60px 0 30px;
	}
	
	.footer .wpcf7-form {
        margin: 0 auto;
    }
}

@media screen and (max-width: 540px) {
    .hero .counter-up .counter-item:not(:last-child) .counter-box::after {
        content: none;
    }
}

@media screen and (max-width: 480px) {
	.counter-block {
    	gap: 30px;
	}
	
	.service-list .service-list-item {
        padding: 30px 20px;
    }

    .app-screen-area.layout-style2 .swiper-slide-active .app-screen {
        top: 0;
        transform: scale(1);
    }

    .subscription-form-holder{
        flex-wrap: wrap;
    }

    .subscription-form-holder .submit-fields{
        width: 100%;
    }

    .subscription-form .wpcf7-not-valid-tip{
        position: relative;
        bottom: -5px;
    }
	
	 .w3e-slider-navigation{
        display: none !important;
    }
	
	.testimonial-box-style3 .review-author-details {
   	 	padding: 0;
	}
	
	.review-slider-holder.style4 .shape {
        display: none;
    }

    .single-service .sidebar .related-service-holder {
    	padding: 30px 15px;
	}
	
	.single-service .sidebar .about-agency {
    	padding: 40px 20px;
	}
}

@media screen and (max-width: 420px) {
	.hero .btn {
    	--bs-btn-padding-x: 0.75rem;
	}
    .process::after {
        height: 80%;
    }
}

@media screen and (max-width: 350px) {
    .hero .counter-up{
        justify-content: center;
    }
}

@media screen and (max-width: 340px) {
	.hero .btn {
    --bs-btn-padding-x: 0.35rem;
    --bs-btn-padding-y: 0.75rem;
	}
}

@media screen and (min-width: 768px) {

    .hero.hero-cta .hero-content {
        padding: 150px 0px 170px 0px;
    }

    .hero.hero-cta .hero-cta-holder{
        padding: 100px 0px;
    }

    /* home contact */
    .contact-details {
        align-items: center;
        background-color: #fff;
        border: 1px solid var(--w3e-lightgray-color);
        border-radius: 15px;
        box-shadow: 0px 1.85px 3.15px 0px #00000001, 0px 8.15px 6.52px 0px #00000002, 0px 20px 13px 0px #00000003, 0px 38.52px 25.48px 0px #00000003, 0px 64.81px 46.85px 0px #00000004, 0px 100px 80px 0px #00000005;
        display: flex;
        height: 80%;
        padding: 22px;
        position: relative;
        left: -40px;
        top: 10%;
        width: calc(100% + 40px);
    }
}
@media screen and (min-width: 992px) {
	.ult-section {
    	padding: 80px 0px;
	}
    .navbar {
        --bs-navbar-nav-link-padding-x: 1rem;
        --bs-nav-link-font-size: 1rem;
        padding: 20px 0px;
    }

    .counter-up .number-count {
        font-size: 4rem;
    }
}
@media screen and (min-width: 991px) and (max-width: 1200px) {
    .hero .btn {
    	--bs-btn-padding-x: 1rem;
	}
	
	.counter-block {
    	gap: 30px;
	}
	
	.counter-block .counter-item {
    	width: calc(33.33% - 20px);
    	flex-basis: calc(33.33% - 20px);
	}
}
	
@media screen and (min-width: 1200px) {
    /* Section common styles */
    .container-fluid{
        max-width: 100%;
        padding: 0px 100px;
    }

     .ult-section{
        padding: 120px 0px;
    }
    
    .navbar {
        --bs-nav-link-font-size: 1.125rem;
        padding: 20px 0px;
    }
    .section-wrapper-small {
        max-width: 1080px;
    }

    .hero.hero.hero-buttons .hero-content-holder{
        align-items: center;
    }

    /* Review Section */
    .review-slider-holder.style2 .review-quote::before {
        left: -60px;
    }
    .review-slider-holder.style2 .review-quote::after {
        right: -60px;
    }
    .button-holder{
        margin: 75px auto 0;
    }
    /* home contact */
    .contact-details {
        left: -80px;
        padding: 52px;
        width: calc(100% + 80px);
    }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
	.section-title {
    	font-size: 2.75rem;
	}
	.hero .button-group {
    	margin-top: 30px;
	}
    .counter-block {
    	gap: 40px;
	}
}
@media screen and (min-width: 1400px) {
    .header-area .container-fluid {
        padding: 0px 100px;
    }
    .header-area .logo {
        width: 248px;
    }
    
    .navbar {
        --bs-navbar-nav-link-padding-x: 1rem;
        --bs-nav-link-font-size: 1.5rem;
    }
    .nav-container {
        max-width: 98%;
    }
    .header-area .navbar-nav .nav-item .nav-link, .header-area .navbar-nav .nav-item .dropdown-item {
        font-size: 1rem;
        font-weight: 400;
    }
    .btn-nav-download {
        --bs-btn-padding-y: 0.75rem;
        --bs-btn-padding-x: 1.75rem;
        --bs-btn-font-size: 1.25rem;
        --bs-btn-border-radius: 7px;
    }
    .section-wrapper-medium {
        max-width: 1360px;
    }


    /* pricing */
    .block-img-layer-style1 .feature-block-img::after {
        content: '';
        position: absolute;
        width: calc(100% + 80px);
        height: 350px;
        background-color: var(--w3e-lightgray-color);
        top: calc(50% + 25px);
        left: -40px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: -1;
    }

    .block-img-layer-style2 .feature-block-img::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 300px;
        background-color: var(--w3e-lightgray-color);;
        top: -150px;
        left: -40%;
        transform: rotate(-15deg);
        z-index: -1;
    }
    
    .block-img-layer-style2 .feature-block-img::after {
        content: '';
        position: absolute;
        width: calc(50% + 50px);
        height: 300px;
        background-color: var(--w3e-lightgray-color);
        top: -170px;
        right: -40%;
        transform: rotate(-15deg);
        z-index: -1;
    }

    .app-screen-area .ult-slider-navigation {
        width: 85%;
    }
}

@media screen and (min-width: 1400px) and (max-width: 1800px) {
    .block-img-layer-style1 .feature-block-img::after {
        top: -50px;
    }
}

@media screen and (min-width: 1800px) {
    .section-wrapper-large,
    .nav-container {
        max-width: 1710px;
    }

    /* explore feature */
    .feature-block::before {
        border-radius: 0 300px 300px 0;
    }
    .feature-block {
        margin: 300px 0;
    }
    .feature-block-img {
        max-width: 500px;
    }
    .feature-block-content {
        padding: 110px 156px 110px 60px;
    }
    .feature-block-title {
        font-size: 3rem;
    }
    .feature-block-description {
        font-size: 1.5rem;
    }
    .even-block.feature-block::before {
        border-radius: 300px 0 0 300px;
    }
    .even-block .feature-block-content {
        padding: 110px 60px 110px 156px;
    }
    .feature-block:last-child {
        margin-bottom: 170px;
    }

    /* review section */
    .carousel-inner {
        padding: 0 68px;
    }

}