/* Master SCSS File */
/* Montserrat Font Face Declarations */
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
html {
  font-size: 16px; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

h2 {
  font-size: 1.7rem;
  font-weight: 600; }

h3 {
  color: #cc391b;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0; }

.bg-primary {
  background-color: #efece6 !important; }

.bg-secondary {
  background-color: #efecdc !important; }

.bg-tertiary {
  background-color: #efece6; }

.phone-container {
  position: relative; }
  .phone-container img {
    display: block;
    position: relative;
    z-index: 10;
    transition: all 150ms linear; }
  .phone-container::after {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    z-index: 1;
    background-color: traparent;
    border-radius: 26px;
    box-shadow: 15px 15px 23px -5px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 15px 15px 23px -5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 15px 15px 23px -5px rgba(0, 0, 0, 0.25);
    transition: all 150ms linear; }
  .phone-container:hover img {
    scale: 1.05; }
  .phone-container:hover::after {
    scale: 1.05;
    box-shadow: 20px 20px 30px -5px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 15px 15px 30px -5px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 20px 20px 30px -5px rgba(0, 0, 0, 0.18); }

header {
  background-color: #efecdc;
  padding: 20px 0;
  position: relative; }
  header .header-content {
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 4rem; }
  header h1 {
    color: #245552;
    font-weight: 700;
    font-size: 2rem; }
  header .badge {
    background-color: #cc391b; }
  header p {
    font-size: 1.2rem; }
  header .main-images {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden; }
    header .main-images .image-1 {
      width: 46rem;
      height: auto;
      top: -26rem;
      right: 17rem;
      position: absolute;
      z-index: 1; }
    header .main-images .image-2 {
      width: 40rem;
      height: auto;
      right: -19rem;
      position: absolute;
      z-index: 2;
      top: 14%; }
    header .main-images .image-3 {
      width: 46rem;
      height: auto;
      position: absolute;
      top: 66%;
      left: 30px;
      z-index: 10;
      transform: translateY(-50%);
      animation: floatY 3s ease-in-out infinite; }
    header .main-images .shadow-3 {
      position: absolute;
      width: 46rem;
      height: 12rem;
      top: 66%;
      left: 30px;
      z-index: 5;
      transform: translateY(-50%);
      perspective: 200px;
      opacity: 0.5;
      animation: shadowOpacityY 3s ease-in-out infinite; }
@keyframes shadowOpacityY {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 0.4; }
  100% {
    opacity: 0.5; } }
      header .main-images .shadow-3::after {
        content: '';
        display: block;
        width: 50rem;
        height: 13rem;
        position: absolute;
        top: 100%;
        left: -2rem;
        z-index: 5;
        filter: blur(22px);
        background: #27384c;
        pointer-events: none;
        transform: perspective(360px) rotateX(14deg) scaleX(1) translateY(-9rem);
        border-radius: 70px; }

.card .icon-container {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center; }
.card p {
  font-size: 1rem; }
.card li {
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0; }
  .card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0; }
  .card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 1rem;
    height: 1rem;
    background: #1c302e url("../icons/icon-check.svg") no-repeat center center;
    background-size: 70% 70%;
    border-radius: 50%;
    padding: 0.2rem; }
.card.card-dark {
  color: #efecdc; }
  .card.card-dark .icon-container {
    background-color: #1c302e; }
  .card.card-dark li {
    border-color: rgba(224, 224, 224, 0.3); }
    .card.card-dark li::before {
      border: 1px solid #efecdc; }

section {
  padding: 100px 0; }
  section#presentation {
    background-color: #fff; }
    section#presentation .images-container {
      position: relative;
      width: 100%;
      height: 30rem; }
      section#presentation .images-container .phone-container {
        position: absolute;
        width: 11rem;
        height: auto;
        z-index: 10; }
        section#presentation .images-container .phone-container.image-1 {
          bottom: 52%;
          height: auto;
          right: 52%; }
        section#presentation .images-container .phone-container.image-2 {
          left: 50%;
          width: 14rem; }
        section#presentation .images-container .phone-container.image-3 {
          top: 52%;
          right: 52%; }
        /*section#presentation .images-container .phone-container img {
          width: auto;
          height: 100%; }*/
      section#presentation .images-container::before {
        content: '';
        display: block;
        width: 2.2rem;
        height: 2.2rem;
        background-color: #cc391b;
        border-radius: 50%;
        position: absolute;
        z-index: 2;
        top: 22%;
        right: -8%;
        transform: translate(-50%, -50%); }
      section#presentation .images-container .bg {
        width: 42rem;
        height: 42rem;
        position: absolute;
        top: -6.25rem;
        z-index: 1;
        overflow: hidden; }
        section#presentation .images-container .bg::before {
          content: '';
          border-radius: 50%;
          display: block;
          position: absolute;
          width: 100%;
          height: 100%;
          top: 18%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 1;
          background: repeating-radial-gradient(circle, #e7debf 0px, #e7debf 12px, transparent 12px, transparent 32px); }
        section#presentation .images-container .bg::after {
          content: '';
          display: block;
          width: 2.2rem;
          height: 2.2rem;
          background-color: #fff;
          border-radius: 50%;
          position: absolute;
          z-index: 2;
          top: 18%;
          left: 50%;
          transform: translate(-50%, -50%); }
    section#presentation .section-content p, section#presentation .section-content li, section#presentation .section-content a, section#presentation .section-content div {
      color: #497569; }
  section#banque-au-quotidien {
    background-color: #1c302e;
    color: #efecdc; }
    section#banque-au-quotidien p {
      color: #efecdc; }
    section#banque-au-quotidien h3 {
      color: #efecdc; }
  section#produits {
    background-color: #1c302e;
    color: #efecdc; }
    section#produits .images-container {
      position: relative;
      height: 46rem; }
      section#produits .images-container .phone-container {
        position: absolute; }
        section#produits .images-container .phone-container.image-1 {
          right: 47%;
          top: 30%;
          z-index: 10; }
        section#produits .images-container .phone-container.image-2 {
          left: 47%;
          bottom: 30%;
          z-index: 20; }
        section#produits .images-container .phone-container img {
          max-height: 30rem; }
      section#produits .images-container::before {
        content: '';
        width: 420px;
        height: 420px;
        border-radius: 50%;
        display: block;
        opacity: .25;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -79%);
        z-index: 1;
        background: repeating-radial-gradient(circle, #e7debf 0px, #e7debf 7px, transparent 7px, transparent 21px); }
    section#produits .card {
      border: none;
      background-color: transparent;
      transition: all 250ms; }
      section#produits .card.active {
        background-color: #334946; }
      section#produits .card .icon-container {
        background-color: #56726d; }
      section#produits .card h3 {
        color: #efecdc; }
      section#produits .card p {
        font-size: 0.9rem; }
  section#securite h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1c302e;
    margin-bottom: 1rem; }
  section#securite p {
    color: #497569; }
  section#securite .card {
    min-height: 216px; }
  section#securite .icon-container {
    width: 56px;
    height: 56px; }

footer {
  background-color: #1c302e;
  color: #efecdc;
  padding: 3rem 0; }
  footer .social-icons li {
    transition: color 0.2s; }
    footer .social-icons li path, footer .social-icons li polygon {
      transition: fill 0.2s; }
    footer .social-icons li a:hover.fb path {
      fill: #1877f3; }
    footer .social-icons li a:hover.tw path {
      fill: #1da1f2; }
    footer .social-icons li a:hover.ig path {
      fill: #e4405f; }
    footer .social-icons li a:hover.in path {
      fill: #0077b5; }
    footer .social-icons li a:hover.yt path, footer .social-icons li a:hover.yt polygon {
      fill: #ff0000; }
  footer p {
    font-size: 0.8rem; }

@keyframes floatY {
  0% {
    transform: translateY(-50%) translateY(0); }
  50% {
    transform: translateY(-50%) translateY(-24px); }
  100% {
    transform: translateY(-50%) translateY(0); } }
@keyframes floatXY {
  0% {
    transform: translate(-50%, -50%) translate(0, 0); }
  50% {
    transform: translate(-50%, -50%) translate(0, -24px); }
  100% {
    transform: translate(-50%, -50%) translate(0, 0); } }
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem; }

  h3 {
    font-size: 1.1rem; }

  header {
    padding: 15px 0;
    overflow: hidden; }
    header .header-content {
      height: 25rem; }
    header h1 {
      font-size: 1.5rem;
      margin-bottom: 1rem; }
    header p {
      font-size: 1rem; }
    header .mobile-header {
      height: 15rem;
      width: 100%;
      position: relative; }
    header .main-images {
      width: auto;
      bottom: 0;
      left: -1.5rem;
      right: -1.5rem;
      overflow: initial; }
      header .main-images .image-3 {
        width: 20rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: floatXY 3s ease-in-out infinite; }
      header .main-images .shadow-3 {
        width: 20rem;
        height: 6rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        header .main-images .shadow-3::after {
          width: 22rem;
          height: 7rem;
          left: -1rem;
          top: 100%;
          transform: perspective(360px) rotateX(14deg) scaleX(1) translateY(-4rem); }

  section {
    padding: 50px 0; }
    section#presentation .images-container {
      height: 20rem;
      margin-bottom: 10rem; }
      section#presentation .images-container .bg {
        width: 100%;
        height: 25rem;
        top: -3rem; }
      section#presentation .images-container::before {
        width: 1.5rem;
        height: 1.5rem;
        top: 25%;
        right: -5%; }
      section#presentation .images-container .phone-container.image-1 {
        width: 8rem; }
      section#presentation .images-container .phone-container.image-2 {
        width: 10rem; }
      section#presentation .images-container .phone-container.image-3 {
        width: 8rem; }
    section#cartes .phone-container {
      margin-bottom: 2rem; }
    section#produits .images-container {
      height: 38rem; }
      section#produits .images-container .phone-container img {
        height: auto; }

  .card {
    margin-bottom: 1.5rem;
    min-height: auto !important; }
    .card .icon-container {
      width: 3rem;
      height: 3rem; }
    .card p {
      font-size: 0.9rem; }
    .card li {
      font-size: 0.9rem;
      padding-left: 1.2rem;
      margin-bottom: 0.8rem;
      padding-bottom: 0.8rem; }
      .card li::before {
        width: 0.8rem;
        height: 0.8rem;
        top: 0.2rem; }

  footer {
    padding: 2rem 0;
    text-align: center; }
    footer .social-icons {
      justify-content: center;
      margin-bottom: 1rem; }
    footer p {
      font-size: 0.7rem; } }
@media (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 1.6rem; }

  h3 {
    font-size: 1.2rem; }

  header .header-content {
    height: 20rem; }
    header .header-content h1 {
      font-size: 1.5rem; }
    header .header-content p {
      font-size: 1rem; }
    header .header-content img {
      height: 40px; }
  header .main-images {
    width: 60%; }
    header .main-images .image-1 {
      width: 23rem;
      top: -15rem;
      right: 5rem; }
    header .main-images .image-2 {
      width: 22rem;
      right: -14rem;
      top: 5%; }
    header .main-images .image-3 {
      width: 22rem;
      top: 50%;
      left: 50px; }
    header .main-images .shadow-3 {
      width: 22rem;
      height: 6rem;
      top: 50%;
      left: 50px; }
      header .main-images .shadow-3::after {
        width: 26rem;
        height: 7rem;
        left: -1rem;
        top: 100%;
        transform: perspective(360px) rotateX(14deg) scaleX(1) translateY(-4rem); }

  section {
    padding: 80px 0; }

  section#presentation .images-container {
    height: 20rem; }
    section#presentation .images-container .phone-container.image-1 {
      width: 9rem; }
    section#presentation .images-container .phone-container.image-2 {
      width: 10rem; }
    section#presentation .images-container .phone-container.image-3 {
      width: 9rem; }
    section#presentation .images-container .bg {
      width: 22rem;
      height: 32rem; }
      section#presentation .images-container .bg::before {
        background: repeating-radial-gradient(circle, #e7debf 0px, #e7debf 8px, transparent 8px, transparent 24px); } }

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