@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&family=Merriweather:wght@300;400;700;900&display=swap');

:root {
	--bg-color: #F6F1EB;
	--tone-color: #5F6C61;
	--tone-light: #C1BFA9;
	--tone-pink: #BE145C;
	--tone-dark: #394A29;
	
    --tone-yellow: #FFF0D3;
    --tone-green: #E5ECB3;

	--white: #FFF;
	--dark: #394A29;
	--dark-grey: #F6F1EB;
	--success: #7EB76B;
	--error: #DC4646;
	
	--border-grey: #EAEAEA;
	--light-grey: #f8f8f8;
	--border-radius: 5px;
	--container-width: 1040px;

    --main-font: 'Manrope', sans-serif;

}
  
*,
*::before,
*::after {
box-sizing: border-box;
}
html, body{
    scroll-behavior: smooth;
    margin: 0;
    font-family: var(--main-font) !important;
    background-color: #F6F1EB;
    color: var(--tone-dark) !important;
}
body.lock-scroll {
    overflow: hidden;
}
[v-cloak]{display: none;}

.container-fluid{
	max-width: 1600px;
}
.container{
	max-width: 900px;
    padding: 0 15px;
}


.merriweather{font-family: 'Merriweather', cursive !important;}


/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
.tone{color: var(--tone-color);}
.tone-pink{color: var(--tone-pink);}
.tone-light{color: var(--tone-highlight);}
.tone-dark{color: var(--tone-dark);}
.secondary{color: var(--tone-secondary);}
.tone-red{color: var(--tone-red);}
.white{color: white !important;}
.dark{color: var(--dark);}
.dark-grey{color: var(--dark-grey);}
.light-grey{color: var(--text-light);}
.success{color: var(--success);}
.error{color: var(--error);}

.bg-tone{ background-color: var(--tone-color);}
.bg-yellow{ background-color: var(--tone-yellow);}

.italic{font-style: italic}
.uppercase{text-transform: uppercase}
.normal{font-weight: normal !important;}
.bold{font-weight: 600;}
.medium{font-weight: 500;}
.light{font-weight: 300;}

.text-center{text-align: center;}

.fs10{font-size:10px !important;}
.fs14{font-size:14px !important;}
.fs12{font-size:12px !important;}
.fs20{font-size:20px !important;}
.fs24{font-size:24px !important;}
.fs26{font-size:26px !important;}
.fs28{font-size:28px !important;}
.fs36{font-size:36px !important;}
.fs48{font-size:48px !important;}
.fs64{font-size:64px !important;}
.fs100{font-size:100px !important;}

.page-section{
    padding: 80px 0
}
.page-section.xl{
    padding: 120px 0
}

.btn{
	transition: all 0.3s;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Merriweather' !important;
}
.btn:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.btn.btn-white{
	color: var(--tone-dark);
    border: solid 1px white;
    background-color: white;
}
.btn.btn-white:hover{
    border: solid 1px var(--tone-light);
    background-color: var(--tone-light);
}
.btn.btn-tone{
    color: var(--tone-dark);
    border: solid 1px var(--tone-color);
    background-color: transparent;
}
.btn.btn-tone:hover{
    border: solid 1px var(--tone-color);
    background-color: var(--tone-color);
    color: white;
}
.btn.btn-dark{
    border: solid 1px var(--tone-color);
    background-color: var(--tone-color);
    color: white;
}
.btn.btn-dark:hover{
    background: var(--tone-dark);
     border: solid 1px var(--tone-dark);
     color: white;
}
.btn-block{
	width: 100%;
}



.section-subtitle{
    color: var(--tone-pink);
}
.section-title{
    font-size: 42px;
	color: var(--tone-dark);
}
@media (max-width:992px){
    .section-subtitle{
        font-size: 16px;
    }
}
@media (max-width:768px){
    .center-mobile{
    	text-align: center;
    }
    .center-mobile .d-flex{
    	justify-content: center;
    	align-items: center;
    }
    .center-mobile img{
    	margin: auto;
    }
}

/**COOKIES AND AGE BANNERS**/
.cookies-banner{
	position: fixed;
	bottom: 25px;
	right: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: black;
	color: white;
	max-width: 90%;
	margin: auto;
	z-index: 9999;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		left: unset;
		right: 25px;
		bottom: 25px;
	}
	
}

