@charset "utf-8";
body {
	margin: 0;
	max-height: 100vh;
}

.tss_formating {
	display: flex;
	flex-direction: column;
}

footer {
	background-color: forestgreen;
	display: flex;
	flex-direction: column;
	width: 100%;
	position: absolute;
  	bottom: 0;
}
footer2 {
	background-color: forestgreen;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.inline a { 
	text-decoration: none;
	color: #FF0000;
}
.inline a:hover {
	color: #13501D;	
}

/* bttn1 menu links*/
.bttn1 a { 
	text-align: center;
	text-decoration: none;
	display: block;
	color: #000;
	text-transform: uppercase;
	font-weight: 400;
}
.bttn1 a:hover {
	color:#285C12;	
}
.bttn1 a::after {
	content: '';
	display: block;
	height: 5px;
	width: 0%;
	background-color: #000;
	bottom: 0;
	transition: all ease-in-out 250ms;
}
.bttn1 a:hover::after {
	width: 100%;
}
/* footer menu links*/
footer a { 
	text-align: center;
	text-decoration: none;
	display: block;
	color: #FFF;
	text-transform: uppercase;
	font-weight: 400;
}
footer a:hover {
	color:#FFF;	
}
footer a::after {
	content: '';
	display: block;
	height: 5px;
	width: 0%;
	background-color: #000;
	bottom: 0;
	transition: all ease-in-out 250ms;
}
footer a:hover::after {
	width: 100%;
}
/* footer2 menu links*/
footer2 a { 
	text-align: center;
	text-decoration: none;
	display: block;
	color: #FFF;
	text-transform: uppercase;
	font-weight: 400;
}
footer2 a:hover {
	color:#FFF;	
}
footer2 a::after {
	content: '';
	display: block;
	height: 5px;
	width: 0%;
	background-color: #000;
	bottom: 0;
	transition: all ease-in-out 250ms;
}
footer2 a:hover::after {
	width: 100%;
}

/*div table*/
.div-table {
	display: table;
}
.div-table > div {
	display: table-row;
}
.div-table > div > div {
	display: table-cell;
	padding-left: 0.5rem;
}

/*flex table*/
.flex-table {
	display: flex; 
	flex-direction: column;
}
.flex-table > div {
	display: flex;
	
}
.flex-table > div > div {
	 margin: 0 10px;
}