/* Global HTML styles */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  background-color: rgb(255, 255, 255);
  color: rgb(66, 81, 90);
  font-family: Catamaran, sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.025rem;
  line-height: 1.5rem;
}

.container {
  max-width: 88rem;
  padding: 0 1rem;
  width: 100%;
}

/* Header & Navigation Styles */
header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
}

  header .header-container {
    display: grid;
    grid-template-areas: "logo";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0.75rem 1rem;
    width: 100%;
  }

    header .header-container.open {
      background-color: rgb(25, 36, 42);
      bottom: 0;
      grid-template-areas:
        "logo"
        "section"
        "company";
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      left: 0;
      padding: 1rem;
      position: fixed;
      right: 0;
      top: 0;
    }

  header .logo-nav {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    grid-area: logo;
    width: 100%;
  }

    header .logo-nav button {
      border: none;
      background-color: transparent;
      padding: 0;
    }

    header .logo-nav .logo-black img {
      max-width: 30.0625rem;
      min-width: 15rem;
      padding-right: 1rem;
      width: 100%;
    }

    header .logo-nav .close > img {
      height: 1.75rem;
      width: 1.75rem;
    }

    header .header-container .logo-nav .logo-black,
    header .header-container .logo-nav .menu {
      display: initial;
    }

      header .header-container.open .logo-nav .logo-black,
      header .header-container.open .logo-nav .menu {
        display: none;
      }

    header .header-container .logo-nav .logo-white,
    header .header-container .logo-nav .close {
      display: none;
    }

      header .header-container.open .logo-nav .logo-white,
      header .header-container.open .logo-nav .close {
        display: initial;
      }

  header .company-nav {
    align-items: center;
    color: rgb(66, 81, 90);
    display: none;
    flex-direction: row;
    font-size: 0.875rem;
    font-weight: 800;
    grid-area: company;
    justify-content: flex-end;
    justify-self: end;
    line-height: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

    header .company-nav li {
      margin: 0;
      padding: 0;
    }

    header .company-nav a {
      color: inherit;
      text-decoration: none;
    }

    header .header-container.open .company-nav {
      display: flex;
      justify-content: center;
      justify-self: center;
    }

  header .section-nav {
    align-items: flex-start;
    color: rgb(255, 255, 255);
    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 600;
    grid-area: section;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
  }

    header .section-nav li {
      margin: 0;
      padding: 1rem 0;
      width: 100%;
    }

    header .section-nav .nav a {
      color: inherit;
      text-decoration: none;
    }

      header .section-nav a:hover {
        color: rgb(90, 103, 110);
      }

        header .section-nav a.current-location {
          background-image: linear-gradient(to right, rgb(41, 187, 179) 100%, rgb(41, 187, 179) 100%);
          background-position: 0 1.8125rem;
          background-repeat: repeat-x;
          background-size: 1px 2px;
        }

          header .section-nav a.current-location:hover {
            background-image: linear-gradient(to right, rgb(25, 143, 137) 100%, rgb(25, 143, 137) 100%);
          }

          header .header-container.open .section-nav a.current-location {
            background-position: 0 2.125rem;
          }

      header .section-nav a.button, header .section-nav a.button.hollow {
        width: 100%;
      }

    header .header-container.open .section-nav {
      display: flex;
    }

    header .header-container.open .section-nav a.button {
      margin-top: 1.5rem;
    }

/* Main body styles */
main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.highlighted-light, .highlighted-medium, .highlighted-dark{
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

  .highlighted-light {
    background-color: rgb(243, 243, 243);
  }

  .highlighted-medium {
    background-color: rgb(66, 81, 90);
    color: rgb(255, 255, 255);
    padding: 4rem 0;
  }

  .highlighted-dark {
    background-color: rgb(25, 36, 42);
    color: rgb(255, 255, 255);
  }

  .highlighted-black {
    background-color: rgb(13, 13, 23);
    color: rgb(255, 255, 255);
  }

/* Footer Styles */
footer, .footer-top, .footer-bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  color: rgb(255, 255, 255);
  justify-content: flex-start;
  width: 100%;
}

.footer-top {
  background-color: rgb(25, 36, 42);
  padding: 2.825rem 1.5rem;
}

  .footer-top p {
    font-size: 0.9375rem;
    line-height: 1.5rem;
    margin: 0;
    padding: 0;
  }

.footer-top-container {
  display: grid;
  grid-template-areas:
    "seo"
    "site-map"
    "newsletter";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  padding: 0;
  row-gap: 1rem;
  width: 100%;
}

  .footer-top-container .seo {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

    .footer-top-container .seo .seo-logo,
    .footer-top-container .seo .seo-button,
    .footer-top-container .seo .seo-text {
      margin-bottom: 2rem;
    }

    .footer-top-container.main .seo .seo-logo {
      max-width: 22.25rem;
      width: 100%;
    }

    .footer-top-container.main .seo {
      grid-template-areas:
        "logo"
        "text"
        "link";
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      max-width: 100%;
      row-gap: 0;
      width: 100%;
    }

    .footer-top-container.main .seo .seo-text {
      padding: 1.75rem 0 0.75rem 0;
    }

  .footer-top-container .site-map {
    font-size: 1.125rem;
    font-weight: 700;
    grid-area: site-map;
    line-height: 1.25rem;
  }

    .footer-top-container .site-map ul {
      display: grid;
      column-gap: 1rem;
      grid-template-areas:
        "home help"
        "features about"
        "security contact"
        "pricing login"
        "demo .";
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
      list-style: none;
      margin: 0;
      padding: 0;
      row-gap: 2rem;
      width: 100%;
    }

    .footer-top-container .site-map .home {
      grid-area: home;
    }

    .footer-top-container .site-map .help {
      grid-area: help;
    }

    .footer-top-container .site-map .features {
      grid-area: features;
    }

    .footer-top-container .site-map .about {
      grid-area: about;
    }

    .footer-top-container .site-map .security {
      grid-area: security;
    }

    .footer-top-container .site-map .contact {
      grid-area: contact;
    }

    .footer-top-container .site-map .pricing {
      grid-area: pricing;
    }

    .footer-top-container .site-map .login {
      grid-area: login;
    }

    .footer-top-container .site-map .demo {
      grid-area: demo;
    }

    .footer-top-container .site-map li {
      margin: 0;
      padding: 0;
    }

    .footer-top-container .site-map a {
      color: rgb(255, 255, 255);
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
    }

      .footer-top-container .site-map a.current-location {
        background-image: linear-gradient(to right, rgb(41, 187, 179) 100%, rgb(41, 187, 179) 100%);
        background-position: 0 1.5rem;
        background-repeat: repeat-x;
        background-size: 1px 2px;
      }

      .footer-top-container .site-map a:hover {
        background-image: linear-gradient(to right, rgb(41, 187, 179) 100%, rgb(41, 187, 179) 100%);
        background-position: 0 1.5rem;
        background-repeat: repeat-x;
        background-size: 1px 2px;
        color: rgb(230, 230, 230);
      }

        .footer-top-container .site-map a.current-location:hover {
          background-image: linear-gradient(to right, rgb(25, 143, 137) 100%, rgb(25, 143, 137) 100%);
        }

  .footer-top-container.main .site-map {
    margin-top: 2rem;
    text-align: left;
  }

    .footer-top-container.main .site-map a.button {
      font-size: 0.875rem;
      margin-bottom: 1.6875rem;
      padding: 0.5rem 0;
      width: 12.25rem;
    }

    .footer-top-container.main .site-map a:hover {
      background-image: none;
      background-size: 0;
      color: rgb(230, 230, 230);
    }

  .footer-top-container .newsletter {
    grid-area: newsletter;
    margin-top: 2rem;
    max-width: 20rem;
  }

  .footer-top-container .newsletter h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25rem;
    margin: 0;
    padding: 0;
  }

  .footer-top-container .newsletter p {
    margin: 0.75rem 0 1rem 0;
  }

  .footer-top-container .newsletter input[type="email"] {
    background-color: rgb(35, 48, 55);
    border: none;
    color: rgb(255, 255, 255);
    display: block;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    width: 100%;
  }

    .footer-top-container .newsletter input[type="email"]::placeholder {
      color: rgb(237, 237, 237);
    }

  .footer-top-container .newsletter input[type="button"] {
    margin-top: 1.5rem;
  }

.footer-bottom {
  background-color: rgb(13, 19, 23);
  color: rgb(85, 100, 109);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9375rem;
  padding: 2rem 0;
}

.footer-bottom-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  padding: 0 1rem;
  width: 100%;
}

  .footer-bottom-container > div:nth-child(1),
  .footer-bottom-container > div:nth-child(2),
  .footer-bottom-container > div:nth-child(3) {
    text-align: center;
  }

  .footer-bottom-container > div:nth-child(2) {
    line-height: 0.5rem;
  }

  .footer-bottom-container a {
    color: rgb(85, 100, 109);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.9375rem;
    text-decoration: none;
    transition: color 0.3s ease-out;
  }

    .footer-bottom-container a:hover {
      color: rgb(230, 230, 230);
    }

/* General Styles */
h1 {
  color: rgb(66, 81, 90);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  padding: 0.5rem 0;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 3rem;
}

h3 {
  letter-spacing: 0;
}

.center {
  text-align: center;
  width: 100%;
}

/* Column Styles */
.columns {
  display: block;
  padding: 0 1.3125rem;
}

.center-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

/* Button and Link Styles */
button, input {
  font-family: Catamaran, sans-serif;
}

button, a.button, input.button {
  background-color: rgb(41, 187, 179);
  border-radius: 3px;
  border: 2px solid rgb(41, 187, 179);
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2rem;
  padding: 0.625rem 2.25rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out, color 0.3s ease-out;
}

  button:hover, a.button:hover, input.button:hover {
    background-color: rgb(25, 143, 137);
    border-color: rgb(25, 143, 137);
  }

  button.warning, a.button.warning, input.button.warning {
    color: rgb(255, 255, 255);
    background-color: rgb(237,51,37);
  }

    button.warning:hover, a.button.warning:hover, input.button.warning:hover {
      background-color: rgb(255, 255, 255);
    }

  button.white, a.button.white, input.button.white {
    color: rgb(41, 187, 179);
    background-color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
  }

    button.white:hover, a.button.white:hover, input.button.white:hover {
      background-color: transparent;
      border-color: rgb(255, 255, 255);
      color: rgb(255, 255, 255);
    }

  button.highlight, a.button.highlight, input.button.highlight {
    background: linear-gradient(134.36deg, rgb(246, 181, 21) 0%, rgb(246, 151, 21) 100%);
  }

  button.hollow, a.button.hollow, input.button.hollow {
    background: transparent;
    color: rgb(41, 187, 179);
  }

    button.hollow:hover, a.button.hollow:hover, input.button.hollow:hover {
      color: rgb(25, 143, 137);
    }

  button:disabled, a.button:disabled, input.button:disabled {
    background-color: rgb(221, 224, 225);
    cursor: default;
  }

button.link, a.link, input.link {
  background-color: transparent;
  background-image: linear-gradient(to right, rgb(41, 187, 179) 100%, rgb(41, 187, 179) 100%);
  background-position: 0 1rem;
  background-repeat: repeat-x;
  border: none;
  background-size: 2px 2px;
  color: rgb(41, 187, 179);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0;
  text-decoration: none;
}

  button.link:hover, a.link:hover, input.link:hover {
    color: rgb(25, 143, 137);
    background-image: linear-gradient(to right, rgb(25, 143, 137) 100%, rgb(25, 143, 137) 100%);
  }

/* Forms and Form Fields */
.form-field {
  display: block;
}

  .form-field label {
    color: rgb(41, 187, 179);
    display: block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.75rem;
    padding: 0.25rem 0;
    width: 100%;
  }

  .form-field input, .form-field textarea, .form-field select {
    border: 1px solid rgb(221, 224, 225);
    border-radius: 2px;
    color: rgb(66, 81, 90);
    font-family: Catamaran, sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.025rem;
    line-height: 1.5rem;
    padding: 0.125rem 0.25rem;
    width: 100%;
  }

    .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
      border: 1px solid rgb(41, 187, 179);;
    }

  .form-field .errors {
    color: rgb(237, 51, 37);
    font-size: 0.75rem;
    font-weight: 700;
  }

/* Accordians */
.accordian.text-black-white .title {
  color: rgb(0, 0, 0);
}

  .accordian.text-black-white.collapsed .title {
    color: rgb(255, 255, 255);
  }

  .accordian.text-black-white .title:hover {
    color: rgb(25, 36, 42);
  }

    .accordian.text-black-white.collapsed .title:hover {
      color: rgb(25, 36, 42);
    }

.accordian.text-gray-gray .title {
  color: rgb(66, 81, 90);
}

  .accordian.text-gray-gray .title:hover {
    color: rgb(41, 187, 179);
  }

    .accordian.text-gray-gray.collapsed .title:hover {
      color: rgb(41, 187, 179);
    }

.accordian.text-white-white .title {
  color: rgb(255, 255, 255);
}

  .accordian.text-white-white .title:hover {
    color: rgb(41, 187, 179);
  }

    .accordian.text-white-white.collapsed .title:hover {
      color: rgb(41, 187, 179);
    }

.accordian.text-teal-teal .title {
  color: rgb(41, 187, 179);
}

  .accordian.text-teal-teal .title:hover {
    color: rgb(25, 143, 137);
  }

    .accordian.text-teal-teal.collapsed .title:hover {
      color: rgb(25, 143, 137);
    }

.accordian .title {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  transition: color 0.3s ease-out;
}

.accordian .content {
  height: auto;
  margin-left: 2.125rem;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

  .accordian .title::before {
    background: no-repeat center/contain;
    content: '';
    flex: 0 0 auto;
    height: 1.125rem;
    margin: 0.1875rem 0.875rem 0 0;
    transform: rotate(90deg);
    width: 1.125rem;
  }

  .accordian.collapsed .title::before {
    transform: rotate(0deg);
  }

/* Plans and Pricing Styles */
.subscription-plans {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

  .subscription-plans > div {
    background-color: rgb(250, 250, 250);
    border: 1px solid rgb(25, 36, 42);;
    box-shadow: 2px 2px 5px rgba(25, 36, 42, 0.5);
    flex: 1;
    margin: 0.5rem;
    padding: 1.5rem 1rem;
  }

  .subscription-plans .cost span {
    display: block;
    text-align: center;
    width: 100%;
  }

    .subscription-plans .cost span:nth-child(1) {
      font-size: 3rem;
    }

  .subscription-plans .plan-name {
    color: rgb(41, 187, 179);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 0;
    text-align: center;
    width: 100%;
  }


  .subscription-plans .plan-description {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
  }

/* Hover Info Icon */
.hover-icon {
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  position: relative
}

  .hover-icon > .hover-info {
    background-color: rgb(25, 36, 42);
    border-radius: 3px;
    box-sizing: border-box;
    bottom: 125%;
    color: rgb(255, 255, 255);
    display: inline-block;
    font-size: 0.75rem;
    left: 50%;
    line-height: 1rem;
    margin-left: -8rem;
    padding: 0.5rem;
    position: absolute;
    text-align: center;
    visibility: hidden;
    width: 16rem;
    z-index: 10;
  }

    .hover-icon > .hover-info::after {
      background-color: rgb(25, 36, 42);
      border-radius: 3px;
      content: "";
      height: 1.25rem;
      left: 50%;
      margin-left: -0.625rem;
      position: absolute;
      top: 75%;
      transform: rotate(45deg);
      width: 1.25rem;
      z-index: -1;
    }

  .hover-icon:hover > .hover-info {
    visibility: visible;
  }

@media screen and (min-width: 50rem) {
  header .header-container, header .header-container.open {
    background-color: transparent;
    grid-template-areas:
    "company company"
    "logo section";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 0 0.75rem;
    position: initial;
  }

    header .logo-nav .menu {
      display: none;
    }

    header .logo-nav .logo-black img {
      margin-bottom: 2.5rem;
      width: 17.25rem;
    }

      header .logo-nav .logo-black.solutions img {
        width: 100%;
      }

      header .header-container .logo-nav .logo-black,
      header .header-container.open .logo-nav .logo-black {
        display: initial;
      }

    header .header-container .logo-nav .logo-white,
    header .header-container .logo-nav .menu,
    header .header-container .logo-nav .close,
    header .header-container.open .logo-nav .logo-white,
    header .header-container.open .logo-nav .menu,
    header .header-container.open .logo-nav .close {
      display: none;
    }

  header .company-nav {
    color: rgb(191, 198, 203);
    display: flex;
    padding: 1rem 0;
  }

    header .header-container.open .company-nav {
      justify-self: end;
    }

  header .section-nav {
    align-items: center;
    color: rgb(25, 36, 42);
    display: flex;
    flex-direction: row;
    font-size: 1.25rem;
    font-weight: 700;
    justify-content: flex-end;
  }

    header .section-nav li {
      margin: 0;
      padding-left: 1.5rem;
      text-align: right;
    }

      header .section-nav li:first-child {
        padding-left: 0;
      }

      header .section-nav li:last-child {
        padding-right: 0;
      }

    header .section-nav .nav {
      max-width: 7.75rem;
    }

    header .section-nav .buttons {
      text-align: right;
      width: auto;
    }

    header .section-nav a.button.hollow {
      width: auto;
    }

    header .section-nav a.button {
      margin-left: 1.25rem;
      width: auto;
    }

      header .header-container.open .section-nav a.button,
      header .header-container.open .section-nav a.button.hollow {
        margin-top: 0;
      }

  footer {
    text-align: left;
  }

  .footer-top {
    padding: 5.5rem 0 4rem 0;
  }

  .footer-top-container {
    grid-template-areas:
      "seo site-map newsletter";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }

    .footer-top-container.main {
      grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-top-container .seo {
      align-items: center;
      flex-direction: row;
      justify-content: space-between;
      justify-self: start;
      max-width: 27rem;
      padding-right: 1rem;
      row-gap: 2.5rem;
    }

    .footer-top-container .seo .seo-logo,
    .footer-top-container .seo .seo-button,
    .footer-top-container .seo .seo-text {
      margin-bottom: 0;
    }

    .footer-top-container .site-map {
      justify-self: center;
      padding: 0 1rem;
    }

      .footer-top-container.main .site-map {
        margin-top: 0;
        text-align: center;
      }

      .footer-top-container .site-map ul {
        column-gap: 1rem;
        grid-template-areas:
          "home pricing about"
          "features demo contact"
          "security help login";
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
      }

    .footer-top-container .newsletter {
      justify-self: end;
      margin-top: 0;
      padding-left: 1rem;
    }

    .footer-bottom-container {
      grid-template-columns: 2fr 1fr 2fr;
      grid-template-rows: 1fr;
    }

      .footer-bottom-container > div:nth-child(1) {
        text-align: left;
      }

      .footer-bottom-container > div:nth-child(3) {
        text-align: right;
      }

  /* Column Styles */
  .columns {
    display: grid;
    column-gap: 3.5rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 0;
    width: 100%;
  }

  .subscription-plans {
    flex-direction: row;
  }

  @media screen and (min-width: 50rem) and (max-width: 62.5rem) {
    header .logo-nav .logo-black.solutions img {
      max-width: 23rem;
    }
  }
}
