/*
Theme Name: Base theme 
Theme URI: 
Author: 
Text Domain:  base
Version: 1.0
*/



::-moz-selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

:root {
	--white:#ffffff;
	--black:#000000;
	--darkgray: #1B1B1B;
	--gray: #565656;
	--lightgray: #EEEEEE;
	--primary: #1B1B1B;
	--secondary: #D4EBA9;
	--alt: #D4EBA9;
	--text-color: #000000;
	--orange: #FFE4D4;
	--yellow: #FFF3C7;
	--blue: #DBE1F0;
	--green: #E7F3D0;
	--px: 1rem;
	--py: 3rem;
	--main-font: 'TWK Everett', Arial, sans-serif;
	--main-bg: #F3F2F1;
	--heading-font: 'TWK Everett', Arial, sans-serif;
	--header-height: 57px;
	--grid-limit: 1240px;
	--container-width: 1240px;
}

@font-face {
    font-family: 'TWK Everett';
    src: url('fonts/TWKEverett-Light.woff2') format('woff2'),
        url('fonts/TWKEverett-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TWK Everett';
    src: url('fonts/TWKEverett-Medium.woff2') format('woff2'),
        url('fonts/TWKEverett-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TWK Everett';
    src: url('fonts/TWKEverett-Regular.woff2') format('woff2'),
        url('fonts/TWKEverett-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




html {
	height:100%;
	font-size: 16px;
}


body {
	font-family: var(--main-font);
	color:var(--text-color);
	background-color: #ffffff;
	font-weight: 300;
	line-height: 1.3;
}

button, .button, [type="submit"], a.button, .has-buttons a{
	border: 1px solid;
	border-radius: 10rem;
	padding: 0.6rem 2.2rem;
	border-color: inherit;
}
button:hover, .button:hover, [type="submit"]:hover, a.button:hover, .has-buttons a:hover, .button.current{
	background-color: var(--primary);
	color: var(--main-bg);
	border-color: var(--primary);
}

h1,.h1{
	font-size: 2.8rem;
	margin-bottom: 3rem;
}
h2,.h2{
    font-size: 2rem;
}
h3,.h3{}

h1,.h1,.h2,h2,.h3,.h3{
	font-weight: 400;
}
h4,.h4,.h5,h5,.h6,.h6{
	font-family: var(--main-font);
	font-weight: 400;
}

.grid-limit{
	max-width: calc(var(--grid-limit) - 30px);
	margin-inline: auto;
}
.bg-dark{
	background-color: var(--darkgray);
}
.bg-blue{
	background-color: var(--blue);
}
.bg-yellow{
	background-color: var(--yellow);
}
.bg-green{
	background-color: var(--green);
}
.bg-orange{
	background-color: var(--orange);
}

@media (min-width: 992px){
	
		
	h1,.h1{
		font-size: 6.3rem;
		margin-bottom: 4rem;
		line-height: 0.9;
	}
	h2,.h2{
    font-size: 4rem;
    margin-bottom: 3rem;
}
	h3,.h3{}
}
@media (max-width: 992px){
	
		
	.grid-limit{
		max-width: calc(100% - 2rem);
	}
}
.rounded{
	border-radius: 2rem;
}

.bg-lightorange,
.bg-cream{
	background-color: var(--cream) !important;
}

.h1.mega-title, h1.mega-title {
	font-size: 3rem;
	margin-bottom: 2.9rem;
}
.aside-menu{
	border: 1px solid;
	border-radius: 1rem;
	padding: 2rem 2rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.aside-menu ul{
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.aside-menu li{
    list-style: none;
}
.aside-menu li a{
    text-decoration: none;
}
.aside-menu li a:hover{}
.aside-menu li.current-menu-item a{}

.has-arrow-list ul{
	padding: 0 0 0 1rem;
	margin-block: 2rem;
}
.has-arrow-list ul li{
	position: relative;
	margin: 0 0 0.4rem;
	padding-left: 0.2rem;
}
.has-arrow-list ul li:before{
	content: '';
	position: absolute;
	width: 0.7rem;
	aspect-ratio: 1;
	background: url(img/svg/arrow_right.svg) no-repeat center center;
	left: 0;
	top: .3rem;
	background-size: 100%;
}
.has-button-links a{
	display: inline-block;
	text-decoration: none;
	border: 1px solid;
	border-radius: 10rem;
	padding: 1rem 3rem 1rem 2rem;
	border-color: inherit;
	background: url(img/svg/arrow_down.svg) no-repeat 90% center;
	color: var(--primary);
}

ul.line-list{
	list-style: none;
	margin: 1rem;
	padding: 0;
}
ul.line-list > li{
	padding-block: 1rem;
	font-size: 1.2rem;
	border-bottom: 1px solid;
}
@media (min-width: 992px){
		
	ul.line-list > li{
		padding-block: 1rem;
		font-size: 2.2rem;
	}
}

@media (min-width: 992px){
	:root {
		--px: 3rem;
		--py: 4rem;
		--header-height: 89px;
		font-size: 0.9rem;
	}
	.flex-lg-none{
		flex: none !important;
	}
	.h1.mega-title,
	h1.mega-title{
		font-size: 6rem;
	}
}

@media (min-width: 1600px){
	html{
		font-size: 17px;
	}
	:root{
		--grid-limit: 1370px;
	}
}

@media (min-width: 1900px){
	html{
		font-size: 18px;
	}
	:root{
		--grid-limit: 1640px;
		font-size: 1.2rem;
		--header-height: 120px;
	}
}

.has-line-list ul{
	padding: 1rem 0px;
	list-style: none;
}
.has-line-list ul li{
	border-top: 1px solid;
	padding-block: 1.3rem;
	font-weight: bold;
}

.has-line-list ul li:last-child{
	border-bottom: 1px solid;
}

.has-line-list ul li a{
	display: block;
	text-decoration: none;
	transition: all .3s;
}
.has-line-list ul li a:hover{
	display: block;
	text-decoration: none;
	color: var(--primary);
	transform: translate3d(5px,0,0);
}


.inview .scaled{
	transition: all 1s ease-in-out;
	opacity: 0;
	transform: scale3d(0.7,0.7,1);
}
.inview.visible .scaled{
	opacity: 1;
	transform: scale3d(1,1,1);
}
.inview .translated{
	transition: all .6s .3s ease-in-out;
	opacity: 0;
	transform: translate3d(0,10px,0);
}
.inview.visible .translated{
	opacity: 1;
	transform: translate3d(0,0px,0);
}

/****************************************************/
/* COLORS */
/****************************************************/


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


@media (min-width: 992px){}

/****************************************************/
/* HEADER */
/****************************************************/


.icon-text{
    text-decoration: none;
    gap: 0.3rem;
    font-size: 1rem;
}
.icon-text svg{
}
.icon-text span{}


body:not(.menu-active) .hamburger-inner,
body:not(.menu-active) .hamburger-inner:after,
body:not(.menu-active) .hamburger-inner:before {
}
.scrolling:not(.menu-active) .hamburger-inner,
.scrolling:not(.menu-active) .hamburger-inner:after,
.scrolling:not(.menu-active) .hamburger-inner:before {
    background-color: #000;
}

#head{
    position: fixed;
    top: 1rem;
    z-index: 1;
    padding-block: 0.6rem;
    z-index: 11;
    left: var(--px);
    transition: all .3s;
    background-color: rgb(246 246 246 / 58%);
    border-radius: 10rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: calc(100% - 2*var(--px));
}
#head .logo{
	width: 140px;
	display: block;
	margin: auto;
}
#head .logo svg{
	display: block;
}
body.page-template-page-home:not(.scrolling):not(.menu-active) #head{
    background-color: #1b1b1b;
    color: #ffffff;
}

body.page-template-page-home:not(.scrolling):not(.menu-active) #head .logo{
	color: #ffffff;
}
body.page-template-page-home:not(.scrolling):not(.menu-active) #head ul.social-menu li:not(:hover):not(.current-menu-item) a{
	background-color: #ffffff;
	color: var(--primary);
}
.menu-active #head{
	background-color: transparent; 
}
#head + #main{
	padding-top: var(--header-height);
}
.page-template-page-home #head + #main{
	padding-top:0 ;
}

#head .head-actions{
    gap: 1rem;
}
#head .head-actions svg{display: block;}
#head .head-actions span{font-size: 0.75rem;}

#cart-link{
	position: relative;
	display: flex;
	align-items: center;
}
#cart-link .cart-count{
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--primary);
	color: #ffffff;
	width: 1rem;
	text-align: center;
	aspect-ratio: 1;
	border-radius: 100%;
	font-size: .7rem;
}
.logged-info{
	text-decoration: none;
}

#cart-link{
	position: relative;
}
#cart-link svg{
	position: relative;
	width: 1.8rem;
}

#logged-info{
}

#logged-info svg{
	width: 1rem;
}

@media (min-width: 992px){
	
	#head{
	left: 50%;
	transform: translateX(-50%);
	}
	#head ul.menu{
	    padding-inline: 1rem;
	    gap: 1rem;
	    transition: all .5s;
	}
	.scrolling #head ul.menu{
	}
	#head ul.menu > li{
	    list-style: none;
	    display: block;
	}
	#head ul.menu > li > a{
	    color: var(--primary);
	    text-decoration: none;
	    padding: 0.6rem 1.9rem;
	    display: block;
	    transition: all .4s;
	}
	#head ul.menu > li.current-menu-item > a{
		background-color: var(--primary);
		color: var(--white);
	}
	#head ul.menu > li:not(.current-menu-item):hover > a{
		background-color: var(--primary);
		color: var(--white);
	}
	#head .head-actions{
		gap: 1.5rem
	}
	#head .head-actions a{
		cursor: pointer;
	}
	
}

.search-form{
    position: relative;
    overflow: hidden;
}
.search-form input[type="text"]{
    -webkit-appearance: none;
    border: none;
    min-height: 2.7rem;
    border-radius: 2rem;
    padding-inline: 2.5rem 2rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid var(--primary);
    outline: none;
    color: var(--primary);
    font-size: 1rem;
}
.search-form input[type="text"]::placeholder{
	color: var(--primary);
}
.search-form button[type="submit"]{
    padding: 0;
    border: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form button[type="submit"]:hover *{
	stroke: #ffffff;
}

#head .search-form input[type="text"]{
    min-height: 2.1rem;
    width: 10rem;
    font-size: 0.8rem;
}

#menu-trigger{
	font-weight: bold;
	transition: all .3s;
	margin-right: 0;
	position: fixed;
	bottom: 0;
	z-index: 2;
	right: 0;
	margin: 2rem;
	background-color: #fff;
	border-radius: 50%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	opacity: 1;
	border: 1px solid #000;
}
.menu-active #menu-trigger{
}
#menu-close{
	transition: all .3s;
	opacity: 0;
	visibility: hidden;
	max-width: 0px;
}
.menu-active #menu-close{
	opacity: 1;
	visibility: visible;
	max-width: 2rem;
}

@media (min-width: 992px){
	#head{
		padding: 1.1rem 0rem 1.1rem 0.6rem;
		max-width: var(--grid-limit);
	}
		
	#head .search-form input[type="text"]{
	    min-width: 14rem;
	}

	#head .search-form{
		transition: all .5s;
		max-width: 500px;
		overflow: hidden;
		opacity: 1;
	}
	.menu-active #head .search-form{
		opacity: 0;
		max-width: 0px;
}

}

/****************************************************/
/* FOOTER */
/****************************************************/


#footer{
    position: relative;
    padding-block: 2rem;
}

#footer .h4,
#footer h4{
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

#footer .logo{
	color: var(--primary);
	padding: 1rem;
}
#footer .logo svg{
	display: block;
	width: 100%;
}

#footer ul.menu{
    padding: 0;
    list-style: none;
}
#footer ul.menu > li{
    margin-bottom: 0rem;
}
#footer ul.menu > li a{
    position: relative;
    text-decoration: none;
    transition: all .3s;
    display: block;
    line-height: 1.4;
}
#footer ul.menu > li.current-menu-item a{
	font-weight: bold;
}
#footer ul.menu > li a:hover{
	border-bottom: 1px solid;
}


@media (min-width: 992px){

		
	#footer{
	    padding-block: 4rem 3rem;
	}
		
	#footer .logo{
		max-width: 60%;
	}
}


#footer:has(.leblume){
    padding-bottom: 4rem !important;
}
#footer .leblume{
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	width: 3rem;
} 
#footer .leblume span{
	position: absolute;
	right: 100%;
	margin-inline: 0.2em;
	top: 50%;
	transform: translate3d(.4rem,-50%,0);
	transition: all .4s ease;
	opacity: 0;
	visibility: hidden;
	font-size: .8em;
	white-space: nowrap;
}
#footer .leblume:hover span{
	transform: translate3d(0rem,-50%,0);
	opacity: 1;
	visibility: visible;
}
#footer .leblume svg{
	display: block;
	width: 100%;
}
#footer .leblume svg *{
	transition: all .3s;
}
#footer .leblume svg .lcls-1{
	fill: transparent;
}
#footer .leblume svg:hover .lcls-1{}
#footer .leblume svg .lcls-2,
#footer .leblume svg .lcls-3,
#footer .leblume svg .lcls-4{
	fill: #ffffff;
}

#footer .leblume svg:hover .lcls-4,
#footer .leblume svg:hover .lcls-1{
	fill: #f8c831;
}
#footer .leblume svg:hover .lcls-3,
#footer .leblume svg:hover .lcls-2{
	fill: #000000;
}

@media (min-width: 992px){

		
	#footer .leblume{
		right: 1rem;
		left: inherit;
	}
}



/****************************************************/
/* HOME */
/****************************************************/



.hero-section{
	position: relative;
	min-height: 290px;
}
.animated-hero .content{
	position: relative;
	z-index: 1;
}

.hero-section .content > *{font-size: ;}
.hero-section{
}
.hero-section .content{
}
.hero-section .content h1,
.hero-section .content .h1{font-size: 3.7rem;}
.hero-section .content p{
    font-size: 1rem;
}
.hero-section .content .button{
    font-size: 1.1rem;
	border: 1px solid;
}
.hero-section .content .button:hover{
    font-size: 1.1rem;
}
.hero-section .scroller{
	position: absolute;
	bottom: 0;
	padding: 1rem;
	width: 5rem;
	text-align: center;
}
.hero-section .scroller svg{
	display: block;
	width: 100%;
}
.hero-section .icon-info{
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 1;
}

.services-home{
    gap: 1rem;
    display: flex;
    flex-direction: column;
}
.services-home > div{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}
.services-home .service{
	background-color: #e1e1e1;
	padding: 1.5rem;
	text-decoration: none;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.services-home .service .title{}
.services-home .service svg{
    aspect-ratio: 1;
    max-width: 4rem;
}
@media (min-width: 992px){
	
		
	.services-home{
	    gap: 1rem;
	}
	.services-home > div{
		gap: 1rem;
	}
	.services-home .service{
		padding: 2rem 3.4rem;
		transition: all .3s;
	}
	.services-home .service:hover{
		background-color: var(--green);
		padding-bottom: 5rem;
	}
	.services-home > div:first-child .service:nth-child(3n+2):hover{
		background-color: var(--yellow);
	}
	.services-home > div:first-child .service:nth-child(3n+3):hover{
		background-color: var(--orange);
	}
	.services-home > div:last-child .service:nth-child(2n+1):hover{
		background-color: var(--blue);
	}
	.services-home > div:last-child .service:nth-child(2n+2):hover{
		background-color: var(--green);
	}
	.services-home .service .title{
		font-size: 5rem;
	}
	.services-home .service svg{
	    max-width: 4rem;
	}
}


#hero-home{
	padding-top: 8rem;
	padding-bottom: 7rem;
}

@media (min-width: 992px){
	
	.hero-section{
	    width: 100%;
	}
	#hero-home{
		padding-top: 11rem;
		padding-bottom: 10rem;
	}

	.hero-section .content h1, .hero-section .content .h1{
	font-size: 6.3rem;
	}
	.hero-section .content p{
		font-size: 2.1rem;
	}
}



/****************************************************/
/* HERO SECTION */
/****************************************************/



.animated-hero .thumb,
.animated-banner .thumb {
    transition: all 1s;
    transform: scale3d(1.1, 1.1, 1);
    filter: blur(7px);
    opacity: 0;
}

.visible.animated-hero .thumb,
.visible.animated-banner .thumb {
    transform: scale3d(1, 1, 1);
    filter: blur(0px);
    opacity: 1;
}

.hero-section.animated-hero .content{
    transition: all 1s .3s ease;
    opacity: 0;
    transform: translate3d(0,5px,0);
}

.visible.animated-hero .content{
    opacity: 1;
    transform: translate3d(0,0,0);
}



.banner{
	padding-block: 3rem;
}
.banner .content{
	.font-size: 1.1rem;
}
.banner .content .h1{
	font-size: 3rem;
}
.banner .sello{
	position: absolute;
	right: 0;
	bottom: -2rem;
	width: 6rem;
}
@media (min-width: 992px){
		
	.banner{
    padding-block: 2rem 1rem;
}
	.banner .content{
		padding-right: 20%;
		min-height: 24rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
		
	.banner .content .h1{
		font-size: 4rem;
	}
	.banner .sello{
		bottom: -2rem;
		width: 12.6rem;
	}
}


@media (min-width: 992px){
	.hero-section .content:after{
		border-left: 0px solid transparent;
		border-right: 50rem solid transparent;
		border-bottom: 12rem solid var(--alt);
	}
		
	.hero-section .content{
		position: relative;
		z-index: 1;
	}
}

.mega-banner{
	padding-block: 5rem;
}
.mega-banner .content{
	.font-size: 1.1rem;
}
.mega-banner .content .h1{
	font-size: 2.8rem;
}
.mega-banner .sello{
	position: absolute;
	right: 0;
	bottom: -2rem;
	width: 6rem;
}
@media (min-width: 992px){
		
	.mega-banner{}
	.mega-banner .content{
		padding-right: 40%;
	}
		
	.mega-banner .content .h1{
		font-size: 5rem;
	}
	.mega-banner .content p{
		max-width: 80%;
	}
	.mega-banner .sello{
		bottom: -2rem;
		width: 12.6rem;
	}
}


@media (min-width: 992px){
	.hero-section .content:after{
		border-left: 0px solid transparent;
		border-right: 50rem solid transparent;
		border-bottom: 12rem solid var(--alt);
	}
		
	.hero-section .content{
		position: relative;
		z-index: 1;
		width: 100%;
	}
}




/****************************************************/
/* PRODUCT ARCHIVE */
/****************************************************/

#product-cats{
    gap: 1rem;
    margin-block: 1rem 3rem;
}
#product-cats a{
	min-width: 130px;
	display: block;
	padding: 1rem;
	border-radius: 1rem;
	background-color: var(--cream);
	text-align: center;
	text-decoration: none;
	font-size: 1.1rem;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	color: var(--primary);
	border: 2px solid var(--cream);
	transition: all .1s;
}

#product-cats a:hover{
	transition-delay: 0s !important;
}
#product-cats a.current{
	border-color: var(--primary);
}
#product-cats a img{
	margin-bottom: 0.4rem;
	object-fit: contain;
	width: 4rem;
	height: 4rem;
}
#product-cats a span{}


.product-list{
    gap: 1rem;
    padding-inline: 0;
    list-style: none;
}
.product-list > *{
    text-align: center;
}


.item-product{
	
}
.item-product .content{
	padding: .87rem;
	font-size: 0.7rem;
}
.item-product .content .product-title{
	font-size: 1.4rem;
}
.item-product .content .excerpt{}


.item-product .thumb-wrapper{}
.item-product .thumb-wrapper img{
	aspect-ratio: .7;
}

@media (min-width: 992px){
		
	#product-cats{
    gap: 0.5rem;
    margin-bottom: 3rem;
    width: 100%;
}
	#product-cats a{
    min-width: 0;
    width: 100%;
}
	
	#product-cats a:hover{
		border-color: var(--primary);
	}
	#product-cats a img{}
	#product-cats a span{
    font-size: 0.9rem;
}


		
	.product-list{
	    gap: 1.8rem;
	}
	.product-list > *{}

	
	.item-product{
		
	}
	.item-product .content{
	}
	.item-product .content .product-title{
	}
	.item-product .content .excerpt{}
	
	
	.item-product .thumb-wrapper{}
	.item-product .thumb-wrapper img{
	}
}


.product-banner{grid-column: span 2; }
.product-banner > a{
    /* height: 100%; */
    padding: 1.1rem;
    text-decoration: none;
}

.product-banner > a .thumb{
	border-radius: 2rem;
}
.product-banner .content{}
.product-banner .content .title{
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
    line-height: 1.1;
}

@media (min-width: 992px){
	
.product-banner{grid-column: span 2; }
.product-banner > a{
    padding: 1.5rem 2.7rem;
    aspect-ratio: 1.7;
}
.product-banner .content{}
.product-banner .content .title{
    font-size: 3.1rem;
    margin-bottom: 2rem;
}

}


.search-filter-query {
    transition: opacity .2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/****************************************************/
/* BLOCKS */
/****************************************************/



@media (min-width: 992px){
	
	.text-block:nth-child(2n+1) .thecontent *:nth-child(2n+1){
		order: 2;
	}
}


/****************************************************/
/* HERO SECTION */
/****************************************************/


.hero-section{}

.hero-section.green-effect{}
.hero-section.green-effect .text-primary{
	color: #353B20;
}

@media (min-width: 992px){
	
	.hero-section{}
}



/****************************************************/
/* TEXT BLOCK */
/****************************************************/



.thecontent{
}
.text-block{
	padding-block: 2rem;
}

.thecontent h1,
.thecontent .h1,
.thecontent h2,
.thecontent .h2{
	color: var(--primary);
}
.thecontent .column-count-2{
	margin-block: 2rem;
}
.thecontent blockquote{
	padding: 2rem 2rem 1rem;
	border-radius: 2rem;
	background-color: #EAE2BF;
	font-size: 1.1rem;
	margin: 1rem auto;
}

@media (min-width: 992px){
	
	.thecontent{font-size: 1.3rem;line-height: 1.3;}
	.thecontent .column-count-2{
		column-count: 2;
		gap: 1rem;
		margin-block: 2rem;
	}
	.thecontent blockquote{
		max-width: 900px;
		padding: 3rem 4rem 2rem;
		margin-block: 5rem 3rem;
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

/****************************************************/
/* SERVICES */
/****************************************************/


.services{
    position: sticky;
}
.services .service{
	display: flex;
	flex-direction: column;
	margin: 0 0 2rem;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	padding: 2rem;
}

.services .service:nth-child(5n+1){
	background-color: var(--yellow);
}
.services .service:nth-child(5n+2){
	background-color: var(--green);
}
.services .service:nth-child(5n+3){
	background-color: var(--lightgray);
}
.services .service:nth-child(5n+4){
	background-color: var(--orange);
}
.services .service:nth-child(5n+5){
	background-color: var(--blue);
}
.services .service .content{
}
.services .service .svg-wrap{
    display: block;
    max-width: 6rem;
}
.services .service .svg-wrap svg{
    display: flex;
    width: 100%;
    aspect-ratio: 1;
}
.services .service h2{
    font-size: 2rem;
}
.services .service a{}


@media (min-width: 992px){
	
	.services{}
	.services .service{
		flex-direction: row;
		padding: 4rem;
		gap: 2rem;
	}
	
	.services .service > *{
		width: 100%;
	}
	.services .service .content{
	font-size: 1.2rem;
	}
	.services .service .svg-wrap{
}
	.services .service .svg-wrap svg{
}
	.services .service h2{
	    font-size: 2.8rem;
	}
	.services .service a:hover{
		background-color: #ffffff;
		border-color: #ffffff;

	}
}


/****************************************************/
/* TEAM */
/****************************************************/

ul#team{
    list-style: none;
    display: flex;
}
ul#team > li{
    margin-bottom: 1rem;
    cursor: pointer;
    
}
ul#team > li .wrap{
	position: relative;
	margin-bottom: 1rem;
	border-radius: 2rem;
}
ul#team > li .wrap:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--orange);
	mix-blend-mode: multiply;
	transition: all .3s;
	opacity: 0;
}
ul#team > li:hover .wrap:after{
	opacity: 1;
}
ul#team > li .wrap img {
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: all 1s;
}
ul#team > li:hover .wrap img {
	transform: scale3d(1.02,1.02,1);
}
ul#team > li .cv-link{
    align-items: center;
    text-decoration: none;
    color: #8c8c8c;
    font-size: 1.2rem;
    font-weight: 400;
    transition: all .3s;
}
ul#team > li .cv-link svg{
    width: 1.2rem;
    transition: all .3s;
}
ul#team > li:hover .cv-link{color: #000000; gap: .8rem;}
ul#team > li:hover .cv-link svg{
	transform: rotate(-45deg);
}
ul#team > li .cv-link:hover svg{}
ul#team > li{}


.modal-team{}
.modal-team .close-modal{
	position: relative;
	width: 2.2rem;
	margin-bottom: 2rem;
}
.modal-team h2,
.modal-team .h2{}
.text-orange{
	color: #E6B28D;
}

@media (min-width: 992px){
	
}



/****************************************************/
/* BUBBLES */
/****************************************************/

.bubble{
	position: absolute;
	aspect-ratio: 1;
	background: radial-gradient( #FCCFBC 22%, #E7F3D0 50%, #ffffff 60%);
	filter: blur(100px);
	width: 81%;
	pointer-events: none;
	z-index: -1;
	top: 0;
	right: -40rem;
	bottom: -20rem;
}

#area-bubble {
  animation: moveBubble 15s linear infinite;
}

@keyframes moveBubble {
  0% {
    transform: translate(0%, 0%) scale(1); /* Esquina superior izquierda */
  }
  15% {
    transform: translate(-60%, 10%) scale(1.9); /* Cerca de la esquina superior derecha */
  }
  35% {
    transform: translate(-80%, 10%) scale(1.5); /* Cerca de la esquina superior derecha */
  }
  50% {
    transform: translate(-90%, 10%) scale(.5); /* Esquina inferior derecha */
  }
  75% {
    transform: translate(-60%, 10%) scale(.7); /* Cerca de la esquina inferior izquierda */
  }
  90% {
    transform: translate(-40%, 10%) scale(.8); /* Cerca de la esquina inferior izquierda */
  }
  100% {
    transform: translate(0%, 0%) scale(1); /* Vuelve al punto inicial */
  }
}

@media (min-width: 992px){
	
}


/* Contenedor del slider */
#animated-text {
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
}

/* Estilos comunes para cada texto */
#animated-text span {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 6s infinite;
}

#animated-text div{
	opacity: 0;
}
/* Asigna distintos delays para que se muestren de forma escalonada */
#animated-text span:nth-child(1) {
  animation-delay: 0s;
}
#animated-text span:nth-child(2) {
  animation-delay: 2s;
}
#animated-text span:nth-child(3) {
  animation-delay: 4s;
}

/* Keyframes para la animaciÃƒÂ³n: entrada y salida */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 1;
    transform: translateY(0);
  }
  43% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
  }
}


