* {
    box-sizing: border-box;
  }

  .search-module {
    z-index: 3;
    position: relative;
  }


  .contact-info {
    display: flex;
    align-self: stretch;
    min-width: 240px;
    align-items: center;
    gap: 10px;
    justify-content: start;
    padding: 0px 13px;
  }
  .icon-cont {
    display: flex;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    height: 52px; /* Ensures a square shape */
    width: 52px;
    border: 2px solid rgba(0, 0, 0, 1);
  }
  .img {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 22px;
  }
  .contact-details {
    display: flex;
    flex-direction: column; /* Ensures text stays in a column */
    justify-content: center; /* Centers the text vertically */
    color: rgba(0, 0, 0, 1);
    width: 126px;
    padding: 0 4px;
    font: 400 16px Inter, sans-serif;
  }

  .location-cont {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
  }


  .button-cont {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    color: rgba(255, 255, 255, 1);
    justify-content: center;
    width: 242px;
    margin: auto 0;
    padding: 0px 10px;
    font: 400 16px Inter, sans-serif;
  }

  @media (max-width: 600px){
    .button-cont {
      min-height: 0;
      width: 100%;
      padding: 10px 0px;
    }
  }  

{#
  .button {
    display: flex;
    align-self: stretch;
    border-radius: 8px;
    color: #FFFFFF;
    background-color: #39729C;
    text-decoration: none;
    width: 100%;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    gap: 10px; /* Optional, adjusts spacing if you have an icon next to text */
    padding: 16px 26px;
  }
  .button:hover {
    background-color: #3A688A;
    color: #FFFFFF;
  }
  @media (max-width: 991px) {
    .button {
      padding: 16px 20px;
    }
  } #}

/* From Uiverse.io by Allyhere */ 
.btn-grad {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  display: flex;
  align-self: stretch;
  cursor: pointer;
  padding: 16px 26px;
  text-decoration: none;
  width: 100%;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: var(--radii);
  color: #fff;
  box-shadow:
    0px 0px 20px rgba(71, 184, 255, 0.5),
    0px 5px 5px -1px rgba(58, 125, 233, 0.25),
    inset 4px 4px 8px rgba(175, 230, 255, 0.5),
    inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}

.btn-grad:hover {
  color: #FFFFFF;
  background-position: right top;
}

.btn-grad:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
  .btn-grad {
    transition: linear;
  }
}

