/***
 * FONTS SHORTCUTS
 **/
html,
body {
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table td,
table th {
  padding: 0;
}

body {
  position: relative;
  background-color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #707070;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[contenteditable] {
  outline: none;
}

/**
* STYLE
 */
.container {
  max-width: 1300px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}

.header-group {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(116deg, #2FADD0 0%, #8CC63E 100%) 0 0 no-repeat padding-box;
  padding-top: 30px;
}
.header-group::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -1000px;
  left: 0;
  width: 200%;
  height: 1000px;
  transform: rotate(-7deg);
  transform-origin: top left;
  background: #ffffff;
}
.header-group > .container {
  position: relative;
}
.header-group > .container > .header {
  display: table;
  width: 100%;
  height: 80px;
}
.header-group > .container > .header > * {
  display: table-cell;
  vertical-align: middle;
  padding: 5px;
}
.header-group > .container > .header > *:first-child {
  padding-left: 0;
}
.header-group > .container > .header > *:last-child {
  padding-right: 0;
}
.header-group > .container > .header > .icon-wrapper {
  width: 60px;
  padding-right: 0;
}
.header-group > .container > .header > .icon-wrapper > .icon {
  background-image: url("/assets/images/logo-blanc.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80px;
  width: 80px;
  position: relative;
  top: -10px;
  left: -7px;
}
.header-group > .container > .header > .title-wrapper {
  font-size: 0;
  padding-left: 0;
}
.header-group > .container > .header > .title-wrapper > * {
  font-size: 30px;
  color: #ffffff;
}
.header-group > .container > .header > .title-wrapper > .app {
  font-weight: 600;
}
.header-group > .container > .header > .contact-button-wrapper {
  text-align: right;
}
.header-group > .container > .header > .contact-button-wrapper > .contact-button {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  padding: 0 30px;
  font-size: 16px;
}
@media (hover: hover) {
  .header-group > .container > .header > .contact-button-wrapper > .contact-button {
    cursor: pointer;
    transition: color 150ms, background-color 150ms, border-color 150ms;
  }
  .header-group > .container > .header > .contact-button-wrapper > .contact-button:hover {
    color: #2FADD0;
    background-color: #ffffff;
  }
}
@media (max-width: 767px) {
  .header-group > .container > .header {
    height: 60px;
  }
  .header-group > .container > .header > .icon-wrapper {
    width: 40px;
  }
  .header-group > .container > .header > .icon-wrapper > .icon {
    height: 60px;
    width: 60px;
    position: relative;
    top: -8px;
    left: -6px;
  }
  .header-group > .container > .header > .title-wrapper > * {
    font-size: 20px;
  }
}
.header-group > .container > .welcome-message-and-map {
  padding-top: 25px;
  font-size: 0;
}
.header-group > .container > .welcome-message-and-map > * {
  vertical-align: top;
  display: inline-block;
  width: 50%;
}
.header-group > .container > .welcome-message-and-map > .welcome-message {
  color: #ffffff;
  min-height: 360px;
  padding-bottom: 40px;
}
.header-group > .container > .welcome-message-and-map > .welcome-message > .title {
  font-weight: bold;
  font-size: 40px;
  padding-bottom: 15px;
}
.header-group > .container > .welcome-message-and-map > .welcome-message > .sub-title {
  font-size: 24px;
  padding-bottom: 40px;
}
.header-group > .container > .welcome-message-and-map > .welcome-message > .go-to-app-button {
  display: inline-block;
  min-height: 50px;
  line-height: 48px;
  border-radius: 25px;
  color: #7EC254;
  padding: 0 60px;
  font-size: 24px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  color: #2FADD0;
}
@media (hover: hover) {
  .header-group > .container > .welcome-message-and-map > .welcome-message > .go-to-app-button {
    cursor: pointer;
    transition: color 150ms, background-color 150ms, border-color 150ms;
  }
  .header-group > .container > .welcome-message-and-map > .welcome-message > .go-to-app-button:hover {
    color: #ffffff;
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  .header-group > .container > .welcome-message-and-map > .welcome-message > .go-to-app-button {
    padding: 0 30px;
    font-size: 20px;
  }
}
.header-group > .container > .welcome-message-and-map > .map-image-container {
  position: relative;
}
.header-group > .container > .welcome-message-and-map > .map-image-container > .map-image {
  position: absolute;
  background-image: url("/assets/images/MAP@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 600px;
  height: 320px;
  top: 40px;
  left: 0;
}
@media (max-width: 1023px) {
  .header-group > .container > .welcome-message-and-map > .welcome-message {
    width: 60%;
  }
  .header-group > .container > .welcome-message-and-map > .map-image-container {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .header-group > .container > .welcome-message-and-map > .welcome-message, .header-group > .container > .welcome-message-and-map > .map-image-container {
    width: 100%;
    text-align: center;
  }
  .header-group > .container > .welcome-message-and-map > .welcome-message {
    min-height: auto;
  }
  .header-group > .container > .welcome-message-and-map > .map-image-container {
    padding-bottom: 50%;
  }
  .header-group > .container > .welcome-message-and-map > .map-image-container > .map-image {
    width: 100%;
    height: auto;
    top: 0;
    bottom: -6vw;
    left: 0;
  }
}

.sub-welcome-message {
  text-align: center;
  padding-top: 20px;
}
.sub-welcome-message > * {
  max-width: 800px;
  margin: 0 auto;
}
.sub-welcome-message > .title {
  color: #525252;
  font-size: 19px;
  font-weight: bold;
  padding-bottom: 30px;
}
.sub-welcome-message > .sub-title {
  color: #707070;
  font-size: 16px;
  line-height: 25px;
}

.center-blocks {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0;
  padding: 30px 0 20px;
}
.center-blocks > * {
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  -webkit-box-flex: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 33.33%;
  -webkit-flex-basis: 33.33%;
  flex-basis: 33.33%;
  font-size: 16px;
  padding: 60px 20px 20px;
}
.center-blocks > * > .block-container {
  position: relative;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  padding: 70px 30px 50px;
}
.center-blocks > * > .block-container > .icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  border-radius: 50%;
  background-color: red;
}
.center-blocks > * > .block-container > .icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  top: 50%;
  left: 50%;
  margin-top: -23px;
  margin-left: -23px;
}
.center-blocks > * > .block-container > .title {
  color: #707070;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 20px;
}
.center-blocks > * > .block-container > .description {
  color: #707070;
  font-size: 14px;
  line-height: 24px;
  max-height: 168px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.center-blocks > * > .block-container > .read-more-button {
  position: absolute;
  right: 30px;
  bottom: 22px;
  line-height: 14px;
  font-size: 14px;
  color: #2FADD0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (hover: hover) {
  .center-blocks > * > .block-container > .read-more-button {
    cursor: pointer;
    transition: color 150ms;
  }
  .center-blocks > * > .block-container > .read-more-button:hover {
    color: #5EBA87;
  }
}
.center-blocks > *.block-moderator-charter > .block-container > .icon {
  background-color: #5EBA87;
}
.center-blocks > *.block-moderator-charter > .block-container > .icon::before {
  background-image: url("/assets/images/Grupo 15.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.center-blocks > *.block-privacy-policy > .block-container > .icon {
  background-color: #86C447;
}
.center-blocks > *.block-privacy-policy > .block-container > .icon::before {
  background-image: url("/assets/images/Grupo 12.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.center-blocks > *.block-credits > .block-container > .icon {
  background-color: #35AFC7;
}
.center-blocks > *.block-credits > .block-container > .icon::before {
  background-image: url("/assets/images/Grupo 10.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .center-blocks > * {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .center-blocks > * {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .center-blocks > * > .block-container {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .center-blocks {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -webkit-align-items: start;
    align-items: start;
  }
}

.footer-group {
  position: relative;
  overflow: hidden;
  background: transparent linear-gradient(64deg, #8CC63E 0%, #2FADD0 100%) 0 0 no-repeat padding-box;
  padding-bottom: 30px;
}
.footer-group > .block-1 {
  position: absolute;
  top: -1000px;
  right: 0;
  width: 200%;
  height: 1000px;
  transform: rotate(7deg);
  transform-origin: bottom right;
  background: #ffffff;
}
.footer-group > .block-2 {
  position: absolute;
  top: 200px;
  right: 0;
  width: 200%;
  height: 1000px;
  transform: rotate(-2.4deg);
  transform-origin: top right;
  background: #ffffff;
}
.footer-group > .container {
  position: relative;
}
.footer-group > .container > .go-to-app-button-container {
  text-align: center;
  padding-top: 130px;
}
.footer-group > .container > .go-to-app-button-container > .go-to-app-button {
  display: inline-block;
  min-height: 50px;
  line-height: 48px;
  border-radius: 25px;
  color: #7EC254;
  padding: 0 60px;
  font-size: 24px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  color: #7EC254;
}
@media (hover: hover) {
  .footer-group > .container > .go-to-app-button-container > .go-to-app-button {
    cursor: pointer;
    transition: color 150ms, background-color 150ms, border-color 150ms;
  }
  .footer-group > .container > .go-to-app-button-container > .go-to-app-button:hover {
    color: #ffffff;
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  .footer-group > .container > .go-to-app-button-container > .go-to-app-button {
    padding: 0 30px;
    font-size: 20px;
  }
}
.footer-group > .container > .copyrights-container {
  margin-top: 80px;
  display: table;
  width: 100%;
}
.footer-group > .container > .copyrights-container > * {
  display: table-cell;
  vertical-align: middle;
  padding: 5px;
}
.footer-group > .container > .copyrights-container > *:first-child {
  padding-left: 0;
}
.footer-group > .container > .copyrights-container > *:last-child {
  padding-right: 0;
}
.footer-group > .container > .copyrights-container > .copyrights {
  font-size: 16px;
  color: #707070;
}
.footer-group > .container > .copyrights-container > .logos {
  text-align: right;
  font-size: 0;
}
.footer-group > .container > .copyrights-container > .logos > * {
  display: inline-block;
  vertical-align: top;
  height: 30px;
}
.footer-group > .container > .copyrights-container > .logos > .synchonicity-logo {
  background-image: url("/assets/images/synchronicity@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
}
.footer-group > .container > .copyrights-container > .logos > .mandat-logo {
  background-image: url("/assets/images/mandat-international@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
}
.footer-group > .container > .founders {
  font-size: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}
.footer-group > .container > .founders::after {
  content: "";
  display: block;
  clear: both;
}
.footer-group > .container > .founders > * {
  display: table;
  width: 50%;
  height: 40px;
  float: left;
  margin: 5px 0;
}
.footer-group > .container > .founders > * > * {
  display: table-cell;
  vertical-align: middle;
  padding: 5px;
}
.footer-group > .container > .founders > * > *:first-child {
  padding-left: 0;
}
.footer-group > .container > .founders > * > *:last-child {
  padding-right: 0;
}
.footer-group > .container > .founders > * > .flag-container {
  width: 1px;
}
.footer-group > .container > .founders > * > .flag-container > .flag {
  height: 40px;
  width: 60px;
}
.footer-group > .container > .founders > * > .text-container {
  color: #707070;
  font-size: 12px;
}
@media (max-width: 899px) {
  .footer-group > .container > .founders > * {
    width: 100%;
  }
}
.footer-group > .container > .founders > .europe .flag {
  background-image: url("/assets/images/Flag_of_Europe.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-group > .container > .founders > .switzerland .flag {
  background-image: url("/assets/images/Flag_of_Switzerland.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=style.css.map */
