@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@900&family=Source+Sans+Pro:wght@400;700&display=swap");
:root {
  font-size: 62.5%; }

html {
  background: #01120e; }

body {
  padding: 0;
  margin: 0;
  color: white; }

body, input, textarea, button {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2.2rem;
  -webkit-font-smoothing: antialiased; }

div.inner {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 20px; }

a {
  text-decoration: none; }

h3 {
  margin: 40px 0 20px 0;
  font-size: 1.2em;
  font-weight: bold; }
  h3:first-child {
    margin-top: 0; }

div.content ul {
  list-style-type: disc; }

div.content ul, div.content ol {
  margin: 25px 0; }
  div.content ul:first-child, div.content ol:first-child {
    margin-top: 0; }
  div.content ul:last-child, div.content ol:last-child {
    margin-bottom: 0; }
  div.content ul li, div.content ol li {
    margin: 25px 0;
    line-height: 1.5em; }
    div.content ul li p:first-child, div.content ol li p:first-child {
      margin: 0; }
    div.content ul li:first-child, div.content ol li:first-child {
      margin-top: 0; }
    div.content ul li:last-child, div.content ol li:last-child {
      margin-bottom: 0; }
    div.content ul li > ul, div.content ul li > ol, div.content ol li > ul, div.content ol li > ol {
      margin: 25px 0; }
      div.content ul li > ul:last-child, div.content ul li > ol:last-child, div.content ol li > ul:last-child, div.content ol li > ol:last-child {
        margin-bottom: 0; }

div.content p {
  margin: 25px 0;
  line-height: 1.5em; }
  div.content p:first-child {
    margin-top: 0; }
  div.content p:last-child {
    margin-bottom: 0; }

div.content a {
  color: #61DDFE;
  text-decoration: none; }

div.content img.content--image, div.content figure.content--image, div.content div.content--image-grid {
  margin: 25px 0; }
  div.content img.content--image:first-child, div.content figure.content--image:first-child, div.content div.content--image-grid:first-child {
    margin-top: 0; }
  div.content img.content--image:last-child, div.content figure.content--image:last-child, div.content div.content--image-grid:last-child {
    margin-bottom: 0; }

div.content img.content--image, div.content figure.content--image img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto; }

div.content figure.content--image figcaption {
  font-size: 0.9em;
  margin: 0; }

div.content div.content--image-grid {
  display: grid;
  gap: 20px; }
  div.content div.content--image-grid img.content--image {
    margin: 0; }
  @media (min-width: 800px) {
    div.content div.content--image-grid {
      grid-template-columns: 1fr 1fr; }
      div.content div.content--image-grid .image-wide {
        grid-column: 1 / 3; } }

div.dropdown {
  --border-radius: 15px;
  background: var(--dropdown-background);
  border-radius: var(--border-radius);
  overflow: hidden; }
  div.dropdown:not(:first-child) {
    margin-top: 30px; }
  div.dropdown > button {
    width: 100%;
    border: 0;
    text-align: left;
    border-radius: var(--border-radius);
    padding: 20px;
    color: white;
    background: var(--dropdown-button-background);
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background linear 250ms; }
    @media (hover: hover) {
      div.dropdown > button:hover {
        background: var(--dropdown-button-background-hover); } }
    div.dropdown > button p {
      flex: 1 1 0;
      margin: 0;
      font-size: 1.1em; }
      @media (min-width: 900px) {
        div.dropdown > button p {
          font-size: 1.2em; } }
    div.dropdown > button:after {
      display: block;
      content: '';
      flex: 0 0 auto;
      margin-left: 15px;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent; }
  div.dropdown div.dropdown--inner {
    padding: 25px;
    color: var(--dropdown-text-color); }
  div.dropdown.open button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  div.dropdown.open button:after {
    border-bottom: 12px solid #FFFFFF; }
  div.dropdown:not(.open) div.dropdown--inner {
    display: none; }
  div.dropdown:not(.open) button:after {
    border-top: 12px solid #FFFFFF; }

#footer {
  padding: 40px 0;
  font-size: 1.8rem; }
  @media (max-width: 700px) {
    #footer {
      font-size: 1.6rem; } }
  #footer a {
    color: white;
    text-decoration: none; }
  #footer p {
    margin: 0; }
  #footer p.title {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5; }
  #footer p.contact {
    margin-top: 15px;
    word-break: break-word;
    line-height: 1.5; }
  @media (max-width: 899px) {
    #footer {
      text-align: center; }
      #footer p.title {
        font-size: 2.4rem; } }

#header {
  background: #F6F3EC;
  padding: 12px 0;
  font-size: 1rem;
  position: sticky;
  z-index: 100;
  top: 0;
  box-shadow: rgba(156, 149, 133, 0.6) 0 0 10px; }
  #header img.logo {
    width: auto;
    height: 75px; }
  #header, #header a {
    color: #154237;
    text-decoration: none; }
  #header div.header--inner {
    display: flex;
    justify-content: space-between;
    align-items: center; }

@media (max-width: 999px) {
  #header img.logo {
    height: 60px; }
  #header button {
    cursor: pointer; }
  #header button.menu-open {
    border: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 80' width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='15' fill='%2317453A' rx='8'%3E%3C/rect%3E%3Crect y='35' width='100' height='15' fill='%2317453A' rx='8'%3E%3C/rect%3E%3Crect y='70' width='100' height='15' fill='%2317453A' rx='8'%3E%3C/rect%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px; }
  #header button.menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317453A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px; }
  #header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F6F3EC;
    transition: all 0.25s;
    transition-behavior: allow-discrete;
    opacity: 1;
    scale: 1; }
    #header nav ul {
      padding: 0;
      margin: 0;
      list-style-type: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      gap: 15px; }
    #header nav li {
      font-size: 2.2em;
      text-transform: uppercase; }
  html.menu-open body {
    overflow: hidden; }
  html:not(.menu-open) #header nav {
    display: none;
    opacity: 0;
    scale: 0;
    width: 0; } }

@media (min-width: 1000px) {
  #header nav {
    flex: 0 0 auto;
    font-size: 2.1em;
    line-height: 2.4rem;
    text-transform: uppercase; }
    #header nav ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      display: flex;
      flex-wrap: wrap; }
    #header nav li {
      padding: 0 25px;
      border-left: 1px solid #154237; }
      #header nav li:first-child {
        padding-left: 0;
        border-left: 0; }
      #header nav li:last-child {
        padding-right: 0; }
      #header nav li a {
        white-space: nowrap; }
  #header button {
    display: none; } }

#page-why div.reasons {
  margin: 40px 0; }
  #page-why div.reasons ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    list-style-type: none; }
    #page-why div.reasons ul li {
      display: grid;
      gap: 8px;
      grid-template-columns: min-content 1fr;
      align-items: center; }
      #page-why div.reasons ul li:before {
        display: block;
        content: '';
        width: 30px;
        height: 30px;
        background: url("images/check.svg") no-repeat center center;
        background-size: 100% 100%; }
      #page-why div.reasons ul li p {
        margin: 0; }
    @media (min-width: 1000px) {
      #page-why div.reasons ul {
        grid-template-columns: 1fr 1fr; } }
  #page-why div.reasons p.tag {
    margin: 1.5em 0 0 0; }

#page-why div.clients {
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.01);
  padding: 25px 25px 40px 25px;
  border-radius: 10px;
  margin: 60px 0 40px 0; }
  #page-why div.clients ul {
    margin: 35px 0 0 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    row-gap: 25px;
    column-gap: 50px;
    grid-template-columns: 1fr; }
    @media (min-width: 800px) {
      #page-why div.clients ul {
        grid-template-columns: 1fr 1fr; } }
    #page-why div.clients ul li {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 15px;
      align-items: center; }
      #page-why div.clients ul li.homeowners {
        --icon-url: url('images/clients/homeowners.svg'); }
      #page-why div.clients ul li.retirees {
        --icon-url: url('images/clients/retirees.svg'); }
      #page-why div.clients ul li.rental {
        --icon-url: url('images/clients/rental.svg'); }
      #page-why div.clients ul li.partners {
        --icon-url: url('images/clients/partners.svg'); }
      #page-why div.clients ul li:before {
        display: block;
        content: '';
        width: 50px;
        height: 50px;
        border-radius: 100%;
        background-color: #7C9A56;
        background-image: var(--icon-url);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 30px 30px;
        margin: 0 auto; }
      #page-why div.clients ul li p {
        margin: 0; }

#page-why div.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px; }
  @media (min-width: 800px) {
    #page-why div.team {
      grid-template-columns: 1fr 1fr; } }

#page-contact div.text {
  margin: 28px 0; }
  #page-contact div.text p {
    margin: 25px 0; }
    #page-contact div.text p:first-child {
      margin-top: 0; }
    #page-contact div.text p:last-child {
      margin-bottom: 0; }

#page-contact ul.contact {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  #page-contact ul.contact, #page-contact ul.contact a {
    color: var(--text-color);
    text-decoration: none; }
  #page-contact ul.contact li {
    margin: 20px 0; }
    #page-contact ul.contact li a {
      min-width: 0;
      overflow-wrap: break-word;
      word-wrap: break-word;
      hyphens: auto; }
    #page-contact ul.contact li:first-child {
      margin-top: 0; }
    #page-contact ul.contact li:last-child {
      margin-bottom: 0; }

#page-contact div.form {
  margin-top: 40px; }
  #page-contact div.form div.response {
    margin-bottom: 30px; }
    #page-contact div.form div.response p {
      margin: 0;
      font-size: 1.1em;
      line-height: 1.5;
      font-weight: bold; }
    #page-contact div.form div.response.error {
      color: #ff3620; }
    #page-contact div.form div.response.success {
      color: #2cde00; }
  #page-contact div.form form {
    display: grid;
    gap: 20px; }
    @media (min-width: 900px) {
      #page-contact div.form form {
        grid-template-columns: 3fr 5fr; }
        #page-contact div.form form textarea, #page-contact div.form form button {
          grid-column: 1 / 3; } }
    #page-contact div.form form input, #page-contact div.form form textarea, #page-contact div.form form button {
      margin: 0;
      font-size: 2rem;
      line-height: 3rem;
      padding: 15px;
      border-radius: 5px; }
    #page-contact div.form form input, #page-contact div.form form textarea {
      color: #3E3E3E;
      border: 2px solid #3E3E3E; }
    #page-contact div.form form button {
      background: #345A31;
      color: white;
      border: 0;
      text-align: center;
      cursor: pointer;
      transition: background 200ms linear; }
      @media (hover: hover) {
        #page-contact div.form form button:hover {
          background: #375e34; } }

img.hero {
  display: block;
  width: 100%;
  height: auto; }

h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 3.8rem;
  text-transform: uppercase; }

div.section {
  background: #154237;
  scroll-margin-top: 20px;
  padding: 80px 0;
  color: var(--text-color);
  --text-color: #FFFFFF;
  --dropdown-background: #F6F3EC;
  --dropdown-button-background: #6c853c;
  --dropdown-button-background-hover: #778f48;
  --dropdown-text-color: #04231c; }
  div.section div.inner > div.content:nth-child(2) {
    margin-top: 30px; }

div.section-light {
  background: #F6F3EC;
  --text-color: #04231c;
  --dropdown-background: #154237;
  --dropdown-button-background: #38582D;
  --dropdown-button-background-hover: #395d2c;
  --dropdown-text-color: #FFFFFF; }
