/* mixin */
/* general */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none; }

html {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  height: 100%;
  color: var(--white);
  text-align: justify;
  scroll-behavior: smooth;
  /* tailles */
  --tel: 480px;
  /* colors */
  --white: #fff;
  --black: #333;
  --blue: #1F1F31;
  --blue2: #33334f;
  --orange: #ffae11;
  --orange2: #ffc251; }

body {
  min-height: 100%;
  color: var(--white);
  scroll-behavior: smooth;
  background-color: var(--blue); }

/* images */
picture {
  display: inline-block;
  overflow: hidden; }

img {
  max-width: 100%; }

/* titre */
p, h1, h2, h3, h4, h5, h6, ul li {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 25px; }
  p:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, ul li:last-child {
    margin-bottom: 0; }

.color {
  color: var(--orange); }

.title0, .title, .title2, .title3, .title4 {
  text-align: left; }

.title0 {
  font-size: 48px;
  line-height: 1.5;
  font-weight: 700;
  margin: 5px 0 10px; }

.title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 30px; }

.title2 {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 25px; }

.title3 {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px; }
  .title3::before, .title3::after {
    content: '';
    width: 50px;
    height: 4px;
    background: var(--orange); }
  .title3 span {
    font-size: 40px;
    font-weight: 200;
    line-height: 1.2;
    text-align: center; }

.big {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 35px; }

.bold {
  font-weight: 700 !important; }

/* style texte */
.maj {
  text-transform: uppercase; }

.nomaj {
  text-transform: lowercase; }

.b, strong {
  font-weight: 800; }

::selection {
  background-color: var(--blue2);
  color: --white; }

::-moz-selection {
  background-color: var(--blue2);
  color: var(--white); }

/* alignement texte */
.tleft {
  text-align: left; }

.tright {
  text-align: right; }

.tcenter {
  text-align: center; }

.tjustify {
  text-align: justify; }

/* lien */
a {
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear; }
  a:hover {
    color: var(--orange2); }
  a.nolink {
    cursor: initial; }

/* bouton */
.btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 55px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 25px;
  border: none;
  border-radius: 5px;
  background: var(--orange);
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear; }
  .btn:hover {
    color: var(--white);
    background: var(--orange2); }

/* colors */
.bgorange {
  background: var(--orange); }
  .bgorange .title3::before, .bgorange .title3::after {
    background: var(--white); }
  .bgorange .title3 > span {
    color: var(--black); }

/* colonnes */
section {
  position: relative; }

.row {
  width: 100%;
  max-width: 1284px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr);
  grid-gap: 40px;
  position: relative;
  margin: 0 auto;
  padding: 0px 15px 50px; }
  .row:first-child {
    padding-top: 50px; }
  .row.nogap {
    grid-gap: 0; }
  .row.tcenter > .col > * {
    text-align: center; }
  .row.full {
    max-width: inherit; }
  .row .row {
    padding: 0; }
  .row.col1x {
    grid-template-columns: repeat(1, 1fr); }
  .row.col2x {
    grid-template-columns: repeat(2, 1fr); }
  .row.col3x {
    grid-template-columns: repeat(3, 1fr); }
  .row.col4x {
    grid-template-columns: repeat(4, 1fr); }
  .row.col5x {
    grid-template-columns: repeat(5, 1fr); }
  .row.col6x {
    grid-template-columns: repeat(6, 1fr); }
  .row.col7x {
    grid-template-columns: repeat(7, 1fr); }
  .row.col8x {
    grid-template-columns: repeat(8, 1fr); }
  .row.col9x {
    grid-template-columns: repeat(9, 1fr); }
  .row.col10x {
    grid-template-columns: repeat(10, 1fr); }
  .row.col11x {
    grid-template-columns: repeat(11, 1fr); }
  .row.col12x {
    grid-template-columns: repeat(12, 1fr); }
  .row.col211 {
    grid-template-columns: 2fr repeat(2, 1fr); }
  .row.col121 {
    grid-template-columns: 1fr 2fr 1fr; }
  .row.col112 {
    grid-template-columns: repeat(2, 1fr) 2fr; }
  .row.col31 {
    grid-template-columns: 60% 1fr; }
  .row.col13 {
    grid-template-columns: 40% 1fr; }
  .row .col {
    position: relative; }
    .row .col.tcenter * {
      text-align: center; }

.mobil {
  display: none; }

/* header */
#header {
  background: url("../img/header.jpg") no-repeat scroll center center/cover; }
  #header > .row {
    align-items: center; }

/* video */
.video-wrapper {
  width: 100%;
  height: 0px;
  padding-top: 56.25%; }
  .video-wrapper .video-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 200; }
    .video-wrapper .video-container video {
      width: 100%;
      min-width: 100%;
      height: 100%;
      min-height: 100%;
      max-height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: -100; }
  .video-wrapper.fixed {
    max-width: 260px;
    padding-top: 170px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 300; }

#forminvest {
  width: 100%;
  max-width: 570px;
  margin: 0 auto 25px;
  padding: 20px;
  border-radius: 10px;
  background: var(--blue); }
  #forminvest .headform {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin: 0px 0 5px; }
  #forminvest label {
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px; }
  #forminvest input:not([type="submit"]),
  #forminvest textarea,
  #forminvest .chosen-container-single .chosen-single {
    width: 100%;
    max-width: 100%;
    height: 45px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500;
    color: var(--black) !important;
    margin: 2px 0 0;
    padding: 6px;
    border: none !important;
    border-radius: 5px !important;
    box-shadow: none !important; }
  #forminvest input.chosen-search-input {
    border: solid 1px #ccc !important;
    height: 25px !important; }
  #forminvest .active-result {
    font-size: 11px;
    color: var(--black); }
  #forminvest input.btn {
    width: 100%;
    color: var(--black); }
  #forminvest textarea {
    min-width: 100%;
    min-height: 150px;
    max-height: 250px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black0);
    margin: 2px 0 0;
    padding: 6px;
    border: 1px solid var(--grey2);
    border-radius: 3px; }
  #forminvest .btn {
    margin: 0 0 15px; }
  #forminvest .error {
    display: none;
    font-size: 9px;
    color: red;
    position: absolute;
    bottom: -10px;
    left: 6px; }
    #forminvest .error.error_telephone {
      left: 116px; }
    #forminvest .error.open {
      display: block; }
  #forminvest .succes {
    display: none;
    font-size: 12px;
    color: green;
    text-align: center;
    margin: 5px 0 15px; }
    #forminvest .succes.open {
      display: block; }

.form2 {
  margin-bottom: 15px; }

.formtelid {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px; }

.chosen-container, .chosen-container .chosen-single {
  height: 45px !important; }

.chosen-container .chosen-single {
  height: 45px !important; }

.chosen-container .chosen-single, .chosen-container .chosen-single > div {
  display: flex !important;
  align-items: center !important; }

.chosen-container-single .chosen-single div b {
  height: 20px !important; }

#join {
  background: url("../img/join.jpg") no-repeat scroll center center/cover; }

#just {
  background: url("../img/just.jpg") no-repeat scroll center center/cover; }

.coms {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0px 20px; }
  .coms img {
    width: calc(50% - 20px);
    min-width: 350px;
    max-width: 530px;
    flex: 1 1 auto; }

#more .full {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5px; }

.cits {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2px; }

.cit {
  width: 25%;
  flex: 1 1 auto;
  position: relative; }
  .cit::after {
    content: '';
    display: block;
    padding-bottom: calc(100% - 70px); }
  .cit img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover; }
  .cit p {
    font-weight: 600;
    margin: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 200; }

#manson {
  background: url("../img/bgmanson.png") no-repeat scroll center center/cover; }
  #manson > .row {
    align-items: center;
    padding-bottom: 0; }
  #manson img {
    margin-bottom: -4px; }

/* footer */
#footer {
  position: relative; }
  #footer .row {
    padding-top: 30px;
    padding-bottom: 30px; }
  #footer p {
    font-size: 16px;
    text-align: justify;
    text-align-last: center; }
  #footer .floatfooter {
    max-width: 140px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 50px 0 0 50px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -50%);
    background: var(--orange); }
    #footer .floatfooter > * {
      text-align: left;
      text-transform: uppercase; }
    #footer .floatfooter .number {
      font-size: 30px;
      font-weight: 600;
      margin: 0; }
    #footer .floatfooter .txt {
      font-size: 12px;
      font-weight: 800;
      text-align: left;
      text-align-last: inherit; }

/* responsive */
@media screen and (max-width: 1100px) {
  .title0 {
    font-size: 35px;
    line-height: 1.2; }

  .cit p {
    font-size: 15px;
    text-align: left; } }
@media screen and (max-width: 950px) {
  .row {
    grid-gap: 20px;
    padding: 30px 15px; }

  #container .row.col1x, #container .row.col2x, #container .row.col3x, #container .row.col5x, #container .row.col6x
  #container .row.col7x, #container .row.col8x, #container .row.col9x, #container .row.col10x, #container .row.col11x, #container .row.col12x, #container .row.col211, #container .row.col121, #container .row.col112, #container .row.col31, #container .row.col13 {
    grid-template-columns: repeat(1, 1fr); }
  #container .row.col4x {
    grid-template-columns: repeat(2, 1fr); }
    #container .row.col4x .col {
      max-width: 300px;
      margin: auto; } }
@media screen and (max-width: 950px) and (max-width: 1280px) {
  .cits {
    flex-wrap: wrap; }

  .cit {
    width: calc(50% - 2px); }
    .cit::after {
      padding-bottom: 400px; } }
@media screen and (max-width: 950px) {
  #manson .c1 {
    order: 1; }
  #manson img {
    max-height: 300px; }
  #manson .c2, #manson .title {
    text-align: center; }

  #footer .row {
    padding-top: 60px; } }
@media screen and (max-width: 620px) {
  .cit {
    width: calc(100% - 2px); } }

/*# sourceMappingURL=style.css.map */
