@charset "utf-8";
/*-------------------------------------------- RESET CSS */
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, img, ins, kbd, q, s, samp,
small, b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, embed, menu, nav {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit; 
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------------------------------- GENERALITES */
* {
    box-sizing: border-box;
	}
body {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 16px;
    background-color: #fff;
}
body, html {
    height: 100%;
    width: 100%;
}
html {	
	font-size: 62.5%;
	font-weight: 400;
}
a {
	 text-decoration: none;
}
.flexy {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	padding: 0;
	box-sizing: border-box;
}
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.flex-end {
	justify-content: flex-end;
}
.flex-space-between {
	justify-content: space-between;
}
.flex-column {
	flex-direction: column;
}
.flex-center {
	justify-content: center;
}
.item-align-center {
	align-items: center;
}
table {
	width: 100%
}

/*--------------------------------------------------- */
.card {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    width: 100%;
    max-width: 1200px;
	height: 100vh;
    padding: 5px 16px;
    margin-right: auto;
    margin-left: auto;
    z-index: 2;
}
.sagax_logo img {
	width: 150px;
}
.sagax_coord {
	padding: 20px 0;
	text-align: center;
	line-height: 1.5;
}
.sagax_tel {
	text-align: center;
	line-height: 1.5;
}
.sagax_tel span {
	display: flex;
	align-items: center;
}
.sagax_tel span img {
	margin-right: 8px;
}
.sagax_tel span:nth-child(odd) {
	margin-right: 30px;
}
.sagax_mail {
	padding: 10px 0;
	text-align: center;
	line-height: 1.5;
}
.sagax_mail span {
	display: flex;
	align-items: center;
}
.sagax_mail span img {
	margin-right: 8px;
}
.sagax_mail a {
	color: rgb(0 157 220);
}