body {
  min-width: 300px;
}

nav {
  background-color: var(--headerBGColor, #ffffff);
}
nav .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .container a {
  display: block;
}
nav .container a:nth-child(2) {
  margin-left: auto;
}
nav .container .contact {
  font-weight: 700;
  font-size: 20px;
  color: var(--headerTextColor, #333);
}
nav .container #logo {
  width: 300px;
}

.contact {
  padding: 5px;
  transition: all 0.3s;
  text-decoration: none;
}
.contact:hover {
  text-decoration: none;
}
.contact:hover:not(.contact.icononly) {
  filter: opacity(70%);
}
.contact i {
  color: var(--brandPrimary, #2596be);
}
.contact.icononly {
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
  justify-content: center;
}
.contact.icononly:hover {
  background-color: #eee;
}

#masthead {
  height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: var(--mastheadPosition, 50% 20%);
}

#infolist {
  margin-top: -135px;
}
#infolist ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#infolist ul li {
  display: flex;
  flex-direction: column;
  width: 32%;
  background-color: #fff;
  color: #111;
  padding: 30px;
  align-items: center;
  box-shadow: 5px 5px 11px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}
#infolist ul li i {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: var(--brandPrimary, #2596be);
  padding: 20px;
  font-size: 48px;
  color: #222;
  justify-content: center;
  align-items: center;
  display: flex;
}
#infolist ul li h5 {
  margin: 20px 0;
  text-transform: uppercase;
}
#infolist ul li p {
  font-style: italic;
}

footer {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  width: 100%;
  min-height: 200px;
  background-color: var(--brandSecondaryColor, #333);
  color: #fff;
  align-items: center;
}
footer .contact_methods {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
footer .contact {
  color: #fff;
  padding: 0;
}
footer p {
  margin: 0;
}
footer p:last-child {
  font-size: smaller;
  margin-top: 10px;
}
footer p:last-child a {
  color: var(--creatorColor, initial);
}

.tooltip-inner {
  max-width: 500px !important;
}

@media (max-width: 991px) {
  #infolist ul {
    padding: 0;
    display: grid;
    grid-template: 1fr/1fr 1fr;
    grid-gap: 20px;
  }
  #infolist ul li {
    width: 100%;
  }
  #infolist ul li:last-child {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 657px;
  }
  #infolist ul {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 619px) {
  nav {
    gap: 0px;
  }
  nav #logo {
    width: 200px;
  }
  nav .contact {
    font-size: 14px;
  }
  nav .contact.icononly {
    width: auto;
  }
}
@media (max-width: 425px) {
  nav .contact:not(.icononly) {
    display: none;
  }
  nav a:nth-child(3) {
    margin-left: auto;
  }
  #infolist {
    margin-top: -500px;
  }
}
@media (max-height: 768px) {
  #infolist {
    margin-top: -300px;
  }
}
@media (max-height: 600px) {
  #infolist {
    margin-top: -400px;
  }
}
@media (max-height: 450px) {
  #infolist {
    margin-top: -500px;
  }
}

/*# sourceMappingURL=index.css.map */
