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

.w-inline-block {
  display: inline-block;
  max-width: 100%;
}

.w-clearfix::before,
.w-clearfix::after,
.w-nav::before,
.w-nav::after,
.w-tabs::before,
.w-tabs::after {
  content: " ";
  display: table;
}

.w-clearfix::after,
.w-nav::after,
.w-tabs::after {
  clear: both;
}

.w-button {
  display: inline-block;
  border: 0;
  cursor: pointer;
  line-height: inherit;
  text-decoration: none;
}

.w-nav {
  position: relative;
  z-index: 1000;
}

.w-nav-brand,
.w-nav-link {
  position: relative;
  text-decoration: none;
}

.w-nav-brand {
  float: left;
}

.w-nav-link {
  display: inline-block;
  vertical-align: top;
  margin-left: auto;
  margin-right: auto;
}

.w-nav-button {
  display: none;
  cursor: pointer;
  user-select: none;
}

.w-nav-menu {
  position: relative;
  float: right;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #000;
}

.w-icon-nav-menu::before {
  content: "\2630";
  display: block;
  line-height: 1;
}

.w-tabs,
.w-tab-menu,
.w-tab-link,
.w-tab-content {
  position: relative;
}

.w-tab-link {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done,
.w-form-fail {
  display: none;
}

.w-form-fail {
  margin-top: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    float: none;
    width: 100%;
    min-width: 200px;
    margin: 0;
    padding: 10px 0 20px;
    background: #fff;
    text-align: left;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 0ms linear 200ms;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }

  .w-nav[data-collapse="medium"] .w-nav-menu.w--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0ms;
  }

  .w-nav[data-collapse="medium"] .w-nav-link,
  .w-nav[data-collapse="medium"] .w-button {
    display: block;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}