:root {
  --black: #000;
  --white: white;
  --_apps---typography--heading-font: Montserrat, sans-serif;
  --_apps---typography--body-font: Montserrat, sans-serif;
  --_apps---typography--button-font: Montserrat, sans-serif;
  --_apps---sizes--radius: .375rem;
  --_apps---colors--background: #fff;
  --_apps---colors--foreground: #1d1d20;
  --_apps---colors--card: #fff;
  --_apps---colors--card-foreground: #1d1d20;
  --_apps---colors--popover: #fff;
  --_apps---colors--popover-foreground: #1d1d20;
  --_apps---colors--primary: #6366f1;
  --_apps---colors--primary-foreground: #fff;
  --_apps---colors--secondary: #f7f7f8;
  --_apps---colors--secondary-foreground: #1d1d20;
  --_apps---colors--muted: #f7f7f8;
  --_apps---colors--muted-foreground: #6b7280;
  --_apps---colors--accent: #6366f1;
  --_apps---colors--accent-foreground: #fff;
  --_apps---colors--destructive: #dc2626;
  --_apps---colors--border: #e5e7eb;
  --_apps---colors--input: #f9fafb;
  --_apps---colors--ring: #6366f1;
  --_apps---colors--chart-1: #6366f1;
  --_apps---colors--chart-2: #a78bfa;
  --_apps---colors--chart-3: #c4b5fd;
  --_apps---colors--chart-4: #8b5cf6;
  --_apps---colors--chart-5: #7c3aed;
  --_apps---colors--background-dark: #1d1d20;
  --_apps---colors--foreground-dark: #f9fafb;
  --_apps---colors--card-dark: #2a2a2d;
  --_apps---colors--card-foreground-dark: #f9fafb;
  --_apps---colors--popover-dark: #2a2a2d;
  --_apps---colors--popover-foreground-dark: #f9fafb;
  --_apps---colors--primary-dark: #6366f1;
  --_apps---colors--primary-foreground-dark: #fff;
  --_apps---colors--secondary-dark: #27272a;
  --_apps---colors--secondary-foreground-dark: #f9fafb;
  --_apps---colors--muted-dark: #27272a;
  --_apps---colors--muted-foreground-dark: #9ca3af;
  --_apps---colors--accent-dark: #6366f1;
  --_apps---colors--accent-foreground-dark: #fff;
  --_apps---colors--destructive-dark: #f87171;
  --_apps---colors--border-dark: #ffffff1a;
  --_apps---colors--input-dark: #ffffff26;
  --_apps---colors--ring-dark: #818cf8;
  --_apps---colors--chart-1-dark: #a78bfa;
  --_apps---colors--chart-2-dark: #c4b5fd;
  --_apps---colors--chart-3-dark: #7c3aed;
  --_apps---colors--chart-4-dark: #a5b4fc;
  --_apps---colors--chart-5-dark: #c4b5fd;
  --_apps---sidebar--sidebar: #f9fafb;
  --_apps---sidebar--sidebar-foreground: #1d1d20;
  --_apps---sidebar--sidebar-primary: #6366f1;
  --_apps---sidebar--sidebar-primary-foreground: #fff;
  --_apps---sidebar--sidebar-accent: #6366f1;
  --_apps---sidebar--sidebar-accent-foreground: #fff;
  --_apps---sidebar--sidebar-border: #e5e7eb;
  --_apps---sidebar--sidebar-ring: #6366f1;
  --_apps---sidebar--sidebar-dark: #2a2a2d;
  --_apps---sidebar--sidebar-foreground-dark: #f9fafb;
  --_apps---sidebar--sidebar-primary-dark: #a78bfa;
  --_apps---sidebar--sidebar-primary-foreground-dark: #f9fafb;
  --_apps---sidebar--sidebar-accent-dark: #27272a;
  --_apps---sidebar--sidebar-accent-foreground-dark: #f9fafb;
  --_apps---sidebar--sidebar-border-dark: #ffffff1a;
  --_apps---sidebar--sidebar-ring-dark: #818cf8;
}

body {
  background-color: var(--black);
  color: var(--black);
  font-family: Work Sans;
  font-size: 14px;
  line-height: 24px;
}

h1 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1em;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1em;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1em;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1em;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1em;
}

p {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.nav-container {
  max-width: 1200px;
  display: flex;
}

.nav-link {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s;
  position: relative;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--white);
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: underline;
}

.nav-link.first.w--current {
  background-color: #fff0;
  text-decoration: underline;
}

.brand {
  color: #000;
  letter-spacing: 3px;
  order: -1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 190px;
  margin-left: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  display: flex;
}

.brand.w--current {
  color: var(--white);
}

.brand.absolute {
  position: absolute;
}

.brand.absolute.w--current {
  max-width: 190px;
  position: absolute;
}

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

.navbar {
  background-color: var(--black);
  color: var(--white);
  width: 1289px;
  max-width: 917px;
  padding: 0 30px 15px 239px;
  position: sticky;
  inset: 0% 0% auto;
}

.container {
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.h1 {
  margin-top: 0;
}

.section {
  padding: 80px 30px;
}

.section.no-top-padding {
  padding-top: 0;
}

.section._40-px-top-padding-div {
  padding-top: 40px;
}

.section._20-px-top-padding {
  padding-top: 20px;
}

.section._60-px-paddings {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.bottom {
  padding-bottom: 120px;
}

.section.white {
  background-color: var(--white);
}

.section.white._60-px-top-padding {
  padding-top: 60px;
}

.section.white._40-px-top-padding-div {
  padding-top: 40px;
}

.footer {
  background-color: var(--white);
  color: var(--white);
  padding: 80px 30px;
}

.copywright-link {
  color: var(--black);
}

.copywright-link:hover {
  opacity: .8;
  text-decoration: underline;
}

.footer-bottom-text {
  color: var(--black);
  text-transform: none;
  margin-left: 0;
  margin-right: 2.5px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.footer-bottom {
  clear: none;
  color: var(--black);
  text-transform: uppercase;
  flex-wrap: wrap;
  flex: 1;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}

.footer-link {
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
}

.footer-link:hover {
  text-decoration: underline;
}

.date-text {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.date-text.black {
  color: var(--black);
}

.rich-text-block {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

._10-px-bottom-margin {
  margin-bottom: 10px;
}

.category-link {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1px;
  padding: 1px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.category-link:hover {
  text-decoration: underline;
}

.category-link.black {
  color: var(--black);
  padding-left: 0;
}

.category-link.white {
  color: var(--white);
  padding-left: 0;
}

.category-link.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.categories-menu {
  display: flex;
}

.search {
  margin-bottom: 0;
  display: flex;
}

.search-button {
  background-color: #0000;
  background-image: url("https://cdn.prod.website-files.com/683829433f7d5c521db7f024/683829443f7d5c521db7f0bf_search%20(1).png");
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto 18px;
}

.search-input {
  background-color: #0000;
  border: 1px solid #fff0;
  align-self: center;
  height: 22px;
  margin-bottom: 0;
  padding-left: 8px;
}

.search-input:active {
  color: var(--white);
}

.search-input:focus {
  color: var(--white);
  border-top-style: none;
  border-bottom-color: #fff;
  border-left-style: none;
  border-right-style: none;
}

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

.socials-div {
  justify-content: space-between;
  max-width: 120px;
  margin-top: 10px;
  margin-left: auto;
  display: flex;
}

.mobile-brand, .mobile-brand.w--current {
  display: none;
}

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

.social-image-2 {
  height: 17px;
  transition: all .5s;
}

.social-image-2:hover {
  opacity: .75;
}

.nav-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1.4fr .9fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.empty-logo-flex-div {
  justify-content: center;
  align-items: stretch;
  min-height: 0;
  margin-bottom: 40px;
  padding: 15px 30px;
  display: flex;
}

.title-text {
  color: var(--black);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}

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

._10-px-top-padding-div {
  margin-top: 10px;
}

.post-title {
  color: var(--white);
  font-family: Work Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
}

.post-title:hover {
  opacity: .7;
}

.post-title.black {
  color: var(--black);
}

.post-title.black:hover {
  opacity: .7;
  text-decoration: none;
}

.date-category-flex {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.black-dot {
  background-color: var(--black);
  border-radius: 20px;
  width: 4px;
  height: 4px;
  margin-left: 10px;
  margin-right: 10px;
}

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

._40-px-bottom-margin {
  margin-bottom: 40px;
}

.post-image {
  object-fit: cover;
  border-radius: 1px;
  width: 100%;
  height: 100%;
}

.div-flex {
  flex-direction: column;
  flex: 1;
  display: flex;
}

._3-column-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-grid {
  grid-column-gap: 60px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1.5fr;
  align-items: start;
}

.success-message {
  color: var(--black);
  background-color: #ddd0;
  border: 1px solid #fff3;
  border-radius: 4px;
  font-size: 17px;
  line-height: 25px;
}

.footer-box {
  margin-right: 100px;
}

.footer-title {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}

.newsletter-text {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #0000;
  border-bottom-color: #0006;
  min-height: 70px;
  padding-left: 0;
  font-size: 17px;
  font-weight: 400;
}

.newsletter-text:active, .newsletter-text:focus {
  border-top-style: none;
  border-right-style: none;
  border-bottom-color: var(--black);
  color: var(--black);
  border-left-style: none;
}

.newsletter-text::placeholder {
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
}

.form {
  flex-direction: column;
  display: flex;
}

.flex-content-footer {
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 60px;
  display: flex;
}

.submit-button {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  flex: 1;
  padding: 12px 60px;
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 500;
}

.submit-button:hover {
  background-color: var(--black);
  color: var(--white);
  border-color: #000;
}

.submit-button.w--current {
  color: #fff;
  background-color: #000;
}

.newsletter-wrapper {
  border-left: 0 #000;
}

.flex-button-div {
  display: flex;
}

.subscribe-grid {
  grid-row-gap: 30px;
  border: 1px #000;
  grid-template-rows: auto;
  grid-template-columns: .75fr;
}

.footer-link-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._250-px-link-block {
  height: 250px;
}

._250-px-link-block:hover {
  filter: grayscale(70%);
}

.mobile-nav-menu {
  display: none;
}

._40-px-top-margin-div {
  margin-top: 40px;
}

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

.flex-divbox {
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.flex-divbox.bottom-margin {
  margin-bottom: 15px;
}

.post-image-div {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 850px;
  height: 500px;
  margin-top: 40px;
}

._700-px-title-div {
  max-width: 700px;
}

._650-px-div {
  max-width: 650px;
}

.logo-image-mobile {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.autores {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.text-block {
  padding-right: 6px;
}

@media screen and (min-width: 1280px) {
  .footer-bottom-text {
    margin-left: 0;
  }

  .category-link {
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav-grid {
    grid-template-columns: .9fr 1.4fr .9fr;
  }

  .flex-content-footer {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1440px) {
  .footer-bottom-text {
    margin-left: 0;
  }

  .flex-content-footer {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1920px) {
  h1, h2 {
    font-size: 65px;
  }

  h3 {
    font-size: 50px;
  }

  .nav-container {
    max-width: 1440px;
  }

  .nav-link {
    font-size: 15px;
  }

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

  .brand.w--current {
    max-width: 1440px;
  }

  .brand.absolute {
    max-width: 238px;
  }

  .brand.absolute.w--current {
    max-width: 240px;
  }

  .navbar {
    margin-bottom: 60px;
  }

  .container {
    max-width: 1440px;
  }

  .hero-section {
    padding-bottom: 180px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer-bottom-text {
    color: var(--black);
    margin-left: 0;
    font-size: 18px;
  }

  .footer-link {
    font-size: 15px;
  }

  .date-text, .date-text.black, .date-text.black, .category-link {
    font-size: 14px;
  }

  .hero-news-image-link {
    height: 750px;
  }

  .title-hero {
    font-size: 40px;
    font-weight: 600;
  }

  ._265-px-link-block {
    height: 365px;
  }

  ._17-px-title-link {
    font-size: 20px;
  }

  .nav-grid {
    grid-template-columns: 1.2fr 1.4fr 1.18fr;
  }

  .empty-logo-flex-div {
    margin: auto auto 60px;
    padding-top: 6px;
    padding-bottom: 9px;
  }

  ._24-px-text-link {
    font-size: 28px;
  }

  ._200-px-link-block {
    height: 250px;
  }

  ._200-px-link-block._285-px-with {
    width: 350px;
    height: 250px;
  }

  .post-title.black {
    font-size: 22px;
    line-height: 28px;
  }

  ._400-px-post-image {
    height: 500px;
  }

  .footer-grid {
    grid-row-gap: 100px;
  }

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

  .subscribe-grid {
    border: 1px #000;
  }

  ._250-px-link-block {
    height: 300px;
  }

  .post-image-div {
    width: 1000px;
    height: 650px;
  }

  ._700-px-title-div {
    max-width: 850px;
  }

  ._650-px-div {
    max-width: 700px;
  }

  .white-paragraph {
    font-size: 16px;
  }

  ._550-px-height-div {
    height: 750px;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 34px;
    font-weight: 600;
  }

  h4 {
    font-size: 32px;
    font-weight: 600;
  }

  h5 {
    font-size: 30px;
    font-weight: 600;
  }

  h6 {
    font-size: 28px;
    font-weight: 600;
  }

  p {
    font-size: 15px;
    line-height: 22px;
  }

  .nav-link {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
    padding: 40px 0 40px 20px;
    font-size: 18px;
    line-height: 28px;
  }

  .nav-link:hover {
    text-decoration: underline;
  }

  .nav-link.first {
    border-bottom-style: none;
  }

  .menu-button {
    background-image: url("https://cdn.prod.website-files.com/683829433f7d5c521db7f024/683829443f7d5c521db7f0a5_661fe9c1bea06e222c91ffc8_Hamb%20Menu.png");
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 22px;
    order: 1;
    padding: 10px 0 10px 40px;
  }

  .menu-button.w--open {
    background-color: #0000;
    background-image: url("https://cdn.prod.website-files.com/683829433f7d5c521db7f024/683829443f7d5c521db7f0a8_661fe8aab495ef4640328116_cross%20(3).png");
    background-size: 20px;
  }

  .brand {
    order: -1;
    margin-left: 0;
    font-size: 32px;
  }

  .brand.w--current {
    margin-left: 0;
  }

  .nav-menu {
    background-color: var(--black);
    text-align: center;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
    position: absolute;
  }

  .navbar {
    padding: 14px 20px;
  }

  .hero-section {
    padding: 40px 20px 60px;
  }

  .button {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .section {
    padding: 60px 20px;
  }

  .section.bottom {
    padding-bottom: 80px;
  }

  .section.white {
    padding-top: 40px;
  }

  .section.white._60-px-top-padding {
    padding-top: 20px;
  }

  .top-div {
    margin-bottom: 50px;
  }

  .footer {
    padding: 60px 20px;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .type-row, .div-block-style {
    width: 100%;
  }

  .text-highlight {
    width: 100%;
    padding: 20px;
  }

  .color-block-parent {
    width: 33.3333%;
  }

  ._60-divbox {
    width: 100%;
  }

  .center-divblock {
    text-align: center;
    margin-bottom: 30px;
  }

  .typography-flex, .licensing-block {
    width: 100%;
  }

  ._10-px-top-padding {
    padding-right: 50px;
  }

  .big-paragraph {
    font-size: 18px;
  }

  .work-wrapper {
    height: 350px;
  }

  .categories-menu {
    flex-flow: column;
    justify-content: center;
    margin-top: 40px;
  }

  .hero-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  ._17-px-title-link {
    font-size: 22px;
  }

  .right-div {
    display: none;
  }

  .mobile-brand {
    display: block;
  }

  .mobile-brand.w--current {
    color: var(--white);
    order: -1;
    display: block;
  }

  .left-flex-nav {
    display: none;
  }

  .nav-grid {
    flex: 1;
    grid-template-columns: 2.5fr;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .empty-logo-flex-div {
    display: none;
  }

  .title-text {
    font-size: 25px;
    line-height: 30px;
  }

  .title-text.white {
    font-size: 24px;
    line-height: 28px;
  }

  ._4-column-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  ._200-px-link-block {
    height: 220px;
  }

  ._200-px-link-block._285-px-with {
    width: 350px;
  }

  .post-title {
    line-height: 26px;
  }

  ._40-px-bottom-margin {
    margin-bottom: 30px;
  }

  ._400-px-post-image {
    height: 350px;
  }

  .premium-grid {
    grid-template-columns: 1.75fr;
  }

  .highlighted-newsbox {
    padding-bottom: 20px;
  }

  .highlighted-grid {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .number-text {
    font-size: 14px;
    line-height: 18px;
  }

  .right-hero-div {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }

  .circle-flex {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    margin-right: 20px;
  }

  .wrapper-divbox {
    padding-right: 30px;
  }

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

  .advertise-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._18-px-text {
    font-size: 17px;
  }

  .footer-grid {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .footer-title {
    margin-bottom: 24px;
  }

  .flex-content-footer {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .newsletter-wrapper {
    padding-top: 20px;
  }

  .flex-button-div {
    width: 400px;
  }

  .subscribe-grid {
    grid-row-gap: 40px;
    grid-template-columns: .25fr;
  }

  .mobile-nav-menu {
    background-color: var(--black);
    text-align: left;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  ._40-px-top-margin-div {
    margin-top: 20px;
  }

  .flex-divbox.bottom-margin {
    margin-bottom: 10px;
  }

  .post-image-div {
    width: 100%;
    height: 400px;
    margin-top: 30px;
  }

  ._650-px-div {
    max-width: 100%;
  }

  .about-text {
    font-size: 15px;
  }

  .team-member-text {
    font-size: 22px;
  }

  .about-us-div {
    width: 100%;
    margin-top: 40px;
  }

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

  .left-bg-team-image {
    padding-left: 20px;
  }

  ._550-px-height-div {
    padding-top: 20px;
    padding-left: 20px;
  }

  .right-image-bg-div {
    height: 265px;
    padding-bottom: 5px;
    padding-left: 20px;
  }

  .subtext-div {
    max-width: 100%;
  }

  .top-image-bg-div {
    height: 300px;
    padding-left: 20px;
  }

  .logo-image-mobile {
    width: 160px;
  }

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

  .big-numbers {
    font-size: 90px;
  }

  ._22-px-text {
    font-size: 20px;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 26px;
  }

  h6 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
    line-height: 22px;
  }

  .nav-container {
    max-width: 400px;
    margin-left: 138.5px;
  }

  .nav-link {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 28px;
  }

  .menu-button {
    padding-left: 241px;
  }

  .menu-button.w--open {
    background-size: 20px;
  }

  .brand {
    padding-left: 0;
    font-size: 30px;
    line-height: 40px;
  }

  .nav-menu {
    inset: 0%;
  }

  .hero-section {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .h1 {
    font-size: 42px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.bottom {
    padding-bottom: 60px;
  }

  .section._60-px-paddings {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .top-div {
    margin-bottom: 40px;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom-text {
    font-size: 16px;
  }

  .footer-bottom {
    text-align: left;
    flex: 0 auto;
    width: 100%;
    margin-bottom: 12px;
  }

  .footer-link {
    margin-left: 0;
    padding-right: 10px;
  }

  .date-text {
    line-height: 26px;
  }

  .type-row {
    flex-direction: column;
  }

  .color-row {
    margin-top: 0;
    padding-top: 0;
  }

  .text-highlight {
    text-align: center;
    padding: 26px 9px;
  }

  .type-column {
    width: 100%;
    margin-bottom: 20px;
  }

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

  .license-link {
    line-height: 1.5rem;
  }

  .work-wrapper {
    height: 350px;
  }

  .categories-menu {
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-news-image-link {
    height: 400px;
  }

  .absolute-title-div {
    right: 0;
  }

  .title-hero {
    font-size: 27px;
  }

  .mobile-brand {
    order: -1;
    padding-left: 0;
  }

  .mobile-brand.w--current {
    padding-left: 0;
  }

  .nav-grid {
    flex: none;
    order: 1;
    width: 35%;
  }

  .title-text.white {
    font-size: 22px;
    line-height: 26px;
  }

  ._4-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flex-box-post.horizontal {
    flex-flow: column;
  }

  ._200-px-link-block._285-px-with {
    width: 100%;
    height: 300px;
  }

  .post-title {
    line-height: 22px;
  }

  ._40-px-bottom-margin {
    margin-bottom: 20px;
  }

  ._2-column-grid {
    grid-template-columns: 1fr;
  }

  .right-hero-div {
    padding-left: 0;
  }

  .circle-flex {
    margin-top: 7px;
  }

  .wrapper-divbox {
    padding-left: 0;
  }

  .advertise-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bg-image-advertise-div {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .advertise-text-div {
    text-align: left;
  }

  ._18-px-text {
    font-size: 16px;
    line-height: 23px;
  }

  .submit-button {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .post-image-div {
    height: 450px;
    margin-top: 30px;
  }

  .white-paragraph {
    font-size: 14px;
  }

  .team-member-text.big {
    font-size: 30px;
  }

  .about-us-div {
    margin-top: 30px;
  }

  .team-grid {
    grid-template-rows: auto auto auto auto auto auto;
  }

  .left-bg-team-image {
    background-size: cover;
    height: 280px;
  }

  ._550-px-height-div {
    height: 400px;
  }

  .right-image-bg-div, .top-image-bg-div {
    height: 280px;
  }

  .logo-image-mobile {
    text-align: center;
    position: relative;
    right: -90px;
  }

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

  .big-numbers {
    font-size: 65px;
  }

  ._22-px-text {
    font-size: 18px;
  }

  .navbar-2 {
    justify-content: center;
    align-items: center;
    width: 400px;
    display: flex;
  }
}

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

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .nav-container {
    max-width: 400px;
  }

  .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 24px;
  }

  .menu-button {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: center;
    width: 0;
    margin-left: -20px;
    padding-left: 30px;
    display: block;
    position: static;
  }

  .menu-button.w--open {
    background-size: 18px;
  }

  .brand {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-section {
    padding-bottom: 40px;
  }

  .button {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    display: flex;
  }

  .h1 {
    font-size: 38px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom-text {
    font-size: 15px;
  }

  .footer-bottom {
    justify-content: center;
  }

  .footer-link {
    padding-left: 0;
    padding-right: 0;
  }

  .date-text {
    font-size: 13px;
    line-height: 18px;
  }

  .color-block {
    height: 55px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .type-row {
    flex-direction: column;
  }

  .margin-60px {
    margin-top: 40px;
  }

  .color-row {
    flex-direction: column;
    margin-top: 0;
  }

  .text-highlight {
    width: 32%;
    padding: 20px 10px;
  }

  .color-block-parent {
    width: 100%;
    margin-right: 3%;
  }

  .center-divblock {
    margin-bottom: 30px;
  }

  .type-column {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .typography-flex {
    width: 68%;
  }

  .separator-dot {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
  }

  .licensing-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-flex {
    flex-direction: column;
    align-items: center;
  }

  .shrink-item {
    margin-right: 0;
  }

  .shrink-item.flex {
    margin-top: 20px;
    margin-right: 0;
  }

  .licensing-content {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._10-px-top-padding {
    padding-right: 0;
  }

  .big-paragraph {
    font-size: 16px;
    line-height: 26px;
  }

  .work-wrapper {
    height: 300px;
  }

  .category-link {
    font-size: 13px;
    line-height: 18px;
  }

  .categories-menu {
    margin-top: 10px;
  }

  .title-hero {
    font-size: 22px;
  }

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

  .nav-grid {
    width: 31%;
  }

  ._24-px-text-link {
    font-size: 22px;
  }

  .title-text {
    font-size: 20px;
    line-height: 24px;
  }

  ._4-column-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  ._200-px-link-block {
    width: 100%;
  }

  ._200-px-link-block._285-px-with {
    height: 250px;
  }

  ._400-px-post-image {
    height: 280px;
  }

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

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

  .right-hero-div {
    width: 100%;
  }

  .circle-flex {
    width: 40px;
    height: 40px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .wrapper-divbox {
    padding-right: 0;
  }

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

  .advertise-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .bg-image-advertise-div {
    padding: 40px 20px;
  }

  ._18-px-text {
    font-size: 15px;
  }

  .footer-box {
    margin-right: 0;
  }

  .footer-title {
    font-size: 18px;
    line-height: 22px;
  }

  .newsletter-text {
    min-height: 60px;
    font-size: 14px;
  }

  .newsletter-text:active, .newsletter-text:focus, .newsletter-text::placeholder {
    font-size: 14px;
  }

  .flex-content-footer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .submit-button {
    text-align: center;
    padding: 10px 32px;
    font-size: 17px;
    line-height: 19px;
  }

  .submit-button.w--current {
    line-height: 24px;
  }

  .newsletter-wrapper {
    padding-top: 0;
  }

  .flex-button-div {
    width: 100%;
  }

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

  .post-image-div {
    height: 300px;
    margin-top: 20px;
  }

  .white-paragraph {
    font-size: 13px;
  }

  .about-text {
    font-size: 16px;
    line-height: 28px;
  }

  .team-member-text {
    font-size: 18px;
  }

  .team-member-text.big {
    font-size: 25px;
  }

  .about-us-div {
    margin-top: 20px;
  }

  .left-bg-team-image, .right-image-bg-div {
    height: 265px;
  }

  .top-image-bg-div {
    background-image: linear-gradient(16deg, #0009 39%, #0003 51%), url("https://cdn.prod.website-files.com/683829433f7d5c521db7f024/683829443f7d5c521db7f102_pexels-ron-lach-8085264-1.webp");
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 265px;
  }

  .logo-image-mobile {
    width: 277px;
    max-width: 108%;
    margin-left: -102px;
    padding-left: 0;
  }

  .experience-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .center-divbox {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .big-numbers {
    font-size: 55px;
  }

  ._20-px-top-margin-div {
    margin-top: 15px;
  }

  ._22-px-text {
    font-size: 16px;
    line-height: 22px;
  }

  .navbar-2 {
    width: 400px;
  }
}

#w-node-_732278a6-fa4b-4570-3d09-1b169c577194-3ddf2c3b, #w-node-_732278a6-fa4b-4570-3d09-1b169c5771a7-3ddf2c3b, #w-node-_732278a6-fa4b-4570-3d09-1b169c5771b5-3ddf2c3b, #w-node-_732278a6-fa4b-4570-3d09-1b169c5771b6-3ddf2c3b, #w-node-_7b8d8091-0dea-a2f4-c89a-d1b2ab25500c-c20c404f, #w-node-_0238b24a-8487-0778-f8be-cbb0784c63ff-c20c404f, #w-node-_7b8d8091-0dea-a2f4-c89a-d1b2ab25501b-c20c404f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_732278a6-fa4b-4570-3d09-1b169c577193-3ddf2c3b, #w-node-_732278a6-fa4b-4570-3d09-1b169c5771b6-3ddf2c3b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_732278a6-fa4b-4570-3d09-1b169c577193-3ddf2c3b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}
