:root {
  --paragraph: #555;
  --transparent: #fff0;
  --white: white;
  --primary: #359973;
  --secondary: #095293;
  --dark-black: #242424;
  --black: black;
  --gray: #fafafa;
}

body {
  color: var(--paragraph);
  letter-spacing: .025rem;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all .35s ease-in-out;
}

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

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

strong {
  font-weight: bold;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #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;
}

.header {
  padding-top: .8rem;
  padding-bottom: .8rem;
}

.navbar {
  background-color: var(--transparent);
  justify-content: center;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.brand {
  padding-left: 0;
}

.header-logo {
  max-width: 220px;
}

.navigation {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fafafa;
  border-radius: .3rem;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.nav-menu {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--paragraph);
  letter-spacing: .02em;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  display: flex;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--primary);
}

.button-primary {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.8rem;
  font-size: 1.1rem;
  display: inline-flex;
}

.button-primary:hover {
  background-color: var(--secondary);
}

.button-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--secondary);
  letter-spacing: .2rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-flex;
}

.section-tag.less-m {
  margin-bottom: 0;
}

.section-tag-dot {
  background-color: var(--secondary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.display--h2 {
  color: var(--dark-black);
}

.display--h2.text-color-blue {
  color: var(--secondary);
}

.display--h2.f-size-2-5-rem {
  font-size: 2.5rem;
}

.text-color-green {
  color: var(--primary);
}

.cta-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.cta-inner {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-summary {
  margin-top: 1rem;
}

.cta-summary.less-m {
  margin-top: 0;
}

.form-block {
  margin-bottom: 0;
}

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

.input-group {
  text-align: center;
}

.cta-text-field {
  border-style: solid;
  border-width: 1px;
  border-color: var(--transparent) var(--transparent) #00000040;
  color: var(--black);
  margin-bottom: 0;
  padding: 1.6rem 0;
}

.cta-text-field:focus {
  border-color: var(--transparent) var(--transparent) var(--secondary);
}

.cta-text-field::placeholder {
  color: var(--paragraph);
}

.cta-text-field.no-bg-color {
  background-color: #fff0;
  padding-top: 0;
}

.cta-text-field.textarea {
  padding-top: 0;
}

.submit-button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  background-image: url("https://cdn.prod.website-files.com/67824130b673840841288084/678359a6a443aa2f3a519c40_Group%2012.svg");
  background-position: 86%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  padding: 1rem 3.5rem 1rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all .35s ease-in-out;
  display: inline-flex;
}

.submit-button:hover {
  background-color: var(--secondary);
}

.footer {
  padding-top: 15vh;
}

.footer-inner {
  background-color: #f0f0f0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.footer-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 5vh;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.footer-left-wrap {
  background-color: #242424;
  width: 100%;
  max-width: 350px;
  margin-top: -5rem;
  padding: 6vh 2rem 5vh;
}

.newsletter-icon {
  max-width: 70px;
}

.newsletter-titlne {
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.newsletter-text {
  color: #fffc;
  font-size: 1rem;
}

.newsletter-form-box {
  margin-top: 40px;
}

.text-field {
  border-style: solid;
  border-width: 1px;
  border-color: var(--transparent) var(--transparent) #00000040;
  color: var(--black);
  height: 55px;
  margin-bottom: 0;
  padding: 0 0 0 20px;
}

.text-field:focus {
  border-color: var(--transparent) var(--transparent) var(--secondary);
}

.text-field::placeholder {
  color: var(--paragraph);
}

.newsletter-submit-button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.8rem;
  font-weight: 500;
  transition: all .35s ease-in-out;
  display: inline-flex;
}

.newsletter-submit-button:hover {
  background-color: var(--secondary);
}

.newsletter-note {
  color: #fffc;
  margin-top: 1rem;
  font-size: 1rem;
}

.footer-right-wrap {
  width: 100%;
}

.footer-menu-list {
  border-bottom: 1px solid #0003;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  display: flex;
}

.footer-menu-link {
  color: #242424;
  font-size: 1rem;
}

.footer-menu-link:hover {
  color: var(--primary);
}

.footer-info-list {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  display: flex;
}

.footer-column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.footer-info-text {
  color: var(--black);
  margin-bottom: .4rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-info-link {
  color: #242424;
  font-size: 1rem;
  line-height: 1.3;
}

.footer-info-link:hover {
  color: var(--primary);
}

.footer-service-list {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  flex-flow: column;
  display: flex;
}

.footer-logo-block {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 6rem;
  display: flex;
}

.footer-logo-block.mobile-view {
  display: none;
}

.footer-logo {
  max-width: 250px;
}

.footer-bottom-wrap {
  border-top: 1px solid #0003;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.footer-privacy-link {
  color: var(--paragraph);
  font-size: 1rem;
}

.footer-copyright-wrap {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--dark-black);
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
}

.heart-icon {
  max-width: 8%;
  margin-top: 2px;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper.position-relative {
  position: relative;
}

.wrapper.left-right-padding-3rem {
  padding-left: 2rem;
  padding-right: 2rem;
}

.wrapper.top-m8ch {
  margin-top: 8vh;
}

.wrapper.padding-left-right {
  padding-left: 2rem;
  padding-right: 2rem;
}

.wrapper.flex-h {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.success-message {
  color: var(--white);
  background-color: #ddd0;
  padding: 0;
  font-size: 1rem;
}

.active-dot {
  background-color: var(--primary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.product-hero-section {
  background-color: var(--gray);
  padding: 10vh 2.5rem;
}

.product-hero-section.less-m-5vh {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

.filter_list01 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.collection-row {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.product-tags {
  width: 32%;
  position: sticky;
  top: 5vh;
}

.product-details {
  width: 70%;
}

.button {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  color: #000;
  cursor: pointer;
  border-bottom: 1px solid #00000040;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  transition: all .3s ease-in-out;
  display: flex;
}

.tabs-collection-item {
  width: 100%;
}

.products-head {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--secondary);
  justify-content: flex-start;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
}

.products-hero-left {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.product-details-collection {
  margin-top: 1rem;
}

.arrow {
  width: .4rem;
  line-height: 0;
}

.product-link {
  width: 100%;
  padding: .8rem;
}

.product-name-wrap {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.product-name {
  color: var(--dark-black);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.text-block {
  display: none;
}

.filter_form-wrapper {
  overflow: hidden;
}

.radio-button-label {
  margin-bottom: 0;
}

.radio-button-label.active {
  color: var(--secondary);
}

.radio-button-field {
  border-bottom: 1px solid #00000040;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-top: .6rem;
  padding-bottom: .6rem;
  padding-left: 0;
  font-size: 1rem;
  display: flex;
}

.radio-button {
  border-radius: 2px;
  width: 15px;
  height: 15px;
  margin-top: 0;
  margin-left: 0;
  margin-right: .625rem;
}

.radio-button.w--redirected-checked {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  box-shadow: 0 0 10px #0952932e;
}

.filter_reset-all {
  color: var(--primary);
  font-size: 1rem;
}

.pagination_wrapper {
  flex-flow: row;
  margin-top: 2rem;
}

.pagination_next {
  border-width: .0625rem;
  border-color: var(--secondary);
  color: var(--secondary);
  font-size: 1rem;
}

.pagination_next:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.pagination_previous {
  border-width: .0625rem;
  border-color: var(--secondary);
  color: var(--secondary);
  font-size: 1rem;
}

.pagination_previous:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.pagination_page-design {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.pagination_page-button {
  border: .0625rem solid var(--secondary);
  color: var(--secondary);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  text-decoration: none;
  display: flex;
}

.pagination_page-button.w--current {
  background-color: var(--secondary);
  color: var(--white);
}

.fs-cmsload_page-dots {
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.success-message-product {
  color: var(--primary);
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

.copyright-text {
  color: var(--paragraph);
  font-size: .9rem;
}

@media screen and (min-width: 1280px) {
  .navigation {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .nav-link, .button-primary, .button-outline-white, .button-outline-blue {
    font-size: 18px;
  }

  .who-we-are-desc {
    width: 48%;
    font-size: 24px;
  }

  .who-we-are-summary {
    font-size: 20px;
  }

  .counter-inner {
    grid-column-gap: 65px;
    grid-row-gap: 65px;
  }

  .counter-left {
    width: 280px;
    min-width: 280px;
  }

  .counter-text {
    font-size: 14px;
  }

  .brand-inner {
    grid-column-gap: 65px;
    grid-row-gap: 65px;
  }

  .cta-inner {
    max-width: 750px;
  }

  .submit-button {
    font-size: 18px;
  }

  .footer-list {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .newsletter-submit-button {
    font-size: 18px;
  }

  .footer-logo {
    width: 230px;
  }

  .service-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-auto-columns: 1fr;
  }

  .service-item {
    padding: 40px;
  }

  .service-name {
    margin-bottom: 250px;
  }

  .service-link-button {
    font-size: 18px;
  }

  .service-item-row {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .service-hero-top, .our-story-hero {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .brand-head {
    width: 45%;
  }

  .brand-hero {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .blogs-head {
    width: 45%;
  }

  .button-outline-green {
    font-size: 18px;
  }

  .news-hero-hight {
    width: 42%;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 3.5rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  .header-logo {
    width: auto;
  }

  .button-primary {
    font-size: 20px;
  }

  .hero-inner {
    max-width: 1200px;
  }

  .button-outline-white {
    font-size: 20px;
  }

  .about-inner {
    max-width: 1200px;
  }

  .button-outline-blue {
    font-size: 20px;
  }

  .section-tag {
    font-size: 1.3rem;
  }

  .who-we-are-inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .galley-column, .galley-column-large {
    grid-column-gap: 88px;
    grid-row-gap: 88px;
  }

  .counter-left {
    width: 300px;
    min-width: 300px;
  }

  .counter-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .counter {
    font-size: 70px;
  }

  .cta-inner {
    max-width: 840px;
  }

  .cta-summary {
    font-size: 18px;
  }

  .cta-form {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .cta-text-field {
    height: 65px;
  }

  .submit-button {
    font-size: 20px;
  }

  .footer-left-wrap {
    max-width: 400px;
  }

  .newsletter-titlne {
    font-size: 28px;
  }

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

  .text-field {
    height: 65px;
  }

  .newsletter-submit-button {
    font-size: 20px;
  }

  .newsletter-note, .footer-menu-link {
    font-size: 18px;
  }

  .footer-logo {
    width: auto;
  }

  .service-title-wrap {
    width: 85%;
  }

  .service-name {
    margin-bottom: 310px;
    font-size: 28px;
  }

  .service-link-button {
    font-size: 20px;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .service-list-inner {
    padding-left: 60px;
    padding-right: 60px;
  }

  .service-section-tag {
    font-size: 20px;
  }

  .service-sub-title {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .service-summary {
    font-size: 18px;
  }

  .service-button-wrap {
    margin-top: 50px;
  }

  .service-hero-top {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
  }

  .wrapper {
    max-width: 1300px;
  }

  .our-story-hero {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
  }

  .plush {
    font-size: 70px;
  }

  .logo-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .brand-head {
    width: 50%;
  }

  .brand-hero {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
  }

  .contact-form {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .blogs-head {
    width: 50%;
  }

  .button-outline-green {
    font-size: 20px;
  }

  .news-hero-hight {
    width: 40%;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  .header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .header-logo {
    max-width: 300px;
  }

  .navigation {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .button-primary {
    padding: 1.2rem 2rem;
  }

  .hero-inner {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
    max-width: 1300px;
  }

  .display--h1.size-2-2rem {
    font-size: 3rem;
  }

  .button-outline-white {
    padding: 1.2rem 2rem;
  }

  .about-inner {
    grid-column-gap: 10rem;
    grid-row-gap: 10rem;
    max-width: 1300px;
  }

  .section-tag {
    font-size: 1.5rem;
  }

  .who-we-are-desc {
    width: 42%;
  }

  .galley-column {
    width: 400px;
  }

  .galley-column-large {
    width: 680px;
  }

  .counter-right {
    padding-left: 85px;
    padding-right: 85px;
  }

  .counter-grid {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .counter {
    font-size: 80px;
  }

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

  .cta-summary {
    font-size: 20px;
  }

  .footer {
    margin-top: 100px;
  }

  .footer-list {
    grid-column-gap: 112px;
    grid-row-gap: 112px;
  }

  .footer-left-wrap {
    max-width: 480px;
  }

  .newsletter-icon {
    width: 95px;
  }

  .newsletter-titlne {
    font-size: 32px;
  }

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

  .text-field {
    height: 70px;
  }

  .newsletter-note {
    font-size: 20px;
  }

  .footer-logo {
    max-width: 300px;
  }

  .why-choose-summary {
    width: 38%;
    font-size: 1.5rem;
  }

  .why-choose-inner {
    width: 900px;
  }

  .product-item {
    padding: 3rem 2rem;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .service-list-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .service-list-inner {
    padding: 80px;
  }

  .service-item-row {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .service-inner-info {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    padding-top: 80px;
  }

  .service-summary {
    font-size: 20px;
  }

  .service-hero-top {
    grid-column-gap: 20rem;
    grid-row-gap: 20rem;
  }

  .paragraph-large {
    font-size: 1.5rem;
  }

  .wrapper {
    max-width: 1600px;
  }

  .why-choose-wrap {
    padding: 3rem 2rem;
  }

  .our-story-hero {
    grid-column-gap: 20rem;
    grid-row-gap: 20rem;
  }

  .plush {
    font-size: 80px;
  }

  .logo-container {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .controls {
    top: 32%;
  }

  .control__arrow {
    width: 1.5em;
  }

  .brand-hero-hight {
    width: 40%;
  }

  .brand-head {
    width: 45%;
  }

  .brand-hero {
    grid-column-gap: 20rem;
    grid-row-gap: 20rem;
  }

  .email-link {
    font-size: 1.5rem;
  }

  .info-text {
    font-size: 1.2rem;
  }

  .blogs-head {
    width: 45%;
  }

  .blog-heading {
    font-size: 2rem;
  }

  .blog-summary {
    font-size: 1.5rem;
  }

  .product-wrap {
    padding: 3rem 2rem;
  }

  .details-rich-text {
    font-size: 1.5rem;
  }

  .news-hero-hight {
    width: 40%;
  }
}

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

  .header {
    padding: .8rem 0;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation {
    background-color: var(--white);
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    background-color: var(--white);
    flex-flow: column;
    padding-bottom: 2rem;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .header-button-wrap {
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .button-primary {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

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

  .display--h1.size-2-2rem {
    font-size: 1.8rem;
  }

  .hero-button-wrap {
    top: 42%;
  }

  .button-outline-white, .button-outline-blue {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .who-we-are-section {
    padding: 8vh 0;
  }

  .who-we-are-title-wrap {
    width: 100%;
  }

  .section-tag {
    margin-bottom: 12px;
  }

  .who-we-are-desc {
    width: 70%;
  }

  .who-we-are-summary {
    width: 72%;
  }

  .btn-wrap {
    margin-top: 50px;
    position: static;
  }

  .gallery-section {
    padding: 8vh 0;
  }

  .gallery-inner {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .counter-section {
    padding: 8vh 0;
  }

  .counter-inner {
    flex-flow: column;
  }

  .counter {
    font-size: 3rem;
  }

  .counter-text {
    font-size: 10px;
  }

  .brand-section {
    padding: 8vh 0;
  }

  .brand-inner {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .brand-left {
    width: 100%;
  }

  .brand-right {
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .cta-section {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }

  .footer {
    margin-top: 0;
  }

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

  .footer-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    padding-bottom: 3vh;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-left-wrap {
    max-width: 550px;
  }

  .newsletter-icon {
    max-width: 50px;
  }

  .newsletter-titlne {
    font-size: 2rem;
  }

  .footer-privacy-link, .footer-copyright-wrap {
    font-size: 14px;
  }

  .heart-icon {
    width: 18px;
  }

  .why-choose-section {
    padding: 8vh 0;
  }

  .why-choose-summary {
    width: 72%;
  }

  .why-choose-inner {
    width: 70%;
  }

  .service-section {
    padding: 8vh 0;
  }

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

  .service-name {
    font-size: 20px;
  }

  .service-link-button {
    padding: 15px;
  }

  .product-section {
    padding: 8vh 0;
  }

  .product-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .product-item {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .service-list-section {
    padding: 8vh 0;
  }

  .service-list-inner {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding: 5vh;
  }

  .service-item-row {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap-reverse;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .service-inner-info {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .service-section-tag {
    margin-bottom: 12px;
  }

  .service-hero-section {
    padding: 8vh 0;
  }

  .service-hero-inner {
    margin-top: 5vh;
  }

  .service-hero-top {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .wrapper {
    width: 90%;
  }

  .wrapper.left-right-padding-3rem {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-image-wrap {
    margin-top: -2rem;
  }

  .trigger {
    padding: .5rem;
    font-size: 2.5rem;
  }

  .trigger.w--open {
    color: var(--dark-black);
    background-color: #c8c8c800;
  }

  .heading-wrap._w-90, .heading-wrap._w-65, .heading-wrap._w-90, .heading-wrap._w-65 {
    width: 100%;
  }

  .main-section {
    padding: 8vh 0;
  }

  .main-section.top-p20vh {
    padding-top: 15vh;
  }

  .main-section.less-bottom-lgray-bg-color {
    padding-top: 0;
  }

  .why-choose-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 8vh;
  }

  .our-story-hero {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .our-story-head {
    width: 90%;
  }

  .our-story-hero-hight, ._w-45 {
    width: 100%;
  }

  .plush {
    font-size: 3rem;
  }

  .splide__slide {
    width: 20%;
    padding-left: 1.2em;
    padding-right: 1.2em;
  }

  .splide__slide.super {
    width: 50%;
    padding-left: .5em;
    padding-right: .5em;
  }

  .controls.super {
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-hero-hight {
    width: 100%;
    margin-top: 5vh;
  }

  .brand-head {
    width: 70%;
  }

  .more-brand-list {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .brand-hero-section {
    padding-top: 8vh;
    padding-left: 0;
    padding-right: 0;
  }

  .brand-hero-inner {
    top: 8vh;
  }

  .brand-hero {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .values-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap-reverse;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    margin-top: 8vh;
    display: flex;
    position: static;
    top: 0;
  }

  .about-hero-inner {
    margin-top: 5vh;
  }

  .contact-hero-section {
    padding: 8vh 0;
  }

  .contact-form-grid {
    flex-flow: wrap-reverse;
    display: flex;
  }

  .contact-hero-hight {
    width: 100%;
    margin-top: 5vh;
  }

  .maps {
    height: 60vh;
  }

  .blogs-head {
    width: 70%;
  }

  .blogs-hero-section {
    padding-top: 8vh;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-heading {
    font-size: 1.4rem;
  }

  .blog-summary {
    font-size: 1rem;
  }

  .product-hero-section {
    padding: 5vh 0;
  }

  .filter_list01 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: row;
    padding-bottom: 5px;
    overflow: auto;
  }

  .collection-row {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .product-tags {
    width: 100%;
    position: static;
  }

  .product-details {
    width: 100%;
  }

  .button {
    display: inline;
  }

  .tabs-collection-item {
    border-bottom: 1px solid #00000040;
    flex: none;
    width: auto;
  }

  .product-wrap {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .arrow {
    display: none;
  }

  .text {
    font-size: 2.08vw;
  }

  .blog_social-link_layout {
    grid-column-gap: 2.6vw;
    grid-row-gap: 2.6vw;
    justify-content: center;
    align-items: center;
  }

  .radio-button-field {
    border-bottom-width: .2px;
  }

  .product-hero-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1.4fr 1fr;
  }

  .light-box-wrap {
    position: sticky;
    top: 4vh;
  }

  .button-outline-green {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .related-products-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .news-hero-section {
    padding-top: 8vh;
    padding-left: 0;
    padding-right: 0;
  }

  .news-hero-hight {
    width: 100%;
    margin-top: 5vh;
  }

  .news-media-banner {
    height: 60vh;
  }

  .blog-rich-text h2 {
    font-size: 1.8rem;
  }

  .blog-rich-text h3 {
    font-size: 1.4rem;
  }

  .news-head {
    width: 70%;
  }

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

@media screen and (max-width: 767px) {
  h1, h2 {
    font-size: 2rem;
  }

  .header-logo {
    max-width: 200px;
  }

  .button-primary {
    padding: .8rem 1.4rem;
  }

  .hero-section {
    padding-top: 20vh;
  }

  .button-outline-white {
    padding: .8rem 1.4rem;
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 0;
  }

  .button-outline-blue {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1rem;
  }

  .display--h2.f-size-2-5-rem {
    font-size: 2rem;
  }

  .who-we-are-desc {
    width: 100%;
  }

  .who-we-are-summary {
    width: 100%;
    margin-top: 2rem;
  }

  .btn-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-top: 40px;
  }

  .gallery-inner {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .galley-column {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .counter-inner {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .counter-left {
    width: 100%;
    min-width: 100px;
  }

  .counter-button-wrap {
    margin-top: 30px;
  }

  .counter-right {
    padding: 20px;
  }

  .counter-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .counter {
    font-size: 2.5rem;
  }

  .brand-inner {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .brand-left {
    width: 100%;
    min-width: 100%;
  }

  .cta-inner {
    max-width: 100%;
  }

  .cta-title-wrap {
    margin-bottom: 3rem;
  }

  .cta-form {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .cta-text-field {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

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

  .footer {
    margin-top: 20px;
  }

  .footer-menu-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
  }

  .footer-logo-block {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
  }

  .footer-logo {
    max-width: 210px;
  }

  .why-choose-summary {
    width: 100%;
    margin-top: 30px;
  }

  .why-choose-summary-block {
    width: 100%;
  }

  .why-choose-inner {
    width: 100%;
    margin-top: 8vh;
  }

  .service-list {
    flex-flow: wrap;
    grid-template-columns: 1fr;
  }

  .service-item {
    flex: none;
    width: 100%;
  }

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

  .product-divider {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-summary {
    font-size: 1.1rem;
  }

  .main-section.gray-bg-color.bottom-less-p {
    padding-bottom: 5vh;
  }

  .why-choose-grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .plush {
    font-size: 2.5rem;
  }

  .logo-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .splide__slide {
    width: 33.3333%;
    padding-left: 2em;
    padding-right: 2em;
  }

  .splide__slide.super {
    width: 100%;
  }

  .controls {
    top: 20%;
  }

  .control__arrow {
    width: 1em;
  }

  .brand-head {
    width: 75%;
  }

  .inner-more-brand {
    margin-bottom: 3rem;
  }

  .more-brand-list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .contact-column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .email-link {
    font-size: 1rem;
  }

  .info-text {
    font-size: .8rem;
  }

  .contact-form {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .maps {
    height: 55vh;
  }

  .blogs-head {
    width: 75%;
  }

  .product-list {
    grid-template-columns: 1fr 1fr;
  }

  .button.is-secondary {
    font-size: 1rem;
  }

  .products-head {
    width: 75%;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .button-outline-green {
    font-size: 1rem;
  }

  .related-product-title-wrap {
    margin-bottom: 3rem;
  }

  .news-media-banner {
    height: 50vh;
  }

  .blog-rich-text h2 {
    font-size: 1.6rem;
  }

  .news-head {
    width: 75%;
  }

  .name-wrap-product {
    flex-flow: wrap;
    margin-top: .8rem;
  }

  .copyright-text {
    font-size: .8rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.5rem;
  }

  .header {
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .header-logo {
    max-width: 190px;
  }

  .navigation {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .button-primary {
    font-size: 1rem;
  }

  .hero-section {
    height: 130vh;
    padding-top: 15vh;
    padding-bottom: 10vh;
  }

  .hero-button-wrap {
    top: 52%;
  }

  .button-outline-white {
    font-size: 1rem;
  }

  .who-we-are-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .who-we-are-title-wrap {
    margin-bottom: 2rem;
  }

  .section-tag {
    letter-spacing: .15em;
    font-size: 1rem;
  }

  .display--h2.f-size-2-5-rem {
    font-size: 1.5rem;
  }

  .who-we-are-desc {
    font-size: 18px;
  }

  .who-we-are-summary {
    margin-top: 1.6rem;
  }

  .btn-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .gallery-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

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

  .galley-column {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .counter-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .counter-button-wrap.gap-2rem {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .brand-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .cta-title-wrap {
    margin-bottom: 2rem;
  }

  .cta-summary.less-m {
    font-size: 1rem;
  }

  .cta-form {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .cta-text-field {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cta-text-field.textarea, .cta-text-field.no-bg-color, .cta-text-field.textarea, .cta-text-field.no-bg-color {
    padding-bottom: 1rem;
  }

  .submit-button {
    font-size: 1rem;
  }

  .footer-list {
    padding-bottom: 2vh;
  }

  .footer-left-wrap {
    width: 100%;
    min-width: 100%;
    padding: 24px;
  }

  .newsletter-icon {
    width: 60px;
  }

  .newsletter-titlne {
    margin-top: 24px;
    font-size: 19px;
  }

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

  .footer-right-wrap {
    width: 100%;
  }

  .footer-menu-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
    grid-template-columns: .7fr 1.25fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center stretch;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    display: grid;
  }

  .footer-menu-link {
    font-size: .9rem;
  }

  .footer-info-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap-reverse;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer-column {
    width: 100%;
  }

  .footer-info-text {
    margin-bottom: .3rem;
    font-size: 1rem;
  }

  .footer-info-link {
    font-size: .9rem;
  }

  .footer-service-menu {
    width: 100%;
  }

  .footer-logo-block {
    margin-top: 1.5rem;
    display: none;
  }

  .footer-logo-block.mobile-view {
    justify-content: flex-end;
    align-items: flex-start;
    width: 85%;
    margin-top: 1rem;
    display: flex;
  }

  .footer-logo {
    max-width: none;
  }

  .footer-bottom-wrap {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .why-choose-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .why-choose-inner {
    margin-top: 7vh;
  }

  .service-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .service-title-wrap {
    margin-bottom: 50px;
  }

  .service-item {
    padding: 1rem 1rem 1.5rem;
  }

  .service-link-button {
    width: 45px;
    height: 45px;
  }

  .product-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .product-title-wrap {
    margin-bottom: 50px;
  }

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

  .product-title {
    line-height: 1.4;
  }

  .compare-divider-image {
    width: 45px;
  }

  .service-list-inner {
    padding: 2vh;
  }

  .service-inner-info {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .service-section-tag {
    letter-spacing: .15em;
    font-size: 17px;
  }

  .trigger {
    font-size: 2.2rem;
  }

  .icon-circle-wrap {
    max-width: 60px;
    height: 60px;
    padding: .8rem;
  }

  .main-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .our-story-hero-hight {
    margin-top: 4vh;
  }

  .logo-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .splide__slide {
    width: 50%;
    padding-left: 1.8em;
    padding-right: 1.8em;
  }

  .controls {
    top: 10%;
  }

  .brand-head {
    width: 100%;
  }

  .inner-more-brand {
    margin-bottom: 2rem;
  }

  .more-brand-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .roket-icon {
    max-width: 2.2rem;
  }

  .contact-hero-section {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .contact-form-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 5vh;
  }

  .contact-column {
    width: 100%;
  }

  .contact-hero-hight {
    margin-top: 0;
  }

  .info-text {
    font-size: 1.1rem;
  }

  .contact-form {
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .contact-summary-text {
    font-size: 1.2rem;
  }

  .maps {
    height: 42vh;
  }

  .blogs-head {
    width: 100%;
  }

  .collection-wrap {
    margin-top: 4vh;
  }

  .blog-heading {
    font-size: 1.2rem;
  }

  .product-hero-section.less-m-5vh {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .filter_list01 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .button.is-secondary {
    padding-left: 20px;
    padding-right: 20px;
    font-size: .8rem;
  }

  .products-head {
    width: 100%;
  }

  .horizantal-flex {
    margin-top: 1.8rem;
  }

  .text {
    font-size: 4.27vw;
  }

  .blog_social-link_layout {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
  }

  .radio-button-field {
    font-size: .9rem;
  }

  .radio-button {
    margin-right: .4rem;
  }

  .details-rich-text {
    font-size: 1rem;
  }

  .icon-svg {
    width: .7rem;
  }

  .icon-svg._1-4rem {
    width: 1.2rem;
  }

  .related-products-collection-list {
    grid-template-columns: 1fr;
  }

  .related-product-title-wrap {
    margin-bottom: 2rem;
  }

  .pagination_wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
    font-size: .9rem;
  }

  .pagination_next {
    padding-left: 10px;
    padding-right: 10px;
    font-size: .8rem;
  }

  .pagination_previous {
    margin-left: 6px;
    margin-right: 6px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: .8rem;
  }

  .pagination_page-button, .fs-cmsload_page-dots {
    width: 2.4rem;
    height: 2.4rem;
  }

  .news-hero-section {
    padding-top: 6vh;
  }

  .news-media-banner {
    height: 40vh;
  }

  .blog-rich-text h3 {
    font-size: 1.3rem;
  }

  .news-head {
    width: 100%;
  }

  .name-wrap-product {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
  }

  .copyright-text {
    margin-left: auto;
  }

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

#w-node-_1ab70f05-2ed4-1e0b-7343-93af53b8bd0a-53b8bcf4 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_1ab70f05-2ed4-1e0b-7343-93af53b8bd0c-53b8bcf4 {
  grid-area: 4 / 1 / 5 / 3;
}

@media screen and (max-width: 479px) {
  #w-node-dcf254dd-8fd5-b242-0bfd-47dbf9b0aa99-f9b0aa75 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1ab70f05-2ed4-1e0b-7343-93af53b8bd0a-53b8bcf4 {
    grid-row: 5 / 6;
    grid-column-end: 2;
  }

  #w-node-_1ab70f05-2ed4-1e0b-7343-93af53b8bd0c-53b8bcf4 {
    grid-row: 6 / 7;
    grid-column-end: 2;
  }
}
