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

:root {
	--menu-bg: #FAFAF9AA;
	--main-purple: #5E02FE;
	--main-green: #63DFA6;
	--what-section-bg: #DAF2ED;
	--menu-item-bg: linear-gradient(to left, #0000 50%, #FAFAF9 50%);
	--menu-headin-bg: linear-gradient(to left, #0000 50%, var(--headin-purple) 50%);
	/* --menu-item-border: linear-gradient(to left, #0000 50%, var(--main-purple) 50%); */
	--headin-purple: #492049;
	--headin-blue: #A1DAE3;
	--headin-pink: #FEEDDE;
	--ideas-light-blue: #E1FFF8;
	--ideas-paragraph: #1531AA;
	--contact-light-blue: #CBF0E9;
	--main-gradient: linear-gradient(145deg, rgba(13,216,255,1) 15%, rgba(119,239,168,1) 100%);
	--purple-gradient: linear-gradient(-45deg, rgba(94,2,254,1) 10%, rgba(23,12,116,1) 100%);
	--ideas-gradient: linear-gradient(145deg, rgba(77,145,224,1) 0%, rgba(13,216,255,1) 49%, rgba(119,239,168,1) 100%);
	--galaxy-gradient: linear-gradient(145deg, rgba(13,205,209,1) 16%, rgba(5,42,179,1) 100%); 
	--title-gradient: linear-gradient(90deg, #63DFA6 10%, #4D91E0 48%, #5E02FE 100%);
	--work-section-bg: #afede1;
	--footer-link: linear-gradient(to left, #0000 50%, var(--main-purple) 50%);
}

html {
	scroll-behavior: smooth !important;
}

* {
	font-family: 'Montserrat';
}
 
body {
	margin: 0;
	padding: 0;
	overflow: overlay;
	overflow-x: hidden;
}

main {
	overflow: hidden;
}

.vc_row {
	margin: 0 !important;
}

.vc_column-inner {
	padding: 0 !important;
}
.wpb_content_element {
	margin: 0 !important;
}

.page-margin {
	margin: 0 2rem;
}

.text-purple {
	color: var(--main-purple);
}

.text-green {
	color: var(--main-green);
}

p {
	margin-block: 0;
}

/* ------ */
/* - GALLERY - */
/* ------ */


.image-slider {
	pointer-events: none;
}

.image-slider img {
	user-select: none;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.image-slider .swiper-wrapper {
	display: flex;
	align-items: center;
	transition-timing-function: linear !important;
}

/* ------ */
/* -HEADER- */
/* ------ */

.site-header {
	padding: 2.5vh 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

body:has(#wpadminbar) .site-header {
	top: 32px
}

.site-header > div > div:not(.menu-section) {
	opacity: 0;
	transition-property: opacity;
	transition-duration: .5s;
}

.logo {
	transition-delay: .5s;
}

.logo img {
	width: 7.5vw;
	height: auto;
	padding-top: .5vh;
}

.menu-section {
	font-size: .8vw;
	background-color: var(--menu-bg);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	padding: .5em .1em;
	border-radius: 1.5em;
	opacity: 0;
	z-index: 0;
	transition:
		opacity .5s linear 1s,
		padding .2s ease-out;
	overflow: hidden;
}

.menu-section.active {
	padding-bottom: 6.3em;
}

.menu-section.fixed {
	position: fixed;
	top: 2.5vh;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	z-index: 999;
}

body:has(#wpadminbar) .menu-section.fixed {
	top: calc(1.5vh + 32px);
}

.menu-section ul {
	padding: 0;
	margin: .4em;
	list-style: none;
}

.menu-section ul li {
	display: inline-block;
	cursor: pointer;
}


.menu-section ul li a {
	color: var(--main-purple);
	text-decoration: none;
	position: relative;
	padding: .5em 1em;
	border-radius: 1.2em;
	margin: 0 .5em;
	background: var(--menu-item-bg);
	background-size: 200% 100%;
	background-position: right;
	transition: background-position .4s ease-out, background-color .5s ease-out;
}

.menu-section ul li:not(.current-menu-item) a:hover{
	background-position: left;
}

.menu-section ul > li.current-menu-item > a {
	background: none;
	background-color: var(--main-purple);
}

.menu-section ul > li.current-menu-item > a {
	color: var(--main-green);
}

.menu-item-has-children {
	position: relative;
}

.menu-section .sub-menu {
	display: list-item;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding-top: 1.5em;
	transition: opacity .2s ease-out .2s;
	pointer-events: none;
}

.sub-menu.active {
	opacity: 1;
	pointer-events: all;
}

.menu-section .sub-menu li {
	margin-top: 1.5em;
}	

.menu-section .sub-menu li:first-of-type {
	margin-top: 0;
}

.site-icon {
	transition-delay: 1.5s;
}

.site-icon img {
	width: 2.1vw;
	padding-top: .5vh;
}



/* ------ */
/* -HOME- */
/* ------ */

.section {
	width: 100%;
	height: 100vh;
	position: relative;
}

.section > .wpb_column {
	height: 100%;
}

.top-section .main-title p {
	position: absolute;
	left: 5rem;
	bottom: 40%;
	font-size: 8vw;
	line-height: .9em;
	background: var(--title-gradient) ;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 1;
	transform: translateX(-2000px);
	opacity: 0;
}

.top-section .top-section-logo img {
	width: 27.5vw;
	height: auto;
	position: absolute;
	bottom: 55%;
	left: 5rem;
	transform: translateX(-2000px);
	opacity: 0;
}


.top-section .becker-img img {
	height: auto;
	width: 26vw;
	position: absolute;
	bottom: -2rem;
	left: calc(50% - 5vw);
	transform-origin: bottom left;
	transform: rotate(-90deg);
	opacity: 0;
}


.top-section .main-arrow-img img {
	height: auto;
	width: 26vw;
	position: absolute;
	bottom: -2rem;
	right: 0;
	transform: translateX(-100%);
	opacity: 0;
}

.main-gradient-bg {
	background: var(--main-gradient);
}
.home-desc {
	height: 100vh;
	display: flex;
	align-items: center;
}

.home-desc p {
	margin-top: 0;
	margin-left: 5rem;
	font-size: 3.75vw;
	width: 60%;
	z-index: 1;
}

.home-desc p .word {
	transform: rotateX(90deg);
}

.home-desc figure {
	height: 0;
	margin-block: 0 !important;
	margin-inline: 0 !important;
	display: block !important;
}

.home-desc-img img {
	width: 39.1vw;
	height: auto;
	position: absolute;
	bottom: 0;
	right: 2rem;
	z-index: 0;
	transform: translateX(100%);
}

.motto-fireworks img {
	width: 15vw;
	height: auto;
	position: absolute;
	top: 14vh;
	right: 21vw;
	transform: scale(0);
}

.motto-alecria img {
	width: 8vw;
	height: auto;
	position: absolute;
	bottom: 8.5vh;
	right: calc(2rem + 30vw);
	opacity: 0;
}

.motto-web img {
	width: 20vw;
	height: auto;
	position: absolute;
	bottom: -18.5vh;
	left: 47.5vw;
	transform: translateY(200px);
}

.purple-gradient-bg {
	background: var(--purple-gradient);
}

.main-video {
	width: 100vw;	
	height: 100vh;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-video .video-player {
	width: 100%;
	height: 100%;
	border-radius: 2.1vw;
	position: relative;
	transform: scale(0.9);
}

.video-player video {
	width: 100vw;
	height: 100vh;
	border-radius: inherit;
	object-fit: cover;
	object-position: center;
}

.video-player video.mobile {
	display: none;
}

.video-player .video-controls {
	position: absolute;
	top: 1.5vh;
	right: .8vw;
	background-color: var(--menu-bg);
	padding: .7vh .8vw;
	border-radius: 1.7vw;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: .8vw;
}

.video-controls .play-btn, .video-controls .mute-btn {
	width: 1.5vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--main-green);
	border-radius: 50%;
	padding: .1vw;
	box-sizing: border-box;
}

.video-controls .not-clickable {
	pointer-events: none;
}

.video-controls .play-btn{
	position: relative;
	overflow: hidden;
}

.play-btn .control-icon {
	transition: transform .5s ease-in;
}

.play-btn .control-icon.disabled {
	transform: translateY(-10rem);
}

.mute-btn {
	position: relative;
}

.mute-btn::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 0%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	background-color: var(--main-green);
	transition: height .5s ease-out;
}

.mute-btn.muted::after {	
	height: 100%;
}


.video-controls .play-btn .control-icon{
	position: absolute;
	width: 50%;
}

.video-controls .control-icon {
	width: 70%;
}

.who-section .wpb_column {
	display: flex;
	align-items: center;
}

.who-section-collage {
	transform: translateX(-100%);
}

.who-section-logo img {
	width: 8.3vw;
	height: auto;
	transform: rotateY(90deg);
}

.who-section-text {
	padding-right: 5vw !important;
}

.who-section-title p {
	font-size: 3.75vw;
	margin: 3vh 0 !important;
	line-height: 1em; 
}

.who-section-title p .char {
	opacity: 0;
	transform: translateY(100%)
}

.who-section-p {
	font-size: 1.1vw;
	transform: translateX(200%);
}

.light-blue-bg {
	background-color: var(--what-section-bg);
}

.what-section .wpb_column {
	display: flex;
	align-items: center;
	padding: 0 5vw;
}

.what-section-logo img{
	width: 8.3vw;
	height: auto;
	transform: translateX(-21vw);
}

.what-text p {
	font-size: 3.75vw;
	margin: 3vh 0 !important;
	line-height: 1em; 
}

.what-text p .word {
	transform: translateY(100%);
	visibility: hidden;
}

.sphere-column {
	padding: 0 !important;
	margin-top: 5vh;
}

.sphere-container {
	display: flex;
	justify-content: center;
}

.sphere {
	width: 22.6vw;
	aspect-ratio: 1;
	border-radius: 50%;
	perspective: 1000px;
	background-color: transparent;
}


.sphere-content {
	width: 100%;
	aspect-ratio: 1;
	position: relative;
	transition: transform .5s;
	transform-style: preserve-3d;
}

.sphere.show-back .sphere-content {
	transform: rotateX(180deg);
}

.sphere:hover .sphere-content {
	transform: rotateX(180deg);
}

.sphere .sphere-side {
	font-size: 1.1vw;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .7em;
	height: 100%;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 50%;
}

.sphere .back-sphere {
	transform: rotateX(180deg);
}

.sphere img {
	width: 16.4vw;
}

.sphere .link-btn {
	width: 1.5em;
}

.sphere .back-sphere p {
	width: 80%;
	line-height: 1.5em;
	text-align: center;
}

.sphere .back-sphere .area-motto {
	font-weight: 700;
}

.sphere.headin {
	transform: translateX(-200%) rotateZ(540deg);
}

.sphere.ideas {
	transform: translateX(200%) rotateZ(-540deg);
}

.sphere.headin .sphere-side {
	background-color: var(--headin-purple);
	color: #fff;
}

.sphere.ideas .sphere-side {
	background: var(--ideas-gradient);
	color: #fff;
}

.sphere .area-link {
	position: absolute;
	bottom: 10%;
}

/* ------ */
/* - HOW - */
/* ------ */

.how-header {
	padding: 0 10rem;
}

.how-header .wpb_column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.how-header .how-cover-logo img{
	width: 25vw;
	transform: translateX(-200%);
}

.how-header .how-header-motto p {
	font-size: 7vw;
	color: #FFF;
	margin-top: 2rem;
}

.how-header .how-header-motto p .char {
	opacity: 0;
	filter: blur(10px);
}

.directions-section {
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.directions-section > .vc_row {
	padding: 0 4rem;
}

.directions-intro.smartphone, .directions-points.smartphone {
	display: none !important;
}

.directions-intro {
	font-size: 2vw;
	color: var(--main-purple);
	padding-bottom: 2rem !important;
	transform: translateY(-100%);
	opacity: 0;
}

.directions-points {
	font-size: 1.2vw;
	padding-top: 2rem !important;
	transform: translateY(100%);
	opacity: 0;
}

.directions-points ul li {
	color: var(--main-purple);
}

.macro-direction p {
	border: 1px solid var(--main-purple);
	border-radius: 10px;
	color: var(--main-purple);
	font-size: 2.6vw;
	text-align: center;
	padding: .2em 0;
}

.macro-direction {
	opacity: 0;
}

.macro-direction.strategy {
	transform: translateX(-300%);
}

.macro-direction.implementation {
	transform: translateX(300%);
}


.wpb_wrapper:has(.direction-container) {
	display: flex;
	justify-content: center;
}


.direction-container {
	height: max-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transform: translateX(-100%);
}

.direction-container .icon-container {
	width: 6.2vw;
	aspect-ratio: 1;
	position: relative;
	margin-bottom: .5em;
}

.direction-container .how-icon {
	width: 100%;
}

.direction-container p {
	font-size: 1.5vw;
	color: var(--main-purple);
	text-align: center;
	z-index: 1;
}

.how-icon.diamond-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
	width: 26vw !important;
	height: auto;
}

.direction-description {
	transform: translateY(100%);
	opacity: 0;
}

.direction-description .wpb_wrapper{
	font-size: 1.1vw;
	display: flex;
	justify-content: center;
}

.direction-description p {
	padding-top: 1.5rem;
	width: 80%;
	text-align: center;
	border-top: 2px solid #888;
}

.work-preview-section {
	background: var(--purple-gradient);
	transform: translateX(-100%);
}

.work-preview {
	padding: 0 4rem;	
	position: relative;
}


.work-preview p {
	font-size: 4vw;
	position: relative;
	padding: .5em 0;
	color: #fff;
}

/* ------ */
/* - WORK - */
/* ------ */

body.page-id-186 {
	background: var(--purple-gradient);
	background-size: cover;
}

.work-header-section > .wpb_column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 12.5vw;
}

.work-logo img {
	width: 12vw;
	padding: 1.5rem 0;
	filter: blur(10px);
	opacity: 0;
}

.work-motto {
	font-size: 3.9vw;
	color: #FFF;
}

.work-motto p .char {
	transform: rotateY(90deg);
}

.work-partner-section.small {
	display: none;
}

.work-partner-section > .wpb_column {
	display: flex;
	align-items: center;
	padding: 0 15vw;
}

.work-partner-section .vc_row {
	margin: 10vh 0 !important;
	display: flex;
	align-items: center;
	opacity: 0;
}

.wpb_wrapper:has(> .partner-logo) {
	display: flex;
	justify-content: center;
}

.partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10vw;
}

.partner-logo img {
	max-height: 80px;
	width: auto;
	height: auto;
	transition: transform .2s ease-out;
}

.partner-logo img:hover {
	transform: scale(1.1);
}

.work-partner-section .vc_row:nth-child(odd){
	transform: rotateX(-90deg)
}

.work-partner-section .vc_row:nth-child(even) {
	transform: rotateX(90deg)
}

.work-gallery-section {
	height: auto !important;
}

.work-gallery-section .image-slider.right {
	transform: translateX(-100%);
}

.work-gallery-section .image-slider.left {
	transform: translateX(100%);
}


.work-gallery-section .image-slider.full .swiper-slide {
	width: 33.3vw !important;
	margin-bottom: -5px;
}

.work-gallery-section .image-slider.full .swiper-slide img {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
}

.work-motto-section {
	background-color: var(--work-section-bg);
	background-image: url(/wp-content/uploads/2024/06/work-motto-bg.png);
	background-position:  85% center;
	background-size: auto 110%;
	background-repeat: no-repeat;
}

.work-motto-section > .wpb_column {
	display: flex;
	align-items: center;
}

.work-motto-section .vc_column-inner, .work-motto-section .vc_column-inner > .wpb_wrapper, .motto-slider {
	height: 100% !important;
}

.alecria-wall {
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateX(-200%);
	height: 100%;
} 

.alecria-wall img {
	width: 30vw;
	aspect-ratio: 1;
	border-radius: 20px;
	object-fit: cover;
	object-position: center;
}

.work-citation {
	color: var(--main-purple);
	padding-right: 2.5vw;
	height: 30vw;
}

.work-citation .swiper-slide {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.motto-citation {
	font-size: 2.5vw;
	padding-right: 5vw;
}

.motto-citation.small-text {
	font-size: 1.7vw;
}

.motto-citation.animate-words .word {
	opacity: 0;
	transform: translateY(-100%);
}

.motto-speaker .location {
	font-size: .9vw;
}

/* ------ */
/* - CONTACT - */
/* ------ */


.page-id-226 {
	background-color: var(--work-section-bg);
}

.contact-photo-slider {
	transform: translateX(100%);
}

.page-id-226 .section .wpb_column {
	display: flex;
	align-items: center;
}

.contact-photo-slider .image-slider .swiper-slide {
	height: fit-content !important;
	width: 30vw !important;
	padding: 0 1.5vw;
}

.contact-photo-slider .image-slider {
	height: 50vh;
}

.contact-photo-slider .image-slider img {
	border-radius: 10px;
	transition: transform .5s;
}

.contact-photo-slider .image-slider img.mini {
	transform: scale(.9);
}

.contact-photo-slider .image-slider img.small {
	height: 30vh;
} 

.contact-photo-slider .image-slider img.big {
	height: 45vh;
} 

main .contact-form {
	padding: 0 7.5vw;
	width: auto;
}

.get-in-touch, .contact-arrow {
	transform: translateX(-200%);
	opacity: 0;
}

.contact-form-logo img {
	width: 10vw;
	height: auto;
	margin-bottom: 2em;
}

.contact-form-title p {
	font-size: 7vw;
	color: var(--main-purple);
	line-height: .9em;
}

.contact-arrow {
	padding-left: 3vw;
}

.contact-arrow img {
	padding-top: 7.5vh;
	width: 10.9vw;
	height: auto;
}

.contact-column {
	opacity: 0;
	transform: translateX(200%);
}

.contact-form-p {
	font-size: 1.2vw;
	padding-right: 2.5em;
	margin-bottom: 2.5em !important;
}

.contact-form-p a {
	text-decoration: none;
	color: var(--main-purple);
}

.form-input {
	font-size: 1.5vw;
	color: var(--main-purple);
	background-color: transparent;
	border-radius: .5em;
	border: 2px solid var(--main-purple);
	padding: .8em;
	outline: none;
	margin-bottom: .4em;
}

main .form-input {
	width: 30vw;
}

.form-input::placeholder {
	color: var(--main-purple);
}

.submit-btn {
	color: var(--main-green);
	background-color: var(--main-purple);
	padding: .8em;
	font-size: 1.5vw;
	border-radius: .5em;
	border: none;
	outline: none;
	cursor: pointer;
}

.contact-links {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-links .phone {
	display: flex;
	align-items: center;
	gap: 1em;
	font-size: 1vw;
}

.contact-links a {
	text-decoration: none;
	color: black;
}

.contact-link-icon {
	height: auto;
	width: 3.5vw;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-radius: 100px;
}


/* ------ */
/* - HEADIN - */
/* ------ */


.headin-top {
	width: auto;
	background-color: var(--headin-blue);
	background-image: url(/wp-content/uploads/2024/06/headin-bg.png);
	background-size: 100vw auto;
	background-repeat: repeat-y;
	background-position: -200vw 0;
}

.headin-top .wpb_column {
	display: flex;
	align-items: center;
}

.headin-logo {
	width: 25.3vw;
	height: auto;
	opacity: 0;
	filter: blur(10px);
	padding-left: 10vw;
	padding-bottom: 5em;
}

.headin-desc {
	padding-top: 1em;
	color: var(--headin-purple);
	font-size: 3.75vw;
	font-weight: 500;
	padding: 0 10vw;
}

.headin-desc p .char {
	opacity: 0;
	transform: translateX(-100%);
}

.headin-focus {
	background-color: var(--headin-blue);
	padding: 0 10vw;
	width: calc(100% - 20vw);
}

.headin-focus > .wpb_column {
	display: flex;
	align-items: center;
}

.headin-mini-logo {
	width: 11.2vw;
	opacity: 0;
}

.headin-consulting-services {
	font-size: 2.5vw;
	color: var(--headin-purple);
	padding-top: .5em;
}

.headin-consulting-services p .word {
	transform: rotateX(90deg);
}

.consulting-services {
	display: flex;
	justify-content: center;
	padding: 2.75em 0;
}

.complexity-col .wpb_wrapper, .design-col .wpb_wrapper{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 2.5em;
	transform: translateY(100%);
	opacity: 0;
}

.complexity-desc, .design-desc {
	color: var(--headin-purple);
	font-size: 2.1vw;
	width: 50%;
}

.complexity-icon img{
	width: 9.3vw;
	height: auto;
}

.design-icon img{
	width: 12.1vw;
	height: auto;
}

.headin-consulting-goal {
	font-size: 1.8vw;
	color: var(--headin-purple);
	padding-bottom: .5em;
	transform: translateX(-100%);
	opacity: 0;
}

.headin-goals {
	background-color: var(--headin-pink);
}

.headin-goals > .wpb_column {
	display: flex;
	align-items: center;
}

.vr-guy {
	width: 40vw;
	height: auto;
	position: absolute;
	left: 5vw;
	bottom: 0;
	z-index: 1;
	transform: translateY(100%);
	opacity: 0;
}

.conn-waves {
	width: 27vw;
	height: auto;
	position: absolute;
	left: 30vw;
	bottom: 6vh;
	z-index: 0;
	transform-origin: left center;
	transform: scale(0);
}

.headin-planets {
	position: absolute;
	width: 4.5vw;
	height: auto;
	top: 10vh;
	right: 5vw;
	transform: translateX(300%);
}

.headin-goals .headin-mini-logo {
	padding-top: 7.5vh;
	padding-left: 10vw
}

.headin-goal-row {
	padding: 1vh 10vw;
	margin-bottom: 1.5em !important;
}

.headin-goal > .vc_column-inner > .wpb_wrapper {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 4em;
	opacity: 0;
	transform: translateY(-100%);
}


.headin-goal-icon {
	width: 4.5vw;
	height: auto;
	flex-shrink: 0;
}

.headin-goal p {
	font-size: 1.3vw;
	width: 21.4vw;
	position: relative;
	color: var(--headin-purple);
}

.headin-goal:not(.without-after) p::after {
	content: '';
	position: absolute;
	bottom: -1em;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--headin-purple);
}


/* ------ */
/* - IDEAS - */
/* ------ */

.ideas-top {
	background-color: var(--ideas-light-blue);
	padding: 0 5vw;
	width: auto;
}

.ideas-top .wpb_column {
	display: flex;
	align-items: center;
}

.ideas-logo {
	width: 26.7vw;
	height: auto;
	padding-bottom: 3.5em;
	opacity: 0;
	filter: blur(0px);
}

.ideas-desc {
	font-size: 3.75vw;
	font-weight: 500;
	color: var(--ideas-paragraph);
	position: relative;
}

.ideas-desc p .word {
	transform: translateY(-100%);
	opacity: 0;
}

.ideas-becker {
	position: absolute;
	top: 50%;
	right: -5vw;
	transform: translateY(-50%) translateX(-300%);
	width: 45.8vw;
	height: auto;
}

.ideas-fireworks {
	position: absolute;
	top: 10vh;
	left: 50vw;
	width: 14.8vw;
	height: auto;
	transform: scale(0);
}

.ideas-worm {
	position: absolute;
	bottom: 10vh;
	right: -5vw;
	width: 20.5vw;
	height: auto;
	transform: translateX(100%);
}

.ideas-galaxy {
	padding-top: 10vh !important;
	background: var(--galaxy-gradient);
}

.ideas-galaxy .wpb_column {
	display: flex;
	align-items: center;
}


.ideas-galaxy .wpb_wrapper {
	display: flex;
	justify-content: center;
}

.ideas-cell-stream {
	width: 110%;
	height: 50vh;
	position: absolute;
	top: -10vh;
	background-image: url(/wp-content/uploads/2024/06/particle-flow.png);
	background-repeat: repeat-x;
	background-size: auto 100%;
	transition: background-position-x 1s linear;
	transform: translateX(-100%) scale(1);
}

.ideas-cell-stream.move-stream {
	animation-name: cell-stream;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}

.ideas-orbit {
	width: 75vw;
	aspect-ratio: 1440 / 968;
	position: relative;
	transform: scale(0);
	background-image: url(/wp-content/uploads/2024/06/ideas-orbit-2048x1037.png);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
}

.ideas-planet {
	position: absolute;
	opacity: 0;
	transform: translateX(100%);
}

.ideas-planet > .wpb_wrapper {
	position: relative;
}

.ideas-planet p {
	font-size: 1.8vw;
	color: var(--main-green);
	position: absolute;
	text-align: center;
}

.ideas-planet img.planet-move {
	animation-name: planet-move;
	animation-duration: 2.5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}

.ideas-planet img {
	transform: translateY(5px);
}

.ideas-planet.integrated-projects {
    top: 5%;
    left: 80%;
}

.ideas-planet.integrated-projects img {
	width: 11.1vw;
	height: auto;
	rotate: -60deg;
}


.ideas-planet.integrated-projects p {
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 1em;
}

.ideas-planet.healthcare-pr {
    left: 45%;
    top: 15%;
}

.ideas-planet.healthcare-pr img {
	width: 13.3vw;
	height: auto;
	rotate: -60deg;
}

.ideas-planet.healthcare-pr p {
	left: -70%;
	top: 0%;
}

.ideas-planet.market-access {
    left: 23%;
    top: 28%;
}

.ideas-planet.market-access img {
	width: 10.7vw;
	height: auto;
}

.ideas-planet.market-access p {
	left: -50%;
	top: -20%;
}

.ideas-planet.publishing {
    left: 13.5%;
    top: 50%;
}

.ideas-planet.publishing img {
	width: 5vw;
	height: auto;
}

.ideas-planet.publishing p{
	top: 0;
	left: -210%;
}

.ideas-planet.digital {
    top: 60%;
    left: 20%;
}

.ideas-planet.digital img {
	width: 15.4vw;
	height: auto;
	rotate: -328deg;
}

.ideas-planet.digital p {
	width: max-content;
	left: -10%;
}

.ideas-planet.communication {
    top: 55%;
    left: 56%;
}

.ideas-planet.communication img {
	width: 10vw;
	height: auto;
}

.ideas-planet.communication p {
	left: 120%;
	top: 50%;
}

.ideas-planet.training {
    top: 35%;
    left: 77%;
}

.ideas-planet.training img {
	width: 7.5vw;
	height: auto;
}

.ideas-planet.training p {
	left: 110%;
	top: 50%;
}

.ideas-goals {
	background-image: url(/wp-content/uploads/2024/06/ideas-goals-bg.png), var(--ideas-gradient);
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	padding-left: 5vw;
	width: auto;
}

.ideas-goals .wpb_column {
	display: flex;
	align-items: center;
}

.ideas-mini-logo {
	width: 12.5vw;
	height: auto;
	filter: blur(5px);
	opacity: 0;
}

.ideas-goals-desc {
	font-size: 3.75vw;
	color: var(--ideas-paragraph);
	position: relative;
	z-index: 1;
	padding-top: 1em;
}

.ideas-goals-desc p .word {
	transform: rotateX(-90deg);
}

.ideas-goals-grid > .wpb_column {
	display: flex;
	align-items: center;
	padding: 0 5vw;
}

.ideas-goals-grid .vc_row {
	display: flex;
	padding-bottom: 2.5em;
}

.ideas-goals-grid .vc_row > .wpb_column {
	padding-right: 3vw;
	transform: translateX(-100%);
	opacity: 0;
}

.ideas-goal-icon {
	width: 3.3vw;
	aspect-ratio: 1;
	padding-bottom: .5em;
	display: flex;
	align-items: center;
}

.ideas-goal-icon img {
	width: 100%;
	height: auto;
}

.ideas-goal-name, .ideas-goal-description {
	font-size: 1vw;
	padding: 1em 0;
}

.moving-text {
	background-color: white;
	width: 100vw;
	height: 25vh;
	overflow: auto;
	background-position-x: 0%;
	background-position-y: 50%;
	background-size: auto 65%;
	background-repeat: repeat-x;
	transition: background-position .8s linear;
	transform: translateX(100%);
}

.moving-text.ideas {
	background-image: url(/wp-content/uploads/2024/06/ideas-motto.png);
}

.moving-text.headin {
	background-image: url(/wp-content/uploads/2024/06/headin-motto.png);
}

/* ------ */
/* - PRIVACY POLICY - */
/* ------ */

.lang > a {
	width: 1.8em;
	aspect-ratio: 1;
	background-position: center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	border-radius: 50%;
	display: block;
}

.lang > a[data-lang="it"] {
	background-image: url(/wp-content/themes/alecria/assets/images/it.jpg);
}

.lang > a[data-lang="en"] {
	background-image: url(/wp-content/themes/alecria/assets/images/en.jpg);
}
 
.privacy-policy .site-main {
	padding: 5em 10vw;
	font-size: 1vw;
}

.legal strong, .legal a {
	color: var(--main-purple);
}

/* ***** NEWS ***** */

body.archive header .custom-logo-link > img,
body.single header .custom-logo-link > img {
	filter: brightness(0) invert(1);
}

.news-banner {
	min-height: 750px;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -2.5vh;
	position: relative;
}

.news-banner h1 {
	color: white;
	font-size: 4.5vw;
	transform: translateX(-100%);
	opacity: 0;
} 

.news-banner .news-info {
	transform: translateX(-100%);
	opacity: 0;
}

.news-banner h2 {
	color: white;
	font-size: 45px;
	margin: .5em 0;
	font-weight: 500;
}

.news-banner p {
	color: white;
	padding-bottom: 2em;
	font-weight: 500;
	font-size: 18px;
}

.news-archive-container {
	background: linear-gradient(to bottom, #FFFFFF 50%, #e1fff8 50%);
}

.news-archive {
	display: flex;
	align-items: top;
	flex-wrap: wrap;
	gap: 4em 10%;
}

.news-archive .news-element {
	width: 45%;
	opacity: 0;
	transform: translateX(-100%);
}

.news-element .news-thumbnail {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	border-radius: 25px;
}

.news-element > div {
	min-height: 300px;
}

.news-element .news-title {
	font-weight: 500;
	padding: 1em 0;
	margin: 0;
}

.news-element .news-excerpt {
	padding-bottom: 1em;
}

.news-element .read-link,
.back-to-news {
	color: #000;
	text-decoration: none;
	position: relative;
	padding-right: 1em;
	overflow: hidden;
	transition: color .2s;
	box-sizing: border-box;
	width: fit-content;
}

.news-element .read-link:hover,
.back-to-news:hover {
	color: var(--main-purple);
}

.news-element .read-link::before,  
.back-to-news::before {
	content: '';
	width: 0%;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .2s;
}

.news-element .read-link:hover::before,
.back-to-news:hover::before{
	width: 100%;
	background-color: var(--main-purple);
}

.news-element .read-link::after,
.back-to-news::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background-image: url(/wp-content/themes/alecria/assets/images/read-more.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 1em;
	width: 1em;
	filter: brightness(0);
	transition: all .2s;
}

.news-element .read-link:hover::after,
.back-to-news:hover::after {
	filter: none;
	right: -.3em;
}

.load-news {
	border: 1px solid var(--main-purple);
	color: var(--main-purple);
	padding: .7em 1.4em;
	background-color: transparent;
	cursor: pointer;
	font-size: 24px;
	border-radius: 10px;
	position: relative;
}

.load-news.pending {
	pointer-events: none;
	opacity: .3;
}

.loading {
	position: relative;
	width: 100%;
	height: 5em;
	display: none;
}

.loading.active {
	display: block;
}

.loading.active::before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: '';
	background-image: url(/wp-content/themes/alecria/assets/images/loading.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 3em;
	height: 3em;
	animation: loading-spin 1s linear infinite forwards;
}

.news-content {
	opacity: 0;
	transform: translateX(-100%);
}

/* ------ */
/* - FOOTER - */
/* ------ */

.site-footer {
	padding: 2em 7.5vw;
	border-top: 1px solid var(--main-green);
	background-color: #fff;
	box-sizing: border-box;
}

.site-footer .contact-form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 3.5em 0;
	gap: 7.5vw; 
}

.site-footer .contact-form-icon {
	display: flex;
	align-items: center;
	gap: 7.5vw;
}

.site-footer .contact-form-icon p {
	font-weight: 600;
	font-size: 3.5vw;
	color: var(--main-purple);
}

.site-footer .contact-form-icon img {
	width: 15vw;
}

.site-footer .contact-form .form-input {
	width: 35vw;
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 1em
}

.footer-logo {
	font-size: 1.5vw;
	display: flex;
	align-items: center;
	gap: .5em;
}

.footer-logo img {
	width: 1.3em;
	height: auto;
}

.footer-logo p {
	background: var(--title-gradient) ;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-info > p {
	font-size: .7vw;
	color: #888;
	line-height: 1.5em;
}

.site-footer .footer-links {
	font-size: 1vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	font-size: 1vw;
	gap: 1.5em;
}

.site-footer .footer-links a {
	position: relative;
	color: black;
	text-decoration: none;
	text-align: right;
	transition: color .4s;
}

.site-footer .footer-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--footer-link);
	background-size: 200%;
	background-position: 100%;
	background-repeat: no-repeat;
	transition: background-position .4s ease-out;
}



.site-footer .footer-links a:hover {
	color: var(--main-purple);
}

.site-footer .footer-links a:hover::after {
	background-position: 0%;
}

.error404 .site-header > div > div,
body:has(.fixed-header) .site-header > div > div
{
	opacity: 1 !important;
}

.site-error-page {
	height: calc(100vh - 200px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.site-error-page h1 {
	color: var(--main-purple);
}




@keyframes planet-move {
	0% { 
		transform: rotate(0deg)  
			  translateY(5px) rotate(0deg); 
	} 

	100% { 
		transform: rotate(360deg)  
			  translateY(5px) rotate(-360deg); 
	} 
}

@keyframes cell-stream {
	0% {
		transform: skew(0deg) translateY(-50%);
	}
	50% {
		transform: skew(10deg) translateY(-50%);
	}
	100% {
		transform: skew(0deg) translateY(-50%);
	}
}

@media screen and (max-width: 1400px) {

	/* ------ */
	/* -HEADER- */
	/* ------ */

	.menu-section {
		font-size: 1vw;
	}
}

@media screen and (max-width: 1200px) {
	.video-player .video-controls {
		top: 2vh;
		padding: 1vh 1vw;
		gap: .8vw;
	}

	.video-controls .play-btn, .video-controls .mute-btn {
		width: 2.2vw;
	}
}

@media screen and (max-width: 1024px) {

	/* ------ */
	/* -HEADER- */
	/* ------ */

	.logo, .menu-section, .site-icon {
		transition-delay: 0 5vw;
	}
	
	.menu-section {
		font-size: 1.5vw;
		position: fixed;
		top: unset;
		bottom: 1.5vh;
		left: 50%;
		transform: translateX(-50%);
		width: max-content;
	}

	.menu-section.fixed {
		z-index: 999;
		top: auto;
	}

	body:has(#wpadminbar) .menu-section.fixed {
		top: unset;
	}

	.menu-section.active {
		padding-bottom: .5em;
		padding-top: 6.3em;
	}
	.menu-section .sub-menu {
		top: unset;
		padding-top: 0;
		bottom: 100%;
		padding-bottom: 1.8em;
	}
	.menu-section .sub-menu li {
		margin-top: 0;
	}	
	.menu-section .sub-menu li:first-of-type {
		margin-top: 0;
		margin-bottom: 1.5em;
	}

	/* ------ */
	/* - HOME - */
	/* ------ */

	.who-section-p {
		font-size: 1.5vw;
		transform: translateX(200%);
	}
	.sphere .sphere-side {
		font-size: 1.2vw;
	}

	/* ------ */
	/* - HEADIN' - */
	/* ------ */

	.headin-goal-row {
		padding: 0 5vw;
	}
	.headin-goal p {
		width: 30vw;
		font-size: 1.8vw;
	}
	

	/* ------ */
	/* - IDEAS - */
	/* ------ */

	.ideas-goal-icon {
		width: 5.5vw;
	}

	.ideas-goal-name, .ideas-goal-description {
		font-size: 1.5vw;
		padding: .7em 0;
	}

	.direction-description p {
		font-size: 1.5vw;
	}

	/* ------ */
	/* -WORK- */
	/* ------ */

	.partner-logo {
		width: 12.5vw;
	}

	.motto-speaker .name {
		font-size: 1.8vw;
	}

	.motto-speaker .location {
		font-size: 1.5vw;
	}

	/* ------ */
	/* -CONTACT- */
	/* ------ */

	.contact-form-p {
		font-size: 1.7vw;
		padding-right: 2.5em;
		margin-bottom: 1.5em !important;
	}

	.contact-links .phone {
		font-size: 1.5vw;
	}

	.contact-link-icon {
		width: 3.5vw;
	}

	/* ------ */
	/* -MOVING TEXT- */
	/* ------ */

	.moving-text {
		background-position-y: 0%;
		margin-top: 1.5em !important;
	}

	.privacy-policy .site-main {
		font-size: 1.5vw;
	}


	.site-footer {
		padding-bottom: 10vh;
	}


	.footer-logo {
		font-size: 2vw;
	}

	.footer-info > p {
		font-size: 1vw;
	}
	
	.site-footer .footer-links {
		font-size: 1.5vw;
	}

}

@media screen and (max-width: 992px) {
	.top-section .top-section-logo img {
		bottom: 50%;
	}

	.video-player .video-controls {
		top: 2.5vh;
		padding: 1vh 1.5vw;
		gap: 1.5vw;
		border-radius: 10vh;
	}

	.video-controls .play-btn, .video-controls .mute-btn {
		width: 2.7vw;
	}

	.news-banner h1 {
		font-size: 6.5vw;
	}

	.site-footer {
		padding-left: 5vw;
		padding-right: 5vw;
	}
}


@media screen and (max-width: 768px) {
	/* ------ */
	/* -HEADER- */
	/* ------ */
	.logo img {
		width: 12.5vw;
	}
	.site-icon img {
		width: 4.5vw;
	}

	.menu-section {
		font-size: 2vw;
	}

	/* ------ */
	/* -HOME- */
	/* ------ */

	.home-desc p {
		margin-left: 0;
		padding: 0 7.5vw;
		font-size: 5.75vw;
		width: calc(100% - 15vw);
	}

	.motto-fireworks img {
		width: 25vw;
	}

	.home-desc-img img {
		width: 50vw;
		right: -6rem;
	}
	.motto-alecria img {
		width: 10vw;
		right: calc(2rem + 20vw);
	}

	.motto-web img {
		width: 35vw;
		bottom: -12.5vh;
		left: 12.5vw;
	}

	.video-player video.laptop {
		display: none;
	}

	.video-player video.mobile {
		display: block;
	}

	.video-player .video-controls {
		top: 2.5vh;
		right: 4vw;
		padding: 1vh 1.5vw;
		border-radius: 200px;
		gap: 2.7vw;
	}

	.video-controls .play-btn, .video-controls .mute-btn {
		width: 4vw;
	}	

	.who-section > .wpb_column {
		display: flex;
		align-items: start;
		height: auto;
		margin-top: 10vh;
	}

	.who-section > .wpb_column:has(.who-section-collage) {
		width: 30% !important;
	}

	.who-section-text {
		width: 70% !important;
	}

	.who-section-logo img {
		width: 12.5vw;
	}

	.who-section-title p {
		font-size: 4.5vw;
	}

	.who-section-p {
		font-size: 2.5vw;
		transform: translateX(200%);
	}

	.what-text p {
		font-size: 5vw;
	}
	.what-section-logo img {
		width: 20vw;
		transform: translateX(-200%);
	}
	.sphere {
		width: 40vw;
	}

	.sphere img {
		width: 60%;
	}

	.sphere .sphere-side {
		font-size: 2vw;
	}

	.sphere-column {
		margin-top: 1vh;
	}

	/* ------ */
	/* -HEADIN- */
	/* ------ */

	.headin-logo {
		width: 40vw;
		padding-bottom: 1.5em;
	}

	.headin-desc {
		font-size: 5vw;
	}

	.headin-mini-logo {
		width: 25vw;
	}

	.headin-consulting-services {
		font-size: 4vw;
	}

	.consulting-services {
		padding: 1em 0;
		flex-direction: column;
		gap: 1.5em;
	}

	.complexity-col, .design-col {
		width: 100% !important;
		flex-shrink: 0;
	}

	.complexity-icon img, .design-icon img {
		width: 17.5vw;
	}

	.complexity-desc, .design-desc {
		font-size: 3.5vw;
		width: 100%;
	}

	
	.headin-consulting-goal {
		font-size: 2.5vw;	
	}

	.headin-goals > .wpb_column {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.vr-guy {
		z-index: -1;
		width: 50vw;
		left: -10vw;
	}

	.conn-waves {
		z-index: -2;
		width: 32vw;
		left: 21vw;
	}

	.headin-goals > .wpb_column {
		align-items: start;
	}

	.headin-goal-row {
		display: flex;
		justify-content: end;
	}

	.headin-mini-logo {
		padding-top: 10vh;
		padding-bottom: 2em;
	}

	.headin-goal {
		width: 80% !important;
		flex-shrink: 0;
	}

	.headin-planets {
		width: 5.5vw;
	}

	.headin-goal > .vc_column-inner > .wpb_wrapper {
		gap: 1em
	}

	.headin-goal-icon {
		width: 10vw;
	}

	.headin-goal .wpb_text_column {
		width: calc(100% - 15vw - 1em);
	}

	.headin-goal p {
		font-size: 2.5vw;
		width: 100%;
	}

	.headin-goal:not(.without-after) p::after {
		height: 2px;
	}
	
	/* ------ */
	/* -HEADIN- */
	/* ------ */

	.ideas-logo {
		padding-bottom: 1.5em;
	}

	.ideas-desc {
		font-size: 5vw;
	}

	.ideas-fireworks {
		width: 25vw;
	}

	.ideas-worm {
		bottom: 20vh;
	}

	.ideas-galaxy {
		padding-top: 0 !important;
	}

	.ideas-cell-stream {
		height: 30vh;
		top: 0;
		transform: translate(-100%, -50%); 
	}

	.ideas-planet p {
		font-size: 2.5vw;
	}

	.ideas-planet.healthcare-pr p {
		left: -100%;
		top: -40%;
	}

	.ideas-planet.market-access p {
		left: -100%;
		top: -50%;
	}

	.ideas-planet.publishing p {
		top: 0;
		left: -350%;
	}

	.ideas-planet.training p {
		left: 150%;
		top: 65%;
	}
	.ideas-planet.integrated-projects p {
		left: 60%;
		top: -55%;
		transform: translateY(0);
		padding-left: 0;
	}

	.ideas-mini-logo {
		width: 30vw;
	}

	.ideas-goals-desc {
		font-size: 5vw;
	}

	.ideas-goals-grid .vc_row > .wpb_column {
		padding-right: 2.5vw;
	}

	.ideas-goal-icon {
		width: 8.3vw;
	}

	.ideas-goal-name, .ideas-goal-description {
		font-size: 2.5vw;
		padding: .5em 0;
	}

	/* ------ */
	/* -HOW- */
	/* ------ */

	.how-header {
		padding: 0 5vw;
	}

	.how-header .how-cover-logo img {
		width: 35vw;
	}

	.how-header .how-header-motto p {
		font-size: 12vw;
	}

	.directions-section {
		align-items: center;
		padding: 0 !important;
		flex-direction: row;
	}

	.directions-section > .vc_row {
		padding: 0 !important;
		width: calc(100% - 5vw);
		margin-bottom: 2em !important;
		display: flex;
		flex-direction: column;
		gap: 1.5vh;
	}

	.directions-intro, .directions-points {
		display: none !important;
	}

	.directions-intro.smartphone, .directions-points.smartphone {
		display: block !important;
		padding: 5vw;
	}

	.directions-intro.smartphone {
		font-size: 3vw;
		padding-bottom: 0 !important;
	}

	.directions-points.smartphone {
		font-size: 2vw;
		padding-top: 0 !important;
	}

	.macro-categories {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
		width: 20vw !important;
		
	}
	.macro-direction.strategy {
		transform: translateX(300%);
	}
	
	.macro-direction.implementation {
		transform: translateX(-300%);
	}

	.macro-categories > .wpb_column{
		transform: rotate(-90deg);
	}

	.macro-direction {
		width: max-content;
	}

	.empty-category {
		width: 20% !important;
	}

	.macro-direction p {
		font-size: 3.5vw;
		border-radius: 100px;
		padding: .1em 1em;
	}

	.wpb_wrapper:has(.direction-container) {
		flex-wrap: wrap ;
		gap: 2.5vh;
	}

	.direction-container {
		height: 12.5vh;
	}

	.direction-container .icon-container {
		/* height: 7.5vh; */
		height: 5vh;
		margin-bottom: 0;
		width: auto;
	}

	.how-icon.diamond-icon {
		/* width: 50vw !important; */
		width: 35vw !important;
	}

	.direction-container p {
		/* font-size: 3.5vw; */
		font-size: 2.5vw;
	}

	.direction-descriptions {
		width: 30vw;
		justify-content: space-between;
		display: flex;
		flex-direction: column;
	}

	.direction-desc {
		display: flex;
		align-items: center;
		height: 12.5vh;
	}

	.strategy-description {
		height: 25vh;
	}

	.direction-description p {
		/* font-size: 3vw; */
		font-size: 2vw;
		padding-top: 0;
		padding-left: .5em;
		width: 100%;
		text-align: start;
		border-left: 2px solid #888;
		border-top:none;
		padding-right: 2.5vw;
	}

	.empty-description {
		height: 12.5vh;
	}

	.work-preview {
		padding: 0 5vw;
	}

	.work-preview p {
		font-size: 5.5vw;
	}

	/* ------ */
	/* -WORK- */
	/* ------ */

	.work-header-section > .wpb_column {
		padding: 0px 5vw;
	}

	.work-logo img {
		width: 25vw;
	}

	.work-motto {
		font-size: 6vw;
	}

	.work-partner-section > .wpb_column {
		padding: 0 5vw;
	}

	.work-motto-section {
		display: flex;
		padding: 0 5vw;
		width: calc(100% - 10vw);
	}

	.work-motto-section .vc_col-sm-2\/5 {
		width: 25%;
	}

	.work-motto-section .vc_col-sm-3\/5 {
		width: 70%;
		margin-left: 5%;
	}

	.motto-citation {
		font-size: 3.5vw;
		padding-bottom: .5em;
	}

	.motto-citation.small-text {
		font-size: 2.5vw;
	}

	.motto-speaker .name {
		font-size: 3vw;
		padding-top: 1em;
	}

	.motto-speaker .location {
		font-size: 2.5vw;
	}

	.contact-form > .wpb_column {
		height: auto;
	}

	.contact-form-logo img {
		width: 20vw;
		margin-bottom: 1em;
	}

	.contact-form-title p {
		font-size: 10vw;
	}

	.contact-arrow img {
		padding-top: 0;
		width: 23vw;
	}

	.contact-form-p {
		font-size: 2.5vw;
		padding: 0;
		margin-bottom: .5em !important;
	}

	.contact-column {
		width: 100%;
		padding-top: 2em;
	}

	.form-input {
		font-size: 2.5vw;
		width: 100% !important;
	}

	.submit-btn {
		font-size: 2.5vw;
	}

	.contact-links {
		margin-top: 2em;
	}

	.contact-link-icon {
		width: 5vw;
	}

	.contact-links .phone {
		font-size: 2vw;
	}

	.privacy-policy .site-main {
		padding: 7.5em 5vw;
		font-size: 1.5vw;
	}

	.site-footer {
		padding-left: 2.5vw;
		padding-right: 2.5vw;
	}

	.footer-logo {
		font-size: 3vw;
	}

	.footer-info > p {
		font-size: 1.4vw;
	}

	.site-footer .footer-links {
		font-size: 1.75vw;
	}


	.contact-photo-slider .image-slider .swiper-slide {
		width: 45vw !important;
		padding: 0 2.5vw;
	}

	.contact-photo-slider .image-slider img.small {
		height: 20vh;
	}
	
	.contact-photo-slider .image-slider img.big {
		height: 30vh;
	}

	.news-banner {
		min-height: 450px;
	}

	.news-banner h2 {
		font-size: 35px;
	}

	.news-banner p {
		padding-bottom: 1em;
	}

	.news-archive {
		gap: 2.5em;
	}

	.news-archive .news-element {
		width: 100%;
	}
}

@media screen and (max-width: 576px) {

	/* ------ */
	/* -HEADER- */
	/* ------ */

	.page-margin {
		margin: 0 2.5vw;
	}

	.logo img {
		width: 20vw;
	}

	.menu-section {
		padding: .5em 1em;
		border-radius: 2em;
		font-size: 2.5vw;
	}

	.menu-section ul li a {
		padding: .5em .5em;
		margin: 0 .25em;
		border-radius: 100px;
	}

	.menu-section ul li.current-menu-item > a {
		font-weight: 600;
	}

	.site-icon img {
		width: 7.5vw;
	}

	/* ------ */
	/* -HOME- */
	/* ------ */


	.top-section .main-title p {
		font-size: 12.5vw;
		left: 2.5vw;
	}

	.top-section .top-section-logo img {
		left: 2.5vw;
		width: 40vw;
		bottom: 57.5%;
	}

	.top-section .becker-img img {
		width: 40vw;
		bottom: -1rem;
		left: calc(20% - 17.5vw);
	}

	.top-section .main-arrow-img img {
		width: 40vw;
		position: absolute;
		right: unset;
		left: 45%;
		bottom: -1rem;
	}
	
	.home-desc p {
		font-size: 7.5vw;
		width: auto;
		padding: 0 2.5vw;
		margin-left: 0;
		padding-bottom: 2em;
	}

	.motto-fireworks img {
		width: 30vw;
		top: 7vh;
		right: 7vw;
	}

	.home-desc-img img {
		width: 60vw;
		right: -5rem;
	}

	.motto-alecria img {
		width: 12vw;
		bottom: 3.5vh;
		right: calc(2rem + 19vw);
	}

	.motto-web img {
		width: 40vw;
		left: 2.5vw;
		bottom: -20vw;
	}

	.video-player .video-controls {
		top: 2vh;
		right: 3vw;
		padding: 1vh 2.5vw;
	}

	.video-controls .play-btn, .video-controls .mute-btn {
		width: 6vw;
	}

	.who-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.who-section > .wpb_column {
		padding: 0 2.5vw;
		padding-top: 2.5vh;
		height: auto;
		margin-top: 0;
	}

	.who-section-collage {
		width: 30vw;
		height: auto;
		transform: translateX(-150%);
	}

	.who-section-text {
		width: 100% !important;
		height: auto;
	}

	.who-section-logo img {
		width: 20vw;
	}

	.who-section-title p {
		font-size: 5.5vw;
		margin: 1.5vh 0 !important;
	}
	
	.who-section-p {
		font-size: 3vw;
		line-height: 1.2em;
	}

	.what-section-logo img {
		width: 20vw;
		transform: translateX(-200%);
	}
	.what-text p {
		font-size: 5.5vw;
		margin: 1.5vh 0 !important;
	}

	.sphere {
		width: 45vw;
	}

	.sphere .sphere-side {
		font-size: 2.2vw;
	}

	/* ------ */
	/* -IDEAS- */
	/* ------ */

	.ideas-logo {
		width: 50vw;
		padding-bottom: 1em;
	}

	.ideas-desc {
		font-size: 7.5vw;
	}

	.ideas-becker {
		top: 75%;
		width: 60vw;
	}

	.ideas-worm {
		bottom: 8vh;
		width: 35vw;
	}

	.ideas-fireworks {
		width: 30vw;
	}


	.ideas-galaxy .wpb_wrapper {
		justify-content: start;
	}

	.ideas-orbit {
		background-image: none;
		width: auto;
		padding: 0 5vw;
	}

	/* .ideas-planet img.planet-move {
		animation: none;
	} */

	.ideas-planet, .ideas-planet p {
		position: static;
	}

	.ideas-planet {
		display: flex;
		align-items: center;
		gap: 7.5vw;
		margin-bottom: 2vh;
	}

	.ideas-planet img {
		width: 15vw !important;
	}

	.ideas-planet p {
		font-size: 4vw;
		text-align: start;
	}

	.ideas-planet.integrated-projects p{
		transform: unset;
		padding-left: 0;
	}

	.ideas-mini-logo {
		width: 50vw;
	}

	.ideas-goals-desc {
		font-size: 7.5vw;
	}

	.ideas-goals-grid {
		height: auto;
		min-height: 100vh;
		padding: 5vh 0;
	}

	.ideas-goals-grid .vc_row {
		padding-bottom: 0;
		flex-wrap: wrap;
	}

	.ideas-goals-grid .vc_row > .wpb_column {
		padding-right: 0;
		padding-bottom: 1em;
	}

	.ideas-goals-grid .top-row > .wpb_column:nth-child(odd) {
		transform: translateX(100%);
	}

	.ideas-goals-grid .top-row > .wpb_column:nth-child(odd) .wpb_wrapper {
		display: flex;
		flex-direction: column;
		justify-content: start;
	}

	.ideas-goals-grid .top-row > .wpb_column:nth-child(even) .wpb_wrapper {
		display: flex;
		flex-direction: column;
		align-items: end;
		text-align: right;
	}

	.ideas-goals-grid .bottom-row > .wpb_column:nth-child(even) .wpb_wrapper {
		display: flex;
		flex-direction: column;
		justify-content: start;
	}

	.ideas-goals-grid .bottom-row > .wpb_column:nth-child(odd) .wpb_wrapper {
		display: flex;
		flex-direction: column;
		align-items: end;
		text-align: right;
	}

	.ideas-goals-grid > .wpb_column {
		align-items: start;
		padding: 0 2.5vw;
	}

	.ideas-goal-icon {
		width: 12.5vw;
	}

	.ideas-goal-name, .ideas-goal-description {
		font-size: 3.5vw;
		padding: .25em 0;
	}

	/* ------ */
	/* -HEADIN'- */
	/* ------ */

	.headin-logo {
		width: 50vw;
		padding-left: 5vw;
		padding-bottom: 1em;
	}

	.headin-desc {
		font-size: 7.5vw;
		padding: 0 5vw;
	}

	.headin-focus {
		padding: 0 5vw;
		width: calc(100% - 10vw);
	}

	.headin-goals .headin-mini-logo {
		padding-top: 0;
		padding-bottom: 1em;
		padding-left: 7.5vw;
		width: 25vw;
	}

	.headin-consulting-services {
		font-size: 5vw;
	}

	.consulting-services {
		flex-wrap: wrap;
		padding: 1em 0;
	}

	.consulting-services .headin-mini-logo {
		padding-bottom: 1.5em;
	}

	.complexity-col .wpb_wrapper, .design-col .wpb_wrapper {
		gap: 1.5em;
	}

	.complexity-col img, .design-icon img {
		width: 20vw;
	}

	.complexity-desc, .design-desc {
		font-size: 4.2vw;
		width: 75%;
	}


	.headin-consulting-goal {
		font-size: 4vw;
		padding-top: 0em;
	}

	.vr-guy {
		width: 75vw;
		left: -30vw;
		bottom: 0;
	}

	.conn-waves {
		width: 50vw;
		left: 10vw;
		z-index: -2;
	}

	.headin-mini-logo {
		padding-top: 2.5vh;
	}
	.headin-planets {
		width: 10.5vw;
	}

	.headin-goal {
		width: 100% !important;
	}

	.headin-goal span {
		color: var(--headin-blue);
	}

	.headin-goal-row {
		margin-top: .5em !important;
		padding: 0 7.5vw;
	}

	.headin-goal > .vc_column-inner > .wpb_wrapper {
		gap: 1.5em
	}

	.headin-goal-icon {
		width: 12.5vw;
	}

	.headin-goal .wpb_text_column {
		width: calc(100% - 15vw - 1em);
	}

	.headin-goal p {
		font-size: 3.5vw;
		width: 100%;
	}

	/* ------ */
	/* - HOW - */
	/* ------ */

	.how-header {
		padding: 0 2.5vw;
	}

	.how-header .how-cover-logo img {
		width: 55vw;
	}

	.how-header .how-header-motto p {
		font-size: 14vw;
	}

	.macro-direction p {
		font-size: 5vw;
	}

	.direction-container .icon-container {
		height: 7.5vh;
	}

	.how-icon.diamond-icon {
		width: 50vw !important;
	}

	.direction-container p {
		font-size: 3.5vw;
	}
	.direction-description p {
		font-size: 3vw;
	}

	.directions-intro.smartphone {
		font-size: 4vw;
	}

	.directions-points.smartphone {
		font-size: 3.5vw;
	}
	/* ------ */
	/* - WORK - */
	/* ------ */
	.work-logo img {
		width: 30vw;
	}

	.work-motto {
    	font-size: 7vw;
	}
	.work-header-section > .wpb_column, .work-partner-section > .wpb_column {
		padding: 0 5vw;
	}

	.work-partner-section .vc_row {
		margin: 0 !important;
		flex-wrap: wrap;
		flex-direction: row;
	}

	.work-partner-section .vc_row > .wpb_column {
		flex-shrink: 0;
	}

	.wpb_column.xxs-full {
		width: 100% !important;
	}

	.partner-logo {
		width: 17.5vw;
	}

	.partner-logo img {
		max-height: 70px;
		margin-bottom: 2.5em;
	}

	.work-motto-section {
		flex-direction: column;
		justify-content: center;
		background-position: 10% center;
		height: auto;
		min-height: 100vh;
	}

	.work-motto-section .vc_col-sm-2\/5 {
		width: auto;
	}

	.work-motto-section .vc_col-sm-3\/5 {
		width: auto;
		margin-left: 0;
	}

	.work-motto-section >.wpb_column {
		align-items: center;
		justify-content: end;
		padding: 5vh 5vw;
		height: auto;
	}
	

	.alecria-wall {
		justify-content: left;
	}

	.alecria-wall img {
		width: 45vw;
	}

	.work-citation {
		padding-right: 0;
		height: auto;
	}

	.motto-citation {
		font-size: 3.5vw;
	}

	.motto-citation.small-text {
		font-size: 3vw;
	}

	.motto-speaker {
		padding-bottom: 1.5em;
		margin-top: 0;
	}
	.motto-speaker .name {
		font-size: 3.5vw;
	}
	.motto-speaker .location {
		font-size: 2.7vw;
	}

	/* ------ */
	/* - CONTACT - */
	/* ------ */

	main .contact-form {
		padding: 5vh 5vw;
		height: calc(100vh - 10vh);
	}

	.contact-form-p {
		font-size: 4vw;
		margin-bottom: 1em !important;
	}

	.contact-form-container {
		display: flex;
		flex-direction: column;
		align-items: end;
	}

	.form-input {
		font-size: 4vw;
		width: calc(100% - 1.6em) !important;
	}

	.submit-btn {
		font-size: 4vw;
	}

	.contact-links {
		margin-top: 2em;
		gap: 7.5vw;
		justify-content: end;
	}

	.contact-link-icon {
		width: 12.5vw;
	}

	.contact-links .phone {
		font-size: 4vw;
	}
	
	.privacy-policy .site-main {
		padding: 5em 2.5vw;
		font-size: 3vw;
	}


	.news-banner h1 {
		font-size: 10vw;
	}

	.site-footer {
		flex-direction: column;
		gap: 5vh;
	}

	.site-footer .contact-form {
		gap: .5rem;
	}

	.site-footer .contact-form-icon {
		width: 100%;
	}

	.site-footer .contact-form-icon p {
		font-size: 6vw;
	}

	.site-footer .contact-form-icon img {
		width: 30vw;
	}

	.footer-info {
		gap: .5em;
		align-items: center;
		width: 100%;
	}

	.footer-logo {
		font-size: 4vw;
	}

	.footer-info > p {
		font-size: 1.8vw;
		text-align: center;
	}

	.site-footer .footer-links {
		font-size: 3vw;
		flex-direction: column;
		gap: 1em;
		width: 100%;
		align-items: center;
	}
}

@keyframes loading-spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg); 
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}