html {
  scroll-behavior: smooth;
}
body {
  min-width: 360px;
  background-color: var(---woodsmoke);
  font-family: var(--font-family-poppins);
  font-size: var(--font-size-l);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 24px;
}

p {
  margin: 0 0 0.75rem 0;
}

.vd-container-lg  {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .vd-container-lg {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (min-width: 992px) {
  .vd-container-lg {
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 832px;
  }
}

.vd-container-xl  {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .vd-container-xl {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (min-width: 992px) {
  .vd-container-xl {
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 640px;/*780px;*/
  }
}

@media screen and (min-width: 1200px) {
  .vd-container-xl {
    max-width: 780px;
  }
}

@media screen and (min-width: 1440px) {
  .vd-container-xl {
    max-width: 1180px;
  }
}

@media screen and (min-width: 1440px) {
  .vd-container-xl {
    max-width: 1180px;/*1240px;*/
  }
}

.vd-container-page {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .vd-container-page {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (min-width: 992px) {
  .vd-container-page {
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 860px;
  }
}

@media screen and (min-width: 1200px) {
  .vd-container-page {
    max-width: 1180px;
  }
}

.page {
  align-items: center;
  background-color: var(--woodsmoke);
  display: flex;
  flex-direction: column;
  position: relative;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 144px;
  min-width: 360px;
  z-index: 100;
}

.header-page {
  height: 76px;
}

@media screen and (min-width: 992px) {
  .header {
    height: 76px;
  }
}
.header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  backdrop-filter: blur(10px) brightness(100%);
  background-color: rgba(255, 255, 255, 0.06);
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .header__inner {
    justify-content: center;
  }
}

.header__logo {
  width: 84px;
}

.header__navigation {
  /*width: 100%;*/
  padding-left: 20px;
  padding-right: 20px;
  height: 48px;
  overflow-x: auto;
}

.navigation-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .navigation-wrapper {
    position: absolute;
    width: 150px;/*100%;*/
    height: calc(100vh - 76px);
    top: 76px;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .header__navigation {
    height: auto;
    width: 150px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
}

.navigation-list {
  display: flex;
}

@media screen and (min-width: 992px) {
  .navigation-list {
    flex-direction: column;
    width: 150px;
  }
}

.navigation-list-item {
  padding: 10px 8px;
}

.navigation-link {
  text-decoration: none;
  font-family: var(--font-family-oxanium);
  font-size: var(--font-size-m);
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
  display: inline-flex;
  position: relative;
}

.navigation-link:visited {
  color: var(--white);
}

.navigation-link:hover,
.navigation-link:focus {
  color: var(--white);
}

.navigation-link:active {
  color: var(--white);
}

.navigation-link::after{
  content: "";
  background-color: var(--gray-nurse);
  position: absolute;
  width: 100%;
  top: 120%;
  left: 0px;
  height: 2px;
  opacity: 0;
}

.navigation-link_selected::after {
  opacity: 1;
}

.navigation-link-underline {
  display: none;
}

@media screen and (min-width: 992px) {
  .navigation-list-item {
    overflow: hidden;
  }
  .navigation-link-underline {
    display: block;
    width: 50px;
    height: 1px;
    background: rgb(255 255 255 / 30%);
    opacity: 1;
  }
  .navigation-link {
    transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    -o-transform: translateY(-200%);
    opacity: 0;
  }
  .navigation-link::after {
    opacity: 1;
  }
  .navigation-link_selected {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    opacity: 1;
  }
  .navigation-list-item:hover .navigation-link-underline, 
  .navigation-item_selected .navigation-link-underline {
    opacity: 0;
  }
 
  .navigation-list-item:hover .navigation-link {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    opacity: 1;
    animation:menuLinkAnimation 500ms ease-in-out;
    -webkit-animation:menuLinkAnimation 500ms ease-in-out;
    animation-iteration-count:1;
}
  .navigation-list-item:hover .navigation-link_selected {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    animation:none; 
    -webkit-animation:none;
  }
}

@keyframes menuLinkAnimation {
  0% {
    transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    -o-transform: translateY(-200%);
    opacity: 0;
  }
  30% {
    transform: translateY(20%);
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    opacity: 0.5;
}
70% {
  transform: translateY(-10%);
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  opacity: 0.5;
}
  100% {
    transform: none;
    -webkit-transform: none  ;
    -moz-transform: none  ;
    -ms-transform: none  ;
    -o-transform: none  ;
    opacity:1;
  }
}
/*
.main {
  margin-top: 144px;
}
@media screen and (min-width: 992px) {
  .main {
    margin-top: 76px;
  }
}*/
.hero-header-background {
  height: 144px;
}
.hero-header-background-page {
  height: 76px;
}

@media screen and (min-width: 992px) {
  .hero-header-background {
    height: 76px;
  }
}


.hero {
  overflow: hidden;
  position: relative;
  scroll-margin-top: 114px;
}

@media screen and (min-width: 992px) {
  .hero {
    scroll-margin-top: 76px;
  }
}

.hero__video {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__content {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 24px;
 /* max-width: 1180px;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  height: 100%;
}

.hero__caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 75%;
}

.scroll-link-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 25%;
}

.scroll-line-wrapper {
  height: 100%;
}
.scroll-line {
  width: 2px;
  height: 100%;
  background-color: var(--black-haze);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.hero-caption {
  width: 320px;
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .hero-caption {
    width: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-caption {
    width: 660px;
  }
}

.hero-subtitle {
  width: 320px;
  color: var(--black-haze);
}

@media screen and (min-width: 768px) {
  .hero-subtitle {
    width: 480px;
  }
}

@media screen and (min-width: 992px) {
  .hero-subtitle {
    width: 660px;
  }
}

.scroll-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-link-img {
  display: none;
}

@media (pointer: fine) {
  .scroll-link-img {
    display: block;
    width: 28px;
  }
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-margin-top: 200px;/*114px;*/
}

@media screen and (min-width: 992px) {
  .section {
    scroll-margin-top: 120px;/*76px;*/
  }
}

.section-title{
  color: var(--gray-nurse);
}

.section-subtitle{
  color: var(--black-haze);
  font-family: var(--font-family-oxanium);
  font-size:var(--font-size-m);
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 992px) {
  .section-subtitle{
    font-size:var(--font-size-xl);
  }
}
.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px
}

.mt-6 {
  margin-top: 24px;
}

.mt-20 {
  margin-top: 80px;
}

.step {
  position: relative;
  width: 292px;/*308px;/*320px;*/
  height: 292px;/*308px;/*320px;*/
}
.step-bg {
  position: relative;
  width: 100%;/*312px;*/
  height: 100%;/*312px;*/
}

.step-bg__circle {
  border: 1.23px solid;
  border-color: var(--steel-blue);
  border-radius: 50%;/*147.54px;*/
  height: 100%; /*295px;*/
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; /*295px;*/
  -webkit-border-radius: 50%;/*147.54px;*/
  -moz-border-radius: 50%;/*147.54px;*/
  -ms-border-radius: 50%;/*147.54px;*/
  -o-border-radius: 50%;/*147.54px;*/
}

.step-bg__circle_1-1 {
  border-color: var(--steel-blue);
}

.step-bg__circle_1-2 {
  border: 2.46px solid;
  border-color: var(--steel-blue);
  box-shadow: 0px 2.77px 2.21px #0287b217 , 0px 6.65px 5.52px #0287b221;
  top:5px;
  left: 12px;
}

.step-bg__circle_2-1 {
  border-color: var(--bondi-blue);
}

.step-bg__circle_2-2 {
  border: 2.46px solid;
  border-color: var(--bondi-blue);
  box-shadow: 0px 2.77px 2.21px #0287b217 , 0px 6.65px 5.52px #0287b221;
  top:5px;
  left: 12px;
}
.step-bg__circle_3-1 {
  border-color: var(--gossamer);
}

.step-bg__circle_3-2 {
  border: 2.46px solid;
  border-color: var(--gossamer);
  box-shadow: 0px 2.77px 2.21px #0287b217 , 0px 6.65px 5.52px #0287b221;
  top:5px;
  left: 12px;
}

.step-bg__circle_4-1 {
  border-color: var(--forest-green);
}

.step-bg__circle_4-2 {
  border: 2.46px solid;
  border-color: var(--forest-green);
  box-shadow: 0px 2.77px 2.21px #0287b217 , 0px 6.65px 5.52px #0287b221;
  top:5px;
  left: 12px;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-content-our-method {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .section-content-our-method {
    max-width: 632px;
  }
}

@media screen and (min-width: 1440px) {
  .section-content-our-method {
    max-width: 1264px;
  }
}

@media screen and (min-width: 1440px) {
  .section-content-sustainability {
    flex-direction: row;
  }
}

.text-white {
  color: var(--white);
}
.text-gray-nurse {
  color: var(--gray-nurse);
}
.text-m {
  font-size: var(--font-size-m);
}
.sustainability-img {
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  width: 320px;
}

@media screen and (min-width: 768px) {
  .sustainability-img {
    width: 400px;
  }
}


@media screen and (min-width: 1440px) {
  .sustainability-img {
    max-width: 568px;
    width: 568px;
  }
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--gray-nurse-2);
}

@media screen and (min-width: 1440px) {
  .sustainability-list {
    margin-top: 44px;
  }
}

.list-item {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media screen and (min-width: 1440px) {
  .sustainability-list-item {
    padding-top: 0;
    padding-bottom: 28px;
  }
}

.step-2-bg__circle-1 {
  border: 1.23px solid;
  border-color: var(--bondi-blue);
  border-radius: 50%;/*147.54px;*/
  height: 100%; /*295px;*/
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; /*295px;*/
  -webkit-border-radius: 50%;/*147.54px;*/
  -moz-border-radius: 50%;/*147.54px;*/
  -ms-border-radius: 50%;/*147.54px;*/
  -o-border-radius: 50%;/*147.54px;*/
}

.step-2-bg__circle-2 {
  border: 2.46px solid;
  border-color: var(--bondi-blue);
  border-radius: 50%;/*147.54px;*/
  box-shadow: 0px 2.77px 2.21px #0287b217, 0px 6.65px 5.52px #0287b221;
  height: 100%; /*295px;*/
  left: 12px;
  position: absolute;
  top: 5px;
  width: 100%; /*295px;*/
  -webkit-border-radius: 50%;/*147.54px;*/
  -moz-border-radius: 50%;/*147.54px;*/
  -ms-border-radius: 50%;/*147.54px;*/
  -o-border-radius: 50%;/*147.54px;*/
}

.step-icon {
  width: 44px;
}

.step-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 6px;/*0;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step-title {
  color: var(--gray-nurse);
}

.step-description{
  color: var(--black-haze);
}


.section-content-results {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 0 24px;
  background-color: var(--log-cabin-3);
  width: 100%;
  max-width: 676px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  section-content-results {
    width: 680px;
  }
}
.card {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-img {
  width: 56px;
  height: 56px;
}

.value-creation-list-item {
  padding-top: 6px;
  padding-bottom: 6px;
}

.results-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.results-list-item {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
  padding-right: 0;/*20px;*/
  padding-left: 0;/*20px;*/
  position: relative;
}

.results-list-item:not(:last-child)::after {
  content: "";
  background-color: rgba(233, 233, 233, 0.2);
  position: absolute;
  width: 100%;
  max-width: 260px;
  top: 100%;
  left: 0;/*20px;*/
  height: 1px;
}

@media screen and (min-width: 768px) {
  .results-list-item {
    width: 50%;
    padding-right: 28px;/*20px;*/
    padding-left: 28px;/*20px;*/
  }
  .results-list-item:not(:last-child)::after {
    width: 1px;
    max-width: unset;
    top: 120px;
    left: 100%;
    height: 200px;
  }
}

.benefits-list {
  justify-content: flex-start;
  margin-top: -12px;
  margin-bottom: -12px;
}

.benefits-list-item {
  padding: 26px;
  position: relative;
  /*border-image: linear-gradient(to right, #424242 0%, #262626 100%) 1;*/
  margin: 12px;
  /*border: 0.5px solid transparent;
  background: linear-gradient(#424242 0%, #262626) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; 
  mask-composite: exclude; */
}

.benefits-list-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 1px;
  background: linear-gradient(#424242 0%, #262626) border-box;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@media screen and (min-width: 576px) {
  .benefits-list-item {
    width: calc(50% - 24px);
  }
}

@media screen and (min-width: 1440px) {
  .benefits-list-item {
    width: calc(33.33% - 24px);
  }
}


label {
  color: var(--black-haze-2);
}

input, textarea {
  color: var(--white);
}
textarea:focus-visible {
  outline: 0;
}

input {
  height: 40px;
  padding: 12px 16px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: var(--log-cabin);
  border: none;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.1);
}

textarea {
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: var(--log-cabin);
  resize: none;
  padding: 12px 16px;
}

.vd-form-text-area {
  width: 100%;
}

.section-contact {
  display: flex;
  flex-direction: column;
}

.section-header-contact, .section-content-contact {
  width: 100%;
}

.section-content-contact {
  margin-top: 80px;
}

.vd-form-group_email, .vd-form-group_phone {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .vd-form-group_email {
    margin-right: 28px;
  }
  .vd-form-group_email, .vd-form-group_phone {
    width: calc(50% - 14px);
  }

}

@media screen and (min-width: 992px) {
  .section-contact {
    flex-direction: row;
  }
  .section-header-contact {
    width: 40%;
    padding-right: 20px;/*40px;*/
    text-align: left;
  }
  .section-content-contact {
    width: 60%;
    padding-left: 20px;/*40px;*/
    margin-top: 0;
  }

}

@media screen and (min-width: 1440px) {
  .section-contact {
    flex-direction: row;
  }
  .section-header-contact {
    width: 50%;
    padding-right: 40px;
  }
  .section-content-contact {
    width: 50%;
    padding-left: 40px;
  }

}

.vd-form {
  text-align: left;
  width: 100%;
}

.vd-form-group {
  margin-bottom: 20px;
}

.vd-form-label {
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-family-oxanium);
  font-size: var(--font-size-m);
  font-weight: 500;
}
.vd-form-label:hover {
  color: var(--white);
}

.vd-form-input {
  display: block;
  width: 100%;
}

.vd-btn, button {
  height: 40px;
  border-radius:100px;
  -webkit-border-radius:100px;
  -moz-border-radius:100px;
  -ms-border-radius:100px;
  -o-border-radius:100px;
  border: none;
  padding-left: 12px;
  padding-right: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size:var(--font-size-m);
  font-weight: 500;
  line-height: 1;
}

.vd-btn-link {
  text-decoration: none;
}

.vd-btn-primary {
  background-color: #0575E6;
  color: var(--white);
}


.vd-btn-primary:disabled {
  background-color: #EBEBEB;
  color:  #747474;
}


.vd-btn-primary:active {
  background-color: #0575E6;
}
.vd-btn-primary:focus,
.vd-btn-primary:hover {
  background-color: #004B97;
}


.vd-btn-primary[disabled],
.vd-btn-primary:disabled {
  background-color: var(-cararra);
  color: var(--sonic-silver);
}

.vd-btn-link.vd-btn-primary:visited {
  background-color: #0575E6;
}

.contact-error {
  height: 40px;
  padding: 12px;
  margin: 12px 0;
  font-size: var(--font-size-m);
  color: var(--white);
}

.iti .iti__selected-dial-code {
  color: var(--white);
  height: 38px;/*40px;*/
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  padding-top: 1px;
}

.iti__selected-country:focus-visible {
  outline: none;
}
.hero-page-img {
  max-width: 100%;
  object-fit:cover;
  height: 144px;;
}

.section-privacy {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-content-privacy {
  color: var(--black-haze);
}

.section-title-privacy {
  font-weight: 500;
}
.section-para {
  margin:0;
}
.section-list {
  margin-top:0;
  padding-left: 18px;
}

.hero-subtitle-privacy {
  font-size: var(---font-size-xl);
  font-family: var(--font-family-poppins);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  color: var(--black-haze);
}

.content-page-not-found {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
}

.section-page-not-found-header,
.section-page-not-found-content {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 992px) {
  .content-page-not-found {
    display: flex;
    flex-direction: row-reverse;
    min-height: 100vh;
    align-items: center;
  }
  .section-page-not-found-header {
    padding-left: 40px;
    width: 50%;
  }
  .section-page-not-found-content {
    padding-right: 40px;
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  /*.section-page-not-found-header {
    width: 40%;
  }
  .section-page-not-found-content {
    width: 60%;
  }*/
  .section-page-not-found-content-inner {
    max-width: 400px;
  }
}

.page-not-found-title {
  font-size: 120px;
  font-family: var(--font-family-oxanium);
  display: flex;
  align-items: center;
  justify-content: center;
}


.page-not-found-title-circle {
  position: relative;
  width: 120px;
  height: 120px;
  display: inline-block;
  margin-left: 4px;
}

@media screen and (min-width: 1024px) {
  .page-not-found-title {
    font-size: 160px;
  }
  
  
  .page-not-found-title-circle {
    width: 160px;
    height: 160px;
  }
}
.page-not-found-subtitle {
  font-family: var(--font-family-oxanium);
  font-size:var(--font-size-xxl);
  color: #AEAEB8;
  text-align: center;
}
.footer {
  height: 172px;
  width: 100%;
  border-image: linear-gradient(to right, #101010 0%, #565656 50%, #101010 100%) 1;
  border-width: 1px;
  border-style: solid;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding: 20px;
  text-align: center; 
}

.footer-link {
  text-decoration: none;
  font-size: var(--font-size-m);
  color: var(--black-haze-3);
}


.footer-link:visited {
  color: var(--black-haze-3);
}

.footer-link:hover,
.footer-link:focus {
  color: var(--white);
}

.footer-link:active {
  color: var(--black-haze-3);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  height: 100%;
  justify-content: space-between;
}

.footer-copyright {
  color: var(--black-haze-3);
  font-size: var(--font-size-m);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer {
    height: 108px;
    text-align: left;
  }
  .footer-inner {
    flex-direction: row;
    
  }
}