<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******************************
Hero 
******************************/

.et_pb_section_0_tb_body:not(.et_pb_section_0_tb_body:has(video)) {
    padding: 2em 2em 10em;
}

/******************************
Result Cards
******************************/

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(375px, 100%), 1fr));
    gap: 1em;
    margin: 0 calc(10px + calc(calc(calc(100vw - min(85vw, 1640px)) / 2) / -1));
}

#result .cards-container {
    margin: 0;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

/******************************
No Video Use case cards
******************************/
.et_pb_section_0_tb_body:not(.et_pb_section_0_tb_body:has(video)) + .et_pb_section &gt; .et_pb_row:first-child:not(.et_pb_row.et_pb_with_border) {
    margin-top: -8.5em;
}

.cards-container .card {
    border-radius: calc(var(--borderRadius) / 2);
    box-shadow: var(--boxShadow);
    padding: var(--padding);
    background-color: rgb(255 255 255);
	background-color: #fff;
    text-align: center;
    display: grid;
    font-weight: 600;
}

.cards-container .card h2 {
    font-size: min(80px, 10vw);
    font-weight: 800;
    padding: 0;
}

/******************************
The Challenge
******************************/

.challenge-container {
    text-align: center;
}

.challenge-container h2 {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
}

.challenge-container &gt; p {
    color: rgb(var(--webeoLightBlue));
    font-weight: 600;
    font-size: 20px;
}

.challenge-container .points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1em;
    margin: 2em 0;
}

.challenge-container .points-container .point .number {
    --numberSize: 50px;
    width: var(--numberSize);
    height: var(--numberSize);
    background-color: rgb(var(--webeoLightBlue));
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.challenge-container .conclusion {
    padding: var(--padding);
    border-radius: calc(var(--borderRadius) / 2);
    box-shadow: var(--boxShadow);
}


/******************************
The Solution 
******************************/

.solution-container {
    text-align: center;
}

.solution-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2em;
}

.solution-container h2 {
    color: #000;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
}

.solution-container .solution-info &gt; div &gt; p {
    color: rgb(var(--primary));
    font-weight: 600;
    font-size: 20px;
}

.solution-container .solution-info &gt; div &gt; img {
    width: 100%;
}

.solution-container .conclusion {
    padding: var(--padding);
    border-radius: calc(var(--borderRadius) / 2);
    box-shadow: var(--boxShadow);
    margin-top: 2em;
}

/******************************
Personalisation Section
******************************/

/* Personalisation Points */

.p-points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1em;
    margin: 2em 0;
    text-align: center;
}

.p-points-container .point .number {
    --numberSize: 50px;
    width: var(--numberSize);
    height: var(--numberSize);
    background-color: #9986B8;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.p-points-container .point p&gt;strong {
    color: #330C70;
}

.personal-image img {
	width: 100%!important;
}

.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 98999999999!important;
    height: 100vh;
    background-color: rgb(0 0 0 / 80%);
    overflow: scroll;
}

.image-lightbox img {
    width: 80%!important;
    height: auto;
}

.full-personal-image {
    display: none;
}

.image-lightbox .full-personal-image {
    display: grid!important;
    height: 100%;
    align-items: center;
}

.image-lightbox .full-personal-image &gt; span {
	max-width: 80%!important;
    margin: 0 auto;
    max-height: 90vh;
    overflow: scroll;
}

.image-lightbox .full-personal-image img {
	 width: 100%!important;
}


/* Image Hotspots */


.hotspot-image-container {
    position: relative;
}

.hotspot-image-container img {
    width: 100%;
}

.et_pb_column.active {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vw - min(10vw, 10em));
    padding: min(10vw, 10em);
    background-color: rgb(0 0 0 / 75%);
}

.et_pb_column.active .hotspot-image-container img,
img.mfp-img {
	background-color: #fff;
	border-radius: 1em;
}

.hotspot-image-container:not(.et_pb_column.active .hotspot-image-container) {
	cursor: pointer;
	text-align: center;
}

.hotspot-image-container .hotspot {
    --hotspotSize: 25px;
}

.hotspot-image-container .hotspot .spot {
    width: var(--hotspotSize);
    height: var(--hotspotSize);
    background-color: #9986B8;
    border-radius: 50%;
    position: absolute;
    top: var(--yCoord);
    left: var(--xCoord);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hotspot-image-container .hotspot .spot &gt; div {
    width: 80%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: 200ms;
}

.hotspot-image-container .hotspot .spot &gt; div:last-child {
    transform: rotate(90deg);
}

.hotspot-image-container .hotspot.active .spot &gt; div:last-child {
    transform: rotate(0deg);
}

.hotspot-image-container .hotspot .overlay {
    background-color: #9986B8;
    color: #fff;
    padding: 1em;
    border-radius: 1em;
    position: absolute;
    top: var(--yCoord);
    left: calc(var(--xCoord) + var(--hotspotSize));
    transform: translateY(-50%) scaleY(0);
    transition: 200ms;
	font-size: 0.9em;
	max-width: 420px;
}

.hotspot-image-container .hotspot.active .overlay {
    transform: translateY(-50%) scaleY(1);
}

@media (max-width: 1081px) {
    .hotspot-image-container .hotspot .overlay {
        left: calc(var(--xCoord) + var(--hotspotSize) + -30%); 
        top: calc(var(--yCoord) - -30%);
    }
}

/* Testimonial  */

.testimonial-block-container {
    text-align: center;
}

.testimonial-block-container .images {
    justify-content: center;
}

.testimonial-block-container .testimonial .author {
    font-weight: 300;
}</pre></body></html>