@charset "UTF-8";
@font-face {
  font-family: "Sanofi Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Sanofi_Sans-Regular-XSMTS7PK.woff2") format("woff2");
}

@font-face {
  font-family: "Sanofi Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Sanofi_Sans-Bold-C4ON3UHE.woff2") format("woff2");
}

body {
  margin: 0;
  font-family: "Sanofi Sans", sans-serif;
  color: #0d0d0d;
}

header {
  position: fixed;
  top: 0px;
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
  background-color: #ffffff;
}
header .logo {
  min-height: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo svg {
}

main {
  height: cacl(100vh - 75px - 75px);
  margin-top: 75px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #ffffff;
}
p {
  margin: 0px;
  font-size: 16px;
}
p + p {
  margin-top: 16px;
}
.container {
  padding-left: 16px;
  padding-right: 16px;
}
.title {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
}
.message {
  margin-top: 32px;
  text-align: center;
}

footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  border-top: 1px solid #f5f5f5;
  background-color: #ffffff;
}
.copyright {
  min-height: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1280px) {
  main {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
  }
  .title {
    margin-top: 32px;
    font-size: 20px;
  }
  .message {
    margin-top: 32px;
  }
  p + p {
    margin-top: 16px;
  }
}
