/* Font Import */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&family=Urbanist:wght@800&display=swap");

/* Misc. Styles */

.wide-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 40px;
}

ul.flex-container {
  list-style-type: none;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}

.flex-option {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-basis: 49%;
  margin-bottom: 15px;
}

/*drop select */
input {
  font-family: poppins;
  font-size: 1em;
}

select {
  font-size: 1em;
  padding: 40px;
  box-sizing: border-box;
  font-family: poppins;
}

select option:checked,
option:hover {
  color: white;
  background: #daaf48 repeat !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* "No Results" Headers */
#no-results {
  width: 100%;
  margin: 9rem 0 5rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

#no-results h1 {
  margin: auto;
  font-family: poppins;
}

/* Box Styles */

#container {
  max-width: none !important;
}

/* Mobile Responsivity */

@media (max-width: 550px) {
  #filter-keyword {
    margin: 20px 0;
  }

  .flex-option {
    flex-basis: 100%;
  }
}

/* Church Styles */

.church {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  border-bottom: 2px lightgrey solid;
}

@media (max-width: 1000px) {
  .church {
    display: block;
  }

  .phone-dot {
    display: none;
  }
}

.church .name {
  font-size: 30px;
}

.church .flex {
  display: flex;
  gap: 4px;
}

.church .description {
  justify-self: left;
}

.church .information {
  padding: 20px 0;
}

.fa-church {
  margin-right: 10px;
}

.church .icons {
  display: flex;
  text-align: center;
  margin-top: 20px;
}

.icons a {
  margin-right: 20px;
}

.icons a:hover {
  text-decoration: underline;
}

.icons a:hover i.fa-solid {
  text-decoration: none;
}

.icons i.fa-solid {
  border-radius: 100%;
  border: 1px solid #b4975b;
  padding: 10px;
  font-size: 25px;
}

.phone {
  display: flex;
  gap: 4px;
}
