/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0
*/

.container-custom {
    padding: 3rem;
}
.d-flex{
    display: flex;
}
.search-text h2{
    font-family: var(--e-global-typography-5abf7ad-font-family), Sans-serif;
}

div#primary-component p {
    color: #233A5B;
}

div#primary-component ul {
    color: #233A5B;
}

div#primary-component li {
    color: #233A5B;
}

/* Modal container - hidden by default */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
  }
  
  /* Modal content */
  .modal-content {
    background-color: #fff;
    margin: 15% auto; /* Center the modal */
    padding: 30px;
    border-radius: 8px;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Ensure it doesn't get too large */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Close button */
  .close {
    color: #aaa;
    display: flex;
    justify-content: end;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover, .close:focus {
    color: #000;
    cursor: pointer;
  }
  
