@import url("https://use.typekit.net/hwt1gmq.css");
:root{
	--basicColor1: #587F67;
	--basicColor2: #FAA94A;
	--basicColor3: #EECE4A;
	--basicColor4: #E4E6E9;
	--basicColor5: #1A3130;
	--basicWhite: #ffff;
	--basicBlack: #000000;
	--basicColorLight: #cccccc;
	--smallRadius: 10px;
	--basicRadius: 20px;
	--bigRadius: 30px;
	--defaultSpacing:2rem;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	font-size: 20px;
}

.bgOrange{
	background-color: var(--basicColor2);
}

.bgGreen{
	background-color: var(--basicColor1);
}


.bgWhite{
	background-color: var(--basicWhite);
}

.bgBlack{
	background-color: var(--basicBlack);
}

.bgError{
	background-color: #E28B8B !important;
}

.bgValide{
	background-color: #99D6A0 !important;
}

.colorOrange{
	color: var(--basicColor2);
}

.colorGreen {
	color: var(--basicColor1);
}

.colorWhite{
	color: var(--basicWhite);
}

.colorBlack{
	color: var(--basicBlack);
}

.colorGrey {
	color: #B5B5B5;
}

.colorError{
	color: #E28B8B !important;
}

.colorValide{
	color: #99D6A0 !important;
}

.fillWhite path{
	fill: var(--basicWhite);
}

.fillGreen path{
    fill: var(--basicColor1);
}

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

body{
	background-color: var(--basicColor1);
	position: relative;
	max-height: 100dvh;
	height: 100dvh;
	overflow: auto;
}


body section{
	background-color: var(--basicWhite);
	position: relative;
	z-index: 10;
	border-bottom-right-radius: var(--bigRadius);
	border-bottom-left-radius: var(--bigRadius);
	overflow-y: scroll;
}

a{
	text-decoration: none;
	font-size: 1.4em;
	font-weight: 400
}

p{
	line-height: 1.2em;
	font-weight: 300;
}

.bigSpacing {
	padding: calc(var(--defaultSpacing) / 2)
}
.bigSpacingSide {
	padding: 0 calc(var(--defaultSpacing) / 2)
}
.uniformSpacing {
	max-width: 1500px;
	margin: 0 auto;
	width: 100%;
}


h1, h2, h3, h4, h5, h6{
	line-height: 1.2;
	font-weight: 400;
}

p, span, a, ul, li{
	font-weight: 400;
}

.bold {
	font-weight: 700;
}

.taj{
	text-align: justify;
}

.tac{
	text-align: center;
}

.relative {
	position: relative
}

.bgImg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.afterFilter, .afterFilter *{
	position: relative;
	z-index: 10;
}

.afterFilter:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: black;
	opacity: .2;
}

.underline{
    text-decoration: underline;
}

.bold {
	font-weight: 700;
}

.semiBold {
	font-weight: 600;
}

.regular {
	font-weight: 500;
}

.medium {
	font-weight: 400;
}

.light {
	font-weight: 300;
}

.extraLight {
	font-weight: 200;
}

.activeLink {
	opacity: 1;
}

.size40{
	font-size: 2em;
}

.size25{
	font-size: 1.25em;
}

.size20{
	font-size: 1em;
}

.size15{
	font-size: .75em;
}

.size12{
	font-size: .60em;
}

.size10{
	font-size: .5em;
}

.treatmentNotification {
	color: white;
	padding: 1.5em 2em;
	position: fixed;
	bottom: 0;
	right: 0;
	margin-right: 20px;
	margin-bottom: 20px;
	z-index: 100;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1em;
	border-radius: 0.25rem;
}
.treatmentNotification.success {
	background-color: var(--success);
}
.treatmentNotification.error {
	background-color: var(--danger);
}
.treatmentNotification.warning {
	background-color: var(--warning);
}
.treatmentNotification.info {
	background-color: var(--info);
}
.treatmentNotification svg {
	fill: #FFF;
}
.treatmentNotification span {
	font-size: 1.2em;
	margin-bottom: 2px;
}

.hidden{
	display: none !important;
}

@media screen and (min-width: 700px) {
	.bigSpacing {
		padding: calc(var(--defaultSpacing) * 2)
	}
	.bigSpacingSide {
		padding: 0 calc(var(--defaultSpacing) * 2)
	}
	
}

@media screen and (min-width: 900px) {
	.bigSpacing {
		padding: calc(var(--defaultSpacing) * 3)
	}
	
	.bigSpacingSide {
		padding: 0 calc(var(--defaultSpacing) * 3)
	}
}
