:root {
  --white: white;
  --paragraphs: #555;
  --black: black;
  --border: #e4e4e4;
  --gray: #585455;
  --transparent: transparent;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  background-color: var(--white);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  display: flex;
}

h1 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 26px;
  font-family: Playfair Display, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 113%;
}

h2 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Playfair Display, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 115%;
}

h3 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Playfair Display, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair Display, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 122%;
}

h5 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Playfair Display, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
}

h6 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Playfair Display, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

p {
  color: #5e5e5e;
  margin-bottom: 26px;
  font-size: 16px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 26px;
  padding-left: 34px;
}

li {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 7px;
}

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

strong {
  font-weight: 700;
}

em {
  font-family: Playfair Display, sans-serif;
  font-style: italic;
  font-weight: 400;
}

blockquote {
  border-left: 1px solid #0003;
  margin-bottom: 26px;
  margin-left: 16px;
  padding: 2px 24px;
  font-family: Playfair Display, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
}

figure {
  margin-top: 36px;
  margin-bottom: 36px;
}

figcaption {
  text-align: center;
  margin-top: 12px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  line-height: 160%;
}

.link {
  box-shadow: inset 0 -1px 0 0 var(--black);
  color: var(--black);
  text-decoration: none;
  transition: color .25s cubic-bezier(.25, .46, .45, .94), box-shadow .25s cubic-bezier(.25, .46, .45, .94);
  display: inline;
}

.link:hover {
  box-shadow: inset 0 -28px 0 0 var(--black);
  color: var(--white);
}

.rich-text-block {
  width: 100%;
  max-width: 780px;
}

.rich-text-block a {
  box-shadow: inset 0 -1px 0 0 var(--black);
  color: var(--black);
  text-decoration: none;
  transition: color .25s cubic-bezier(.25, .46, .45, .94), box-shadow .25s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  box-shadow: inset 0 -28px 0 0 var(--black);
  color: var(--white);
}

.rich-text-block img {
  border-radius: 8px;
}

.rich-text-block.wide {
  max-width: none;
  margin-bottom: 24px;
}

.navbar {
  z-index: 500;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-grid {
  z-index: 150;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px #000;
  grid-template: "Area Area-2"
  / 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.navbar-grid.navbar-grid-dymd {
  grid-template-columns: 1fr 1fr;
}

.nav-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo {
  object-fit: contain;
  height: 40px;
}

.brand {
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.brand.w--current {
  flex-flow: row;
  justify-content: flex-start;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 150px 20px 30px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 340px;
  margin-bottom: 0;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 0px;
  grid-row-gap: 15px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.search {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.search-nav-input {
  color: var(--black);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px #0000;
  width: 70px;
  height: 24px;
  margin-bottom: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  transition: width .25s cubic-bezier(.25, .46, .45, .94);
}

.search-nav-input:hover {
  width: 76px;
}

.search-nav-input:focus {
  width: 170px;
}

.search-nav-input::placeholder {
  color: var(--black);
}

.content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.section.page {
  padding-top: 0;
  display: flex;
}

.section.page.hidefornow {
  display: none;
}

.nav-menu {
  z-index: 100;
  background-color: var(--white);
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  box-shadow: 0 50px 50px #00000012;
}

.menu-button {
  flex: none;
  min-width: 24px;
  height: 24px;
  margin-left: 20px;
  padding: 0;
}

.menu-button.w--open {
  color: var(--black);
  background-color: #0000;
}

.nav-link {
  color: var(--black);
  letter-spacing: -.4px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 110%;
  text-decoration: none;
}

.menu-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.menu-block {
  border-left: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.menu-block.first {
  border-left-style: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.menu-text {
  opacity: .5;
  color: var(--black);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.search-icon-button {
  background-color: #0000;
  background-image: url('../images/Search.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 24px;
  height: 24px;
  padding: 0;
}

.menu-icon {
  width: 24px;
  max-width: none;
  height: 24px;
  display: block;
  position: absolute;
}

.close-icon {
  opacity: 0;
  width: 24px;
  max-width: none;
  height: 24px;
  display: block;
  position: absolute;
}

.menu-button-text {
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-left: 32px;
  padding: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 130%;
  display: block;
}

.collection-list---2a {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.post-text-gradient {
  z-index: 10;
  background-image: linear-gradient(to bottom, #0000, var(--black));
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 16% 7% 7%;
  display: flex;
}

.post-heading {
  color: #575757;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.post-heading.white {
  color: var(--white);
}

.post-heading.post-heading-related {
  font-size: 22px;
}

.category {
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 110%;
}

.post-info {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 7px;
  display: flex;
}

.date {
  color: #0009;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px 6px 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 110%;
  display: block;
}

.date.white {
  color: var(--white);
}

.link-post {
  background-color: var(--black);
  perspective: 1000px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 680px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94), filter .45s cubic-bezier(.25, .46, .45, .94), box-shadow .45s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  overflow: hidden;
  transform: none;
}

.link-post:hover {
  filter: brightness(110%);
  overflow: hidden;
  box-shadow: 0 50px 80px -20px #0006;
}

.link-post._230px-margin {
  border-radius: 0;
  height: 230px;
  margin-bottom: 17px;
}

.link-post._500px-margin {
  height: 500px;
  margin-bottom: 27px;
}

.link-post._100 {
  border-radius: 0;
  height: 100%;
  min-height: 230px;
}

.link-post._340px {
  height: 340px;
}

.link-post._340px-margin {
  height: 340px;
  margin-bottom: 22px;
}

.link-post._470px {
  height: 470px;
}

.link-post._380px {
  height: 380px;
}

.collection-item {
  perspective: 1000px;
  width: 100%;
}

.empty-state {
  border: 1px solid var(--border);
  text-align: center;
  background-color: #0000;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.empty-text {
  font-size: 16px;
  line-height: 140%;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.space._40px {
  margin-top: 40px;
  margin-bottom: 40px;
}

.space.top {
  margin-top: 0;
}

.collection-list---3a {
  grid-column-gap: 30px;
  grid-row-gap: 57px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.post-text {
  z-index: 10;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.link-category {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #8c9c8f;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 110%;
  text-decoration: none;
  transition: background-color .25s cubic-bezier(.25, .46, .45, .94), color .25s cubic-bezier(.25, .46, .45, .94);
}

.link-category:hover {
  background-color: var(--white);
  color: #8c9c8f;
}

.link-category.white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  padding: 5px 9px;
}

.link-category.white:hover {
  color: var(--white);
  background-color: #0000;
}

.link-post-heading {
  margin-top: 3px;
  text-decoration: none;
}

.link-post-heading.link-post-heading-related {
  font-family: Playfair Display, sans-serif;
  font-size: 22px;
}

.subscribe {
  background-color: var(--border);
  background-image: url('../images/Subscribe.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px;
  display: flex;
}

.subscribe-block {
  background-color: var(--black);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 790px;
  padding: 62px 10%;
  display: flex;
}

.subscribe-heading {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 48px;
}

.paragraph-subscribe {
  opacity: .65;
  color: var(--white);
  max-width: 330px;
  font-size: 17px;
  line-height: 160%;
}

.form-block-subscribe {
  width: 100%;
  max-width: 400px;
  margin-bottom: 8px;
}

.form-subscribe {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: auto;
  align-items: center;
  display: grid;
}

.text-field-subscribe {
  color: var(--white);
  background-color: #ffffff26;
  border: 1px solid #fff0;
  border-radius: 4px;
  height: 50px;
  margin-bottom: 0;
  padding: 15px;
  font-size: 16px;
  line-height: 115%;
  transition: border-color .25s cubic-bezier(.25, .46, .45, .94);
}

.text-field-subscribe:focus {
  border-color: #ffffff40;
}

.text-field-subscribe::placeholder {
  color: #ffffff80;
}

.submit-button-subscribe {
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition: color .25s cubic-bezier(.25, .46, .45, .94), background-color .25s cubic-bezier(.25, .46, .45, .94);
}

.submit-button-subscribe:hover {
  color: var(--white);
  background-color: #0000;
}

.success-message {
  background-color: #0000;
  border: 2px dashed #0eb232;
  border-radius: 4px;
  padding: 12px;
}

.error-message {
  background-color: #0000;
  border: 2px dashed #e52121;
  border-radius: 4px;
  padding: 12px;
}

.error-text {
  color: #e52121;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.success-text {
  color: #0eb232;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.grid-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2.2fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.collection-list---1a {
  grid-column-gap: 30px;
  grid-row-gap: 74px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 28px;
  display: grid;
}

.posts-block {
  border-right: 1px solid var(--border);
  width: 100%;
  padding-right: 50px;
}

.post-summary {
  margin-top: 20px;
  margin-bottom: 0;
  padding-right: 8%;
  font-size: 16px;
  line-height: 170%;
}

.post-summary.white {
  opacity: .6;
  color: var(--white);
}

.grid-sidebar {
  grid-column-gap: 0px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 50px;
  display: grid;
  position: sticky;
  top: 120px;
}

.text-sidebar {
  color: var(--black);
  margin-bottom: 30px;
  font-family: Playfair Display, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

.sidebar {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.sidebar.tags {
  display: none;
}

.link-categories {
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: -15px;
  padding: 8px 10px 8px 15px;
  text-decoration: none;
  display: flex;
}

.link-categories:hover {
  border: 1px solid var(--border);
  background-color: #fbfbfb;
  border-radius: 8px;
  margin-top: 0;
  margin-left: -15px;
  padding: 8px 10px 8px 15px;
}

.link-categories.w--current {
  border: 1px solid var(--border);
  background-color: #fbfbfb;
  border-radius: 8px;
  margin-top: -9px;
  margin-bottom: -9px;
  padding: 8px 10px 8px 15px;
}

.category-heading {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.category-heading:hover {
  padding-left: 0;
  font-size: 16px;
}

.outline-circle {
  background-color: var(--white);
  border-radius: 100%;
  flex: none;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  display: block;
  position: relative;
  box-shadow: inset 0 0 0 1px #d2d2d2;
}

.filled-circle {
  background-color: var(--black);
  border-radius: 100%;
  flex: none;
  font-size: 12px;
  display: block;
  position: absolute;
  inset: 0%;
}

.collection-list---categories {
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.link-post-featured {
  background-color: var(--black);
  perspective: 1000px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  flex: none;
  width: 100px;
  height: 100px;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.25, .46, .45, .94), filter .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s cubic-bezier(.25, .46, .45, .94);
  display: block;
  overflow: hidden;
}

.link-post-featured:hover {
  filter: brightness(110%);
  overflow: hidden;
  box-shadow: 0 30px 50px -15px #0006;
}

.featured-sidebar {
  perspective: 1000px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.featured-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 22px;
  display: flex;
}

.collection-list---featured-sidebar {
  grid-column-gap: 0px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.featured-info {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3px;
  display: flex;
}

.collection-list {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.collection-item---tag {
  perspective: 1000px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 7px;
  margin-right: 7px;
  display: inline-block;
}

.tag {
  background-color: var(--white);
  color: var(--paragraphs);
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 110%;
  text-decoration: none;
  transition-property: color, background-color;
  transition-duration: .25s, .25s;
  transition-timing-function: cubic-bezier(.25, .46, .45, .94), cubic-bezier(.25, .46, .45, .94);
  display: block;
}

.tag:hover {
  color: #535353;
  background-color: #ededed;
}

.tag.w--current {
  border-color: var(--black);
}

.button-posts {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  width: 100%;
  margin-top: 50px;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition: color .25s cubic-bezier(.25, .46, .45, .94), background-color .25s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.button-posts:hover {
  color: var(--black);
  background-color: #0000;
}

.button-posts.max-w {
  max-width: 250px;
}

.grid-footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: grid;
}

.block-footer {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.block-footer-link {
  border-left: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
  display: flex;
}

.link-footer {
  opacity: .6;
  color: var(--black);
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 15px;
  font-weight: 600;
  line-height: 140%;
  text-decoration: none;
  transition: opacity .25s cubic-bezier(.25, .46, .45, .94);
}

.link-footer:hover {
  opacity: 1;
}

.link-footer.hide {
  display: none;
}

.logo-footer {
  height: 60px;
}

.small-link-footer {
  opacity: .6;
  color: var(--black);
  margin-left: 15px;
  padding: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: opacity .25s cubic-bezier(.25, .46, .45, .94);
}

.small-link-footer:hover {
  opacity: 1;
}

.content-wide {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.collection-list---3b {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list---featured {
  grid-column-gap: 25px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: -10px;
  margin-bottom: -10px;
  display: grid;
}

.featured {
  perspective: 1000px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.collection-list---1b {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-item---1b {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  perspective: 1500px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.post-text-center {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.subscribe-block-wide {
  background-color: var(--black);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 62px 10%;
  display: flex;
}

.collection-list---3c {
  grid-column-gap: 30px;
  grid-row-gap: 57px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid-hero {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  width: 100%;
}

.collection-list---1c {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.collection-list---3d {
  grid-column-gap: 30px;
  grid-row-gap: 57px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list---2d {
  grid-column-gap: 30px;
  grid-row-gap: 57px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list---1d {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-item---1d {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--black);
  perspective: 1700px;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.post-text---1d {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 640px;
  padding: 80px 14%;
  display: flex;
}

.pagination {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.previous {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  width: 49%;
  margin-left: 0;
  margin-right: 0;
  padding: 18px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition: background-color .25s cubic-bezier(.25, .46, .45, .94), color .25s cubic-bezier(.25, .46, .45, .94);
}

.previous:hover {
  background-color: var(--white);
  color: var(--black);
}

.next {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  width: 49%;
  margin-left: auto;
  margin-right: 0;
  padding: 18px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition: background-color .25s cubic-bezier(.25, .46, .45, .94), color .25s cubic-bezier(.25, .46, .45, .94);
}

.next:hover {
  background-color: var(--white);
  color: var(--black);
}

.next.load-more {
  border-width: 1px;
  border-color: var(--gray);
  background-color: var(--gray);
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
  overflow-wrap: normal;
  width: 100%;
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.next.load-more:hover {
  background-color: var(--white);
  color: var(--paragraphs);
}

.post-text-filled {
  z-index: 10;
  background-color: var(--black);
  text-align: center;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 100%;
  margin: 5% auto;
  padding: 7%;
  display: flex;
}

.top-block {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 85px 10%;
  display: flex;
}

.heading {
  text-align: center;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 110%;
}

.heading.margin {
  margin-bottom: 30px;
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
}

.main-image {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  max-height: 80vh;
}

.post-heading-block {
  width: 100%;
  max-width: 1000px;
  margin-top: 70px;
  margin-bottom: 60px;
}

.tags-block {
  width: 100%;
  max-width: 780px;
  margin-top: 20px;
}

.page-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 30px;
  display: flex;
}

.page-block {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 780px;
  display: flex;
}

.page-block.center {
  text-align: center;
  align-items: center;
}

.page-block.template {
  border-top: 1px solid var(--border);
  padding-top: 50px;
  padding-bottom: 30px;
}

.grid-image {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 60px;
}

.image-about {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.paragraph {
  max-width: 600px;
  margin-top: 30px;
  margin-bottom: 0;
}

.form-block {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 30px;
}

.text-field {
  border: 1px solid var(--border);
  color: var(--black);
  background-color: #fbfbfb;
  border-radius: 8px;
  height: 60px;
  margin-bottom: 0;
  padding: 20px;
  font-size: 16px;
  line-height: 115%;
  transition: border-color .25s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: #afafaf;
}

.text-field::placeholder {
  color: #0009;
}

.submit-button {
  color: var(--white);
  background-color: #585455;
  border: 1px solid #585455;
  border-radius: 8px;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition-property: color, background-color;
  transition-duration: .25s, .25s;
  transition-timing-function: cubic-bezier(.25, .46, .45, .94), cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  color: #585455;
  background-color: #0000;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.textarea {
  border: 1px solid var(--border);
  color: var(--black);
  background-color: #fbfbfb;
  border-radius: 8px;
  min-width: 100%;
  max-width: 100%;
  min-height: 220px;
  max-height: 400px;
  margin-bottom: 10px;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 150%;
  transition: border-color .25s cubic-bezier(.25, .46, .45, .94);
}

.textarea:focus {
  border-color: #afafaf;
}

.textarea::placeholder {
  color: #0009;
}

.grid-colors {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.block-color {
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 110px;
  padding: 20px;
  display: flex;
}

.block-color.border {
  background-color: var(--border);
}

.block-color.paragraphs {
  background-color: var(--paragraphs);
}

.block-color.black {
  background-color: var(--black);
}

.text-color {
  color: var(--black);
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
}

.text-color.white {
  color: var(--white);
}

.hex-color {
  opacity: .5;
  color: var(--black);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  line-height: 120%;
}

.hex-color.white {
  color: var(--white);
}

.template-info {
  border: 1px solid var(--border);
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 18px;
  display: flex;
}

.button {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition: color .25s cubic-bezier(.25, .46, .45, .94), background-color .25s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.button:hover {
  color: var(--black);
  background-color: #0000;
}

.manrope {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.playfair-display {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
  font-family: Playfair Display, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.grid-licensing {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.licensing {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

.footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.field-label {
  color: var(--black);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}

.grid-search {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 780px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  display: grid;
}

.search-input {
  border: 1px solid var(--border);
  color: var(--black);
  background-color: #fbfbfb;
  border-radius: 8px;
  height: 62px;
  margin-bottom: 0;
  padding: 20px;
  font-size: 16px;
  line-height: 115%;
  transition: border-color .25s cubic-bezier(.25, .46, .45, .94);
}

.search-input:focus {
  border-color: #afafaf;
}

.search-input::placeholder {
  color: #0009;
}

.search-button {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 115%;
  transition: color .25s cubic-bezier(.25, .46, .45, .94), background-color .25s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.search-button:hover {
  color: var(--black);
  background-color: #0000;
}

.search-result-url {
  color: #00000080;
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.paragraph-snippet {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 160%;
}

.search-result-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.splash-subtitle {
  background-color: var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 50px;
  display: flex;
}

.subtitle {
  background-color: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.grid-splash {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  width: 100%;
  margin-bottom: 90px;
}

.grid-splash._3-columns {
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}

.splash {
  perspective: 1000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link-splash-img {
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  transition: box-shadow .45s cubic-bezier(.25, .46, .45, .94), transform .25s cubic-bezier(.25, .46, .45, .94);
  display: block;
  overflow: hidden;
}

.link-splash-img:hover {
  box-shadow: 0 50px 80px -20px #0003;
}

.splash-img {
  object-fit: cover;
  width: 100%;
}

.link-splash {
  color: #0009;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #efefef;
  border-radius: 4px;
  margin-top: 18px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 110%;
  text-decoration: none;
  transition: background-color .25s cubic-bezier(.25, .46, .45, .94), color .25s cubic-bezier(.25, .46, .45, .94);
}

.link-splash:hover {
  background-color: var(--black);
  color: var(--white);
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.div-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.columns {
  flex-flow: row;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.div-block-2 {
  width: 120px;
  height: 120px;
}

.text-block {
  color: var(--white);
  border: 1px #fff;
}

.logo-dymd {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-dymd-image {
  width: 120px;
  height: 120px;
  margin-right: 20px;
}

.navbar-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.navbar-button {
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.link-2 {
  color: var(--white);
  border: 1px solid #fff;
  border-radius: 0;
  padding: 5px 59px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.navbar-dymd {
  z-index: 99;
  -webkit-text-fill-color: inherit;
  background-color: #000;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
}

.text-block-2 {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 120%;
}

.image {
  width: 100%;
}

.section-2 {
  background-image: url('../images/home-hero-bg.jpg');
  background-position: 50% 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 750px;
  display: flex;
}

.home-hero {
  background-image: url('../images/home-hero-bg.jpg');
  background-position: 50% 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 750px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.home-hero-row {
  width: 100%;
  min-width: auto;
  max-width: 1200px;
}

.home-hero-col {
  max-width: 60%;
}

.hero-title {
  color: var(--white);
  font-family: Playfair Display, sans-serif;
  font-size: 47px;
  line-height: 56px;
}

.hero-title-h1 {
  color: var(--white);
  margin-top: 26px;
  padding-top: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
}

.hero-subtitle {
  color: var(--white);
  margin-top: 36px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.spacer {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.spacer.spacer20 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.h2 {
  text-align: center;
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
}

.section-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.rich-text-block-2 {
  color: #5e5e5e;
  font-size: 16px;
}

.heading-2, .heading-3 {
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
}

.div-block-3 {
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.link-block {
  margin-right: 15px;
}

.link-block.hide {
  display: none;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-prevnext_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-prevnext_item {
  position: relative;
}

.text-block-3 {
  z-index: 1;
  float: none;
  text-align: right;
  position: relative;
}

.prevnextlink {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.text-block-4 {
  z-index: 1;
  position: relative;
}

.div-block-5 {
  align-items: center;
  display: flex;
}

.text-block-5 {
  margin-right: 10px;
}

.image-2, .image-3 {
  margin-right: 0;
}

.collection-list-wrapper-2 {
  display: none;
}

.share {
  margin-right: 17px;
  font-family: Playfair Display, sans-serif;
}

.share_link {
  margin-right: 10px;
}

.share_link.share_link-last {
  margin-right: 0;
}

.contact_us-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact_us-link {
  color: #393838;
  border: 1px solid #000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 49%;
  min-width: 0;
  max-width: 310px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Manrope, sans-serif;
  text-decoration: none;
  display: flex;
}

.contact_us-image {
  margin-right: 10px;
}

.contact_us-descr {
  text-decoration: none;
}

.text-block-6 {
  color: #585455;
}

.text-block-6:hover {
  color: var(--gray);
}

.checkbox-field {
  align-items: center;
  display: flex;
}

.checkbox-label {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.checkbox {
  margin-top: 0;
  margin-right: 10px;
}

.small-text-footer {
  margin-left: 15px;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  line-height: 120%;
}

.section-4 {
  width: 8%;
}

.button-2 {
  text-align: center;
  background-color: #000;
  width: 100%;
  min-width: 0;
  max-width: 250px;
}

.columns-2 {
  width: 100%;
}

.heading-4, .heading-5, .heading-6 {
  text-align: center;
}

.image-4 {
  width: 100%;
}

.link-block-2, .link-block-3, .link-block-4 {
  width: 100%;
  text-decoration: none;
}

.link-block-5 {
  text-decoration: none;
}

.heading-7 {
  margin-bottom: 10px;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 37px;
  }

  h3 {
    font-size: 31px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  .navbar-grid.navbar-grid-dymd {
    grid-template-columns: 1fr 1fr;
  }

  .content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .collection-list---2a {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .link-post {
    height: 580px;
  }

  .collection-list---3a {
    grid-column-gap: 20px;
  }

  .subscribe {
    padding: 20px;
  }

  .subscribe-heading {
    font-size: 42px;
  }

  .posts-block {
    padding-right: 30px;
  }

  .grid-sidebar {
    padding-left: 30px;
  }

  .featured-sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-text {
    margin-top: 14px;
    margin-left: 0;
  }

  .block-footer-link {
    padding-left: 30px;
  }

  .collection-list---3b {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .collection-list---featured {
    grid-column-gap: 20px;
  }

  .featured {
    flex-direction: column;
    align-items: flex-start;
  }

  .collection-item---1b {
    grid-column-gap: 30px;
  }

  .collection-list---3c {
    grid-column-gap: 20px;
  }

  .grid-hero, .collection-list---1c {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .collection-list---3d, .collection-list---2d {
    grid-column-gap: 20px;
  }

  .post-text---1d {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .heading {
    font-size: 50px;
  }

  .post-heading-block {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .grid-image {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .grid-splash {
    grid-column-gap: 20px;
  }

  .logo-dymd-name {
    display: none;
  }

  .image {
    display: inline-flex;
  }

  .section-2 {
    background-position: 0 0;
    height: auto;
  }

  .home-hero {
    background-position: 0%;
    height: auto;
  }

  .home-hero-row {
    min-width: auto;
  }

  .home-hero-col {
    max-width: 70%;
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-title-h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .checkbox-label {
    line-height: 120%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 33px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .navbar {
    background-color: var(--black);
    position: relative;
  }

  .navbar-grid {
    border-bottom-style: none;
    grid-template-columns: 20% 80%;
  }

  .navbar-grid.navbar-grid-dymd {
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .utility-page-wrap {
    padding-top: 50px;
  }

  .section, .section.page {
    padding-top: 0;
  }

  .menu-grid {
    grid-row-gap: 30px;
    border-top-color: var(--border);
    grid-template-columns: 1fr;
  }

  .menu-block {
    border-left-style: none;
  }

  .collection-list---2a {
    grid-template-columns: 1fr;
  }

  .date {
    padding: 5px 8px;
    font-size: 10px;
  }

  .link-post {
    height: 80vw;
  }

  .link-post._230px-margin {
    height: 60vw;
  }

  .link-post._500px-margin {
    height: 60vw;
    margin-bottom: 18px;
  }

  .link-post._100 {
    height: 60vw;
  }

  .link-post._340px {
    height: 50vw;
  }

  .link-post._340px-margin {
    height: 60vw;
  }

  .link-post._470px {
    height: 80vw;
  }

  .link-post._380px {
    height: 100vw;
  }

  .space, .space._40px {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .collection-list---3a {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .link-category {
    padding: 4px 8px;
    font-size: 10px;
  }

  .subscribe-heading {
    font-size: 36px;
  }

  .form-subscribe, .grid-content {
    grid-template-columns: 1fr;
  }

  .collection-list---1a {
    grid-row-gap: 55px;
  }

  .posts-block {
    border-bottom: 1px solid var(--border);
    border-right-style: none;
    margin-bottom: 30px;
    padding-bottom: 30px;
    padding-right: 0;
  }

  .post-summary {
    margin-top: 14px;
  }

  .grid-sidebar {
    grid-row-gap: 50px;
    padding-left: 0;
  }

  .link-post-featured {
    width: 80px;
    height: 80px;
  }

  .featured-sidebar {
    flex-direction: row;
    align-items: center;
  }

  .featured-text {
    margin-top: 0;
    margin-left: 20px;
  }

  .button-posts {
    margin-top: 40px;
  }

  .grid-footer {
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .block-footer {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .block-footer-link {
    text-align: center;
    border-left-style: none;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0;
  }

  .logo-footer {
    margin-bottom: 5px;
  }

  .small-link-footer {
    margin-left: 0;
  }

  .collection-list---featured {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .featured {
    flex-direction: row;
    align-items: center;
  }

  .collection-item---1b {
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .collection-list---3c {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-hero {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1.5fr;
  }

  .collection-list---1c {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .collection-list---3d {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .collection-list---2d {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .collection-item---1d {
    grid-template-columns: 1fr;
  }

  .post-text---1d {
    min-height: auto;
  }

  .top-block {
    border-top: 1px solid var(--border);
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .heading {
    font-size: 44px;
  }

  .post-heading-block {
    margin-top: 40px;
  }

  .page-content {
    padding-top: 60px;
    padding-bottom: 10px;
  }

  .page-block.template {
    padding-top: 30px;
  }

  .grid-image {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .paragraph {
    margin-top: 20px;
  }

  .grid-colors {
    grid-template-columns: 1fr 1fr;
  }

  .grid-licensing {
    grid-template-columns: 1fr;
  }

  .grid-search, .search-result-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .splash-subtitle {
    margin-top: 30px;
    margin-bottom: 35px;
  }

  .grid-splash {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .grid-splash._3-columns {
    grid-template-columns: 1fr 1fr;
  }

  .link-splash {
    margin-top: 10px;
    font-size: 10px;
  }

  .logo-dymd-image {
    width: 80px;
    height: 80px;
  }

  .logo-dymd-name {
    width: 200px;
  }

  .link-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-hero {
    background-position: 50%;
  }

  .home-hero-col {
    max-width: 70%;
  }

  .hero-title {
    font-size: 28px;
    line-height: 32px;
  }

  .hero-title-h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .checkbox-label {
    text-align: left;
    line-height: 120%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-grid {
    grid-column-gap: 0px;
    grid-template-columns: 20% minmax(auto, 80%);
    grid-template-areas: "Area Area-2";
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-right {
    display: flex;
  }

  .brand {
    justify-content: flex-start;
    padding: 5px 0;
  }

  .utility-page-wrap, .section, .nav-menu {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-grid {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .menu-text {
    margin-bottom: 12px;
  }

  .menu-button-text {
    display: none;
  }

  .collection-list---2a {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .link-post._230px-margin {
    margin-bottom: 14px;
  }

  .link-post._340px {
    min-height: 230px;
  }

  .link-post._340px-margin {
    margin-bottom: 14px;
  }

  .collection-list---3a {
    grid-template-columns: 1fr;
  }

  .subscribe {
    padding: 10px;
  }

  .subscribe-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .subscribe-heading {
    font-size: 30px;
  }

  .paragraph-subscribe {
    font-size: 15px;
  }

  .featured-text {
    margin-left: 16px;
  }

  .tag {
    padding: 10px 15px;
  }

  .collection-list---3b {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .collection-list---3c, .collection-list---3d {
    grid-template-columns: 1fr;
  }

  .post-text---1d {
    padding: 50px 10%;
  }

  .previous, .next {
    padding-left: 15px;
    padding-right: 15px;
  }

  .top-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .heading {
    font-size: 30px;
  }

  .post-heading-block {
    margin-bottom: 30px;
  }

  .grid-image, .grid-colors {
    grid-template-columns: 1fr;
  }

  .template-info {
    padding: 14px;
  }

  .licensing {
    height: 80vw;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-search {
    grid-template-columns: 1fr;
  }

  .grid-splash._3-columns {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .logo-dymd-image {
    width: 60px;
    height: 60px;
  }

  .logo-dymd-name {
    display: none;
    overflow: visible;
  }

  .navbar-button {
    width: 135px;
  }

  .home-hero {
    background-position: 0%;
  }

  .home-hero-col {
    max-width: 100%;
  }

  .hero-title, .hero-title-h1, .hero-subtitle {
    text-align: center;
  }

  .text-block-4.prev_next-linktext {
    font-size: 16px;
  }

  .contact_us-row {
    flex-flow: column;
  }

  .contact_us-link {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

#w-node-df05a3d5-bec0-a8af-af91-42735fdf19a9-6d5c5b8d {
  place-self: auto;
}

#w-node-_9a0e20fc-9661-dbfc-e510-a490cfda26e6-cfda26de {
  justify-self: start;
}

#w-node-_7e005874-ddbd-f10d-50f0-c853881fbb2f-6d5c5b8e {
  align-self: stretch;
}

#w-node-cb29834e-89b0-462f-f725-e9623af55cfd-3dafc2b5 {
  grid-area: Area;
  align-self: center;
}

#w-node-_1d257728-5f87-eaea-2208-94804d15a6ae-6d5c5b90, #w-node-_949ded32-22eb-2b94-acf1-a396ad05dd33-6d5c5b91, #w-node-_949ded32-22eb-2b94-acf1-a396ad05dd33-6d5c5b92 {
  align-self: stretch;
}

#w-node-_82de3149-ade5-30c6-4bb3-fec6df6d2d8f-6d5c5b93, #w-node-_82e3fbc5-dfe8-aa36-19a0-2a411433626b-6d5c5b93 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_949ded32-22eb-2b94-acf1-a396ad05dd33-6d5c5b97 {
  align-self: stretch;
}

#w-node-a14ec045-916d-f627-57a2-2f8afb49368d-6d5c5b97 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a14ec045-916d-f627-57a2-2f8afb493691-6d5c5b97 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_949ded32-22eb-2b94-acf1-a396ad05dd33-6d5c5b98, #w-node-_949ded32-22eb-2b94-acf1-a396ad05dd33-6d5c5b99, #w-node-_9d7aaf34-b07d-34c2-d85e-6239c5070c76-6d5c5b9c, #w-node-_949ded32-22eb-2b94-acf1-a396ad05dd33-51cf6903 {
  align-self: stretch;
}

@media screen and (max-width: 767px) {
  #w-node-af7177d4-a876-72d8-f1e2-a885b81feeb7-b81feeb5 {
    order: 9999;
  }

  #w-node-_9f444a6a-6e51-c7e4-b624-cac042d70dda-6d5c5b92 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_82de3149-ade5-30c6-4bb3-fec6df6d2d91-6d5c5b93 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_30c87c6b-e5ea-20bb-4e1a-93a6ca90aca7-ca90ac9f, #w-node-_9a0e20fc-9661-dbfc-e510-a490cfda26e6-cfda26de {
    order: -9999;
  }
}


