.localisation-section {
  min-height: 75vh;
  margin: 75px 0;

  .pic-wrapper {
    display: flex;
    gap: 40px;
    height: 70vh;
    position: relative;
    justify-content: center;

    > div {
      height: 100%;
      position: relative;
      width: 50%;

      .overflow {
        display: flex;
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        height: 10%;
        justify-content: space-between;
        padding: 10px 20px;
        align-items: center;
        background-color: rgba(9, 21, 42, 0.3);

        > h3 {
          text-transform: uppercase;
          font-weight: 300;
          align-self: center;
          line-height: 1;
          margin-bottom: 0;
          letter-spacing: 2px;
        }
      }

      > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 2px;
      }
    }

    .icon-wrapper {
      border: 1px solid white;
      border-radius: 50px;
      height: 40px;
      width: 40px;
      justify-content: center;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      &:hover {
        transform: scale(1.1);
      }
    }
  }
}

@media (max-width: 1024px) {
  .localisation-section {
    min-height: unset;
    .pic-wrapper {
      flex-direction: column;
      height: unset;
      > div {
        width: 100%;
      }
    }
  }
}

@media (max-width: 768px) {
  .localisation-section {
    min-height: unset;
    .pic-wrapper {
      flex-direction: column;
      > div {
        width: 100%;
        .overflow {
          bottom: 15px;
          flex-direction: column;
          height: unset;
          gap: 16px;
          h3 {
            font-size: 18px;
          }
          svg {
            width: 15px;
            height: 15px;
          }
          a {
            width: 40px;
            height: 40px;
          }
        }
        img {
          height: 370px;
        }
      }
    }
  }
}
