/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
/* ---- RESETS ---- */
html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
}

:root {
  font-size: 1.6rem;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  font-family: "Titillium Web", sans-serif;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}

.h1, h1 {
  font-size: 4.5rem;
  line-height: 64px;
}

.h2, h2 {
  font-size: 4rem;
  line-height: 55px;
}

.h3, h3 {
  font-size: 3rem;
  line-height: 46px;
}

.h4, h4 {
  font-size: 2.5rem;
  line-height: 38px;
}

h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Titillium Web", sans-serif;
}

@media (max-width: 768px) {
  .h1, h1 {
    font-size: 3.5rem;
    line-height: 53px;
  }
  .h2, h2 {
    font-size: 3rem;
    line-height: 46px;
  }
  .h3, h3 {
    font-size: 2.5rem;
    line-height: 38px;
  }
  .h4, h4 {
    font-size: 2rem;
    line-height: 30px;
  }
}
a {
  color: #8FC15A;
  text-decoration: none;
}

.wysiwyg p, .wysiwyg li {
  margin-bottom: 1.5rem;
}
.wysiwyg p:last-child, .wysiwyg li:last-child {
  margin-bottom: 0;
}

.menu-icon {
  padding: 0;
  background: none;
  border: none;
}

.in-view.fade-in-element {
  animation: fade-in 0.3s forwards;
}

.fade-in-element {
  opacity: 0;
}

@media (prefers-reduced-motion) {
  .fade-in-element {
    transform: none;
    opacity: 1;
  }
  .in-view.fade-in-element {
    animation: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 24px !important;
}

.pt-2 {
  padding-top: 48px !important;
}

.pt-3 {
  padding-top: 72px !important;
}

.pt-4 {
  padding-top: 96px !important;
}

.pt-5 {
  padding-top: 120px !important;
}

.pt-6 {
  padding-top: 148px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 24px !important;
}

.pb-2 {
  padding-bottom: 48px !important;
}

.pb-3 {
  padding-bottom: 72px !important;
}

.pb-4 {
  padding-bottom: 96px !important;
}

.pb-5 {
  padding-bottom: 120px !important;
}

.pb-6 {
  padding-bottom: 148px !important;
}

@media (max-width: 768px) {
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 18px !important;
  }
  .pt-2 {
    padding-top: 36px !important;
  }
  .pt-3 {
    padding-top: 54px !important;
  }
  .pt-4 {
    padding-top: 72px !important;
  }
  .pt-5 {
    padding-top: 90px !important;
  }
  .pt-6 {
    padding-top: 108px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 18px !important;
  }
  .pb-2 {
    padding-bottom: 36px !important;
  }
  .pb-3 {
    padding-bottom: 54px !important;
  }
  .pb-4 {
    padding-bottom: 72px !important;
  }
  .pb-5 {
    padding-bottom: 90px !important;
  }
  .pb-6 {
    padding-bottom: 108px !important;
  }
}
.content-grid {
  --padding-inline: 2.5rem;
  --content-max-width: 750px;
  --breakout-max-width: 1440px;
  --breakout-size: calc(
      (var(--breakout-max-width) - var(--content-max-width)) / 2
  );
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - var(--padding-inline) * 2, var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.breakout, .full-width) {
  grid-column: content;
}
.content-grid > .breakout {
  grid-column: breakout;
}
.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove border from iframes */
iframe {
  border: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* titillium-web-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/titillium-web-v17-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/titillium-web-v17-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/titillium-web-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/titillium-web-v17-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/titillium-web-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/titillium-web-v17-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.button {
  font-size: 1.6rem;
  padding: 0.9rem 1rem 1rem 2.5rem;
  border: 2px solid transparent;
  display: inline-flex;
  gap: 3.8rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.button svg {
  transition: border-color 0.3s ease-in-out;
}
.button-green {
  background-color: #8FC15A;
  color: #fff;
  border-color: #8FC15A;
}
.button-green svg {
  border: 1px solid transparent;
  border-radius: 50%;
}
.button-green:hover {
  background-color: transparent;
  color: #001D21;
}
.button-green:hover svg {
  border-color: #8FC15A;
  border-radius: 50%;
}
.button-white {
  background-color: #fff;
  color: #001D21;
  border-color: #000;
}
.button-white circle,
.button-white path {
  transition: all 0.3s ease-in-out;
}
.button-white:hover {
  background-color: #8FC15A;
  color: #fff;
  border-color: #8FC15A;
}
.button-white:hover circle {
  fill: #fff !important;
}
.button-white:hover path {
  stroke: #000 !important;
}

@media (max-width: 768px) {
  .button {
    font-size: 1.4rem;
    padding: 0.9rem 1rem 1rem 1.5rem;
  }
}
.has-block-badge {
  position: relative;
  border-top: 1px dashed #010101;
  border-bottom: 1px dashed #010101;
}

.block-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
}
.block-name-badge div {
  background-color: #010101;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}

#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 2rem 0 0.7rem;
}
#navbar .breakout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#navbar .logo {
  max-width: 18.1rem;
  padding-bottom: 1.3rem;
}
#navbar .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}
#navbar .menu a {
  font-size: 2rem;
  color: #001D21;
}
#navbar .menu a:hover {
  color: #8FC15A;
}
#navbar .menu > li {
  padding: 0 0 1.3rem;
}
#navbar .menu li.menu-item-has-children {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
}
#navbar .menu li.menu-item-has-children svg {
  fill: #808080;
}
#navbar .menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#navbar .menu li.menu-item-has-children:hover svg {
  rotate: 180deg;
}
#navbar .menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: -3.5rem;
  padding: 1rem 0 1.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
#navbar .menu .sub-menu a {
  font-size: 1.8rem;
  color: #001D21;
  font-weight: 400;
  padding: 0.3rem 4.8rem 0.3rem 3.5rem;
  display: inline-block;
  transition: background-color 0.2s, color 0.2s;
  width: 100%;
}
#navbar .menu .sub-menu a:hover {
  background-color: #8FC15A;
  color: #fff;
}
#navbar .menu-container {
  display: flex;
  align-items: center;
  gap: 4.4rem;
}
#navbar .menu-container .mobile-menu-toggle {
  display: none;
}
#navbar .menu-container .mobile-menu-toggle .close,
#navbar .menu-container .mobile-menu-toggle .open {
  display: none;
  padding: 0;
  border: none;
  background: none;
}
#navbar .menu-container .mobile-menu-toggle.active .close {
  display: flex;
}
#navbar .menu-container .mobile-menu-toggle.active .open {
  display: none;
}
#navbar .mobile-sub-menu-container {
  display: none;
}

@media (max-width: 1030px) {
  #navbar .menu {
    gap: 1.5rem;
  }
  #navbar .menu a {
    font-size: 1.6rem;
  }
}
@media (max-width: 930px) {
  #navbar {
    padding: 0.9rem 0 0.5rem;
  }
  #navbar .breakout {
    flex-wrap: wrap;
  }
  #navbar .menu {
    display: none;
  }
  #navbar .menu-container {
    gap: 2rem;
  }
  #navbar .menu-container .mobile-menu-toggle {
    display: block;
  }
  #navbar .menu-container .mobile-menu-toggle .open {
    display: flex;
  }
  #navbar .mobile-sub-menu-container {
    display: block;
    width: 100%;
  }
  #navbar .mobile-sub-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
    margin: 0.1rem 0 0;
  }
  #navbar .mobile-sub-menu a {
    color: #808080;
  }
}
@media (max-width: 768px) {
  #navbar .logo {
    max-width: 9.3rem;
    padding: 1rem 0;
  }
  #navbar .button {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    gap: 1.8rem;
  }
  #navbar .button svg {
    width: 20px;
    height: 20px;
  }
}
.news-item img {
  width: 100%;
}
.news-item .news-item-image {
  margin: 0 0 3rem;
}
.news-item .news-item-image img {
  transition: filter 0.2s ease-in-out;
}
.news-item .news-item-title {
  color: #000;
  margin: 0 0 1.5rem;
}
.news-item .news-item-title a {
  color: #000;
  transition: color 0.2s ease-in-out;
}
.news-item:hover img {
  filter: brightness(0.8);
}
.news-item:hover .news-item-title a {
  color: #000;
}

@media (max-width: 768px) {
  .news-item .news-item-image {
    margin: 0 0 2rem;
  }
  .news-item .news-item-title {
    margin: 0 0 1rem;
  }
}
.site-footer .container {
  background-color: #8FC15A;
  padding: 9rem 0 5.5rem;
}
.site-footer .container > :not(.breakout, .full-width) {
  grid-column: breakout;
}
.site-footer p, .site-footer a {
  color: #fff;
  font-size: 1.8rem;
}
.site-footer a {
  transition: opacity 0.2s ease-in-out;
}
.site-footer a:hover {
  opacity: 0.7;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.2rem;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3.5rem 0 0;
}
.site-footer .footer-bottom p {
  opacity: 0.5;
  font-size: 1.4rem;
}
.site-footer .footer-bottom a {
  font-size: 1.4rem;
}
.site-footer .footer-heading {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.site-footer .social-icons {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 2.3rem 0 0;
}
.site-footer .social-icons-mobile {
  display: none;
}
.site-footer .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-menu li {
  margin-bottom: 1.2rem;
}
.site-footer .footer-menu li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .site-footer .container {
    padding: 5rem 0 2rem;
  }
  .site-footer p, .site-footer a {
    font-size: 1.4rem;
  }
  .site-footer .footer-logo {
    display: flex;
    justify-content: space-between;
  }
  .site-footer .footer-logo img {
    max-width: 11.7rem;
  }
  .site-footer .footer-top {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin: 3.2rem 0 0;
  }
  .site-footer .footer-bottom p {
    font-size: 1.2rem;
  }
  .site-footer .footer-bottom a {
    font-size: 1.2rem;
  }
  .site-footer .footer-heading {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
  }
  .site-footer .social-icons {
    display: none;
    align-items: center;
    gap: 2.5rem;
    margin: 2.3rem 0 0;
  }
  .site-footer .social-icons-mobile {
    display: flex;
    margin: 0;
  }
}
.form .gfield_required {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 0;
  margin: 0 0 2rem;
  background-color: transparent;
  border: none;
  text-align: center;
  box-shadow: none;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  font-family: "Titillium Web", sans-serif;
  font-size: 1.6rem;
}
.form .gform_wrapper.gravity-theme .gfield_description.validation_message {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
}
.form .gform_validation_errors {
  display: none !important;
}

.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea {
  border: 2px solid #000;
}
.form .gfield--type-fileupload {
  margin-top: -6rem;
  display: flex;
  padding-left: 14rem;
}
.form .gfield--type-fileupload input[type=file] {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
.form .gfield--type-fileupload label {
  border: 1px solid #000;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2.5rem !important;
  display: inline-block;
  border-radius: 50px;
  position: relative;
  white-space: nowrap;
}
.form .gfield--type-fileupload label::before {
  content: "Ladda upp";
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  left: -9rem;
  transform: translateY(-50%);
}
.form .gfield--type-fileupload label::after {
  content: url("../../assets/icons/file-upload.svg");
  position: absolute;
  top: calc(50% + 0.5rem);
  left: -14rem;
  transform: translateY(-50%);
}
.form .gform_fileupload_rules {
  display: none !important;
}
.form button {
  background-color: #8FC15A;
  color: #fff;
  border-color: #8FC15A;
  justify-content: space-between;
}
.form button svg {
  border: 1px solid transparent;
  border-radius: 50%;
}
.form button:hover {
  background-color: transparent;
  color: #001D21;
}
.form button:hover svg {
  border-color: #8FC15A;
  border-radius: 50%;
}

@media (max-width: 640px) {
  .form .gfield--type-fileupload {
    margin: 0;
  }
}
#mobile_menu_container {
  position: fixed;
  top: 6.1rem;
  left: 0;
  right: 0;
  background-color: #fff;
  height: calc(100dvh - 6.1rem);
  padding: 2rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 9999;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out;
  transform: translateX(100%);
}
#mobile_menu_container.active {
  transform: translateY(0);
}
#mobile_menu_container .mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mobile_menu_container .mobile-menu li.menu-item-has-children {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  align-items: center;
}
#mobile_menu_container .mobile-menu li.menu-item-has-children .menu-icon.active {
  rotate: 180deg;
}
#mobile_menu_container .mobile-menu li {
  margin: 0.3rem 0;
}
#mobile_menu_container .mobile-menu a {
  color: #808080;
  font-size: 1.8rem;
  font-weight: 700;
}
#mobile_menu_container .mobile-menu .sub-menu {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0 0 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
#mobile_menu_container .mobile-menu .sub-menu li {
  margin: 0.3rem 0;
}
#mobile_menu_container .mobile-menu .sub-menu li:first-child {
  margin-top: 1.3rem;
}
#mobile_menu_container .mobile-menu .sub-menu li:last-child {
  margin-bottom: 1.3rem;
}
#mobile_menu_container .mobile-menu .sub-menu a {
  font-size: 1.6rem;
}

.info-page {
  padding: 4.7rem 0 0;
}
.info-page .info-grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 10rem;
}
.info-page .sidebar {
  position: sticky;
  top: 10rem;
  height: 0;
}
.info-page .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-page .sidebar a {
  color: #000;
  text-decoration: none;
  font-size: 2rem;
  line-height: 4rem;
  transition: padding-left 0.3s, font-weight 0.3s;
}
.info-page .sidebar a:hover {
  cursor: pointer;
  padding-left: 2rem;
  font-weight: 700;
}
.info-page .sidebar .current-menu-item a {
  font-weight: 700;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .info-page {
    padding: 2rem 0 0;
  }
  .info-page .info-grid {
    grid-template-columns: 100%;
    gap: 0rem;
    padding-top: 2rem;
  }
  .info-page .main-content {
    order: 1;
  }
  .info-page .sidebar {
    padding: 0 0 8rem;
    order: 2;
    position: static;
    height: auto;
  }
}
.blog-page {
  padding: 5rem 0 10rem;
}
.blog-page .blog-page-hero .heading {
  margin: 0 0 3rem;
}
.blog-page .blog-page-hero .text {
  font-size: 2.5rem;
  max-width: 44.6rem;
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.5rem 2rem;
  margin: 7rem 0 0;
}
.blog-page .blog-post-load-more {
  text-align: center;
  margin: 4.8rem 0 0;
}

@media (max-width: 1200px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-page {
    padding: 3rem 0 8rem;
  }
  .blog-page .blog-page-hero .heading {
    margin: 0 0 3rem;
  }
  .blog-page .blog-page-hero .text {
    font-size: 1.8rem;
  }
  .blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 3rem 0 0;
  }
}
.error-404 {
  padding: 0 0 10rem;
}
.error-404 .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 7.2rem;
  width: 100%;
}
.error-404 .container.no-image {
  grid-template-columns: 2fr 1fr;
}
.error-404 .text-content {
  align-content: start;
  padding: 4.7rem 0 0;
}
.error-404 .images {
  display: flex;
  gap: 1rem;
}
.error-404 .heading {
  margin: 0 0 3rem;
  text-wrap: balance;
}
.error-404 .text {
  font-size: 2.5rem;
}
.error-404 .button-container {
  margin: 3rem 0 0;
}

@media (max-width: 1300px) {
  .error-404 .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .error-404 .text-content {
    order: 2;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .error-404 .heading {
    order: 2;
    margin: 0 0 2rem;
  }
  .error-404 .text {
    order: 3;
    font-size: 1.8rem;
  }
  .error-404 .button-container {
    order: 4;
  }
  .error-404 .images {
    gap: 0.3rem;
  }
}
@media (max-width: 768px) {
  .error-404 {
    padding: 0 0 8rem;
  }
}