@font-face {
  font-family: "Inter var";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-LightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-BoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Hemic Icons";
  src: url("../fonts/Hemic-Icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
[class*=icon-]:before {
  display: inline-block;
  vertical-align: middle;
  font-family: "Hemic Icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "A";
}

.icon-arrow-left:before {
  content: "B";
}

.icon-arrow-right:before {
  content: "C";
}

.icon-arrow-up:before {
  content: "D";
}

.icon-lock:before {
  content: "E";
}

.icon-search:before {
  content: "F";
}

.icon-phone:before {
  content: "H";
}

.icon-facebook:before {
  content: "I";
}

.icon-twitter:before {
  content: "J";
}

.icon-youtube:before {
  content: "K";
}

.icon-linkedin:before {
  content: "L";
}

.icon-envelope-open:before {
  content: "M";
}

.icon-envelope-closed:before {
  content: "N";
}

.icon-location:before {
  content: "O";
}

.icon-menu:before {
  content: "P";
}

.icon-external-link:before {
  content: "Q";
}

.icon-checkmark:before {
  content: "R";
}

.icon-close:before {
  content: "S";
}

.icon-doc-icon:before {
  content: "T";
}

.icon-docx-icon:before {
  content: "T";
}

.icon-pdf-icon:before {
  content: "U";
}

.icon-link:before {
  content: "V";
}

.grid-item {
  border: 1px solid white;
  background-color: #717171;
  padding: 1rem;
  min-height: 300px;
}

.grid-item.tall {
  min-height: 600px;
}

.fixed-content {
  position: fixed;
}

.sticky-content {
  position: sticky;
  top: 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-dark-blue {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue:visited {
  color: white;
}
.btn-dark-blue:hover {
  color: #0E1D6F;
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn-dark-blue:hover {
    color: white;
    background-color: #0E1D6F;
  }
}

.btn-white-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  border: 1px solid white;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-white-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-white-outline:visited {
  color: white;
}
.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
@media (max-width: 768px) {
  .btn-white-outline:hover {
    color: white;
    background-color: transparent;
  }
}

.btn-dark-blue-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: #0E1D6F;
  border: 1px solid #0E1D6F;
  background-color: transparent;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue-outline:visited {
  color: #0E1D6F;
}
.btn-dark-blue-outline:hover {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
.btn-dark-blue-outline :checked {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
@media (max-width: 768px) {
  .btn-dark-blue-outline:hover {
    color: #0E1D6F;
    border: 1px solid #0E1D6F;
    background-color: transparent;
  }
}

ul.link-list {
  list-style-type: none;
}
ul.link-list li a {
  text-decoration: none;
}
ul.link-list li a:hover {
  text-decoration: underline;
}

.hero-panel {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-panel .hero-panel-info-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  bottom: 0;
  left: 0;
  width: 60%;
  color: white;
  background-color: rgba(83, 115, 9, 0.96);
}
@media only screen and (max-width: 1075px) {
  .hero-panel .hero-panel-info-wrapper {
    width: 100%;
  }
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info {
  padding: 2rem;
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}
.hero-panel .hero-panel-info-wrapper .hero-panel-info h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.hero-panel .hero-panel-info-wrapper .kapa-bar {
  position: relative;
  bottom: 0;
  width: 100%;
}

.curated-news-panel {
  background-color: #007F87;
  color: white;
}
.curated-news-panel .curated-news-wrapper {
  position: relative;
  padding: 2rem 4rem;
}
@media only screen and (max-width: 1075px) {
  .curated-news-panel .curated-news-wrapper .carousel-dots {
    display: block;
  }
}
.curated-news-panel .curated-news-wrapper .next-btn,
.curated-news-panel .curated-news-wrapper .prev-btn {
  top: 50%;
  color: white;
}
.curated-news-panel .curated-news-wrapper .curated-news-title {
  font-size: 2.8rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}
.curated-news-panel .curated-news-wrapper .carousel-dots {
  margin-top: 2em;
}
.curated-news-panel .curated-news-wrapper .carousel-dot {
  background: white;
}
.curated-news-panel .curated-news-wrapper .carousel-dot.active {
  background: #0E1D6F;
}
.curated-news-panel .curated-news-wrapper .title {
  font-weight: 600;
}
.curated-news-panel .curated-news-wrapper .kapa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
}

.find-an-agent .agent-filters p {
  margin-bottom: 3em;
}
.find-an-agent .agent-filters form[name=agent-search-filter] {
  margin-bottom: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
}
@media only screen and (max-width: 768px) {
  .find-an-agent .agent-filters form[name=agent-search-filter] {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.find-an-agent .agent-filters form[name=agent-search-filter] .pillbox-input {
  flex: 0 0 25%;
  margin-bottom: 1em;
  top: 7px;
}
.find-an-agent .agent-filters form[name=agent-search-filter] .pillbox-input input,
.find-an-agent .agent-filters form[name=agent-search-filter] .pillbox-input select {
  padding-left: 1rem;
}
.find-an-agent .agent-filters form[name=agent-search-filter] button {
  flex: 0 0 20%;
  padding: 1rem 1.5rem;
}
@media only screen and (max-width: 1075px) {
  .find-an-agent .agent-filters form[name=agent-search-filter] button {
    width: 40%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 600px) {
  .find-an-agent .agent-filters form[name=agent-search-filter] button {
    width: 100%;
    display: block;
    max-width: none;
  }
}
@media only screen and (max-width: 600px) {
  .find-an-agent .agent-filters form[name=agent-search-filter] em {
    display: block;
    margin: 1em 0;
  }
}
@media only screen and (max-width: 600px) {
  .find-an-agent .agent-filters form[name=agent-search-filter] a.btn-dark-blue-outline {
    width: 100%;
    display: block;
  }
}
.find-an-agent .agent-filters h3 {
  font-size: 1.5em;
  font-weight: normal;
  margin-bottom: 1rem;
}
.find-an-agent .agent-filters .results-header {
  margin: 3em 0 6em;
}
.find-an-agent .agent-filters .results-header h2 {
  text-transform: uppercase;
  font-family: "Din Pro", serif;
  font-weight: 400;
  color: #717171;
}
.find-an-agent .agent-filters .results-header h2:after {
  content: "";
  height: 3px;
  width: 6em;
  background: #007F87;
  display: block;
  margin: 1em auto 0;
}
.find-an-agent .agent-filters .results-header h2 span {
  color: #3a414f;
}
.find-an-agent .agent-filters .find-an-agent-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  gap: 3rem 2rem;
}
@media only screen and (max-width: 1075px) {
  .find-an-agent .agent-filters .find-an-agent-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .find-an-agent .agent-filters .find-an-agent-content {
    grid-template-columns: 1fr;
  }
}
.find-an-agent .agent-filters .find-an-agent-content .default-content {
  padding-block: 0 2rem;
}
.find-an-agent .agent-filters .find-an-agent-content .agent h5 {
  font-size: 1.3rem;
}
.find-an-agent .agent-filters .find-an-agent-content .agent h5 a {
  color: #3a414f;
  text-decoration: none;
}
.find-an-agent .agent-filters .find-an-agent-content .agent p {
  margin-bottom: 0;
  line-height: 1.8;
  max-width: 65%;
}
.find-an-agent .agent-filters .find-an-agent-content .agent p a {
  color: #717171;
}
.find-an-agent .agent-filters .find-an-agent-content .agent .address a:after {
  content: "O";
  font-family: "Hemic Icons";
  color: white;
  background: #0E1D6F;
  border-radius: 50%;
  display: inline-block;
  height: 0;
  line-height: 1;
  width: 0;
  font-size: 0.7em;
  padding: 5px 14px 11px 2px;
  margin-left: 1ch;
}
.find-an-agent .agent-filters hr {
  width: 10%;
  margin: 0 auto 2em;
  height: 3px;
  background: #007F87;
}
.find-an-agent .agent-filters small {
  color: #717171;
}

/*# sourceMappingURL=find-an-agent.css.map */
