:root {
    --accent: #482BD9;
    --text: #222222;
    --text-primary: #141414;
    --text-secondary: #9693A3;
    --text-tertiary: #6E6B7D;
    --bg: #fdfcff;
    --sub-bg: #EDEAFB;
    --violet: #8C65DA;
    --radius: 8px;
    --border-color: #3F4568;
    --white-text-color: #FFFFFF;
    --label-color: #9397AB;
    --grey-color: #717171;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 9999s;
    transition-delay: 9999s;
}

.lottie-animation {
    will-change: transform, opacity;
}

.btn {
    background: var(--accent);
    border-radius: var(--radius);
    border: 1px solid transparent;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 175px;
    color: var(--white-text-color);
    cursor: pointer;
    border-color: transparent;
    transition: all .5s;
}

.btn:hover {
    background: color-mix(in srgb, var(--accent) 80%, transparent);
}

.btn:active {
    background: color-mix(in srgb, var(--accent) 60%, transparent);
}

.btn:disabled {
    background: color-mix(in srgb, var(--accent) 40%, transparent);
}

.btn-white {
    border: 1px solid #E8E8EC;
    background: #FFF;
    color: var(--accent);
}

.btn-white:hover {
    background: color-mix(in srgb, #fff 40%, transparent);
    color: var(--accent);
}

.btn-white:active {
    background: color-mix(in srgb, #fff 60%, transparent);
    color: var(--accent);
}

.btn-white:disabled {
    background: color-mix(in srgb, #fff 40%, transparent);
    color: var(--accent);
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: 16px;
    line-height: 21px;
    background-color: var(--bg);
    color: var(--text);
    box-sizing: border-box;
}

p {
    margin: 0;
}

a {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: 16px;
    line-height: 21px;
    color: var(--text);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

.section {
    margin-bottom: 80px;
}

.container {
    width: 1640px;
    padding: 0px 20px;
    margin: 0 auto;
}

.section-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.section-description {
    text-align: center;
}

/* Header */

.trp-language-switcher {
    width: auto;
    height: 32px;
}

.trp-language-switcher .trp-ls-shortcode-current-language {
    display: inline-block;
    width: 60px !important;
    padding: 3px !important;
    height: 100%;
    display: flex;
    align-items: center;
}

.trp-language-switcher>div {
    background-image: none !important;
    border: 1px solid #E8E8EC !important;
    border-radius: 8px !important;
}

.trp-language-switcher>div>a {
    padding: 0 !important;
}

.header {
    background-color: var(--sub-bg);
    padding-top: 16px;
    padding-bottom: 16px;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-nav {
    margin-left: auto;
}

.header-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    list-style-type: none;
    margin: 0;
}

.header-nav-item {}

.header-nav-item-link {
    transition: all .5s;
}

.header-nav-item-link:hover {
    color: var(--accent)
}

.logo {
    height: 29px;
    line-height: 0;
}

.logo img {
    height: 100%;
}

.header .btn {
    padding: 5px 24px;
    min-width: initial;
    font-size: 14px;
    line-height: 20px;
}

.header-menu-mob {
    display: none;
    transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
}

/* Header */

/* Menu mobile */

.mm-panels {
    background: #fff;
    border: 1px solid hsba(231, 40%, 41%, 1);
}

.mm-navbar {
    display: none;
}

.menu-footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.mm-panel:after {
    display: none;
}

.header-menu-mob {
    background: #fff;
    list-style-type: none;
    padding: 16px;
    border-radius: 16px 0px 0px 16px;
}

.header-menu-mob .header-menu-item {
    padding: 10px 12px;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.header-menu-mob .header-menu-item:nth-child(2) {
    margin-top: 54px;
}

.header-menu-mob .header-menu-item .header-menu-item-link {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text)
}

.header-menu-mob .header-menu-item:hover {
    border-radius: 8px;
    background: #EDEAFB;
    color: var(--accent)
}

.header-menu-mob .header-menu-item.active {
    border-radius: 8px;
    background: #EDEAFB;
    color: var(--accent)
}

.header-menu-mob .header-menu-item:hover .header-menu-item-link {
    color: var(--accent)
}

.header-menu-mob .header-menu-item.active .header-menu-item-link {
    color: var(--accent);
}

.header-menu-mob .header-menu-item .header-menu-item-link svg {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 16px;
}

.header-menu-mob .header-menu-item .header-menu-item-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-menu-mob .header-menu-item.active svg path {
    fill: var(--accent);
}

.header-menu-mob .header-menu-item:hover svg path {
    fill: var(--accent);
}

.header-menu-mob .header-menu-item:not(:last-child) {
    margin-bottom: 16px;
}

.header-menu-mob .btn {
    width: 100%;
    margin-bottom: 32px;
}

.mm-panel {
    background-color: #fff;
}

.close-menu {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 15px;
    top: 24px;
    color: #222222;
}

.header-burger {
    display: none;
}


/* Menu mobile */


/* Hero */

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    min-height: 500px;
    margin-bottom: 0px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 54px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.hero-description {
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: var(--text-secondary);
}

.hero-btns-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 24px;

}

.hero-btn {
    min-width: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-image {
    width: 100%;
    margin-top: -190px;
    position: relative;
    z-index: -1;
}

/* 
.wpcf7 {
    margin-top: 40px;
}

.contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.wpcf7-form-control-wrap {
    display: flex;
    flex-wrap: wrap;
}

.contact-form-input-wrap {
    width: 418px;
    margin-right: 8px;
    position: relative;
}

.contact-form-input-wrap input {
    width: 100%;
    padding: 14px 12px 14px 12px;
    gap: 8px;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
    border: none;
    color: var(--text);
    transition: all .5s;
}

.contact-form-input-wrap input::placeholder {
    color: var(--text-secondary);
}

.wpcf7-not-valid-tip {
    font-size: 13px;
    display: block;
    position: absolute;
    bottom: -30px;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background: #ffb900;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
} */

/* Hero */

/* About */

.about-wrap {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    gap: 26px;
}

.about-image {
    width: calc(50% - 13px);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-info {
    width: calc(50% - 13px);
}

.about-title {
    font-size: 54px;
    line-height: normal;
    margin-bottom: 16px;
}

.about-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.last-about-description {
    margin-bottom: 42px;
}

.about-advanteges {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-advanteges-item {
    width: auto;
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid #E8E8EC;
}

.about-advanteges-item:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.about-advanteges-item-content {
    text-align: left;
    padding: 12px;
    border-radius: 24px;
}

.about-advanteges-item-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
    width: 100%;
    line-height: normal;
}

.about-advanteges-item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.about-advanteges-item-descr {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-secondary);
    margin-top: 8px;
}


/* About */

/* services */

.section-services {
    padding-top: 80px;
}

.services-list {
    padding: 80px 0px 40px 0px;
}

.services-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 0;
}

.services-list-item-image {
    display: block;
    width: calc(50% - 12px);
    height: 100%;
    max-height: 495px;
    object-fit: contain;
}

.services-list-item-content {
    width: calc(50% - 12px);
}

.services-list-item-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 32px;
}

.service-content {}

.service-content-item {
    margin-bottom: 24px;
}

.service-content-item-title {
    border-radius: 8px;
    background: var(--Bg_color, #EDEAFB);
    width: 100%;
    padding: 8px 16px;
    color: #6D56E0;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
    display: inline-block;
    width: auto;
}

.service-content-item-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-secondary);
    max-width: 612px;
}

.services-list-item-link {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #E8E8EC;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: var(--accent);
    transition: all .5s;
}

.services-list-item-link:hover {
    color: #fff;
    border: 1px solid var(--accent);
    background: var(--accent);
}

.services-list-item-link:hover svg path {
    fill: #fff;
}

.services-list-item-odd {}

.services-list-item-odd {}

.services-list-item-even .services-list-item-image {
    order: 2;
}

.services-list-item-even .services-list-item-content {
    order: 1;
}

/* services */

/* advanteges */

.section-advantages-description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advantages-list {
    width: 423px;
}

.advantages-item {
    margin-bottom: 40px;
}

.advantages-item:last-child {
    margin-bottom: 0;
}

.advantages-item-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 4px;
}

.advantages-item-description {
    color: var(--grey-color);
}

.advantages-image {
    width: calc(100% - 846px);
}

.advantages-image img {
    width: 100%;
}

.advantages-banner {
    padding: 54px 73px;
    border-radius: 24px;
    background-color: #FFF3E5;
    background-image: url(/wp-content/themes/wisePPC/src/img/banner.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right;
    background-size: 40%;
}

.advantages-banner-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

.advantages-banner-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--text-secondary);
    max-width: 65%;
}

.advantages-banner-description-second {
    margin-top: 8px;
}

/* advanteges */


/* road map */
.timeline {
    border-collapse: collapse;
    margin-top: 54px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    background-color: #F8F7FD;
    padding: 8px 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.timeline-header div {
    flex: 1;
}

.timeline-body {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 300px;
}

.time-line-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: initial;
    justify-content: space-between;
    padding-top: 55px;
}

.timeline-item {}

.timeline-item:nth-child(1) {
    width: 215px;
}

.timeline-item:nth-child(2) {
    width: calc(100% - 840px);
}

.timeline-item:nth-child(3) {
    width: 295px;
}

.timeline-item:nth-child(4) {
    width: 280px;
}

.timeline-item .item-header {
    font-weight: bold;
    margin-bottom: 10px;
    padding: 20px 14px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 16px;
    margin-bottom: 23px;
}

.timeline-item .item-content {
    background-color: #f9f9f9;
    border-radius: 8px;
}

.preparation .item-header {
    left: 0;
    border: 1px solid #DD79EC;
    background: #F7C1FF;
    box-shadow: 0px 21px 40px 0px rgba(176, 153, 227, 0.35);
}

.development .item-header {
    left: 20%;
    border: 1px solid #96C558;
    background: #C6EC95;
    box-shadow: 0px 20px 40px 0px rgba(173, 215, 118, 0.35);
}

.launch .item-header {
    left: 55%;
    border: 1px solid #97D2EE;
    background: #C1EBFF;
    box-shadow: 0px 16px 40px 0px rgba(131, 202, 235, 0.35);
}

.growth .item-header {
    left: 75%;
    border: 1px solid #F4C988;
    background: #FFE6C1;
    box-shadow: 0px 21px 40px 0px rgba(228, 182, 116, 0.35);
}

.timeline-body {}


.lines-list {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    width: 100%;
}

.lines-list .line {
    width: 1px;
    height: 400px;
    background: linear-gradient(90deg, #D8D2F6 85.5%, rgba(216, 210, 246, 0.00) 100%);
}

.lines-list .line:first-child,
.lines-list .line:last-child {
    opacity: 0;
}

.timeline-item-step {
    padding: 0px 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    min-height: 85px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    flex-direction: column;
}

.timeline-item-step-title {
    display: block;
    width: 100%;
    font-weight: 500;
}

.timeline-item-step-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.preparation .timeline-item-step {
    left: 0;
    border: 2px solid #F7C1FF;
    background: #FEF7FF;
}

.development .timeline-item-step {
    left: 20%;
    border: 2px solid #C6EC95;
    background: #FAFFF3;
}

.launch .timeline-item-step {
    left: 55%;
    border: 2px solid #C1EBFF;
    background: #F4FBFF;
}

.growth .timeline-item-step {
    left: 75%;
    border: 2px solid #FFE6C1;
    background: #FFFBF6;
}

/* road map */

/* upcoming */

.upcoming-features-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 55px;
    background-image: url(/wp-content/themes/wisePPC/src/img/upcoming-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom, bottom;
}

.upcoming-features-item {
    flex-basis: 33.33%;
    border-radius: 12px;
    background: #FAF9FE;
}

.upcoming-features-header {
    border: 1px dashed #F8961E;
    background: #FFF3E5;
    border-radius: 12px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--text-primary);
    padding: 13px;
    text-align: center;
}

.upcoming-features-body {}

.upcoming-features-body-item {
    padding: 24px 0px;
    margin-bottom: 8px;
    margin-left: 24px;
    margin-right: 24px;
    border-bottom: 1px dashed #DAD5F7;
}

.upcoming-features-body-item:last-child {
    border-bottom: none;
}

.upcoming-features-body-item-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.upcoming-features-body-item-chips {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.upcoming-features-body-item-chip {
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--color-brand-20, #EDEAFB);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--accent)
}

.upcoming-features-body-item-descr {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* upcoming */

/* faq */

.faq-container {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #E8E8EC;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    line-height: normal;
}

.faq-item.active .faq-question {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    color: var(--accent)
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #A19DB2;
}

.faq-item.active .faq-question:after {
    content: '-';
    font-size: 30px;
    color: #A19DB2;
}

.faq-answer {
    padding: 0px 32px 16px 32px;
    display: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--grey-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.section-faq {
    background-image: url(/wp-content/themes/wisePPC/src/img/faq-bg-item-1.png), url(/wp-content/themes/wisePPC/src/img/faq-bg-item-2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: -3% 80%, 96% -10%;
    background-size: 25%;
}

/* faq */

/* contact */

.page-template-about-us .section-contact {
    padding-bottom: 40px;
}

.contact-wrap {
    border-radius: 36px;
    background: #F0EDFF;
    padding: 70px 96px;
}

.contact-us-wrap {
    background-image: url('/wp-content/themes/wisePPC/src/img/contact-us-bg.png');
    background-repeat: no-repeat;
    background-position: 90% bottom;
    background-size: 50%;
}

.beta-access-form-wrap {
    background-image: url('/wp-content/themes/wisePPC/src/img/beta-access-contact.png');
    background-repeat: no-repeat;
    background-position: 100% bottom;
    background-size: 50%;
}

.contact-title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 32px;
}

.contact-form form {}

.contact-us-form {
    width: 450px;
}

.contact-us-form label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 4px;
}

.contact-us-form input:not([type="submit"]) {
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    background: #FFF;
    box-shadow: none;
    border: none;
    height: 48px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact-us-form input:focus {
    outline: none;
}

.contact-us-form textarea {
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    background: #FFF;
    box-shadow: none;
    border: none;
    resize: none;
    width: 100%;
    height: 100px;
    padding: 20px 20px;
    box-sizing: border-box;
}

.contact-us-form textarea:focus {
    outline: none;
}

.contact-us-form .contact-form-input-wrap {
    margin-bottom: 12px;
}


.contact-us-form .btn {
    width: 100%;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7 form .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* contact */

/* footer */

.footer {
    background: var(--sub-bg);
    padding: 28px 0;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    margin-right: auto;
}

.footer-nav {
    margin-right: 64px;
}

.footer-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    list-style-type: none;
    margin: 0;
}

.footer-nav-item {}

.footer-nav-item-link {
    transition: all .5s;
}

.footer-nav-item-link:hover {
    color: var(--accent)
}

.go-top {
    position: fixed;
    bottom: 45px;
    right: 20px;
    z-index: 99;
    display: none;
    transition: opacity 0.3s ease;
}

.ads-logo-wrap {
    margin-right: 24px;
    max-width: 290px;
    width: 100%;
    object-fit: contain;
    max-height: 40px;
    height: 100%;
}

.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* footer */

/* page */

.page-header {
    padding-top: 115px;
}

.breadcrumb {
    margin-bottom: 16px;
}

.breadcrumb span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #A19DB2;
}

.breadcrumb .breadcrumbs__link {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    transition: all .5s;
}

.breadcrumb .breadcrumbs__link:hover {
    color: var(--accent);
}

.breadcrumb .breadcrumbs__link span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    transition: all .5s;
}

.breadcrumb .breadcrumbs__link:hover span {
    color: var(--accent);
}

.breadcrumb .breadcrumbs__current {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: var(--text);
}

.breadcrumb .breadcrumbs__current br {
    display: none;
}

.breadcrumbs__separator {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    padding: 0 5px;
}

.page-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.page-subtitle {
    display: block;
    width: 100%;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.page-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
    color: var(--text-tertiary)
}

.how-it-works-list {
    padding-top: 80px;
}

.how-it-works-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 80px;
    gap: 24px;
}

.how-it-works-item-content {
    width: calc(50% - 12px);
}

.how-it-works-item-content-list {
    max-width: 700px;
}

.how-it-works-item-content-item {
    margin-bottom: 16px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--text-tertiary);
}

.how-it-works-item-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 29px;
    color: var(--text-tertiary);
}

.how-it-works-item-content-item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--grey-color);
}

.how-it-works-item-content-item-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--grey-color);
}

.how-it-works-item-image-wrap {
    width: calc(50% - 12px);
}

.how-it-works-item-image {
    width: 100%;
    height: auto;
}

.how-it-works-item.odd .how-it-works-item-image-wrap {
    order: 2;
}

.how-it-works-item.odd .how-it-works-item-content {
    order: 1;
}

.how-it-works-item.even .how-it-works-item-image-wrap {
    order: 1;
}

.how-it-works-item.even .how-it-works-item-content {
    order: 2;
}

.how-it-works-item.even {}

/* page */

/* services page */

.services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.services-hero-content {
    width: calc(50% - 40px);
}

.services-hero-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.services-hero-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 635px;
    color: var(--grey-color);
}

.services-hero-image {
    width: calc(50% - 40px);
}

.services-hero-image img {
    width: 100%;
    height: auto;
}

.section-tools-how-it-works {
    background-image: url(/wp-content/themes/wisePPC/src/img/how-it-works-bg.png);
    background-repeat: no-repeat;
    background-size: 520px;
    background-position: 0% 130%;
    margin-bottom: 0;
    padding-bottom: 80px;
    margin-top: 80px;
    min-height: 300px;
}

.tools-how-it-works-container {
    display: flex;
    align-items: initial;
    justify-content: space-between;
}

.tools-how-it-works-info {
    max-width: 680px;
}

.tools-how-it-works-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.tools-how-it-works-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-tertiary)
}

.tools-how-it-works-list {
    display: flex;
    align-items: initial;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.tools-how-it-works-item {
    width: 373px;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 16px;
    background: #F9F8FF;
}

.tools-how-it-works-item-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.tools-how-it-works-item-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey-color);
}

.tools-how-it-works-item ul {
    margin-top: 16px;
    list-style-type: none;
    padding: 0;
}

.tools-how-it-works-item ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.section-service-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 8px;
}

.section-service-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--text-tertiary)
}

.section-key-features {
    border-radius: 24px;
    background: #F0EDFF;
    padding: 64px 0;
}

.key-features-list {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 138px;
}

.key-features-item {
    max-width: 400px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 13px;
}

.key-features-item-icon {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #DAD5F7;
    background: #FCFCFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-features-item-icon img {
    width: 39px;
    height: 36px;
}

.key-features-item-content {
    width: calc(100% - 80px);
}

.key-features-item-ttile {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 4px;
}

.key-features-item-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey-color)
}

.section-metrics {
    background-image: url(/wp-content/themes/wisePPC/src/img/metrics-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 0%;
    padding-bottom: 80px;
    margin-bottom: 0px;
}

.metrics-list {
    margin-top: 72px;
    display: flex;
    align-items: initial;
    justify-content: center;
    gap: 24px;
}

.metrics-item {
    max-width: 334px;
    width: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    padding: 24px;
    box-sizing: border-box;
}

.metrics-item-ttile {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
    color: var(--accent);
}

.metrics-item-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #A495EC
}

.metrics-item-description span {
    font-weight: 500;
    color: #6D56E0;
}

/* services page */

/* our mission */

.our-mission {}

.our-mission-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.our-mission-content {
    width: calc(50% - 12px);
}

.our-mission-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.our-mission-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--grey-color);
    max-width: 565px;
}

.our-mission-image {
    width: calc(50% - 12px);
}

.our-mission-image img {
    width: 100%;
    height: auto;
}

/* our mission */

/* our vision */

.our-vision-wrap {
    padding: 96px 80px 80px 80px;
    border-radius: 24px;
    background-color: #F0EDFF;
    background-image: url(/wp-content/themes/wisePPC/src/img/our-vision-bg.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 100% 100%;
}

.our-vision-info {
    max-width: 700px;
    width: 100%;
}

.our-vision-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.our-vision-description {}

.our-vision-description p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
    color: var(--text-tertiary);
}

/* our vision */

/* blog */

.blog-post-list {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.blog-post-item {
    width: calc(33.33% - 16px);
    border-radius: 24px;
    border: 1px solid #E8E8EC;
    background: #fff;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.post-date {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--grey-color);
    display: block;
    width: 100%;
    margin-bottom: 16px;
}

.blog-post-item-image {
    width: 100%;
    height: 210px;
    display: block;
    margin-bottom: 16px;
}

.blog-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.blog-post-item h4 a {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.blog-post-item .entry-content {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.blog-post-item-link {
    border-radius: 8px;
    background: #EDEAFB;
    min-width: 191px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    transition: all .5s;
}

.blog-post-item-link:hover {
    background-color: var(--accent);
    color: #fff;
}


/* blog */

/* blog single post */

.blog-container {
    max-width: 800px;
}

.blog-container .breadcrumb {
    margin-bottom: 44px;
}

.blog-single-post-date {
    border-radius: 8px;
    background: #EDEAFB;
    padding: 4px 8px;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--accent);
    margin-bottom: 4px;
    display: inline-block;
}

.blog-single-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

.blog-single-main-image {
    margin-bottom: 16px;
}

.blog-single-main-image img {
    width: 100%;
    max-height: 305px;
    height: 100%;
    object-fit: cover;
}

.blog-single-content {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.blog-single-content h2 {
    margin-bottom: 16px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.blog-single-content {
    margin-bottom: 100px;
}

.blog-single-content p {
    margin-bottom: 16px;
}

.blog-single-content strong {
    font-weight: 400;
}

.blog-single-content ul {}

.blog-single-content ol {
    padding-left: 20px;
}

.blog-single-content li {
    margin-bottom: 8px;
}

.blog-single-content a {}

.blog-single-content strong {}

.blog-single-content img {
	max-width: 100%;
    height: auto;
}

/* blog single post */

/* blog */

.go-top {
    cursor: pointer;
}

.go-top svg path,
.go-top svg rect {
    transition: all .5s;
}

.go-top:hover svg rect {
    fill: var(--accent);
}

.go-top:hover svg path {
    fill: #fff
}

/* popup */

.white-popup {
    position: relative;
    background: #FFF;
    padding: 24px;
    width: auto;
    max-width: 414px;
    margin: 20px auto;
    border-radius: 8px;
}

.popup-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.popup-descr {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--grey-color);
    margin-bottom: 24px;
}

.contact-popup .contact-us-form input:not([type="submit"]),
.contact-popup .contact-us-form textarea {
    background: #FAF9FE;
    border-radius: 8px;
}

.contact-popup .contact-us-form {
    width: 100%;
}

/* popup */

.single-page-content {
    padding-bottom: 40px;
}

.single-page-content h2 {
    margin-top: 40px;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.single-page-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.single-page-content span {}

.single-page-content strong {}

.single-page-content ul {}


.single-page-content ul li {}


.divider {
    display: inline-block;
    width: 2px;
    height: 21px;
    background: #A495EC;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 8px;
}

/* beta access */

.beta-access-hero {
    padding: 115px 0px 80px 0px;
}

.beta-access-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.beta-access-hero-content {
    width: 50%;
}

.beta-access-hero-title {
    color: var(--text-primary);
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}

.beta-access-hero-description {
    color: var(--text-tertiary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}

.beta-access-hero-content a {
    color: #482BD9;
}

.beta-access-hero-content a:hover {
    text-decoration: none;
}

.beta-access-hero-advantages-list {
    margin-bottom: 24px;
}

.beta-access-hero-advantages-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    gap: 8px;
    margin-bottom: 8px;
}

.beta-access-hero-advantages-item:last-child {
    margin-bottom: 0;
}

.beta-access-hero-advantages-item-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.beta-access-hero-img-wrap {
    width: 51%;
}

.beta-access-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.beta-access-hero-btns-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.beta-access-hero-btns-wrap .hero-btn {
    max-width: 211px;
    color: #fff;
}

.section-beta-access-advantages-description {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--text-tertiary);
}

.advantages-info-item {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    gap: 24px;
    padding: 80px 0px;
}

.home-page .advantages-info-item {
    padding: 40px 0px;
}

.advantages-info-item:nth-child(even) .advantages-info-image-wrap {
    order: 2;
}

.advantages-info-item:nth-child(even) .advantages-info-content {
    order: 1;
}

.page-template-how-it-works .advantages-info-item:nth-child(even) .advantages-info-image-wrap {
    order: 1;
}

.page-template-how-it-works .advantages-info-item:nth-child(even) .advantages-info-content {
    order: 2;
}

.advantages-info-image-wrap {
    height: 495px;
    width: calc(50% - 12px);
    order: 1;
}

.advantages-info-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantages-info-content {
    width: calc(50% - 12px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    order: 2;
    flex-direction: column;
    justify-content: center;
}

.page-template-how-it-works .advantages-info-image-wrap {
    order: 2;
}

.page-template-how-it-works .advantages-info-content {
    order: 1;
}

.advantages-info-content-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 4px;
    width: 100%;
}

.advantages-info-content-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    width: 100%;
}

.advantages-info-content-list {
    margin-bottom: 24px;
    width: 100%;
}

.advantages-info-content-list-title-wrap {
    border-radius: 8px;
    background: var(--sub-bg);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.advantages-info-content-list-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #6D56E0;
    margin-bottom: 0;
}

.advantages-info-content-list-item {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-tertiary);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
}

.advantages-info-content-list-item:last-child {
    margin-bottom: 0;
}

.advantages-info-content-list-item-icon {
    border-radius: 2px;
    background: var(--sub-bg);
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.advantages-info-content-list-item-icon svg {
    width: 14px;
    height: 14px;
}

.page-template-how-it-works .advantages-info-item:nth-child(1) .advantages-info-content-list-title-wrap {
    display: none;
}

.page-template-how-it-works .advantages-info-item:nth-child(2) .advantages-info-content-list-first,
.page-template-how-it-works .advantages-info-item:nth-child(3) .advantages-info-content-list-first,
.page-template-how-it-works .advantages-info-item:nth-child(4) .advantages-info-content-list-first .advantages-info-content-list-title-wrap {
    display: none;
}

.beta-access-form-wrap {
    padding: 40px 56px;
    background-size: 45%;
}

.beta-access-form-wrap .contact-form {
    max-width: 810px;
}

.beta-access-form-wrap .contact-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}

.beta-access-form-wrap .contact-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
    color: var(--text-tertiary);
}

.contact-description a {
    color: #482BD9;
}

.contact-description a:hover {
    text-decoration: none;
}

.beta-access-form-wrap .beta-access-hero-advantages-list {
    margin-top: 24px;
}

.beta-access-form-wrap .beta-access-hero-advantages-item {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
    gap: 8px;
}

.beta-access-form-wrap .beta-access-hero-advantages-item-icon {
    width: 20px;
    height: 20px;
}

.jq-selectbox {
    width: 100%;
}

.jq-selectbox__select {
    border-radius: 8px;
    background: #FAF9FE;
    border: none;
    box-shadow: none;
    text-shadow: none;
}

.jq-selectbox__dropdown {
    width: 100% !important;
    margin-top: 36px;
}

.jq-selectbox__trigger {
    border-left: none;
}

.jq-selectbox__select:hover {
    background: #FAF9FE;
}

.contact-form-input-wrap input::placeholder,
.contact-popup .contact-us-form textarea::placeholder {
    color: #A19DB2;
}

.jq-selectbox__select-text {
    color: #A19DB2;
}

.jq-selectbox.focused .jq-selectbox__select {
    border: none !important
}

.jq-selectbox.changed .jq-selectbox__select-text {
    color: #141414;
}

.jq-selectbox__dropdown {
    border: none !important;
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #EDEAFB;
    color: #482BD9;
}

.jq-selectbox__dropdown ul li:first-child {
    display: none;
}

.success-popup h4 {
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 20px;
}

.success-popup p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #6E6B7D;
    text-align: center;
}

.success-popup .success-icon {
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}

.success-popup .success-icon img {
    width: 100%;
    height: 100%;
}

.contact-popup .wpcf7-response-output {
    display: none !important;
}

/* beta access */

.our-mission-section {
    margin-bottom: 0px;
}

.our-mission {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
}

.our-mission-content {
    width: calc(50% - 12px);
}

.our-mission-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 4px;
}

.our-mission-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
}

.our-mission .our-mission-description {
    max-width: initial;
}

.our-mission .advantages-info-content-list-item {
    color: var(--grey-color);
}

.our-mission-image-wrap {
    width: calc(50% - 12px);
}

.our-mission-image {
    width: 100%;
    height: 100%;
}

.ads-section {
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 56px;
}

.ads-wrap {
    border-radius: 24px;
    background: #EDEAFB;
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ads-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 56px;
    padding-right: 24px;
    width: calc(100% - 680px);
}

.ads-content-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: normal;
}

.ads-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--grey-color);
    line-height: normal;
}

.ads-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ads-btn {}

.ads-image-wrap {
    width: 600px;
    height: 340px;
}

.ads-image {
    width: 100%;
    height: 100%;
}

.our-vision-section {
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 56px;
}

.our-vision-section .our-vision-wrap {
    padding: 0px;
    border-radius: 24px;
    background: #EDEAFB;
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
}

.our-vision-section .our-vision-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 56px;
    padding-right: 24px;
    width: calc(100% - 680px);
}

.our-vision-section .our-vision-content-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: normal;
}

.our-vision-section .our-vision-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--grey-color);
    line-height: normal;
}

.our-vision-section .our-vision-description:nth-child(1) {
    margin-bottom: 16px;
}

.our-vision-section .our-vision-image-wrap {
    width: 600px;
    height: 340px;
}

.our-vision-section .our-vision-image {
    width: 100%;
    height: 100%;
}

.why-choose .container {
    background-image: url(/wp-content/themes/wisePPC/src/img/why-choose.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.why-choose-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 4px;
}

.why-choose-descr {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--grey-color);
    margin-bottom: 48px;
}

.why-choose-list {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
}

.why-choose-item {
    width: calc(33.33% - 16px);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    padding: 24px;
    box-sizing: border-box;
}

.why-choose-item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.why-choose-item-descr {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey-color);
}

/* Advanced Analytics */

.advanced-analytic-section-title {
    color: var(--text-primary, #141414);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.advanced-analytic-hero-content {
    margin-left: auto;
    margin-right: auto;
}

.advanced-analytic-hero-title {
    color: var(--text-primary);
    text-align: center;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}

.advanced-analytic-hero-description {
    color: var(--secondary-text);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.advanced-analytic-hero-sub-content {
    margin-top: 56px;
    margin-bottom: 40px;
    max-width: 828px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.advanced-analytic-hero-sub-title {
    color: var(--text-primary, #141414);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 4px;
}

.advanced-analytic-hero-sub-content-description {
    color: var(--secondary-text, var(--text-secondary1, #6E6B7D));
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.advanced-analytic-hero-image {
    width: 100%;
    height: 360px;
    object-fit: contain;
}

.advanced-analytic-testimonials-list {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    gap: 24px;
}

.page-template-advanced-analytics {
    background-color: #fff;
}

.advanced-analytic-testimonials--item {
    border-radius: 12px;
    background: var(--surface-tertiary, #FAF9FE);
    padding: 24px;
    position: relative;
}

.advanced-analytic-testimonials--item * {
    position: relative;
    z-index: 2;
}

.advanced-analytic-testimonials-title {
    color: var(--text-primary, #141414);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.advanced-analytic-testimonials-item-title {
    color: var(--text-primary, #141414);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.advanced-analytic-testimonials-description {
    color: var(--text-primary, #141414);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 12px;
}

.advanced-analytic-testimonials-subtitle {
    color: #01A708;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.advanced-analytic-testimonials-rating {
    border-top: 1px solid #E8E8EC;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding-top: 16px;
    margin-top: 16px;
}

.advanced-analytic-testimonials--item .advanced-analytic-testimonials-brackets {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 0;
}

.why-timing-matters-wrap {
    border-radius: 24px;
    background: #EDEAFB;
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
}

.why-timing-matters-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 56px;
    padding-right: 24px;
    width: calc(100% - 680px);
}

.why-timing-matters-content-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: normal;
}

.why-timing-matters-subtitle {
    color: var(--text-primary, #141414);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.why-timing-matters-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--grey-color);
    line-height: normal;
}

.our-vision-image-wrap {
    width: 600px;
    height: 340px;
}

.why-timing-matters-image {
    width: 100%;
    height: 100%;
}

.advanced-capabilities-list {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    gap: 24px;
    padding-top: 12px;
}

.advanced-capabilities-item {
    border-radius: 12px;
    background: #FAF9FE;
    padding: 24px;
    padding-bottom: 0;
}

.advanced-capabilities-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.advanced-capabilities-item-bullets {
    margin-bottom: 12px;
}

.advanced-capabilities-item-bullet {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.advanced-capabilities-item-bullet-icon {
    border-radius: 2px;
    background: var(--sub-bg);
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.advantages-info-content-list-item-icon svg {
    width: 14px;
    height: 14px;
}

.advanced-capabilities-item-image {
    max-width: 100%;
    height: auto;
}

.advanced-analytic-section-title {
    color: var(--text-primary, #141414);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.advanced-analytic-section-subtitle {
    color: #6E6B7D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.why-timing-matters-title {
    margin-bottom: 4px;
}

.why-timing-matters-list {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.why-timing-matters-item {
    border-radius: 12px;
    box-sizing: border-box;
    border: 1px solid #E8E8EC;
    padding: 24px;
    width: calc(33.333% - 16px);
}

.why-timing-matters-item-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.why-timing-matters-item-red-chip {
    border-radius: 8px;
    background: rgba(248, 150, 30, 0.06);
    color: #F8961E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 4px 8px;
    display: inline-block;
    margin-bottom: 4px;
}

.why-timing-matters-item-desription {
    margin-bottom: 16px;
}

.why-timing-matters-item-desription p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.why-timing-matters-item-desription p:last-child {
    margin-bottom: 0;
}

.why-timing-matters-item-green-chip {
    border-radius: 8px;
    background: rgba(1, 167, 8, 0.06);
    color: #01A708;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 4px 8px;
    display: inline-block;
    margin-bottom: 4px;
}

.why-timing-matters-item-subdesription p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
}

.why-timing-matters-item-subdesription p:last-child {
    margin-bottom: 0;
}

.why-timing-matters-item-list {}

.why-timing-matters-item-list-item {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 7px;
}

.why-timing-matters-item-list-item:last-child {
    margin-bottom: 0;
}

.why-timing-matters-item-list-item-icon {
    padding: 1px;
    border-radius: 2px;
    background: rgba(1, 167, 8, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-timing-matters-item-list-item-icon svg {}

.why-timing-matters-item-image {
    padding: 0;
}

.why-timing-matters-item-image img {
    width: 100%;
    height: auto;
}


.start-trial-block {
    background-image: url('/wp-content/themes/wisePPC/src/img/start-trial.png');
    background-repeat: no-repeat;
    background-position: 100% bottom;
    background-size: contain;
}

.start-trial-block .start-trial-block-title {
    margin-bottom: 12px;
}

.start-trial-block .start-trial-block-description {
    margin-bottom: 12px;
}

.advanced-difference-list {}

.advanced-difference-item {}

.advanced-difference-section .advanced-difference-item-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    padding-right: 24px;
    margin-bottom: 0;
}

.advanced-difference-section .advanced-difference-item-bullets {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.advanced-difference-section .advanced-capabilities-item-bullet {
    position: relative;
    height: 112px;
    border-radius: 12px;
    background: #FAF9FE;
    padding-left: 24px;
    overflow: hidden;
}

.advanced-difference-section .advanced-capabilities-item-bullet-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.advanced-difference-section .advanced-capabilities-item-bullet-image {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 112px;
}

.difference-line1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.difference-line2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 24px;
}

.difference-line3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.difference-line4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.difference-line1 .advanced-capabilities-item-bullet:nth-child(1) {
    padding-right: 260px;
}

.difference-line1 .advanced-capabilities-item-bullet:nth-child(2) {
    padding-right: 240px;
}

.difference-line1 .advanced-capabilities-item-bullet:nth-child(3) {
    padding-right: 150px;
}

.difference-line2 .advanced-capabilities-item-bullet {
    width: 50%;
}

.difference-line3 .advanced-capabilities-item-bullet {
    width: 50%;
}

.difference-line4 .advanced-capabilities-item-bullet {
    width: 50%;
}

.advanced-analytic-hero-image-mob {
    display: none;
}



.trp-language-switcher .trp-ls-shortcode-language {
	max-height: unset!important;
}


















/* Advanced Analytics */