@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --theme-black: #303030;
    --white: #ffffff;
    --grey: #808080;
    --light-grey: #d3d3d3;
    --theme-green: #4EA082;
    --theme-red: #F49097;
    --theme-darkBlue: #403192;
    --theme-lightBlue: #6354B6;
    --theme-orange: #FED065;
    --theme-brown: #D4AA7D;
    --theme-darkgreen: #38755F;
    /* --theme-lightblueBg: #604fc1; */
    --theme-lightblueBg: #6652d3;
    --theme-header: #2B2453;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}


/* Header */

.wp-header-small-logo {
    position: fixed;
    z-index: 999;
    left: 40px;
    top: 26px;
    opacity: 0;
    transition: 1s all ease-in-out;
}

.wp-header-small-logo.active {
    opacity: 1;
    transition: 1s all ease-in-out;
}

.wp-header-small-logo a {
    width: 40px;
    transition: 0.3s all ease-in-out;
    border: 1px solid transparent;
    padding: 8px 5px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #6652d3;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-header-small-logo a:hover {
    border: 1px solid #6652d3;
}

.wp-header-small-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.container-header {
    max-width: 1250px;
    margin: 0 auto;
}

.wp-navbar ul .wp-parent-li {
    padding: 0px 20px;
}

.wp-navbar ul .wp-parent-li>a,
.wp-navbar ul .wp-parent-li h3 {
    color: var(--white);
    font-family: "Roboto", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0px;
    display: inline-block;
    padding: 25px 0px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    letter-spacing: 1px;
}

.wp-navbar ul .wp-parent-li>a:hover,
.wp-navbar ul .wp-parent-li h3:hover {
    color: #D5D5D5;
}

.wp-header__wrapper {
    background-color: var(--theme-lightblueBg);
    padding: 20px 0px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(0px);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 0px rgb(255 255 255 / 0%);
}

.wp-header__wrapper.active {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 0px rgb(255 255 255 / 0%);
}

.wp-header-detail {
    background-color: var(--theme-header);
    height: 94px;
    border-radius: 15px;
    padding: 0px 50px;
}

.wp-dropdown_header {
    position: absolute;
    background-color: var(--white);
    border-radius: 20px;
    padding: 10px 0px;
    min-width: 130px;
    opacity: 0;
    z-index: -1;
    top: 60px;
    display: none;
}

.wp-dropdown_header::after {
    content: '';
    width: 13px;
    height: 13px;
    background-color: var(--white);
    position: absolute;
    top: -6px;
    right: 30px;
    transform: rotate(45deg);
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    overflow: visible !important;
    z-index: -1;
}

.wp-dropdownList:hover span svg {
    transform: rotate(180deg);
}

.wp-dropdownList span svg {
    width: 12px;
    margin-left: 3px;
    transition: 0.3s all ease-in-out;
}

.wp-dropdownList>span svg path {
    fill: var(--white);
    stroke: var(--white);
}

.wp-dropdownList:hover+.wp-dropdown_header,
.wp-dropdown_header:hover {
    opacity: 1;
    z-index: 11;
    display: block;
}

.wp-dropdown_header li a {
    padding: 10px 20px;
    display: block;
    color: #1D1C1C;
    font-family: "Roboto", Sans-serif;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 400;
    letter-spacing: 1px;
}

.wp-dropdown_header li a:hover {
    background-color: #D5D5D5;
}

.wp-header-detail .wp-login_btn {
    background-color: var(--theme-lightblueBg);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4em;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #00000022;
    border-radius: 10px 10px 10px 10px;
    padding: 13px 35px 13px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
}

.wp-header-detail .wp-login_btn:hover {
    /* background-color: var(--white);
    color: var(--theme-black); */
    /* transform: scale(1.05); */
    transition: 0.3s all ease-in-out;
}

.wp-header-detail .wp-login_btn.transition:hover {
    transform: scale(1.05);
    transition: 0.3s all ease-in-out;
}

.wp-language-changer {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.wp-language-changer>svg {
    margin-right: 10px;
}

.offCanvas-wp-login_btn {
    background-color: var(--theme-lightblueBg);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4em;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #00000022;
    border-radius: 100px 100px 100px 100px;
    padding: 13px 35px 13px 35px;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    margin-top: 30px;
}

.offCanvas-wp-login_btn:hover {
    background-color: var(--theme-header);
    color: var(--white);
}

.custom_offcanvas {
    border: none !important;
    background-color: unset !important;
    padding: 0px !important;
}

.custom_offcanvas:focus {
    outline: none !important;
    box-shadow: unset !important;
    border: none !important;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: #ecf0f1;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.custom_offcanvas {
    display: none;
}

.wp-offCanvas-body ul li {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    display: block;
    width: 100%;
    padding: 10px 0;
}

.wp-offCanvas-body ul>li:last-child {
    border-bottom: 0px;
}

.wp-offCanvas-body ul li span,
.wp-offCanvas-body ul li a {
    color: #777;
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Nunito';
    font-weight: 500;
}

.wp-offCanvas-body ul li span svg {
    width: 15px;
}

.warning-icon_price i {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-left: 10px;
}

/* .warning-icon_price i::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 9px;
    width: 10px;
    height: 16px;
    background-color: #fff;
    overflow: hidden;
    z-index: -1;
    bottom: 0;
} */

.offcanvas_subMenu {
    opacity: 0;
    height: 0px;
    transition: 0.3s all ease-in-out;
    padding-left: 16px;
}

.offcanvas_subMenu.active {
    opacity: 1;
    height: 229px;
    transition: 0.3s all ease-in-out;
    padding-left: 16px;
}


/* Models */

.wp-modal-content {
    background-image: url(../images/wp-select-your-choice.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px 0px 20px 20px;
}

.wp-modal-content .modal-header,
.wp-modal-content-login .modal-header {
    padding: 5px !important;
}

.wp-modal-contactUs .modal-header .btn-close,
.wp-modal-pricing-demo .modal-header .btn-close,
.wp-modal-content-login .modal-header .btn-close,
.wp-modal-content .modal-header .btn-close,
.wp-modal-content-demo .modal-header .btn-close {
    background-color: #403192 !important;
    opacity: 1;
    color: var(--white) !important;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") center / 1em auto no-repeat;
    padding: 0px;
    width: 37px;
    height: 35px;
    z-index: 1;
    transform: 0.3s all ease-in-out;
}

.wp-modal-contactUs .modal-header .btn-close:hover,
.wp-modal-pricing-demo .modal-header .btn-close:hover,
.wp-modal-content-login .modal-header .btn-close:hover,
.wp-modal-content .modal-header .btn-close:hover,
.wp-modal-content-demo .modal-header .btn-close:hover {
    transform: scale(1.05);
}

.wp-modal-content .wp-modal-body {
    height: 490px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wp-select_title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 20px;
    color: var(--theme-black);
    position: relative;
    z-index: 1;
}

.wp-bookademo_btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    height: 55px;
    opacity: 1;
    border-radius: 10px;
    background-color: var(--theme-green);
    color: var(--white);
    font-size: 16px;
    Line-height: 22px;
    text-transform: uppercase;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    padding: 13px 45px 13px 45px;
    position: relative;
    overflow: hidden;
}

.wp-bookademo_btn:hover {
    background-color: var(--theme-darkgreen);
    color: var(--white) !important;
}

.wp-bookademo_btn svg{
    height: 30px;
    width: 30px;
    margin-right: 10px;
}
.wp-bookademo_btn svg path{
    fill: #fff;
}
.wp-demoPage_btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    width: 273px;
    height: 55px;
    opacity: 1;
    border-radius: 10px;
    background-color: var(--white);
    color: var(--theme-black);
    font-size: 16px;
    Line-height: 22px;
    text-transform: uppercase;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
}

.wp-demoPage_btn:hover {
    background-color: #e9e9e9;
    color: var(--theme-black) !important;
}

.wp-note-caption {
    margin-top: 98px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}


/* .wp-note-caption span:nth-child(1){
    color: #DE0000;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
} */


/* .wp-note-caption span:nth-child(2){
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 0px;
    text-align: left;
    color: #000;
    display: flex;
    align-items: self-start;
    justify-content: center;
    gap: 10px;
    max-width: 375px;
} */

.wp-note-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    max-width: 450px;
    background-color: #FFF5EA;
    padding: 10px 20px 10px 18px;
    border-radius: 5px;
    border: 1.1px solid #A4A4A4;
    box-shadow: 0px 5.28px 14.08px 0px #0000001F;
}

.wp-note-caption img {
    width: 23px;
}

.wp-note-caption span.see-model-info-text {
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 0px;
    text-align: left;
    color: #000;
}

.book-a-demo-list {
    background-color: #FFF5EA;
    padding: 20px 30px 20px 30px;
    border-radius: 5px;
    border: 1.1px solid #A4A4A4;
    box-shadow: 0px 5.28px 14.08px 0px #0000001F;
    margin: 80px 0px 0px 0px;
    min-width: 580px;
}

/* .book-a-demo-list ul{
    display: inline-block;
    text-align: left;
} */
.book-a-demo-list ul li {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito';
    padding: 5px 0px;
    color: #000;
}

.book-a-demo-list ul li i {
    color: var(--theme-green);
    font-size: 16px;
    margin-right: 10px;
}

.centerBorderLine {
    height: 49px;
    width: 6px;
    display: inline-block;
    background-color: var(--theme-black);
    border-radius: 5px;
    margin: 0px 12px;
}


.wp-modal-content-login {
    background-image: url(../images/login-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px 0px 20px 20px;
    position: relative;
}

.wp-modal-content-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.wp-modal-content-login .wp-modal-body {
    height: 490px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wp-inputPassword {
    max-width: 275px;
    border-radius: 8px;
    height: 45px;
    position: relative;
    z-index: 1;
    font-family: 'Nunito';
}

.wp-ok_btn {
    padding: 3px 20px;
    background-color: #4EA082;
    margin-left: 9px;
    border-radius: 6px;
    color: white;
    height: 45px;
    border: none;
}

.wp-logindemo-label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    line-height: 19px;
    color: #343434;
    font-weight: 500;
    font-family: 'Nunito';
}

.wp-logindemo-label span {
    color: #C53936;
}

.wp-logindemo_input {
    width: 100%;
    padding: 10px 11px 10px 15px;
    border: 1px solid #ABABAB;
    border-radius: 8px;
    font-size: 12px;
    outline: none;
    background-color: #fff;
    color: #343434;
}

.wp-textarea_input {
    width: 100%;
    border: 1px solid #ABABAB;
    border-radius: 8px;
    font-size: 12px;
    background-color: #fff;
    color: #343434;
    outline: none;
}

.wp-modal-content-demo,
.wp-modal-contactUs {
    border-radius: 20px;
}

.wp-modal-content-demo .modal-header {
    background-image: url(../images/survey-form-light-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 18px 0px 0px 0px;
    position: relative;
    min-height: 350px;
    position: relative;
}

.wp-modal-content-demo .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
    border-radius: 18px;

}

.wp-select-subTitle {
    color: #fff;
    text-align: center;
    margin: 0 auto;
    max-width: 420px;
    justify-self: center;
    font-family: 'Nunito';
    font-size: 16px;
    line-height: 20px;
}

.wp-submit_btn {
    background-color: var(--theme-green) !important;
    color: #fff !important;
    padding: 14px 50px !important;
    border-radius: 10px !important;
    border: none !important;
    text-transform: uppercase !important;
    transition: 0.3s all ease-in-out;
    font-weight: 700;
    width: auto !important;
    font-family: 'Nunito';
    font-size: 16px;
    margin-top: 40px;
}

.wp-submit_btn:hover {
    background-color: var(--theme-darkgreen) !important;
    color: #fff !important;
}

.wp-demo-hero {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* Hero section */

.wp-hero-sectors-section {
    background-color: var(--theme-lightblueBg);
    height: 100vh;
    display: flex;
    /* align-items: center; */
    margin-top: 134px;
}

.wp-hero-detail .wp-hero-title {
    color: var(--white);
    font-size: 60px;
    font-weight: 800;
    line-height: 72px;
    font-family: 'Nunito';
    margin-bottom: 40px;
}

.wp-hero-detail .wp-hero-para {
    color: #FFFFFFCC;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    max-width: 512px;
    margin-bottom: 20px;
}

.wp-startup-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wp-hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
}

.wp-startupText-wrapper {
    margin-top: 55px !important;
}

.wp-startupText-wrapper .wp-startup-list span {
    color: var(--white);
    font-family: 'Nunito';
    font-size: 18px;
    font-weight: 600;
    line-height: normal;

}

.wp-works_caresoul-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 20px;
}

.carousel-item .carousel-caption {
    position: absolute;
    top: -190px;
    width: 100%;
    left: 0;
    right: 0;
    max-width: 700px;
    margin: 0 auto;
}

.slick-slide-caption h5,
.carousel-item .carousel-caption h5 {
    background-color: #604fc1;
    display: inline-block;
    color: #fff;
    border-radius: 30px;
    padding: 8px 30px;
    font-size: 15px;
    margin-bottom: 25px;
}

.slick-slide-caption p,
.carousel-item .carousel-caption p {
    color: #000;
    font-size: 16px;
    font-family: 'Nunito';
    min-height: 48px;
}

.carousel-inner {
    overflow: visible;
}

.carousel-inner .carousel-item img {
    height: 500px;
    object-fit: contain;
}

.carousel-indicators {
    display: none !important;
}

.carousel-control-prev {
    position: absolute;
    left: -130px !important;
    min-height: 50px;
    max-height: max-content;
    top: 50%;
    background-color: #2B2453;
    width: 50px;
    border-radius: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-next {
    position: absolute;
    right: -130px !important;
    min-height: 50px;
    max-height: max-content;
    top: 50%;
    background-color: #2B2453;
    width: 50px;
    border-radius: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .wp-hero-buttons .see-demo__Btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7em;
    color: #303030;
    border-radius: 50px 50px 50px 50px;
    padding: 13px 60px 13px 60px;
    background-color: var(--theme-orange);
    border: none;
    transition: 0.3s all ease-in-out;
    font-family: 'Nunito';
    text-transform: uppercase;
    min-width: 193px;
} */

.wp-hero-buttons .see-demo__Btn {
    position: relative;
    overflow: hidden;
    /* important */
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7em;
    color: #303030;
    border-radius: 10px;
    padding: 13px 45px;
    background-color: var(--theme-orange);
    border: none;
    transition: 0.3s all ease-in-out;
    font-family: 'Nunito';
    text-transform: uppercase;
    /* min-width: 193px; */

}

/* Shine Effect */
.animate-button.ani-two {
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 70%) !important;
    background-size: 200% 100% !important;
    background-position: -200% 0 !important;
    background-repeat: no-repeat !important;
    transition: background-position 1.2s ease !important;
}

.animate-button.ani-two:hover {
    background-position: 200% 0 !important;
}

.see-demo__Btn-f {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7em;
    color: #303030;
    border-radius: 10px 10px 10px 10px;
    padding: 13px 45px 13px 45px;
    background-color: var(--theme-orange);
    border: none;
    transition: 0.3s all ease-in-out;
    font-family: 'Nunito';
    text-transform: uppercase;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

/* .see-demo__Btn-f:hover
.wp-hero-buttons .see-demo__Btn:hover
 {
    background-color: #EEBD4C;
} */

.wp-signup_btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7em;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    padding: 12px 45px 12px 45px;
    font-family: 'Nunito';
    text-transform: uppercase;
    min-width: 193px;
    text-align: center;
    transition: 0.3s all ease-in-out;
}

.wp-signup_btn:hover {
    background-color: var(--white);
    color: var(--theme-black);
}

.wp-signup_btn:hover svg path {
    fill: var(--theme-black);
}

.wp-signup_btn svg {
    padding-right: 10px;
    fill: #FFFFFF;
    height: 23px;
    width: 23px;
}

.wp-signup_btn svg path {
    fill: var(--white);
}


/* hero images profile  */

.pris-main-container {
    position: relative;
}

.pris-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.pris-profile-container {
    position: absolute;
}

.pris-profile1 {
    top: 54%;
    left: -3%;
}

.pris-profile2 {
    top: 16%;
    left: 6%;
}

.pris-profile3 {
    top: 7%;
    right: 16%;
}

.pris-profile4 {
    top: 45%;
    right: -4%;
}

.pris-profile-photo {
    position: relative;
    width: 45px;
    height: 45px !important;
    border-radius: 50% !Important;
    cursor: pointer !important;
    border: 3px solid white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    z-index: 1;
}

.pris-profile1 .pris-profile-photo,
.pris-profile1 .pris-quote-text {
    border-color: #FED065 !important;
    /* red-ish */
}

.pris-profile2 .pris-profile-photo,
.pris-profile2 .pris-quote-text {
    border-color: #4EA082 !important;
    /* teal */
}

.pris-profile3 .pris-profile-photo,
.pris-profile3 .pris-quote-text {
    border-color: #F49097 !important;
    /* yellow */
}

.pris-profile4 .pris-profile-photo,
.pris-profile4 .pris-quote-text {
    border-color: #D4AA7D !important;
    /* purple */
}

.pris-profile1 .pris-quote-text::before {
    background-image: url('/wp-content/uploads/2025/05/svg-hero-1.svg');
}

.pris-profile2 .pris-quote-text::before {
    background-image: url('/wp-content/uploads/2025/05/svg-hero-2.svg');
}

.pris-profile3 .pris-quote-text::before {
    background-image: url('/wp-content/uploads/2025/05/svg-hero-3.svg');
}

.pris-profile4 .pris-quote-text::before {
    background-image: url('/wp-content/uploads/2025/05/svg-hero-4.svg');
}

.pris-profile-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: blinkCircle 1.5s infinite;
    z-index: 0;
}

.pris-profile1::before {
    animation-delay: 0s;
}

.pris-profile2::before {
    animation-delay: 1s;
}

.pris-profile3::before {
    animation-delay: 2s;
}

.pris-profile4::before {
    animation-delay: 3s;
}

@keyframes blinkCircle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

.pris-quote-text {
    position: absolute;
    background-color: #2c146c;
    color: #fff;
    padding: 15px 15px;
    border-radius: 12px;
    max-width: 300px;
    min-width: 128px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    border: 2px solid #6c63ff;
    z-index: 9999;
}

.pris-profile-container:hover .pris-quote-text {
    opacity: 1;
}

.pris-quote-text::before {
    content: "";
    position: absolute;
    top: -28px;
    left: -25px;
    width: 50px;
    height: 50px;
    background: no-repeat center center;
    background-size: contain;
}

.pris-profile1 .pris-quote-text {
    position: absolute;
    right: 41px;
    bottom: 77%;
}

.pris-profile2 .pris-quote-text {
    position: absolute;
    right: 43px;
    bottom: 77%;
}

.pris-profile3 .pris-quote-text {
    position: absolute;
    right: unset;
    bottom: 100%;
    left: 44px;
}

.pris-profile4 .pris-quote-text {
    position: absolute;
    left: 38px;
    bottom: 95%;
}

a.sf-with-ul .trp-ls-language-name {
    display: inline-block;
    width: 1.3em;
    overflow: hidden;
    white-space: nowrap;
    baseline-source: first !important;
    text-transform: uppercase;
    vertical-align: -webkit-baseline-middle;
    margin-top: -6px;
}

.section__wrapper {
    padding: 60px 0px 60px 0px;
    width: 100%;
}

.container-custom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0px 10px;
}

.wp-heading-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    font-family: "Nunito", sans-serif;
    color: var(--theme-black);
    font-style: normal;
    line-height: 48px;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
}

.wp-sub-heading-title {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: var(--theme-black);
    font-style: normal;
    line-height: 27px;
    max-width: 830px;
    margin: 0 auto;
    margin-bottom: 76px;
}

.wp-contract-management-card {
    transition: 0.3s all ease-in-out;
    padding: 40px 40px 34px 40px;
}

.wp-contract-management-card:hover {
    transform: scale(1.05);
}

.wp-contract-management-card.green {
    background-color: var(--theme-green);
    border-radius: 20px;
}

.wp-contract-management-card ul {
    list-style-type: none;
    padding: 0px;
}

.wp-contract-management-card .wp-card-title {
    font-family: "Nunito", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #303030;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}

.wp-card-description ul {
    margin-bottom: 0px;
}

.wp-card-description ul li {
    display: flex;
    align-items: center;
    font-family: "Roboto", Sans-serif;
}

.wp-card-description ul li svg {
    fill: var(--theme-black);
    transition: fill 0.3s;
    height: 14px;
    width: 14px;
    margin-right: 5px;
}

.wp-card-description ul li span {
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    color: #303030;
    transition: color 0.3s;
    padding-left: 5px;
}

.wp-contract-management-card.orange {
    background-color: var(--theme-orange);
    border-radius: 20px;
}

.wp-contract-management-card.red {
    background-color: var(--theme-red);
    border-radius: 20px;
}

.wp-startNow__btn {
    background-color: var(--theme-green);
    font-family: "Nunito", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    border-radius: 10px 10px 10px 10px;
    padding: 15.5px 45px 15.5px 45px;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin: 45px auto 0 auto;
    text-align: center;
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
    width: 183px;
    position: relative;
    overflow: hidden;
}

.wp-startNow__btn:hover {
    background-color: var(--theme-darkgreen);
    color: var(--white);
}

.wp-business-sectors-section {
    background-image: url(../images/business-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 104px 10px;
}

.container-custom-2 {
    max-width: 930px;
    margin: 0 auto;
    padding: 0px 10px;
}

.wp-service-card {
    background-color: #12121299;
    padding: 41px 32px 41px 32px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #DBDBDB99;
    border-radius: 10px 10px 10px 10px;
    transition: 0.3s all ease-in-out;
}

.wp-service-card:hover {
    transform: scale(1.05);
}

.wp-service-card svg {
    margin-bottom: 20px;
}

.wp-service-card .wp-service_title {
    font-family: "Nunito", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    color: var(--white);
    margin-bottom: 8px;
}

.wp-service-card .wp-service_description {
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #FFFFFFD4;
    margin-bottom: 0px;
}

.Pricing__currency {
    background-color: transparent;
    border-radius: 5px;
    padding: 8px 10px;
    border: none;
    text-align: end;
    display: block;
    margin: 0 0 13px auto;
    min-width: 77px;
    position: absolute;
    top: -57px;
    right: 0;
    outline: none;
}

.Pricing__currency:focus {
    outline: none !important;
}

.Pricing__currency span {
    margin-right: 10px;
    font-weight: 800;
    font-family: 'Nunito';
    font-size: 16px !important;
    color: #FED065;
}

.Pricing__currency svg {
    width: 12px;
}

.Pricing__currency svg path {
    fill: #FED065;
    stroke: #FED065;
}

.month-tab-title {
    margin-bottom: 30px;
}

.currency-changer_pricing {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    /* 🔹 hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 99;
}

.currency-changer_pricing li {
    padding: 5px 14px;
    cursor: pointer;
    list-style-type: none;
    text-align: left;
    font-size: 16px;
}

.currency-changer_pricing li:hover {
    background: #D5D5D5;
    color: #444;
}

.currency-changer_pricing li.active {
    background-color: #D5D5D5;
    color: #444;
}


/* 🔹 Active state */

.Pricing__currency.active .currency-changer_pricing {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Contract solutions */

.wp-para-description {
    max-width: 763px;
    margin: 0 auto;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: var(--theme-black);
}

.wp-contract-sector-section {
    background-image: url(../images/contract-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wp-contract-card-wrap {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}

.wp-contract-card-wrap:hover {
    transform: scale(1.05);
}

.wp-contract-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0px;
}

.wp-contract-card-header.orange-bg {
    background-color: var(--theme-orange);
}

.wp-contract-card-header.red-bg {
    background-color: var(--theme-red);
}

.wp-contract-card-header.green-bg {
    background-color: var(--theme-green);
}

.wp-contract-card-header.brown-bg {
    background-color: var(--theme-brown);
}

.wp-contract-card-header .wp-contract_title {
    font-family: "Nunito", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0px;
}

.wp-contract-card-wrap .wp-contract_list {
    list-style-type: none;
    padding: 20px 30px;
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 0px;
}

.wp-contract-card-wrap .wp-contract_list li {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-black);
    transition: color 0.3s;
    padding-bottom: 2.5px;
    line-height: 29px;
}


/* Kontroll works */

.fancybox__content {
    border-radius: 10px !important;
    overflow: hidden !important;
}

.fancybox__image {
    box-shadow: 0 0 30px rgba(0, 0, 0, .3), 0 0 8px -5px rgba(0, 0, 0, .3) !important;
    border-radius: 0px !important;
}

.wp-image-gallery {
    border: 1px solid var(--theme-black);
    border-radius: 10px;
    display: block;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}

.wp-image-gallery:hover {
    transform: scale(1.05);
}

.wp-kontroll-workWrap {
    display: flex;
    align-items: start;
    gap: 30px;
    margin-top: 30px;
}

.wp-kontroll-workWrap .wp-number-bullet.one span {
    background-color: var(--theme-green);
}

.wp-kontroll-workWrap .wp-number-bullet.two span {
    background-color: var(--theme-orange);
}

.wp-kontroll-workWrap .wp-number-bullet.three span {
    background-color: var(--theme-red);
}

.wp-kontroll-workWrap .wp-number-bullet span {
    color: var(--white);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Nunito';
    font-size: 28px;
}

.wp-kontroll-details .workWrap-title {
    font-family: "Nunito", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wp-kontroll-details .workWrap-para {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    color: var(--theme-black);
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px !important;
}

.mx-400 {
    width: 400px;
}

.mx-500 {
    width: 500px;
}

.mx-460 {
    width: 460px;
}


/* pricing */

.wp-pricing-sector-section {
    /* background-color: #604fc1; */
    background-color: #6652d3;
    /* padding: 35px 30px; */
}

.wp-pricing-sector-section .pricing__list_title h5 {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: rgba(52, 58, 64, 1);
    margin-bottom: -15px;
    font-family: 'Nunito';
    margin-top: 10px;
    min-height: 30px;
}

.wp-pricing-sector-section .pricing-plan-wrap {
    /* background-color: #604fc1; */
    background-color: #6652d3;
}

.wp-pricing-sector-section .se-demo-circle {
    background-color: #FED065;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    font-size: 13.6px;
    line-height: 20px;
    font-weight: 400;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 15px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: -41px;
    top: -26px;
    z-index: 99;
}

.wp-pricing-sector-section .pricing__list {
    background-color: #fff;
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.wp-pricing-sector-section .pricing__list_title {
    margin-bottom: 16px;
    /* margin-top: 1rem; */
    padding-top: 16px;
}

.wp-pricing-sector-section .pricing__list_title>span {
    color: #4EA082;
    font-weight: 800;
    font-size: 30px;
    text-align: center;
    line-height: 36px;
    font-family: 'Nunito';
    padding-bottom: 8px;
    border-bottom: 4px solid #4EA082;
    display: inline-block;
    margin-bottom: 15px;
}

.wp-pricing-sector-section .pricing__list_title h4 {
    color: #303030;
    margin-top: 21px;
    font-weight: 800;
    font-family: 'Nunito';
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 0px;
    min-height: 36px;
}

.wp-pricing-sector-section .pricing_checkList {
    list-style-type: none;
    padding: 0;
    padding: 16px 32px;
}

.wp-pricing-sector-section .pricing_checkList li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 35.7px;
}

.wp-pricing-sector-section .pricing_checkList li .info-img {
    width: 20px;
}

.wp-pricing-sector-section .pricing_checkList li .checkList-title {
    display: flex;
    align-items: center;
}

.wp-pricing-sector-section .pricing_checkList li .checkList-title img {
    width: 20px;
}

.wp-pricing-sector-section .pricing_checkList li .checkList-title h5 {
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #303030;
}

.wp-pricing-sector-section .chekout-btn {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(78, 160, 130, 1);
    border-radius: 100px;
    padding: 14px 55px;
    border: none;
    display: block;
    margin: 15px auto 5px auto;
}

.wp-pricing-sector-section .chekout-btn:focus {
    outline: none;
}

.pricing-main-title {
    font-size: 38px;
    line-height: normal;
    font-weight: 900;
    font-family: 'Nunito';
    color: rgba(255, 255, 255, 1);
    margin-bottom: 10px;
    text-align: center;
}

.wp-pricing-sector-section .nav-tabs #nav-home-tab.active,
.wp-pricing-sector-section .nav-tabs #nav-profile-tab.active {
    font-weight: 900;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    font-family: 'Nunito';
    background-color: var(--theme-orange) !important;
    color: rgba(52, 58, 64, 1);
    border-radius: 100px;
    border: none;
    transition: 0.3s all ease-in-out;
}

/* .wp-pricing-sector-section .nav-tabs #nav-home-tab:hover,
.wp-pricing-sector-section .nav-tabs #nav-profile-tab:hover {
    background-color: var(--theme-orange) !important;
    color: rgba(52, 58, 64, 1);
} */

.wp-pricing-sector-section .nav-tabs .nav-pricing-tab {
    padding: 14px 25px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    font-family: 'Nunito';
    background-color: transparent;
    color: #BAB1D2;
    border-radius: 100px;
    border: none;
    min-width: 187px;
    transition: 0.3s all ease-in-out;
    position: relative;
    overflow: hidden;
}

/* .wp-pricing-sector-section .nav-tabs #nav-profile-tab.active {
    padding: 14px 25px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    font-family: 'Nunito';
    background-color: var(--theme-red) !important;
    color: var(--white);
    border-radius: 100px;
    border: none;
    min-width: 187px;
    transition: 0.3s all ease-in-out;
} */

/* .wp-pricing-sector-section .nav-tabs #nav-profile-tab:hover {
    background-color: var(--theme-red) !important;
    color: var(--white);
} */

/* .wp-pricing-sector-section .nav-tabs .nav-pricing-tab:nth-child(1) {
    margin-right: 40px;
} */

.wp-pricing-sector-section .nav-tabs .nav-pricing-tab:focus {
    outline: none;
}

/* .wp-pricing-sector-section .nav-tabs .nav-link:focus,
.wp-pricing-sector-section .nav-tabs .nav-link:hover {
    background-color: #EEBD4C;
} */
.wp-pricing-sector-section .pricing-card-wrap {
    /* border: 0.84px solid rgba(255, 255, 255, 1);
    padding: 15px 16px;
    border-radius: 20px;
    backdrop-filter: blur(7.517161846160889px);
    background: rgba(217, 217, 217, 0.35); */
    font-family: 'Nunito';
    position: relative;
}

.wp-pricing-sector-section .pricing-plan-card {
    border: 0.84px solid rgba(226, 226, 226, 1);
    /* backdrop-filter: blur(7.517161846160889px); */
    background-color: #6E52BB;
    display: block;
    text-align: center;
    padding: 30px 30px;
    border-radius: 15px;
    font-family: 'Nunito';
    height: 100%;
    position: relative;
    text-decoration: none !important;
    height: 221px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.wp-pricing-sector-section .pricing-plan-card.active {
    border: 0.84px solid rgba(226, 226, 226, 1);
    backdrop-filter: blur(7.517161846160889px);
    background: rgba(254, 208, 101, 1);
    display: block;
    text-align: center;
    padding: 30px 30px;
    border-radius: 15px;
    font-family: 'Nunito';
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.wp-pricing-sector-section .Yearly .pricing-plan-card.active {
    border: 0.84px solid rgba(226, 226, 226, 1);
    backdrop-filter: blur(7.517161846160889px);
    /* background: #F0FFF4; */
    background: #fff;
    /* background: var(--theme-red); */
    display: block;
    text-align: center;
    padding: 30px 30px;
    border-radius: 15px;
    font-family: 'Nunito';
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.wp-pricing-sector-section .Yearly .pricing-plan-card.active p strong {
    color: rgba(52, 58, 64, 1);
}

.wp-pricing-sector-section .pricing-plan-card.active h4,
.wp-pricing-sector-section .pricing-plan-card.active p,
.wp-pricing-sector-section .pricing-plan-card.active strong,
.wp-pricing-sector-section .pricing-plan-card.active .price-amount {
    color: rgba(52, 58, 64, 1);
    font-family: 'Nunito';
}

.wp-pricing-sector-section .pricing-plan-card.active button {
    background-color: var(--theme-header);
    border: 1px solid var(--theme-header);
    color: #fff;
    font-family: 'Nunito';
}

.wp-pricing-sector-section .pricing-plan-card h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #d9c9ff;
    margin-bottom: 10px;
    font-family: 'Nunito';
}

.wp-pricing-sector-section div#nav-profile .pricing-plan-card h4 {
    margin-right: 20px;
}

.wp-pricing-sector-section div#nav-profile .pricing-plan-card h6 {
    margin-right: 20px;
}

.wp-pricing-sector-section .pricing-plan-card p {
    font-weight: 500;
    font-size: 17.64px;
    line-height: 24.7px;
    text-align: center;
    color: rgba(99, 84, 182, 1);
    margin-bottom: 15px;
    font-family: 'Nunito';
}


.wp-pricing-sector-section .pricing-plan-card p strong.price-suffix {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #d9c9ff;
    font-family: 'Nunito';
}

.wp-pricing-sector-section .pricing-plan-card p .price-amount {
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    font-family: 'Nunito';
}

.wp-pricing-sector-section .pricing-plan-card.active p strong.price-suffix {
    color: rgba(52, 58, 64, 1);
}

.wp-pricing-sector-section .pricing-plan-card p strong.pricing-plan-24 {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
}

.wp-pricing-sector-section .pricing-plan-card button {
    border: 1px solid #d9c9ff;
    background-color: #8067C4;
    padding: 12px 38px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Nunito';
    border-radius: 10px;
    width: 100%;
    font-family: 'Nunito';
}

.wp-pricing-sector-section .pricing-plan-card button:focus {
    outline: none;
}

/* .wp-pricing-sector-section .pricing-plan-card h5{
    background-color: #604fc1;
    border-radius: 30px;
    font-size: 12px;
    padding: 3px 8px;
    color: #fff;
    font-family: 'Nunito';
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 10px;
    right: 10px;
} */

.wp-pricing-sector-section .pricing-plan-card h5 {
    background-color: #FED065;
    border-radius: 30px;
    font-size: 12px;
    padding: 5px 12px;
    color: #fff;
    font-family: 'Nunito';
    font-weight: 900;
    line-height: normal;
    position: absolute;
    top: -12px;
    animation: smoothHeartbeat 2.5s ease-in-out infinite;
    color: #2B2453;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #2B2453 !important;
}

/* Keyframes */
@keyframes smoothHeartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.wp-pricing-sector-section .month-tab-title h3 {
    font-family: 'Nunito';
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
    text-align: center;
    color: #d9c9ff;
    margin-bottom: 12px;
}

.wp-pricing-sector-section .month-tab-title p {
    font-weight: 500;
    font-size: 18.5px;
    line-height: 24.64px;
    text-align: center;
    margin-bottom: 15px;
    color: #d9c9ff;
    font-family: 'Nunito';
}

.wp-pricing-sector-section .nav-mb-32 {
    background-color: #2B2453;
    padding: 8px;
    width: 400px;
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 32px !important;
}

.wp-pricing-sector-section .pricing-plan-card h6 {
    height: 27px;
}

.wp-pricing-sector-section .pricing-plan-card h6 del {
    color: rgba(223, 0, 0, 1);
    font-weight: 500;
    font-size: 17.82px;
    line-height: 24.36px;
    text-align: center;
    font-family: 'Nunito';
    text-decoration: line-through;
    text-decoration-color: #000;
}

.wp-pricing-sector-section .pricing-plan-card h6 del:nth-child(2) {
    color: rgba(223, 0, 0, 1);
    font-weight: 500;
    font-size: 12.82px;
    line-height: 24.36px;
    text-align: center;
    font-family: 'Nunito';
    text-decoration: line-through;
    text-decoration-color: #000;
}

.wp-pricing-sector-section .label-highligh {
    height: 62px;
    width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(99, 84, 182, 1);
    color: rgba(255, 255, 255, 1);
    line-height: 10.94px;
    font-size: 9.92px;
    font-weight: 400;
    font-family: 'Nunito';
    border-radius: 31px;
    box-shadow: 0px 3.65px 10.94px 2.92px rgba(0, 0, 0, 0.1);
    padding: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.wp-pricing-sector-section .pricing-plan-card.active .label-highligh {
    height: 62px;
    width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(52, 58, 64, 1);
    line-height: 10.94px;
    font-size: 9.92px;
    font-weight: 400;
    font-family: 'Nunito';
    border-radius: 31px;
    box-shadow: 0px 3.65px 10.94px 2.92px rgba(0, 0, 0, 0.1);
    padding: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.wp-pricing-sector-section .pricing-main-label {
    font-weight: 700;
    font-size: 18.83px;
    line-height: 30.24px;
    text-align: center;
    /* color: rgba(254, 208, 101, 1) !important; */
    color: #F49097 !important;
    margin-bottom: 25px;
}

.wp-pricing-sector-section .pricing-main-label span {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #fed065 !important;
    font-family: 'Nunito';
    background-color: #7B5A9F;
    padding: 10px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    line-height: normal;
    border: 1px solid #fed065;
    font-size: 15px;
    letter-spacing: 1px;
}

.wp-pricing-sector-section .pricing-main-label span::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--theme-red);
    height: auto;
    right: 0;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center;
    -webkit-mask-image: url("../images/bg-brush-view.png");
    mask-image: url("../images/bg-brush-view.png");
    background-size: contain;
    z-index: -1;
    width: 125%;
    left: -57px;
    transform: rotate(180deg);
    display: none;
}

.wp-pricing-sector-section .pricing-main-label img {
    width: 25px;
    height: 17px;
    filter: brightness(0) invert(1);
    top: 15px;
    position: absolute;
    transform: rotate(45deg);
    z-index: 9;
    right: -25px;
}

.wp-pricing-sector-section .info-hover-card {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid rgb(78, 160, 130);
    color: rgb(78, 160, 130);
    padding: 1rem;
    position: absolute;
    right: -235px;
    width: 230px;
    top: 0px;
    z-index: -1;
    transition: visibility 0.2s linear, opacity 0.2s linear;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    visibility: hidden;
}

.wp-pricing-sector-section .info-hover-card p {
    font-size: 14px;
    font-weight: 400;
}

.wp-pricing-sector-section .price-detail-info {
    position: relative;
}

.wp-pricing-sector-section .price-detail-info img {
    cursor: pointer;
}

.wp-pricing-sector-section .price-detail-info img:hover+.info-hover-card {
    z-index: 999;
    visibility: visible;
    transition: visibility 0.2s linear, opacity 0.2s linear;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}

.wp-pricing-sector-section .chekout-btn:hover {
    background-color: #38755F;
    color: white;
}

.wp-pricing-sector-section .pricing-plan-card button:hover {
    background-color: rgb(65 53 129);
    color: white
}

.wp-pricing-sector-section a.chekout-btn {
    width: 200px;
}



.wp-pricing-sector-section div#PRISER {
    overflow: hidden;
}

.wp-pricing-sector-section .pricing-plan-card:hover {
    background: rgba(254, 208, 101, 1);
    /* slightly lighter/darker */
    border-color: rgba(200, 200, 200, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.wp-pricing-sector-section .pricing-plan-card:hover button {
    background-color: var(--theme-header);
    color: #fff;
    font-family: 'Nunito';
    transition: all 0.3s ease-in-out;
    transform: scale(1.05);
}

.wp-pricing-sector-section .pricing-plan-card:hover p strong,
.wp-pricing-sector-section .pricing-plan-card:hover p .price-amount {
    color: rgba(52, 58, 64, 1);
    transition: color 0.3s ease-in-out;
}

@media only screen and (max-width: 769px) {
    .wp-pricing-sector-section button.nav-link.nav-pricing-tab {
        margin-bottom: 5px;
        margin-right: 10px;
    }

    .wp-pricing-sector-section .nav-tabs .nav-pricing-tab:nth-child(1) {
        margin-right: 10px;
    }

    .wp-pricing-sector-section img.info-img {
        display: none;
    }

    .wp-security_pages ul {
        gap: 20px;
        width: 100%;
    }
}


/* FAQS */

.container-custom-3 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 10px;
}

.wp-heading-title.font-60 {
    font-size: 60px;
    color: var(--theme-black);
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    z-index: 11;
    position: relative;
    line-height: normal;
}

.section__wrapper.wp-faq-sector-section {
    background-image: url(../images/faqs-bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.section__wrapper.wp-faq-sector-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.custom-accordian-faqs {
    position: relative;
    z-index: 1;
}

.custom-accordian-faqs .accordion-item {
    border: none;
    border-bottom: 1px solid var(--theme-black);
    background-color: transparent !important;
}

.custom-accordian-faqs .accordion-item h2 button {
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    line-height: 28px;
    border-radius: 0px 0px 0px 0px;
    padding: 40px 0px 40px 0px;
    border-bottom: none;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    background-color: transparent;
}

.custom-accordian-faqs .accordion-item .accordion-body {
    padding: 3px 20px 50px 20px !important;
    color: #000000BD;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.custom-accordian-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: #02010112 !important;
    color: #5842BC !important;
    padding: 40px 20px;
}


/* footer */

.section__wrapper.wp-footer-sector-section {
    background-color: var(--theme-black);
}

.wp-title-small {
    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF78;
    margin-top: 35px;
    line-height: 21px;
    margin-bottom: 60px;
}

.wp-admin-mail a {
    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF78;
    margin-top: 35px;
    line-height: 21px;
    display: inline-block;
    transition: 0.3s all ease-in-out;
}

.wp-admin-mail a:hover {
    color: var(--white);
}

.wp-heading-title.fontw-900 {
    font-weight: 900;
}

.wp-heading-title.mx-800 {
    max-width: 800px;
    margin: 0 auto;
}

.wp-footer-bottom .wp-footer-logo {
    padding-bottom: 15px;
}

.wp-footer-bottom .wp-footer-logo svg {
    transition: 0.3s all ease-in-out;
}

.wp-footer-bottom .wp-footer-logo svg:hover {
    transform: scale(1.05);
}

.wp-footer-bottom .wp-footer-logo svg path {
    fill: #fff;
}

.wp-security_pages {
    border-top: 1px solid var(--white);
    padding-top: 15px;
}

.wp-security_pages h6 {
    font-family: "Roboto", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
}

.wp-security_pages ul {
    gap: 20px;
}

.wp-security_pages ul li {
    padding: 0px 0px 0px 15px;
    line-height: normal;
    display: flex;
    align-items: flex-start;
}

.wp-security_pages ul li a {
    color: var(--white) !important;
    font-family: "Roboto", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: 0.5s all ease-in-out;
}

.wp-security_pages ul li a:hover {
    transform: scale(1.05);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg width='22' height='13' viewBox='0 0 22 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.1027 12.5233C11.8115 12.8283 11.4144 13 11 13C10.5856 13 10.1885 12.8283 9.89731 12.5233L0.44569 2.74321C-0.152856 2.11122 -0.147912 1.09835 0.456772 0.472647C1.06146 -0.153052 2.04031 -0.158168 2.65107 0.46118L11 9.06768L19.3489 0.46118C19.9597 -0.158168 20.9385 -0.153052 21.5432 0.472647C22.1479 1.09835 22.1529 2.11122 21.5543 2.74321L12.1027 12.5233Z' fill='%231E1E23'/%3e%3c/svg%3e") !important;
}


/* whatsapp button */

.widgetButton-whatsapp {
    position: fixed;
    top: auto;
    right: 40px;
    bottom: 50px;
    left: auto;
    width: 65px;
    height: 65px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30%;
    outline: none;
    text-decoration: none;
    text-shadow: none;
    cursor: pointer;
    color: #fff;
    background-color: #4EA082;
    box-shadow: 0 20px 30px 0 rgb(21 28 39 / 27%), 0 1px 2px 0 rgb(21 28 39 / 0%);
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s cubic-bezier(0.35, 0.78, 1, 1), -webkit-transform 0.2s cubic-bezier(0.35, 0.78, 1, 1);
}

.widgetButton-whatsapp:hover {
    background-color: var(--white);
    color: var(--theme-green);
    transform: translateY(-2px);
}

.widgetButton-whatsapp .widgetButton-icon {
    width: 40%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.widgetButton-whatsapp:hover .widgetButton-icon svg path {
    fill: var(--theme-green);
}

.widgetButton-whatsapp .widgetButton-icon svg path {
    fill: var(--white);
}

.sm-red-dot {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    background: red;
    border-radius: 50%;
    animation-name: notificationPoint;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}

.wp-tooltip-number {
    font-size: 13px;
    line-height: normal;
    height: auto;
    padding: 12px 20px;
    opacity: 0;
    border-radius: 10px;
    box-shadow: 0 20px 30px 0 rgba(21, 28, 39, .15), 0 1px 2px 0 rgba(21, 28, 39, 0), 0 0 0 3px #4EA082;
    background: #FFF;
    color: #000;
    box-sizing: border-box;
    padding: 1.1rem 1rem;
    position: fixed;
    right: 122px;
    bottom: 50px;
    min-width: 337px;
    z-index: 999;
    display: none;
}

.wp-tooltip-number::before,
.wp-tooltip-number::after {
    content: '';
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-style: solid;
    position: absolute;
    z-index: 500;
    background: 0 0;
    left: auto;
    border-right-color: transparent;
    right: -16px;
    border-left-color: #5dcd88;
    border-width: 8px;
}

.wp-tooltip-number::after {
    left: auto;
    border-right-color: transparent;
    right: -16px;
    border-left-color: #FFF;
}

.wp-tooltip-number.active {
    opacity: 1;
    display: block;
}

.wp-tooltip-number h6 {
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000;
}

.wp-tooltip-number input {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 2px 2px;
}

.wp-tooltip-number .ring-mig__btn {
    min-width: 86px;
    width: 86px;
    min-height: 40px;
    max-height: 40px;
    height: 40px;
    padding: 10px 8px 12px;
    font-size: 13px;
    box-shadow: none;
    background-color: #4EA082;
    margin: 0;
    line-height: 1em;
    text-align: center;
    color: #FFFFFF;
    border: none;
    outline: none;
    outline: unset;
    font-weight: 700;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}

.wp-tooltip-number .ring-mig__btn:hover {
    background-color: #38755F;
    color: var(--white);
}

.lc_widgetTooltip-close {
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #000;
    text-align: center;
    line-height: 1;
    cursor: pointer;
}

.manage-padding {
    padding: 0px 30px !important;
}

.wp-phone_field .iti.iti--allow-dropdown {
    width: 100% !important;
}

.wp-phone_field .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 13px !important;
}


/* security */

.wp-security-section {
    margin-top: 134px;
}

.wp-main-titleTop {
    text-align: center;
    font-family: "Nunito", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #666666;
    min-height: 72px;
    margin-bottom: 5px;
}

.wp-cookies-wrapper h3 {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color: #666666;
    margin-bottom: 0px;
}

.wp-security-wrapper h4 {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color: #666666;
    margin-bottom: 20px;
}

.wp-security-wrapper h5 {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    color: #666666;
    font-weight: bolder;
}

.wp-security-wrapper p {
    font-size: 18px;
    font-family: "Roboto", Sans-serif;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.wp-security-wrapper p a {
    color: #999999;
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
}

.wp-security-wrapper p a:hover {
    color: #501E9C;
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
}

.wp-security-wrapper ul {
    list-style-type: square;
    margin-bottom: 20px;
    padding-left: 20px;
}

.wp-security-wrapper li {
    font-family: 'Nunito';
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
}

.wp-security-wrapper li strong {
    font-family: 'Nunito';
    font-size: 18px;
    color: #666666;
}

.wp-security-wrapper li h6 {
    font-family: 'Nunito';
    font-size: 18px;
    color: #666666;
    font-weight: normal;
    font-style: normal;
}


/* pricing plan */

.wp-unionMemberModel{
    border-radius: 18px;
}
.wp-unionMemberModel .wp-modal-body{
    border-radius: 15px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #ccc;
}
.wp-unionMemberModel .modal-header{
    position: absolute;
    right: 10px;
    z-index: 9;
    top: 5px;
    transition: 0.3s all ease-in-out;
}
.wp-unionMemberModel .modal-header:hover{
    transform: scale(1.02);
}
.union-member-wrap h5{
    font-weight: 700;
    font-size: 22px;
    color: #BAB1D2;
    margin-bottom: 30px;
    font-family: 'Nunito';
    line-height: 20px;
}
.ta-form-wrapper {
    border: 0.84px solid #FFFFFF;
    backdrop-filter: blur(7.517161846160889px);
    background: #FFFFFFBF;
    padding: 50px;
    border-radius: 20px
}

.ta-title {
    line-height: 40px;
    font-size: 30px;
    font-weight: 900;
    font-family: 'Nunito';
    color: rgba(255, 255, 255, 1);
    margin-bottom: 10px;
}

.ta-desc {
    font-size: 14px;
    line-height: 18px;
    color: #303030;
    margin-bottom: 15px;
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
}
.union-main-label{
    margin-bottom: 30px;
}
.union-main-label span {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #fed065 !important;
    font-family: 'Nunito';
    background-color: #7B5A9F;
    padding: 8px 25px;
    border-radius: 30px;
    line-height: normal;
    border: 1px solid #fed065;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}
.ta-label {
    font-weight: 700;
    font-size: 13px;
    color: #BAB1D2;
    margin-bottom: 8px;
    font-family: 'Nunito';
    line-height: 20px;
}

.form-select.ta-input{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.ta-input {
    height: 40px;
    border-radius: 6px;
    box-shadow: none;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 10px;
    color: #fff !important;
    border: 1px solid #ABABAB;
    background-color: #2F2153 !important;
}

.ta-input::placeholder {
    color: #fff !important;
}

.ta-para {
    font-weight: 400;
    font-size: 16px;
    color: #BAB1D2;
    margin-bottom: 30px;
    font-family: Nunito;
    line-height: normal;
}
.union-member-left .ta-list{
    list-style-type: none;
    padding-left: 0;
}
.union-member-left .ta-list i{
    background-color: #47418B;
    color: #22C55F;
    border: 1px solid #22C55F;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.union-member-left .ta-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito';
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.ta-submit {
    background-color: var(--theme-green);
    color: #fff;
    padding: 7px 15px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #4EA082;
    font-weight: 700;
    font-family: 'Nunito';
    font-size: 13px;
    line-height: 22px;
    transition: 0.3s all ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ta-submit:hover {
    background-color: var(--theme-darkgreen);
    color: white;
}

.ta-footer {
    background-color: #312149;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #fed065;
    font-family: 'Nunito';
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ta-footer-title {
    font-weight: 700;
    font-size: 16px;
    color: #fed065;
    font-family: 'Nunito';
    line-height: 18px;
    margin-bottom: 9px;
    display: block !important;
    width: 100%;
    margin-top: 3px;
}


/* Flex alignment for discount code row */

.ta-discount-group {
    display: flex;
    gap: 10px;
}

.ta-footer-text {
    font-size: 14px;
    color: #d9c9ff;
    font-weight: 400;
    font-family: 'Nunito';
    line-height: 18px;
    margin: 0 auto;
}

.ta-pricing-form-wrapper {
    margin-bottom: 30px;
}

.wp-modal-pricing-demo {
    background-image: url(../images/union-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px 0px 20px 20px;
}

.pricing-modal-body {
    max-width: 700px;
    margin: 0 0 0 auto;
}


.union-member-Right {
    background-color: var(--theme-header);
    padding: 30px 30px;
}

.union-member-left{
    background-color: var(--theme-lightBlue);
    padding: 30px 50px;
}
/* contact model */
.wp-yellowBar {
    background-color: var(--theme-orange);
    height: 8px;
    width: 150px;
    border-radius: 50px;
}

.wp-pinkBar {
    background-color: var(--theme-red);
    height: 8px;
    width: 150px;
    border-radius: 50px;
}

.wp-greenBar {
    background-color: var(--theme-green);
    height: 8px;
    width: 150px;
    border-radius: 50px;
}

.wp-brownBar {
    background-color: var(--theme-brown);
    height: 8px;
    width: 150px;
    border-radius: 50px;
}

.wp-send_btn {
    background-color: var(--theme-green) !important;
    color: #fff !important;
    padding: 14px 50px !important;
    border-radius: 10px !important;
    border: none !important;
    text-transform: uppercase !important;
    transition: 0.3s all ease-in-out;
    font-weight: 700;
    width: 209px !important;
    font-family: 'Nunito';
    font-size: 16px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.wp-send_btn:hover {
    background-color: var(--theme-darkgreen) !important;
    color: #fff !important;
}

.blur-image {
    filter: blur(2px);
    transition: filter 0.3s ease;
}

/* ===== Slick Kontroll Slider ===== */

.slick-slide-image {
    background-color: #E2E0F0;
    padding: 40px;
    border-radius: 20px;
    height: 550px;
}

.slick-slide-image img {
    height: 100%;
    object-fit: contain;
}

.slick-kontroll-slider {
    position: relative !important;
}

.slick-slide-item {
    position: relative;
    outline: none;
}

.slick-slide-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* Caption below image - no overflow clipping issues */
.slick-slide-caption {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.slick-kontroll-slider .slick-next,
.slick-kontroll-slider .slick-prev {
    background-color: #2B2453 !important;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    top: 60% !important;
    opacity: .5;
    z-index: 1;
}

.slick-kontroll-slider .slick-next {
    right: -75px;
}

.slick-kontroll-slider .slick-prev {
    left: -75px;
}

.slick-kontroll-slider .slick-next:hover,
.slick-kontroll-slider .slick-prev:hover {
    background-color: #2B2453 !important;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    top: 60% !important;
    opacity: 1;
    z-index: 1;
}

.slick-kontroll-slider .slick-next::before {
    background-size: cover;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    content: '' !important;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-kontroll-slider .slick-prev::before {
    background-size: cover;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    content: '' !important;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
}

/* Currency Dropdown – checkmark on active item */
.currency-changer_pricing li.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.currency-changer_pricing li.active::after {
    content: '\2713';
    /* ✓ checkmark */
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-green, #4EA082);
    flex-shrink: 0;
}

.include-list_item {
    background-color: #F9F5FF;
    border-radius: 10px;
    padding: 20px 20px;
    border: 1px solid #EDE6FF;
    margin-bottom: 12px
}
.include-list_item.one svg {
    height: 50px;
    width: 50px;
    background-color: #EDE6FF;
    border-radius: 10px;
    padding: 10px;
}

.include-list_item.one svg path{
    fill: #9B6DFF;
}

.include-list_item.two svg {
    height: 50px;
    width: 50px;
    background-color: #FEF4C7;
    border-radius: 10px;
    padding: 10px;
}

.include-list_item.two svg path{
    fill: #F5A011;
}
.include-list_item.three svg {
    height: 50px;
    width: 50px;
    background-color: #DCFCE8;
    border-radius: 10px;
    padding: 10px;
    fill: #22C55F;
}
.include-list_item.three svg path{
    fill: #22C55F;
}
.include-list_item.four svg {
    height: 50px;
    width: 50px;
    background-color: #E1F3FE;
    border-radius: 10px;
    padding: 10px;
}

.include-list_item.four svg path{
    fill: #007BFF;
}
.include-list_item.five svg {
    height: 50px;
    width: 50px;
    background-color: #FFF1F0;
    border-radius: 10px;
    padding: 10px;
}
.include-list_item.five svg path {
    fill: #FF6B6B;
}

.include-list_item.five svg circle {
    fill: #FF6B6B;
}

.include-list_item span{
    font-size: 18px;
    font-weight: 800;
    font-family: 'Nunito';
}
.include-list_item h5{
    font-size: 14px;
    font-weight: 400;
    font-family: 'Nunito';
}

.popup-min {
    color: #FED065;
    background-color: #54345A;
    border-radius: 30px;
    border: 1px solid #FED065;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    margin: 5px auto 20px 0px;
}

.close_btn-new {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") !important;
  
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 1em !important;

  background-color: #fff !important;
  filter: none !important; /* Bootstrap invert hata diya */
}