@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
	--tone-red: #E64E3A;
	--tone-blue: #0B3B5C;
    --tone-yellow: #FAECBB;
    --tone-dark: #131E25;
	
	--white: #FFF;
	--dark: #020202;
	--dark-grey: #6C6C6C;
	--success: #7EB76B;
	--error: #DC4646;
	
	--border-grey: #EAEAEA;
	--light-grey: #f8f8f8;
	--border-radius: 5px;
	--container-width: 1040px;
}
  
*,
*::before,
*::after {
box-sizing: border-box;
}
html, body{
    scroll-behavior: smooth;
    margin: 0;
    font-family: 'DM Sans', sans-serif !important;
    color: var(--dark-grey);
}
body.lock-scroll {
    overflow: hidden;
}
[v-cloak]{display: none;}

/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
.tone{color: var(--tone-color);}
.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-secondary{ background-color: var(--tone-secondary);}

.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{
    padding: 12px 30px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2em;
    cursor: pointer;
    border-radius: 0px 23.8095px;
    text-transform: uppercase;
    line-height: 20px;
}
.btn:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.btn.btn-white{
    border: solid 1px white;
    background-color: white;
}
.btn.btn-white:hover{
    border: solid 1px var(--tone-secondary);
    background-color: var(--tone-secondary);
}
.btn.btn-tone{
    color: white;
    border: solid 1px var(--tone-color);
    background-color: var(--tone-color);
}
.btn.btn-tone:hover{
    border: solid 1px var(--tone-dark);
    background-color: var(--tone-dark);
}
.btn.btn-dark{
    background: var(--tone-dark);
     border: solid 1px var(--tone-dark);
     color: white;
}
.btn.btn-dark:hover{
    background: var(--tone-blue);
     border: solid 1px var(--tone-blue);
     color: white;
}



.section-subtitle{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--tone-red);
    margin-bottom: 0 !important;
    letter-spacing: 0.2em;
}
.section-title{
    margin-top: 0 !important;
    color: #353839;
    font-weight: 600;
    font-size: 40px;
}
@media (max-width:992px){
    .section-subtitle{
        font-size: 16px;
    }
}


/**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;
	}
	
}