:root {
  --paragraph: #fffc;
  --white: #ffffff;
  --primary-red: #bf0000;
  --overlay-black: #00000036;
}


/* ========================================
   WEBFLOW LAYOUT
======================================== */

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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


/* ========================================
   GLOBAL
======================================== */

body {
  color: var(--paragraph);
  background-color: #000;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow-x: hidden;
}

h2 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

a {
  color: #fff;
  text-decoration: none;
}

li {
  color: #fff;
}

.body {
  color: #fff;
  background-color: #000;
}

.text-block {
  color: #fff;
}


/* ========================================
   NAVBAR
======================================== */

.navbar-logo-left-container {
  z-index: 5;
  background-color: transparent;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
}


/* ========================================
   HEADER LOGO
======================================== */

.navbar-brand,
.navbar-brand.w--current {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 264px;
  max-width: 264px;
  height: 96px;

  flex: 0 0 264px;

  padding: 0;

  overflow: hidden;

  /*
   * Flyttar loggans visuella innehåll åt vänster.
   * Eftersom värdet är procentuellt följer det
   * loggans storlek på desktop, tablet och mobil.
   */
  transform: translateX(-20%);
  transform-origin: center center;
}

.navbar-brand .image-2 {
  display: block;

  width: 100%;
  max-width: none;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transform: scale(1.35);
  transform-origin: center;

  margin: 0;
}


/* ========================================
   NAVIGATION
======================================== */

.nav-menu-wrapper {
  margin-left: auto;
}

.nav-menu-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.nav-link {
  color: #fff;
  letter-spacing: .25px;
  white-space: nowrap;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s ease;
}

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

.nav-link:focus-visible,
.nav-link[data-wf-focus-visible] {
  color: var(--primary-red);
  border-radius: 4px;
  outline: 2px solid var(--paragraph);
  outline-offset: 2px;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle[data-wf-focus-visible] {
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  color: #fff;
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible,
.nav-dropdown-link[data-wf-focus-visible] {
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}


/* ========================================
   BUTTONS
======================================== */

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: var(--primary-red);
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;

  transition:
    background-color .3s ease,
    color .3s ease,
    transform .3s ease;
}

.button-primary:hover {
  color: var(--primary-red);
  background-color: #fff;
}

.button-primary:active {
  background-color: #fff;
}

.button-primary:disabled {
  opacity: .65;
  cursor: wait;
  color: #fff;
  background-color: var(--primary-red);
}

.button-secondary {
  color: var(--primary-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;

  transition:
    background-color .3s ease,
    color .3s ease;
}

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

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


/* ========================================
   HERO
======================================== */

.container-hero {
  grid-column-gap: 18px;
  grid-row-gap: 18px;

  background-image:
    url('../images/RLT-formedling-hero.png');

  background-position: 100%;
  background-size: cover;

  border-radius: 8px;

  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;

  height: 90vh;

  padding: 0;

  display: flex;
}

.overlay-hero {
  grid-column-gap: 18px;
  grid-row-gap: 18px;

  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;

  height: 90vh;

  padding-top: 101px;

  display: flex;
}

.flex-buttons-hero {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.paragraph {
  color: #fffefecc;
  width: 60ch;
}

.heading-1 {
  color: #fff;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}


/* ========================================
   FORM
======================================== */

.form-section {
  margin-bottom: 23px;
}

.form-block {
  margin-top: 19px;
}

.form {
  padding-left: 20px;
}

.flex-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding-bottom: 18px;
}

.heading-2 {
  margin-bottom: 10px;
}

.paragraph-2 {
  width: 60ch;
}

.quick-stack,
.quick-stack-2 {
  padding: 0;
}

.field-label,
.field-label-2,
.field-label-3 {
  color: var(--white);
  font-weight: 600;
}

.text-field {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-field:focus {
  border: 1px solid var(--primary-red);
  outline: none;
}

.text-field-2 {
  border-radius: 8px;
  margin-bottom: 14px;
}

.textarea {
  border-radius: 8px;
  margin-bottom: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.textarea:focus {
  border: 1px solid var(--primary-red);
  outline: none;
}


/* ========================================
   FORM SUCCESS MESSAGE
======================================== */

.w-form-done {
  display: none;

  width: 100%;

  margin-top: 24px;

  padding: 20px 22px;

  color: #fff;
  background-color: #101010;

  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid #26a269;

  border-radius: 8px;

  box-sizing: border-box;

  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;

  text-align: left;

  box-shadow:
    0 10px 30px rgba(0,0,0,.2);
}

.w-form-done > div {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #fff;
}

.w-form-done > div::before {
  content: "✓";

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  min-width: 30px;

  color: #fff;
  background-color: #26a269;

  border-radius: 50%;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}


/* ========================================
   FORM ERROR MESSAGE
======================================== */

.w-form-fail {
  display: none;

  width: 100%;

  margin-top: 24px;

  padding: 20px 22px;

  color: #fff;
  background-color: #101010;

  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--primary-red);

  border-radius: 8px;

  box-sizing: border-box;

  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;

  text-align: left;

  box-shadow:
    0 10px 30px rgba(0,0,0,.2);
}

.w-form-fail > div {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #fff;
}

.w-form-fail > div::before {
  content: "!";

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  min-width: 30px;

  color: #fff;
  background-color: var(--primary-red);

  border-radius: 50%;

  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}


/* ========================================
   CUSTOM IMAGE UPLOAD
======================================== */

.rlt-upload {
  width: 100%;
  margin-bottom: 14px;
}

.rlt-upload input[type="file"] {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  opacity: 0 !important;

  overflow: hidden !important;

  pointer-events: none !important;
}

.rlt-upload-controls {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 14px;
}

.rlt-upload-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 44px;

  margin: 0;

  padding: 12px 20px;

  color: #fff;

  background-color:
    var(--primary-red);

  border: 0;

  border-radius: 8px;

  font-family:
    Inter,
    sans-serif;

  font-size: 12px;

  font-weight: 600;

  line-height: 20px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.rlt-upload-button:hover {
  color: var(--primary-red);
  background-color: #fff;
}

.rlt-upload-button:active {
  transform: translateY(1px);
}

.rlt-upload-status {
  color: var(--paragraph);

  font-family:
    Inter,
    sans-serif;

  font-size: 14px;

  font-weight: 400;

  line-height: 20px;
}

.rlt-upload-list {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  width: 100%;

  margin-top: 12px;
}

.rlt-upload-item {
  display: inline-flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 8px;

  max-width: 100%;

  padding:
    7px 7px 7px 12px;

  color: #fff;

  background-color: #151515;

  border: 1px solid #333;

  border-radius: 7px;

  font-family:
    Inter,
    sans-serif;

  font-size: 13px;

  font-weight: 400;

  line-height: 20px;
}

.rlt-upload-file-name {
  display: block;

  max-width: 220px;

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;
}

.rlt-upload-remove {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 24px;
  height: 24px;
  min-width: 24px;

  margin: 0;
  padding: 0;

  color: #aaa;

  background-color:
    transparent;

  border: none;

  border-radius: 50%;

  font-family:
    Arial,
    sans-serif;

  font-size: 19px;

  font-weight: 400;

  line-height: 1;

  cursor: pointer;

  transition:
    background-color .2s ease,
    color .2s ease;
}

.rlt-upload-remove:hover {
  color: #fff;

  background-color:
    var(--primary-red);
}

.rlt-upload-info {
  margin-top: 8px;

  color:
    rgba(255,255,255,.45);

  font-family:
    Inter,
    sans-serif;

  font-size: 12px;

  font-weight: 400;

  line-height: 18px;
}


/* ========================================
   FOOTER
======================================== */

.footer-dark {
  background-color: #000;

  padding:
    50px 30px 15px;

  position: relative;
}

.container-2 {
  border-top:
    1px solid var(--white);

  width: 100%;

  max-width: 940px;

  margin-left: auto;
  margin-right: auto;

  padding-top: 64px;
}

.footer-wrapper {
  display: flex;

  justify-content:
    space-between;

  align-items:
    flex-start;

  gap: 60px;

  max-width: 900px;

  margin-left: auto;
  margin-right: auto;
}


/* ========================================
   FOOTER LOGO
======================================== */

.footer-brand,
.footer-brand.w--current {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 220px;
  max-width: 220px;

  height: 90px;

  flex: 0 0 220px;

  padding: 0;

  overflow: hidden;
}

.footer-brand .image {
  display: block;

  width: 220px;
  max-width: 220px;

  height: 90px;

  object-fit: contain;

  object-position: center;

  margin: 0;
}


/* ========================================
   FOOTER CONTENT
======================================== */

.footer-content {
  grid-column-gap: 70px;

  grid-row-gap: 40px;

  grid-template-rows: auto;

  grid-template-columns:
    auto auto 1fr;

  grid-auto-columns: 1fr;

  flex: 1;

  display: grid;
}

.footer-block {
  flex-direction: column;

  justify-content:
    flex-start;

  align-items:
    flex-start;

  display: flex;
}

.title-small {
  color: var(--white);

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 12px;

  font-size: 14px;

  font-weight: 600;

  line-height: 16px;
}

.footer-link {
  color: var(--paragraph);

  margin-top: 12px;

  margin-bottom: 6px;

  font-size: 14px;

  line-height: 20px;

  text-decoration: none;

  transition:
    color .2s ease;
}

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

.footer-social-block {
  justify-content:
    flex-start;

  align-items: center;

  margin-top: 12px;

  margin-left: -12px;

  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;

  width: 100%;

  height: 1px;

  margin-top: 70px;

  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;

  font-size: 14px;

  line-height: 16px;
}


/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 991px) {

  .container {
    max-width: 728px;
  }


  /* Header */

  .navbar-wrapper {
    min-height: 84px;
  }

  .navbar-brand,
  .navbar-brand.w--current {
    width: 228px;
    max-width: 228px;

    height: 84px;

    flex-basis: 228px;
  }

  .navbar-brand .image-2 {
    width: 100%;

    max-width: none;

    height: 100%;

    transform: scale(1.35);
  }


  /* Navigation */

  .nav-menu-wrapper {
    background-color: transparent;
  }

  .nav-menu-two {
    border-radius: 50px;

    flex-wrap: wrap;

    justify-content:
      space-around;

    align-items: center;

    margin-top: 10px;

    padding: 20px;

    display: flex;

    box-shadow:
      0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;

    background-color:
      var(--primary-red);
  }


  /* Hero */

  .container-hero {
    grid-column-gap: 24px;

    grid-row-gap: 24px;

    background-image:
      url('../images/RLT-formedling-hero-square_1.png');

    background-position: 100% 0;

    background-size: cover;

    padding-top: 70px;
  }

  .paragraph {
    width: 48ch;
  }

  .section-hero,
  .form-section {
    max-width: 1140px;
  }

  .overlay-hero {
    grid-column-gap: 18px;

    grid-row-gap: 18px;

    background-color:
      var(--overlay-black);

    flex-flow: column;

    justify-content:
      flex-start;

    align-items: stretch;

    height: 90vh;

    padding-top: 0;

    display: flex;
  }


  /* Footer */

  .footer-dark {
    max-width: 1140px;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-wrapper {
    gap: 40px;
  }

  .footer-brand,
  .footer-brand.w--current {
    width: 190px;

    max-width: 190px;

    height: 78px;

    flex-basis: 190px;
  }

  .footer-brand .image {
    width: 190px;

    max-width: 190px;

    height: 78px;
  }

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


/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 767px) {

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-logo-left-container.shadow-three {
    padding-top: 6px;
    padding-bottom: 6px;
  }


  /* Header */

  .navbar-wrapper {
    min-height: 72px;
  }

  .navbar-brand,
  .navbar-brand.w--current {
    width: 192px;

    max-width: 192px;

    height: 72px;

    flex-basis: 192px;

    padding-left: 0;
  }

  .navbar-brand .image-2 {
    width: 100%;

    max-width: none;

    height: 100%;

    transform: scale(1.35);
  }


  /* Mobile navigation */

  .nav-menu-two {
    background-color:
      var(--white);

    border-radius: 20px;

    flex-direction: column;

    justify-content:
      space-around;

    align-items: center;

    margin-top: 0;

    margin-left: 70%;

    margin-right: 10px;

    padding-bottom: 30px;

    padding-left: 20px;
  }

  .nav-link {
    color: #000;

    padding-top: 10px;

    padding-bottom: 10px;

    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;

    align-items: center;

    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;

    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow:
      0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;

    max-width: 100%;

    height: 1px;

    margin-top: 10px;

    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;

    padding-top: 10px;

    padding-bottom: 10px;

    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .menu-button.w--open {
    background-color:
      var(--primary-red);

    border-radius: 8px;
  }


  /* Hero */

  .container-hero {
    background-position: 90%;

    background-size: cover;

    height: 770px;

    padding-top: 0;

    padding-left: 0;
  }

  .overlay-hero {
    grid-column-gap: 15px;

    grid-row-gap: 15px;

    flex-flow: column;

    padding-top: 40px;

    padding-left: 20px;

    display: flex;
  }


  /* Form */

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

  .flex-block {
    padding-left: 20px;
  }


  /* Messages */

  .w-form-done,
  .w-form-fail {
    margin-top: 20px;

    padding: 18px 20px;
  }


  /* Upload */

  .rlt-upload-controls {
    gap: 10px;
  }


  /* Footer */

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

  .footer-wrapper {
    flex-direction: column;

    align-items: center;

    gap: 0;
  }

  .footer-brand,
  .footer-brand.w--current {
    width: 170px;

    max-width: 170px;

    height: 70px;

    flex-basis: 70px;
  }

  .footer-brand .image {
    width: 170px;

    max-width: 170px;

    height: 70px;
  }

  .footer-content {
    width: 100%;

    grid-template-columns: 1fr;

    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

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

  .footer-social-block {
    margin-top: 20px;

    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media screen and (max-width: 479px) {

  .container {
    max-width: none;
  }


  /* Header */

  .navbar-brand,
  .navbar-brand.w--current {
    width: 174px;

    max-width: 174px;

    height: 66px;

    flex-basis: 174px;
  }

  .navbar-brand .image-2 {
    width: 100%;

    max-width: none;

    height: 100%;

    transform: scale(1.35);
  }


  /* Navigation */

  .nav-menu-two {
    flex-direction: column;

    margin-top: 0;

    margin-left: 40%;

    margin-right: 10px;
  }


  /* Hero */

  .container-hero {
    background-image:
      url('../images/RLT-formedling-hero-square.png');

    background-position: 65%;

    background-size: cover;

    height: 90vh;

    padding-left: 0;

    padding-right: 0;
  }

  .flex-buttons-hero {
    flex-flow: column;
  }

  .paragraph {
    width: auto;

    margin-bottom: 18px;

    padding-top: 0;

    padding-right: 20%;
  }

  .button-secondary {
    display: none;
  }

  .heading-1 {
    margin-bottom: 18px;
  }

  .overlay-hero {
    background-color:
      #00000080;

    padding-top: 49px;

    padding-left: 20px;

    padding-right: 20px;
  }


  /* Form */

  .form {
    margin-top: 24px;

    margin-left: auto;

    margin-right: auto;

    padding-left: 20px;

    padding-right: 20px;
  }

  .quick-stack-2 {
    grid-column-gap: 0;

    grid-row-gap: 0;
  }


  /* Messages */

  .w-form-done,
  .w-form-fail {
    margin-top: 18px;

    padding: 16px;

    font-size: 13px;

    line-height: 1.5;
  }

  .w-form-done > div,
  .w-form-fail > div {
    align-items: flex-start;

    gap: 12px;
  }

  .w-form-done > div::before,
  .w-form-fail > div::before {
    width: 28px;

    height: 28px;

    min-width: 28px;

    font-size: 15px;
  }


  /* Upload */

  .rlt-upload-controls {
    flex-direction: column;

    align-items: stretch;

    gap: 8px;
  }

  .rlt-upload-button {
    width: 100%;

    box-sizing: border-box;
  }

  .rlt-upload-status {
    width: 100%;
  }

  .rlt-upload-list {
    flex-direction: column;
  }

  .rlt-upload-item {
    width: 100%;

    box-sizing: border-box;
  }

  .rlt-upload-file-name {
    max-width:
      calc(100% - 40px);
  }


  /* Footer */

  .container-2 {
    max-width: none;
  }

  .footer-brand,
  .footer-brand.w--current {
    width: 150px;

    max-width: 150px;

    height: 62px;

    flex-basis: 62px;
  }

  .footer-brand .image {
    width: 150px;

    max-width: 150px;

    height: 62px;
  }

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


/* ========================================
   WEBFLOW GRID IDS
======================================== */

#w-node-db148a5c-3b7e-71f9-700e-84a72beea47d-59a3698d,
#w-node-_93058886-f468-a6f2-2635-e3fff5301224-59a3698d,
#w-node-_230f4120-2575-4981-4cc8-e52367aa025a-59a3698d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-afc4364f-6df3-b589-0e81-9791e795156c-59a3698d,
#w-node-afc4364f-6df3-b589-0e81-9791e7951575-59a3698d,
#w-node-afc4364f-6df3-b589-0e81-9791e7951580-59a3698d {
  grid-area:
    span 1 /
    span 1 /
    span 1 /
    span 1;
}


/* ========================================
   MOBILE FORM GRID
======================================== */

@media screen and (max-width: 479px) {

  #w-node-_93058886-f468-a6f2-2635-e3fff5301224-59a3698d,
  #w-node-_230f4120-2575-4981-4cc8-e52367aa025a-59a3698d {
    grid-template-rows: auto;

    grid-template-columns: 1fr;
  }
}