.mrl {
  margin-right: 10px;
  margin-left: 10px;
}

@media all and (min-width: 768px) {
  .mrl {
    margin-right: calc(100 / 1600 * 100vw);
    margin-left: calc(100 / 1600 * 100vw);
  }
}

@media all and (min-width: 1600px) {
  .mrl {
    margin-right: 100px;
    margin-left: 100px;
  }
}


.cols {
  display: flex;
  flex-flow: row wrap;
}

.cols .col {
  width: 100%;
}

.col .content {
  position: relative;
}

.w50 {
  width: 50%;
}

.w33 {
  width: calc(100% / 3);
}


@media all and (min-width: 768px) {
  .cols {
    flex-flow: row;
  }

  .cols .wpx250-tablet {
    width: 250px;
    flex-shrink: 0;
  }

  .cols .grow-tablet {
    flex-grow: 1;
    width: unset;
  }

  .cols .w75-tablet {
    width: 75%;
  }

  .cols .w50-tablet {
    width: 50%;
  }

  .cols .w25-tablet {
    width: 25%;
  }
}

@media all and (min-width: 1280px) {
  .cols .w75-desktop {
    width: 75%;
  }

  .cols .w50-desktop {
    width: 50%
  }

  .cols .w25-desktop {
    width: 25%;
  }
}

.mtb-lg img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  border-top: 1px solid var(--color-palette-gray-2);
  padding-top: 50px;
  margin-top: 50px;
}

.footer h3 {
  font-size: 16px;
  font-weight: 600;
}

.footer .list {
  font-size: 14px;
  line-height: 1.86;
  padding: 10px;
}

.footer .list ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
}

.footer a {
  color: var(--color-outer-space-gray);
}

.footer .list a {
  line-height: 48px;
  color: var(--color-outer-space-gray);
}

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

.footer .badge-area {
  margin: 1rem auto;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.footer .badge-area img {
  width: 80px;
  margin: 10px;
}

.footer .all-rights #footer-logo {
  width: 60px;
  height: 60px;
  float: left;
  fill: var(--color-primary);
}

.footer .all-rights p {
  width: calc(100% - 90px);
  float: right;
  font-size: 12px;
}

.footer .all-rights a {
  text-decoration: none;
  font-weight: bold;
}

.footer .social-icons {
  display: flex;
}

.footer .social-link {
  width: 40px;
  height: 40px;
  margin: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-palette-gray-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mc-footer-signup-form {
  width: 320px;
  border: solid 1px #dcdcdc;
  border-radius: 25px;
  margin-top: 10px;
  display: flex;
}

#footer-mc-EMAIL {
  width: 255px;
  margin-left: 15px;
  border: none;
  border-radius: 25px;
  line-height: 46px;
  font-weight: normal;
  color: #a0a0a0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-rendering: auto;
  overflow: visible;
  outline: none;
}

.footer-mc-signup-button {
  border-radius: 50%;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  color: #ffffff;
  border: none;
  font: 500 16px system-ui;
  outline: none;
  margin: 2px;
}

.footer-mc-signup-button:hover {
  background: var(--color-primary-lighter);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

/* media css */
@media all and (min-width: 768px) {
  .footer .cols .grow-col {
    flex-grow: 1;

    display: flex;
    flex-direction: column;
  }

  .footer a {
    line-height: normal;
    color: var(--color-outer-space-gray);
  }
}

/* Dark mode */

@media (prefers-color-scheme: dark) {
  html.auto-color #footer-mc-EMAIL  {
    background-color: var(--color-darkmode);
  }

  html.auto-color .footer .social-link svg g {
    fill: var(--color-palette-gray-2);
  }
}

html.dark-mode #footer-mc-EMAIL  {
  background-color: var(--color-darkmode);
}

html.dark-mode .footer .social-link svg g {
  fill: var(--color-palette-gray-2);
}
