/*---------------------------------*/
/*BASE STRUCT*/
/*---------------------------------*/

:root 
{
	--primary-color: #d60606;
	--secondary-color: #ff8c2d;
	--primary-dark-color: #726342;
	--white: #FFFFFF;
	--light-color: #ff9393;
	--black: #000000;
	--body-color: #FFFFFF;
	--text-color: #545f68;
	--font-title: Cabin,sans-serif;
	--font-bold: MontserratBold,sans-serif;
	--font-text: MontserratLight,sans-serif;
}

/*GLOBAL*/

@font-face {
    font-family: 'Cabin';
    src: url('../fonts/cabin-bold-webfont.woff2') format('woff2'),
         url('../fonts/cabin-bold-webfont.woff') format('woff'),
         url('../fonts/cabin-bold-webfont.ttf') format('truetype'),
         url('../fonts/cabin-bold-webfont.svg#cabinbold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display:swap;

}
@font-face {
    font-family: 'MontserratBold';
    src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-bold-webfont.woff') format('woff'),
         url('../fonts/montserrat-bold-webfont.ttf') format('truetype'),
         url('../fonts/montserrat-bold-webfont.svg#montserratbold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display:swap;

}
@font-face {
    font-family: 'MontserratLight';
    src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-light-webfont.woff') format('woff'),
         url('../fonts/montserrat-light-webfont.ttf') format('truetype'),
         url('../fonts/montserrat-light-webfont.svg#montserratlight') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display:swap;

}



body {
  background: #FFFFFF;
  color: var(--text-color);
  overflow-y: auto;
  font-size: 17px;
  font-family: var(--font-text);
  margin: 0;
  line-height: 1.7;
}


body.modal-open{
	overflow: hidden;
}
@media screen and (min-width:1024px) {
	body.is-toggle-open{
	overflow: hidden;
}
}
body.loaded .loader{
	opacity: 0;
	display: none;
}
strong{
	font-family: var(--font-bold);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	color: var(--text-color);
	font-weight: normal;
}


h1 {
	/* letter-spacing: 4px; */
	font-size: 30px;
	margin: 30px 0 20px;
	color: var(--black);
	line-height: 1.2;
	font-weight: normal;
}

h2 {font-size: 28px;margin-top: 30px;margin-bottom: 15px;line-height: 1.3;color: var(--black);}

h3 {
	font-size: 25px;
	margin-top: 30px;
	margin-bottom: 15px;
}

h4 {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 15px;
}

h5 {
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 14px;
}

h6 {
	font-size: 1.1vw;
}


.alert-color{
	color: red;
}

.mention{
	font-size: 12px;
	font-style: italic;
	font-family: var(--font-text);
	text-align: center;
	/* margin-top: 15px; */
	display: block;
	/* color: var(--text-color); */
}

p + ul{
	margin-top: -15px!important;
}

p, ul, ol{
	margin-bottom: 20px;
	margin-top: 0;
}

ul, ol{
	margin-left: 30px;
	padding: 0;
}
 
ul:not(.no-bullet) li, ol li{
	position: relative;
	padding-left: 15px;
	padding-bottom: 5px;
}

ol {
  counter-reset: listCount;
  margin-left: 26px;
}
ol li {
  counter-increment: listCount;
  padding-left: 23px;
  padding-bottom: 15px;
}
ol li::before {
  content: counter(listCount) ". ";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  line-height: 1;
  top: 4px;
}

ul:not(.no-bullet) li:before{
	content: "";
	display: block;
	height: 5px;
	width: 5px;
	display: block;
	top: 10px;
	content: " ";
	z-index: 9999999;
	background-color: var(--primary-color);
	border-radius: 100%;
	position: absolute;
	left: 0;
}

.no-bullet{
	margin: 0;
	/* line-height: 1; */
}

ul li, ol li{
	line-height: 1.4;
}
.inline-list{
	line-height: 1;
}
.inline-list li{
	display: inline-block;
}
.inline-list li:not(:last-of-type){
	margin-right: 15px;
}
a{
	text-decoration: none;
	color: var(--primary-color);
	/* border-bottom: dashed 1px rgba(4, 95, 189, 0.4); */
	/* line-height: 1; */
	transition: 250ms all ease-in-out;
	line-height: inherit;
	cursor: pointer;
}

.content a,  .home-content a, .contentsections .tc_content a
{
	border-bottom: dotted 1px var(--primary-color);
	font-family: var(--font-bold);
}
.content a:hover, .home-content a:hover, .contentsections .tc_content a:hover{
	border-bottom: 1px dotted var(--light-black);
	color: var(--light-black);
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}

.button {
	color: var(--white);
	text-decoration: none;
	text-align: center;
	padding: 15px 30px;
	/* margin-left: 6px; */
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	box-sizing: border-box;
	font-family: var(--font-bold);
	font-weight: bold;
	font-size: 14px;
	/* font-weight: bold; */
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	background-color: var(--primary-color);
	position: relative;
	z-index: 0;
	/* border-radius: 100%; */
	border-radius: 1000px;
	border: solid 2px;
	border: solid 2px var(--primary-color);
}

.button.secondary{
	background-color: var(--primary-dark-color);
	 color: var(--white);
}
.button.secondary:hover{
	background-color: var(--black);
	color: var(--white);
}
.button:hover, .button:focus, .button:active {
  /* color: var(--white)!important; */
  /* background-color: var(--primary-dark-color); */
  /* border-radius: 0 20px 0 20px; */
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.button.white{
	background-color: var(--white);
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.button.white:hover{
	/* background-color: var(--text-color); */
	/* color: var(--white)!important; */
}
.button.black{
	background-color: var(--black);
	color: var(--white);
}

.button.hollow{
	background: none;
	/* border: solid 1px var(--text-color); */
	color: var(--text-color);
}

.button.hollow:hover{
	/* background: var(--primary-dark-color); */
	/* border: solid 1px var(--text-color); */
	/* color: var(--text-color); */
}

.button.hollow.white{
	background: none;
	border-color: var(--white);
	color: var(--white);
}

.button.hollow.white:hover{
	background: var(--white);
	/* border-radius: 0 20px 0 20px; */
	color: var(--primary-color);
}

.button.small{
	font-size: 12px;
	padding: .85em 1em;
}
.doc-link .size{
	font-size: 14px;
	font-style: italic;
}

.show-for-sr {
    position: absolute!important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}