@import url("http://fonts.cdnfonts.com/css/sf-pro-display");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "SF Pro Display", sans-serif;
}

:root {
  --white: #fff;
  --nav-color: #969696;
  --deep-black: #1D1D1F;
  --primary-blue: #0066CC;
  --off-white: #F5F5F7;
  --grey1: #6E6E73;
  --grey2: #424245;
  --grey3: #D2D2D7;
  --grey4: #86868B;
  --grey5: #e8e8ed;
  --grey6: #86868b;
}

body .h1 {
  color: var(--off-white);
  font-size: 3.5rem;
  line-height: 3.75rem;
  letter-spacing: -0.28px;
  font-weight: 600;
}
@media (max-width: 734px) {
  body .h1 {
    color: var(--off-white);
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: 0.128px;
    font-weight: 600;
  }
}
body .h1.black {
  color: var(--deep-black);
}
body .h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.75rem;
  color: var(--off-white);
  text-align: center;
}
@media (max-width: 734px) {
  body .h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.25rem;
    color: var(--off-white);
  }
}
body .h2.black {
  color: var(--deep-black);
}
body .h3 {
  color: var(--off-white);
  font-size: 1.75rem;
  line-height: 1.9375rem;
  letter-spacing: 0.11px;
  font-weight: 400;
}
@media (max-width: 734px) {
  body .h3 {
    color: var(--off-white);
    font-size: 1.1875rem;
    line-height: 1.4375rem;
    font-weight: 400;
  }
}
body .h3.black {
  color: var(--deep-black);
}
body .h3 .semibold {
  font-weight: 500;
}
body .h3.bold {
  font-weight: 600;
}
body .h4 {
  color: var(--off-white);
  font-size: 1.3125rem;
  line-height: 1.625rem;
  letter-spacing: 0.36px;
  font-weight: 400;
}
@media (max-width: 734px) {
  body .h4 {
    color: var(--off-white);
    font-size: 1.1875rem;
    line-height: 1.4375rem;
    letter-spacing: 0.228px;
    font-weight: 400;
  }
}
body .h4.black {
  color: var(--deep-black);
}
body .h5 {
  color: var(--off-white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.375rem;
}
@media (max-width: 734px) {
  body .h5 {
    color: var(--off-white);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
}
body .h5.bold {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-weight: 700;
}
body .h5.bold.span {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.375rem;
}
body .special {
  font-size: 1.0625rem;
  line-height: 1.625rem;
  font-weight: 500;
}
body .h6 {
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 400;
  letter-spacing: -0.37px;
}
body .p {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  color: var(--grey1);
}
body .p.underline {
  text-decoration: underline;
  color: var(--grey2);
}
body .p.title {
  font-weight: 600;
  letter-spacing: -0.12px;
  color: var(--deep-black);
}
body .p.underline1 {
  color: var(--primary-blue);
  text-decoration: underline;
}

#top-nav {
  width: 100%;
  height: 3rem;
  align-items: center;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #FBFBFD;
  position: fixed;
  top: 0;
  z-index: 4;
  background: rgba(22, 22, 23, 0.8);
  -webkit-backdrop-filter: blur(1.5rem);
          backdrop-filter: blur(1.5rem);
}
#top-nav #nav-elements {
  gap: 1rem;
  color: var(--deep-black);
  display: flex;
}
@media (max-width: 768px) {
  #top-nav #nav-elements {
    justify-content: space-between;
    width: 100%;
    gap: 0;
    padding: 1rem;
  }
}
@media (max-width: 734px) {
  #top-nav #nav-elements {
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
}
#top-nav #nav-elements #nav-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#top-nav #nav-elements #nav-links img {
  margin-right: 1rem;
}
#top-nav #nav-elements #nav-links ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 768px) {
  #top-nav #nav-elements #nav-links ul {
    display: none;
  }
}
@media (max-width: 734px) {
  #top-nav #nav-elements #nav-links ul {
    display: none;
  }
}
#top-nav #nav-elements #nav-links ul li {
  list-style: none;
  font-size: 0.75rem;
  font-weight: 100;
  justify-content: center;
  align-items: center;
  color: var(--white);
}
@media (max-width: 734px) {
  #top-nav #nav-elements #nav-links ul li {
    display: none;
  }
}
#top-nav #nav-elements .nav-icons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
#top-nav #nav-elements .nav-icons #hamburger-menu {
  display: none;
}
@media (max-width: 768px) {
  #top-nav #nav-elements .nav-icons #hamburger-menu {
    display: block;
  }
}
@media (max-width: 734px) {
  #top-nav #nav-elements .nav-icons #hamburger-menu {
    display: block;
  }
}
#top-nav #nav-elements dialog.modal {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background: rgb(29, 29, 31);
  padding: 0rem 0.5rem 0rem 2rem;
}
#top-nav #nav-elements dialog.modal .close-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#top-nav #nav-elements dialog.modal .close-action #menu-modal-close, #top-nav #nav-elements dialog.modal .close-action #search-modal-close {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#top-nav #nav-elements dialog.modal ul li.h3.semibold {
  list-style: none;
  margin-bottom: 1rem;
}
#top-nav #nav-elements dialog.modal .search-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  padding-right: 2rem;
}
#top-nav #nav-elements dialog.modal .search-wrapper img {
  padding-right: 0.25rem;
  height: 1.75rem;
  width: 1.75rem;
  color: #86868b;
}
#top-nav #nav-elements dialog.modal .search-wrapper input[type=search] {
  display: flex;
  padding: 0rem 0.5rem;
  border: none;
  outline: none;
  background: rgb(29, 29, 31);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  width: 100%;
}
#top-nav #nav-elements dialog.modal .special {
  color: var(--white);
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
#top-nav #nav-elements dialog.modal .special img {
  margin-right: 0.5rem;
}
#top-nav #nav-elements dialog.modal .special:first-child {
  color: var(--grey6);
  font-weight: 400;
  margin-bottom: 1rem;
}

#top-banner {
  margin-top: 3rem;
  width: 100%;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  top: 0;
  z-index: 0;
}
#top-banner .h6 {
  color: var(--deep-black);
  margin-right: 0.5rem;
}
#top-banner a {
  color: var(--primary-blue);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top-banner img {
  margin-left: 0.25rem;
}

#marketing-section {
  display: flex;
  flex-direction: column;
}
#marketing-section #marketing {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0.75rem;
}
#marketing-section #marketing .iphone-img {
  width: 100%;
  height: 46rem;
  position: relative;
}
@media (max-width: 734px) {
  #marketing-section #marketing .iphone-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#marketing-section #marketing .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 3.5rem;
  left: auto;
}
#marketing-section #marketing .content .content-image {
  height: 4.5625rem;
}
#marketing-section #marketing .content h3 {
  margin-top: 0.375rem;
  margin-bottom: 0.75rem;
}
#marketing-section #marketing .content .links {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
@media (max-width: 734px) {
  #marketing-section #marketing .content .links {
    gap: 2rem;
  }
}
#marketing-section #marketing .content .links a {
  display: flex;
  color: var(--primary-blue);
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 1.3125rem;
  line-height: 1.8125rem;
  font-weight: 400;
  letter-spacing: 0.231px;
}
@media (max-width: 734px) {
  #marketing-section #marketing .content .links a {
    font-size: 1.0625rem;
    line-height: 1.3125rem;
    font-weight: 400;
    letter-spacing: -0.374px;
  }
}
#marketing-section #marketing .content .links a img {
  margin-left: 0.25rem;
}

#card-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, minmax(auto, auto));
  gap: 0.75rem;
  margin: 0rem 0.75rem 0.75rem 0.75rem;
}
@media (max-width: 734px) {
  #card-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, minmax(auto, auto));
    margin: 0rem;
  }
}
#card-section #card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  row-gap: 0.75rem;
}
#card-section #card .card-img {
  height: 36.25rem;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  #card-section #card .card-img {
    height: 30.625rem;
  }
}
@media (max-width: 768px) {
  #card-section #card .card-img {
    height: 30.625rem;
  }
}
@media (max-width: 734px) {
  #card-section #card .card-img {
    height: 34.25rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#card-section #card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 3.5rem;
}
@media (max-width: 734px) {
  #card-section #card .card-content {
    padding: 0rem 1.25rem 0rem 1.25rem;
  }
}
#card-section #card .card-content #card-content-img {
  height: 3.25rem;
}
@media (max-width: 768px) {
  #card-section #card .card-content #card-content-img {
    height: 2.5rem;
  }
}
@media (max-width: 734px) {
  #card-section #card .card-content #card-content-img {
    height: 2.5rem;
  }
}
#card-section #card .card-content .h4 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  text-align: center;
}
#card-section #card .card-content a {
  display: flex;
  color: var(--primary-blue);
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.231px;
}
#card-section #card .card-content a img {
  margin-left: 0.25rem;
}
#card-section #card .card-content .links {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
#card-section #card .card-content .links a {
  display: flex;
  color: var(--primary-blue);
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.231px;
}
#card-section #card .card-content .links a img {
  margin-left: 0.25rem;
}

#img-slideshow {
  display: grid;
  position: relative;
  width: 100%;
  overflow: scroll;
}
#img-slideshow .slide {
  display: flex;
  gap: 0.75rem;
}
#img-slideshow .slide .slide-container {
  position: relative;
  justify-content: center;
  align-items: center;
}
#img-slideshow .slide .slide-container .slide-img {
  justify-content: center;
  align-items: center;
  width: 61.25rem;
}
@media (max-width: 1024px) {
  #img-slideshow .slide .slide-container .slide-img {
    width: 44rem;
  }
}
@media (max-width: 768px) {
  #img-slideshow .slide .slide-container .slide-img {
    width: 44rem;
  }
}
@media (max-width: 734px) {
  #img-slideshow .slide .slide-container .slide-img {
    width: 18.0625rem;
    height: 30.9375rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#img-slideshow .slide .slide-container .slide-content {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  bottom: 1.3125rem;
  left: 2.625rem;
}
@media (max-width: 734px) {
  #img-slideshow .slide .slide-container .slide-content {
    flex-direction: column-reverse;
    bottom: 1.875rem;
    margin: 0rem;
  }
}
#img-slideshow .slide .slide-container .slide-content a {
  display: flex;
  background-color: var(--white);
  border-radius: 2.5rem;
  padding: 0.75rem 1.375rem 0.75rem 1.375rem;
  text-decoration: none;
  color: var(--deep-black);
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: -0.224px;
}
#img-slideshow .slide .slide-container .slide-content a img {
  margin-left: 0.25rem;
}
#img-slideshow .slide .slide-container .slide-content .h5 {
  display: flex;
}
@media (max-width: 734px) {
  #img-slideshow .slide .slide-container .slide-content .h5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0.75rem;
  }
}
#img-slideshow .slide .slide-container .slide-content .h5 span {
  margin-right: 0.5rem;
}
@media (max-width: 734px) {
  #img-slideshow .slide .slide-container .slide-content .h5 span {
    color: var(--off-white);
    margin: 0rem;
  }
}

#footer {
  background-color: var(--off-white);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem 1rem 0rem;
}
#footer .footer-container {
  margin: 0rem 16% 0rem 16%;
}
@media (max-width: 1024px) {
  #footer .footer-container {
    margin: 1.5rem;
  }
}
#footer .footer-container hr {
  color: var(--grey3);
  margin-top: 1.375rem;
}
#footer .footer-container .p {
  margin-bottom: 0.625rem;
  list-style: none;
}
#footer .footer-container .footnotes {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .footer-container .navigation .nav-directory {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #footer .footer-container .navigation .nav-directory {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 1.25rem 0rem 0rem 0rem;
  }
}
@media (max-width: 734px) {
  #footer .footer-container .navigation .nav-directory {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 1.25rem 0rem 0rem 0rem;
  }
}
#footer .footer-container .navigation .nav-directory li {
  margin: 0px;
  list-style: none;
}
@media (max-width: 734px) {
  #footer .footer-container .navigation .nav-directory li {
    margin: 0.625rem 0rem 0rem 0rem;
  }
}
#footer .footer-container .navigation .nav-directory li .plus-icon {
  display: none;
}
@media (max-width: 768px) {
  #footer .footer-container .navigation .nav-directory li .plus-icon {
    display: block;
  }
}
@media (max-width: 734px) {
  #footer .footer-container .navigation .nav-directory li .plus-icon {
    display: block;
  }
}
#footer .footer-container .navigation .nav-directory .p {
  margin-top: 0.625rem;
}
@media (max-width: 768px) {
  #footer .footer-container .navigation .nav-directory .p {
    display: none;
  }
}
@media (max-width: 734px) {
  #footer .footer-container .navigation .nav-directory .p {
    display: none;
    margin-top: 0rem;
  }
}
#footer .footer-container .navigation .nav-directory .p.title {
  margin: 1.5rem 0rem 0.625rem 0rem;
}
@media (max-width: 768px) {
  #footer .footer-container .navigation .nav-directory .p.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0rem 0rem 0.625rem 0rem;
    padding: 0.5rem 0.5rem 0.5rem 0rem;
    border-bottom: 1px solid var(--grey3);
  }
}
@media (max-width: 734px) {
  #footer .footer-container .navigation .nav-directory .p.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0rem 0rem 0.625rem 0rem;
    padding: 0.5rem 0.5rem 0.5rem 0rem;
    border-bottom: 1px solid var(--grey3);
  }
}
@media (max-width: 768px) {
  #footer .footer-container .navigation p {
    margin-top: 1rem;
  }
}
@media (max-width: 734px) {
  #footer .footer-container .navigation p {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  #footer .footer-container .navigation hr {
    display: none;
  }
}
@media (max-width: 734px) {
  #footer .footer-container .navigation hr {
    display: none;
  }
}
#footer .footer-container .copyright {
  margin-top: 0.5rem;
}
#footer .footer-container .copyright .copyright-section {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #footer .footer-container .copyright .copyright-section {
    flex-direction: column-reverse;
  }
}
@media (max-width: 734px) {
  #footer .footer-container .copyright .copyright-section {
    flex-direction: column-reverse;
  }
}
#footer .footer-container .copyright .copyright-section .p {
  margin-right: 1rem;
}
#footer .footer-container .copyright .copyright-section .copyright-links {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  #footer .footer-container .copyright .copyright-section .copyright-links {
    flex-direction: column;
  }
}
#footer .footer-container .copyright .copyright-section .copyright-links .link-list {
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  flex-wrap: wrap;
}
#footer .footer-container .copyright .copyright-section .copyright-links .link-list .link {
  border-right: 0.0625rem solid var(--grey4);
  margin-bottom: 0rem;
  display: flex;
  height: 1rem;
}
#footer .footer-container .copyright .copyright-section .copyright-links .link-list .link .p {
  margin: 0rem 0.625rem 0rem 0rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */