/* .g-button {
  display: flex;
  align-items: flex-end;
}
.g-button,
.g-button > * {
  transition: var(--transition);
}
.g-button-with-arrow {
  background-color: var(--main);
  color: white;
  position: relative;
  font-size: 20px;
  padding: 12px 20px;
  border-radius: 50px;
}

.g-button-with-arrow-bubble {
  height: 54.6px;
  width: 54.6px;
  border-radius: 50px;
  background-color: var(--main);
  position: relative;
  overflow: hidden;
}
.g-button-with-arrow-bubble::after {
  content: "";
  height: 15px;
  width: 15px;
  background: url(/wp-content/uploads/2025/09/gsys-arrow-white.svg);
  position: absolute;
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  transform: translateY(0);
  transition: var(--transition);
}
.g-button-with-arrow-bubble::before {
  content: "";
  height: 15px;
  width: 15px;
  background: url(/wp-content/uploads/2025/09/gsys-arrow-light.svg);
  position: absolute;
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  transform: translateY(50px);
  transition: var(--transition);
}

.g-button:hover .g-button-with-arrow,
.g-button:hover .g-button-with-arrow-bubble {
  background: white;
  color: var(--main);
}

.g-button:hover .g-button-with-arrow-bubble::after {
  transform: translateY(-50px);
}
.g-button:hover .g-button-with-arrow-bubble::before {
  transform: translateY(0px);
} */

.module_text_titre_homepage h1,
.module_text_titre_homepage h2 {
  padding-bottom: 0 !important;
}

.notre_agence_liste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 50px; */
}
.notre_agence_liste_elem {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
.notre_agence_liste_elem::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  top: calc(50% - 8px);
  left: 0;
  border-radius: 50px;
  background: var(--main);
  background-image: url(/wp-content/uploads/2025/09/logo-gsys-g-ns.svg);
}

@media screen and (min-width: 1550px) {
  .module_titre_homepage h1 {
    font-size: 75px !important;
  }
}
@media screen and (max-width: 980px) {
  .notre_agence_liste_elem::before {
    height: 12px;
    width: 12px;
    top: calc(50% - 6px);
  }
  .notre_agence_liste_elem {
    font-size: 12.5px;
    padding-left: 18px;
  }
}
