* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Crimson Pro";
  font-size: 20px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display";
}

h1,
h2 {
  font-size: 48px;
  font-weight: bold;
}

h3 {
  font-size: 36px;
  font-weight: normal;
}

a {
  opacity: 1;
  transition: 0.25s opacity ease-out;
}
a:hover {
  opacity: 0.65;
}

/* Colors */
.u-bg-primary {
  background-color: #121729;
  color: #fff;
}

.u-bg-secondary {
  background-color: #92d0d2;
  color: #121729;
}

.u-bg-neutral {
  background-color: #ffffff;
  color: #121729;
}

@media (max-width: 1440px) {
  body {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  h1,
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  h1,
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
}
.o-layout {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.o-layout.-center {
  justify-content: center;
}

.o-layout_item {
  padding: 0 15px;
}
.-gutter-y .o-layout_item {
  margin-bottom: 30px;
}
.-gutter-y .o-layout_item:last-of-type {
  margin-bottom: 0;
}
.o-layout_item.u-1\/1 {
  width: 100%;
}
.o-layout_item.u-1\/2 {
  width: 50%;
}
.o-layout_item.u-1\/3 {
  width: 33.3333333333%;
}
.o-layout_item.u-2\/3 {
  width: 66.6666666667%;
}
.o-layout_item.u-1\/4 {
  width: 25%;
}
.o-layout_item.u-3\/5 {
  width: 60%;
}
.o-layout_item.u-2\/5 {
  width: 40%;
}
@media (max-width: 1440px) {
  .o-layout_item.u-1\/1\@desktop {
    width: 100%;
  }
  .o-layout_item.u-1\/2\@desktop {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  .o-layout_item.u-1\/1\@laptop {
    width: 100%;
  }
  .o-layout_item.u-1\/2\@laptop {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .o-layout_item.u-1\/1\@tablet {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .o-layout_item.u-1\/1\@mobile {
    width: 100%;
  }
}

.o-section {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
.o-section.-ofvisible {
  overflow: visible;
}
.o-section.-nobottom {
  padding-bottom: 0;
}

.o-container {
  padding: 0 6vw;
}

.o-carousel_item {
  width: 100%;
}
.o-carousel_item img {
  display: block;
  width: 100%;
  height: auto;
}

.flickity-viewport {
  transition: height 0.2s;
}

@keyframes button-bg-pulse {
  0% {
    background-color: #ffffff;
    color: #121729;
  }
  50% {
    background-color: #45748b;
    color: #fff;
  }
  100% {
    background-color: #ffffff;
    color: #121729;
  }
}
.c-btn {
  text-decoration: none;
  font-size: 20px;
  font-weight: normal;
  color: #121729;
  background-color: #92d0d2;
  border: 0;
  font-family: "Crimson Pro";
  border-radius: 30px;
  padding: 15px 20px 18px;
  text-align: center;
  transition: 0.25s background-color ease-in, 0.25s color ease-in;
}
.c-btn.reverse {
  background-color: #121729;
  color: #ffffff;
}
.c-btn.reverse:hover {
  background-color: #92d0d2;
  color: #121729;
}
.c-btn.white {
  background-color: #ffffff;
  animation: button-bg-pulse 3s ease-in-out infinite;
}
.c-btn.accent {
  background-color: #ffffff;
  animation: button-bg-pulse 3s ease-in-out infinite;
}
.c-btn:hover {
  opacity: 1;
  background-color: #45748b;
  color: #ffffff;
}

@media (max-width: 1440px) {
  .c-btn {
    font-size: 16px;
  }
}
.c-footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 0;
}

.c-footer_infos {
  font-size: 20px;
}
.c-footer_infos a {
  color: #fff;
  text-decoration: none;
}
.c-footer_infos strong {
  font-weight: bold;
  font-size: 36px;
}

.c-footer_bottom {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #fff;
}
.c-footer_bottom p {
  margin: 0;
}
.c-footer_bottom a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.c-footer_fixed {
  position: fixed;
  bottom: 60px;
  right: 60px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
  transform: translateX(100%);
  opacity: 0;
  transition: 0.25s opacity ease-in, 0.25s transform ease-in;
}
.is-scrolled-down .c-footer_fixed {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1440px) {
  .c-footer_infos {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .c-footer_infos strong {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .c-footer_top {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-footer_bottom {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .c-footer_bottom p {
    margin-bottom: 12px;
  }
  .c-footer_fixed {
    bottom: 6vw;
    right: 6vw;
  }
}
.gform_heading,
.gfield_required {
  display: none !important;
}

.gfield_label {
  color: #fff !important;
  font-weight: bold !important;
  font-size: 20px !important;
  font-family: "Playfair Display" !important;
}

.gfield input {
  font-size: 16px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  padding: 8px 20px !important;
  height: auto !important;
  width: 100% !important;
}
.gfield input:focus {
  outline: none !important;
}
.gfield input::-moz-placeholder {
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  opacity: 0.5 !important;
  font-size: 16px !important;
}
.gfield input::placeholder {
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  opacity: 0.5 !important;
  font-size: 16px !important;
}
.gfield select {
  font-size: 16px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  padding: 8px 20px !important;
  height: auto !important;
  width: 100% !important;
}
.gfield select:focus {
  outline: none !important;
}
.gfield textarea {
  font-size: 16px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  padding: 20px !important;
  height: auto !important;
  width: 100% !important;
  resize: none !important;
}
.gfield textarea:focus {
  outline: none !important;
}
.gfield textarea::-moz-placeholder {
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  opacity: 0.5 !important;
  font-size: 16px !important;
}
.gfield textarea::placeholder {
  font-family: "Crimson Pro" !important;
  color: #45748b !important;
  opacity: 0.5 !important;
  font-size: 16px !important;
}
.gfield.gfield--type-section {
  border-block-end: 1px solid #fff;
}

#field_1_15 {
  border-top: 1px solid #fff;
}

#field_1_20 {
  border-bottom: 1px solid #fff;
  padding-bottom: 45px;
}

.gform_button {
  text-decoration: none !important;
  font-size: 20px !important;
  font-weight: normal !important;
  color: #121729 !important;
  background-color: #92d0d2 !important;
  border-radius: 30px !important;
  padding: 15px 20px 18px !important;
  text-align: center !important;
  transition: 0.25s background-color ease-in, 0.25s color ease-in !important;
  border: 0 !important;
  margin-left: auto !important;
}
.gform_button:hover {
  opacity: 1 !important;
  background-color: #45748b !important;
  color: #ffffff !important;
}

.gfield_checkbox {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
}
.gfield_checkbox#input_1_20 .gchoice, .gfield_checkbox#input_1_14 .gchoice {
  width: 100% !important;
}
.gfield_checkbox .gchoice {
  width: 30% !important;
  align-items: flex-start !important;
}
.gfield_checkbox input {
  padding: 4px !important;
  border-radius: 0 !important;
}
.gfield_checkbox input:before {
  color: #121729 !important;
  accent-color: #121729 !important;
}
.gfield_checkbox label {
  color: #fff !important;
  font-family: "Crimson Pro" !important;
  font-size: 16px !important;
}

#gform_fields_1 #field_1_14 {
  background-color: #92d0d2;
  padding: 45px 30px 30px;
  border-radius: 15px;
  color: #121729 !important;
}
#gform_fields_1 #field_1_14 legend.gfield_label {
  transform: translateY(40px);
  color: #121729 !important;
}
#gform_fields_1 #field_1_14 .gform-field-label {
  color: #121729 !important;
  cursor: pointer !important;
}

.c-header_topbar {
  background-color: #92d0d2;
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-header_topbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.c-header_topbar ul li {
  list-style-type: none;
  margin-right: 30px;
}
.c-header_topbar ul li a {
  display: flex;
  align-items: center;
  color: #121729;
  text-decoration: none;
  font-size: 20px;
}
.c-header_topbar ul li a img {
  margin-right: 12px;
}
.c-header_topbar ul li:last-of-type {
  margin-right: 0;
}

.c-header_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #121729;
  position: relative;
  padding: 60px 6vw 60px 0;
}

.c-header_left {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: calc(23vw + 120px);
  flex-grow: 1;
}

.c-header_logo {
  display: block;
  position: absolute;
  width: 23vw;
  left: 50px;
  top: 0;
  background-color: #121729;
  padding: 0 0 60px;
  border-radius: 0 0 20px 20px;
  z-index: 5;
}
.c-header_logo img {
  width: 85%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.c-header_logo:hover {
  opacity: 1;
}

.c-headerTrigger {
  border: 0;
  border-radius: 15px;
  background-color: transparent;
  border: 1px solid #92d0d2;
  padding: 10px 15px;
  display: none;
}
.c-headerTrigger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 6px;
}
.c-headerTrigger span:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1440px) {
  .c-header_topbar ul li a {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .c-header_wrap {
    padding: 45px 6vw 45px 0;
  }
  .c-header_logo {
    padding-top: 0;
  }
  .c-header_left {
    justify-content: flex-end;
  }
  .c-header_right {
    display: none;
  }
}
@media (max-width: 768px) {
  .c-header_topbar {
    padding: 10px 6vw;
  }
  .c-header_wrap.-navopen .c-nav {
    transform: translateX(0);
  }
  .c-header_wrap .c-nav {
    position: absolute;
    top: 70px;
    right: -6vw;
    min-width: 50vw;
    background-color: #121729;
    z-index: 100;
    min-height: calc(100vh - 70px);
    padding: 45px 6vw;
    transform: translateX(100%);
    transition: 0.25s transform ease-in;
  }
  .c-header_wrap .c-nav ul {
    flex-direction: column;
  }
  .c-header_wrap .c-nav ul li {
    margin-bottom: 30px;
  }
  .c-header_logo {
    padding-top: 20px;
    padding-bottom: 20px;
    top: -30px;
    width: 25vw;
    left: 6vw;
  }
  .c-header_wrap {
    padding: 30px 6vw 30px 0;
  }
  .c-header_topbar ul li a {
    font-size: 14px;
  }
  .c-headerTrigger {
    display: block;
    cursor: pointer;
    transition: 0.25s background-color ease-in;
  }
  .-navopen .c-headerTrigger span:nth-child(1) {
    transform: translate(0px, 8px) rotate(-45deg);
  }
  .-navopen .c-headerTrigger span:nth-child(2) {
    opacity: 0;
  }
  .-navopen .c-headerTrigger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .c-headerTrigger span {
    transition: 0.25s all ease-in;
  }
  .c-headerTrigger:hover {
    background-color: #45748b;
  }
}
.c-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.c-nav ul li {
  list-style-type: none;
  margin-right: 3vw;
}
.c-nav ul li a {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}
.c-nav ul li:last-of-type {
  margin-right: 1vw;
}

@media (max-width: 1200px) {
  .c-nav ul li:last-of-type {
    margin-right: 0;
  }
}
.c-social {
  margin: 0;
  padding: 0;
  display: flex;
}
.c-social li {
  list-style-type: none;
  margin-right: 45px;
}
.c-social li a {
  display: block;
  opacity: 1;
}
.c-social li:last-of-type {
  margin-right: 0;
}

@media (max-width: 1440px) {
  .c-social li {
    margin-right: 25px;
  }
  .c-social li a img {
    width: 25px;
    height: auto;
  }
}
.c-hero {
  position: relative;
  overflow: hidden;
}

.c-hero_content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #92d0d2;
  color: #121729;
  padding: 60px 6vw 60px 90px;
  border-radius: 30px 0 0 30px;
}
.c-hero_content p {
  font-family: "Playfair Display";
  font-size: 48px;
  font-weight: bold;
  margin: 0;
}
.c-hero_content p:after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background-color: #45748b;
  margin-top: 30px;
}

@media (max-width: 1440px) {
  .c-hero_content p {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .c-hero_content {
    padding: 30px 6vw 30px 45px;
  }
  .c-hero_content p {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .c-hero_content {
    position: relative;
    border-radius: 0;
    top: 0;
    transform: translateY(-30px);
  }
  .c-hero_content p {
    font-size: 22px;
  }
}
.c-intro h1,
.c-intro h2 {
  text-align: center;
  margin-top: 0;
}
.c-intro h1:after,
.c-intro h2:after {
  content: "";
  display: table;
  width: 145px;
  height: 1px;
  background-color: #45748b;
  margin: 20px auto 30px;
}
.c-intro .c-body {
  max-width: 675px;
  margin: 0 auto;
  text-align: center;
}
.c-intro .c-btn {
  margin: 45px auto 0;
  display: table;
}

.c-intro_bg {
  position: absolute;
  width: 33vw;
  height: auto;
}
.c-intro_bg.bg1 {
  left: 0;
  bottom: 0;
  transform: translateY(-15%);
}
.c-intro_bg.bg2 {
  top: 0;
  right: 0;
  transform: translateY(15%);
}
.c-intro_bg img {
  width: 100%;
}

.c-body {
  font-size: 20px;
}

@media (max-width: 1440px) {
  .c-body {
    font-size: 14px;
  }
}
.c-textmedia_before {
  text-align: center;
}
.c-textmedia_before .c-body {
  max-width: 760px;
  margin: 0 auto;
}
.c-textmedia_before .c-body:after {
  content: "";
  display: table;
  width: 145px;
  height: 1px;
  background-color: #92d0d2;
  margin: 55px auto;
}

.c-textmedia_bloc {
  border: 1px solid #92d0d2;
  border-radius: 30px;
  padding: 60px 40px;
}
.c-textmedia_bloc h3 {
  margin-top: 0;
  margin-bottom: 15px;
}
.c-textmedia_bloc .c-body {
  margin-bottom: 60px;
}
.c-textmedia_bloc .c-body p:first-of-type {
  margin-top: 0;
}

.c-textmedia_mediawrap {
  overflow: hidden;
  position: relative;
}

.c-textmedia_media {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
}
.c-textmedia_media img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  min-height: 100%;
}

.c-textmedia_mediacol {
  padding-right: 45px;
}

.c-textmedia_bloccol {
  padding-left: 45px;
}

@media (max-width: 768px) {
  .c-textmedia_mediacol {
    padding-right: 15px;
  }
  .c-textmedia_bloccol {
    padding-left: 15px;
    text-align: center;
  }
  .c-textmedia_media {
    height: 300px;
    margin-bottom: 30px;
  }
}
.c-listblockicn_intro {
  margin-bottom: 75px;
}
.c-listblockicn_intro h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.c-listblockicn_intro .c-body {
  max-width: 800px;
}
.c-listblockicn_intro .c-body p:first-of-type {
  margin-top: 0;
}

.c-listblockicn_list {
  display: flex;
  flex-wrap: wrap;
}
.align-left .c-listblockicn_list {
  margin: 0 -25px;
}
.align-left .c-listblockicn_list .c-listblockicn_block {
  padding: 0 25px;
}
.align-center .c-listblockicn_list {
  margin: 0 -60px;
}

.c-listblockicn_block {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}
.align-center .c-listblockicn_block {
  padding: 0 60px;
}

.c-listblockicn_element {
  background-color: #fff;
  padding: 60px;
  border-radius: 20px;
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #d9d9d9;
}
.u-bg-secondary .c-listblockicn_element {
  border: 0;
}
.align-center .c-listblockicn_element {
  align-items: center;
}
.nocontent .c-listblockicn_element {
  padding: 60px 30px;
}
.nocontent .c-listblockicn_element h3 {
  margin-bottom: 75px;
  font-weight: bold;
  text-align: center;
}
.c-listblockicn_element h3 {
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 1;
}
.c-listblockicn_element h3 span {
  text-transform: uppercase;
  font-weight: bold;
}
.c-listblockicn_element .c-body {
  flex-grow: 1;
  margin-bottom: 30px;
}
.c-listblockicn_element .c-body p {
  margin: 0;
}

@media (max-width: 1200px) {
  .align-center .c-listblockicn_block {
    padding: 0 20px;
  }
  .align-center .c-listblockicn_list {
    margin: 0 -20px;
  }
}
@media (max-width: 992px) {
  .c-listblockicn_list {
    justify-content: center;
  }
  .c-listblockicn_block {
    width: 50%;
    margin-bottom: 45px;
  }
  .c-listblockicn_block:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .c-listblockicn_block {
    width: 100%;
    margin-bottom: 30px;
  }
}
.c-pageHeader {
  padding: 4.5vw 6vw 4.5vw 29vw;
}
.c-pageHeader h1 {
  margin-top: 0;
  margin-bottom: 20px;
}
.c-pageHeader .c-body p:first-of-type {
  margin-top: 0;
}
.c-pageHeader .c-body p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .c-pageHeader {
    padding-left: 32vw;
  }
}
@media (max-width: 768px) {
  .c-pageHeader {
    padding: 90px 6vw 45px;
  }
}
.c-bordered {
  background-color: #92d0d2;
  padding: 30px 0;
}

.c-bordered_bottom {
  background-color: #92d0d2;
  display: block;
  width: 100%;
  height: 45px;
}

.c-logolist {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 70px 0;
  margin: 0;
}

.c-logolist_element {
  width: 25%;
  display: flex;
  align-items: center;
  padding: 30px 30px;
}
.c-logolist_element a {
  display: block;
  text-decoration: none;
  width: 100%;
}
.c-logolist_element img {
  height: 90px;
  width: auto;
  display: table;
  margin: 0 auto 0 0;
}

@media (max-width: 1200px) {
  .c-logolist_element {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .c-logolist {
    padding: 30px 0;
  }
  .c-logolist_element {
    width: 100%;
    padding: 15px 30px;
  }
  .c-logolist_element img {
    height: 50px;
    margin: 0 auto;
  }
}
.u-hidden {
  opacity: 0;
  position: absolute;
  left: -9999999px;
  top: -99999px;
}
/*# sourceMappingURL=main.css.map */
