/* Global styles */

html, body {
    font-family: 'Neutiva';
    font-size: 16px;
    line-height: 162.5%;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 0;
}

img {
    display: block;
}

.site-main {
    background-color: var(--Color-primary-cream-30, #F4F4E9);
}

.valo-title-1 {
    color: #0A3742;

    font-size: 78px;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: -1px;
}

.valo-title-2 {
    color: #0A3742;

    font-size: 48px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -1px;
}

.valo-title-3 {
    color: #0A3742;

    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.5px;
}

.valo-body-1 {
    color: #0A3742;

    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.valo-body-2 {
    color: #0A3742;

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.valo-body-3 {
    color: #0A3742;

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.2px;
}

.valo-button {
    position: relative;
    z-index: 1;

    padding: 9px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: var(--Text-dark, #0A3742);

    font-size: 16px;
    font-weight: 500;
    line-height: 100%;

    border-radius: 100px;
}

.valo-button:visited {
    color: var(--Text-dark, #0A3742);
}

.valo-button::after {
    content: "";
    position: static;

    width: 24px;
    height: 24px;
    
    display: block;

    background-image: url('/wp-content/themes/valo_wp/assets/img/valo-button-arrow.svg');
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.valo-button.valo-button_primary-solid {
    /* background-color: var(--Color-primary-accent-80, #72FF69); */

    transition: .3s;
}

.valo-button.valo-button_primary-solid::before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    background-color: var(--Color-primary-accent-80, #72FF69);

    border-radius: 100px;

    transition: .3s;
    transform-origin: center;
}

.valo-button.valo-button_primary-solid:hover::before {
    transform: scaleY(1.13);

    background-color: var(--Color-primary-accent-90, #70FF61);
}

.valo-button.valo-button_primary-outlined {
    border: 1px solid transparent;
}

.valo-button.valo-button_primary-outlined:hover {
    color: var(--Text-dark, #0A3742);
}

.valo-button.valo-button_primary-outlined::before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    border-radius: 100px;
    border: 1px solid var(--Color-primary-teal-100, #0A3742);

    transition: .3s;
    transform-origin: center;
}

.valo-button.valo-button_primary-outlined:hover::before {
    transform: scaleY(1.13);

    background-color: var(--Color-primary-accent-90, #70FF61);
}

.valo-button.valo-button_inverse-outlined {
    color: var(--Text-light, #EDEDDD);

    border: 1px solid transparent;

    transition: .3s;
}

.valo-button.valo-button_inverse-outlined::before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    border-radius: 100px;
    border: 1px solid var(--Color-primary-cream-0, #FFFFF9);

    transition: .3s;
    transform-origin: center;
}

.valo-button.valo-button_inverse-outlined:hover {
    color: var(--Text-dark, #0A3742);
}

.valo-button.valo-button_inverse-outlined:hover::before {
    transform: scaleY(1.13);

    background-color: var(--Color-primary-accent-90, #70FF61);
}

.valo-button.valo-button_inverse-outlined::after {
    filter: brightness(0) saturate(100%) invert(92%) sepia(15%) saturate(214%) hue-rotate(17deg) brightness(107%) contrast(86%);

    transition: .3s;
}

.valo-button.valo-button_inverse-outlined:hover::after {
    filter: none;
}

.container {
    margin: 0 auto;
    padding: 0 56px;

    width: 100%;
    max-width: 1492px;
}



/* Header styles */

header#masthead {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    background-color: var(--Canvas-light, #FFFFF9);

    border-bottom: 1px solid var(--Color-primary-cream-40, #F2F2E4)
}

.desktop-header {
    padding: 8px 0;
}

.desktop-header__container {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; 
}

.desktop-header__logo > a {
    display: block;
}

.desktop-header__logo .main-logo {
    height: 68px;
}

.desktop-header__navigation {
    width: fit-content;
}

.desktop-header__navigation a {
    color: var(--Text-dark, #0A3742);

    letter-spacing: -.02px;
}

.desktop-header__navigation > div > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.desktop-header__navigation ul#main-menu > li {
    padding: 9px 12px;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-header__button {
    margin-left: 40px;
}

.desktop-header__navigation li.menu-item-has-children {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-header__navigation li.menu-item-has-children::after {
    content: "";
    position: relative;

    width: 24px;
    height: 24px;

    background-image: url('/wp-content/themes/valo_wp/assets/img/chevron-down.svg');
}

.desktop-header__navigation li.menu-item-has-children {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-header__navigation li.menu-item-has-children ul.sub-menu {
    left: 50%;

    padding: 32px;
    
    min-height: 0;
    
    display: flex;
    flex-direction: column;
    gap: 20px;

    color: var(--Text-dark, #0A3742);
    background-color: white;
    box-shadow: 0px 0px 10px 0px #0000001A;
    opacity: 0;

    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    
    border-radius: 20px;

    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
}

.desktop-header__navigation li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;

    transition: .3s ease-in;
    transform: translateX(-50%) translateY(0);

    pointer-events: all;
}

.desktop-header__navigation li.menu-item-has-children::before {
    content:"";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;

    width: 100vw;
    height: 100vw;

    display: none;

    background-color: rgba(0, 0, 0, .1);

    pointer-events: none;
}

.desktop-header__navigation li.menu-item-has-children:hover::before {
    display: block;
}

.desktop-header__navigation li.menu-item-has-children ul.sub-menu li a {
    position: relative;

    width: fit-content;

    white-space: nowrap;
}

.desktop-header__navigation li.menu-item-has-children ul.sub-menu li a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: 1px;

    background-color: var(--Text-dark, #0A3742);
    opacity: 0;

    pointer-events: none;
    transition: .3s;
}

.desktop-header__navigation li.menu-item-has-children ul.sub-menu li a:hover::after {
    opacity: 1;
}

.compact-logo {
    display: none;
}

.desktop-header.compact {
    padding: 5px 0;
}

.desktop-header.compact .main-logo {
    display: none;
}

.desktop-header.compact .compact-logo {
    display: block;
}

.desktop-header.compact .desktop-header__button {
    padding: 3px 20px;
}

.mobile-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-header__navigation {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;

    margin: 0 56px;
    padding: 32px;

    width: calc(100% - 112px);
    max-height: 65vh;
    overflow-y: scroll;

    display: none;
    flex-direction: column;
    gap: 20px;

    background: #ffffff;
    box-shadow: 0px 0px 10px 0px #0000001A;

    border-radius: 20px;
}

.mobile-header__navigation.open {
    display: flex;
}

.mobile-header__navigation ul#main-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-header__navigation ul#main-menu li {
    padding-bottom: 20px;

    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;

    border-bottom: 1px solid var(--Color-primary-cream-100, #D6D4BF)
}

.mobile-header__navigation ul#main-menu li:last-child {
    border-bottom: none;
}

.mobile-header__navigation ul#main-menu li a {
    color: var(--Text-dark, #0A3742);
}

.mobile-header__navigation ul#main-menu li a span {
    position: relative;
}

.mobile-header__navigation ul#main-menu li a span::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: 1px;

    background-color: #0A3742;
    opacity: 0;

    transition: .3s;
}

.mobile-header__navigation ul#main-menu li a:hover span::before {
    opacity: 1;
}

.mobile-header__navigation li.menu-item-has-children > a {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mobile-header__navigation li.menu-item-has-children > a::after {
    content: "";
    position: relative;

    width: 24px;
    height: 24px;

    display: block;

    background-image: url('/wp-content/themes/valo_wp/assets/img/chevron-down.svg');
}

.mobile-header__navigation li.menu-item-has-children ul.sub-menu {
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    float: unset;

    display: flex;
    flex-direction: column;
    gap: 32px;

    box-shadow: none;
}

.mobile-header__navigation li.menu-item-has-children ul.sub-menu li:first-of-type {
    margin-top: 40px;
}

.mobile-header__navigation li.menu-item-has-children ul.sub-menu li:last-of-type {
    margin-bottom: 40px;
}

.mobile-header__navigation ul#main-menu ul.sub-menu li {
    padding-bottom: 0;

    border: none;
}

.mobile-header__menu-button {
    padding: 0;

    height: 34px;
    width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: none;
}

.mobile-header__menu-button .close,
.mobile-header__menu-button.active .burger {
    display: none;
}

.mobile-header__menu-button .burger,
.mobile-header__menu-button.active .close {
    display: block;
}

.mobile-header__navigation .valo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


/* Footer styles */

footer#colophon .footer-box {
    background-color: initial;
}

.footer-box__top {
    padding-top: 40px;
    padding-bottom: 110px;

    background-color: var(--Canvas-dark, #0A3742);

    border-radius: 0 0 80px 80px;
}

.footer-box__top > .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 20px;
}

.footer-box__logo {
    width: fit-content;
}

.footer-box__nav {
    grid-column: 2 / 5;
}

.footer-box__nav > div > ul {
    margin: 0;

    display: flex;
    gap: 20px;
}

.footer-box__nav > div > ul > li {
    flex: 1;
}

.footer-box__nav > div > ul > li > a {
    margin-bottom: 12px;

    display: block;

    color: var(--Color-primary-cream-100, #D6D4BF);

    font-weight: 500;
}

.footer-box__nav > div > ul > li .sub-menu {
    margin-left: 0;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-box__nav > div > ul > li .sub-menu li {
    line-height: 22px;
}

.footer-box__nav > div > ul > li .sub-menu li > a {
    position: relative;

    width: fit-content;

    display: block;

    color: var(--Text-light, #EDEDDD);

    font-size: 14px;
    font-weight: 400;
}

.footer-box__nav > div > ul > li .sub-menu li > a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: 1px;

    background-color: var(--Text-light, #EDEDDD);
    opacity: 0;

    pointer-events: none;
    transition: .3s;
}

.footer-box__nav > div > ul > li .sub-menu li > a:hover::after {
    opacity: 1;
}

.footer-box__bottom {
    position: relative;

    padding: 20px 0;

    background-color: var(--Canvas-page, #FBFBF4);
}

.footer-box__bottom > img {
    position: absolute;
    bottom: 15px;
    left: 0;
}

.footer-box__bottom a {
    position: relative;

    color: var(--Text-dark, #0A3742);

    font-size: 14px;
    line-height: 22px;
}

.footer-box__bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;

    width: 100%;
    height: 1px;

    background-color: var(--Text-dark, #0A3742);
    opacity: 0;

    transition: .3s;
    pointer-events: none;
}

.footer-box__bottom a:hover::after,
.footer-box__bottom a:focus::after {
    opacity: 1;
}

.footer-box__bottom > .container {
    position: relative;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.footer-box__copy {
    grid-column: 4 / 7;

    color: var(--Text-dark, #0A3742);

    font-size: 14px;
    line-height: 22px;
}

.footer-box__privacy,
.footer-box__socials {
    grid-column: 7 / 11;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.footer-box__socials {
    grid-column: 11 / 13;
}



/* Home page "Hero" section */

.home-hero {
    padding-top: 160px;
    padding-bottom: 112px;

    overflow: clip;

    background-image: url('/wp-content/themes/valo_wp/assets/img/hero-bg.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 0 80px 80px;
}

.home-hero h1 {
    margin: 0 auto 12px;

    max-width: 920px;

    color: var(--Text-dark, #0A3742);

    font-size: 78px;
    line-height: 80px;
    letter-spacing: -1px;
    text-align: center;
}

.home-hero h1 b {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('/wp-content/themes/valo_wp/assets/img/heading-animation.png');
    background-color: #0A3742;
    background-repeat: no-repeat;
    background-position: -200%;

    animation: heading_animation 15s ease-in-out forwards infinite;
}

@keyframes heading_animation {
    50% {
        background-position: 200%;
    }
}

.home-hero h2 {
    margin: 0 auto 56px;

    max-width: 680px;

    color: var(--Text-dark, #0A3742);

    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    text-align: center;
}

.carousel.home-hero__carousel_mobile {
    margin: 0 -56px;

    display: none;
}

.carousel {
    min-height: 400px;

    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.carousel-card {
    position: relative;
    z-index: 1;

    flex: 1;
}

.carousel-card__title {
    margin-bottom: 12px;

    color: var(--Text-dark, #0A3742);

    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: -.2px;
    text-align: center;
}

.carousel-card__content {
    position: relative;

    padding: 20px;

    width: 250px;
    max-height: 356px;
    height: 305px;
    overflow: clip;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);

    border-radius: 20px;

    transition: .5s ease-in-out;
}

.carousel-card__link.valo-button {
    padding: 3px 20px;

    width: fit-content;

    opacity: 0;

    transition: .5s ease-in-out;
    transform: translate(20px, 20px);
    pointer-events: none;
}

.home-hero__carousel_desktop .carousel-card:nth-child(4n + 1) .carousel-card__content {
    height: 256px;
}

.home-hero__carousel_desktop .carousel-card:nth-child(3) .carousel-card__content {
    width: 300px;
    height: 356px;
}

.home-hero__carousel_desktop .carousel-card:hover .carousel-card__content  {
    width: 300px;
    height: 356px;
}

.home-hero__carousel_desktop .carousel:has(.carousel-card:hover:not(:nth-child(3))) .carousel-card:nth-child(3) .carousel-card__content {
    height: 305px;
    width: 250px;
}

.home-hero__carousel_mobile .carousel-card:hover .carousel-card__content {
    height: 356px;
}

.carousel-card:hover .carousel-card__link {
    opacity: 1;

    transform: translate(0, 0);
    pointer-events: all;
}

.carousel-card__text {
    position: absolute;
    top: calc(100% - 20px);
    right: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    transition: .5s ease-in-out;
    transform: translateY(-100%);
}

.carousel-card:hover .carousel-card__text {
    top: 20px;

    transform: translateY(0);
}

.carousel-card__metric {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #72FF69;

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -.2s;
}

.carousel-card__description {
    color: #EDEDDD;

    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.carousel-card__image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__carousel_mobile .carousel-card__content {
    width: 100%;
    box-sizing: border-box;
}

.home-hero__carousel_mobile .swiper-wrapper {
    min-height: 400px;

    align-items: flex-end;
}

.home-hero__carousel_mobile .swiper-slide {
    transition: .3s;
    transform-origin: center bottom;
}

.home-hero__carousel_mobile .swiper-slide .carousel-card__content {
    height: 256px;
}

.home-hero__carousel_mobile .swiper-slide-prev .carousel-card__content,
.home-hero__carousel_mobile .swiper-slide-next .carousel-card__content {
    height: 306px;
}
.home-hero__carousel_mobile .swiper-slide-active .carousel-card__content {
    height: 356px;
}

.valo-slider-controls {
    margin-top: 56px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.valo-slider-controls__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.valo-slider-controls__buttons button {
    padding: 0;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0E0E0E33;

    border-radius: 100px;
    border: none;

    transition: .3s;
    cursor: pointer;
}

.valo-slider-controls__buttons button:hover {
    background-color: #0E0E0E60;
}

.valo-slider-controls__pagination {
    padding: 12px 14px;

    width: fit-content !important;

    display: flex;
    align-items: center;
    gap: 8px;

    background-color: #0E0E0E33;

    border-radius: 100px;
}

.valo-slider-controls__pagination .swiper-pagination-bullet {
    margin: 0 !important;

    width: 8px;
    height: 8px;

    background-color: #0A3742;
    opacity: 1 !important;

    border-radius: 8px;

    transition: .3s;
}

.valo-slider-controls__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 45px;

    background-color: #70ff61;
}


.method-section {
    padding: 112px 0;
}

.method-section__container {
    display: flex;
    gap: 20px;
}

.method-section__block {
    position: relative;
    
    padding: 40px;

    min-height: 600px;
    overflow: clip;

    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    border-radius: 20px;
}

.method-section__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-section__block-content {
    position: relative;
    z-index: 2;
}

.method-section__title {
    margin-bottom: 8px;

    color: var(--Text-light, #EDEDDD);

    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.5px;
}

.method-section__subtitle {
    margin-bottom: 20px;

    color: var(--Text-light, #EDEDDD);

    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.method-section__link {
    width: fit-content;
}

.method-section__image {
    position: relative;
    z-index: 2;

    max-height: 220px;
    width: 100%;

    display: flex;
    justify-content: flex-end;
}

.method-section__image:has(img[src*="vector"]) {
    bottom: -30px;
    right: -20px;
    max-height: 300px;
}

.method-section__image img {
    height: 100%;
    width: auto;
}



.logos-bar__slider {
    pointer-events: none;
}

.logos-bar__slider .swiper-wrapper {
    transition-timing-function: linear;
}

.logos-bar__slider .swiper-slide {
    height: auto;
}

.logos-bar__slider:not(.swiper-initialized) .swiper-wrapper {
    min-height: 0;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.logos-bar__slider:not(.swiper-initialized) .swiper-slide:nth-child(n + 7) {
    display: none;
}

.logos-bar__slider .logos-bar__logo {
    height: 100%;
}

.logos-bar__slider .logos-bar__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.impact {
    padding-top: 80px;

    background-color: var(--Canvas-shade, #EDEDDD);
}

.impact__title {
    margin: 0 0 20px;

    color: var(--Text-dark, #0A3742);

    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.5px;
    text-align: center;
}

.impact-belt:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 20px;
}

.impact-belt:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    flex: 1;
}

.impact-belt .swiper-slide {
    height: auto;
}

.impact-belt-card {
    padding: 40px;

    box-sizing: border-box;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    border-right: 1px solid var(--Color-primary-cream-100, #D6D4BF)
}

.impact-belt .swiper-slide:last-child .impact-belt-card {
    border-right: none;
}

.impact-belt-card__title {
    color: var(--Text-dark, #0A3742);

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02px;
}

.impact-belt-card__metric {
    color: var(--Text-dark, #0A3742);

    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1px;
}

.impact-belt-card__desc {
    color: var(--Text-dark, #0A3742);

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.impact-belt__controls {
    margin-top: 20px;
}



.testemonials {
    padding-top: 56px;
    padding-bottom: 112px;

    background-color: var(--Canvas-shade, #EDEDDD);
}

.testemonials-belt:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 20px;
}

.testemonials-belt:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    flex: 1;
}

.testemonials-belt .swiper-slide {
    height: auto;
}

.testemonials-belt-card {
    position: relative;
    z-index: 1;

    padding: 40px;

    height: 100%;
    box-sizing: border-box;
    overflow: clip;

    flex: 1;

    border-radius: 20px;
}

.testemonials-belt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(180.62deg, rgba(0, 0, 0, 0.6) 0.49%, rgba(0, 0, 0, 0.6) 99.42%);
}

.testemonials-belt-card__quote,
.testemonials-belt-card__author {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testemonials-belt-card__quote {
    margin-bottom: 60px;

    gap: 20px;
}

.testemonials-belt-card__author {
    gap: 4px;
}

.testemonials-belt-card__quote-mark {
    width: 24px;
    height: 24px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.testemonials-belt-card__text {
    color: var(--Text-light, #EDEDDD);

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.testemonials-belt-card__pos {
    opacity: .5;
    color: var(--Text-light, #EDEDDD);

    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.testemonials-belt-card__spec {
    color: var(--Text-light, #EDEDDD);

    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.testemonials-belt-card.case-studies-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: var(--Color-primary-accent-90, #70FF61);
}

.testemonials-belt-card.case-studies-card::before {
    display: none;
}

.testemonials-belt-card.case-studies-card .case-studies-card__link {
    width: fit-content;
} 

.testemonials-belt-card__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.testemonials-belt-card__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.benefits {
    padding: 80px 0;

    background: var(--Canvas-page, #FBFBF4);
}

.benefits__main {
    position: relative;
    z-index: 1;

    margin: 0 auto;
    
    overflow: clip;
    width: 916px;
    height: 554px;
    
    border-radius: 20px;

    transform-origin: top center;
    transition: 1s;
}

.benefits__main.active {
    width: 100%;
    height: var(--anim-height);
}

.benefits__inner {
    position: relative;
    z-index: 1;

    padding: 80px 115px 70px;

    max-width: 1400px;
    width: 1400px;

    display: flex;
    align-items: flex-start;
    gap: 20px;

    opacity: 0;
    pointer-events: none;
}

.benefits__main.active .benefits__inner {
    width: 100%;

    opacity: 1;
    pointer-events: all;

    transition: opacity .5s 1s;
}

.benefits__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits__title {
    margin-top: 0;
    margin-bottom: 56px; 

    color: var(--Text-light, #EDEDDD);

    font-size: 48px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -1px;
}

.benefits__title p {
    margin: 0;
}

.benefits__title p:first-of-type {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #37C7E5 0%, #B683FF 57.35%, #FFCBC1 97.6%);
}

.benefits__left {
    flex: 3;
}

.benefits__right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits__slider {
    margin-top: 20px;

    display: none;
}

.benefits__links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefits__link {
    width: fit-content;
}

.benefits__card {
    padding: 40px;

    color: var(--Text-light, #EDEDDD);
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits__card-title {
    margin-bottom: 20px;

    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -.2px;
}

.benefits__card-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -.2px;
}



.faq {
    padding-bottom: 112px;

    background-color: var(--Canvas-page, #FBFBF4);
}

.faq.padding {
    padding-top: 80px;
}

.faq__subtitle {
    margin-top: 0;
    margin-bottom: 20px;

    color: var(--Text-dark, #0A3742);

    
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.2px;
    text-align: center;
}

.faq__title {
    margin-top: 0;
    margin-bottom: 20px;

    color: var(--Text-dark, #0A3742);

    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: -1px;
    text-align: center;
}

.faq__list {
    margin: 0 auto;

    width: 916px;
}

.faq-i__header {
    padding-top: 16px;
    padding-bottom: 16px;

    display: flex;
    align-items: center;
    gap: 20px;

    cursor: pointer;
}

.faq-i__title {
    flex: 1;

    color: var(--Text-dark, #0A3742);

    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.2px;
}

.faq-i__button {
    width: 64px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: none;

    border: none;
}

.faq-i.open .faq-i__button img {
    transform: rotate(180deg);
}

.faq-i__inner {
    padding-bottom: 40px;

    display: none;

    color: var(--Text-dark, #0A3742);

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.2px;
}

.faq-i__content {
    border-bottom: 1px solid #83B2B9;
}



/* 6 months page */

.page-template-template-six-months .site-main {
    background: #0E0E0E;
}

.months-hero {
    padding-top: 140px;
    padding-bottom: 80px;
}

.months-hero__wrapper {
    position: relative;
    z-index: 1;
}

.months-hero__inner {
    padding: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background-color: #0E0E0E;

    border: 1px solid #FFFFFF80;
    border-radius: 20px;
}

.months-hero__inner::before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;

    background: conic-gradient(from 180deg at 50% 50%, #70FF61 -2.82deg, #51E0FF 94.58deg, #B683FF 269.77deg, #70FF61 357.18deg, #51E0FF 454.58deg);
    filter: blur(20px);

    border-radius: 20px;
}

.months-hero__left {
    max-width: 30%;
}

.months-hero__right {
    max-width: 60%;
}

.months-hero__title {
    margin-bottom: 12px;

    color: #EDEDDD;
}

.months-hero__subtitle {
    margin-bottom: 56px;

    color: var(--Text-light, #EDEDDD);
}

.months-hero__link {
    width: fit-content;
}



.steps {
    padding: 80px 0;
}

.steps__title {
    margin-bottom: 20px;

    color: #EDEDDD;

    text-align: center;
}

.steps__subtitle {
    margin-bottom: 56px;
    margin-left: auto;
    margin-right: auto;

    max-width: 750px;

    color: #EDEDDD;

    text-align: center;
}

.steps__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.steps .steps__image:nth-child(2n - 1) {
    background: linear-gradient(180deg, #DCF7FF 0%, #E7D6FF 100%);
}

.steps .steps__image:nth-child(2n) {
    background: linear-gradient(180deg, #DCE9EC 0%, #DCFFD9 100%);
}

.steps__image {
    padding: 80px 40px 40px;

    overflow: clip;

    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

    border-radius: 20px;
}

.steps__image-content {
    padding: 0 40px;

    color: #0A3742;
}

.steps__chip {
    margin-bottom: 20px;
    padding: 0 20px;

    width: fit-content;

    background: #70FF61;

    border-radius: 30px;
}

.steps__image-title {
    margin-bottom: 12px;
}

.steps__image {
    width: 100%;
    height: auto;
}

.steps__items {
    padding: 0 40px;

    flex: 1;
}

.step-cards {
    padding: 40px;

    display: flex;
    flex-direction: column;

    background-color: #FFFFFFE5;

    border-radius: 20px;
}

.step-card {
    padding: 20px 0;

    color: #0A3742;

    border-bottom: 1px solid #D6D4BF;
}

.step-card:last-of-type {
    border-bottom: none;
}

.step-card__title {
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 500;
}

.step-card__title span {
    flex: 1;
}

.step-card:has(+.step-cards__card_accent) {
    border-bottom: none;
}

.step-cards__card_accent {
    margin-top: 20px;
    padding: 20px 40px;

    color: #EDEDDD;
    background-color: #0A3742;

    border-radius: 20px;
    border: none;
}

.step-cards__card_accent .step-card__title {
    color: #EDEDDD;
}

.step-cards__card_accent .step-card__text {
    color: #EDEDDD;
}


.link-cards {
    padding-top: 56px;
    padding-bottom: 80px;

    margin: 0 115px;
}

.link-cards__title {
    color: #EDEDDD;

    text-align: center;
}

.link-cards__inner {
    margin-top: 20px;
}

.link-cards__inner .swiper-slide {
    height: auto;
}

.link-card {
    padding: 20px;

    box-sizing: border-box;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;

    background-color: #0A3742;

    border-radius: 20px;
    border: 1px solid #0A3742;

    transition: .3s;
}

.link-card:hover {
    border-color: #70FF61;
}

.link-card__title {
    color: #EDEDDD;

    font-weight: 600;
}

.link-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-card__content {
    padding-top: 18px;

}

.link-card__arrow {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    filter: brightness(0) saturate(100%) invert(90%) sepia(21%) saturate(167%) hue-rotate(6deg) brightness(109%) contrast(86%);

    transition: .3s;
}

.link-card:hover .link-card__arrow {
    filter: brightness(0) saturate(100%) invert(89%) sepia(9%) saturate(2944%) hue-rotate(54deg) brightness(97%) contrast(108%);
}

.link-card__percent {
    color: #70FF61;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.link-card__desc {
    color: #EDEDDD;

    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
}

.link-card_icon {
    gap: 26px;

    background-color: #18404A;
}

.link-card_icon .link-card__content {
    padding-top: 0;
}

.link-card__pagination {
    background: #FFFFFF33;
}

.link-card__pagination .swiper-pagination-bullet {
    background: #EDEDDD;
}

.link-card__buttons button {
    background: #FFFFFF33;    
}

.link-card__buttons button:hover {
    background: #FFFFFF33;
    opacity: .5;
}

.link-card__buttons button img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(17%) saturate(154%) hue-rotate(22deg) brightness(105%) contrast(86%);
}

.link-card__controls {
    display: none;
}



.graph {
    padding: 80px 0;
}

.graph__title {
    margin-bottom: 20px;

    color: #EDEDDD;

    text-align: center;
}

.graph__subtitle {
    margin-bottom: 56px;

    color: #EDEDDD;

    text-align: center;
}

.graph__wrapper {
    position: relative;

    margin: 0 auto;

    width: 640px;
}

.graph__caption {
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 1;
}

.graph__caption-desc {
    margin-bottom: 12px;

    color: #70FF61;
}

.graph__caption-value {
    color: #EDEDDD;
}

.graph__image {
    clip-path: inset(0 100% 0 0);
    animation: graph-animation infinite alternate 12s 1s ease-in-out;
    transform-origin: center bottom;
}

@keyframes graph-animation {
    0% {
        clip-path: inset(0 100% 0 0);

        transform: scaleY(.9);
    }
    33.333% {
        clip-path: inset(0);

        transform: scaleY(1);
    }
    66.666% {
        clip-path: inset(0);

        transform: scaleY(1);
    }
    100% {
        clip-path: inset(0 100% 0 0);

        transform: scaleY(.9);
    }
}

.graph__link {
    margin: 56px auto 0;

    width: fit-content;
}

/* !6 months page */



/* Owner dependency */

.page-template-template-owner-dependency .site-main {
    background: #CFF4FF;
}

.od-hero {
    padding-top: 140px;
    padding-bottom: 56px;

    background: #FBFBF4;

    border-bottom: 1px solid var(--Color-primary-cream-100, #D6D4BF)
}

.od-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.od-hero__left {
    flex: 1;
}

.od-hero__chip {    
    padding: 0 20px;

    width: fit-content;

    background: #70FF61;

    border-radius: 30px;
}

.od-hero__title {
    margin-top: 20px;
}

.od-hero__title {
    margin-top: 20px;

    max-width: 90%;
}

.od-hero__subtitle {
    margin-top: 12px;

    max-width: 80%;
}

.od-hero__subtitle p {
    margin: 0;
}

.od-hero__link {
    margin-top: 56px;

    width: fit-content;
}

.od-hero__right {
    position: relative;

    padding: 20px;

    overflow: hidden;
    box-sizing: border-box;

    flex: 1;

    border-radius: 20px;
}

.od-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;
}

.od-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-hero__stats {
    position: relative;
    z-index: 1;

    padding: 40px;

    width: fit-content;

    background: #FFFFFF80;
    backdrop-filter: blur(17px);

    border-radius: 20px;
}

.od-hero__value {
    margin-top: 4px;
    color: #70FF61;
}

.od-hero__graph {
    margin-top: 20px;
}


.od-warning {
    position: relative;
    z-index: 1;

    padding-top: 20px;
    padding-bottom: 56px;

    background: #FBFBF4;

    border-radius: 0 0 80px 80px;
}

.od-warning__container {
    max-width: 1136px;
}

.od-warning__title {
    font-weight: 600;
    text-align: center;
}

.od-warning__cards {
    position: relative;

    margin-top: 32px;
}

.od-warning__cards::after {
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;

    width: 100px;
    height: 100%;

    background: linear-gradient(90deg, rgba(251, 251, 244, 0) 41.2%, #FBFBF4 94.8%);
}

.warning-card {
    border-right: 1px solid var(--Color-primary-cream-100, #D6D4BF);
}

.warning-card__icon {
    margin-bottom: 8px;
}


.od-opportunity {
    padding-top: 80px;
    padding-bottom: 80px;

    background: linear-gradient(180deg, #CFF4FF 0%, #EDE3FF 100%);
}

.od-opportunity__subtitle {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;

    max-width: 800px;
    
    font-weight: 500;
    text-align: center;
}

.od-opportunity__title {
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;

    max-width: 800px;
    
    font-weight: 500;
    text-align: center;
}

.od-opportunity__title b {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #51E0FF 0%, #B683FF 59.62%);

    font-weight: 500;
}

.od-opportunity__text {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;

    max-width: 800px;
    
    text-align: center;
}

.od-opportunity__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.od-opportunity__gallery {
    position: relative;

    margin-top: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.od-opportunity__left {
    width: 230px;
}

.od-opportunity__brain {
    position: relative;

    padding: 20px;

    box-sizing: border-box;
    width: 230px;
    height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
    border: 2px solid var(--Color-primary-cream-0, #FFFFF9)
}

.energy-sphere {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-sphere__frame {
    position: absolute;

    width: 180px;
    height: 180px;

    transform: scale(1.25);
    animation: energy-animation 4s infinite linear;
}

@keyframes energy-animation {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.energy-sphere__frame:nth-child(1) {
    animation-delay: 0s;
}

.energy-sphere__frame:nth-child(2) {
    opacity: 0;
    animation-delay: 1s;
}

.energy-sphere__frame:nth-child(3) {
    opacity: 0;
    animation-delay: 2s;
}

.energy-sphere__frame:nth-child(4) {
    opacity: 0;
    animation-delay: 3s;
}

.od-opportunity__brain-caption {
    position: absolute;
    z-index: 1;

    padding: 4px 8px;

    color: var(--Text-light, #EDEDDD);
    background: var(--Color-primary-teal-100, #0A3742);

    border-radius: 12px;
    border: 1px solid #000000
}

.od-opportunity__desc {
    margin: 12px 9px 0;

    color: #3B5F68;

    font-weight: 500;
}

.od-opportunity__icon {
    transform: translateY(-50%);
}

.od-gallery {
    max-width: 600px;
}

.od-gallery__controls {
    margin-top: 20px;
}

.valo-slider-controls__pause {
    padding: 0;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0E0E0E33;

    border-radius: 100px;
    border: none;

    transition: .3s;
}

.valo-slider-controls__pause:hover {
    background-color: #0E0E0E60;
}

.valo-slider-controls__pause .play,
.valo-slider-controls__pause.active .pause {
    display: none;
}

.valo-slider-controls__pause.active .play,
.valo-slider-controls__pause .pause {
    display: block;
}

.od-opportunity__brain-process {
    position: absolute;
    left: 230px;
    top: 15%;

    width: 560px;
}

.od-services {
    padding: 80px 0;

    background: #FBFBF4;
}

.od-services__content {
    margin-top: 80px;

    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.od-services__image {
    flex: 1;
}

.od-services__image img {
    border-radius: 20px;
}

.od-services__image-text {
    margin-top: 20px;

    font-weight: 500;

    max-width: 65%;
}

.od-services__image-text p {
    margin: 0;
}

.od-services__cards {
    flex: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.od-services__card {
    padding: 40px 40px 66px;

    background: #EDEDDD;

    border-radius: 20px;
}

.od-services__card-icon {
    margin-bottom: 8px;
}


.od-success {
    padding: 56px 0;

    background: #EDEDDD;
}

.od-success__title {
    font-weight: 500;

    text-align: center;
}

.od-success__cards {
    margin-top: 20px;
}

.success-card {
    padding: 20px;

    border-right: 1px solid var(--Color-primary-cream-100, #D6D4BF);
}

.success-cards .swiper-slide:last-of-type .success-card {
    border-right: none;
}

.success-cards .swiper-slide:first-of-type .success-card {
    background: #70FF61;

    border-radius: 20px;
    border-right: none;
}

.success-card__value {
    color: #0A3742;

    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1px;
}

.success-card__desc {
    margin-top: 20px;
}

.success-cards__controls {
    display: none;
}

/* !Owner dependency */



/* Approach */

.approach-hero {
    padding-top: 140px;
    padding-bottom: 28px;

    background-color: #FBFBF4;
}

.approach-hero__wrapper {
    position: relative;
    z-index: 1;

    padding: 40px 117px;

    box-sizing: border-box;
    min-height: 600px;
    overflow: hidden;
    
    display: flex;
    align-items: center;
    gap: 20px;

    border-radius: 20px;
}

.approach-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
}

.approach-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-hero__subtitle {
    margin-bottom: 20px;
    
    font-weight: 500;
}

.approach-hero__title {
    margin-bottom: 20px;
}

.approach-hero__text {
    max-width: 80%;
}

.approach-hero__animation {
    margin-top: 20px;
}

.chatbot-questions {
    padding: 1px;

    box-sizing: border-box;

    background: linear-gradient(180deg, #FFFFFF 0%, #9A63E5 100%);

    border-radius: 100px;
}

.chatbot-questions__wrapper {
    position: relative;
    z-index: 1;

    padding: 17px 28px;

    box-sizing: border-box;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    border-radius: 100px;

    transition: 1s;
}

.chatbot-question__backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;

    background: linear-gradient(90deg, #B683FF 0%, #FF6E51 57.35%, #FFCBC1 97.6%);

    border-radius: 100px;
}

.chatbot-question__background {
    position: absolute;

    width: 100%;
    height: 100%;

    transition: 1s;

    animation: chatbot-background 12s linear infinite backwards;
}

.chatbot-question__background:nth-child(1) {
    background: linear-gradient(90deg, #B683FF 0%, #FF6E51 57.35%, #FFCBC1 97.6%);

    animation-delay: 0s;
}

.chatbot-question__background:nth-child(2) {
    opacity: 0;
    background: linear-gradient(90deg, #37C7E5 0%, #B683FF 57.35%, #FFCBC1 97.6%);

    animation-delay: 4s;
}

.chatbot-question__background:nth-child(3) {
    opacity: 0;
    background: linear-gradient(90deg, #5798A0 0%, #37C7E5 57%, #CAA1FF 98%);

    animation-delay: 8s;
}

.chatbot-questions__frames {
    position: relative;
    z-index: 1;

    height: 28px;

    flex: 1;
}

.chatbot-questions__frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    color: #FFFFF9;

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.2px;

    animation: chatbot-fade-out 12s linear infinite forwards;
}

.chatbot-questions__frames .chatbot-questions__frame:nth-child(2) {
    clip-path: inset(0 100% 0 0);

    animation-delay: 4s;
}

.chatbot-questions__frames .chatbot-questions__frame:nth-child(3) {
    clip-path: inset(0 100% 0 0);

    animation-delay: 8s;
}

@keyframes chatbot-fade-out {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    8.333% {
        clip-path: inset(0);
    }
    25% {
        clip-path: inset(0);
    }
    33.333% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes chatbot-background {
    0% {
        opacity: 0;
    }
    8.333% {
        opacity: 1;
    }
    33.333% {
        opacity: 1;
    }
    41.667% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.approach-links {
    padding-top: 28px;
    padding-bottom: 112px;

    background-color: #FBFBF4;
}

.approach-links__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.approach-link-big {
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 56px;
}

.approach-link-big:nth-child(4n + 1) {
    background: linear-gradient(270deg, #DCE9EC 0%, #FFE8E3 100%);
}

.approach-link-big:nth-child(4n + 2) {
    background: linear-gradient(180deg, #DCFFD9 0%, #DCE9EC 100%);
}

.approach-link-big:nth-child(4n + 3) {
    background: linear-gradient(180deg, #FFD9D1 0%, #EDE3FF 100%);
}

.approach-link-big:nth-child(4n + 4) {
    background: linear-gradient(180deg, #CFF4FF 0%, #EDE3FF 100%);
}

.approach-link-big__top {
    padding-top: 80px;
    padding-left: 56px;
    padding-right: 56px;

    max-width: 450px;
}

.approach-link-big__title {
    margin-bottom: 20px;
}

.approach-link-big__text {
    margin-bottom: 40px;
}

.approach-link-big__link {
    width: fit-content;
}


.approach-animation {
    padding: 80px 0;

    background-color: #0A3742;
}

.approach-animation__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.approach-animation__left {
    max-width: 330px;
}

.approach-animation__title {
    margin-bottom: 12px;
    
    color: #70FF61;
}

.approach-animation__text {
    margin-bottom: 56px;

    color: #EDEDDD;
}

.approach-animation__link {
    width: fit-content;
}

.globe-animation {
    position: relative;
    z-index: 1;

    flex: 1;
    margin: 0 auto;
    width: fit-content;
}

.approach-animation__right {
    flex: 1;
}

.globe-animation__globe {
    position: relative;
    z-index: 1;

    width: 574px;
    height: 574px;
}

.globe-animation__globe > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    transition: .5s;
}

.globe-animation__globe .globe-background {
    opacity: 0;
}

.globe-animation__button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    padding: 10px 20px;

    width: fit-content;

    background-color: #72FF69;

    border-radius: 100px;

    transform: translate(-50%, -50%);

    cursor: pointer;
}

.globe-animation__button .pause,
.globe-animation__button.active .play {
    display: none;
}

.globe-animation__button.active .pause,
.globe-animation__button .play {
    display: block;
}

.globe-animation.play .globe-animation__globe .globe-foreground {
    opacity: 0;
}

.globe-animation.play .globe-animation__globe .globe-background {
    animation: globe-background-animation 2s ease-out forwards;
}

@keyframes globe-background-animation {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

.globe-animation__captions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    width: 100%;
    height: 100%;

    opacity: 0;
}

.globe-animation.play .globe-animation__captions {
    opacity: 1;
}

.globe-animation__caption {
    position: absolute;

    padding: 9px 20px;

    box-sizing: border-box;
    width: fit-content;

    color: #0A3742;
    background-color: #FFFFFF80;
    opacity: 0;

    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.2px;

    border: 1px solid white;
    border-radius: 100px;

    transition: .5s;
}

.globe-animation.play .globe-animation__caption {
    opacity: 0;

    animation-name: globe-captions-animation;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.globe-animation__caption:nth-child(1) {
    --caption-background: #C2F4FF;

    top: 50%;
    left: -15%;

    opacity: 0;

    background-color: var(--caption-background);
    border-color: var(--caption-background);

    animation-delay: 1.5s;
}

.globe-animation__caption:nth-child(2) {
    --caption-background: #C7FFC2;

    top: 15%;
    left: 10%;

    background-color: var(--caption-background);
    border-color: var(--caption-background);

    animation-delay: 3s;
}

.globe-animation__caption:nth-child(3) {
    --caption-background: #E7D6FF;

    top: 30%;
    right: -15%;

    background-color: var(--caption-background);
    border-color: var(--caption-background);

    animation-delay: 4.5s;
}

.globe-animation__caption:nth-child(4) {
    --caption-background: #F2F2E4;

    bottom: 30%;
    right: -20%;

    background-color: var(--caption-background);
    border-color: var(--caption-background);

    animation-delay: 6s;
}

.globe-animation__caption:nth-child(5) {
    --caption-background: #9AC0C6;

    bottom: 10%;
    left: 30%;

    background-color: var(--caption-background);
    border-color: var(--caption-background);

    animation-delay: 7.5s;
}

@keyframes globe-captions-animation {
    0% {
        opacity: 0;
        background-color: var(--caption-background);

        border-color: var(--caption-background);
    }
    25% {
        opacity: 1;
        background-color: var(--caption-background);

        border-color: var(--caption-background);
    }
    75% {
        opacity: 1;
        background-color: var(--caption-background);

        border-color: var(--caption-background);
    }
    100% {
        opacity: 1;
        background-color: #FFFFFF80;

        border-color: white;
    }
}

.globe-animation .energy-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    width: 280px;
    height: 280px;

    opacity: .75;

    transform: translate(-50%, -50%);
    animation: energy-rotate 64s linear infinite;
}

@keyframes energy-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.globe-animation .energy-sphere .energy-sphere__frame {
    width: 280px;
    height: 280px;
}

.globe-animation .energy-sphere .energy-sphere__frame img {
    width: 100%;
    height: 100%;
}

.approach-insights {
    padding: 112px 0;

    background-color: #FBFBF4;
}

.approach-insights__wrapper {
    min-height: 0;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.approach-insights__image {
    overflow: clip;
    
    flex: 1;

    border-radius: 20px;
}

.approach-insights__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-insights__card {
    padding: 80px;

    box-sizing: border-box;
    height: 100%;

    flex: 1;

    background-color: #EDEDDD;

    border-radius: 20px;
}

.approach-insights__card-title {
    margin-bottom: 20px;
}

.approach-insights__card-text p {
    margin-top: 0;
    margin-bottom: 20px;
}

.approach-insights__card-text p:last-of-type {
    margin-bottom: 0;
}

.approach-insights__card.approach-insights__card_green {
    padding: 40px;
    
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background-color: #0A3742;
}

.approach-insights__card.approach-insights__card_green .approach-insights__card-title {
    margin-bottom: 12px;

    color: #70FF61;
}

.approach-insights__card.approach-insights__card_green .approach-insights__card-text {
    color: #EDEDDD;
}

/* !Approach */

/* Knowledge management */

.page-template-template-knowledge .site-main {
    background-color: #0A3742;
}

.knowledge-hero {
    padding-top: 140px;
    padding-bottom: 140px;

    background-image: url('/wp-content/themes/valo_wp/assets/img/lavander-background.png'), linear-gradient(90deg, #FFE8E3 0%, #DCE9EC 100%);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 0 80px 80px;
}

.knowledge-hero__slider {
    margin-top: 112px;
}

.knowledge-hero__slide {
    padding: 16px 10px;

    box-sizing: border-box;
    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    background-color: #FBFBF4;

    border-radius: 20px;
}

.knowledge-hero__slider .swiper-wrapper {
    transition-timing-function: linear;
}
.knowledge-hero__slider .swiper-slide {
    max-width: 150px;
}

.steps-line {
    position: relative;

    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.knowledge-steps-line {
    padding: 112px 0;

    background-color: #0A3742;
}

.steps-line__left {
    position: sticky;
    top: 80px;

    margin-right: 100px;

    max-width: 565px;

    flex: 1;
}

.steps-line__subtitle {
    margin-bottom: 20px;
    
    color: #EDEDDD;

    font-weight: 500;
}

.steps-line__title {
    margin-bottom: 20px;

    font-weight: 500;

    color: #EDEDDD;
}

.steps-line__text {
    margin-bottom: 56px;

    color: #EDEDDD;
}

.steps-line__links {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.steps-line__right {
    flex: 1;
}

.steps-line__steps {
    display: flex;
    flex-direction: column;
}

.steps-line__step {
    min-height: 180px;

    display: flex;
    gap: 20px;
}

.steps-line__step-left {
    position: relative;
    z-index: 1;

    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps-line__step-left::before {
    content: '';
    position: absolute;
    z-index: -1;

    width: 2px;
    height: 100%;

    background-color: #3B5F68;
}

.steps-line__step:last-of-type .steps-line__step-left::before {
    display: none;
}

.steps-line__step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #EDEDDD;
    background-color: #0A3742;

    font-weight: 400;
    
    border-radius: 100px;
    border: 2px solid var(--Text-hover, #3B5F68);
}

.steps-line__step:first-of-type .steps-line__step-number {
    border-color: #70FF61;
}

.steps-line__step:first-of-type .steps-line__step-left::after {
    content: '';
    position: absolute;
    top: 56px;
    z-index: 0;

    width: 2px;
    height: 40px;

    background-color: #70FF61;
}

.steps-line__step-title {
    margin-bottom: 12px;
    
    color: #EDEDDD;
}

.steps-line__step-text {
    color: #EDEDDD;
}

.knowledge-matters .impact-belt-card {
    gap: 0;
}

.knowledge-matters .impact-belt-card__title {
    margin-bottom: 20px;

    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}

.knowledge-cases .testemonials-belt-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.knowledge-cases .testemonials-belt-card.testemonials-belt-card.case-studies-card {
    justify-content: flex-end;
}

.knowledge-opportunity {
    padding-top: 56px;
    padding-bottom: 112px;

    background-color: #EDEDDD;
}

.knowledge-opportunity__image {
    padding-top: 80px;
}

.knowledge-benefits {
    padding: 80px 0 56px;

    background-color: #FBFBF4;
}

.benefits-block {
    position: relative;
    z-index: 1;

    padding: 80px 117px;

    box-sizing: border-box;
    overflow: hidden;
    min-height: 600px;
    
    /* display: flex; */
    align-items: flex-start;
    flex-direction: column;
    /* justify-content: space-between; */

    border-radius: 20px;
}

.benefits-block__link {
    margin-top: 56px;

    width: fit-content;
}

.benefits-block__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;   
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
}

.benefits-block__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-block__content {
    max-width: 800px;
}

.benefits-block__title {
    margin-bottom: 20px;

    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #37C7E5 0%, #B683FF 57.35%, #FFCBC1 97.6%);
}

.benefits-block__text {
    margin-bottom: 20px;

    color: #EDEDDD;

    font-weight: 500;
}


.knowledge-cycle {
    position: relative;
    z-index: 1;

    padding: 192px 0;
}

.knowledge-cycle__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
}

.knowledge-cycle__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-cycle__container {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.knowledge-cycle__wrapper {
    position: relative;

    max-width: 916px;
    width: 100%;
}

.knowledge-cycle__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;

    transform: translate(-50%, -50%);
}

.knowledge-cycle__cards {
    min-height: 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.knowledge-cycle__card {
    padding: 46px 80px;

    display: flex;
    align-items: center;
    gap: 20px;

    background: #FFFFFFB2;
    backdrop-filter: blur(30px);

    border-radius: 20px;
    border: 1px solid var(--Color-global-white, #FFFFFF)
}

.knowledge-cycle__card-content {
    flex: 1;
}

.knowledge-cycle__card-title {
    margin-bottom: 12px;

    font-weight: 600;
}

/* !Knowledge management */



/* Secure language model */

.page-template-template-secure .site-main {
    background-color: #FBFBF4;
}

.secure-hero {
    padding-top: 140px;
    padding-bottom: 112px;

    background-image: url('/wp-content/themes/valo_wp/assets/img/lavander-background.png'), linear-gradient(180deg, #DCE9EC 0%, #DCFFD9 100%);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 0 80px 80px;
}

.secure-hero__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.secure-hero__left {
    flex: 1;
}

.secure-hero__left .od-opportunity__subtitle {
    margin-left: 0;
    margin-right: 0;

    width: fit-content;

    text-align: left;
}

.secure-hero__left .od-opportunity__title,
.secure-hero__left .od-opportunity__text {
    margin-left: 0;
    margin-right: 0;

    max-width: 565px;

    text-align: left;
}

.secure-hero__left .od-opportunity__title {
    margin-bottom: 20px;

    font-weight: 600;
}

.secure-hero__right {
    position: relative;
    z-index: 1;

    padding: 20px 34px 57px;

    box-sizing: border-box;
    overflow: hidden;

    flex: 1;

    border-radius: 20px;
}

.secure-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
}

.secure-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secure-hero__caption {
    margin-bottom: 20px;

    color: #EDEDDD;

    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0px;
}

.secure-approach {
    padding-top: 56px;
    padding-bottom: 112px;
}

.secure-approach__wrapper {
    margin: 0 auto;

    box-sizing: border-box;
    max-width: 1150px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.secure-approach__card {
    padding: 20px;
}

.secure-approach__icon,
.secure-approach__title {
    margin-bottom: 20px;
}

.secure-benefits__wrapper {
    min-height: 500px;
}

/* !Secure language model */



/* AI Agents */

.page-template-template-agents .site-main {
    background-color: #0A3742;
}

.agents-hero {
    padding-top: 140px;
    padding-bottom: 112px;

    background-image: url('/wp-content/themes/valo_wp/assets/img/lavander-background.png'), linear-gradient(180deg, #CFF4FF 0%, #EDE3FF 100%);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 0 80px 80px;
}

.agents-hero .od-opportunity__title {
    font-weight: 600;
}

.agents-cards {
    margin-top: 56px;
    margin-left: auto;
    margin-right: auto;

    min-height: 0;
    width: fit-content;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.agents-cards__card {
    padding: 20px;

    max-width: 250px;
    height: fit-content;
    box-sizing: border-box;

    background-color: #FFFFFFCC;
    backdrop-filter: blur(20px);

    border-radius: 20px;

    transition: .6s ease-in-out;
}

.agents-cards__header {
    margin-bottom: 20px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #3B5F68;

    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0;
}

.agents-cards__text {
    margin-bottom: 20px;
}

.agents-cards__author {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #3B5F68;

    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0;
}

.agents-cards__photo {
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    overflow: hidden;

    border-radius: 30px;
    border: 2px solid;
}

.agents-cards .agents-cards__card:nth-child(1) {
    opacity: 0;
    transform: rotate(-4deg) translate(-135px, -50px);
}

.agents-cards .agents-cards__card:nth-child(2) {
    opacity: 0;
    transform: rotate(3.5deg) translate(-20px, -135px);
}

.agents-cards .agents-cards__card:nth-child(3) {
    opacity: 0;
    transform: rotate(1.5deg) translate(135px, -95px);
}

.agents-cards .agents-cards__card:nth-child(4) {
    opacity: 0;
    transform: rotate(-4deg) translate(180px, -20px);
}

.agents-cards .agents-cards__card:nth-child(5) {
    opacity: 0;
    transform: rotate(0deg) translate(-120px, 80px);
}

.agents-cards .agents-cards__card:nth-child(6) {
    opacity: 0;
    transform: rotate(-2deg) translate(-30px, 110px);
}

.agents-cards .agents-cards__card:nth-child(7) {
    opacity: 0;
    transform: rotate(11deg) translate(100px, 120px);
}

.agents-cards .agents-cards__card:nth-child(8) {
    opacity: 0;
    transform: rotate(1deg) translate(160px, 40px);
}

.agents-cards.animated .agents-cards__card:nth-child(1) {
    opacity: 1;
    transform: rotate(-4deg);
}

.agents-cards.animated .agents-cards__card:nth-child(2) {
    opacity: 1;
    transform: rotate(3.5deg) translate(2px, 0);
}

.agents-cards.animated .agents-cards__card:nth-child(3) {
    opacity: 1;
    transform: rotate(1.5deg) translate(12px, 0);
}

.agents-cards.animated .agents-cards__card:nth-child(4) {
    opacity: 1;
    transform: rotate(-4deg) translate(15px, 15px);
}

.agents-cards.animated .agents-cards__card:nth-child(5) {
    opacity: 1;
    transform: rotate(0deg) translate(45px, -10px);
}

.agents-cards.animated .agents-cards__card:nth-child(6) {
    opacity: 1;
    transform: rotate(-2deg) translate(43px, -5px);
}

.agents-cards.animated .agents-cards__card:nth-child(7) {
    opacity: 1;
    transform: rotate(11deg) translate(40px, -5px);
}

.agents-cards.animated .agents-cards__card:nth-child(8) {
    opacity: 1;
    transform: rotate(1deg) translate(22px, -1px);
}

.agents-brain-process {
    position: relative;
    z-index: 1;
    
    margin-top: 80px;

    display: flex;
    align-items: center;
    gap: 60px;
}

.agents-brain-process__lines {
    position: absolute;
    z-index: -1;
    left: 36%;

    max-width: 640px;

    pointer-events: none;
}

.agents-brain-process__left {
    padding: 40px;

    box-sizing: border-box;
    max-width: 500px;

    flex: 1;

    background-color: #FFFFFFCC;
    backdrop-filter: blur(15px);
    
    border-radius: 20px;
}

.agents-brain-process__card {
    padding: 20px 0;

    display: flex;
    gap: 12px;
    align-items: flex-start;

    border-bottom: 1px solid var(--Color-primary-cream-100, #D6D4BF);
}

.agents-brain-process__card:last-child {
    border-bottom: none;
}

.agents-brain-process__card-content {
    flex: 1;
}

.agents-brain-process__card-title {
    margin-bottom: 4px;

    font-weight: 500;
}

.agents-brain-process__card-text {
    color: #3B5F68;
}

.agents-brain-process__right {
    position: relative;
    z-index: 1;

    padding: 30px;

    overflow: hidden;
    min-height: 600px;

    flex: 1;
    display: flex;
    flex-direction: column;

    border-radius: 20px;
}

.agents-brain-process__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.agents-brain-process__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agents-brain-process__caption {
    color: #EDEDDD;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.agents-brain-process__steps {
    position: absolute;
    top: 50%;
    z-index: 1;

    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 20px;

    min-height: 130px;

    transform: translateY(-15%);
    animation: agents-steps-move 8s 1s ease-in-out infinite forwards;

    pointer-events: none;
}

.question-field {
    position: relative;
    z-index: 1;

    padding: 14px 28px;

    box-sizing: border-box;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: #FFFFF9;
    background: linear-gradient(180deg, #FFFFFF 0%, #9A63E5 100%);

    border-radius: 100px;

    transition: 1s;
}

.question-field::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: -1;

    width: calc(100% - 2px);
    height: calc(100% - 2px);

    background: linear-gradient(90deg, #37C7E5 0%, #B683FF 57.35%, #FFCBC1 97.6%);

    border-radius: 100px;
}

.question-field__text {
    flex: 1;

    color: #FFFFF9;

    font-weight: 500;
}

.agents-brain-process__step {
    margin-left: 40px;
    padding: 13px 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background-color: #FFFFFF80;
    backdrop-filter: blur(13px);
    opacity: 0;

    border-radius: 100px;
    border: 1px solid white;
}

.agents-brain-process__step:nth-child(2) {
    animation: agents-steps-fade-in-1 8s 1s ease-in-out infinite forwards;
}

.agents-brain-process__step:nth-child(3) {
    animation: agents-steps-fade-in-2 8s 1s ease-in-out infinite forwards;
}

.agents-brain-process__step:nth-child(4) {
    animation: agents-steps-fade-in-3 8s 1s ease-in-out infinite forwards;
}

.agents-brain-process__step:nth-child(5) {
    animation: agents-steps-fade-in-4 8s 1s ease-in-out infinite forwards;    
}

.agents-brain-process__step-text {
    color: #0A3742;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
}

@keyframes agents-steps-move {
    0% {
        transform: translateY(-15%);
    }
    7.5% {
        transform: translateY(-15%);
    }
    20% {
        transform: translateY(-15%);
    }
    27.5% {
        transform: translateY(calc(-15% - 30px));
    }
    40% {
        transform: translateY(calc(-15% - 30px));
    }
    47.5% {
        transform: translateY(calc(-15% - 60px));
    }
    60% {
        transform: translateY(calc(-15% - 60px));
    }
    67.5% {
        transform: translateY(calc(-15% - 90px));
    }
    80% {
        transform: translateY(calc(-15% - 90px));
    }
    87.5% {
        transform: translateY(-15%);
    }
    100% {
        transform: translateY(-15%);
    }
}

@keyframes agents-steps-fade-in-1 {
    0% {
        opacity: 0;
    }
    7.5% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    87.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes agents-steps-fade-in-2 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    27.5% {
        opacity: 1
    }
    80% {
        opacity: 1;
    }
    87.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes agents-steps-fade-in-3 {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    47.5% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    87.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes agents-steps-fade-in-4 {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    67.5% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    87.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.agents-risks {
    padding: 80px 0;
}

.agents-risks__title {
    margin-bottom: 56px;

    max-width: 50%;

    color: #EDEDDD;

    font-weight: 500;
}

.risks-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.risks-block__left {
    position: relative;
    z-index: 1;

    max-width: 565px
}

.risks-block__right {
    width: 682px;
}

.risks-block__images {
    position: relative;
    z-index: 1;

    width: 565px;
    height: 565px;
}

.risks-block__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    transition: .5s;
    pointer-events: none;
}

.risks-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.risks-block__image.open {
    opacity: 1;
}

.risks-block__cards {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 1;
}

.risks-block__card {
    position: absolute;

    width: 250px;

    opacity: 0;
    transition: .5s;

    pointer-events: none;
}

.agents-risks .risks-block__card:nth-child(odd) {
    transform: rotate(-3deg);
}

.agents-risks .risks-block__card:nth-child(even) {
    transform: rotate(3deg);
}

.risks-block__card.open {
    opacity: 1;
}

.risks-block__tabs {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tab {
    margin-bottom: 12px;
}

.tab__header {
    padding-top: 12px;

    display: flex;
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid #83B2B9;

    cursor: pointer;
}

.tab__header span {
    flex: 1;
    
    color: #EDEDDD;
}

.tab__header button {
    width: 64px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: none;

    border: none;

    transition: .5s;
}

.tab.open .tab__header button {
    opacity: 0;
}

.tab__content {
    display: none;
}

.tab__text {
    margin-top: 20px;

    color: #EDEDDD;
}

.tab-solution {
    margin-top: 40px;
    padding: 40px;

    background-color: #18404A;

    border-radius: 20px;
}

.tab-solution__title {
    margin-bottom: 12px;

    color: #70FF61;
}

.tab-solution__text {
    margin-bottom: 40px;

    color: #EDEDDD;
}

.tab-solution__metrics {
    display: flex;
    gap: 40px;
}

.tab-solution__metric-value {
    margin-bottom: 12px;
    
    color: #70FF61;
}

.tab-solution__metric-desc {
    color: #EDEDDD;
}

.risks-block__left .energy-sphere {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 1;

    width: 280px;
    height: 280px;
}

.risks-block__left .energy-sphere__frame {
    width: 280px;
    height: 280px;
}

.risks-block__left .energy-sphere__frame img {
    width: 100%;
    height: 100%;
}

/* !AI Agents */



/* Focus */

.focus-hero {
    padding-top: 160px;
    padding-bottom: 112px;

    background-color: #FBFBF4;
}

.focus-hero .od-opportunity__title {
    font-weight: 600;
}

.focus-hero__cards {
    margin-top: 56px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.focus-card {
    position: relative;
    z-index: 1;

    padding: 40px;

    overflow: hidden;
    min-height: 440px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    background-color: #0E0E0E;

    border-radius: 20px;
}

.focus-card:first-child {
    grid-column: 1 / -1;
}

.focus-card__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
}

.focus-card__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus-card__content {
    max-width: 330px;
}

.focus-card__title {
    margin-bottom: 20px;

    color: #FFFFFF;

    font-weight: 600;
}

.focus-card__text {
    color: white;
}

.focus-card__bottom {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.focus-card__link {
    width: fit-content;
}

.focus-card__metric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.focus-card__value {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #EDEDDD;
}

.focus-card__desc {
    color: #EDEDDD;

    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.focus-categories {
    padding: 80px 0;

    background-color: #EDEDDD;
}

.focus-categories__cards {
    margin-top: 56px;
}

.focus-categories__controls {
    display: none;
}

.focus-categories__cards:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.focus-categories__cards .swiper-slide {
    height: auto;
}

.category-card {
    padding: 40px;

    box-sizing: border-box;
    height: 100%;

    background-color: #0A3742;
    
    border-radius: 20px;
}

.category-card__caption {
    margin-bottom: 40px;
    color: #EDEDDD;
}

.category-card__image {
    margin-bottom: 40px;
}

.category-card__title {
    margin-bottom: 20px;

    color: #EDEDDD;

    font-weight: 600;
}

.category-card__text {
    color: #EDEDDD;
}

/* !Focus */



/* AI Chatbot */

.chatbots-hero {
    padding-top: 160px;
    padding-bottom: 112px;

    overflow: hidden;

    background-image: url('/wp-content/themes/valo_wp/assets/img/lavander-background.png'), linear-gradient(180deg, #FFD9D1 0%, #EDE3FF 100%);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 0 80px 80px;
}

.chatbots-hero .od-opportunity__text {
    max-width: 680px;
}

.page-template-template-chatbots .site-main {
    background-color: #0A3742;
}

.chatbots-opportunity .od-opportunity__title {
    max-width: 920px;
}

.chatbots-hero__content {
    position: relative;
    z-index: 1;

    margin: 56px auto 0;

    max-width: 425px;
}

.chatbots-hero .chatbot-hero__animation {
    position: relative;
    z-index: 1;
}

.chatbots-hero .chatbot-questions__backdrop {
    position: absolute;
    top: 50%;
    left: -50px;
    z-index: -1;

    width: 100%;
    height: 100%;

    background-color: #EDE3FF;

    border-radius: 100px;
    border: 1px solid white;
}

.chatbots-risks .risks-block__left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbots-risks .risks-block__cards {
    top: auto;
    left: auto;

    min-width: 470px;
    width: 100%;
    max-width: 500px;

    transition: .5s;
}

.chatbots-risks .risks-block__card:nth-child(odd),
.chatbots-risks .risks-block__card:nth-child(even) {
    width: auto;

    transform: rotate(0);
}

.chatbots-risks .risks-block__cards:has( .risks-block__card:nth-child(3n + 1).open) {
    transform: translate(5%, 0);
}

.chatbots-risks .risks-block__cards:has( .risks-block__card:nth-child(3n + 2).open) {
    transform: translate(30%, -200px);
}

.chatbots-risks .risks-block__cards:has( .risks-block__card:nth-child(3n + 3).open) {
    transform: translate(-15%, 60px);
}

.chatbots-risks .risks-block__card:nth-child(3n + 2) .question-field::before {
    background: linear-gradient(90deg, #B683FF 0%, #FF6E51 57.35%, #FFCBC1 97.6%);
}

.chatbots-risks .risks-block__card:nth-child(3n + 3) .question-field::before {
    background: linear-gradient(90deg, #5798A0 0%, #37C7E5 57%, #CAA1FF 98%);
}

.chatbots-benefits {
    padding: 56px 0;
}

.chatbots-benefits .warning-card {
    padding: 0 20px;
}

.chatbots-benefits .od-warning__container {
    max-width: 1160px;
}

.chatbots-hero__photos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.chatbots-hero__photo {
    z-index: 1;

    overflow: hidden;

    border-radius: 1000px;
    border: 2px solid white;

    transition: .6s;
}

.chatbots-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbots-hero__photos .chatbots-hero__photo:nth-child(1) {
    width: 70px;
    height: 70px;

    opacity: 0;
    transform: translate(-250px, -50px);
}

.chatbots-hero__photos .chatbots-hero__photo:nth-child(3) {
    width: 100px;
    height: 100px;

    opacity: 0;
    transform: translate(-350px, 25px);
}

.chatbots-hero__photos .chatbots-hero__photo:nth-child(5) {
    width: 70px;
    height: 70px;

    opacity: 0;
    transform: translate(-200px, 50px);
}

.chatbots-hero__photos .chatbots-hero__photo:nth-child(2) {
    width: 100px;
    height: 100px;

    opacity: 0;
    transform: translate(300px, 0px);
}

.chatbots-hero__photos .chatbots-hero__photo:nth-child(4) {
    width: 70px;
    height: 70px;

    opacity: 0;
    transform: translate(500px, 25px);
}

.chatbots-hero__photos .chatbots-hero__photo:nth-child(6) {
    width: 90px;
    height: 90px;

    opacity: 0;
    transform: translate(350px, 25px);
}

.chatbots-hero__photos.animated .chatbots-hero__photo:nth-child(1) {
    opacity: 1;
    transform: translate(-90px, 20px);
}

.chatbots-hero__photos.animated .chatbots-hero__photo:nth-child(3) {
    opacity: 1;
    transform: translate(-170px, 0px);
}

.chatbots-hero__photos.animated .chatbots-hero__photo:nth-child(5) {
    opacity: 1;
    transform: translate(-100px, 20px);
}

.chatbots-hero__photos.animated .chatbots-hero__photo:nth-child(2) {
    opacity: 1;
    transform: translate(200px, 90px);
}

.chatbots-hero__photos.animated .chatbots-hero__photo:nth-child(4) {
    opacity: 1;
    transform: translate(340px, 25px);
}

.chatbots-hero__photos.animated .chatbots-hero__photo:nth-child(6) {
    opacity: 1;
    transform: translate(260px, 0px);
}

/* !AI Chatbot */



/* About */

.page-template-template-about .site-main {
    background-color: #EDEDDD;
}

.about-hero {
    padding-top: 160px;
    padding-bottom: 112px;

    overflow: hidden;

    background-image: url('/wp-content/themes/valo_wp/assets/img/lavander-background.png'), linear-gradient(0deg, #FBFBF4, #FBFBF4);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 0 80px 80px;
}

.about-hero__wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.about-hero__left {
    flex: 1;
    max-width: 680px;
}

.about-hero__right {
    position: relative;
    z-index: 1;

    max-width: 600px;
    
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__shadow {
    position: absolute;
    z-index: -1;

    width: 600px;
    height: 600px;

    transform: scale(1.05);
}

.about-hero__left .od-opportunity__subtitle {
    margin-left: 0;
    margin-right: 0;
    
    text-align: left;
}

.about-hero__left .od-opportunity__title {
    margin-left: 0;
    margin-right: 0;

    font-weight: 600;
    text-align: left;
}

.about-hero__left .od-opportunity__text {
    margin-bottom: 56px;
    margin-left: 0;
    margin-right: 0;

    text-align: left;
}

.about-hero__link {
    width: fit-content;
}

.about-hero__gallery {
    width: 500px;
    height: 500px;
}

.about-commitment {
    padding-top: 80px;
    padding-bottom: 40px;
}

.about-commitment__cards {
    margin-top: 56px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.comm-card {
    position: relative;
    z-index: 1;

    padding: 40px;

    grid-column: span 2;
    display: flex;
    gap: 20px;
    justify-content: space-between;

    background-color: #FFFFF9;

    border-radius: 20px;
}

.comm-card:nth-child(n + 4) {
    grid-column: span 1;
}

.comm-card__left {
    max-width: 350px;

    flex: 1;
}

.comm-card__title {
    margin-bottom: 20px;

    font-weight: 600;
}

.comm-card__text {
    margin-bottom: 40px;
}

.comm-card__value {
    font-weight: 400;
}

.comm-card__right .energy-sphere {
    width: 180px;
    height: 180px;
}

.comm-card__graph {
    max-width: 250px;

    clip-path: inset(0 100% 0 0);
    animation: graph-animation infinite alternate 12s 1s ease-in-out;
    transform-origin: center bottom;
}

.about-why {
    padding-top: 40px;
    padding-bottom: 160px;
}

.about-why__cards {
    margin-top: 56px;

    min-height: 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 40px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;

    background-color: #0A3742;

    border-radius: 20px;
}

.why-card__caption {
    margin-bottom: 20px;

    color: #EDEDDD;
}

.why-card__title {
    color: #EDEDDD;
}

.why-card__link {
    padding: 9px 0;

    width: fit-content;

    align-self: flex-end;
}

.why-card__link span {
    position: relative;

    transition: .3s;
}

.why-card__link span::after {
    content: '';
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;

    width: 100%;
    height: 1px;

    background-color: #EDEDDD;
    opacity: 0;

    transition: .3s;
}

.why-card__link::before {
    display: none;
}

.why-card__link.valo-button_inverse-outlined:hover {
    color: #EDEDDD;
}

.why-card__link.valo-button_inverse-outlined:hover::after {
    filter: brightness(0) saturate(100%) invert(92%) sepia(15%) saturate(214%) hue-rotate(17deg) brightness(107%) contrast(86%);
}

.why-card__link.valo-button_inverse-outlined:hover span {
    transform: translateX(-5px);
}

.why-card__link.valo-button_inverse-outlined:hover span::after {
    opacity: 1;
}

.about-why__link {
    margin-top: 56px;
    margin-left: auto;
    margin-right: auto;

    width: fit-content;
}

.about-why__link.valo-button_primary-outlined:hover::before {
    background-color: #E4E4D1;
}

.about-valo {
    padding-top: 80px;
    padding-bottom: 112px;

    background-color: #FBFBF4;
}

.about-valo__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-valo__left {
    max-width: 565px;

    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.about-valo__tagline {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #37C7E5 0%, #B683FF 57.35%, #FFCBC1 97.6%);
}

.about-valo__right {
    max-width: 680px;

    flex: 1;
}

.about-valo__text p {
    margin: 0 0 20px 0;
}

.about-valo__text p:last-child {
    margin: 0;
}

.about-values {
    padding: 112px 0;
    
    background-image: url('/wp-content/themes/valo_wp/assets/img/about-values-background.png'), linear-gradient(180deg, #0A3742, #0A3742);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-values__title {
    color: #EDEDDD;
}

.about-values__cards {
    margin-top: 56px;
}

.about-values__cards .swiper-slide {
    height: auto;
}

.values-card {
    padding: 40px;

    box-sizing: border-box;
    height: 100%;

    background-color: #EDEDDD;
    
    border-radius: 20px;
}

.values-card__title {
    margin-bottom: 20px;

    font-weight: 500;
}

.about-values__controls {
    display: none;
}

.about-values__controls .valo-slider-controls__buttons button {
    background-color: #FFFFFF33;
}

.about-values__controls .valo-slider-controls__buttons button img  {
    filter: brightness(0) saturate(100%) invert(90%) sepia(6%) saturate(1166%) hue-rotate(331deg) brightness(116%) contrast(86%);
}

.about-values__controls .valo-slider-controls__buttons button:hover {
    background-color: #FFFFFF60;
}

.about-values__controls .valo-slider-controls__pagination {
    background-color: #FFFFFF33;
}

.about-values__controls .valo-slider-controls__pagination .swiper-pagination-bullet {
    background-color: #EDEDDD;
}

.about-values__controls .valo-slider-controls__pagination .swiper-pagination-bullet-active {
    background-color: #70FF61;
}

.about-team {
    padding-top: 80px;
    padding-bottom: 112px;

    background-color: #EDEDDD;
}

.about-team__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-team__left {
    max-width: 331px;

    flex: 1;
}

.about-team__right {
    flex: 1;
}

.about-team__leaders {
    margin-bottom: 56px;

    min-height: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-big-cards__title {
    grid-column: 1 / -1;
}

.team-big-card {
    padding: 20px;

    background-color: #FBFBF4;

    border-radius: 20px;
}

.team-big-card__photo {
    margin-bottom: 20px;

    width: 100%;
    height: 200px;
    overflow: hidden;

    border-radius: 20px;
}

.team-big-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-big-card__name {
    margin-bottom: 4px;

    font-weight: 500;
}

.team-big-card__position {
    margin-bottom: 20px;
}

.team-big-card__description {
    margin-bottom: 20px;
}

.team-big-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.team-small-cards {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.team-small-cards__title {
    margin-bottom: 20px;
}

.team-small-card {
    padding: 20px;
    
    width: 100%;

    display: flex;
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid #D6D4BF;
}

.team-small-card__photo {
    width: 80px;
    height: 80px;
    overflow: hidden;

    border-radius: 4px;
}

.team-small-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-small-card__content {
    flex: 1;
    align-self: flex-start;
}

.team-small-card__top {
    margin-bottom: 4px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.team-small-card__name {
    font-weight: 500;
}

.team-small-card__right .team-small-card__linkedin {
    display: none;
}

.about-team__leaders.team-small-cards {
    display: none;
    gap: 0;
}

.about-valo__tagline.about-valo__tagline_mob {
    display: none;
}

/* !About */



/* Cases studies */

.cases-hero {
    padding-top: 160px;
    padding-bottom: 112px;

    background-color: #FBFBF4;
}

.cases-benefits {
    padding-bottom: 80px;

    background-color: #FBFBF4;
}

.cases-benefits .benefits-block {
    padding: 80px;

    min-height: 0;
}

.cases-benefits .benefits-block__text {
    margin-bottom: 20px;

    color: #FFFFF9;

    font-weight: 600;
}

.cases-testemonials {
    padding-top: 0;

    background-color: #FBFBF4;
}

.cases-hero__cards-top {
    margin-bottom: 56px;
    
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.cases-hero__cards-top .focus-card:nth-child(1) {
    grid-column: span 7;
}

.cases-hero__cards-top .focus-card:nth-child(2) {
    grid-column: span 5;
}

.cases-card.cases-card_small {
    padding: 0;
    padding-bottom: 3px;

    box-sizing: border-box;
    min-height: 0;
    height: 100%;
    
    display: block;

    background: none;

    border-radius: 0;
}

.cases-card.cases-card_small .cases-card__logo {
    margin-bottom: 20px;

    width: 100%;
    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #EDEDDD;

    border-radius: 20px;
}

.cases-card__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.cases-card__title {
    margin-bottom: 12px;

    font-weight: 600;
}

.cases-card__link {
    padding: 4px 20px;
}

.cases-hero__controls {
    display: none;
}

/* !Cases studies */



/* Biography modal */

.bio-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    z-index: 16;

    padding: 40px 80px 80px;

    width: 65vw;
    height: 100%;

    background-color: #FBFBF4;

    border-radius: 20px 0 0 20px;

    transition: .3s ease-in-out;
}

.bio-modal.open {
    transform: translateX(-100%);
}

.bio-modal__close {
    margin-bottom: 12px;
    margin-left: auto;

    width: fit-content;

    background: none;

    border: none;
}

.bio-modal__close::after {
    display: none;
}

.bio-modal__wrapper {
    height: 100%;
}

.bio-modal__content {
    height: 100%;

    display: none;
    align-items: flex-start;
    gap: 40px;
}

.bio-modal__content.visible {
    display: flex;
}

.bio-modal__right {
    height: 100%;
    overflow-y: auto;
    
    flex: 1;
}

.bio-modal__photo {
    margin-bottom: 20px;

    overflow: hidden;
    
    border-radius: 20px;
    border: 2px solid #70FF61;
}

.bio-modal__name {
    margin-bottom: 12px;
}

.bio-modal__position {
    margin-bottom: 12px;

    font-weight: 600;
}

.bio-modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 15;

    width: 100%;
    height: 100%;

    display: block;

    opacity: 0;
    background-color: rgba(0, 0, 0, .1);
    
    transition: .3s ease-out;
    pointer-events: none;
}

.bio-modal-overlay.active {
    opacity: 1;

    pointer-events: all;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

.bio-modal__text p:last-child {
    margin-bottom: 0;
}

/* !Biography modal */



/* Case modal */

.case-modal .bio-modal__content {
    overflow-y: auto;
}

.case-modal .bio-modal__content.visible {
    display: block;
}

.case-modal .bio-modal__icon {
    margin-bottom: 56px;
}

.case-modal .bio-modal__title {
    margin-bottom: 20px;
}

.case-modal__post-content {
    margin-bottom: 56px;
}

.case-modal__content-title {
    margin-bottom: 20px;
}

.case-modal__content-text p {
    margin-top: 0;
    margin-bottom: 20px;
}

.case-modal__content-cards {
    padding: 40px 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-modal__content-card {
    padding: 20px;

    border-right: 1px solid #D6D4BF;
}

.case-modal__content-card:first-of-type {
    background-color: #70FF61;
    
    border-radius: 20px;
    border: none;
}

.case-modal__content-value {
    margin-bottom: 20px;
    
    color: #0A3742;

    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1px;
}

/* !Case modal */



/* Book intro */

.book-hero {
    padding-top: 160px;
    padding-bottom: 112px;

    background-color: #FBFBF4;
}

.book-hero__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.book-hero__left {
    max-width: 450px;

    flex: 1;
}

.book-hero__right {
    padding: 80px;
    
    max-width: 680px;
    
    flex: 1;

    background-color: #EDEDDD;

    border-radius: 20px;
}

.book-hero__subtitle {
    margin-bottom: 20px;

    font-weight: 500;
}

.book-hero__title {
    margin-bottom: 12px;
}

.book-hero__text {
    margin-bottom: 40px;
}

.book-hero__points {
    margin-bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.book-hero__point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.book-hero__point span {
    flex: 1;
}

.book-hero__quote img {
    margin-bottom: 20px;

    filter: brightness(0) saturate(100%) invert(15%) sepia(9%) saturate(6870%) hue-rotate(155deg) brightness(96%) contrast(92%);
}

.book-hero__quote-text {
    margin-bottom: 20px;
}

.book-hero__quote-author {
    margin-bottom: 4px;

    font-weight: 500;
}

.book-hero__quote-position {
    font-weight: 500;
}

.book-hero__form {
    margin: 0 auto;
    
    max-width: 450px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 20px;

    transition: .2s ease-in;
}

.book-hero__label {
    margin-bottom: 4px;

    color: #0A3742;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
}

.book-hero__input {
    display: flex;
    flex-direction: column;
}

.book-hero__input.book-hero__input_full {
    grid-column: span 2;
}

.book-hero__input input[type=text],
.book-hero__input input[type=email] {
    padding: 12px 20px;

    width: 100%;

    color: #0A3742;

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.2px;

    border-radius: 100px;
    border: 1px solid #D6D4BF;

    transition: .3s;
}

.book-hero__input input:focus,
.book-hero__input input:hover {
    border-color: #0A3742;
}

.book-hero__policy {
    grid-column: span 2;
}

.book-hero__policy-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.book-hero__policy label.book-hero__policy-input {
    width: 20px;
    height: 20px;

    background-color: white;

    border-radius: 4px;

    border: 1px solid #D6D4BF;

    transition: .3s;
    cursor: pointer;
}

.book-hero__policy label.book-hero__policy-input .check {
    width: 100%;
    height: 100%;

    opacity: 0;

    transition: .3s;
    cursor: pointer;
}

.book-hero__policy label.book-hero__policy-input:hover {
    border-color: #0A3742;
}

.book-hero__policy label.book-hero__policy-input:has(input:checked) {
    /* background-color: #0A3742; */
    border-color: #0A3742;
}

.book-hero__policy label.book-hero__policy-input:has(input:checked) .check {
    opacity: 1;
}

.book-hero__policy label input {
    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}

.book-hero__policy span {
    flex: 1;

    color: #0A3742;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
}

.book-hero__submit {
    width: fit-content;
    
    font-family: 'Neutiva';
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;

    border: none;
}

.book-hero__form label.error {
    margin-top: 4px;
    margin-left: 12px;

    color: #E86045;

    font-family: 'Neutiva';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.book-hero__result {
    display: none;
    grid-column: span 2;

    color: #58E24D;

    font-weight: 500;
}

.book-hero__result.book-hero__result_error {
    color: #E86045;
}

.book-hero__result.open {
    display: block;
}

.book-hero__form.sending {
    opacity: .75;
    pointer-events: none;
}

/* !Book intro */



/* Preloader */

.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F4E9;
    z-index: 16;
    flex-direction: column;
}

.preloader__text {
    margin-bottom: 40px;
}

.preloader__logo {
    margin-bottom: 20px;
}

.preloader__bar {
    position: relative;
    z-index: 1;

    padding: 3px 4px;

    width: 206px;
    height: 16px;

    background-color: #FFFFF9;

    border-radius: 20px;
}

.preloader__bar-line {
    content: '';
    position: relative;

    display: block;
    width: 100%;
    height: 100%;
    clip-path: inset(0 100% 0 0);

    background-color: #70FF61;

    border-radius: 20px;

    animation: progressbar-loading 5s ease-in-out forwards;
}

@keyframes progressbar-loading {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0);
    }
}

/* !Preloader */



/* Page 404 */

html:has(.error-404) {
    min-height: 60vh;
}

.error-404 {
    padding-top: 160px;
    padding-bottom: 80px;

    min-height: 60vh;
}

.error-404__title {
    margin: 0 auto 20px;

    width: fit-content;

    /* color: var(--Text-dark, #0A3742); */

    font-size: 120px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: center;

    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('/wp-content/themes/valo_wp/assets/img/heading-animation.png');
    background-color: #0A3742;
    background-repeat: no-repeat;
    background-position: -200%;

    animation: heading_animation 10s ease-in-out forwards infinite;
}

.error-404__text {
    text-align: center;
}

.error-404__link {
    margin: 56px auto 0;
    width: fit-content;
}

/* !Page 404 */