<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.figtree-300 {
	font-family: "Figtree", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

.figtree-600 {
	font-family: "Figtree", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.bricolage-grotesque {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

:root {
    --primary: #B688FF;
    --secondary: #1C3738;
    --aquamarine: #06E89F;
    --coral: #FF4F50;
    --blue: #006DFF;
    --dark: #111D0C;
    --light: #F3F1EE;
    --border-radius-lg: 18px;
    --border-radius-md: 8px;
    --bs-dark-rgb: 17,29,12;
}

.border-radius-lg {
    border-radius: var(--border-radius-lg) !important;
}
.border-radius-md {
    border-radius: var(--border-radius-md) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

* {
    scroll-margin-top: 120px;
}

body {
    font-family: 'Figtree', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

p {
    font-weight: 300;
}

.lead {
    line-height: 1.4;
}

a {
    color: var(--primary);
    text-underline-offset: 16%;
    position: relative;
}

a.text-decoration-none:before {
    position: absolute;
    content: '';
    left: 0;
    right: 100%;
    height: 1.5px;
    bottom: 0;
    background: #fff;
    transition: all 200ms ease;
}

a.text-decoration-none:hover:before {
    transition: all 200ms ease;
    right: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4
{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

h1, .h1 {
    font-size: 72px;
}

h2, .h2 {
    font-size: 64px;
}

h3, .h3 {
    font-size: 40px;
}

h4, .h4 {
    font-size: 28px;
}

h5, .h5 {
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 32px;
}

b, strong {
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    gap: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
:not(.btn-check) + .btn-primary:active {
    background: var(--secondary);
    outline: none;
}

.btn i {
	font-size: 12px;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    background: #f4f4f4;
    border-color: #f4f4f4;
    color: var(--primary);
}

.btn-sm {
    padding: 8px 12px;
}

.section-margin {
    margin: 100px 0;
}

.section-padding {
    padding: 100px 0;
}

@media screen and (max-width: 767px) {
    .lead {
        font-size: 18px;
    }

    .section-margin {
        margin: 60px 0;
    }

    .section-padding {
        padding: 60px 0;
    }

}

@media screen and (max-width: 991px) {
    
	h1, .h1 {
		font-size: 48px;
	}

	h2, .h2 {
		font-size: 32px;
	}

	h3, .h3 {
		font-size: 28px;
	}

	h4, .h4 {
		font-size: 18px;
	}

	h5, .h5 {
		font-size: 22px;
	}

}

/**** ACCORDION ****/

.accordion {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border: none;
    border-radius: var(--border-radius-md) !important;
    padding: 32px 32px 20px 32px;
    transition: all .35s ease;
}

.accordion-button {
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: none !important;
    padding: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--dark);
    background-color: transparent !important;
}

.accordion-button .title {
    line-height: 1;
    margin-bottom: 12px;
}

.accordion-button::after {
    display: none;
}

.accordion-collapse {
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0 !important;
    transform: translateY(-28px);
    transition: all .35s ease;
    pointer-events: none;
}

.accordion-collapse:not(.show) {
    transform: translateY(0);
    transition: all .35s ease;
}

.accordion-collapse.collapsing {
    transform: translateY(-28px);
}

.accordion-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
    margin-top: auto;
    padding: 0;
}

.accordion-subtitle {
    max-width: 362px;
}

#collapseTwo .accordion-body {
    flex: 0 0 650px;
}

#collapseThree .accordion-body {
    flex: 0 0 600px;
}

#collapseFour .accordion-body {
    flex: 0 0 600px;
}

.accordion-item:has(.accordion-button[aria-expanded="true"]) {
    background: var(--aquamarine);
    padding-bottom: 4px;
    transition: all .35s ease;
}

.accordion .btn {
    min-width: 120px;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .accordion-item {
        padding: 24px 24px 12px 24px !important;
    }
    .accordion-collapse {
        flex-direction: column;
        gap: 16px;
    }
    .accordion-body {
        justify-content: flex-start;
        flex: 0 0 auto !important;
        margin-bottom: 24px;
    }
    .accordion-collapse.collapsing,
    .accordion-collapse {
        transform: none;
    }
    .accordion .btn {
        min-width: 0;
        text-align: left;
        padding: 4px 8px;
    }
}

/** END ACCORDION **/






/**** BANNER ****/

.banner {
    padding: 80px 50px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.banner .banner-bg {
    position: absolute;
    right: -120px;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.banner .banner-bg img {
    object-fit: cover;
    object-position: left 40%;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .banner {
        padding: 40px 24px;
    }
    .banner .banner-bg {
        right: -80px;
        top: auto;
        width: 100%;
        object-fit: contain;
        bottom: -30px;
        transform: rotate(90deg);
        opacity: 0.2;
    }
}

/** END BANNER **/





/**** CLIENTS ****/

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--border-radius-lg);
    filter: grayscale(1);
    flex: 0 0 200px;
    padding: 0 28px;
}

.clients-row .client {
    margin: 0 3px;
}

.clients-row .client-wrapper {
    flex: 0 0 144px;
}

@media screen and (max-width: 767px) {
    .client {
        flex: 0 0 144px;
        padding: 0 16px;
    }
}

/** END CLIENTS **/




/**** G OVERLAY ****/

.g-overlay {
    position: relative;
    overflow: hidden;
}

.g-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero .g-overlay:before {
    background: var(--secondary);
}

.genoma-section .g-overlay:before {
    background: var(--light);
}

.g-overlay:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/genoma-g-sfondo2.png') no-repeat center center;
    background-size: cover;
    mix-blend-mode: darken;
}

.genoma-section .g-overlay:after {
    mix-blend-mode: lighten;
    background: url('../img/genoma-g-sfondo3.png') center -180px no-repeat;
    background-size: cover;
    opacity: 0.4;
    width: 110%;
    height: 110%;
    left: -5%;
}

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

    .g-overlay:after {
        background: url('../img/genoma-g-sfondo.png') 80% center;
        opacity: 0.3;
    }

    .genoma-section .g-overlay:after {
        background: url('../img/genoma-g-sfondo.png') 80% center;
    }
}

/** END G OVERLAY **/



.social-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    padding: 8px;
}




/**** FORM ****/

.sib-form, .sib-form *:not(.fa-solid) {
    font-family: 'Figtree', sans-serif !important;
}

form .form-control {
    border: none;
    padding: 8px 20px;
    border-radius: 0.375rem;
    border: none;
}

form .form-check {
    padding-left: 30px;
}

form .form-check-input[type=checkbox] {
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-left: -30px;
}

.btn-submit {
    min-width: 120px;
    justify-content: center;
    gap: 10px;
}

.btn-submit .fa-arrow-up {
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .form-check-label {
        font-size: 14px;
    }
}

/** END FORM **/



</pre></body></html>