html,
body {
  overflow-x: hidden !important;
}

button {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* Header basis */
.site-header {
  position: relative;
  /* nodig voor z-index om boven overlay te liggen */
  will-change: transform;
  z-index: 1001;
  transform: translateY(0);
}

.site-header .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* links logo, midden nav, rechts actions */
  align-items: center;
  gap: 15px;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo .logo-sticky {
  display: none;
}

.site-logo .mobile-logo-icon {
  display: none;
}

/* Menu midden */
.primary-nav--center {
  justify-self: center;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.menu>li {
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 10px 6px;
  display: inline-flex;
  color: #fff;
  transition: ease-in-out 0.3s;
}

/* Hoofdmenu underline animatie */
.menu>li>a {
  position: relative;
}

.menu>li>a::after {
  content: "";
  position: absolute;
  left: 6px;
  /* match met je padding */
  right: 6px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.menu>li>a:hover::after,
.menu>li>a:focus-visible::after {
  transform: scaleX(1);
}

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

/* Chevron voor submenu items */
.menu>li.menu-item-has-children>a {
  padding-right: 18px;
  /* ruimte voor chevron */
}

.menu>li.menu-item-has-children>a::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  /* chevron down */
  opacity: .85;
}

/* Submenu basis */
.menu>li {
  position: relative;
}

.menu>li>.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1002;
}

/* Open on hover/focus */
.menu>li:hover>.sub-menu,
.menu>li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu links */
.menu>li>.sub-menu a {
  color: #111;
  display: block;
  padding: 10px 14px;
  text-decoration: none;
}

.menu>li>.sub-menu a:hover,
.menu>li>.sub-menu a:focus-visible {
  background: rgba(0, 0, 0, .06);
}

/* Acties rechts */
.header-actions {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.btn.header-btn {
  display: inline-flex;
  align-items: center;
}

.mobile-navbar-contact {
  display: none !important;
}

/* Cluster rechts (hamburger + buttons) */
.header-cta-wrapper {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

/* Menu rechts variant: nav + buttons samen rechts */
.menu-right .header-inner {
  grid-template-columns: auto 1fr auto;
}

.menu-right .primary-nav--right {
  display: inline-flex;
  margin-right: 8px;
}

.menu-right .header-right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
}

/* Opties voor log omidden */
.menu-left .header-inner {
  grid-template-columns: 1fr auto 1fr;
  /* nav links, logo midden, acties rechts */
}

.primary-nav--left {
  justify-self: start;
}

.site-logo--center {
  justify-self: center;
}

/* Sticky gedrag */
#header-spacer {
  height: 0;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-101%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
  transition: none;
  z-index: 1001;
}

.site-header.is-fixed.is-visible {
  transform: translateY(0);
  transition: transform .28s ease;
}

/* Logo wissel bij sticky */
.site-header.is-fixed .logo-default {
  display: none;
}

.site-header.is-fixed .logo-sticky {
  display: inline-block;
}

/* Hamburger button basis (desktop: verborgen) */
#menubtn {
  display: none;
  position: relative;
  margin: 0;
  padding: 0;
  width: 28px;
  height: 18px;
  z-index: 22;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#menubtn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/* Als je een .scroll class gebruikt kun je de kleur hier veranderen */
.scroll #menubtn span {
  background: #000;
}

#menubtn span:nth-child(1) {
  top: 0;
}

#menubtn span:nth-child(2),
#menubtn span:nth-child(3) {
  top: 7px;
}

#menubtn span:nth-child(4) {
  top: 14px;
}

#menubtn.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#menubtn.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menubtn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menubtn.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/* Mobiel overlay menu */
.mobile-menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height, 80px);
  /* begint onder de header */
  height: calc(100vh - var(--header-height, 80px));
  z-index: 1000;
  /* onder header (1001) zodat logo en icon zichtbaar blijven */
  transform: translateY(-100%);
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
  opacity: 0;
}

.mobile-menu-overlay.is-open {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-inner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 32px;
}

/* Mobiele nav stijl */
.mobile-nav .menu {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.mobile-nav .menu a {
  color: #fff;
  font-size: 18px;
}

/* Mobiel menu: submenu inline, open op click (niet hover) */
.mobile-nav .menu>li>.sub-menu {
  position: static;
  min-width: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: none;
  padding: 6px 0 0;
}

.mobile-nav .menu>li.is-submenu-open>.sub-menu {
  display: block;
}

/* Submenu items netjes gecentreerd onder parent */
.mobile-nav .menu>li>.sub-menu a {
  color: #fff;
  text-align: center;
  padding: 8px 0;
}

/* Hover open uitschakelen voor mobiel menu */
.mobile-nav .menu>li:hover>.sub-menu,
.mobile-nav .menu>li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-nav .menu>li.menu-item-has-children>a::before {
  transition: transform .2s ease;
}

.mobile-nav .menu>li.is-submenu-open>a::before {
  transform: translateY(-50%) rotate(225deg);
}

/* Buttons in mobiel menu */
.mobile-menu-buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.mobile-menu-buttons .btn.header-btn {
  justify-content: center;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease;
  z-index: 1003;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #fff;
  color: #000;
  outline: none;
}

.back-to-top span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

@media (max-width: 1000px) {
  .primary-nav {
    display: none !important;
  }

  #menubtn {
    display: block;
  }

  .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }

  .primary-nav--center {
    justify-self: start;
  }

  .menu {
    gap: 14px;
  }
}

@media (max-width: 700px) {
  .header-actions {
    display: none;
  }

  .mobile-menu-buttons .btn.header-btn {
    width: 80%;
    min-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .site-header {
    height: 62px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0) !important;
    transition: none;
    background: var(--secondary-color);
  }

  #header-spacer {
    height: 0 !important;
  }

  .site-header .container {
    height: 100%;
  }

  .site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    min-height: 42px;
    gap: 16px;
  }

  .site-logo,
  .site-logo--center {
    justify-self: start;
  }

  .site-logo .logo-default,
  .site-logo .logo-sticky,
  .site-logo .logo-text {
    display: none !important;
  }

  .site-logo .mobile-logo-icon {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .header-cta-wrapper {
    gap: 8px;
    justify-self: end;
  }

  .mobile-navbar-contact {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 42px;
    min-height: 42px;
    padding: 0 22px;
    line-height: 1;
    white-space: nowrap;
  }

  #menubtn {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
  }

  #menubtn span {
    left: 12px;
    width: 16px;
    height: 1.5px;
  }

  .scroll #menubtn {
    border-color: rgba(0, 0, 0, 0.75);
  }

  #menubtn span:nth-child(1) {
    top: 13px;
  }

  #menubtn span:nth-child(2),
  #menubtn span:nth-child(3) {
    top: 20px;
  }

  #menubtn span:nth-child(4) {
    top: 27px;
  }

  #menubtn.open span:nth-child(1),
  #menubtn.open span:nth-child(4) {
    top: 20px;
    width: 0;
    left: 21px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
  }

  .site-footer .footer-col {
    display: none;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .site-footer .btn {
    width: 80%;
    justify-content: center;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
}

html.mobile-menu-open,
body.mobile-menu-open {
  overflow: hidden;
}

html.mobile-menu-open {
  position: fixed;
  width: 100%;
}

.site-topbar {
  position: relative;
  z-index: 1000;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 5px 10px;
  font-size: 14px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.topbar-menu a {
  text-decoration: none;
  display: inline-flex;
  padding: 6px 0;
  font-size: 14px;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.topbar-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.topbar-mail, .topbar-phone {
  position: relative;
  padding-left: 25px;
}

.topbar-mail:before {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  position: absolute;
  top: 6px;
  background-image: url(../images/icons/icon-w-mail.svg);
  background-repeat: no-repeat;
  left: 0;
  background-size: 18px auto;
}

.topbar-phone:before {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  position: absolute;
  top: 6px;
  background-image: url(../images/icons/icon-w-phone.svg);
  background-repeat: no-repeat;
  left: 0;
  background-size: 18px auto;
}

.topbar.topbar--centered {
  justify-content: center;
}

.topbar-center {
  text-align: center;
  width: 100%;
}

@media (max-width: 1000px) {
  .topbar.topbar-hide-left-mobile .topbar-left {
    display: none;
  }

  .topbar.topbar-hide-right-mobile .topbar-right {
    display: none;
  }
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 125px 0 30px 0;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 631px 265px 163px;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-home-btn {
  background: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}

.footer-home-btn:hover,
.footer-home-btn:focus-visible {
  background: #fff !important;
  color: #000 !important;
}

.footer-logo-img {
  width: 110px;
  height: auto;
  display: block;
}

.footer-heading {
  font-family: var(--font-main);
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  color: #fff;
}

.footer-title {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  font-size: 17px;
  font-weight: 300;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 300;
  line-height: 34px;
  color: #fff;
  text-decoration: none;
}

.footer-address {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 17px;
  line-height: 34px;
}

.icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.phone {
  background-image: url('https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/phone-icon.svg');
}

.icon.mail {
  background-image: url('https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/mail-icon-footer.svg');
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 26px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom-links a:last-child {
  color: #FFCE76;
}

.site-footer a:not(.btn) {
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer a:not(.btn):hover {
  color: #FFCE76;
}

/* footer end */
.shared-bg-section {
  position: relative;
  background:
    linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 45%),
    linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 45%),
    url('https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/bg-1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.shared-bg-section.bg-without-colors {
  background-image: url('https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/bg-1.jpg');
  position: relative;
  overflow: hidden;
}

/* Top and bottom corners */
.shared-bg-section.bg-without-colors {
  position: relative;
  overflow: visible;
  background: url("https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/bg-1.jpg") center / cover no-repeat !important;
}

.shared-bg-section.bg-without-colors::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/corner-top-left.svg") top left no-repeat;
  background-size: 85px;
  z-index: 2;
}

.shared-bg-section.bg-without-colors::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/corner-bottm-right.svg") bottom right no-repeat;
  background-size: 85px;
  z-index: 2;
}

.corner-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.corner-layer::before {
  content: "";
  position: absolute;
  top: -85px;
  right: 0;
  width: 85px;
  height: 85px;
  background: url("https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/corner-top-right.svg") no-repeat;
  background-size: contain;
  will-change: transform;
  transform: translateZ(0);
}

.corner-layer::after {
  content: "";
  position: absolute;
  bottom: -85px;
  left: 0;
  width: 85px;
  height: 85px;
  background: url("https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/corner-bottom-left.svg") no-repeat;
  background-size: contain;
  will-change: transform;
  transform: translateZ(0);
}

.corner-layer::before,
.corner-layer::after {
  transition: transform 0.4s ease;
}

/* Top and bottom corners end */
.services-bg-fishes {
  position: relative;
}

.services-bg-fishes::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 550px;
  left: 50%;
  bottom: -254px;
  transform: translateX(-50%) rotate(2.4deg);
  background: url(https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/fishes-image-scaled.png) no-repeat center / contain;
  pointer-events: none;
  z-index: 2;
}

.services-bg-fishes .content-grid-inner {
  position: relative;
  z-index: 3;
}

.cg-card .icon {
  width: auto;
  height: auto;
}

/* Single blog */
.single-blog {
  background:
    radial-gradient(60.04% 53.77% at 50% 37.44%, rgba(0, 0, 0, 0) 0%, #000 72.06%),
    url('https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/bg-1-scaled.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.single-blog .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-blog__top {
  padding: 80px 0 40px;
  text-align: center;
}

.single-blog__date {
  font-family: var(--font-secondary);
  font-size: 14px;
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}

.single-blog__title {
  font-family: var(--font-main);
  font-size: 55px;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 700px;
}

.single-blog__image {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
}

.single-blog__image img {
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
}

.single-blog__text {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-secondary);
  font-size: 17px;
  line-height: 34px;
  opacity: 0.9;
}

.single-blog__text h2,
.single-blog__text h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.single-blog__bottom {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-blog__back {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 29px;
  border: 1px solid #fff;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 800;
}

.single-blog__back::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url('https://dev.shockdigital.nl/okiim/wp-content/uploads/2026/03/icon-left-slider.svg') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* Hover */
.single-blog__back:hover {
  opacity: 0.85;
}

.single-blog__back:hover::before {
  transform: translateX(-4px);
}

.single-blog__share {
  display: flex;
  align-items: center;
  gap: 20px;
}

.single-blog__share span {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--font-secondary);
  margin-top: -3px;
}

.single-blog__share a img {
  width: 20px;
  height: 20px;
}

.padding-0 {
  padding: 0;
}

/* Responsive */
@media (max-width: 1380px) {
  .footer-grid {
    grid-template-columns: 340px 250px 150px 120px;
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 850px) {
  .footer-heading {
    font-size: 30px;
    line-height: 125%;
  }
}

@media (max-width: 768px) {
  .shared-bg-section.bg-without-colors::before {
    background-size: 55px;
  }

  .shared-bg-section.bg-without-colors::after {
    background-size: 55px;
  }

  .corner-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
  }

  .corner-layer::before {
    top: -55px;
    width: 55px;
    height: 55px;
  }

  .corner-layer::after {
    bottom: -55px;
    width: 55px;
    height: 55px;
  }

  .single-blog__title {
    font-size: 36px;
  }

  .single-blog__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 30px;
  }
}

@media (max-width: 700px) {
  .footer-bottom {
    align-items: flex-start;
    padding-top: 40px;
    flex-direction: column;
  }

  .footer-bottom-links {
    gap: 15px;
  }

  .footer-links {
    gap: 5px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    row-gap: 0;
  }

  .footer-title {
    margin-top: 0;
  }

  .footer-links {
    margin: 0;
  }
}

@media (max-width: 500px) {
  .shared-bg-section.bg-without-colors::before,
  .shared-bg-section.bg-without-colors::after {
    background-size: 34px;
  }

  .corner-layer::before {
    top: -34px;
    width: 34px;
    height: 34px;
  }

  .corner-layer::after {
    bottom: -34px;
    width: 34px;
    height: 34px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
  }

  .site-footer .footer-col {
    display: none;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
}
