*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }

@media (max-width: 1200px) {
  font-size: 56.5%; }

@media (max-width: 690px) {
  font-size: 50%; }

body {
  box-sizing: border-box; }

body {
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif; }

body p {
  color: #000000;
  font-size: 2.4rem; }
  @media (max-width: 690px) {
    body p {
      font-size: 2rem; } }

.h2 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 5.5rem;
  margin-top: 1rem;
  margin-bottom: .5rem;
  display: inline-block;
  color: #B33156; }
  @media (max-width: 1200px) {
    .h2 {
      text-align: center; } }
  @media (max-width: 690px) {
    .h2 {
      font-size: 3.5rem; } }
  .h2--light {
    font-size: 4rem; }
    @media (max-width: 1200px) {
      .h2--light {
        font-size: 3rem;
        margin-left: 50%;
        transform: translateX(-50%); } }
  .h2--very-light {
    font-size: 3rem; }
    @media (max-width: 1200px) {
      .h2--very-light {
        font-size: 2.5rem;
        margin-left: 50%;
        transform: translateX(-50%); } }
  .h2--secondary {
    color: #000000; }
  .h2--red {
    background-image: linear-gradient(to right, rgba(179, 49, 86, 0.7), #b33156); }

.h3 {
  font-size: 3rem;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
  margin-bottom: 2rem;
  display: inline-block;
  border-top: solid 2px #000000;
  color: #000000; }
  @media (max-width: 1200px) {
    .h3 {
      text-align: center; } }
  @media (max-width: 690px) {
    .h3 {
      font-size: 2.5rem; } }
  .h3--light {
    border: none; }
    @media (max-width: 1200px) {
      .h3--light {
        display: block; } }
  .h3--white {
    color: white; }
  .h3--small {
    font-size: 2.7rem; }
  .h3--primary {
    color: #B33156; }
  .h3--quaternary {
    color: #16667F; }
  .h3--left {
    float: left; }

.h4 {
  font-size: 2.2rem;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
  margin-bottom: 1.2rem;
  color: white; }
  .h4--secondary {
    color: #000000; }
  .h4--grey {
    color: #000000;
    margin-left: 2rem; }
    @media (max-width: 1200px) {
      .h4--grey {
        margin-left: 0rem; } }
  .h4--light {
    text-decoration: none; }
  .h4--small {
    font-size: 1.8rem;
    padding: 1.2rem; }

.h5 {
  font-size: 1.8rem;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
  margin-bottom: 1rem;
  color: #B33156; }

a.green {
  color: #16667F;
  text-decoration: none; }
  a.green:hover {
    text-decoration: underline; }

.primary_title {
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
  position: absolute;
  top: 55%;
  left: 17.5rem;
  padding: 2rem 2.5rem;
  color: white;
  font-size: 3.5rem;
  letter-spacing: 3px; }
  .primary_title span {
    padding: 1rem 2.5rem; }
  @media (max-width: 1200px) {
    .primary_title {
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 1rem 1.5rem;
      font-size: 3rem;
      text-align: center; } }
  @media (max-width: 690px) {
    .primary_title {
      font-size: 2.2rem; } }

.primary_title--main {
  display: inline-block;
  background-image: linear-gradient(to right, rgba(179, 49, 86, 0.5), #b33156);
  font-weight: lighter;
  animation-name: appear_from_bottom;
  animation-duration: 1s; }

.secondary_title {
  position: absolute;
  top: 25%;
  left: 5%;
  color: #B33156;
  font-size: 3rem;
  letter-spacing: 3px;
  text-align: left; }
  .secondary_title span {
    padding: 1rem 2.5rem; }
    @media (max-width: 690px) {
      .secondary_title span {
        padding: 1rem; } }
  @media (max-width: 690px) {
    .secondary_title {
      font-size: 2.2rem;
      top: 25%; } }

.secondary_title--main {
  display: inline-block;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), white);
  animation-name: appear_from_bottom;
  animation-duration: 1s; }

.secondary_title--sub {
  display: inline-block;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
  color: #16667F;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), white);
  animation-name: appear_from_bottom;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: backwards; }

@keyframes appear_from_bottom {
  0% {
    opacity: 0;
    transform: translateY(300px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes twirl {
  0% {
    transform: rotateY(0deg); }
  100% {
    transform: rotateY(90deg); } }

@-webkit-keyframes check {
  50% {
    outline-color: #16667F;
    box-shadow: 0 0 0 12px #16667F, 0 0 0 36px rgba(22, 102, 127, 0.2); }
  100% {
    outline-color: #16667F;
    box-shadow: 0 0 0 0 #16667F, 0 0 0 0 rgba(22, 102, 127, 0); } }

@keyframes check {
  50% {
    outline-color: #16667F;
    box-shadow: 0 0 0 12px #16667F, 0 0 0 36px rgba(22, 102, 127, 0.2); }
  100% {
    outline-color: #16667F;
    box-shadow: 0 0 0 0 #16667F, 0 0 0 0 rgba(22, 102, 127, 0); } }

@keyframes opacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.center {
  margin-left: 50%;
  transform: translateX(-50%); }

.text-centered {
  text-align: center; }

.block-centered {
  margin: 0 auto; }

.u-margin-top-tiny {
  margin-top: 1rem; }

.u-margin-top-small {
  margin-top: 2rem; }

.u-margin-top-smallplus {
  margin-top: 3rem; }

.u-margin-top-medium {
  margin-top: 4rem; }

.u-margin-top-big {
  margin-top: 6rem; }
  @media (max-width: 690px) {
    .u-margin-top-big {
      margin-top: 5rem; } }

.u-margin-top-huge {
  margin-top: 10rem; }
  @media (max-width: 690px) {
    .u-margin-top-huge {
      margin-top: 7rem; } }

.u-margin-bottom-small {
  margin-bottom: 2rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 6rem; }
  @media (max-width: 690px) {
    .u-margin-bottom-big {
      margin-top: 5rem; } }

.u-margin-bottom-huge {
  margin-bottom: 10rem; }
  @media (max-width: 690px) {
    .u-margin-bottom-huge {
      margin-top: 7rem; } }

.u-backface-visibility {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-border-red {
  border: 1px solid rgba(179, 49, 86, 0.2);
  border-radius: 3px;
  padding: 5rem; }

@media (max-width: 600px) {
  .u_padding_responsive {
    padding: 1rem 1.5rem; } }

.slider {
  margin-top: -6rem;
  margin-bottom: 0rem;
  flex-basis: 100%;
  min-height: 45rem;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.slider__nav {
  width: 1.2rem;
  height: 1.2rem;
  margin: 2rem 1.2rem;
  margin-top: 4.5rem;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
  animation: check 0.4s linear forwards; }

.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%; }

.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%; }

.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%; }

.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%; }

.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap; }

.slider__contents {
  height: 100%;
  padding: 1rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.slider__caption {
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase; }

.slider__txt {
  font-size: 2.3rem;
  color: #999;
  max-width: 700px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 2rem 5rem; }

.btn:link, .btn:visited {
  font-size: 2.5rem;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #B33156;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: translateY 0.2s; }
  @media (max-width: 690px) {
    .btn:link, .btn:visited {
      font-size: 2rem; } }

.btn.btn--round {
  border-radius: 10rem;
  font-size: 3rem; }

.btn.btn--square {
  border-radius: 0rem;
  background-image: linear-gradient(to right, #16667f, #16667f); }

.btn.btn--card:link, .btn.btn--card:visited {
  color: white;
  font-size: 4rem;
  border-radius: 0rem;
  padding: 0rem 2rem;
  border: solid 2px white;
  background-color: rgba(0, 0, 0, 0.8); }
  .btn.btn--card:link:hover, .btn.btn--card:visited:hover {
    color: rgba(0, 0, 0, 0.8);
    border: solid 2px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.8); }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.btn.btn-appear_from_bottom {
  animation-name: appear_from_bottom;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: backwards; }

.btn-static:link, .btn-static:visited {
  font-size: 2.5rem;
  padding: 15px 30px;
  background-color: rgba(22, 102, 127, 0.8);
  border: 1px solid rgba(22, 102, 127, 0.8);
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s; }
  @media (max-width: 690px) {
    .btn-static:link, .btn-static:visited {
      font-size: 2rem; } }

.btn-static:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #16667F;
  border: 1px solid rgba(22, 102, 127, 0.8); }

.btn-static.btn-appear_from_bottom {
  animation-name: appear_from_bottom;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: backwards; }

.btn-static-reverse:link, .btn-static-reverse:visited {
  font-size: 2.5rem;
  padding: 15px 30px;
  background-color: white;
  color: #16667F;
  border: 1px solid rgba(22, 102, 127, 0.8);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s; }
  @media (max-width: 690px) {
    .btn-static-reverse:link, .btn-static-reverse:visited {
      font-size: 2rem; } }

.btn-static-reverse:hover {
  background-color: rgba(22, 102, 127, 0.8);
  border: 1px solid rgba(22, 102, 127, 0.8);
  color: white; }

.btn-white {
  background-color: transparent;
  border: 2px solid white;
  margin-top: 0.6rem;
  padding: 1rem;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none; }
  .btn-white:hover {
    background-color: white;
    color: #B33156; }

.btn-click {
  font-size: 1.7rem;
  border: 1px solid #16667F;
  background-color: white;
  color: #16667F;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  -ms-transform: translateY(-2px);
  /* IE 9 */
  -webkit-transform: translateY(-2px);
  /* Safari prior 9.0 */
  transform: translateY(-2px);
  /* Standard syntax */ }

.card {
  height: 25rem;
  text-align: center;
  overflow: hidden;
  border: solid 1px #b33156;
  position: relative; }
  @media (max-width: 1200px) {
    .card {
      margin: 3rem 23rem; } }
  @media (max-width: 690px) {
    .card {
      margin: 3rem 15rem; } }
  @media (max-width: 600px) {
    .card {
      margin: 3rem; } }
  .card ul {
    list-style: none;
    font-size: 2rem;
    width: 80%;
    margin: 0 auto; }
    .card ul li {
      color: #000000;
      padding: 1rem; }
      .card ul li:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.6); }
  .card .cardOver {
    height: 25rem;
    background-color: rgba(179, 49, 86, 0.7);
    width: 100%;
    position: absolute;
    bottom: -25rem;
    transition: all 0.5s; }
    .card .cardOver p {
      margin-top: 7rem;
      color: white;
      font-size: 8rem; }
  .card:hover .cardOver {
    bottom: 0; }

.form_alert .row:not(:last-child) {
  border: solid 0px #B33156;
  border-radius: 4px;
  overflow: hidden;
  background-color: white; }
  @media (max-width: 1200px) {
    .form_alert .row:not(:last-child) {
      background-color: transparent; } }
  .form_alert .row:not(:last-child) .col-1-of-4 {
    background-color: transparent; }
    @media (max-width: 690px) {
      .form_alert .row:not(:last-child) .col-1-of-4 {
        background-color: transparent;
        padding: 1rem 2rem; } }

.form_alert input[type=text], .form_alert input[type=email] {
  width: 100%;
  padding: 2rem 2rem;
  margin-left: 2rem;
  margin-top: 5rem;
  border: 1px solid #ccc;
  border-radius: 4px; }
  @media (max-width: 1200px) {
    .form_alert input[type=text], .form_alert input[type=email] {
      margin-left: 0rem;
      margin-top: 2rem; } }

.form_alert input[placeholder] {
  font-size: 1.5rem; }

.form_alert p {
  font-size: 1.8rem;
  background-color: rgba(216, 216, 216, 0.5);
  padding: 3rem 1.5rem; }
  @media (max-width: 1200px) {
    .form_alert p {
      padding: 2rem 1.5rem;
      margin: 1.5rem 0rem; } }

@media (max-width: 1200px) {
  .form_alert-checkbox {
    width: 60%; } }

@media (max-width: 600px) {
  .form_alert-checkbox {
    width: 100%;
    padding: 1rem 2rem; } }

.form_alert input[type=submit] {
  padding: 1.5rem 3rem;
  background-color: #008686;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: translateY .2s;
  background-image: linear-gradient(to right, #16667f, #16667f);
  border: none; }
  .form_alert input[type=submit]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
  .form_alert input[type=submit]:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.form_job_category p {
  display: inline; }

.form_job_category input[type=submit] {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 2rem;
  padding: 15px 30px;
  background-color: rgba(22, 102, 127, 0.8);
  border: 1px solid rgba(22, 102, 127, 0.8);
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s; }
  .form_job_category input[type=submit]:hover {
    background-color: white;
    color: #16667F;
    border: 1px solid rgba(22, 102, 127, 0.8); }

.form_contact {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 2rem;
  color: #000000; }
  .form_contact a {
    color: #16667F; }
  .form_contact label {
    color: #000000;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2rem; }
  .form_contact input, .form_contact textarea, .form_contact select {
    border: solid 1px #d8d8d8;
    border-radius: 3px;
    padding: 1.2rem 0.5rem;
    color: #000000;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2rem; }
    .form_contact input:focus, .form_contact textarea:focus, .form_contact select:focus {
      border: solid 1px #B33156; }
  .form_contact textarea {
    width: 80%; }
  .form_contact input[type=file] {
    font-size: 1.3rem;
    border: none; }
  .form_contact input[type=submit] {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2rem;
    padding: 15px 30px;
    background-color: rgba(22, 102, 127, 0.8);
    border: 1px solid rgba(22, 102, 127, 0.8);
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s; }
    .form_contact input[type=submit]:hover {
      background-color: white;
      color: #16667F;
      border: 1px solid rgba(22, 102, 127, 0.8); }

.picture-charlotte {
  position: relative;
  background-image: url(../img/charlotte.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
  width: 30rem;
  cursor: pointer; }
  .picture-charlotte img {
    display: none; }
  .picture-charlotte a {
    color: transparent;
    font-family: sans-serif;
    font-size: 3.5rem;
    text-decoration: none; }
  .picture-charlotte--text {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    color: transparent;
    font-size: 2.2rem;
    padding: 0.5rem 1.2rem;
    transition: all 1s; }
    .picture-charlotte--text:hover {
      color: white;
      background-color: rgba(179, 49, 86, 0.8); }
      .picture-charlotte--text:hover a {
        color: white; }
      .picture-charlotte--text:hover img {
        display: inline-block; }

.picture-mathieu {
  position: relative;
  background-image: url(../img/mathieu.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
  width: 30rem;
  cursor: pointer; }
  .picture-mathieu img {
    display: none; }
  .picture-mathieu a {
    color: transparent;
    font-family: sans-serif;
    font-size: 3.5rem;
    text-decoration: none; }
  .picture-mathieu--text {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    color: transparent;
    font-size: 2.2rem;
    padding: 0.5rem 1.2rem;
    transition: all 1s; }
    .picture-mathieu--text:hover {
      color: white;
      background-color: rgba(179, 49, 86, 0.8); }
      .picture-mathieu--text:hover a {
        color: white; }
      .picture-mathieu--text:hover img {
        display: inline-block; }

.icon {
  width: 10rem;
  opacity: 0.8;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem; }
  .icon--finance {
    opacity: 1; }
  @media (max-width: 690px) {
    .icon {
      width: 7rem; } }

.frame {
  height: 25rem;
  width: 25rem;
  border: 1px solid #16667F;
  border-radius: 3px;
  color: transparent;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  padding: 0.5rem; }
  @media (max-width: 1200px) {
    .frame {
      height: 20rem;
      width: 100%; } }
  .frame h3 {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%); }
  .frame:hover {
    color: white;
    border: 1px solid #16667F;
    background-color: rgba(22, 102, 127, 0.8);
    transition: all 0.5s;
    height: 40rem; }
    @media (max-width: 1200px) {
      .frame:hover {
        height: 18rem; } }
    @media (max-width: 600px) {
      .frame:hover {
        height: 20rem;
        font-size: 1.5rem; } }
    .frame:hover h3 {
      display: none; }

.frame-large {
  padding: 0;
  height: 5rem;
  width: auto;
  color: transparent;
  position: relative;
  transition: all 0.9s;
  overflow: hidden; }
  .frame-large .h4 {
    color: #B33156;
    padding-top: none; }
  @media (max-width: 1200px) {
    .frame-large {
      padding: 4rem; } }
  .frame-large:hover {
    color: white;
    height: 35rem;
    width: auto; }

.flex-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto; }
  @media (max-width: 690px) {
    .flex-container {
      font-size: 1.5rem; }
      .flex-container h4, .flex-container h5 {
        font-size: 1.4rem; } }
  .flex-container a {
    text-decoration: none;
    color: #000000; }
  .flex-container .flex-element {
    height: 30rem;
    width: 30rem;
    border: 1px solid #B33156;
    background-color: white;
    margin: 5rem;
    text-align: center;
    padding: 1rem;
    transition: background-color 1s;
    overflow: hidden; }
    @media (max-width: 690px) {
      .flex-container .flex-element {
        margin: 1rem;
        height: 22rem;
        width: 22rem; } }
    .flex-container .flex-element .arrow {
      color: transparent;
      font-size: 4rem;
      margin-left: 15rem; }
      @media (max-width: 690px) {
        .flex-container .flex-element .arrow {
          display: none; } }
    .flex-container .flex-element:hover {
      border: 1px solid white;
      background-color: #16667F;
      color: white; }
      .flex-container .flex-element:hover .arrow {
        color: white;
        font-weight: bold; }
      .flex-container .flex-element:hover .h4, .flex-container .flex-element:hover .h5 {
        color: white; }

.responsive_nav_page {
  display: none; }
  @media (max-width: 1200px) {
    .responsive_nav_page {
      display: block; } }

.responsive_nav_checkbox {
  display: none; }

.responsive_nav_button {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: absolute;
  top: 3rem;
  right: 6rem;
  background-color: white;
  z-index: 2000;
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  cursor: pointer; }
  @media (max-width: 1200px) {
    .responsive_nav_button {
      position: fixed;
      height: 5rem;
      width: 5rem;
      top: 4rem; } }
  @media (max-width: 690px) {
    .responsive_nav_button {
      top: 3rem;
      right: 3rem; } }

.responsive_nav_background {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  position: absolute;
  top: 3.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#b33156, rgba(0, 0, 0, 0.9));
  z-index: 1001;
  transition: transform 0.5s cubic-bezier(0.39, 0.575, 0.565, 1); }
  @media (max-width: 1200px) {
    .responsive_nav_background {
      position: fixed;
      height: 3rem;
      width: 3rem;
      top: 4.5rem; } }
  @media (max-width: 690px) {
    .responsive_nav_background {
      top: 3.5rem;
      right: 3.5rem; } }

.responsive_nav_nav {
  height: 0vh;
  position: fixed;
  top: 6rem;
  right: 10rem;
  z-index: 1500;
  transition: all 0.1s;
  font-size: 0rem;
  opacity: 1;
  width: 0; }
  @media (max-width: 1200px) {
    .responsive_nav_nav {
      right: 5rem; } }
  @media (max-width: 690px) {
    .responsive_nav_nav {
      top: 4rem;
      right: 5rem; } }

.responsive_nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center; }

.responsive_nav_item {
  margin: 2rem; }

.responsive_nav_link:link, .responsive_nav_link:visited {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s; }

.responsive_nav_link:hover, .responsive_nav_link:active {
  background-color: white;
  color: #B33156;
  padding: 0.5rem 2rem; }
  @media (max-width: 600px) {
    .responsive_nav_link:hover, .responsive_nav_link:active {
      padding: 0; } }

.responsive_nav_checkbox:checked ~ .responsive_nav_background {
  transform: scale(100);
  position: fixed; }

.responsive_nav_checkbox:checked ~ .responsive_nav_nav {
  height: 100vh;
  opacity: 1;
  width: 100%;
  top: 0rem;
  right: 0rem;
  position: fixed;
  font-size: 3rem; }

.responsive_nav_checkbox:checked ~ .responsive_nav_button {
  position: fixed; }

.responsive_nav_icon {
  position: relative;
  margin-top: 3rem; }
  @media (max-width: 1200px) {
    .responsive_nav_icon {
      margin-top: 2.5rem; } }
  .responsive_nav_icon, .responsive_nav_icon::before, .responsive_nav_icon::after {
    width: 3rem;
    height: 2px;
    background-color: #000000;
    display: inline-block; }
    @media (max-width: 1200px) {
      .responsive_nav_icon, .responsive_nav_icon::before, .responsive_nav_icon::after {
        width: 2.5rem;
        height: 2px; } }
  .responsive_nav_icon::before, .responsive_nav_icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s; }
  .responsive_nav_icon::before {
    top: -0.8rem; }
  .responsive_nav_icon::after {
    top: 0.8rem; }

.responsive_nav_button:hover .responsive_nav_icon::before {
  top: -1rem; }

.responsive_nav_button:hover .responsive_nav_icon::after {
  top: 1rem; }

.responsive_nav_checkbox:checked + .responsive_nav_button .responsive_nav_icon {
  background-color: transparent; }

.responsive_nav_checkbox:checked + .responsive_nav_button .responsive_nav_icon::before {
  transform: rotate(45deg);
  top: 0; }

.responsive_nav_checkbox:checked + .responsive_nav_button .responsive_nav_icon::after {
  transform: rotate(-45deg);
  top: 0; }

.summary {
  margin: 0;
  margin-right: 10rem;
  padding: 0.5rem !important; }
  @media (max-width: 1200px) {
    .summary {
      margin-right: 0; } }
  .summary ul {
    display: none; }
  .summary--activated {
    margin-bottom: 1rem;
    animation: opacity 1.5s 1 forwards;
    padding: 1rem;
    border-radius: 0.5rem; }
    .summary--activated ul {
      display: block; }
      .summary--activated ul li {
        color: #16667F; }
        @media (max-width: 690px) {
          .summary--activated ul li {
            font-size: 2rem; } }

.header-home {
  background-image: url("../img/indexImgSmall.jpg");
  background-size: cover;
  background-position: right 80%;
  height: 100vh;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif; }
  @media (min-resolution: 192dpi) and (min-width: 600px), (min-width: 1200px) {
    .header-home {
      background-image: url("../img/indexImg.jpg"); } }

.logo_big {
  display: block;
  margin-top: 0;
  margin-left: 20rem; }
  @media (max-width: 1200px) {
    .logo_big {
      margin-left: 5rem; } }
  @media (max-width: 690px) {
    .logo_big {
      margin-left: 1rem; } }
  .logo_big img {
    max-width: 24rem;
    margin-top: 10rem; }
    @media (max-width: 1200px) {
      .logo_big img {
        max-width: 20rem;
        margin-top: 4rem;
        margin-left: 5rem; } }
    @media (max-width: 690px) {
      .logo_big img {
        max-width: 15rem;
        margin-left: 1rem; } }

.logo_small_screen {
  display: none; }
  @media (max-width: 1200px) {
    .logo_small_screen {
      display: block;
      margin-left: 1rem; }
      .logo_small_screen img {
        max-width: 30rem;
        margin-top: 4rem; } }
    @media (max-width: 1200px) and (max-width: 690px) {
      .logo_small_screen img {
        max-width: 15rem;
        position: absolute;
        left: 5%; } }

.navbar-home {
  height: 8.7rem;
  display: block;
  z-index: 1000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  border-bottom: 1px solid black;
  margin-top: -10rem;
  transition: margin-top 0.3s; }
  .navbar-home div {
    display: inline-block; }
    .navbar-home div.float-right {
      float: right;
      margin-right: 6rem; }
      .navbar-home div.float-right a:hover {
        color: #000000;
        background-color: white;
        border: solid 1px #000000; }
  @media (max-width: 1200px) {
    .navbar-home {
      display: none; } }
  .navbar-home.shrink {
    margin-top: 0; }
  .navbar-home a {
    font-size: 2.2rem;
    color: white;
    text-decoration: none;
    padding: 1.2rem;
    margin: 2.5rem;
    margin-right: 5rem;
    font-weight: 900;
    border: solid 1px transparent; }
    .navbar-home a img {
      display: inline-block;
      max-width: 16rem;
      position: absolute;
      left: 0;
      top: 0; }
  .navbar-home img {
    display: none; }

.header-page {
  background-image: url("../img/indexImgSmall.jpg");
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  height: 50rem;
  font-family: 'Oswald', 'Open Sans Condensed', sans-serif; }
  @media (min-resolution: 192dpi) and (min-width: 600px), (-webkit-mi-device-pixel-ratio: 2) and (min-width: 600px), (min-width: 1200px) {
    .header-page {
      background-image: url("../img/indexImg.jpg"); } }
  @media (max-width: 690px) {
    .header-page {
      background-position: 50%;
      height: 35rem; } }

.header-small {
  background-image: url("../img/indexImgSmall.jpg");
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  height: 30rem;
  font-family: 'Open Sans Condensed', sans-serif; }
  @media (min-resolution: 192dpi) and (min-width: 600px), (min-width: 1200px) {
    .header-small {
      background-image: url("../img/indexImg.jpg"); } }
  @media (max-width: 690px) {
    .header-small {
      background-position: 50%;
      height: 20rem; } }

.navbar-page {
  height: 8.7rem;
  display: block;
  z-index: 1000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  border-bottom: 1px solid black;
  transition: margin-top 0.3s; }
  .navbar-page div {
    display: inline-block; }
    .navbar-page div.float-right {
      float: right;
      margin-right: 6rem; }
      .navbar-page div.float-right a:hover {
        color: #000000;
        background-color: white;
        border: solid 1px #000000; }
  @media (max-width: 1200px) {
    .navbar-page {
      display: none; } }
  .navbar-page a {
    font-size: 2.2rem;
    color: white;
    text-decoration: none;
    padding: 1.2rem;
    margin: 2.5rem;
    margin-right: 5rem;
    font-weight: 900;
    border: solid 1px transparent; }
    .navbar-page a img {
      display: inline-block;
      max-width: 16rem;
      position: absolute;
      left: 0;
      top: 0; }
  .navbar-page img {
    display: none; }

.footer {
  font-size: 2rem;
  color: white;
  min-height: 65rem;
  background-image: linear-gradient(to right bottom, #000000, rgba(0, 0, 0, 0.55)); }
  .footer img {
    height: 9rem; }
    @media (max-width: 600px) {
      .footer img {
        height: 8rem; } }
  .footer .row {
    background-color: rgba(255, 255, 255, 0);
    padding-bottom: 3rem; }
    .footer .row:not(:last-child) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
    .footer .row .col-1-of-2 {
      background-color: rgba(255, 255, 255, 0); }
    @media (max-width: 1200px) {
      .footer .row {
        text-align: center; } }
  .footer p {
    font-size: 2rem;
    display: inline-block;
    color: white;
    text-decoration: none; }
  .footer a {
    font-size: 2rem;
    display: inline-block;
    color: white;
    text-decoration: none; }
  .footer-right {
    display: inline-block;
    float: right; }
    @media (max-width: 1200px) {
      .footer-right {
        display: block;
        float: none; } }
  .footer-left {
    display: inline-block;
    float: left; }
    @media (max-width: 1200px) {
      .footer-left {
        display: block;
        float: none;
        margin-bottom: 2rem; } }
  @media (max-width: 600px) {
    .footer .map_block {
      display: none; } }
  .footer .map {
    width: 50rem;
    height: 25rem; }
    @media (max-width: 600px) {
      .footer .map {
        display: none; } }
    @media (max-width: 1200px) {
      .footer .map {
        width: 30rem;
        height: 30rem; } }
    @media (max-width: 690px) {
      .footer .map {
        width: 35rem;
        height: 30rem; } }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 6rem; }
    @media (max-width: 690px) {
      .row:not(:last-child) {
        margin-bottom: 4rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    background-color: white;
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 1200px) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: auto;
          margin-left: auto; } }
    @media (max-width: 1200px) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-1 {
    width: 100%; }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 *6rem) / 3); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 6rem) / 5); }
  .row .col-2-of-3 {
    width: calc(100% - (100% - 2 *6rem) / 3 - 6rem); }
  .row .col-2-of-4 {
    width: calc(2 * (100% - 3 * 6rem) / 4 + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * (100% - 3 * 6rem) / 4 + 2 * 6rem); }

.page-container {
  position: relative;
  max-width: 120rem;
  margin: 1rem auto; }
  @media (max-width: 1200px) {
    .page-container p {
      padding: 0 3rem; } }
  .page-container section, .page-container div {
    padding: 6rem 1rem; }
    @media (max-width: 1200px) {
      .page-container section, .page-container div {
        padding: 2.5rem; } }
    @media (max-width: 690px) {
      .page-container section, .page-container div {
        padding: 1rem; } }
  .page-container .border-bottom {
    border-bottom: 1px solid #d8d8d8; }
  .page-container ul, .page-container li {
    color: #000000;
    font-size: 2.5rem;
    margin-left: 1.5rem; }
  @media (max-width: 1200px) {
    .page-container ul {
      padding: 0 3rem; }
      .page-container ul li p {
        padding: 0rem; } }

@media (max-width: 1200px) {
  .team {
    display: none; } }

td.table-practices {
  width: 30%; }
  @media (max-width: 1200px) {
    td.table-practices {
      display: none; } }
  td.table-practices div {
    border: 1px solid rgba(179, 49, 86, 0.3);
    border-radius: 3px;
    padding: 0; }
  td.table-practices ul {
    list-style-type: none; }
    td.table-practices ul li {
      font-size: 2rem; }

.description-container ul {
  padding: 4rem; }

.description-container li {
  margin: 0rem; }
  .description-container li p {
    padding: 0rem; }

.index_block {
  width: 100%;
  padding: 10rem;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.65)), url(../img/adnSmall.jpg);
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-bottom: solid 1px #d8d8d8; }
  @media (min-resolution: 192dpi) and (min-width: 600px), (min-width: 1200px) {
    .index_block {
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.65)), url("../img/adn.jpg");
      background-size: cover; } }
  @media (max-width: 1200px) {
    .index_block {
      padding: 5rem;
      text-align: center; } }
  @media (max-width: 600px) {
    .index_block {
      padding: 1rem; } }
  .index_block div {
    width: 80%;
    text-align: center; }
    @media (max-width: 1200px) {
      .index_block div {
        width: 100%; } }

.expertise_block {
  min-height: 60rem;
  border-bottom: solid 1px #d8d8d8; }

.testimonial_block {
  text-align: center;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2)), url(../img/testimonial.jpg);
  background-size: cover;
  background-attachment: fixed;
  min-height: 65rem;
  border-bottom: solid 1px #d8d8d8; }
  @media (max-width: 600px) {
    .testimonial_block {
      display: none; } }

.last_jobs {
  min-height: 60rem;
  border-bottom: solid 1px #d8d8d8; }

#email_alert {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2), white), url(../img/alert.jpg);
  background-size: cover;
  background-attachment: fixed;
  min-height: 65rem; }
