/*!
Theme Name: novaicos
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: novaicos
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

novaicos is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/

*/
@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root{
	--background-color: #f5f5f5;
	--color-bg1: rgb(108, 0, 162);
	--color-bg2: rgb(0, 17, 82);
	--color1: 15, 16, 64;
	--color2:50, 16, 84;
	--color3: 36, 118, 201;

	--color4: 100, 50, 100;
	--color5: 108, 40, 162;
	--color-interactive: 108, 0, 162;
	--circle-size: 80%;
	--blending: hard-light;
}

.cursor-wrap{
	position: absolute;
	bottom:2rem;
	left:50vw;
	transform: translate(-50%,0);
	z-index: 100;
}

.site-header img{
	height: 54px;
	width: auto;
  }

.logo{
	width: fit-content!important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	z-index: 1000;
	padding: 1rem;
    background: #fff; 
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: #fff;
}
.site-header.scrolled .main-navigation a{
    color: #285a99;
}


.main-navigation ul{
	list-style: none;
}
.main-navigation ul li{
	list-style: none;
	display: inline-block;
	margin: 0 0.4rem;
}

.main-navigation a {
	text-decoration: none;
	color: #285a99;
	letter-spacing: 1.5px;
	font-size: calc(12px * 0.1vw);
	font-weight: lighter;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.site-header.scrolled .main-navigation a:hover {
    text-decoration: none;
    background: linear-gradient(45deg, rgb(22, 107, 161), rgb(128, 12, 125));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	font-size: 18px;
	font-weight: bold;
}



.dev-border{
	border: 1px solid red;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.hero{
	width:100dvw;
	height: 100dvh;
}

.hero-text-container {
	z-index: 1;
	padding:3rem;
	margin: auto;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 40%;
	text-align: start;
	color: white;
	opacity: 0.8;
	user-select: none;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
  }
.pat-text-container {
	z-index: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100vw;
	justify-content: center;
	align-items: center;
	height: 40vh;
	text-align: start;
	color: white;
	opacity: 0.8;
	text-align: center;
	user-select: none;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
  }

  .pr{
	position: relative;
  }
.info-text-container {
	width: 100%;
	height: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	text-align: start;
	position: relative;
	top:0;
	left:0;
	color: white;
	user-select: none;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
  }

h1.hero-title{
	font-size: calc(3rem + 1vw);
}
h1.hero-title-nm{
	font-size: calc(3rem + 1vw);
}

h1.title{
	font-size: 4rem;
}

@keyframes moveInCircle {
	0% {
	  transform: rotate(0deg);
	}
	50% {
	  transform: rotate(180deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  
  @keyframes moveVertical {
	0% {
	  transform: translateY(-50%);
	}
	50% {
	  transform: translateY(50%);
	}
	100% {
	  transform: translateY(-50%);
	}
  }
  
  @keyframes moveHorizontal {
	0% {
	  transform: translateX(-50%) translateY(-10%);
	}
	50% {
	  transform: translateX(50%) translateY(10%);
	}
	100% {
	  transform: translateX(-50%) translateY(-10%);
	}
  }


  .gradient-bg {
	width: 100vw;
	height: 100vh;
	position: fixed;
	overflow: hidden;
	background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
	top: 0;
	left: 0;
  
	svg {
	  position: fixed;
	  top:0;
	  left:0;
	  width: 0;
	  height: 0;
	}
  
  
	.gradients-container {
	  filter: url(#goo) blur(40px) ;
	  width: 100%;
	  height: 100%;
	}
  
	.g1 {
	  position: absolute;
	  background: radial-gradient(circle at center, rgba(var(--color1), 1) 0, rgba(var(--color1), 0) 50%) no-repeat;
	  mix-blend-mode: var(--blending);
  
	  width: var(--circle-size);
	  height: var(--circle-size);
	  top: calc(50% - var(--circle-size) / 2);
	  left: calc(50% - var(--circle-size) / 2);
  
	  transform-origin: center center;
	  animation: moveVertical 8s ease infinite;
  
	  opacity: 1;
	}
  
	.g2 {
	  position: absolute;
	  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
	  mix-blend-mode: var(--blending);
  
	  width: var(--circle-size);
	  height: var(--circle-size);
	  top: calc(50% - var(--circle-size) / 2);
	  left: calc(50% - var(--circle-size) / 2);
  
	  transform-origin: calc(50% - 400px);
	  animation: moveInCircle 6s reverse infinite;
  
	  opacity: 1;
	}
  
	.g3 {
	  position: absolute;
	  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
	  mix-blend-mode: var(--blending);
  
	  width: var(--circle-size);
	  height: var(--circle-size);
	  top: calc(50% - var(--circle-size) / 2 + 200px);
	  left: calc(50% - var(--circle-size) / 2 - 500px);
  
	  transform-origin: calc(50% + 400px);
	  animation: moveInCircle 8s linear infinite;
  
	  opacity: 1;
	}
  
	.g4 {
	  position: absolute;
	  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
	  mix-blend-mode: var(--blending);
  
	  width: var(--circle-size);
	  height: var(--circle-size);
	  top: calc(50% - var(--circle-size) / 2);
	  left: calc(50% - var(--circle-size) / 2);
  
	  transform-origin: calc(50% - 200px);
	  animation: moveHorizontal 6s ease infinite;
  
	  opacity: 0.7;
	}
  
	.g5 {
	  position: absolute;
	  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
	  mix-blend-mode: var(--blending);
  
	  width: calc(var(--circle-size) * 2);
	  height: calc(var(--circle-size) * 2);
	  top: calc(50% - var(--circle-size));
	  left: calc(50% - var(--circle-size));
  
	  transform-origin: calc(50% - 800px) calc(50% + 200px);
	  animation: moveInCircle 6s ease infinite;
  
	  opacity: 1;
	}
  
	.interactive {
	  position: absolute;
	  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
	  mix-blend-mode: var(--blending);
  
	  width: 100%;
	  height: 100%;
	  top: -50%;
	  left: -50%;
  
	  opacity: 0.7;
	}
  }

  .p1{
	margin-top: 100vh;
  }

  .mission, .patents, .mission-s {
	background-color: #fff;
	width: 100%;
	position: relative;
	overflow: hidden;
  }

  .mission p, .patents p, .mission-s p{
	letter-spacing: 1.5px;
	color: rgb(102,102,102);
	line-height: 1.5;
}


.mission::before{
	content: '';
	position: absolute;
	top: 10%;
	left: 10%;
	width: 160%;
	height: 100%;
	background: url('./assets/img/molecola.png') no-repeat;
	opacity: 0.1;
}


.mission-title{
	color: #166ba1;
	font-size: 2rem;
	width: 100%;
	text-align: end;
	margin: 1rem 0!important;
	display: flex!important;
	flex-direction: column!important;
	justify-content: flex-end!important;
	align-items: flex-end!important;
}


.marked{
	color: #6a0572;
}

.icon .marked{
	color: #6a0572;
}

.icon img{
	height: auto;
	width: 120px;
	opacity: 1;
}

.icon{
	z-index: 1;
	color: rgb(128, 12, 125);
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	align-items: center;
}
.icon-s img{
	height: auto;
	width: 160px;
	opacity: 1;
}

.icon-s{
	z-index: 1;
	color: rgb(128, 12, 125);
	text-align: center;
	font-weight: bold;
	align-items: center;
}

.banner{
	margin:6rem 0 0 0;
	width: 100%;
	padding:1.2rem 3rem;
	border-radius: 2.4rem;
	background: rgba(166, 178, 239, 0.2);
}

.banner .title, .banner .subtitle{
	color: #166ba1;
}

.banner .title{
	font-size: 3rem;
	position: relative;
}

.aftered{
	position: relative;
}

.aftered:after {
    content: 'Advanced Biotech Solutions';
    display: block;
    position: absolute;
    color: #166ba1;
    top: 2rem;
    left: calc(100% + 12px);
    width: 200%;
    font-size: 1rem;
    font-weight: normal;
}

.hero-subtitle{
	padding-top: 1rem;
	font-size: 1.4rem!important;
}

.banner{
	position: relative;
}
.banner .subtitle {
	display: none;
}

.banner-text{
	display: flex;
	flex-grow: 2!important;
	flex-direction: column;
	justify-content: center;
	position: relative;
	align-items: flex-start;
}

.discover-cta{
	padding: 2rem 0 1.2rem 0;
	color:#066fa8;
}


.discover-cta img {
	width: 30px;
	height: auto;
	transform: translate(0, -2px);
}


.infos{
	padding:6rem 0;
	
}

.cta-box{
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.cta-box-v{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.cta-box span{
	font-weight: bold;
	color: #166ba1;
}
.cta-box-v span{
	font-weight: bold;
	color: ##fff;
}

.infos .content{
	min-height: 90vh;
}
.news-wrapper, .news-date, .news-excerpt{
	color: rgb(102,102,102);
}



.infos .news-wrapper, .infos p, .infos .news-date{
	color: #fff
}


.blob {
	width: 240px;
	height: 240px;
	border-radius: 58% 38% 52% 48% / 49% 38% 51% 51%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: rgb(255, 255, 255);
	font-family: Arial, sans-serif;
	font-weight: bold;
	text-align: center;
	margin-top: 0;
  }
  
  .lgblue{
	  background: linear-gradient(225deg, rgb(10, 67, 128), #4a89dc);
	  box-shadow: 10px -10px 0px rgba(10, 67, 128, 0.1);
  
  }
  .lglblue{
	  background: linear-gradient(45deg, rgb(103, 173, 196), rgb(62, 129, 165));
	  box-shadow: 10px -10px 0px rgba(62, 129, 165, 0.1);
  
  }
  .lgpurple{
	  background: linear-gradient(225deg, rgb(64, 6, 80), #cc54df);
	  box-shadow: 10px -10px 0px rgba(64, 6, 80, 0.1);
  
  }
  
  .blob img{
	  margin: 12px 0;
	  max-width: 60%;
	  max-height: 30px;
  }
  
  .blob .text {
	font-size: 34px;
  }
  
  .blob .subtext {
	font-size: 18px;
	font-weight: normal;
	margin-top: 5px;
	letter-spacing: 1px;
  }


  .form-input{
	border:none;
	padding: 4px;
	width: 100%;
	margin:10px 0;
	border-bottom: 1px solid;
	border-image-source: linear-gradient(to right, #166ba1, rgb(128, 12, 125));
	border-image-slice: 1;
	outline: none;
	color: rgb(102,102,102);
  }

  .form-tarea{
	margin:10px 0;
	border:none;
	/* border-bottom: 1px solid;
	border-image-source: linear-gradient(to right, #166ba1, rgb(128, 12, 125));
	border-image-slice: 1; */
	outline: none;
	color: rgb(102,102,102);
	padding: 4px;
	width: 100%;
  }

  .t-blue{
	color: #166ba1!important;
  }

  .footer-ul{
	text-align: end;
	list-style: none;
  }

  .c-icon img {
	width: auto;
	height: 60px;
  }

  .nicard{
	min-width: 200px;
	flex-direction: column;
	justify-content: flex-start;
	border-radius: 20px;
	opacity: 1;
	z-index: 10;
	word-break: break-word;
	text-align: center;
	color: #fff;
	padding:2.3rem 2rem;
	background: rgb(228,99,226);
	background: linear-gradient(330deg, #800c7d 0%, #166ba1 100%);
}

.nicard img{
	margin: auto;
}

.card-title	{
	font-weight: bold;
}

.griglia{
	padding:3rem;
	grid-template-columns: repeat(4, minmax(200px, 1fr));
	grid-gap: 3rem;
	display: grid;
}

.co3 {
	padding:3rem;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	grid-gap: 3rem;
	display: grid;
}


.griglia2 {
	padding: 3rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(200px, 200px));
	grid-gap: 0.3rem;
	margin: auto;

	/* Centra gli elementi nella griglia */
	justify-content: center; /* Allinea orizzontalmente */
	align-items: center; /* Allinea verticalmente */
  }
  
.illcard{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.illcard::before{
	position: absolute;
	content: '';
	top:-40px;
	left:0px;
	width: 80px;
	height: 80px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('./assets/img/icospinna.png');

}

.num {
	width: 40px!important;
	height: 40px!important;
	border-radius: 50%;
	background-color: #166ba1;
	color: #fff;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-shrink: 0; 
}

.tech-points{
	padding:3rem 2rem;
	color: #fff;
}

.tech-points-content{
	display: flex;
	flex-direction: column;
}

.punto-tech{
	display: flex;
	flex-direction: row;
}

.ptsx{
	display: flex;
	justify-content: flex-end;
}

.ptsx img {
	width: auto;
	height: 40px;
	object-fit: cover;
}

.ptdx{
	display: flex;
	justify-content: flex-start;
}

.timeline-container {
	/* max-width: 800px; */
	margin: auto;
	padding-bottom: 5rem;
	position: relative;
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 70px;
	position: relative;

}

.circle {
	min-width: 60px;
	height: 60px;
	border-radius: 50%;
	/* background: linear-gradient(90deg, #6a0572, #285a99); */
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 1rem;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 16px;
	flex-shrink: 0;
}

.bar-container {
	flex-grow: 1;
	height: 60px;
	background: #e0e0e0;
	border-radius: 30px;
	margin-left: 10px;
	position: relative;
	/* overflow: hidden; */
}
.timeline-headers{
	position: relative;
	height: 140px;

}

.timeline-headers .icon img{
	width: 60px;
	height: auto;
}

.timeline-headers .icon span {
	position: relative;
	min-width: 150px;
}

.timeline-headers .icon span::after{
	position: absolute;
	width: 10px !important;
	height:480px;
	content: '';
	left:50%;
	display: block;
	/* border-left:1px solid #6a0572; */
	z-index: -1;
}


.timeline-headers .icon{
	position: absolute;
	display: flex;
	top:-60px;
	flex-direction: column;
	transform: translate(-50%, 0);
}
.timeline-headers .icon:nth-child(1){
	left:calc(25% + 5px);
}
.timeline-headers .icon:nth-child(2){
	left:calc(45% + 5px);
}
.timeline-headers .icon:nth-child(3) span::after{
	border:none;

}
.timeline-headers .icon:nth-child(3){
	left:66%;
}
.timeline-headers .icon:nth-child(4){
	left:90%;
}
.timeline-headers .icon:nth-child(4) span::after{
	border:none;
}
.timeline-headers .icon:nth-child(5){
	left:56%;
	top:80px;
	font-size: 12px;
}
.timeline-headers .icon:nth-child(5) span::after, .timeline-headers .icon:nth-child(7) span::after{
	height: 444px;
}
.timeline-headers .icon:nth-child(6){
	left:65%;
	border:none;
	top:80px;
	font-size: 12px;
}
.timeline-headers .icon:nth-child(6) span::after{
	height: 462px;
	border:none;
}
.timeline-headers .icon:nth-child(7) span::after{
	border:none;
}
.timeline-headers .icon:nth-child(7){
	left:74%;
	top:80px;
	border:none;
	font-size: 12px;
}
.timeline-headers .icon:nth-child(8) span::after{
	border:none;
}
.timeline-headers .icon:nth-child(8){
	left:calc(70% - 4px);
	top:50px;
	font-size: 12px;
}



.bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #6a0572, #285a99);
	border-radius: 30px;
	transition: width 2s ease-in-out;
}

.dot {
	width: 10px;
	height: 10px;
	background: #6a0572;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.dot-1, .dot-3{
	left:calc(56% - 8px);
}
.dot-2{
	left:calc(45% - 6px);
}
.dot-4{
	left:calc(25% - 6px);
}
.dot-1::before{
	width:2px;
	height:230px;
	border-left:1px solid #6a0572;
	content: '';
	display: block;
	position: absolute;
	left:calc(50% + 1px);
	transform: translate(-50%, 0);
	top:-50px;
}
.dot-3::before{
	width:2px;
	height:230px;
	border-left:1px solid #6a0572;
	content: '';
	display: block;
	position: absolute;
	left:calc(50% + 1px);
	transform: translate(-50%, 0);
	bottom:0px;
}
.dot-2::before{
	width:2px;
	height:230px;
	border-left:1px solid #6a0572;
	content: '';
	display: block;
	position: absolute;
	left:calc(50% + 1px);
	transform: translate(-50%, 0);
	bottom:0px;
}
.dot-4::before{
	z-index: 100;
	width:2px;
	height:490px;
	border-left:1px solid #6a0572;
	content: '';
	display: block;
	position: absolute;
	left:calc(50% + 1px);
	transform: translate(-50%, 0);
	bottom:0px;
}
.dot-2::before{
	width:2px;
	height:230px;
	border-left:1px solid #6a0572;
	content: '';
	display: block;
	position: absolute;
	left:calc(50% + 1px);
	transform: translate(-50%, 0);
	bottom:0px;
}
.dot:nth-child(2){
	left: 82%;
}
.dot:nth-child(3){
    left: 90%;
}
.dot:nth-child(4){
    left: 28%;
}

.timeline-item .text {
	font-size: 14px;
	position: absolute;
	bottom:-44px;
	left:2rem;
	color: #285a99;
}

/* Animazione */
.animate .bar-1 {
	width: calc(56% - 4px);
}
.animate .bar-2 {
	width: 45%;
}
.animate .bar-3 {
	width: calc(56% - 4px);
}
.animate .bar-4 {
	width: 25%;
}




.team {
	background: #fff;
}



.h100{
 min-height: 100vh;
}


.team-card{
	padding:1.2rem;
	border-radius:20px;
	background: linear-gradient(330deg, #800c7d 0%, #166ba1 100%);

	/* background: linear-gradient(135deg, rgb(103, 173, 196), rgb(21, 98, 139)); */
	color:#fff;
	height: 100%;
}

.team-card img{
	width: 80%;
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
}

.texte .desc{
	font-weight: 100;
}



.news-card{
	width: 100%;
	min-height: 340px;
}

.news-card img{
	width: 100%;
	margin:1rem 0;
	border-radius: 12px;
}

.news-title{
	color: #166ba1;
	font-weight: bold;
}
.news-wrapper, .news-date{
	color: rgb(102,102,102);
}

.infos .news-wrapper, .infos p, .infos .news-date{
	color: #fff
}

.contact{
	width: 100vw;
	margin-top: 20vh;
	height: 100vh;
}


.contact .ic{
	width: 70%;
}



.r{
	padding:1rem;
	border:1px solid #fff;
	width: 100px;
	height: 100px;
	border-radius: 50px!important;
	margin:4rem 0;

}

.r img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.bi {
	position: absolute;
	right:2rem;
	top:2rem;
	width: 60px;
	height: auto;
}


.pim img{
	width: 100%;
	height: auto;

}

.mobile {
	display: none;
}

.mobile-header {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: #fff;
    color: #066fa8;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.menu-icon {
    font-size: 3rem;
    cursor: pointer;
    display: none;
	right: 1rem;
	top:1rem;
	z-index: 1100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 4px;
    background: #6a0572;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.ti, .tl {
	position: relative;
}
.ti::after{
	bottom:-1.4rem;
	right: 0;
	content:'';
	display: block;
	width:40px;
	position: absolute;
	height: 30px;
	background-position: center;
	background-size: cover;
	background-image: url('./assets/img/molecolascorporata.png');
}
.tl::after{
	bottom:-1.4rem;
	left: 0;
	content:'';
	display: block;
	width:40px;
	position: absolute;
	height: 30px;
	background-position: center;
	background-size: cover;
	background-image: url('./assets/img/molecolascorporata.png');
}
.hero-title{
	position: relative;
}
.wpcf7-list-item-label{
	color: #000;
}

label {
	color: #454242;
}
.hero-title::after{
	bottom:-1.4rem;
	left: 0;
	content:'';
	display: block;
	width:40px;
	position: absolute;
	height:30px;
	background-position: center;
	background-size: cover;
	background-image: url('./assets/img/molecolascorporata.png');
}

/* Animazione dell'icona quando il menu è attivo */
.menu-icon.active span{
	background: #066fa8;
}
.menu-icon.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-header.active{
	transform: scaleX(1);
}


.t-info-w{
	background-color: #fff;
	padding:6rem 4rem;
}

.bgb{
	background-color: #285a99;
	width: 100%;
	color:#fff;
}

.p10{
	padding:0 10rem;
}


.het{
	background:transparent;
	transition: all 0.3s ease-in;
}
.het.het-scrolled{
	background:#fff;

}
.het .main-navigation a{
	color: #fff !important;
}
.het.het-scrolled .main-navigation a{
	color: #285a99 !important;
}

.het #primary-menu .current-menu-item a,
.het #primary-menu .current_page_item a {
    font-weight: bold !important;
	color:#fff;
}
.het.het-scrolled #primary-menu .current-menu-item a,
.het.het-scrolled #primary-menu .current_page_item a {
    font-weight: bold !important;
	color: #6a0572!important;
}


.tab-he span{
	padding:24px 1px;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 13px;
}
.tab-r span{
	padding:12px 0px;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 13px;
}

.mc{
	margin:1px 1px;
}

.mobile-t{
	display: none;
}

/* MEDIAS */

@media screen and (max-width: 1200px){
	.menu-icon {
		display: flex;
		z-index: 1200;

	}
	

	.logomob img{
		height: calc(10vw);
		width:auto!important;
	}

	.menubar-mobile{
		position:fixed;
		display: flex;
		justify-content: space-between;
		top:0;
		left:0;
		width:100dvw;
		padding:1.4rem;
		z-index: 1200;
		background: #fff;
	}
	.site-header {
		display: none;
	}
	.mobile-header {
		display: flex;
		z-index: 1000;
		transform: scaleX(0);
		transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
		transform-origin: right;
	}

	.mobile-header img {
		max-width: 400px;
		height: auto;
		margin: 2rem;
	}

	.mobile-main-navigation ul{
		list-style: none;
	}
	.mobile-main-navigation a{
		color: #066fa8;
		text-decoration: none;
		margin:1rem 0;
		font-size: 18px;
	}
	.mobile-main-navigation a:hover{
		color: #6a0572;
		text-decoration: none;
	}

}



@media screen and (max-width: 1100px){
	.desktop{
		display: none;
	}
	.mobile-t{
		display: block;
	}
	.griglia{
		grid-template-columns: repeat(2, minmax(200px, 1fr));
	}
}


@media screen and (max-width: 768px){
	.desktop{
		display: none;
	}
	.human-wrap::before, .mouse-wrap::before{
		height: calc(100% - 2px)!important;
	}	

	.human-wrap .col-4, .mouse-wrap .col-4, .human-wrap .col-5, .mouse-wrap .col-5, .bgb, .bgp {
		margin:0.2rem 0.2rem 0 0!important;
		font-size: 12px;
		
	}
	.p10{
		padding:0;
	}

	.co3 {
		grid-template-columns: repeat(1, minmax(200px, 1fr));
		gap: 3rem;
		display: grid;
	}
	.cursor-wrap{
		display: none;
	}
	.mobile-header img {
		max-width: 300px;
		height: auto;
		margin: 2rem;
	}
	.griglia{
		grid-template-columns: repeat(1, minmax(200px, 1fr));
	}
	.griglia2{
		grid-template-columns: repeat(1, minmax(200px, 1fr));
		gap: 3rem;
	}

	.illcard::before{
		position: absolute;
		content: '';
		top:-40px;
		left:80px;
		width: 80px;
		height: 80px;
		background-size: contain;
		background-repeat: no-repeat;
		background-image: url('./assets/img/icospinna.png');
	
	}
	.main-navigation{
		display: none;
	}

	.hero-text-container{
		word-break: break-word;
	}

	.hero-text-container h1{
		font-size: 2rem;
	}

	h1.title{
		font-size: 2.5rem;
	}

	

	.banner{
		margin:6rem 0 0 0;
		width: 100%;
		padding:2rem 3rem;
		border-radius: 2.4rem;
		background: rgba(166, 178, 239, 0.2);
	}
	
	.banner .title, .banner .subtitle{
		color: #166ba1;
	}
	
	.banner .title{
		font-size: 2rem;
		position: relative;
	}


.aftered{
	position: relative;
}

.aftered:after {
    content: 'Advanced Biotech Solutions';
    display: block;
    position: absolute;
    color: #166ba1;
    top: 3rem;
    left: 0;
    width: 200%;
    font-size: 1rem;
    font-weight: normal;
}

.discover-cta{
	margin-top: 16px;
	height: 30px;
}


.blob{
	margin: 1.4rem 0;
}

.mission::before{
	left:0;
	top:-10%;
	background-size: 120%;
}

.cta-box{
	padding-bottom:2rem;
}

.pat-text-container h1{
font-size: 2.2rem;
}
	

/* TIMELINE */

.timeline-container {
	/* max-width: 800px; */
	display: flex;
	flex-direction: row;
	padding-bottom: 5rem;
	position: relative;
	overflow: hidden;
	justify-content: space-around;
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	position: relative;

}

.circle {
	height: 40px;
	width: 120px;
	border-radius: 50%;
	text-align: end;
	/* background: linear-gradient(90deg, #6a0572, #285a99); */
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 2.1rem;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
	transform: rotate(90deg);
    transform-origin: left top;
    white-space: nowrap;
}

.bar-container {
	flex-grow: 1;
	width: 30px;
	background: #e0e0e0;
	border-radius: 30px;
	margin-left: 10px;
	position: relative;
	/* overflow: hidden; */
	height: 800px;

}
.timeline-headers{
	position: relative;
	height: 100%;
	/* left:calc(250px + 2rem); */
}

.timeline-headers .icon img{
	width: 40px;
	height: auto;
}



.timeline-headers .icon{
	position: absolute;
	display: flex;
	top:0;
	right: 0;
	flex-direction: column;
}
.timeline-headers .icon:nth-child(1){
	top:150px;
	left:50%;
	transform: translate(-50%, 0);
}
.timeline-headers .icon:nth-child(2){
	top:300px;
	left:50%;
	transform: translate(-50%, 0);
}
.timeline-headers .icon:nth-child(3) span{
	min-width: 300px;
}
.timeline-headers .icon:nth-child(3){
	top:500px;
	left:40px;
	transform: translate(-50%, 0) rotate(-90deg);
}
.timeline-headers .icon:nth-child(4){
	top:650px;
	left:50%;
	width: 200px;
	transform: translate(-50%, 0);
	position: relative;
}
.timeline-headers .icon:nth-child(4) span::after{
	border:none;
}
/* .timeline-headers .icon:nth-child(5){
	display: none;
	top:400px;
	font-size: 12px;
} */
.timeline-headers .icon:nth-child(5) span::after, .timeline-headers .icon:nth-child(7) span::after{
	height: 444px;
}
/* .timeline-headers .icon:nth-child(6){
	left:90%;
	display: none;

	top:40px;
	font-size: 12px;
} */
.timeline-headers .icon:nth-child(6) span::after{
	height: 462px;
}
/* .timeline-headers .icon:nth-child(7){
	left:98%;
	display: none;

	top:40px;
	font-size: 12px;
} */



.timeline-headers .icon:nth-child(5){
	top:460px;
	left:160px;
	transform: translate(-50%, 0);
}

.timeline-headers .icon:nth-child(6)::before{
display: none;
}
.timeline-headers .icon:nth-child(7)::before{
display: none;
}
.timeline-headers .icon:nth-child(6){
	top:520px;
	left:160px;
	transform: translate(-50%, 0);
}
.timeline-headers .icon:nth-child(7){
	top:560px;
	left:160px;
	transform: translate(-50%, 0);
}
.timeline-headers .icon:nth-child(8){
	top:552px;
	left:100px;
	transform: translate(-50%, 0) rotate(-90deg);
}
.timeline-headers .icon:nth-child(7)::after{
	content: '';
	display: none;
	left:-40px;
	top: 0;
	width: 1px;
	height: 100%;
	position: absolute;
	background: #6a0572;
}
.timeline-headers .icon:nth-child(6)::after{
	content: '';
	display: block;
	left:-30px;
	top: -10px;
	width: 1px;
	height: 100px;
	position: absolute;
	background: #6a0572;
}

.timeline-headers .icon:nth-child(3) span::after{
	display: none;
}
.timeline-headers .icon span::after{
	position: absolute;
	height: 1px !important;
	width:100vw!important;
	content: '';
	left:50%;
	display: none;
	border-bottom:1px dashed #6a0572!important;
	border-left: none !important;
}



.bar {
	height: 0;
	width: 100%;
	background: linear-gradient(90deg, #6a0572, #285a99);
	border-radius: 30px;

	transition: height 2s ease-in-out;
}

.dot {
	width: 10px;
	height: 10px;
	background: #6a0572;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.timeline-item .text {
	font-size: 12px;
	position: absolute;
	bottom:-20px;
	display: none;
	left:2rem;
	color: #285a99;
	margin-top: 5px;
}

/* Animazione */
.animate .bar-1 {
	height: 498px!important;
	width: 100%;
}
.animate .bar-2 {
	height: 360px!important;
	width: 100%;
}
.animate .bar-3 {
	height: 498px!important;
	width: 100%;

}
.animate .bar-4 {
	width: 100%;
	height: 225px!important;
}
.dot-1{
	top: 492px;
	left: 50%;
	transform: translate(-50%, 0) rotate(90deg);
}
.dot-1::before{
	height: 75px;
	top:0;
}
.dot-3{
	top: 492px;
	left: 50%;
	transform: translate(-50%, 0) rotate(90deg);
}
.dot-3::before{
	height: 175px;
	top:0;
}
.dot-2{
	top: 354px;
	left: 50%;
	z-index: 99;

	transform: translate(-50%, 0) rotate(90deg);
}
.dot-2::before{
	height: 125px;
	top:0;
	z-index: 99;

}
.dot-4{
	top: 218px;
	left: 50%;
	transform: translate(-50%, 0) rotate(90deg);
}
.dot-4::before{
	height: 225px;
	top:0;
}



.bi {
	position: absolute;
	right:1rem;
	top:1rem;
	width: 40px;
	height: auto;
}
}


.text-justify {
	text-align: justify;
  }


  .aw p{
	display: flex;
	flex-direction: row;
	position: relative;
	justify-content: space-between;

  }

  .aw label{
	display: flex;
	flex-direction: row;
  }

  .aw label input {
	margin-right: 1rem;
  }

  .filter{
	height: 100%;
	width: 100%;
	filter: blur(20px);
	opacity: 0.5;
  }

  #isbm {
	position: relative;
	top:0;right: 0;
  }

  .wpcf7-spinner{
	position: absolute;
	margin-top:1rem;
  }


  #primary-menu .current-menu-item a,
#primary-menu .current_page_item a {
    color: purple ; /* Cambia il colore del testo in viola */
	font-weight: bold;
}

#primary-menu li a:hover {
    color: purple;
}


.t-info{
	margin-top: 12vh;
}




  /* Titolo principale */
  .request-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff; /* Colore blu di esempio */
  }

  /* Sottotitolo */
  .request-subtitle {
	font-size: 1.2rem;
	color: #fff;
	margin-bottom: 2rem;
  }

  /* Box delle tabelle */
  .product-table {
	/* border: 1px solid #ddd; */
	overflow: hidden; /* per gestire i bordi arrotondati */
	margin-bottom: 2rem;
  }

  .product-table .table-header {
	background-color: #066fa8; /* Colore di sfondo dell'intestazione */
	color: #fff;
	padding: 0.75rem;
	font-weight: 600;
  }

  /* Per differenziare il blocco viola (ad esempio) */
  .table-header-purple {
	/* background-color: #7a2b7b; */
  }

  /* Tabella interna */
  .product-table table {
	margin: 0; /* rimuove margini default di bootstrap */
	border: 0; /* usiamo i bordi personalizzati */
  }
  .product-table table thead {
	background-color: #f5f5f5; 
  }
  .product-table table th,
  .product-table table td {
	vertical-align: middle;
	padding: 0.75rem;
  }

  /* Colonna "CODE" in evidenza con colore differente 
	 (se vuoi farlo per tutte, togli la condizione .col-code) */
  .col-code {
	background-color: #e9f4fb; /* sfondo leggero azzurro di esempio */
	font-weight: 600;
  }
  /* Variante viola per la colonna CODE nel blocco viola */
  .product-table.purple .col-code {
	background-color: #efd7f0; 
  }

  /* Se vuoi mostrare le icone sulla sinistra, puoi creare 
	 una “barra verticale” con icone, come nello screenshot. */

  .icon-bar {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 2rem;
  }

  .icon-bar .icon-section {
	margin: 2rem 0;
	display: flex;
	align-items: center;
  }

  .icon-bar .icon-section::before {
	content: "";
	position: absolute;
	left: -2px;
	top: 0;
	bottom: 0;
	/* la linea verticale è già definita con border-left,
	   qui potresti aggiungere eventuali stili extra */
  }

  .icon-bar .icon-section i {
	font-size: 1.5rem;
	margin-right: 0.5rem;
  }

  tr td:nth-child(1){
	min-width: 90px;
  }
  tr td:nth-child(2){
	min-width: 190px;
  }
  tr td:nth-child(3){
	min-width: 150px;
  }

  table tr td:nth-child(1){
	background-color: #e2b8e3;
  }

.bt::before{
	content:'';
	display: block;
	position: absolute;
	top:-10px;
	width: 80%;
	height: 20px;
	border-top:1px solid #6a0572;
}

.bl::before{
	content:'';
	display: block;
	position: absolute;
	top:-10px;
	width: 80%;

	border-left:1px solid #6a0572;
}
.br::before{
	content:'';
	display: block;
	position: absolute;
	top:-10px;
	width: 80%;

	border-right:1px solid #6a0572;
}


.iub__us-widget{
	height:0!important;
	width:0!important;
	display: none!important;
}


.bgb-08{
	background: rgba(6, 111, 168, 0.8);
	border-radius: 4px; /* o il valore che preferisci */

}

.bgb-06{
	background: rgba(6, 111, 168, 0.5);

	border-radius: 4px; /* o il valore che preferisci */

}

.bgb-04{
	background: rgba(6, 111, 168, 0.3);
	border-radius: 4px; /* o il valore che preferisci */

}
.bgb-03{
	background: rgba(139, 207, 244, 0.507);
	border-radius: 4px; /* o il valore che preferisci */

}
.bgb-01{
	background: rgba(6, 111, 168, 0.1);
	border-radius: 4px; /* o il valore che preferisci */

}

.bgp-06{
	background: rgb(106, 5, 114, 0.6);
	border-radius: 4px; /* o il valore che preferisci */

}
.bgp-04{
	background: rgb(106, 5, 114, 0.3);
	border-radius: 4px; /* o il valore che preferisci */

}
.bgp{
	color:#fff;
	background: rgb(106, 5, 114, 1);
	border-radius: 4px; /* o il valore che preferisci */

}

.human-wrap, .mouse-wrap{
	position: relative;
}

.human-wrap::before, .mouse-wrap::before{
	content:'';
    position: absolute;
    top:5px;
    left:10px;
    width:10px;
    height:calc(100% - 10px);
    border-bottom:1px solid #6a0572;
    border-top:1px solid #6a0572;
    border-left:1px solid #6a0572;
}

.hmi{
	position: absolute;
	left: -50px;
	top:50px;
}


.mobile-t .human-wrap::before, .mobile-t .mouse-wrap::before{
	content:'';
    position: absolute;
    top:5px;
    left:-.6rem;
    width:10px;
    height:calc(100% - 10px);
    border-bottom:1px solid #6a0572;
    border-top:1px solid #6a0572;
    border-left:1px solid #6a0572;
}

.mobile-t .hmi{
	position: absolute;
	left: -4rem;
	top:6.4rem;
}
.form-tarea {
	position: relative;
	width: 100%;
	height: 400px;
	/* padding: 10px; */
	/* border: 2px solid #000; */
	background-color: #f4f4f4;
	line-height: 2em;
	color: #333;
	background-image: linear-gradient(to bottom, transparent 1px, #fff 1px, #fff 2px), 
					  linear-gradient(to right, #166ba1 1px, rgb(128, 12, 125) 1px);
	background-size: 100% 2em, 100% 2px;
	background-repeat: repeat-y;
	resize: none; /* Evita di ridimensionare */
  }
  
  .form-tarea::placeholder {
	color: #aaa;
  }
  

  .wspace{
	position: absolute;
    display: flex;
    width: 100%;
    height: 2px;
    z-index: 1000;
    transform: translateY(10px);
    background: #fff;
  }

  .wpcf7-form {
	position: relative;
  }

  [class^="bgp"] {
    border-radius: 4px; /* o il valore che preferisci */
}
  [class^="bgb"] {
    border-radius: 4px; /* o il valore che preferisci */
}
  [class^="bgp-"] {
    border-radius: 4px; /* o il valore che preferisci */
}
 .hmi [class^="bgb-"] {
    border-radius: 4px; /* o il valore che preferisci */
}