/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
.footer {
  background: #fff;
  padding: 15px;
  border-top-left-radius: 40px;
  position: relative;
  z-index: 10;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .footer {
    border-top-left-radius: 100px;
  }
}
.footer-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 0;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-flex {
    gap: 0;
    flex-direction: row;
  }
}
.footer-logo {
  align-self: center;
}
@media (min-width: 768px) {
  .footer-logo {
    align-self: center;
  }
}
.footer-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .footer-menu {
    flex-direction: row;
    gap: 30px;
    margin-right: 0;
    justify-content: flex-end;
  }
}
.footer-menu .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .footer-menu .col {
    gap: 15px;
    width: auto;
    min-width: 160px;
  }
}
.footer-menu .col.privacy {
  width: 100%;
}
@media (min-width: 768px) {
  .footer-menu .col.privacy {
    width: auto;
  }
}
.footer-menu-btn {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .footer-menu-btn {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.footer-menu-btn.privacy {
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-menu-btn.privacy {
    width: auto;
    font-size: 12px;
    line-height: 20px;
  }
}
.footer-menu-btn:after {
  margin-left: 8px;
}
.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .footer-menu-list {
    margin-top: -20px;
    gap: 20px;
  }
}
.footer-menu-list-btn {
  font-size: 14px;
  padding-left: 1.5rem;
  position: relative;
}
.footer-menu-list-btn:after {
  margin-left: 8px;
}
.footer-menu-list-btn:before {
  content: "";
  width: 0.5rem;
  height: 2px;
  position: absolute;
  background: #E5E9ED;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.footer-copy {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid var(--text-base-color);
}
@media (min-width: 768px) {
  .footer-copy {
    text-align: right;
  }
}/*# sourceMappingURL=footer.css.map */