/* BASE COLOURS */

:root {
  --white: #fff;
  --ns-misty-rose: #fadacc;
  --ns-light-pink: #e8a3a7;
  --ns-indian-red: #c2503c;
  --ns-burnt-sienna: #cf6e50;
  --ns-maroon: #811200;
  --ns-royal-blue: #005db3;
  --ns-black: #2a2117;
}

/*** ---------------
/* BASE STYLINGS */

body {
  font-family: 'Crimson Pro', serif;
  color: var(--ns-black);
  font-size: 14px;
  line-height: 20px;
  background-color: var(--ns-misty-rose);
}

p {
  margin-bottom: 10px;
}

ul {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  display: inline-block;
  max-width: 100%;
}

figure {
  margin-bottom: 10px;
}


/*** -----------
/*** HEADINGS ***/

h2 {
  font-family: 'shag-lounge', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 60px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/*** ----------------
/*** NAVIGATION ***/

.navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 40px;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 0px;
  padding-left: 0em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  background-color: transparent;
}

.ns_nav-main {
  display: block;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--ns-black);
}

.ns_nav-main-link {
  font-family: 'Colby Medium', sans-serif;
  color: var(--ns-black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
  -webkit-transition: color 175ms ease;
  transition: color 175ms ease;
}

.ns_nav-main-link:hover {
  color: var(--ns-royal-blue);
}

.ns_nav-main-link:active {
  text-decoration: underline;
}

.ns_nav-main-link:focus {
  color: #763658;
}

.ns_nav-main-link.w--current {
  color: var(--ns-royal-blue);
  font-weight: 500;
  text-decoration: none;
}

.ns_nav-menu-main {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-button {
  display: none;
}

.menu-button.w--open {
  z-index: 99;
}

.ns_logo {
  display: inline-block;
  margin-right: 60px;
}

.ns_social-nav {
  font-family: "Font Awesome 7 Brands", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.ns_social-nav-link {
  padding: 20px;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  font-family: "Font Awesome 7 Brands", sans-serif;
  color: var(--ns-royal-blue);
  font-size: 1.4em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.ns_social-nav-link:hover {
  color: var(--ns-indian-red);
}

/*** ------------
/*** HEADER ***/

.ns_header {
  margin-top: 80px;
  margin-bottom: 130px;
}


/*** ------------------
/*** MAIN SECTION ***/

.ns_main {
  width: 80%;
  padding: 0px;
}

.ns_main-content-wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  border-style: solid;
  border-width: 3px;
  border-color: var(--ns-black);
}

.ns_main-content {
  width: 100%;
}

.ns_main-content-wrapper.ns_404-page {
  margin-top: 100px;
  border-style: none;
}


/*** -------------------
/*** POSTS SECTION ***/

.ns_blog-posts {
  width: 100%;
}

.ns_post-wrapper {
  width: 100%;
  padding-top: 100px;
  border-bottom: var(--ns-black) 3px solid;
}

.ns_post-date-wrapper {
  margin-bottom: 10px;
}

.ns_post-date {
  font-family: 'ColbyExtMedium', sans-serif;
  font-size: 14px;
  color: var(--ns-black);
  text-transform: uppercase;
  padding-left: 15px;
}

.ns_post-heading-wrapper {
  color: var(--ns-indian-red);
  text-decoration: none;
  margin-bottom: 40px;
  padding: 0 10px;
  border-top: 3px solid var(--ns-maroon);
}

.ns_post-heading {
  font-family: shag-lounge, sans-serif; 
  font-size: 45px;
  color: var(--ns-maroon);
  line-height: 45px;
  text-align: center;
  letter-spacing: 0em;
  text-decoration: none;
  text-transform: uppercase;
  max-width: 25ch;
  margin-top: 15px;
  margin-bottom: 15px;
}

.ns_post-heading a {
  color: var(--ns-indian-red);
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

.ns_post-heading a:hover {
  color: var(--ns-royal-blue);
}

.ns_post-image-wrapper {
  margin-bottom: 25px;
  padding: 10px;
  border: 3px solid var(--ns-black);
}

.image {
  margin: 0px;
  border: 3px solid var(--ns-black);
}

.ns_rich-text {
  display: block;
  padding: 40px;
}

.ns_rich-text h3, .ns_rich-text h4, .ns_rich-text h5 {
  font-family: 'Colby Medium', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ns_rich-text h3 {
  color: var(--ns-black);
  font-size: 22px;
  margin-top: 60px;
}

.ns_rich-text h4 {
  font-size: 20px;
  margin-top: 60px;
}

.ns_rich-text p, .ns_rich-text ul, .ns_rich-text ol {
  font-family: 'Crimson Pro', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.02px;
  max-width: 60ch;
  margin-bottom: 40px;
}

.ns_rich-text a {
  color: var(--ns-indian-red);
  font-weight: 500;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

.ns_rich-text a:hover {
  color: var(--ns-royal-blue);
}

.ns_rich-text img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  padding: 10px;
  border-style: solid;
  border-width: 3px;
  border-color: var(--ns-black);
}

.ns_rich-text figure {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0px;
  border-style: none;
  border-width: 2px;
  border-color: var(--ns-black);
  background-color: transparent;
}

.ns_rich-text h5 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 22px;
}

.ns_rich-text ul, .ns_rich-text ol {
  font-family: 'Crimson Pro', sans-serif;
  font-size: 22px;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;
}

.ns_rich-text ul {
  list-style-type: disc;
}

.ns_rich-text ol {
  list-style-type: decimal;
}

.ns_rich-text li {
  padding-bottom: 10px;
  font-weight: 400;
}

p.img-col-container {
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 45px;
  border-style: solid;
  border-width: 3px;
  border-color: var(--ns-black);
}


p.img-row-container {
  width: auto;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px;
  border-style: solid;
  border-width: 3px;
  border-color: var(--ns-black);
}

.img-row-container img, .img-col-container img {
  border: none;
  margin: 0;
}

.img-row-container a {
  width: 50%;
  display: flex;
}


/*** ---------------
/*** POST TAGS ***/

.ns_post-tags-wrapper  {
  width: 100%;
}

ul.ns_post-tags {
  padding: 0;
}

.ns_post-tags li {
  font-family: 'Colby Medium', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 10px;
}

.ns_post-tags li a {
  color: var(--ns-royal-blue);
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

.ns_post-tags li a:hover {
  color: var(--ns-indian-red);
}


/*** ----------------
/*** LIGHTBOX ***/


/*** ----------------
/*** PAGINATION ***/

.pagination-wrapper {
  width: 100%;
}

.pagination {
  font-family: 'Colby Medium';
  font-size: 18px;
  color: var(--ns-black);
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0;
  padding: 40px 0;
}

.pagination-link, .pagination-page-number {
  color: var(--ns-black);
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0 10px;
  padding: 10px;
}

.pagination-link {
  border-style: solid;
  border-width: 3px;
  border-color: var(--ns-black);
  border-radius: 0px;
  background-color: transparent;
  -webkit-transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.pagination-link:hover {
  border-color: var(--ns-royal-blue);
  background-color: var(--ns-royal-blue);
  color: var(--ns-misty-rose);
}

.pagination-page-number:hover{
  color: var(--ns-indian-red);
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}


/*** ------------
/*** FOOTER ***/

.ns_footer {
  width: 80%;
  margin-top: 160px;
  margin-bottom: 0px;
}

.ns_footer-main-wrapper {
  color: var(--white);
  font-size: 1.25em;
  width: 100%;
  padding: 20px;
  background-color: var(--ns-burnt-sienna);
}

.ns_footer-contact {
  font-family: 'Colby Medium', sans-serif;
  display: block;
}

.ns_footer-coypright {
  margin-top: 15px;
  margin-bottom: 15px;
}

.text-block {
  font-family: 'Colby Medium', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.empty-state {
  background-color: transparent;
}

.ns_footer-main {
  width: 100%;
  padding: 40px 10px;
  border-style: solid;
  border-width: 3px;
  border-color: var(--ns-black);
  -o-object-fit: fill;
  object-fit: fill;
}

.text-block-2 {
  font-family: 'Colby Medium', sans-serif;
  color: var(--ns-black);
  font-size: 1.2em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ns_footer-social-link {
  padding: 20px;
  -webkit-transition: color 275ms ease;
  transition: color 275ms ease;
  font-family: "Font Awesome 7 Brands", sans-serif;
  color: var(--ns-black);
  font-size: 1.4em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.ns_footer-social-link:hover {
  color: var(--white);
}

.ns_body-wrapper {
  width: 100%;
  -webkit-transition: color 325ms ease;
  transition: color 325ms ease;
}

.text-block-8 {
  font-weight: 500;
  text-transform: uppercase;
}

.ns_main-content {
  padding-bottom: 0px;
}

.text-block-12 {
  font-weight: 500;
  text-transform: uppercase;
}

.link-3 {
  font-family: 'Colby Ext';
  color: var(--ns-black);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.link-3:hover {
  color: #602920;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

._404container {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin-right: 0px;
  margin-left: 0px;
  clear: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.compass-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  height: 518px;
  margin-left: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/Compass-Base-03.svg');
  background-size: auto;
  background-repeat: no-repeat;
}

.compass-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.needle {
  position: static;
  left: 753px;
  top: 538px;
  right: auto;
  display: block;
  width: 45px;
  max-width: none;
  margin-top: 112px;
  margin-left: 5px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.heading-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: shag-lounge, sans-serif;
  color: var(--ns-indian-red);
  font-size: 100px;
  line-height: 100px;
  font-weight: 400;
  text-align: center;
}

._404-paragraph {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: shag-lounge, sans-serif;
  color: var(--ns-black);
  font-size: 40px;
  line-height: 45px;
  text-align: center;
  white-space: normal;
}

.ns_hero-link {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: var(--ns-royal-blue);
  text-decoration: none;
}

.link-block {
  display: none;
}

.link-block-2 {
  width: 100%;
  color: var(--ns-black);
  text-decoration: none;
}

.link-block-2:hover {
  color: var(--ns-royal-blue);
}


@media screen and (max-width: 991px) {
  .ns_footer {
    width: 100%;
    margin-top: 100px;
  }

  .ns_footer-main-wrapper {
    width: 100%;
    padding: 10px;
  }

  .ns_footer-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 3px solid var(--ns-black);
    border-bottom: 3px none var(--ns-black);
  }

  .ns_footer-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ns_body-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px none #000;
  }

  .ns_main {
    width: 100%;
    border-style: none;
  }

  .body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ns_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin-top: 20px;
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ns_footer-main {
    padding: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .ns_footer-social-link {
    font-weight: 400;
  }

  .ns_footer-social-link.ns_about-social-link {
    font-weight: 400;
  }

  .ns_main-content-wrapper {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    border-style: solid;
  }

  .ns_blog-posts {
    width: 100%;
    border: 1px none #000;
  }

  .ns_rich-text {
    width: 100%;
    padding-top: 0px;
  }

  .ns_post {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border-style: none none solid;
  }

  .ns_post-date-wrapper {
    font-family: 'ColbyExtMedium', Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .ns_post-date.w--current {
    font-size: 14px;
  }

  .ns_nav-main-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: var(--ns-indian-red);
    font-size: 25px;
  }

  .ns_nav-main-link:hover {
    color: var(--ns-royal-blue);
  }

  .ns_nav-main-link.w--current {
    color: var(--ns-royal-blue);
  }

  .navbar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .ns_nav-menu-main {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: block;
    width: 100%;
    margin-top: 0px;
    padding-top: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--ns-misty-rose);
    color: #fff;
  }

  .menu-button {
    position: relative;
    z-index: 99;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 0px;
    padding-left: 18px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    -webkit-transform: perspective(0px);
    transform: perspective(0px);
    color: #e75a1e;
  }

  .menu-button.w--open {
    background-color: transparent;
    color: #282643;
  }

  .icon {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--ns-royal-blue);
    text-align: right;
  }

  .image-2 {
    display: none;
  }

  .ns_social-nav-link {
    color: var(--ns-royal-blue);
  }

  .ns_social-nav-link:hover {
    color: var(--ns-indian-red);
  }

  .ns_post-heading {
    max-width: 18ch;
    font-size: 40px;
  }

  .ns_post-heading-wrapper {
    width: auto;
    text-align: center;
  }

  .ns_main-content {
    margin-right: 0px;
    margin-left: 0px;
  }

  .ns_post-wrapper {
    padding-top: 60px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .heading-5 {
    font-size: 55px;
  }

  ._404container {
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .compass-container {
    margin-right: auto;
    margin-left: auto;
  }

  .needle {
    left: 364px;
    top: 455px;
  }

  .column {
    border-style: none none solid;
    border-width: 1px 1px 3px;
    border-color: #000;
  }

  .link-block {
    display: contents;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 18px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .ns_footer-main-wrapper {
    width: 100%;
  }

  .ns_footer-contact {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 3px none #000;
  }

  .ns_footer-social {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ns_header {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .ns_footer-main {
    padding: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .text-block-2 {
    font-size: 3vw;
    line-height: 5vh;
    text-align: center;
  }

  .ns_footer-social-link {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .ns_rich-text {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .ns_rich-text p, .ns_rich-text ul, .ns_rich-text ol {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 26px;
  }

  .ns_rich-text img {
    padding: 0px;
    border-style: none;
  }

  .ns_rich-text figure {
    margin-top: 0px;
  }

  .ns_post {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border-style: none none solid;
    border-bottom-width: 3px;
  }

  .ns_post-date.w--current {
    font-size: 14px;
  }

  .ns_nav-menu-main {
    z-index: auto;
  }

  .menu-button {
    position: relative;
  }

  .menu-button.w--open {
    position: relative;
    z-index: 99;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    opacity: 1;
  }

  .icon {
    text-align: right;
  }

  .ns_post-heading {
    font-size: 35px;
    line-height: 38px;
  }

  .ns_post-heading-wrapper {
    margin-bottom: 30px;
  }

  .ns_post-tags-wrapper {
    border-right-style: none;
    border-left-style: none;
  }

  .ns_button {
    background-color: transparent;
    -webkit-transition: border-color 200ms ease, background-color 200ms ease;
    transition: border-color 200ms ease, background-color 200ms ease;
  }

  .heading-5 {
    font-size: 45px;
  }

  .heading-6 {
    margin-bottom: 30px;
  }

  ._404-paragraph {
    font-size: 34px;
    line-height: 40px;
  }

  .column {
    padding: 30px;
    border-bottom: 3px solid #000;
    border-right-style: none;
  }

  .column-2 {
    padding: 30px 30px 40px;
  }

  .ns_about-social {
    margin-top: 10px;
  }

  p.img-row-container, p.img-col-container {
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
    border: none;
    margin-bottom: 0;
  }

  .img-row-container a, .img-col-container img {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
}

@media screen and (max-width: 479px) {
  .ns_footer-main-wrapper {
    width: 100%;
    padding: 5px;
  }

  .ns_footer-contact {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 3px none #000;
  }

  .ns_footer-social {
    padding-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .ns_footer-coypright {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .text-block {
    color: #000;
  }

  .ns_body-wrapper {
    color: #a8cab9;
  }

  .ns_main {
    width: auto;
  }

  .body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .ns_header {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .ns_header h2{
    font-size: 50px;
  }

  .ns_footer-main {
    padding: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }

  .text-block-2 {
    font-size: 4vw;
    line-height: 5vw;
    font-weight: 400;
    text-align: center;
  }

  .ns_footer-social-link.ns_about-social-link {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 1.7em;
  }

  .ns_blog-list {
    display: block;
  }

  .ns_main-content-wrapper {
    width: auto;
    padding-top: 0px;
    border-style: solid;
    border-width: 2px;
  }

  .ns_blog-posts {
    width: auto;
  }

  .ns_rich-text {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .ns_post-heading {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 30px;
  }

  .ns_rich-text p {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 20px;
    color: var(--ns-black);
    font-size: 20px;
    line-height: 24px;
  }

  .ns_rich-text h4 {
    margin-top: 20px;
    color: var(--ns-black);
    font-size: 18px;
    font-weight: 500;
  }

  .ns_rich-text img {
    margin-bottom: 20px;
    padding: 0px;
    border-style: none;
  }

  .ns_rich-text figure {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .ns_rich-text h3 {
    margin-top: 35px;
    font-size: 18px;
    line-height: 20px;
  }

  .ns_rich-text ul, .ns_rich-text ol {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 15px 0;
  }
  
  .ns_rich-text li {
    padding-bottom: 5px;
  }

  .ns_post {
    width: auto;
    min-width: auto;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    border-style: solid;
    border-width: 0px 0px 2px;
    color: var(--ns-black);
  }

  .ns_post-date {
    font-size: 10px;
  }

  .ns_post-date.w--current {
    font-size: 12px;
  }

  .ns_nav-main-link {
    white-space: pre;
  }

  .navbar {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
  }

  .ns_nav-menu-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .menu-button.w--open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
  }

  .link-2 {
    font-size: 12px;
  }

  .ns_post-heading {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 32px;
    line-height: 35px;
  }

  .ns_post-heading-wrapper {
    margin-bottom: 40px;
  }

  .ns_post-wrapper {
    width: auto;
    min-width: auto;
    padding-top: 40px;
    padding-right: 10px;
    padding-left: 10px;
    border-bottom: 2px solid var(--ns-black);
  }

  .pagination {
    font-size: 15px;
  }
  
  .pagination-link, .pagination-page-number {
    color: var(--ns-black);
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin: 0 10px;
    padding: 5px;
  }
  
  .pagination-link {
    border-style: none;
    -webkit-transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
    transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
  }
  
  .pagination-link:hover {
    color: var(--ns-royal-blue);
  }
  
  .pagination-page-number:hover{
    color: var(--ns-indian-red);
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
  }

  .link-3 {
    font-size: 10px;
  }

  .ns_button {
    padding-top: 0px;
    padding-bottom: 0px;
    border-style: none;
    border-width: 2px;
    -webkit-transition: color 200ms ease, background-color 200ms ease;
    transition: color 200ms ease, background-color 200ms ease;
    font-size: 16px;
  }

  .ns_button:hover {
    background-color: transparent;
    color: var(--ns-royal-blue);
  }
  
  .heading-5 {
    color: var(--ns-black);
    font-size: 40px;
    line-height: 40px;
  }

  .compass-container {
    width: 220px;
    height: 284.9px;
  }

  .needle {
    width: auto;
    height: 150px;
    margin-top: 62px;
    margin-left: 3px;
  }

  .heading-6 {
    margin-bottom: 0px;
    font-size: 70px;
  }

  ._404-paragraph {
    width: 100%;
    min-width: auto;
    margin-bottom: 0px;
    padding-bottom: 15px;
    font-size: 20px;
    line-height: 22px;
  }

  .ns_about-social {
    margin-top: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .link-block {
    padding-top: 20px;
  }

}

@font-face {
  font-family: 'Colby Medium';
  src: url('../fonts/ColbyMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ColbyExtMedium';
  src: url('../fonts/ColbyExtMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}