/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
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;
}





body {
  padding: 4rem;
  background-color: #222222;
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  body {
    padding: 3rem;
  }
}

ul {
  list-style: none;
}

th {
  white-space: nowrap;
}

a {
  color: #4d83b2;
  text-decoration: none;
  width: fit-content;
}

a:hover {
  text-decoration: underline;
}

span {
  line-height: 1.2em;
}

span.normal {
  font-weight: 400;
}

span.small {
  font-size: 0.85rem;
}

p {
  line-height: 1.4rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-weight: 400;
}

.center {
  display: flex;
  justify-content: center;
}

.landing {
  max-width: 650px;
}

.cv-container {
  position: relative;
  flex: 1;
  background-color: #ffffff;
  max-width: 1024px;
  padding: 4rem;
  color: #2a2a2a;
}

.highlighted {
  position: relative;
  width: fit-content;
}

.highlighted::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -6px;
  bottom: -3px;
  left: -6px;
  background: rgba(0, 136, 255, 0.08);
  pointer-events: none;
}

.profile-image {
  position: relative;
  width: 155px;
  font-size: 0;
}

.profile-image img {
  width: 100%;
}

.mb {
  margin-bottom: 2.8rem;
}

.mb-medium {
  margin-bottom: 2.5rem;
}

.mb-small {
  margin-bottom: 1.8rem;
}

.mb-x-small {
  margin-bottom: 1rem;
}

.mb-xx-small {
  margin-bottom: 0.23rem;
}

.row {
  display: flex;
}

.row .column:first-child {
  width: 25%;
}

.row .column:last-child {
  flex: 1;
}

.row.indent {
  padding-left: 13.5%;
}

.row.indent .column:first-child {
  width: 22%;
}

.column {
  display: flex;
  position: relative;
  flex-direction: column;
  padding-right: 1rem;
}

.column.connect::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 26px;
  width: 2px;
  height: calc(100% - 45px);
  background: #e8e8e8;
}

.image {
  display: flex;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 8%;
  font-size: 0;
  z-index: 1;
}

.image img {
  width: 65px;
}

.image.small img {
  width: 54px;
}

body.prepare-for-export {
  padding: 0;
  background-color: white;
}

.prepare-for-export .cv-container {
  max-width: initial;
}

.prepare-for-export .experience .codedazur {
  padding-top: 4.5rem;
}

.prepare-for-export .experience .codedazur-old {
  padding-top: 8rem;
}