@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--tone-color: #0F2C59;
	--tone-beige: #FAEFE3;
    --tone-dark: #a59053;
    --bg-grey: #F1F0EF;
    --tone-purple: #FAF0FE;
	
	--white: #FFF;
	--dark: #031E2C;
	--border-grey: #474747;
	--dark-border-grey: #1a1a1a;
}


body.lock-scroll {
    overflow: hidden;
}
[v-cloak]{display: none;}



/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
.hilda{
	font-family: "Figtree", sans-serif;
}
.tone{color: var(--tone-color);}
.tone-dark{color: var(--tone-dark);}
.white{color: white !important;}
.dark{color: var(--tone-color);}

.bg-tone{ background-color: var(--tone-color);}
.bg-beige{ background-color: var(--tone-beige);}
.bg-grey{ background-color: var(--bg-grey);}
.bg-purple{background-color: var(--tone-purple);}

.italic{font-style: italic}
.uppercase{text-transform: uppercase}
.normal{font-weight: normal !important;}
.bold{font-weight: 600;}
.black{font-weight: 700;}
.medium{font-weight: 500;}
.light{font-weight: 300;}

.text-center{text-align: center;}

.fs10{font-size:10px !important;}
.fs14{font-size:14px !important;}
.fs18{font-size:18px !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;}


@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;
	}
	
}




.contact-form-home .form-group{
	margin-bottom: 15px;
}

.contact-form-home .form-group label{
	font-weight: bold;
	display: inline-block;
	font-size: 20px;
	margin-bottom: 5px;
}
.contact-form-home .form-group input{
	height: 55px;
	line-height: 55px;
}
.contact-form-home .form-group input, .form-group textarea{
	color: var(--dark);
	    font-family: 'Urbanist', sans-serif;
	
	border: none;
    border-bottom: 1px solid #d1d0d0;
    font-size: var(--fs05);
    padding: 5px 15px;
    background-color: #FAFAFA;
    width: 100%;
    margin-bottom: 0;
    transition: margin-bottom .25s ease-in-out;
    -moz-transition: margin-bottom .25s ease-in-out;
    -o-transition: margin-bottom .25s ease-in-out;
    -webkit-transition: margin-bottom .25s ease-in-out;
}
.contact-form-home .form-group input::placeholder, .form-group textarea::placeholder{
	color: #777777 !important;
}
.contact-form-home .form-group input:focus, textarea:focus{
	outline: none;
	border-bottom: 1px solid var(--tone-color);
}
.contact-form-home .form-group input:focus, textarea:focus{
	outline: none;
	border-bottom: 1px solid var(--tone-color);
}

.button.is-primary{
	background-color: var(--tone-color) !important;
}