@charset "UTF-8";
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}
.dropdown-toggle-split::after {
  margin-left: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-primary:hover {
  color: #fff;
  background-color: #15325d;
  border-color: #132d52;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #132d52;
  border-color: #102748;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}

.btn-secondary {
  color: #333333;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-secondary:hover {
  color: #333333;
  background-color: #dddddd;
  border-color: #d7d7d7;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #333333;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #333333;
  background-color: #d7d7d7;
  border-color: #d0d0d0;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}

.btn-success {
  color: #333333;
  background-color: #a7c438;
  border-color: #a7c438;
}
.btn-success:hover {
  color: #fff;
  background-color: #8ea630;
  border-color: #859c2d;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 196, 56, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #333333;
  background-color: #a7c438;
  border-color: #a7c438;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #859c2d;
  border-color: #7d922a;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 196, 56, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-info:hover {
  color: #fff;
  background-color: #15325d;
  border-color: #132d52;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #132d52;
  border-color: #102748;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}

.btn-warning {
  color: #333333;
  background-color: #f5e51e;
  border-color: #f5e51e;
}
.btn-warning:hover {
  color: #333333;
  background-color: #e3d30a;
  border-color: #d6c70a;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 229, 30, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #333333;
  background-color: #f5e51e;
  border-color: #f5e51e;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #333333;
  background-color: #d6c70a;
  border-color: #cabc09;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 229, 30, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #333333;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-light:hover {
  color: #333333;
  background-color: #e4e4e4;
  border-color: #dedede;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #333333;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #333333;
  background-color: #dedede;
  border-color: #d7d7d7;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-dark:hover {
  color: #fff;
  background-color: #202020;
  border-color: #1a1a1a;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #131313;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.btn-outline-primary {
  color: #1c437c;
  background-color: transparent;
  background-image: none;
  border-color: #1c437c;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #1c437c;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}

.btn-outline-secondary {
  color: #f0f0f0;
  background-color: transparent;
  background-image: none;
  border-color: #f0f0f0;
}
.btn-outline-secondary:hover {
  color: #333333;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #f0f0f0;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #333333;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}

.btn-outline-success {
  color: #a7c438;
  background-color: transparent;
  background-image: none;
  border-color: #a7c438;
}
.btn-outline-success:hover {
  color: #333333;
  background-color: #a7c438;
  border-color: #a7c438;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 196, 56, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #a7c438;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #333333;
  background-color: #a7c438;
  border-color: #a7c438;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 196, 56, 0.5);
}

.btn-outline-info {
  color: #1c437c;
  background-color: transparent;
  background-image: none;
  border-color: #1c437c;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #1c437c;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.5);
}

.btn-outline-warning {
  color: #f5e51e;
  background-color: transparent;
  background-image: none;
  border-color: #f5e51e;
}
.btn-outline-warning:hover {
  color: #333333;
  background-color: #f5e51e;
  border-color: #f5e51e;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 229, 30, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #f5e51e;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #333333;
  background-color: #f5e51e;
  border-color: #f5e51e;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 229, 30, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f7f7f7;
  background-color: transparent;
  background-image: none;
  border-color: #f7f7f7;
}
.btn-outline-light:hover {
  color: #333333;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f7f7f7;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #333333;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}

.btn-outline-dark {
  color: #333333;
  background-color: transparent;
  background-image: none;
  border-color: #333333;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #333333;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #1c437c;
  background-color: transparent;
}
.btn-link:hover {
  color: #1c437c;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #999999;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.75rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.6rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #1c437c;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(28, 67, 124, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #6d9bde;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #999999;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #f0f0f0;
}

.custom-control-label {
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.3rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #e8e8e8;
}
.custom-control-label::after {
  position: absolute;
  top: 0.3rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #1c437c;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #1c437c;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(28, 67, 124, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(28, 67, 124, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #1c437c;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(28, 67, 124, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.6;
  color: #0ba1e2;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #e6f1fc;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #abd2f4;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(171, 210, 244, 0.5);
}
.custom-select:focus::-ms-value {
  color: #0ba1e2;
  background-color: #e6f1fc;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #999999;
  background-color: #f0f0f0;
}
.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(2.625rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(4.125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-control {
  border-color: #abd2f4;
  box-shadow: 0 0 0 0.2rem rgba(28, 67, 124, 0.25);
}
.custom-file-input:focus ~ .custom-file-control::before {
  border-color: #abd2f4;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.75rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
  color: #0ba1e2;
  background-color: #e6f1fc;
  border: 1px solid #e6f1fc;
  border-radius: 10px;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.75rem + 2px) - 1px * 2);
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
  color: #0ba1e2;
  content: "Browse";
  background-color: #f0f0f0;
  border-left: 1px solid #e6f1fc;
  border-radius: 0 10px 10px 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #0ba1e2;
  background-color: #e6f1fc;
  background-clip: padding-box;
  border: 1px solid #e6f1fc;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #0ba1e2;
  background-color: #e6f1fc;
  border-color: #abd2f4;
  outline: 0;
  box-shadow: 0 0 0 #1c437c;
}
.form-control::-moz-placeholder {
  color: #abd2f4;
  opacity: 1;
}
.form-control::placeholder {
  color: #abd2f4;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #f0f0f0;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.75rem + 2px);
}
select.form-control:focus::-ms-value {
  color: #0ba1e2;
  background-color: #e6f1fc;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.625rem + 1px);
  padding-bottom: calc(0.625rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  font-size: 1.75rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.input-group-lg > .input-group-append > .form-control-plaintext.btn {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.75rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 10px;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.625rem + 2px);
}

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.75rem 0.75rem;
  font-size: 1.75rem;
  line-height: 1.5;
  border-radius: 10px;
}

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(4.125rem + 2px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #999999;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #a7c438;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(167, 196, 56, 0.8);
  border-radius: 0.2rem;
}

.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #a7c438;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #a7c438;
  box-shadow: 0 0 0 5px rgba(167, 196, 56, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #a7c438;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #a7c438;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #d3e29a;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #b9d15e;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 5px rgba(167, 196, 56, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #a7c438;
}
.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 5px rgba(167, 196, 56, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: 0.2rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 5px rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 5px rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 5px rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 480px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.container {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs,
.col-xs-auto, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 30px;
  padding-left: 30px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 400px) {
  .col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xs-first {
    order: -1;
  }
  .order-xs-last {
    order: 13;
  }
  .order-xs-0 {
    order: 0;
  }
  .order-xs-1 {
    order: 1;
  }
  .order-xs-2 {
    order: 2;
  }
  .order-xs-3 {
    order: 3;
  }
  .order-xs-4 {
    order: 4;
  }
  .order-xs-5 {
    order: 5;
  }
  .order-xs-6 {
    order: 6;
  }
  .order-xs-7 {
    order: 7;
  }
  .order-xs-8 {
    order: 8;
  }
  .order-xs-9 {
    order: 9;
  }
  .order-xs-10 {
    order: 10;
  }
  .order-xs-11 {
    order: 11;
  }
  .order-xs-12 {
    order: 12;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xs-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xs-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xs-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xs-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 480px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 720px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 960px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1900px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #999999;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file:focus {
  z-index: 3;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.625rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0ba1e2;
  text-align: center;
  white-space: nowrap;
  background-color: #f0f0f0;
  border: 1px solid #e6f1fc;
  border-radius: 10px;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #999999;
}

.nav-tabs {
  border-bottom: 1px solid #e8e8e8;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #f0f0f0 #f0f0f0 #e8e8e8;
}
.nav-tabs .nav-link.disabled {
  color: #999999;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #1c437c;
  background-color: #fff;
  border-color: #e8e8e8 #e8e8e8 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1c437c;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Moderat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1c437c;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 2rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #1c437c;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #1c437c;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #999999;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --blue: #1c437c;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: rgb(255, 221, 0);
  --yellow: #f5e51e;
  --green: #a7c438;
  --teal: #20c997;
  --cyan: #1c437c;
  --white: #fff;
  --gray: #999999;
  --gray-dark: #333333;
  --primary: #1c437c;
  --secondary: #f0f0f0;
  --success: #a7c438;
  --info: #1c437c;
  --warning: #f5e51e;
  --danger: #dc3545;
  --light: #f7f7f7;
  --dark: #333333;
  --breakpoint-xxs: 0;
  --breakpoint-xs: 400px;
  --breakpoint-sm: 480px;
  --breakpoint-md: 720px;
  --breakpoint-lg: 960px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1900px;
  --font-family-sans-serif: "Moderat", Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.375rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.25rem;
}

h5, .h5 {
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.875rem;
}

.lead {
  font-size: 1.375rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #e8e8e8;
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #999999;
}
.blockquote-footer::before {
  content: "— ";
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #1c437c !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #132d52 !important;
}

.bg-secondary {
  background-color: #f0f0f0 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #d7d7d7 !important;
}

.bg-success {
  background-color: #a7c438 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #859c2d !important;
}

.bg-info {
  background-color: #1c437c !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #132d52 !important;
}

.bg-warning {
  background-color: #f5e51e !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d6c70a !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f7f7f7 !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dedede !important;
}

.bg-dark {
  background-color: #333333 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1a1a1a !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #e8e8e8 !important;
}

.border-top {
  border-top: 1px solid #e8e8e8 !important;
}

.border-right {
  border-right: 1px solid #e8e8e8 !important;
}

.border-bottom {
  border-bottom: 1px solid #e8e8e8 !important;
}

.border-left {
  border-left: 1px solid #e8e8e8 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #1c437c !important;
}

.border-secondary {
  border-color: #f0f0f0 !important;
}

.border-success {
  border-color: #a7c438 !important;
}

.border-info {
  border-color: #1c437c !important;
}

.border-warning {
  border-color: #f5e51e !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f7f7f7 !important;
}

.border-dark {
  border-color: #333333 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0 !important;
}

.rounded-top {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-right {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-left {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 400px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 480px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 720px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 960px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1900px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 400px) {
  .flex-xs-row {
    flex-direction: row !important;
  }
  .flex-xs-column {
    flex-direction: column !important;
  }
  .flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xs-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xs-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xs-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xs-start {
    justify-content: flex-start !important;
  }
  .justify-content-xs-end {
    justify-content: flex-end !important;
  }
  .justify-content-xs-center {
    justify-content: center !important;
  }
  .justify-content-xs-between {
    justify-content: space-between !important;
  }
  .justify-content-xs-around {
    justify-content: space-around !important;
  }
  .align-items-xs-start {
    align-items: flex-start !important;
  }
  .align-items-xs-end {
    align-items: flex-end !important;
  }
  .align-items-xs-center {
    align-items: center !important;
  }
  .align-items-xs-baseline {
    align-items: baseline !important;
  }
  .align-items-xs-stretch {
    align-items: stretch !important;
  }
  .align-content-xs-start {
    align-content: flex-start !important;
  }
  .align-content-xs-end {
    align-content: flex-end !important;
  }
  .align-content-xs-center {
    align-content: center !important;
  }
  .align-content-xs-between {
    align-content: space-between !important;
  }
  .align-content-xs-around {
    align-content: space-around !important;
  }
  .align-content-xs-stretch {
    align-content: stretch !important;
  }
  .align-self-xs-auto {
    align-self: auto !important;
  }
  .align-self-xs-start {
    align-self: flex-start !important;
  }
  .align-self-xs-end {
    align-self: flex-end !important;
  }
  .align-self-xs-center {
    align-self: center !important;
  }
  .align-self-xs-baseline {
    align-self: baseline !important;
  }
  .align-self-xs-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 480px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 720px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 960px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1900px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 400px) {
  .float-xs-left {
    float: left !important;
  }
  .float-xs-right {
    float: right !important;
  }
  .float-xs-none {
    float: none !important;
  }
}
@media (min-width: 480px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 720px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 960px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1900px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 2rem !important;
}

.mt-5,
.my-5 {
  margin-top: 2rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 2rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 2rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 2rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.mt-6,
.my-6 {
  margin-top: 3rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 3rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 3rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 3rem !important;
}

.m-7 {
  margin: 4rem !important;
}

.mt-7,
.my-7 {
  margin-top: 4rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 4rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 4rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 4rem !important;
}

.m-8 {
  margin: 5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 5rem !important;
}

.m-9 {
  margin: 6rem !important;
}

.mt-9,
.my-9 {
  margin-top: 6rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 6rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 6rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 6rem !important;
}

.m-10 {
  margin: 7rem !important;
}

.mt-10,
.my-10 {
  margin-top: 7rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 7rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 7rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 7rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 2rem !important;
}

.pt-5,
.py-5 {
  padding-top: 2rem !important;
}

.pr-5,
.px-5 {
  padding-right: 2rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 2rem !important;
}

.pl-5,
.px-5 {
  padding-left: 2rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6,
.py-6 {
  padding-top: 3rem !important;
}

.pr-6,
.px-6 {
  padding-right: 3rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 3rem !important;
}

.pl-6,
.px-6 {
  padding-left: 3rem !important;
}

.p-7 {
  padding: 4rem !important;
}

.pt-7,
.py-7 {
  padding-top: 4rem !important;
}

.pr-7,
.px-7 {
  padding-right: 4rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 4rem !important;
}

.pl-7,
.px-7 {
  padding-left: 4rem !important;
}

.p-8 {
  padding: 5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 5rem !important;
}

.pr-8,
.px-8 {
  padding-right: 5rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 5rem !important;
}

.pl-8,
.px-8 {
  padding-left: 5rem !important;
}

.p-9 {
  padding: 6rem !important;
}

.pt-9,
.py-9 {
  padding-top: 6rem !important;
}

.pr-9,
.px-9 {
  padding-right: 6rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 6rem !important;
}

.pl-9,
.px-9 {
  padding-left: 6rem !important;
}

.p-10 {
  padding: 7rem !important;
}

.pt-10,
.py-10 {
  padding-top: 7rem !important;
}

.pr-10,
.px-10 {
  padding-right: 7rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 7rem !important;
}

.pl-10,
.px-10 {
  padding-left: 7rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 400px) {
  .m-xs-0 {
    margin: 0 !important;
  }
  .mt-xs-0,
  .my-xs-0 {
    margin-top: 0 !important;
  }
  .mr-xs-0,
  .mx-xs-0 {
    margin-right: 0 !important;
  }
  .mb-xs-0,
  .my-xs-0 {
    margin-bottom: 0 !important;
  }
  .ml-xs-0,
  .mx-xs-0 {
    margin-left: 0 !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .mt-xs-1,
  .my-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xs-1,
  .mx-xs-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xs-1,
  .my-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xs-1,
  .mx-xs-1 {
    margin-left: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .mt-xs-2,
  .my-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xs-2,
  .mx-xs-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xs-2,
  .my-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xs-2,
  .mx-xs-2 {
    margin-left: 0.5rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .mt-xs-3,
  .my-xs-3 {
    margin-top: 1rem !important;
  }
  .mr-xs-3,
  .mx-xs-3 {
    margin-right: 1rem !important;
  }
  .mb-xs-3,
  .my-xs-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xs-3,
  .mx-xs-3 {
    margin-left: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .mt-xs-4,
  .my-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xs-4,
  .mx-xs-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xs-4,
  .my-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xs-4,
  .mx-xs-4 {
    margin-left: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 2rem !important;
  }
  .mt-xs-5,
  .my-xs-5 {
    margin-top: 2rem !important;
  }
  .mr-xs-5,
  .mx-xs-5 {
    margin-right: 2rem !important;
  }
  .mb-xs-5,
  .my-xs-5 {
    margin-bottom: 2rem !important;
  }
  .ml-xs-5,
  .mx-xs-5 {
    margin-left: 2rem !important;
  }
  .m-xs-6 {
    margin: 3rem !important;
  }
  .mt-xs-6,
  .my-xs-6 {
    margin-top: 3rem !important;
  }
  .mr-xs-6,
  .mx-xs-6 {
    margin-right: 3rem !important;
  }
  .mb-xs-6,
  .my-xs-6 {
    margin-bottom: 3rem !important;
  }
  .ml-xs-6,
  .mx-xs-6 {
    margin-left: 3rem !important;
  }
  .m-xs-7 {
    margin: 4rem !important;
  }
  .mt-xs-7,
  .my-xs-7 {
    margin-top: 4rem !important;
  }
  .mr-xs-7,
  .mx-xs-7 {
    margin-right: 4rem !important;
  }
  .mb-xs-7,
  .my-xs-7 {
    margin-bottom: 4rem !important;
  }
  .ml-xs-7,
  .mx-xs-7 {
    margin-left: 4rem !important;
  }
  .m-xs-8 {
    margin: 5rem !important;
  }
  .mt-xs-8,
  .my-xs-8 {
    margin-top: 5rem !important;
  }
  .mr-xs-8,
  .mx-xs-8 {
    margin-right: 5rem !important;
  }
  .mb-xs-8,
  .my-xs-8 {
    margin-bottom: 5rem !important;
  }
  .ml-xs-8,
  .mx-xs-8 {
    margin-left: 5rem !important;
  }
  .m-xs-9 {
    margin: 6rem !important;
  }
  .mt-xs-9,
  .my-xs-9 {
    margin-top: 6rem !important;
  }
  .mr-xs-9,
  .mx-xs-9 {
    margin-right: 6rem !important;
  }
  .mb-xs-9,
  .my-xs-9 {
    margin-bottom: 6rem !important;
  }
  .ml-xs-9,
  .mx-xs-9 {
    margin-left: 6rem !important;
  }
  .m-xs-10 {
    margin: 7rem !important;
  }
  .mt-xs-10,
  .my-xs-10 {
    margin-top: 7rem !important;
  }
  .mr-xs-10,
  .mx-xs-10 {
    margin-right: 7rem !important;
  }
  .mb-xs-10,
  .my-xs-10 {
    margin-bottom: 7rem !important;
  }
  .ml-xs-10,
  .mx-xs-10 {
    margin-left: 7rem !important;
  }
  .p-xs-0 {
    padding: 0 !important;
  }
  .pt-xs-0,
  .py-xs-0 {
    padding-top: 0 !important;
  }
  .pr-xs-0,
  .px-xs-0 {
    padding-right: 0 !important;
  }
  .pb-xs-0,
  .py-xs-0 {
    padding-bottom: 0 !important;
  }
  .pl-xs-0,
  .px-xs-0 {
    padding-left: 0 !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .pt-xs-1,
  .py-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xs-1,
  .px-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xs-1,
  .py-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xs-1,
  .px-xs-1 {
    padding-left: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .pt-xs-2,
  .py-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xs-2,
  .px-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xs-2,
  .py-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xs-2,
  .px-xs-2 {
    padding-left: 0.5rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .pt-xs-3,
  .py-xs-3 {
    padding-top: 1rem !important;
  }
  .pr-xs-3,
  .px-xs-3 {
    padding-right: 1rem !important;
  }
  .pb-xs-3,
  .py-xs-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xs-3,
  .px-xs-3 {
    padding-left: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .pt-xs-4,
  .py-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xs-4,
  .px-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xs-4,
  .py-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xs-4,
  .px-xs-4 {
    padding-left: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 2rem !important;
  }
  .pt-xs-5,
  .py-xs-5 {
    padding-top: 2rem !important;
  }
  .pr-xs-5,
  .px-xs-5 {
    padding-right: 2rem !important;
  }
  .pb-xs-5,
  .py-xs-5 {
    padding-bottom: 2rem !important;
  }
  .pl-xs-5,
  .px-xs-5 {
    padding-left: 2rem !important;
  }
  .p-xs-6 {
    padding: 3rem !important;
  }
  .pt-xs-6,
  .py-xs-6 {
    padding-top: 3rem !important;
  }
  .pr-xs-6,
  .px-xs-6 {
    padding-right: 3rem !important;
  }
  .pb-xs-6,
  .py-xs-6 {
    padding-bottom: 3rem !important;
  }
  .pl-xs-6,
  .px-xs-6 {
    padding-left: 3rem !important;
  }
  .p-xs-7 {
    padding: 4rem !important;
  }
  .pt-xs-7,
  .py-xs-7 {
    padding-top: 4rem !important;
  }
  .pr-xs-7,
  .px-xs-7 {
    padding-right: 4rem !important;
  }
  .pb-xs-7,
  .py-xs-7 {
    padding-bottom: 4rem !important;
  }
  .pl-xs-7,
  .px-xs-7 {
    padding-left: 4rem !important;
  }
  .p-xs-8 {
    padding: 5rem !important;
  }
  .pt-xs-8,
  .py-xs-8 {
    padding-top: 5rem !important;
  }
  .pr-xs-8,
  .px-xs-8 {
    padding-right: 5rem !important;
  }
  .pb-xs-8,
  .py-xs-8 {
    padding-bottom: 5rem !important;
  }
  .pl-xs-8,
  .px-xs-8 {
    padding-left: 5rem !important;
  }
  .p-xs-9 {
    padding: 6rem !important;
  }
  .pt-xs-9,
  .py-xs-9 {
    padding-top: 6rem !important;
  }
  .pr-xs-9,
  .px-xs-9 {
    padding-right: 6rem !important;
  }
  .pb-xs-9,
  .py-xs-9 {
    padding-bottom: 6rem !important;
  }
  .pl-xs-9,
  .px-xs-9 {
    padding-left: 6rem !important;
  }
  .p-xs-10 {
    padding: 7rem !important;
  }
  .pt-xs-10,
  .py-xs-10 {
    padding-top: 7rem !important;
  }
  .pr-xs-10,
  .px-xs-10 {
    padding-right: 7rem !important;
  }
  .pb-xs-10,
  .py-xs-10 {
    padding-bottom: 7rem !important;
  }
  .pl-xs-10,
  .px-xs-10 {
    padding-left: 7rem !important;
  }
  .m-xs-auto {
    margin: auto !important;
  }
  .mt-xs-auto,
  .my-xs-auto {
    margin-top: auto !important;
  }
  .mr-xs-auto,
  .mx-xs-auto {
    margin-right: auto !important;
  }
  .mb-xs-auto,
  .my-xs-auto {
    margin-bottom: auto !important;
  }
  .ml-xs-auto,
  .mx-xs-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 480px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 2rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 2rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 2rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 2rem !important;
  }
  .m-sm-6 {
    margin: 3rem !important;
  }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 3rem !important;
  }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 3rem !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 3rem !important;
  }
  .m-sm-7 {
    margin: 4rem !important;
  }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 4rem !important;
  }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 4rem !important;
  }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 4rem !important;
  }
  .m-sm-8 {
    margin: 5rem !important;
  }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 5rem !important;
  }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 5rem !important;
  }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 5rem !important;
  }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 5rem !important;
  }
  .m-sm-9 {
    margin: 6rem !important;
  }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 6rem !important;
  }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 6rem !important;
  }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 6rem !important;
  }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 6rem !important;
  }
  .m-sm-10 {
    margin: 7rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 7rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 7rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 7rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 7rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 2rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 2rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 2rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 2rem !important;
  }
  .p-sm-6 {
    padding: 3rem !important;
  }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 3rem !important;
  }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 3rem !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 3rem !important;
  }
  .p-sm-7 {
    padding: 4rem !important;
  }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 4rem !important;
  }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 4rem !important;
  }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 4rem !important;
  }
  .p-sm-8 {
    padding: 5rem !important;
  }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 5rem !important;
  }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 5rem !important;
  }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 5rem !important;
  }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 5rem !important;
  }
  .p-sm-9 {
    padding: 6rem !important;
  }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 6rem !important;
  }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 6rem !important;
  }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 6rem !important;
  }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 6rem !important;
  }
  .p-sm-10 {
    padding: 7rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 7rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 7rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 7rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 7rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 720px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 2rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 2rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 2rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 2rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 2rem !important;
  }
  .m-md-6 {
    margin: 3rem !important;
  }
  .mt-md-6,
  .my-md-6 {
    margin-top: 3rem !important;
  }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 3rem !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 3rem !important;
  }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 3rem !important;
  }
  .m-md-7 {
    margin: 4rem !important;
  }
  .mt-md-7,
  .my-md-7 {
    margin-top: 4rem !important;
  }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 4rem !important;
  }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 4rem !important;
  }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 4rem !important;
  }
  .m-md-8 {
    margin: 5rem !important;
  }
  .mt-md-8,
  .my-md-8 {
    margin-top: 5rem !important;
  }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 5rem !important;
  }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 5rem !important;
  }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 5rem !important;
  }
  .m-md-9 {
    margin: 6rem !important;
  }
  .mt-md-9,
  .my-md-9 {
    margin-top: 6rem !important;
  }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 6rem !important;
  }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 6rem !important;
  }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 6rem !important;
  }
  .m-md-10 {
    margin: 7rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 7rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 7rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 7rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 7rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 2rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 2rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 2rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 2rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 2rem !important;
  }
  .p-md-6 {
    padding: 3rem !important;
  }
  .pt-md-6,
  .py-md-6 {
    padding-top: 3rem !important;
  }
  .pr-md-6,
  .px-md-6 {
    padding-right: 3rem !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 3rem !important;
  }
  .pl-md-6,
  .px-md-6 {
    padding-left: 3rem !important;
  }
  .p-md-7 {
    padding: 4rem !important;
  }
  .pt-md-7,
  .py-md-7 {
    padding-top: 4rem !important;
  }
  .pr-md-7,
  .px-md-7 {
    padding-right: 4rem !important;
  }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 4rem !important;
  }
  .pl-md-7,
  .px-md-7 {
    padding-left: 4rem !important;
  }
  .p-md-8 {
    padding: 5rem !important;
  }
  .pt-md-8,
  .py-md-8 {
    padding-top: 5rem !important;
  }
  .pr-md-8,
  .px-md-8 {
    padding-right: 5rem !important;
  }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 5rem !important;
  }
  .pl-md-8,
  .px-md-8 {
    padding-left: 5rem !important;
  }
  .p-md-9 {
    padding: 6rem !important;
  }
  .pt-md-9,
  .py-md-9 {
    padding-top: 6rem !important;
  }
  .pr-md-9,
  .px-md-9 {
    padding-right: 6rem !important;
  }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 6rem !important;
  }
  .pl-md-9,
  .px-md-9 {
    padding-left: 6rem !important;
  }
  .p-md-10 {
    padding: 7rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 7rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 7rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 7rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 7rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 960px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 2rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 2rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 2rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 2rem !important;
  }
  .m-lg-6 {
    margin: 3rem !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 3rem !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 3rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 3rem !important;
  }
  .m-lg-7 {
    margin: 4rem !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 4rem !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 4rem !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 4rem !important;
  }
  .m-lg-8 {
    margin: 5rem !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 5rem !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 5rem !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 5rem !important;
  }
  .m-lg-9 {
    margin: 6rem !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 6rem !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 6rem !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 6rem !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 6rem !important;
  }
  .m-lg-10 {
    margin: 7rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 7rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 7rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 7rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 7rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 2rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 2rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 2rem !important;
  }
  .p-lg-6 {
    padding: 3rem !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 3rem !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 3rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 3rem !important;
  }
  .p-lg-7 {
    padding: 4rem !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 4rem !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 4rem !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 4rem !important;
  }
  .p-lg-8 {
    padding: 5rem !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 5rem !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 5rem !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 5rem !important;
  }
  .p-lg-9 {
    padding: 6rem !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 6rem !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 6rem !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 6rem !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 6rem !important;
  }
  .p-lg-10 {
    padding: 7rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 7rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 7rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 7rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 7rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 2rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 2rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 2rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 2rem !important;
  }
  .m-xl-6 {
    margin: 3rem !important;
  }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 3rem !important;
  }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 3rem !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 3rem !important;
  }
  .m-xl-7 {
    margin: 4rem !important;
  }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 4rem !important;
  }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 4rem !important;
  }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 4rem !important;
  }
  .m-xl-8 {
    margin: 5rem !important;
  }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 5rem !important;
  }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 5rem !important;
  }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 5rem !important;
  }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 5rem !important;
  }
  .m-xl-9 {
    margin: 6rem !important;
  }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 6rem !important;
  }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 6rem !important;
  }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 6rem !important;
  }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 6rem !important;
  }
  .m-xl-10 {
    margin: 7rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 7rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 7rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 7rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 7rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 2rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 2rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 2rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 2rem !important;
  }
  .p-xl-6 {
    padding: 3rem !important;
  }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 3rem !important;
  }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 3rem !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 3rem !important;
  }
  .p-xl-7 {
    padding: 4rem !important;
  }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 4rem !important;
  }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 4rem !important;
  }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 4rem !important;
  }
  .p-xl-8 {
    padding: 5rem !important;
  }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 5rem !important;
  }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 5rem !important;
  }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 5rem !important;
  }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 5rem !important;
  }
  .p-xl-9 {
    padding: 6rem !important;
  }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 6rem !important;
  }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 6rem !important;
  }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 6rem !important;
  }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 6rem !important;
  }
  .p-xl-10 {
    padding: 7rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 7rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 7rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 7rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 7rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1900px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 2rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 2rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 2rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 2rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 2rem !important;
  }
  .m-xxl-6 {
    margin: 3rem !important;
  }
  .mt-xxl-6,
  .my-xxl-6 {
    margin-top: 3rem !important;
  }
  .mr-xxl-6,
  .mx-xxl-6 {
    margin-right: 3rem !important;
  }
  .mb-xxl-6,
  .my-xxl-6 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-6,
  .mx-xxl-6 {
    margin-left: 3rem !important;
  }
  .m-xxl-7 {
    margin: 4rem !important;
  }
  .mt-xxl-7,
  .my-xxl-7 {
    margin-top: 4rem !important;
  }
  .mr-xxl-7,
  .mx-xxl-7 {
    margin-right: 4rem !important;
  }
  .mb-xxl-7,
  .my-xxl-7 {
    margin-bottom: 4rem !important;
  }
  .ml-xxl-7,
  .mx-xxl-7 {
    margin-left: 4rem !important;
  }
  .m-xxl-8 {
    margin: 5rem !important;
  }
  .mt-xxl-8,
  .my-xxl-8 {
    margin-top: 5rem !important;
  }
  .mr-xxl-8,
  .mx-xxl-8 {
    margin-right: 5rem !important;
  }
  .mb-xxl-8,
  .my-xxl-8 {
    margin-bottom: 5rem !important;
  }
  .ml-xxl-8,
  .mx-xxl-8 {
    margin-left: 5rem !important;
  }
  .m-xxl-9 {
    margin: 6rem !important;
  }
  .mt-xxl-9,
  .my-xxl-9 {
    margin-top: 6rem !important;
  }
  .mr-xxl-9,
  .mx-xxl-9 {
    margin-right: 6rem !important;
  }
  .mb-xxl-9,
  .my-xxl-9 {
    margin-bottom: 6rem !important;
  }
  .ml-xxl-9,
  .mx-xxl-9 {
    margin-left: 6rem !important;
  }
  .m-xxl-10 {
    margin: 7rem !important;
  }
  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 7rem !important;
  }
  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 7rem !important;
  }
  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 7rem !important;
  }
  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 7rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 2rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 2rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 2rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 2rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 2rem !important;
  }
  .p-xxl-6 {
    padding: 3rem !important;
  }
  .pt-xxl-6,
  .py-xxl-6 {
    padding-top: 3rem !important;
  }
  .pr-xxl-6,
  .px-xxl-6 {
    padding-right: 3rem !important;
  }
  .pb-xxl-6,
  .py-xxl-6 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-6,
  .px-xxl-6 {
    padding-left: 3rem !important;
  }
  .p-xxl-7 {
    padding: 4rem !important;
  }
  .pt-xxl-7,
  .py-xxl-7 {
    padding-top: 4rem !important;
  }
  .pr-xxl-7,
  .px-xxl-7 {
    padding-right: 4rem !important;
  }
  .pb-xxl-7,
  .py-xxl-7 {
    padding-bottom: 4rem !important;
  }
  .pl-xxl-7,
  .px-xxl-7 {
    padding-left: 4rem !important;
  }
  .p-xxl-8 {
    padding: 5rem !important;
  }
  .pt-xxl-8,
  .py-xxl-8 {
    padding-top: 5rem !important;
  }
  .pr-xxl-8,
  .px-xxl-8 {
    padding-right: 5rem !important;
  }
  .pb-xxl-8,
  .py-xxl-8 {
    padding-bottom: 5rem !important;
  }
  .pl-xxl-8,
  .px-xxl-8 {
    padding-left: 5rem !important;
  }
  .p-xxl-9 {
    padding: 6rem !important;
  }
  .pt-xxl-9,
  .py-xxl-9 {
    padding-top: 6rem !important;
  }
  .pr-xxl-9,
  .px-xxl-9 {
    padding-right: 6rem !important;
  }
  .pb-xxl-9,
  .py-xxl-9 {
    padding-bottom: 6rem !important;
  }
  .pl-xxl-9,
  .px-xxl-9 {
    padding-left: 6rem !important;
  }
  .p-xxl-10 {
    padding: 7rem !important;
  }
  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 7rem !important;
  }
  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 7rem !important;
  }
  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 7rem !important;
  }
  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 7rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 400px) {
  .text-xs-left {
    text-align: left !important;
  }
  .text-xs-right {
    text-align: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
}
@media (min-width: 480px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 720px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 960px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1900px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #1c437c !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #132d52 !important;
}

.text-secondary {
  color: #f0f0f0 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #d7d7d7 !important;
}

.text-success {
  color: #a7c438 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #859c2d !important;
}

.text-info {
  color: #1c437c !important;
}

a.text-info:hover, a.text-info:focus {
  color: #132d52 !important;
}

.text-warning {
  color: #f5e51e !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d6c70a !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f7f7f7 !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dedede !important;
}

.text-dark {
  color: #333333 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1a1a1a !important;
}

.text-muted {
  color: #999999 !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: image-url("fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: image-url("fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent image-url("blank.gif"); /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: image-url("fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent; /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: image-url("fancybox_sprite@2x.png");
    background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: image-url("fancybox_loading@2x.gif");
    background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
  }
}
.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  width: 200px;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display: none;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect .no-match {
  display: none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  box-sizing: border-box;
  border-radius: 5px;
}

.SumoSelect.open > .search > span, .SumoSelect.open > .search > label {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass, .SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect > .optWrapper > .options li.opt label, .SumoSelect > .CaptionCont, .SumoSelect .select-all > label {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none;
}

.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
  box-shadow: 0 0 2px #7799D0;
  border-color: #7799D0;
}

.SumoSelect > .CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0;
}

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic;
}

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect > .CaptionCont > label > i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=");
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect > .optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden;
}

.SumoSelect.open > .optWrapper {
  top: 35px;
  display: block;
}

.SumoSelect.open > .optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect > .optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect > .optWrapper > .options {
  border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/
}

.SumoSelect > .optWrapper.okCancelInMulti > .options {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options {
  border-radius: 0 0 2px 2px;
}

.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.group.disabled > label {
  opacity: 0.5;
}

.SumoSelect > .optWrapper > .options li ul li.opt {
  padding-left: 22px;
}

.SumoSelect > .optWrapper.multiple > .options li ul li.opt {
  padding-left: 50px;
}

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 6px 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options > li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect > .optWrapper > .options li.opt.sel, .SumoSelect .select-all.sel {
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper > .options li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.SumoSelect > .optWrapper > .options li span {
  display: none;
}

.SumoSelect > .optWrapper > .options li.group > label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect > .optWrapper > .options li.opt.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 5-7 */
  filter: alpha(opacity=50); /* Netscape */
  -moz-opacity: 0.5; /* Safari 1.x */
  -khtml-opacity: 0.5; /* Good browsers */
  opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span,
.SumoSelect .select-all > span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px;
}

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0 0 3px 0;
}

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
  padding-left: 35px;
}

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
  background-color: rgb(17, 169, 17);
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all > label, .SumoSelect .select-all > span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial > span i {
  background-color: #ccc;
}

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}

.reset-all {
  padding: 5px 10px 5px 35px;
  border-bottom: 1px solid #CDCDCD;
}

.SumoSelect[is-selected=false] .reset-all {
  opacity: 0.5;
  pointer-events: none;
}

.SumoSelect[is-selected=true] .reset-all {
  opacity: 1;
  cursor: pointer;
  color: #7799D0;
}

.SumoSelect[is-selected=true] .reset-all * {
  cursor: pointer;
}

.SumoSelect[is-selected=true] .reset-all:hover {
  color: black;
}

/*
Usage:


.foo {
	@include placeholder {
		color: green;
	}
}

@include placeholder {
	color: red;
}
*/
[class^=aspect-ratio--],
.aspect-ratio--3x2,
.aspect-ratio--2x3,
.aspect-ratio--3x4,
.aspect-ratio--4x3,
.aspect-ratio--16x9,
.aspect-ratio--1x2,
.aspect-ratio--2x1,
.aspect-ratio--1x1 {
  position: relative;
}
[class^=aspect-ratio--]:before,
.aspect-ratio--3x2:before,
.aspect-ratio--2x3:before,
.aspect-ratio--3x4:before,
.aspect-ratio--4x3:before,
.aspect-ratio--16x9:before,
.aspect-ratio--1x2:before,
.aspect-ratio--2x1:before,
.aspect-ratio--1x1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
  /* background: rgba(255,255,0,.7); */
}
[class^=aspect-ratio--] > .aspect-ratio__item, [class^=aspect-ratio--] > object, [class^=aspect-ratio--] > video,
.aspect-ratio--3x2 > .aspect-ratio__item,
.aspect-ratio--3x2 > object,
.aspect-ratio--3x2 > video,
.aspect-ratio--2x3 > .aspect-ratio__item,
.aspect-ratio--2x3 > object,
.aspect-ratio--2x3 > video,
.aspect-ratio--3x4 > .aspect-ratio__item,
.aspect-ratio--3x4 > object,
.aspect-ratio--3x4 > video,
.aspect-ratio--4x3 > .aspect-ratio__item,
.aspect-ratio--4x3 > object,
.aspect-ratio--4x3 > video,
.aspect-ratio--16x9 > .aspect-ratio__item,
.aspect-ratio--16x9 > object,
.aspect-ratio--16x9 > video,
.aspect-ratio--1x2 > .aspect-ratio__item,
.aspect-ratio--1x2 > object,
.aspect-ratio--1x2 > video,
.aspect-ratio--2x1 > .aspect-ratio__item,
.aspect-ratio--2x1 > object,
.aspect-ratio--2x1 > video,
.aspect-ratio--1x1 > .aspect-ratio__item,
.aspect-ratio--1x1 > object,
.aspect-ratio--1x1 > video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.aspect-ratio--3x2:before {
  padding-top: 66.6666666667%;
}

.aspect-ratio--2x3:before {
  padding-top: 150%;
}

.aspect-ratio--3x4:before {
  padding-top: 133.3333333333%;
}

.aspect-ratio--4x3:before {
  padding-top: 75%;
}

.aspect-ratio--16x9:before {
  padding-top: 56.25%;
}

.aspect-ratio--1x2:before {
  padding-top: 200%;
}

.aspect-ratio--2x1:before {
  padding-top: 50%;
}

.aspect-ratio--1x1:before {
  padding-top: 100%;
}

.embed-responsive-3by2 {
  padding-bottom: 66.666666%;
}

.embed-responsive-2by3 {
  padding-bottom: 66.666666%;
}

.embed-responsive-4by3 {
  padding-bottom: 66.666666%;
}

.embed-responsive-3by4 {
  padding-bottom: 66.666666%;
}

.embed-responsive-2by1 {
  padding-bottom: 50%;
}

.embed-responsive-1by2 {
  padding-bottom: 100%;
}

@font-face {
  font-family: "Moderat";
  src: url("/assets/fonts/Moderat/Moderat-Light.eot?#iefix");
  src: url("/assets/fonts/Moderat/Moderat-Light.eot?#iefix") format("eot"), url("/assets/fonts/Moderat/Moderat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Moderat";
  src: url("/assets/fonts/Moderat/Moderat-Regular.eot?#iefix");
  src: url("/assets/fonts/Moderat/Moderat-Regular.eot?#iefix") format("eot"), url("/assets/fonts/Moderat/Moderat-Regular.woff2") format("woff2"), url("/assets/fonts/Moderat/Moderat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Moderat";
  src: url("/assets/fonts/Moderat/Moderat-Bold.eot?#iefix");
  src: url("/assets/fonts/Moderat/Moderat-Bold.eot?#iefix") format("eot"), url("/assets/fonts/Moderat/Moderat-Bold.woff2") format("woff2"), url("/assets/fonts/Moderat/Moderat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "iconfont";
  src: url("../iconfont/iconfont.woff2") format("woff2"), url("../iconfont/iconfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before,
[data-icon-before]::before {
  content: attr(data-icon-before);
}

[data-icon-after]::after {
  content: attr(data-icon-after);
}

.icon-akkordion-oeffnen::before,
.icon-arrow-button-next::before,
.projecthero__fact-item ul li::before,
.icon-arrow-button-prev::before,
.icon-arrow-dropdown::before,
.top-scroll__fixed::before,
.SumoSelect > .CaptionCont label::before,
.icon-blockquote_end::before,
.icon-blockquote_start::before,
.icon-close::before,
.navigation-mobile .slide-nav-root .slide-nav-label-close::before,
.navigation-mobile .slide-nav-label-close::before,
.fancybox-close::before,
.accordion .accordion__button::before,
.icon-delete::before,
.multiple__delete::before,
.icon-facebook-circle::before,
.share__link.share__link--facebook::before,
.icon-facebook::before,
.icon-fehler::before,
.notice.notice--error .notice__icon::before,
.notice.notice--info .notice__icon::before,
.icon-first::before,
.pagination__list > li.pagination__first > a::before,
.pagination__list > li.pagination__first > span::before,
.icon-icon__gruenden::before,
.second-level__item.second-level__item--gruenden::before,
.icon-icon__managen::before,
.second-level__item.second-level__item--managen::before,
.icon-icon__vernetzen::before,
.second-level__item.second-level__item--vernetzen::before,
.icon-info::before,
.icon-instagram::before,
.share__link.share__link--instagram::before,
.icon-last::before,
.pagination__list > li.pagination__last > a::before,
.pagination__list > li.pagination__last > span::before,
.icon-link_download::before,
a.icon-link--download::before,
.icon-link_extern::before,
a.icon-link--extern::before,
.icon-link_intern::before,
.pagination__list > li.pagination__next > a::before,
.pagination__list > li.pagination__next > span::before,
.navigation-mobile .slide-nav-label-back::before,
.navigation-mobile .slide-nav-label-sub::before,
.second-level__item > a::before,
.second-level__item > span::before,
.stage__arrow.stage__arrow--prev::before,
.stage__arrow.stage__arrow--next::before,
.carousel__arrow.carousel__arrow--prev::before,
.carousel__arrow.carousel__arrow--next::before,
.breadcrumb ol li::before,
a.icon-link--intern::before,
.icon-link_mail::before,
a.icon-link--mail::before,
.icon-link_read-more::before,
.highlight__read-more i::before,
.read-more i::before,
.teaser__read-more i::before,
.icon-link-back::before,
.pagination__list > li.pagination__previous > a::before,
.pagination__list > li.pagination__previous > span::before,
.icon-mail-small::before,
.share__link.share__link--email::before,
.icon-mail::before,
.notice.notice--mail .notice__icon::before,
.icon-menu::before,
.slide-nav-trigger::before,
.icon-message-shop-bestellt::before,
.icon-meta-login::before,
.icon-meta-suche::before,
.icon-lightbox::before,
.SumoSelect.open .search::before,
.icon-newsletter::before,
.icon-phone::before,
a.icon-link--phone::before,
.icon-pin::before,
.address__item::before,
.icon-plus::before,
.icon-print::before,
.share__link.share__link--print::before,
.icon-reload::before,
.filter .filter__reset::before,
.icon-schwere-sprache::before,
.icon-search::before,
.navigation-meta__item.navigation-meta__item--search > a::before,
.navigation-meta__item.navigation-meta__item--search > span::before,
.icon-shop-delete::before,
.icon-siegel::before,
.icon-slider-arrow__next::before,
.fancybox-nav.fancybox-next::before,
.icon-slider-arrow__prev::before,
.fancybox-nav.fancybox-prev::before,
.icon-tickbox::before,
.notice.notice--success .notice__icon::before,
.radio input[type=checkbox]:checked + label::before,
.checkbox input[type=checkbox]:checked + label::before,
.form-check input[type=checkbox]:checked + label::before,
.icon-twitter-circle::before,
.share__link.share__link--twitter::before,
.icon-twitter::before,
.icon-upload::before,
.icon-warenkorb::before,
.icon-youtube::before,
[class^=icon-]::before,
[class*=" icon-"]::before {
  display: inline-block;
  line-height: 1;
  font-family: "iconfont" !important;
  font-weight: normal !important;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-akkordion-oeffnen::before {
  content: "\f101";
}

.icon-arrow-button-next::before, .projecthero__fact-item ul li::before {
  content: "\f102";
}

.icon-arrow-button-prev::before {
  content: "\f103";
}

.icon-arrow-dropdown::before, .top-scroll__fixed::before, .SumoSelect > .CaptionCont label::before {
  content: "\f104";
}

.icon-blockquote_end::before {
  content: "\f105";
}

.icon-blockquote_start::before {
  content: "\f106";
}

.icon-close::before, .navigation-mobile .slide-nav-root .slide-nav-label-close::before, .navigation-mobile .slide-nav-label-close::before, .fancybox-close::before, .accordion .accordion__button::before {
  content: "\f107";
}

.icon-delete::before, .multiple__delete::before {
  content: "\f108";
}

.icon-facebook-circle::before, .share__link.share__link--facebook::before {
  content: "\f109";
}

.icon-facebook::before {
  content: "\f10a";
}

.icon-fehler::before, .notice.notice--error .notice__icon::before, .notice.notice--info .notice__icon::before {
  content: "\f10b";
}

.icon-first::before, .pagination__list > li.pagination__first > a::before,
.pagination__list > li.pagination__first > span::before {
  content: "\f10c";
}

.icon-icon__gruenden::before, .second-level__item.second-level__item--gruenden::before {
  content: "\f10d";
}

.icon-icon__managen::before, .second-level__item.second-level__item--managen::before {
  content: "\f10e";
}

.icon-icon__vernetzen::before, .second-level__item.second-level__item--vernetzen::before {
  content: "\f10f";
}

.icon-info::before {
  content: "\f110";
}

.icon-instagram::before, .share__link.share__link--instagram::before {
  content: "\f111";
}

.icon-last::before, .pagination__list > li.pagination__last > a::before,
.pagination__list > li.pagination__last > span::before {
  content: "\f112";
}

.icon-link_download::before, a.icon-link--download::before {
  content: "\f113";
}

.icon-link_extern::before, a.icon-link--extern::before {
  content: "\f114";
}

.icon-link_intern::before, .pagination__list > li.pagination__next > a::before,
.pagination__list > li.pagination__next > span::before, .navigation-mobile .slide-nav-label-back::before, .navigation-mobile .slide-nav-label-sub::before, .second-level__item > a::before,
.second-level__item > span::before, .stage__arrow.stage__arrow--prev::before, .stage__arrow.stage__arrow--next::before, .carousel__arrow.carousel__arrow--prev::before, .carousel__arrow.carousel__arrow--next::before, .breadcrumb ol li::before, a.icon-link--intern::before {
  content: "\f115";
}

.icon-link_mail::before, a.icon-link--mail::before {
  content: "\f116";
}

.icon-link_read-more::before, .highlight__read-more i::before, .read-more i::before,
.teaser__read-more i::before {
  content: "\f117";
}

.icon-link-back::before, .pagination__list > li.pagination__previous > a::before,
.pagination__list > li.pagination__previous > span::before {
  content: "\f118";
}

.icon-mail-small::before, .share__link.share__link--email::before {
  content: "\f119";
}

.icon-mail::before, .notice.notice--mail .notice__icon::before {
  content: "\f11a";
}

.icon-menu::before, .slide-nav-trigger::before {
  content: "\f11b";
}

.icon-message-shop-bestellt::before {
  content: "\f11c";
}

.icon-meta-login::before {
  content: "\f11d";
}

.icon-meta-suche::before, .icon-lightbox::before, .SumoSelect.open .search::before {
  content: "\f11e";
}

.icon-newsletter::before {
  content: "\f11f";
}

.icon-phone::before, a.icon-link--phone::before {
  content: "\f120";
}

.icon-pin::before, .address__item::before {
  content: "\f121";
}

.icon-plus::before {
  content: "\f122";
}

.icon-print::before, .share__link.share__link--print::before {
  content: "\f123";
}

.icon-reload::before, .filter .filter__reset::before {
  content: "\f124";
}

.icon-schwere-sprache::before {
  content: "\f125";
}

.icon-search::before, .navigation-meta__item.navigation-meta__item--search > a::before,
.navigation-meta__item.navigation-meta__item--search > span::before {
  content: "\f126";
}

.icon-shop-delete::before {
  content: "\f127";
}

.icon-siegel::before {
  content: "\f128";
}

.icon-slider-arrow__next::before, .fancybox-nav.fancybox-next::before {
  content: "\f129";
}

.icon-slider-arrow__prev::before, .fancybox-nav.fancybox-prev::before {
  content: "\f12a";
}

.icon-tickbox::before, .notice.notice--success .notice__icon::before, .radio input[type=checkbox]:checked + label::before,
.checkbox input[type=checkbox]:checked + label::before,
.form-check input[type=checkbox]:checked + label::before {
  content: "\f12b";
}

.icon-twitter-circle::before, .share__link.share__link--twitter::before {
  content: "\f12c";
}

.icon-twitter::before {
  content: "\f12d";
}

.icon-upload::before {
  content: "\f12e";
}

.icon-warenkorb::before {
  content: "\f12f";
}

.icon-youtube::before {
  content: "\f130";
}

html {
  height: 100%;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  font-weight: 300;
  background: #fff;
}

.main {
  min-height: 100%;
  position: relative;
  padding-top: 9rem;
  z-index: 1;
  padding-top: 5rem;
}
@media (min-width: 960px) {
  .main {
    padding-top: 13rem;
  }
}
@media (min-width: 1200px) {
  .main {
    padding-top: 15rem;
  }
}

.main__middle {
  padding-top: 1rem;
  position: relative;
}
@media (min-width: 400px) {
  .main__middle {
    padding-bottom: 1rem;
  }
}
@media (min-width: 720px) {
  .main__middle {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 960px) {
  .main__middle:before {
    right: 30px;
    left: 30px;
  }
}

quote,
blockquote {
  border: 0;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
quote p,
blockquote p {
  text-align: center;
  color: #1c437c;
  margin: 0 0 1.5rem;
  font-size: 1.25rem !important;
}
@media (min-width: 960px) {
  quote p,
  blockquote p {
    font-size: 1.75rem !important;
    line-height: 1.5;
  }
}

cite {
  text-align: center;
  color: #0ba1e2;
  font-style: normal;
  display: block;
  font-size: 1rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 960px) {
  cite {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.btn {
  border-radius: 10px;
}

.btn-primary {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus, .btn-primary.focus, .btn-primary.active {
  color: #fff;
  background-color: #0ba1e2;
  border-color: #0ba1e2;
}

.btn-secondary {
  color: #1c437c;
  background-color: #fff;
  border-color: #1c437c;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:focus, .btn-secondary.focus, .btn-secondary.active {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}

.btn-callout {
  color: #000;
  background-color: #f5e51e;
  border-color: #f5e51e;
}
.btn-callout:hover, .btn-callout:focus, .btn-callout:active, .btn-callout:active:focus, .btn-callout.focus, .btn-callout.active {
  color: #000;
  background-color: #a7c438;
  border-color: #a7c438;
}

.btn-sm, .btn-group-sm > .btn {
  font-size: 0.875rem;
  font-weight: 400;
}

.btn-lg, .btn-group-lg > .btn {
  font-size: 1.375rem;
}

.btn-xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 479.98px) {
  .btn-xl {
    white-space: normal;
    text-align: left;
  }
}

.btn__meta {
  font-weight: 400 !important;
}
@media (max-width: 479.98px) {
  .btn__meta {
    display: block;
  }
}

.btn-icon-left,
.btn-icon-right {
  position: relative;
}
.btn-icon-left:before,
.btn-icon-right:before {
  position: absolute;
  top: 50%;
  font-size: 1rem;
}
.btn-icon-left.btn-sm:before, .btn-group-sm > .btn-icon-left.btn:before,
.btn-icon-right.btn-sm:before,
.btn-group-sm > .btn-icon-right.btn:before {
  font-size: 0.875rem;
}
.btn-icon-left.btn-lg:before, .btn-group-lg > .btn-icon-left.btn:before,
.btn-icon-right.btn-lg:before,
.btn-group-lg > .btn-icon-right.btn:before {
  font-size: 1.375rem;
}
.btn-icon-left.btn-xl:before,
.btn-icon-right.btn-xl:before {
  font-size: 1.375rem;
}

.btn-icon-left {
  padding-left: 2.625rem;
}
.btn-icon-left:before {
  transform: translate(-50%, -50%);
  left: 1.5rem;
}
.btn-icon-left.btn-sm, .btn-group-sm > .btn-icon-left.btn {
  padding-left: 1.75rem;
}
.btn-icon-left.btn-sm:before, .btn-group-sm > .btn-icon-left.btn:before {
  left: 1rem;
}
.btn-icon-left.btn-lg, .btn-group-lg > .btn-icon-left.btn {
  padding-left: 2.625rem;
}
.btn-icon-left.btn-lg:before, .btn-group-lg > .btn-icon-left.btn:before {
  left: 1.5rem;
}
.btn-icon-left.btn-xl {
  padding-left: 3rem;
}
.btn-icon-left.btn-xl:before {
  left: 1.875rem;
}

.btn-icon-right {
  padding-right: 2.625rem;
}
.btn-icon-right:before {
  transform: translate(50%, -50%);
  right: 1.5rem;
}
.btn-icon-right.btn-lg, .btn-group-lg > .btn-icon-right.btn {
  padding-right: 2.625rem;
}
.btn-icon-right.btn-lg:before, .btn-group-lg > .btn-icon-right.btn:before {
  right: 1.5rem;
}
.btn-icon-right.btn-sm, .btn-group-sm > .btn-icon-right.btn {
  padding-right: 1.75rem;
}
.btn-icon-right.btn-sm:before, .btn-group-sm > .btn-icon-right.btn:before {
  right: 1rem;
}

.btn-reset {
  background-color: transparent;
  color: #999999;
  padding-left: 0;
  padding-right: 0;
  font-size: 0.875rem;
}
.btn-reset:hover, .btn-reset:focus, .btn-reset:active, .btn-reset.focus, .btn-reset.active {
  color: #1c437c;
  background-color: transparent;
  border-color: transparent;
}
.btn-reset:before {
  margin-right: 0.75rem;
}

.button--yellow {
  color: #000;
  background-color: #f5e51e;
  border-color: #f5e51e;
}
.button--yellow.btn-secondary {
  color: #f5e51e;
  background-color: #fff;
  border-color: #f5e51e;
}

.button--green {
  color: #fff;
  background-color: #a7c438;
  border-color: #a7c438;
}
.button--green.btn-secondary {
  color: #a7c438;
  background-color: #fff;
  border-color: #a7c438;
}
.button--green a[class^=icon-link] {
  color: #fff !important;
}
.button--green a[class^=icon-link]:before {
  color: #fff !important;
}
.button--green a[class^=icon-link] span,
.button--green a[class^=icon-link] strong {
  color: #fff !important;
}

.button--azure {
  color: #fff;
  background-color: #0ba1e2;
  border-color: #0ba1e2;
}
.button--azure.btn-secondary {
  color: #0ba1e2;
  background-color: #fff;
  border-color: #0ba1e2;
}
.button--azure a[class^=icon-link] {
  color: #fff !important;
}
.button--azure a[class^=icon-link]:before {
  color: #fff !important;
}
.button--azure a[class^=icon-link] span,
.button--azure a[class^=icon-link] strong {
  color: #fff !important;
}

.button--blue-light {
  color: #1c437c;
  background-color: #abd2f4;
  border-color: #abd2f4;
}
.button--blue-light.btn-secondary {
  color: #abd2f4;
  background-color: #fff;
  border-color: #abd2f4;
}

.button--yellow:hover, .button--yellow:focus, .button--yellow:active, .button--yellow:active:focus, .button--yellow.focus, .button--yellow.active,
.button--green:hover,
.button--green:focus,
.button--green:active,
.button--green:active:focus,
.button--green.focus,
.button--green.active,
.button--azure:hover,
.button--azure:focus,
.button--azure:active,
.button--azure:active:focus,
.button--azure.focus,
.button--azure.active,
.button--blue-light:hover,
.button--blue-light:focus,
.button--blue-light:active,
.button--blue-light:active:focus,
.button--blue-light.focus,
.button--blue-light.active {
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.button--yellow:hover a[class^=icon-link], .button--yellow:focus a[class^=icon-link], .button--yellow:active a[class^=icon-link], .button--yellow:active:focus a[class^=icon-link], .button--yellow.focus a[class^=icon-link], .button--yellow.active a[class^=icon-link],
.button--green:hover a[class^=icon-link],
.button--green:focus a[class^=icon-link],
.button--green:active a[class^=icon-link],
.button--green:active:focus a[class^=icon-link],
.button--green.focus a[class^=icon-link],
.button--green.active a[class^=icon-link],
.button--azure:hover a[class^=icon-link],
.button--azure:focus a[class^=icon-link],
.button--azure:active a[class^=icon-link],
.button--azure:active:focus a[class^=icon-link],
.button--azure.focus a[class^=icon-link],
.button--azure.active a[class^=icon-link],
.button--blue-light:hover a[class^=icon-link],
.button--blue-light:focus a[class^=icon-link],
.button--blue-light:active a[class^=icon-link],
.button--blue-light:active:focus a[class^=icon-link],
.button--blue-light.focus a[class^=icon-link],
.button--blue-light.active a[class^=icon-link] {
  color: #fff !important;
}
.button--yellow:hover a[class^=icon-link]:before, .button--yellow:focus a[class^=icon-link]:before, .button--yellow:active a[class^=icon-link]:before, .button--yellow:active:focus a[class^=icon-link]:before, .button--yellow.focus a[class^=icon-link]:before, .button--yellow.active a[class^=icon-link]:before,
.button--green:hover a[class^=icon-link]:before,
.button--green:focus a[class^=icon-link]:before,
.button--green:active a[class^=icon-link]:before,
.button--green:active:focus a[class^=icon-link]:before,
.button--green.focus a[class^=icon-link]:before,
.button--green.active a[class^=icon-link]:before,
.button--azure:hover a[class^=icon-link]:before,
.button--azure:focus a[class^=icon-link]:before,
.button--azure:active a[class^=icon-link]:before,
.button--azure:active:focus a[class^=icon-link]:before,
.button--azure.focus a[class^=icon-link]:before,
.button--azure.active a[class^=icon-link]:before,
.button--blue-light:hover a[class^=icon-link]:before,
.button--blue-light:focus a[class^=icon-link]:before,
.button--blue-light:active a[class^=icon-link]:before,
.button--blue-light:active:focus a[class^=icon-link]:before,
.button--blue-light.focus a[class^=icon-link]:before,
.button--blue-light.active a[class^=icon-link]:before {
  color: #fff !important;
}
.button--yellow:hover a[class^=icon-link] span,
.button--yellow:hover a[class^=icon-link] strong, .button--yellow:focus a[class^=icon-link] span,
.button--yellow:focus a[class^=icon-link] strong, .button--yellow:active a[class^=icon-link] span,
.button--yellow:active a[class^=icon-link] strong, .button--yellow:active:focus a[class^=icon-link] span,
.button--yellow:active:focus a[class^=icon-link] strong, .button--yellow.focus a[class^=icon-link] span,
.button--yellow.focus a[class^=icon-link] strong, .button--yellow.active a[class^=icon-link] span,
.button--yellow.active a[class^=icon-link] strong,
.button--green:hover a[class^=icon-link] span,
.button--green:hover a[class^=icon-link] strong,
.button--green:focus a[class^=icon-link] span,
.button--green:focus a[class^=icon-link] strong,
.button--green:active a[class^=icon-link] span,
.button--green:active a[class^=icon-link] strong,
.button--green:active:focus a[class^=icon-link] span,
.button--green:active:focus a[class^=icon-link] strong,
.button--green.focus a[class^=icon-link] span,
.button--green.focus a[class^=icon-link] strong,
.button--green.active a[class^=icon-link] span,
.button--green.active a[class^=icon-link] strong,
.button--azure:hover a[class^=icon-link] span,
.button--azure:hover a[class^=icon-link] strong,
.button--azure:focus a[class^=icon-link] span,
.button--azure:focus a[class^=icon-link] strong,
.button--azure:active a[class^=icon-link] span,
.button--azure:active a[class^=icon-link] strong,
.button--azure:active:focus a[class^=icon-link] span,
.button--azure:active:focus a[class^=icon-link] strong,
.button--azure.focus a[class^=icon-link] span,
.button--azure.focus a[class^=icon-link] strong,
.button--azure.active a[class^=icon-link] span,
.button--azure.active a[class^=icon-link] strong,
.button--blue-light:hover a[class^=icon-link] span,
.button--blue-light:hover a[class^=icon-link] strong,
.button--blue-light:focus a[class^=icon-link] span,
.button--blue-light:focus a[class^=icon-link] strong,
.button--blue-light:active a[class^=icon-link] span,
.button--blue-light:active a[class^=icon-link] strong,
.button--blue-light:active:focus a[class^=icon-link] span,
.button--blue-light:active:focus a[class^=icon-link] strong,
.button--blue-light.focus a[class^=icon-link] span,
.button--blue-light.focus a[class^=icon-link] strong,
.button--blue-light.active a[class^=icon-link] span,
.button--blue-light.active a[class^=icon-link] strong {
  color: #fff !important;
}

.button--icon-link {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.button--icon-link .linkgroup ul {
  margin-bottom: 0;
}

.form--highlight {
  background: #e6f3fc;
  padding: 1.5rem 30px;
}

.form__legend {
  color: #1c437c;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-control {
  background: #e6f1fc;
  border-color: #e6f1fc;
  border-radius: 10px;
  font-weight: 300;
}
.form-control:hover, .form-control:active, .form-control:focus {
  border-color: #abd2f4;
}
.form-control.is-disabled, .form-control:disabled, .form-control[readonly] {
  cursor: not-allowed;
}
.form-control.is-disabled:hover, .form-control.is-disabled:active, .form-control.is-disabled:focus, .form-control:disabled:hover, .form-control:disabled:active, .form-control:disabled:focus, .form-control[readonly]:hover, .form-control[readonly]:active, .form-control[readonly]:focus {
  border-color: #e6f1fc;
}
@media (min-width: 480px) {
  .form-control {
    font-size: 1.125rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .form-group--has-no-label {
    text-align: left;
    padding-top: 1.75rem;
  }
}

.form-text {
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.form-control.error {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.form-control.error:hover, .form-control.error:active, .form-control.error:focus {
  border-color: #dc3545;
}

.form-label,
.form-check-label,
.legend-for-label,
.form-group label,
legend {
  font-size: 1.125rem;
  font-weight: 300;
  color: #1c437c;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.form-label.form-label--strong, .form-label.form-check-label--strong, .form-label.legend-for-label--strong,
.form-check-label.form-label--strong,
.form-check-label.form-check-label--strong,
.form-check-label.legend-for-label--strong,
.legend-for-label.form-label--strong,
.legend-for-label.form-check-label--strong,
.legend-for-label.legend-for-label--strong,
.form-group label.form-label--strong,
.form-group label.form-check-label--strong,
.form-group label.legend-for-label--strong,
legend.form-label--strong,
legend.form-check-label--strong,
legend.legend-for-label--strong {
  font-weight: 700;
  color: #1c437c;
}

.legend-for-label {
  margin-bottom: 1rem;
}

.form-group label.error {
  color: #dc3545;
  font-size: 0.75rem;
  line-height: 20px;
  margin-top: 5px;
  display: block;
}

.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #1c437c;
  font-weight: 300;
  font-style: italic;
}
.form-control::-moz-placeholder.big-search__input,
.form-control:-ms-input-placeholder.big-search__input,
.form-control::-webkit-input-placeholder.big-search__input {
  color: #1c437c;
  font-weight: 700;
  font-style: normal;
}

.form-inline .form-group {
  margin-right: 2rem;
  display: inline;
}

.form .table-responsive .table {
  border-bottom: 1px solid #f0ecd5;
}
.form .table-responsive .table > thead > tr > th,
.form .table-responsive .table > tbody > tr > th,
.form .table-responsive .table > tfoot > tr > th,
.form .table-responsive .table > thead > tr > td,
.form .table-responsive .table > tbody > tr > td,
.form .table-responsive .table > tfoot > tr > td {
  padding: 16px 0;
  border-color: #f0ecd5;
  font-weight: 300;
}
.form .table-responsive .table > thead > tr > th.summary-table-first-col,
.form .table-responsive .table > tbody > tr > th.summary-table-first-col,
.form .table-responsive .table > tfoot > tr > th.summary-table-first-col,
.form .table-responsive .table > thead > tr > td.summary-table-first-col,
.form .table-responsive .table > tbody > tr > td.summary-table-first-col,
.form .table-responsive .table > tfoot > tr > td.summary-table-first-col {
  width: 30%;
  font-weight: 600;
}

.form__mandatory p {
  font-size: 0.875rem !important;
}

.multiple__item {
  position: relative;
}

.multiple__delete {
  position: absolute;
  right: 0;
  top: 0;
  color: #1c437c;
  cursor: pointer;
}
.multiple__delete:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  text-indent: 0;
  text-align: center;
}
.multiple__delete:hover {
  color: rgb(255, 221, 0);
}

.multiple__add {
  margin-top: -1.5rem;
}

.form--powermail {
  /* Hide HTML5 Up and Down arrows. */
  /* Mehrstufige Formulare */
}
.form--powermail input[type=number]::-webkit-outer-spin-button,
.form--powermail input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form--powermail input[type=number] {
  -moz-appearance: textfield;
}
.form--powermail .btn-group {
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.form--powermail .btn-group .btn {
  margin-bottom: -1px;
  margin-left: -1px;
}
.form--powermail .btn-group .btn:first-of-type {
  margin-left: 0;
}
.form--powermail .powermail_tab_navigation {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  position: relative;
  width: 100%;
  float: left;
}
.form--powermail .powermail_tab_navigation:before {
  content: "";
  top: 0;
  left: 15px;
  right: 15px;
  position: absolute;
  display: block;
  background: url("/assets/images/bg_dots_xs.png") left top repeat-x;
  height: 2px;
}

.form__group label.error {
  display: block;
}
.form__group label p {
  margin: 0;
  display: inline-block;
  line-height: 1.5;
}

.form__description {
  color: #b4b4b5;
  font-size: 15px;
}

.form__captchaimage {
  padding-right: 20px;
  float: left;
  height: 49px;
  width: auto;
}

.form__element--captcha {
  float: left;
  width: 80px;
  text-align: center;
}

.form__clearfix {
  width: 100%;
}

.form__spacer {
  width: 100%;
}

.table-striped {
  margin-bottom: 15px;
}

.table-striped > tbody > tr:nth-of-type(2n + 1) {
  background: url("../images/bg_pattern.png") center center repeat;
}

.table-hover > tbody > tr:hover {
  background-color: transparent;
}

.form__confirmation-navigation {
  padding-top: 15px;
  position: relative;
}

.form__confirmation-navigation:before {
  content: "";
  top: 0;
  left: 15px;
  right: 15px;
  position: absolute;
  display: block;
  background: url("../images/bg_dots_xs.png") left top repeat-x;
  height: 2px;
}

.radio,
.checkbox,
.form-check {
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
  position: relative;
}
.radio.radio-inline, .radio.checkbox-inline, .radio.form-check--inline,
.checkbox.radio-inline,
.checkbox.checkbox-inline,
.checkbox.form-check--inline,
.form-check.radio-inline,
.form-check.checkbox-inline,
.form-check.form-check--inline {
  margin-right: 2rem;
  display: inline;
}
.radio input[type=checkbox],
.radio input[type=radio],
.checkbox input[type=checkbox],
.checkbox input[type=radio],
.form-check input[type=checkbox],
.form-check input[type=radio] {
  position: absolute;
  left: 8px;
  top: 8px;
  margin: 0;
}
.radio input[type=checkbox]:disabled:hover + label, .radio input[type=checkbox]:disabled:active + label, .radio input[type=checkbox]:disabled:focus + label, .radio input[type=checkbox][readonly]:hover + label, .radio input[type=checkbox][readonly]:active + label, .radio input[type=checkbox][readonly]:focus + label,
.radio input[type=radio]:disabled:hover + label,
.radio input[type=radio]:disabled:active + label,
.radio input[type=radio]:disabled:focus + label,
.radio input[type=radio][readonly]:hover + label,
.radio input[type=radio][readonly]:active + label,
.radio input[type=radio][readonly]:focus + label,
.checkbox input[type=checkbox]:disabled:hover + label,
.checkbox input[type=checkbox]:disabled:active + label,
.checkbox input[type=checkbox]:disabled:focus + label,
.checkbox input[type=checkbox][readonly]:hover + label,
.checkbox input[type=checkbox][readonly]:active + label,
.checkbox input[type=checkbox][readonly]:focus + label,
.checkbox input[type=radio]:disabled:hover + label,
.checkbox input[type=radio]:disabled:active + label,
.checkbox input[type=radio]:disabled:focus + label,
.checkbox input[type=radio][readonly]:hover + label,
.checkbox input[type=radio][readonly]:active + label,
.checkbox input[type=radio][readonly]:focus + label,
.form-check input[type=checkbox]:disabled:hover + label,
.form-check input[type=checkbox]:disabled:active + label,
.form-check input[type=checkbox]:disabled:focus + label,
.form-check input[type=checkbox][readonly]:hover + label,
.form-check input[type=checkbox][readonly]:active + label,
.form-check input[type=checkbox][readonly]:focus + label,
.form-check input[type=radio]:disabled:hover + label,
.form-check input[type=radio]:disabled:active + label,
.form-check input[type=radio]:disabled:focus + label,
.form-check input[type=radio][readonly]:hover + label,
.form-check input[type=radio][readonly]:active + label,
.form-check input[type=radio][readonly]:focus + label {
  cursor: not-allowed;
}
.radio input[type=checkbox]:disabled:hover + label:before, .radio input[type=checkbox]:disabled:active + label:before, .radio input[type=checkbox]:disabled:focus + label:before, .radio input[type=checkbox][readonly]:hover + label:before, .radio input[type=checkbox][readonly]:active + label:before, .radio input[type=checkbox][readonly]:focus + label:before,
.radio input[type=radio]:disabled:hover + label:before,
.radio input[type=radio]:disabled:active + label:before,
.radio input[type=radio]:disabled:focus + label:before,
.radio input[type=radio][readonly]:hover + label:before,
.radio input[type=radio][readonly]:active + label:before,
.radio input[type=radio][readonly]:focus + label:before,
.checkbox input[type=checkbox]:disabled:hover + label:before,
.checkbox input[type=checkbox]:disabled:active + label:before,
.checkbox input[type=checkbox]:disabled:focus + label:before,
.checkbox input[type=checkbox][readonly]:hover + label:before,
.checkbox input[type=checkbox][readonly]:active + label:before,
.checkbox input[type=checkbox][readonly]:focus + label:before,
.checkbox input[type=radio]:disabled:hover + label:before,
.checkbox input[type=radio]:disabled:active + label:before,
.checkbox input[type=radio]:disabled:focus + label:before,
.checkbox input[type=radio][readonly]:hover + label:before,
.checkbox input[type=radio][readonly]:active + label:before,
.checkbox input[type=radio][readonly]:focus + label:before,
.form-check input[type=checkbox]:disabled:hover + label:before,
.form-check input[type=checkbox]:disabled:active + label:before,
.form-check input[type=checkbox]:disabled:focus + label:before,
.form-check input[type=checkbox][readonly]:hover + label:before,
.form-check input[type=checkbox][readonly]:active + label:before,
.form-check input[type=checkbox][readonly]:focus + label:before,
.form-check input[type=radio]:disabled:hover + label:before,
.form-check input[type=radio]:disabled:active + label:before,
.form-check input[type=radio]:disabled:focus + label:before,
.form-check input[type=radio][readonly]:hover + label:before,
.form-check input[type=radio][readonly]:active + label:before,
.form-check input[type=radio][readonly]:focus + label:before {
  border-color: #e6f1fc;
}
.radio label,
.checkbox label,
.form-check label {
  padding-left: 3.375rem;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.radio label:before,
.checkbox label:before,
.form-check label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
  margin: 0;
  border-style: solid;
  border-color: #e6f1fc;
  border-width: 1px;
  width: 2.375rem;
  height: 2.375rem;
  background: #e6f1fc;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}
.radio label:focus, .radio label:hover, .radio label:active,
.checkbox label:focus,
.checkbox label:hover,
.checkbox label:active,
.form-check label:focus,
.form-check label:hover,
.form-check label:active {
  color: #1c437c;
}
.radio label:focus:before, .radio label:hover:before, .radio label:active:before,
.checkbox label:focus:before,
.checkbox label:hover:before,
.checkbox label:active:before,
.form-check label:focus:before,
.form-check label:hover:before,
.form-check label:active:before {
  border-color: #abd2f4;
}
.radio label .error:before, .radio label .error:after,
.checkbox label .error:before,
.checkbox label .error:after,
.form-check label .error:before,
.form-check label .error:after {
  display: none;
}
.radio input[type=checkbox]:checked + label:before,
.checkbox input[type=checkbox]:checked + label:before,
.form-check input[type=checkbox]:checked + label:before {
  color: #1c437c;
  text-align: center;
  line-height: 36px !important;
}
.radio input[type=radio] + label:before,
.checkbox input[type=radio] + label:before,
.form-check input[type=radio] + label:before {
  border-radius: 50%;
}
.radio input[type=radio] + label:after,
.checkbox input[type=radio] + label:after,
.form-check input[type=radio] + label:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: 5px;
  left: 1.1875rem;
  width: 1.1875rem;
  height: 1.1875rem;
  background: #e6f1fc;
}
.radio input[type=radio]:checked + label:after,
.checkbox input[type=radio]:checked + label:after,
.form-check input[type=radio]:checked + label:after {
  background: #1c437c;
}

.form__group--check .form__label,
.form__group--radio .form__label {
  font-weight: 700;
  margin-bottom: 1rem;
}
.form__group--check .form__label .form__mandatory,
.form__group--check .form__label .form__description,
.form__group--radio .form__label .form__mandatory,
.form__group--radio .form__label .form__description {
  font-weight: 300;
}

.uploaded-logo {
  background: #fff;
  margin-right: 20px;
  padding: 20px;
  float: left;
  border: 1px solid #ccc;
}

.upload {
  position: relative;
  display: block;
  overflow: hidden;
}
.upload label {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0;
  display: block;
}
.upload label:before, .upload label:after {
  display: block;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
}
.upload label:before {
  padding: 0 20px;
  /*
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  bottom: 40px;
  */
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: 2;
  color: #fff;
  text-align: center;
  content: attr(data-select-text);
  border: 1px solid #ccc;
  color: #fff;
  background-color: white;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  font-weight: 400;
  box-sizing: border-box;
  padding: 7px 15px;
  width: 170px;
  color: #fff;
  background-color: #1c437c;
  border-color: #1c437c;
}
.upload label:after {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 20px 20px 20px 220px;
  line-height: 24px;
  height: auto;
  background: white;
  content: attr(data-input-value);
  text-align: left;
  font-size: 1.25rem;
  font-weight: 300;
  border: 1px solid #ccc;
  /*
  border: 1px dashed #e0e3ef;
  background-image: url('../../assets/images/upload.svg');
  background-repeat: no-repeat;
  background-position: top 50px center;
  */
  color: #1c437c;
}
.upload:hover label:before {
  color: white;
  background-color: #1c437c;
  border-color: #1c437c;
}
.upload input[type=file] {
  position: absolute;
  top: 100%;
  margin-top: -280px;
  z-index: 1;
  height: 280px;
  width: 100%;
  opacity: 0;
}
.upload input[type=file]:not(.empty):valid + label:before {
  content: attr(data-remove-text);
}
.upload input[type=file]:not(.empty):valid + label:after {
  color: #1c437c;
}
.upload input[type=file]:invalid + label:after, .upload input[type=file].empty + label:after {
  content: attr(data-drag-text);
}

@media (max-width: 959.98px) {
  .upload label:before {
    top: 20px;
    transform: unset;
    left: 20px;
  }
  .upload label:after {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-image: none;
  }
}
.form--highlight {
  background: #e6f3fc;
  padding: 1.5rem 30px;
}

.form__legend {
  color: #1c437c;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-control {
  background: #e6f1fc;
  border-color: #e6f1fc;
  border-radius: 10px;
  font-weight: 300;
}
.form-control:hover, .form-control:active, .form-control:focus {
  border-color: #abd2f4;
}
.form-control.is-disabled, .form-control:disabled, .form-control[readonly] {
  cursor: not-allowed;
}
.form-control.is-disabled:hover, .form-control.is-disabled:active, .form-control.is-disabled:focus, .form-control:disabled:hover, .form-control:disabled:active, .form-control:disabled:focus, .form-control[readonly]:hover, .form-control[readonly]:active, .form-control[readonly]:focus {
  border-color: #e6f1fc;
}
@media (min-width: 480px) {
  .form-control {
    font-size: 1.125rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .form-group--has-no-label {
    text-align: left;
    padding-top: 1.75rem;
  }
}

.form-text {
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.form-control.error {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.form-control.error:hover, .form-control.error:active, .form-control.error:focus {
  border-color: #dc3545;
}

.form-label,
.form-check-label,
.legend-for-label,
.form-group label,
legend {
  font-size: 1.125rem;
  font-weight: 300;
  color: #1c437c;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.form-label.form-label--strong, .form-label.form-check-label--strong, .form-label.legend-for-label--strong,
.form-check-label.form-label--strong,
.form-check-label.form-check-label--strong,
.form-check-label.legend-for-label--strong,
.legend-for-label.form-label--strong,
.legend-for-label.form-check-label--strong,
.legend-for-label.legend-for-label--strong,
.form-group label.form-label--strong,
.form-group label.form-check-label--strong,
.form-group label.legend-for-label--strong,
legend.form-label--strong,
legend.form-check-label--strong,
legend.legend-for-label--strong {
  font-weight: 700;
  color: #1c437c;
}

.legend-for-label {
  margin-bottom: 1rem;
}

.form-group label.error {
  color: #dc3545;
  font-size: 0.75rem;
  line-height: 20px;
  margin-top: 5px;
  display: block;
}

.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #1c437c;
  font-weight: 300;
  font-style: italic;
}
.form-control::-moz-placeholder.big-search__input,
.form-control:-ms-input-placeholder.big-search__input,
.form-control::-webkit-input-placeholder.big-search__input {
  color: #1c437c;
  font-weight: 700;
  font-style: normal;
}

.form-inline .form-group {
  margin-right: 2rem;
  display: inline;
}

.form .table-responsive .table {
  border-bottom: 1px solid #f0ecd5;
}
.form .table-responsive .table > thead > tr > th,
.form .table-responsive .table > tbody > tr > th,
.form .table-responsive .table > tfoot > tr > th,
.form .table-responsive .table > thead > tr > td,
.form .table-responsive .table > tbody > tr > td,
.form .table-responsive .table > tfoot > tr > td {
  padding: 16px 0;
  border-color: #f0ecd5;
  font-weight: 300;
}
.form .table-responsive .table > thead > tr > th.summary-table-first-col,
.form .table-responsive .table > tbody > tr > th.summary-table-first-col,
.form .table-responsive .table > tfoot > tr > th.summary-table-first-col,
.form .table-responsive .table > thead > tr > td.summary-table-first-col,
.form .table-responsive .table > tbody > tr > td.summary-table-first-col,
.form .table-responsive .table > tfoot > tr > td.summary-table-first-col {
  width: 30%;
  font-weight: 600;
}

.form__mandatory p {
  font-size: 0.875rem !important;
}

.multiple__item {
  position: relative;
}

.multiple__delete {
  position: absolute;
  right: 0;
  top: 0;
  color: #1c437c;
  cursor: pointer;
}
.multiple__delete:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  text-indent: 0;
  text-align: center;
}
.multiple__delete:hover {
  color: rgb(255, 221, 0);
}

.multiple__add {
  margin-top: -1.5rem;
}

.form--powermail {
  /* Hide HTML5 Up and Down arrows. */
  /* Mehrstufige Formulare */
}
.form--powermail input[type=number]::-webkit-outer-spin-button,
.form--powermail input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form--powermail input[type=number] {
  -moz-appearance: textfield;
}
.form--powermail .btn-group {
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.form--powermail .btn-group .btn {
  margin-bottom: -1px;
  margin-left: -1px;
}
.form--powermail .btn-group .btn:first-of-type {
  margin-left: 0;
}
.form--powermail .powermail_tab_navigation {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  position: relative;
  width: 100%;
  float: left;
}
.form--powermail .powermail_tab_navigation:before {
  content: "";
  top: 0;
  left: 15px;
  right: 15px;
  position: absolute;
  display: block;
  background: url("/assets/images/bg_dots_xs.png") left top repeat-x;
  height: 2px;
}

.form__group label.error {
  display: block;
}
.form__group label p {
  margin: 0;
  display: inline-block;
  line-height: 1.5;
}

.form__description {
  color: #b4b4b5;
  font-size: 15px;
}

.form__captchaimage {
  padding-right: 20px;
  float: left;
  height: 49px;
  width: auto;
}

.form__element--captcha {
  float: left;
  width: 80px;
  text-align: center;
}

.form__clearfix {
  width: 100%;
}

.form__spacer {
  width: 100%;
}

.table-striped {
  margin-bottom: 15px;
}

.table-striped > tbody > tr:nth-of-type(2n + 1) {
  background: url("../images/bg_pattern.png") center center repeat;
}

.table-hover > tbody > tr:hover {
  background-color: transparent;
}

.form__confirmation-navigation {
  padding-top: 15px;
  position: relative;
}

.form__confirmation-navigation:before {
  content: "";
  top: 0;
  left: 15px;
  right: 15px;
  position: absolute;
  display: block;
  background: url("../images/bg_dots_xs.png") left top repeat-x;
  height: 2px;
}

.SumoSelect {
  width: 100%;
  display: block;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.SumoSelect li:before {
  display: none;
}
.SumoSelect label {
  margin-bottom: 0;
}
.SumoSelect > .optWrapper {
  border-color: #e6f1fc;
  box-shadow: 0 0 0 #1c437c;
  border-radius: 10px;
}
.SumoSelect > .optWrapper.selall .select-all,
.SumoSelect > .optWrapper.selall li.opt,
.SumoSelect > .optWrapper.selall .no-match,
.SumoSelect > .optWrapper.multiple .select-all,
.SumoSelect > .optWrapper.multiple li.opt,
.SumoSelect > .optWrapper.multiple .no-match {
  height: calc(2.75rem + 2px);
  padding: 0.625rem 1rem 0.625rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0;
}
.SumoSelect > .optWrapper.selall .select-all label,
.SumoSelect > .optWrapper.selall li.opt label,
.SumoSelect > .optWrapper.selall .no-match label,
.SumoSelect > .optWrapper.multiple .select-all label,
.SumoSelect > .optWrapper.multiple li.opt label,
.SumoSelect > .optWrapper.multiple .no-match label {
  margin-bottom: 0;
  height: 100%;
}
.SumoSelect > .optWrapper.selall .no-match,
.SumoSelect > .optWrapper.multiple .no-match {
  height: auto !important;
  min-height: calc(2.75rem + 2px);
  color: #dc3545;
  font-weight: 400;
}
.SumoSelect.open .search-txt {
  transition: all 0.2s ease-in-out;
  color: #0ba1e2;
  height: calc(2.75rem + 2px);
  padding: 0.625rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 300;
  border-radius: 10px;
  background: #e6f1fc;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
.SumoSelect.open .search-txt::-moz-placeholder {
  color: #0ba1e2;
}
.SumoSelect.open .search-txt::placeholder {
  color: #0ba1e2;
}
.SumoSelect.open .search:before {
  font-size: 1.25rem;
  color: #1c437c;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(-3%, -41%);
  z-index: 99999999;
}
.SumoSelect > .CaptionCont {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.SumoSelect > .CaptionCont span {
  cursor: pointer;
  font-size: 1.125rem;
}
.SumoSelect > .CaptionCont span.placeholder {
  font-style: normal;
  color: #abd2f4;
}
.SumoSelect > .CaptionCont label {
  width: auto;
  margin: 0;
  padding: 0 1rem;
  display: flex;
  align-content: center;
  cursor: pointer;
}
.SumoSelect > .CaptionCont label:before {
  align-self: center;
  font-size: 1.125rem;
  color: #1c437c;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}
.SumoSelect > .CaptionCont label i {
  display: none;
}
.SumoSelect.open > .CaptionCont label {
  z-index: 9999;
}
.SumoSelect:focus > .CaptionCont label, .SumoSelect:hover > .CaptionCont label {
  visibility: visible;
}
.SumoSelect.open > .CaptionCont label {
  visibility: visible;
}
.SumoSelect.open > .CaptionCont label:before {
  transform: rotate(180deg);
}

.SumoSelect .CaptionCont.SelectBox {
  padding: 0.625rem 1rem;
  line-height: 1.6;
  font-size: 1.125rem;
  font-weight: 300;
  color: #0ba1e2;
  border-width: 1px;
  border-radius: 10px;
  border-color: #e6f1fc;
  height: calc(2.75rem + 5px);
  background: #e6f1fc;
}

.SumoSelect > .optWrapper {
  top: 0 !important;
  border-color: #e6f1fc;
}
.SumoSelect > .optWrapper .select-all,
.SumoSelect > .optWrapper .options li.opt,
.SumoSelect > .optWrapper .no-match {
  height: calc(2.75rem + 2px) !important;
  padding: 0.625rem 1rem !important;
  font-size: 1.125rem !important;
  line-height: 1.5 !important;
  border-radius: 0 !important;
  font-weight: 300;
}
.SumoSelect > .optWrapper .select-all label,
.SumoSelect > .optWrapper .options li.opt label,
.SumoSelect > .optWrapper .no-match label {
  margin-bottom: 0;
  height: 100%;
}
.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect > .optWrapper .select-all.selected > span i {
  background-color: #1c437c;
}
.SumoSelect > .optWrapper .select-all.partial > span i {
  background-color: #e6f1fc;
  background-image: none;
}

.SumoSelect.open .SumoUnder[data-search=true] ~ .optWrapper {
  top: calc(2.75rem + 2px) !important;
}

.SumoSelect.open > .optWrapper {
  border-color: #abd2f4;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span, .SumoSelect > .optWrapper.multiple > .options li.opt > span,
.SumoSelect .select-all span,
.SumoSelect .select-all > span {
  width: auto;
  margin: 0;
}
.SumoSelect > .optWrapper.multiple > .options li.opt span i, .SumoSelect > .optWrapper.multiple > .options li.opt > span i,
.SumoSelect .select-all span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 1.125rem;
  width: 1.125rem;
  border: 1px solid #e6f1fc;
  border-radius: 2px;
  box-shadow: none;
  background-color: #e6f1fc;
}
.SumoSelect > .optWrapper.multiple > .options li.opt label,
.SumoSelect .select-all label {
  margin-left: 2.125rem;
}

.SumoSelect > .optWrapper .select-all, .SumoSelect > .optWrapper > .options li.opt {
  border-color: #f0f0f0;
  transition: all 0.2s ease-in-out;
}
.SumoSelect > .optWrapper .select-all:focus, .SumoSelect > .optWrapper .select-all:hover, .SumoSelect > .optWrapper > .options li.opt:focus, .SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #e6f1fc;
}

.SumoSelect:hover > .CaptionCont {
  box-shadow: none;
  border-color: #abd2f4;
}

.SumoSelect:focus > .CaptionCont,
.SumoSelect.open > .CaptionCont {
  color: #0ba1e2;
  background: #e6f1fc;
  box-shadow: 0 0 0 #1c437c;
  border-color: #abd2f4;
}

a[class^=icon-link] {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
a[class^=icon-link]:before {
  position: absolute;
  left: 0;
  font-size: 22px;
}
a[class^=icon-link]:hover:before, a[class^=icon-link]:active:before, a[class^=icon-link]:focus:before {
  text-decoration: none;
}

a.icon-link--intern:before {
  top: 4px;
  left: 2px;
  font-size: 18px;
}
a.icon-link--extern:before {
  top: 4px;
  left: 2px;
  font-size: 18px;
}
a.icon-link--mail:before {
  top: 4px;
  left: 3px;
}
@media (min-width: 960px) {
  a.icon-link--mail:before {
    top: 0;
    left: 3px;
  }
}
a.icon-link--download:before {
  top: 6px;
}
a.icon-link--phone:before {
  font-size: 28px;
  top: 5px;
  color: #1c437c;
}

.logo-primary {
  display: inline-block;
  text-decoration: none;
  height: auto;
}
.logo-primary img {
  max-width: 245px;
  height: auto;
}

.logo-primary--svg {
  position: relative;
  display: block;
}
.logo-primary--svg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.logo-primary--svg embed {
  width: 100%;
  height: auto;
}
.logo-primary--svg svg {
  pointer-events: none;
}

.logo-primary__object-wrap {
  width: 100%;
  margin: 0 auto;
}

.image {
  position: relative;
}
.image img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 100%;
}
.image picture,
.image picture source {
  display: block;
}

.image__credits {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.5;
  color: white;
  opacity: 1;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 4px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  text-align: right;
}
@media (min-width: 480px) {
  .image:hover .image__credits {
    background: rgba(0, 0, 0, 0.6);
  }
}
.media {
  position: relative;
  margin: 0;
}
@media (min-width: 480px) {
  .media {
    margin-left: 0;
    margin-right: 0;
  }
}

.media__caption {
  font-size: 0.75rem;
  padding: 0.5rem 0 0.5rem;
  position: relative;
  color: #999999;
}
@media (min-width: 480px) {
  .media__caption {
    padding: 0.5rem 0 1rem;
  }
}
@media (min-width: 960px) {
  .media__caption {
    font-size: 0.875rem;
  }
}
.media__caption p {
  padding: 0;
  color: #999999;
}

audio {
  width: 100%;
}

img.fakeImgLazyLoading {
  opacity: 0;
  transition: ease-in opacity 650ms;
  transition-delay: 50ms;
}

img.fakeImgLazyLoading.fakeImgLazyLoading-fadeIn {
  opacity: 1;
}

.read-more,
.teaser__read-more {
  margin-bottom: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-right: 2.25rem;
  transition: all 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.read-more i,
.teaser__read-more i {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1.5rem;
  overflow: hidden;
  transition: all 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  font-size: 1rem;
  top: -2px;
  font-size: 2.5rem;
  top: -9px;
  font-size: 3.5rem;
}
.read-more i:before,
.teaser__read-more i:before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  transition: all 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
}
.read-more:hover, .read-more:focus,
.teaser__read-more:hover,
.teaser__read-more:focus {
  padding-right: 5rem;
  text-decoration: none;
}
.read-more:hover i, .read-more:focus i,
.teaser__read-more:hover i,
.teaser__read-more:focus i {
  width: 4rem;
}

table {
  margin-bottom: 1rem;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table hr {
  display: none;
}
table td,
table th {
  border: 1px solid #e6f1fc;
  vertical-align: top;
  text-align: left;
  padding: 0.5rem;
}
table td p,
table td li,
table th p,
table th li {
  font-size: 0.875rem !important;
  margin-bottom: 0 !important;
}
@media (min-width: 480px) {
  table td p,
  table td li,
  table th p,
  table th li {
    font-size: 1rem !important;
  }
}
@media (min-width: 960px) {
  table td,
  table th {
    font-size: 1.25rem;
    padding: 1rem;
  }
  table td p,
  table td li,
  table th p,
  table th li {
    font-size: 1.25rem !important;
  }
}
table td h1, table td h2, table td h3, table td h4, table td h5, table td h6,
table td .h1, table td .h2, table td .h3, table td .h4, table td .h5, table td .h6,
table th h1,
table th h2,
table th h3,
table th h4,
table th h5,
table th h6,
table th .h1,
table th .h2,
table th .h3,
table th .h4,
table th .h5,
table th .h6 {
  margin-bottom: 0 !important;
}
table td h1 a, table td h2 a, table td h3 a, table td h4 a, table td h5 a, table td h6 a,
table td .h1 a, table td .h2 a, table td .h3 a, table td .h4 a, table td .h5 a, table td .h6 a,
table th h1 a,
table th h2 a,
table th h3 a,
table th h4 a,
table th h5 a,
table th h6 a,
table th .h1 a,
table th .h2 a,
table th .h3 a,
table th .h4 a,
table th .h5 a,
table th .h6 a {
  text-decoration: underline;
}
table td h1 a:hover, table td h2 a:hover, table td h3 a:hover, table td h4 a:hover, table td h5 a:hover, table td h6 a:hover,
table td .h1 a:hover, table td .h2 a:hover, table td .h3 a:hover, table td .h4 a:hover, table td .h5 a:hover, table td .h6 a:hover,
table th h1 a:hover,
table th h2 a:hover,
table th h3 a:hover,
table th h4 a:hover,
table th h5 a:hover,
table th h6 a:hover,
table th .h1 a:hover,
table th .h2 a:hover,
table th .h3 a:hover,
table th .h4 a:hover,
table th .h5 a:hover,
table th .h6 a:hover {
  text-decoration: none;
}
table th {
  background: #e6f1fc;
}
table thead td, table thead th {
  background: #1c437c;
  color: #fff;
}

.notice--success .table {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  display: block;
  font-weight: 700;
}
@media (max-width: 959.98px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    word-break: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}

h1,
.h1 {
  font-weight: 300;
  margin-bottom: 3rem;
}
@media (max-width: 1199.98px) {
  h1,
  .h1 {
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 479.98px) {
  h1,
  .h1 {
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}

h2,
.h2 {
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 959.98px) {
  h2,
  .h2 {
    font-weight: 700;
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
}

h3,
.h3 {
  margin-bottom: 1rem;
}
@media (max-width: 959.98px) {
  h3,
  .h3 {
    font-size: 1.25rem;
  }
}

h4,
.h4 {
  margin-bottom: 1rem;
}

h5,
.h5 {
  margin-bottom: 1rem;
}

h6,
.h6 {
  font-weight: 300;
  margin-bottom: 1rem;
}

p a,
li a {
  color: #1c437c;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
p a:hover, p a:active, p a:focus,
li a:hover,
li a:active,
li a:focus {
  color: #1c437c;
  text-decoration: underline;
}

a h1,
a h2,
a h3,
a h4,
a h5,
a h6,
a .h1,
a .h2,
a .h3,
a .h4,
a .h5,
a .h6 {
  transition: all 0.2s ease-in-out;
  color: #1c437c;
  text-decoration: none;
}
a:hover h1,
a:hover h2,
a:hover h3,
a:hover h4,
a:hover h5,
a:hover h6,
a:hover .h1,
a:hover .h2,
a:hover .h3,
a:hover .h4,
a:hover .h5,
a:hover .h6, a:active h1,
a:active h2,
a:active h3,
a:active h4,
a:active h5,
a:active h6,
a:active .h1,
a:active .h2,
a:active .h3,
a:active .h4,
a:active .h5,
a:active .h6, a:focus h1,
a:focus h2,
a:focus h3,
a:focus h4,
a:focus h5,
a:focus h6,
a:focus .h1,
a:focus .h2,
a:focus .h3,
a:focus .h4,
a:focus .h5,
a:focus .h6 {
  color: #1c437c;
  text-decoration: none;
}

p {
  font-size: 1rem;
}
@media (max-width: 719.98px) {
  p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

b,
strong {
  font-weight: 700;
}

.accordion {
  position: relative;
}
.accordion .accordion__item {
  border-top: 1px solid #abd2f4;
  position: relative;
}
.accordion .accordion__item:last-child {
  border-bottom: 1px solid #abd2f4;
}
.accordion .accordion__button {
  font-size: 1.25rem;
  color: #0ba1e2;
  display: block;
  cursor: pointer;
  margin: 0;
  position: relative;
  outline: 0;
  padding: 1.5rem 30px 1.5rem 0;
  transition: all 0.2s ease-in-out;
}
.accordion .accordion__button:before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.accordion .accordion__button:hover:before, .accordion .accordion__button:active:before {
  transform: translateY(-50%) rotate(0);
}
@media (min-width: 960px) {
  .accordion .accordion__button {
    font-size: 1.75rem;
  }
  .accordion .accordion__button:before {
    font-size: 20px;
  }
}
.accordion .accordion__panel {
  position: absolute;
  left: -10000em;
  padding: 0 0 0.5rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out 0s;
  z-index: 1;
}
.accordion .accordion__panel div[class^=col-] {
  width: 100% !important;
  flex: 0 0 100% !important;
  margin-left: 0 !important;
}
.accordion .isExpanded {
  position: relative;
}
.accordion .isExpanded:before {
  content: "";
  display: block;
  position: absolute;
  left: -13.85%;
  right: -13.85%;
  top: -1px;
  bottom: 0;
  background: #e6f1fc;
  z-index: -1;
}
.accordion .isExpanded .accordion__button {
  font-weight: 700;
  color: #1c437c;
  padding: 1.5rem 30px 1.5rem 0;
}
.accordion .isExpanded .accordion__button:before {
  transform: translateY(-50%) rotate(0);
  color: #1c437c;
}
@media (min-width: 960px) {
  .accordion .isExpanded .accordion__button {
    padding: 2rem 70px 2rem 0;
  }
  .accordion .isExpanded .accordion__button:before {
    transform: translateY(-50%) rotate(0) scale(1.2);
  }
}
.accordion .isExpanded > .accordion__panel {
  position: relative;
  left: auto;
  opacity: 1;
  transform: translateY(0);
}

.address__item {
  position: relative;
  padding-left: 30px;
}
.address__item:before {
  position: absolute;
  left: 0;
  color: #1c437c;
  top: 2px;
  font-size: 22px;
}
.address__item p,
.address__item address {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blockquote {
  position: relative;
}

.blockquote--yellow {
  background: #f5e51e;
  padding: 2rem 30px 1rem;
}

@media (max-width: 719.98px) {
  .blockquote--yellow {
    margin: 140px 5px 1rem -30px;
    padding: 2rem 30px 0.5rem;
  }
  .blockquote--yellow .image {
    position: absolute;
    right: -35px;
    top: -140px;
    z-index: -1;
    width: 180px;
  }
}
@media (min-width: 480px) {
  .blockquote--yellow {
    margin-right: 140px;
    margin-top: 30px;
    margin-bottom: 2rem;
  }
  .blockquote--yellow .image {
    position: absolute;
    right: -140px;
    top: -30px;
    z-index: -1;
    width: 180px;
  }
}
@media (min-width: 960px) {
  .blockquote--yellow {
    margin-right: 200px;
  }
  .blockquote--yellow .image {
    right: -200px;
    width: 240px;
  }
  .blockquote--left {
    width: 440px;
    float: left;
    margin-right: 60px;
    margin-left: -10.55%;
  }
  .blockquote--right {
    width: 440px;
    float: right;
    margin-left: 60px;
    margin-right: -10.55%;
  }
  .blockquote--yellow.blockquote--right,
  .blockquote--yellow.blockquote--left {
    margin-top: 200px;
    padding: 2rem 30px 1rem;
  }
  .blockquote--yellow.blockquote--right .image {
    position: absolute;
    right: -30px;
    top: -200px;
    z-index: -1;
  }
  .blockquote--yellow.blockquote--left .image {
    position: absolute;
    left: -30px;
    top: -200px;
    z-index: -1;
  }
}
.breadcrumb {
  display: none;
}
@media (min-width: 480px) {
  .breadcrumb {
    display: block;
  }
}
.breadcrumb ol {
  position: relative;
  margin: 0;
  padding: 0;
}
.breadcrumb ol li {
  margin: 0;
  padding: 0 6px 0 0;
  float: left;
  list-style: none;
  color: #999999;
  font-size: 0.875rem;
}
.breadcrumb ol li:before {
  font-size: 14px;
  padding-right: 5px;
  top: 0;
  position: relative;
}
.breadcrumb ol li:first-of-type:before {
  display: none;
}
.breadcrumb ol li a {
  color: #999999;
  text-decoration: none;
}
.breadcrumb ol li a:hover, .breadcrumb ol li a:focus {
  color: #1c437c;
  text-decoration: none;
}
.breadcrumb ol li:last-of-type a,
.breadcrumb ol li:last-of-type span {
  color: #999999;
}

.carousel {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width: 720px) {
  .carousel {
    margin-left: 0;
    margin-right: 0;
  }
}
.carousel .image {
  width: 100%;
}
.carousel .image__credits {
  bottom: auto;
  right: auto;
  left: 0;
  top: 0;
}

.carousel__wrap {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.carousel__wrap.slick-initialized {
  opacity: 1;
  visibility: visible;
  display: block;
}
.carousel__wrap.slick-slider {
  position: static !important;
}

.carousel.carousel__item .media,
.carousel.carousel--col-1 .carousel__item .media,
.carousel.carousel--col-2 .carousel__item .media,
.carousel.carousel--col-3 .carousel__item .media,
.carousel.carousel--col-4 .carousel__item .media {
  margin-bottom: 0;
}

.carousel.carousel--col-2 .carousel__item,
.carousel.carousel--col-3 .carousel__item,
.carousel.carousel--col-4 .carousel__item {
  margin: 0 15px;
}
.carousel.carousel--col-2 .carousel__nav,
.carousel.carousel--col-3 .carousel__nav,
.carousel.carousel--col-4 .carousel__nav {
  margin-right: 0;
}
@media (min-width: 960px) {
  .carousel.carousel--col-2 .carousel__nav,
  .carousel.carousel--col-3 .carousel__nav,
  .carousel.carousel--col-4 .carousel__nav {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .carousel.carousel--col-2 .carousel__nav,
  .carousel.carousel--col-3 .carousel__nav,
  .carousel.carousel--col-4 .carousel__nav {
    margin-right: 0;
  }
}
.carousel.carousel--col-2 .slick-dots,
.carousel.carousel--col-3 .slick-dots,
.carousel.carousel--col-4 .slick-dots {
  display: none;
}

.carousel__footer:not(.container) {
  display: flex;
  justify-content: flex-end;
}

.carousel__footer.container .col-12 {
  display: flex;
  justify-content: flex-end;
}

.carousel__nav {
  background: #f5e51e;
  width: 25rem;
  min-height: 10rem;
  padding: 2rem;
  position: relative;
  margin-right: 0;
  margin-top: -2.5rem;
}
@media (min-width: 960px) {
  .carousel__nav {
    margin-right: -8.33333%;
  }
}

.carousel__nav-link {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.carousel__arrow {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  position: absolute;
  top: 1.25rem;
  border: none;
  background: none;
  flex: 0 0 40px;
  padding: 0;
  margin: 0;
}
.carousel__arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #1c437c;
}
.carousel__arrow.carousel__arrow--next {
  right: 1.5rem;
}
.carousel__arrow.carousel__arrow--prev {
  right: 4rem;
}
.carousel__arrow.carousel__arrow--prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.carousel__status {
  font-size: 1.25rem;
  line-height: 2.5rem;
  width: 5rem;
  height: 2.5rem;
  text-align: center;
  color: #1c437c;
  position: absolute;
  top: 1.25rem;
  left: 1rem;
}
.carousel__status span {
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: 700;
  padding: 0 5px;
}
.carousel__status span + span {
  font-weight: 400;
}

.carousel__caption-container p {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.carousel__aspect-ratio {
  background: #f7f7f7;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.carousel__aspect-ratio .media,
.carousel__aspect-ratio .image,
.carousel__aspect-ratio .image a,
.carousel__aspect-ratio .image picture {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.carousel__aspect-ratio img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.carousel--col-1 .carousel__aspect-ratio {
  padding: 0;
}

.carousel__item .media__caption {
  display: none;
}

.carousel--col-3 .slick-list {
  margin: 0;
}
@media (min-width: 480px) {
  .carousel--col-3 .slick-list {
    margin: 0;
  }
}
.carousel--col-3 .carousel__item .media {
  margin: 0 0 1rem;
}

.chart--pie {
  margin-bottom: 5rem;
}
@media (min-width: 720px) {
  .chart--pie {
    margin-bottom: 6rem;
    align-items: center;
  }
}
@media (min-width: 960px) {
  .chart--pie {
    margin-bottom: 8rem;
  }
}
.chart--pie div[class^=col] {
  display: flex;
  align-items: center;
}
@media (max-width: 959.98px) {
  .chart--pie div[class^=col]:first-of-type {
    padding-right: 15px;
  }
  .chart--pie div[class^=col]:last-of-type {
    padding-left: 15px;
  }
}
.chart--pie .chart__canvas {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1111;
}
.chart--pie .chart__figure {
  position: relative;
  align-self: stretch;
  flex: 0 0 100%;
}
.chart--pie .chart__figure:after {
  content: "";
  padding-bottom: 100%;
  position: relative;
  display: block;
}
.chart--pie .chart__figure--pie:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 99%;
  height: 99%;
  background: #6aca6b;
  z-index: -1;
  border-radius: 50%;
}
.chart--pie .chart__legend {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #1c437c;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}
.chart--pie .chart__legend .legend__heading {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend .legend__heading {
    margin-bottom: 3rem;
  }
}
.chart--pie .chart__legend .legend__item {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1.5rem;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend .legend__item {
    padding-left: 3.5rem;
    margin-bottom: 2rem;
  }
}
.chart--pie .chart__legend .legend__item:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0;
  top: 10px;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend .legend__item:before {
    top: 15px;
    width: 30px;
    height: 30px;
  }
}
.chart--pie .chart__legend .legend__item:last-of-type {
  margin-bottom: 0;
}
.chart--pie .chart__legend .legend__item--green:before {
  background: #a7c438;
}
.chart--pie .chart__legend .legend__item--yellow:before {
  background: #f5e51e;
}
.chart--pie .chart__legend .legend__item--blue:before {
  background: #1c437c;
}
.chart--pie .chart__legend .legend__item--blue-light:before {
  background: #0ba1e2;
}
.chart--pie .chart__legend .legend__item--blue-lighter:before {
  background: #abd2f4;
}
.chart--pie .chart__legend .legend__item--blue-lightest:before {
  background: #e6f1fc;
}
.chart--pie .chart__legend .legend__name {
  font-weight: 300;
  display: block;
}
.chart--pie .chart__legend .legend__value {
  padding: 0;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend .legend__value {
    font-size: 2.375rem;
  }
}
.chart--pie .chart__legend .legend__disclaimer {
  padding-left: 2rem;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend .legend__disclaimer {
    padding-left: 3.5rem;
  }
}
.chart--pie .chart__legend .legend__disclaimer p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.chart--pie .chart__legend .legend__disclaimer strong {
  font-weight: 400;
}
.chart--pie .chart__legend.chart__legend--table .legend__name {
  padding: 0 4rem 0 0;
  width: 100%;
  max-width: 490px;
}
.chart--pie .chart__legend.chart__legend--table .legend__value {
  position: absolute;
  right: 0;
  top: 0;
}
.chart--pie .chart__legend .legend__item--sum {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.chart--pie .chart__legend .legend__item--sum:before {
  content: none;
  line-height: 0;
}
.chart--pie .chart__legend .legend__item--sum .legend__name,
.chart--pie .chart__legend .legend__item--sum .legend__value {
  position: relative;
}
.chart--pie .chart__legend .legend__item--sum .legend__name:after,
.chart--pie .chart__legend .legend__item--sum .legend__value:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  border-bottom: 1px solid #e8e8e8;
}
.chart--pie .chart__legend .legend__item--sum .legend__name {
  padding-top: 16px;
  min-height: 50px;
  border-bottom: 2px solid #e8e8e8;
  padding-left: 0;
}
.chart--pie .chart__legend .legend__item--sum .legend__value {
  font-size: 1.75rem;
  font-weight: 700;
  border-bottom: 2px solid #e8e8e8;
  bottom: 0;
  top: auto !important;
}
@media (min-width: 960px) {
  .chart--pie .chart__legend .legend__item--sum .legend__value {
    font-size: 2.375rem;
  }
}

/* Diagramm */
.diagramm__chart {
  position: relative;
  width: auto;
  margin: 0 -10px;
}

.diagramm__grid {
  display: none;
}

.diagramm__table {
  position: relative;
  z-index: 1;
  width: 100%;
}
.diagramm__table span {
  display: block;
  padding-left: 10px;
}
.diagramm__table .amount {
  line-height: 1.2;
  padding: 10px;
  display: inline-block;
}
.diagramm__table .amount .suffix {
  padding: 0;
}

.diagramm--vertical .diagramm__table .amount {
  line-height: 38px;
  white-space: nowrap;
}

.diagramm--vertical .diagramm__table .amount .suffix {
  display: inline;
  white-space: nowrap;
}

.diagramm .column .amount {
  color: #fff;
  transition: opacity 0.2s ease-out;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  opacity: 0;
}

.diagramm .column.column--has-transitioned .amount {
  opacity: 1;
}

.diagramm--vertical .column .amount {
  padding-right: 10px;
  text-align: right;
}

.diagramm .column .amount--above,
.diagramm .column .amount--outside,
.diagramm .column .amount--box-above {
  color: #1c437c;
  position: absolute;
  bottom: 100%;
}

.diagramm--vertical .column .amount--above,
.diagramm--vertical .column .amount--outside {
  bottom: auto;
  top: 0;
  left: 100%;
  padding: 0 0 0 10px;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.diagramm--vertical.diagramm .column--has-transitioned .amount--box-above,
.diagramm--horizontal.diagramm .column--has-transitioned .amount--box-above {
  bottom: 100%;
  padding: 10px;
  background-color: #e6f1fc;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 5px);
  transition: all 0.2s ease-out;
  opacity: 0;
  height: auto;
  line-height: 1;
  z-index: 99999;
}
.diagramm--vertical.diagramm .column--has-transitioned .amount--box-above:before,
.diagramm--horizontal.diagramm .column--has-transitioned .amount--box-above:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e6f1fc;
}
.diagramm--vertical.diagramm .column--has-transitioned:hover .amount--box-above, .diagramm--vertical.diagramm .column--has-transitioned:focus .amount--box-above,
.diagramm--horizontal.diagramm .column--has-transitioned:hover .amount--box-above,
.diagramm--horizontal.diagramm .column--has-transitioned:focus .amount--box-above {
  opacity: 1 !important;
  transform: translate(-50%, 0);
}

.diagramm--horizontal .diagramm__chart {
  padding-top: 40px;
  overflow-x: visible;
}

@media (max-width: 959.98px) {
  .chart--has-transitioned.diagramm--horizontal .diagramm__chart {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.diagramm--stacked.diagramm--vertical .amount {
  text-align: right;
}

.diagramm__label {
  font-size: 16px;
  font-weight: 400;
  color: #1c437c;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 959.98px) {
  .diagramm__label {
    font-size: 14px;
  }
}

.diagramm__label--blue {
  color: #1c437c;
}

.diagramm__label--blue-light {
  color: #0ba1e2;
}

.diagramm__label--green {
  color: #a7c438;
}

.diagramm__label--yellow {
  color: #f5e51e;
}

.diagramm__table td {
  padding: 0;
  border: 0;
  padding-top: 5px;
  height: 50px;
  vertical-align: top;
}

.diagramm__table td.col {
  height: 400px;
  padding-top: 0;
  vertical-align: bottom;
  width: 11.11%;
  padding: 0 10px;
}

.diagramm--vertical .diagramm__table td.col {
  height: 65px;
  vertical-align: top;
}

.diagramm--vertical .diagramm__table td.column-data + .diagramm--vertical table td.col {
  width: 90%;
}

.diagramm--vertical .diagramm__cell--label,
.diagramm--vertical .diagramm__table td.column-data {
  height: 60px;
  width: 10%;
  vertical-align: top;
}

.diagramm--vertical .diagramm__cell--label:first-child:last-child,
.diagramm--vertical .diagramm__table td.column-data:first-child:last-child {
  height: auto;
  width: 100%;
  vertical-align: top;
}

.diagramm .column {
  height: 0;
  width: 100%;
  transition: height 2000ms 300ms;
  box-sizing: border-box;
  background: #0ba1e2;
  min-height: 1px;
  position: relative;
}

.diagramm--horizontal .column {
  min-width: 3rem;
  max-width: 10rem;
}

.diagramm--vertical .column {
  height: 60px;
  width: 0;
  min-width: 1px;
  transition: width 2000ms 300ms;
  background: #1c437c;
}

.diagramm--stacked .column {
  min-height: 0;
}

.diagramm--stacked.diagramm--vertical .column {
  text-align: right;
  float: left;
  min-width: 0;
}

.diagramm .column--blue {
  background-color: #1c437c;
}

.diagramm .column--blue-light {
  background-color: #0ba1e2;
}

.diagramm .column--green {
  background-color: #a7c438;
}

.diagramm .column--green .amount {
  color: #1c437c;
}

.diagramm .column--yellow {
  background-color: #f5e51e;
}

.diagramm .column--yellow .amount {
  color: #1c437c;
}

.diagramm .column--5--1 .amount {
  color: #1c437c;
}

/*
.diagramm .column.incomplete {
	background: #c86400;
}

.diagramm__table .x-axis td span {
	padding-left: 0;
	font-size: $font-size-base;
	font-weight: $font-weight-bold;
	color: $blue-light;
}
*/
.diagramm .y-axis-label {
  display: none;
}

/*
.diagramm {

.legend p {
	color: #666;
	padding-left: 20px;
}

.legend ul {
	margin-bottom: 4px;
	margin-left: 20px;
}

.legend li {
	position: relative;
	padding-left: 30px;
	padding: 1px 0 1px 30px;
}

.legend li.complete {
	color: #00a500;
}

.legend li.incomplete {
	color: #c86400;
}

.legend .complete:before,
.legend .incomplete:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	display: block;
	width: 16px;
	height: 5px;
	background: #00a500;
}

.legend .incomplete:before {
	background: #c86400;
}


}

*/
@media (max-width: 767px) {
  /*
  .diagramm {
  	overflow: auto;
  }

  .diagramm table {
  	min-width: 600px;
  }

  .diagramm .bg {
  	min-width: 600px;
  }
  */
}
@media (max-width: 1023px) {
  /*
  .diagramm .legend {
  	margin-top: 20px;
  	margin-left: 0;
  }

  .diagramm .legend ul {
  	margin-left: 0;
  }

  .diagramm .legend--small {
  	margin: 0;
  	padding: 0 !important;
  }

  .diagramm .legend--small p {
  	padding: 0 !important;
  }
  */
}
@media (min-width: 1024px) {
  /*
  .diagramm {
  	display: flex;
  	align-items: flex-end;
  }

  .diagramm .legend {
  	margin-bottom: 12px;
  }

  .diagramm .legend--small {
  	margin-bottom: 64px;
  }
  */
}
.diagramm__legend {
  display: flex;
  padding-top: 2rem;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.diagramm--vertical .diagramm__legend {
  padding-top: 3rem;
}

.diagramm__legend .legend__label {
  position: relative;
  padding: 0 15px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  display: flex;
}
.diagramm__legend .legend__label:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -2px 10px 0 0;
  background: #1c437c;
  flex: 0 0 auto;
}

.diagramm__legend .legend__label--blue:before {
  background: #1c437c;
}

.diagramm__legend .legend__label--blue-light:before {
  background: #0ba1e2;
}

.diagramm__legend .legend__label--green:before {
  background: #a7c438;
}

.diagramm__legend .legend__label--yellow:before {
  background: #f5e51e;
}

.content-slider .media__caption {
  color: #000;
}
.content-slider .image {
  max-width: 480px;
}
.content-slider .media {
  margin: 0 0 2rem 0;
}
@media (min-width: 720px) {
  .content-slider .media {
    margin: 0;
  }
}

.background--content-slider {
  padding-top: 9rem;
  padding-bottom: 2rem;
}
@media (min-width: 960px) {
  .background--content-slider {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.content-slider__pager {
  position: absolute;
  top: -13rem;
  left: 0;
  background: #f5e51e;
  width: 20rem;
  padding: 2rem;
  transform: translateY(-100%);
  top: 2rem;
}
@media (min-width: 960px) {
  .content-slider__pager {
    top: 4rem;
  }
}
.content-slider__pager .slick-dots {
  display: flex;
  flex-wrap: wrap;
}
.content-slider__pager .slick-dots li {
  flex: 0 0 100%;
  display: inline-block;
  color: #1c437c;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (min-width: 960px) {
  .content-slider__pager .slick-dots li {
    margin-bottom: 1.5rem;
  }
}
.content-slider__pager .slick-dots li:last-of-type {
  margin-bottom: 0;
}

.content-slider__pager-link {
  display: inline-block;
  padding-left: 1.5rem;
  position: relative;
  transform: translateX(0);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.content-slider__pager-link:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -62%);
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}
.content-slider__pager-link:hover, .content-slider__pager-link:active, .content-slider__pager-link:focus {
  transform: translateX(3%);
}

.slick-active .content-slider__pager-link {
  font-weight: 700;
}

.slick-dots li:nth-of-type(1) .content-slider__pager-link:before {
  content: "1";
}

.slick-dots li:nth-of-type(2) .content-slider__pager-link:before {
  content: "2";
}

.slick-dots li:nth-of-type(3) .content-slider__pager-link:before {
  content: "3";
}

.cc-revoke {
  display: none !important;
}

.cc-window {
  font-family: Moderat, Arial, sans-serif !important;
  font-size: 1rem !important;
}

.cc-window.cc-theme-basic {
  padding: 1.5em !important;
  box-shadow: -5px 5px 25px 0 rgba(26, 46, 74, 0.25);
  transition: none !important;
}

.cc-window.cc-theme-basic .cc-message {
  padding: 0 0 1.5em !important;
}

.cc-window.cc-invisible {
  opacity: 0;
  display: none;
}

.dp--cookie-check {
  border-radius: 0 !important;
  border: 0 !important;
  justify-content: flex-start !important;
}

.dp--cookie-check label {
  padding: 10px !important;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block !important;
  font-weight: bold;
}
.dp--cookie-check label:first-child {
  padding-left: 0 !important;
}

.cc-link {
  opacity: 1 !important;
  padding: 0 !important;
  display: inline !important;
}

.cc-compliance {
  flex-direction: row !important;
  justify-content: center !important;
}

.cc-compliance .cc-btn {
  border-width: 2px !important;
  font-size: 1em !important;
  font-weight: normal !important;
  width: auto !important;
}

.cc-compliance .cc-btn.cc-allow {
  order: 1 !important;
}

.cc-compliance .cc-btn.cc-allow-all {
  padding: 0.75rem 3rem !important;
  margin-bottom: 0.5rem !important;
  width: 100% !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  line-height: 1.5 !important;
  border-radius: 10px !important;
}
.cc-compliance .cc-btn.cc-allow-all:hover, .cc-compliance .cc-btn.cc-allow-all:focus {
  background: #1c437c !important;
  border-color: #1c437c !important;
  color: white !important;
  text-decoration: none !important;
}

.cc-highlight .cc-btn:first-child {
  border-color: transparent !important;
}

.dp--cookie-check label[for=dp--cookie-marketing] {
  display: none !important;
}

.revoke-cookieconsent {
  cursor: pointer;
  color: #1c437c;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.revoke-cookieconsent:after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 25%;
  background: #f5e51e;
  z-index: -1;
  transition: transform 0.1s ease-in;
  transform: scaleY(1);
  transform-origin: bottom;
  transition: height 0.1s ease-in;
  height: 0%;
}
.revoke-cookieconsent:hover, .revoke-cookieconsent:active, .revoke-cookieconsent:focus {
  text-decoration: none;
}
.revoke-cookieconsent:hover:after, .revoke-cookieconsent:active:after, .revoke-cookieconsent:focus:after {
  height: 95%;
}

.cc-window.cc-theme-basic::before {
  content: "";
  transition: none;
  display: block;
  position: fixed;
  inset: 0;
  background-color: rgba(171, 210, 244, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: -1 !important;
}

.cc-window.cc-theme-basic.cc-invisible::before {
  display: none;
}

.cc-window.cc-theme-basic {
  background-color: transparent !important;
}

.cc-window.cc-theme-basic::after {
  content: "";
  transition: none;
  display: block;
  position: absolute;
  inset: 0;
  background-color: #f5e51e;
}

.cc-window.cc-theme-basic > * {
  position: relative;
  z-index: 1;
}

.dp--cookie-consent {
  overflow: hidden !important;
  height: 100% !important;
}

.counter {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  align-content: center;
}
.counter .counter__item {
  flex: 0 0 100%;
  display: inline-block;
  text-align: left;
  padding: 0;
}
@media (min-width: 400px) {
  .counter .counter__item {
    flex: 0 0 50%;
    padding: 0 15px;
  }
}
@media (min-width: 720px) {
  .counter .counter__item {
    flex: 0 0 33.3333%;
    padding: 0 30px;
  }
}
.counter .counter__number {
  font-weight: 400;
  color: #1c437c;
  line-height: 1;
  position: relative;
  font-size: 3rem;
}
@media (min-width: 960px) {
  .counter .counter__number {
    font-size: 4.375rem;
    margin-bottom: 1rem;
  }
}
.counter .counter__suffix {
  white-space: normal;
  color: #1c437c;
  position: relative;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.25rem;
  font-size: 3rem;
}
@media (min-width: 960px) {
  .counter .counter__suffix {
    font-size: 4.375rem;
    margin-top: 0;
  }
}
.counter .counter__heading {
  display: block;
  white-space: normal;
  font-weight: 700;
  color: #1c437c;
  font-size: 1.375rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  position: relative;
}
@media (min-width: 720px) {
  .counter .counter__heading {
    font-size: 1.75rem;
    margin-top: 1rem;
  }
}
.counter .counter__text {
  white-space: normal;
  font-weight: 300;
  color: #1c437c;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  position: relative;
}
@media (min-width: 720px) {
  .counter .counter__text {
    font-size: 1.375rem;
    margin-top: 1rem;
  }
}
.counter .counter__item--blue-light .counter__number,
.counter .counter__item--blue-light .counter__suffix,
.counter .counter__item--blue-light .counter__heading,
.counter .counter__item--blue-light .counter__text {
  color: #0ba1e2;
}
.counter .counter__item--green .counter__number,
.counter .counter__item--green .counter__suffix,
.counter .counter__item--green .counter__heading,
.counter .counter__item--green .counter__text {
  color: #a7c438;
}
.counter .counter__item--yellow .counter__number,
.counter .counter__item--yellow .counter__suffix,
.counter .counter__item--yellow .counter__heading,
.counter .counter__item--yellow .counter__text {
  color: #f5e51e;
}

.deckhead {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #000;
  margin-bottom: 0.5rem;
  display: flex;
}
.deckhead > * {
  display: inline-block;
  line-height: 1;
}
.deckhead > h5 + span:before,
.deckhead > h5 + date:before,
.deckhead > span + span:before,
.deckhead > span + date:before,
.deckhead > date + span:before,
.deckhead > date + date:before {
  content: "–";
  padding: 0 4px;
}
@media (min-width: 480px) {
  .deckhead > h5 + span:before,
  .deckhead > h5 + date:before,
  .deckhead > span + span:before,
  .deckhead > span + date:before,
  .deckhead > date + span:before,
  .deckhead > date + date:before {
    padding: 0 10px;
  }
}
.deckhead .deckhead__category {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #000;
  text-transform: uppercase;
}
.deckhead .deckhead__state {
  font-size: 1rem;
}
.deckhead .deckhead__location {
  text-transform: uppercase;
}

.filter .form-label {
  color: white;
  font-weight: 600;
}
.filter .filter__reset {
  color: white;
  padding-left: 20px;
  position: relative;
}
.filter .filter__reset:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
}
.filter .filter__reset:hover, .filter .filter__reset:focus, .filter .filter__reset:active {
  text-decoration: none;
  color: #f5e51e;
}
.filter .SumoSelect .CaptionCont.SelectBox {
  background-color: white;
  border-color: #1c437c;
  color: #1c437c;
}
.filter .SumoSelect > .CaptionCont label {
  background-color: #f5e51e;
  border-radius: 0 10px 10px 0;
}
.filter .SumoSelect.open .CaptionCont.SelectBox {
  border-color: #abd2f4;
  border-radius: 10px 10px 0 0;
}
.filter .SumoSelect.open .search-txt {
  border-radius: 10px 10px 0 0;
  height: calc(2.75rem + 3px);
}
.filter .SumoSelect.open > .CaptionCont label {
  border-radius: 0 10px 0 0;
}
.filter .SumoSelect.open > .optWrapper {
  top: 48px !important;
  border-radius: 0 0 10px 10px;
}
.filter .SumoSelect > .CaptionCont > span {
  padding-right: 50px;
}
.filter .SumoSelect .select-all > span i,
.filter .SumoSelect .select-all span i,
.filter .SumoSelect > .optWrapper.multiple > .options li.opt > span i,
.filter .SumoSelect > .optWrapper.multiple > .options li.opt span i {
  border-color: #abd2f4;
}
.filter .button--yellow:hover,
.filter .button--yellow:active,
.filter .button--yellow:focus {
  color: #1c437c !important;
  border-color: #a7c438 !important;
  background-color: #a7c438 !important;
}

.form-group--margin-top {
  margin-top: 2rem;
}

@media (min-width: 1200px) {
  .hero--news .hero__container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media (max-width: 959.98px) {
  .filter--news .form-group--margin-top {
    margin-top: 0;
  }
}
@media (min-width: 720px) {
  .filter--news .filter__reset {
    margin-top: 0.75rem;
    line-height: 1.5;
    display: inline-block;
  }
}

.filter--projectdatabase {
  position: relative;
  padding: 3rem 2rem 0;
  z-index: 2;
}
.filter--projectdatabase:before {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: #1c437c url("/assets/images/puzzle_white15.svg") top 6% left 6% no-repeat;
  background-size: 3000px auto;
}
.filter--projectdatabase h2 {
  display: inline-block;
  padding: 0.5rem 2.5rem;
  background: #0ba1e2;
  color: white;
  position: absolute;
  left: 2rem;
  top: -1.5rem;
  font-size: 1.75rem;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .filter--projectdatabase {
    margin-left: -30px;
  }
}
@media (max-width: 719.98px) {
  .filter--projectdatabase.mb-7 {
    margin-bottom: 0 !important;
  }
}
.filter--projectdatabase .form-group {
  margin-bottom: 2rem;
}
.filter--projectdatabase .form-info {
  color: white;
  position: relative;
  top: -0.25rem;
  margin-bottom: 0.25rem;
}
.filter--projectdatabase .form-info a {
  color: white;
  text-decoration: underline;
}

.headline__border {
  border-bottom: 1px solid #e8e8e8;
}

.headline--widget .h3,
.headline--widget .h4 {
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.headline--blue-light .headline__heading {
  color: #0ba1e2;
}

.headline__deckhead > * {
  color: #1c437c !important;
}

.hero {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .hero {
    padding-top: 0;
  }
}
.hero .media {
  margin: 0;
}
.hero .image__credits {
  right: auto;
  left: 0;
}
.hero .image__credits {
  bottom: auto;
  top: 0;
}
@media (min-width: 960px) {
  .hero .image__credits {
    bottom: 0;
    top: auto;
  }
}

.hero--banner {
  position: relative;
  height: 100%;
}
.hero--banner:before {
  content: "";
  display: block;
  background: #f5e51e url("../images/puzzle_white50.svg") top 6% left 6% no-repeat;
  background-size: 3000px auto;
  top: 0;
  bottom: 0;
  left: 30px;
  right: 0;
  position: absolute;
}
@media (min-width: 480px) {
  .hero--banner:before {
    right: 30px;
  }
}
@media (min-width: 960px) {
  .hero--banner:before {
    top: 0;
  }
}
@media (min-width: 1800px) {
  .hero--banner:before {
    right: auto;
    left: 50%;
    width: 1740px;
    transform: translateX(-50%);
  }
}
.hero--banner .hero__container {
  padding: 1.5rem 2rem 1rem 4rem;
  position: relative;
}
@media (min-width: 480px) {
  .hero--banner .hero__container {
    padding: 1.5rem 4rem 1rem;
  }
}
@media (min-width: 720px) {
  .hero--banner .hero__container {
    padding: 4rem 5rem 3rem;
  }
}

.hero--dark h1,
.hero--dark h2,
.hero--dark h3,
.hero--dark h4,
.hero--dark h5,
.hero--dark p,
.hero--dark a[class^=icon-link] {
  color: #fff;
}
.hero--dark h1:hover, .hero--dark h1:active, .hero--dark h1:focus,
.hero--dark h2:hover,
.hero--dark h2:active,
.hero--dark h2:focus,
.hero--dark h3:hover,
.hero--dark h3:active,
.hero--dark h3:focus,
.hero--dark h4:hover,
.hero--dark h4:active,
.hero--dark h4:focus,
.hero--dark h5:hover,
.hero--dark h5:active,
.hero--dark h5:focus,
.hero--dark p:hover,
.hero--dark p:active,
.hero--dark p:focus,
.hero--dark a[class^=icon-link]:hover,
.hero--dark a[class^=icon-link]:active,
.hero--dark a[class^=icon-link]:focus {
  color: #fff;
}
.hero--dark:before {
  background: #1c437c url("../images/puzzle_white15.svg") top 6% left 6% no-repeat;
  background-size: 3000px auto;
}

.hero--news .hero__container {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .hero--news .hero__container {
    padding: 2rem 30px 1.5rem;
  }
}

@media (min-width: 960px) {
  .hero--banner-image {
    max-width: 1600px;
    margin: 0 auto 2rem;
    clear: both;
    overflow: hidden;
  }
}
.hero--banner-image .hero__image {
  background: #f7f7f7;
  margin: 0 30px 0 0;
  max-width: 480px;
}
@media (min-width: 720px) {
  .hero--banner-image .hero__image {
    max-width: 70%;
  }
}
@media (min-width: 960px) {
  .hero--banner-image .hero__image {
    width: 50%;
    max-width: 900px;
    margin: 0 0 0 30px;
    float: left;
  }
}
.hero--banner-image .hero__container {
  background: #f5e51e;
  padding: 1.5rem 2rem 1rem;
  margin: -30px 0 0 30px;
  position: relative;
  z-index: 1;
  width: auto;
}
@media (min-width: 720px) {
  .hero--banner-image .hero__container {
    padding: 2.5rem 3rem 2rem;
  }
}
@media (min-width: 960px) {
  .hero--banner-image .hero__container {
    width: 50%;
    max-width: 900px;
    float: right;
    padding: 2.5rem 3rem 2rem;
    margin: 60px 30px 0 -60px;
  }
}
@media (min-width: 1200px) {
  .hero--banner-image .hero__container {
    padding: 4rem 5rem 3rem;
  }
}

.stage .slick-initialized .slick-slide {
  display: flex;
}
.stage .slick-track {
  display: flex;
  align-items: stretch;
}

.stage__item {
  display: flex;
  justify-content: center;
  position: relative;
  height: auto;
}

.stage__inner {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.stage__inner.slick-initialized {
  opacity: 1;
}

.stage__card {
  overflow: hidden;
  position: relative;
  background: #e6f1fc;
}
.stage__card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url("../images/puzzle_white50.svg") top 6% left 6% no-repeat;
  background-size: 3000px auto;
  opacity: 1;
}
.stage__card .stage__inner-wrap {
  color: #1c437c;
  text-decoration: none;
}
.stage__card .stage__inner-wrap:hover, .stage__card .stage__inner-wrap:active, .stage__card .stage__inner-wrap:focus {
  color: #1c437c;
}

.stage__card--yellow {
  background-color: #f5e51e;
}
.stage__card--yellow:after {
  background: url("../images/puzzle_white50.svg") top 8% left 23% no-repeat;
  background-size: 3000px auto;
  opacity: 0.8;
}
.stage__card--yellow .stage__inner-wrap {
  color: #1c437c;
}
.stage__card--yellow .stage__inner-wrap:hover, .stage__card--yellow .stage__inner-wrap:active, .stage__card--yellow .stage__inner-wrap:focus {
  color: #1c437c;
}

.stage__card--blue {
  background-color: #1c437c;
}
.stage__card--blue:after {
  background: url("../images/puzzle_white50.svg") top 79% left 27% no-repeat;
  background-size: 3000px auto;
  opacity: 0.2;
}
.stage__card--blue .stage__inner-wrap {
  color: #e6f1fc;
}
.stage__card--blue .stage__inner-wrap:hover, .stage__card--blue .stage__inner-wrap:active, .stage__card--blue .stage__inner-wrap:focus {
  color: #e6f1fc;
}

.stage__inner-wrap {
  text-decoration: none;
  display: block;
  height: 100%;
  padding: 4rem 2rem;
}
@media (min-width: 480px) {
  .stage__inner-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 720px) {
  .stage__inner-wrap {
    padding: 6rem;
  }
}
@media (min-width: 960px) {
  .stage__inner-wrap {
    padding: 4rem 4.5rem 4rem 4rem;
  }
}
@media (min-width: 1200px) {
  .stage__inner-wrap {
    padding: 4rem;
  }
}

.stage__item--2in1 .stage__inner-wrap {
  padding: 1.5rem;
}
@media (min-width: 480px) {
  .stage__item--2in1 .stage__inner-wrap {
    padding: 2rem;
  }
}
@media (min-width: 720px) {
  .stage__item--2in1 .stage__inner-wrap {
    padding: 4rem 2rem;
  }
}
@media (min-width: 960px) {
  .stage__item--2in1 .stage__inner-wrap {
    padding: 3rem 2.5rem 3rem 2rem;
  }
}
@media (min-width: 1200px) {
  .stage__item--2in1 .stage__inner-wrap {
    padding: 4rem 2rem;
  }
}

.stage__heading {
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1em;
  color: inherit !important;
  text-decoration: inherit;
  font-size: 1.5rem;
}
@media (min-width: 480px) {
  .stage__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 720px) {
  .stage__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 960px) {
  .stage__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .stage__heading {
    font-size: 1.75rem;
  }
}

.stage__item--2in1 .stage__heading {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
@media (min-width: 480px) {
  .stage__item--2in1 .stage__heading {
    font-size: 1.75rem;
    margin-bottom: 0.75em;
  }
}
@media (min-width: 720px) {
  .stage__item--2in1 .stage__heading {
    font-size: 1.75rem;
    margin-bottom: 1em;
  }
}
@media (min-width: 960px) {
  .stage__item--2in1 .stage__heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .stage__item--2in1 .stage__heading {
    font-size: 1.75rem;
  }
}

.stage__copy {
  margin-bottom: 0;
  color: inherit;
  text-decoration: inherit;
  font-size: 1rem;
}
@media (min-width: 480px) {
  .stage__copy {
    font-size: 1rem;
  }
}
@media (min-width: 720px) {
  .stage__copy {
    font-size: 1.25rem;
  }
}
@media (min-width: 960px) {
  .stage__copy {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .stage__copy {
    font-size: 1.25rem;
  }
}

.stage__item--2in1 .stage__copy {
  font-size: 0.875rem;
}
@media (min-width: 480px) {
  .stage__item--2in1 .stage__copy {
    font-size: 0.875rem;
  }
}
@media (min-width: 720px) {
  .stage__item--2in1 .stage__copy {
    font-size: 1rem;
  }
}
@media (min-width: 960px) {
  .stage__item--2in1 .stage__copy {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .stage__item--2in1 .stage__copy {
    font-size: 1rem;
  }
}

.read-more.stage__read-more {
  margin: 1.5rem 0 0 0;
}

.stage__inner-wrap:hover .read-more.stage__read-more,
.stage__inner-wrap:active .read-more.stage__read-more,
.stage__inner-wrap:focus .read-more.stage__read-more {
  padding-right: 5rem;
}
.stage__inner-wrap:hover .read-more.stage__read-more i,
.stage__inner-wrap:active .read-more.stage__read-more i,
.stage__inner-wrap:focus .read-more.stage__read-more i {
  width: 4rem;
}

.stage__image {
  margin: 0;
  z-index: -1;
  max-width: 100%;
}
@media (min-width: 960px) {
  .stage__image {
    margin-right: 0;
  }
}
.stage__image .image__credits {
  bottom: auto;
  top: 0;
}
@media (min-width: 960px) {
  .stage__image .image__credits {
    bottom: 0;
    top: auto;
  }
}

.stage--wide {
  margin: 0 auto;
  max-width: 1860px;
}
@media (min-width: 960px) {
  .stage--wide .slick-list {
    padding-bottom: 3.5rem;
  }
}
.stage--wide .slick-track {
  align-items: start;
}
.stage--wide .stage__item {
  flex-wrap: wrap;
  position: relative;
  margin: 0;
}
@media (min-width: 960px) {
  .stage--wide .stage__item {
    flex-wrap: nowrap;
  }
}
.stage--wide .stage__card {
  width: 100%;
  order: 2;
  margin-left: 30px;
  margin-top: -30px;
}
@media (min-width: 960px) {
  .stage--wide .stage__card {
    position: absolute;
    top: 0;
    right: 33.333%;
    margin: 0;
    height: 100%;
    width: 480px;
    z-index: 1;
    transform: translate(50%, 3.5rem);
  }
}

.stage--stacked {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) {
  .stage--stacked .slick-list {
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 960px) {
  .stage--stacked .slick-list {
    padding-left: 60px;
    padding-bottom: 3.5rem;
  }
}
.stage--stacked .stage__item {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .stage--stacked .stage__item {
    margin-left: -60px;
  }
}
@media (min-width: 960px) {
  .stage--stacked .slick-track > div:nth-child(even) {
    transform: translateY(3.5rem) translateX(-60px);
  }
  .stage--stacked .slick-track > div:nth-child(even).slick-active {
    transform: translateX(0) translateY(3.5rem);
  }
  .stage--stacked .slick-track > div:nth-child(even).slick-active + .stage__item.slick-active + .stage__item {
    transform: translateY(3.5rem) translateX(60px);
  }
}
@media (min-width: 1200px) {
  .stage--stacked .slick-track > div:nth-child(even) {
    transform: translateY(0) translateX(-60px);
  }
  .stage--stacked .slick-track > div:nth-child(even).slick-active {
    transform: translateX(0) translateY(0);
  }
  .stage--stacked .slick-track > div:nth-child(even).slick-active + .stage__item.slick-active + .stage__item {
    transform: translateY(0) translateX(60px);
  }
}
@media (min-width: 960px) {
  .stage--stacked .slick-track > div:nth-child(odd) {
    transform: translateX(-60px) translateY(0);
  }
  .stage--stacked .slick-track > div:nth-child(odd).slick-active {
    transform: translateX(0) translateY(0);
  }
  .stage--stacked .slick-track > div:nth-child(odd).slick-active + .stage__item.slick-active + .stage__item {
    transform: translateX(60px) translateY(0);
  }
}
@media (min-width: 1200px) {
  .stage--stacked .slick-track > div:nth-child(odd) {
    transform: translateX(-60px) translateY(0);
  }
  .stage--stacked .slick-track > div:nth-child(odd).slick-active {
    transform: translateX(0) translateY(0);
  }
  .stage--stacked .slick-track > div:nth-child(odd).slick-active + .stage__item.slick-active + .stage__item {
    transform: translateX(60px) translateY(0);
  }
}
.stage--stacked .stage__card {
  flex: 1 1 100%;
  height: 37.5rem;
  transform: translateY(0);
}
.stage--stacked .stage__card.stage__card--pull-up {
  transform: translateY(0);
}
@media (min-width: 720px) {
  .stage--stacked .stage__card.stage__card--pull-up {
    transform: translateY(3.5rem);
  }
}
@media (min-width: 960px) {
  .stage--stacked .stage__card.stage__card--pull-up {
    transform: translateY(0);
  }
}
@media (min-width: 1200px) {
  .stage--stacked .stage__card.stage__card--pull-up {
    transform: translateY(3.5rem);
  }
}
.stage--stacked .stage__item--2in1 {
  flex-direction: column;
}
@media (min-width: 720px) {
  .stage--stacked .stage__item--2in1 {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .stage--stacked .stage__item--2in1 {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .stage--stacked .stage__item--2in1 {
    flex-direction: row;
  }
}
.stage--stacked .stage__item--2in1 .stage__card {
  flex: 1 1 100%;
  height: 18.75rem;
  margin-right: 30px;
}
@media (min-width: 720px) {
  .stage--stacked .stage__item--2in1 .stage__card {
    flex: 1 1 50%;
    height: 37.5rem;
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .stage--stacked .stage__item--2in1 .stage__card {
    flex: 1 1 100%;
    height: 18.75rem;
  }
}
@media (min-width: 1200px) {
  .stage--stacked .stage__item--2in1 .stage__card {
    flex: 1 1 50%;
    height: 37.5rem;
  }
}
.stage--stacked .stage__item--2in1 .stage__card + .stage__card {
  margin-left: 30px;
  margin-top: -30px;
  margin-right: 0;
}
@media (min-width: 720px) {
  .stage--stacked .stage__item--2in1 .stage__card + .stage__card {
    margin-left: -60px;
    margin-top: 0;
  }
}
@media (min-width: 960px) {
  .stage--stacked .stage__item--2in1 .stage__card + .stage__card {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .stage--stacked .stage__item--2in1 .stage__card + .stage__card {
    margin-left: -60px;
  }
}
@media (max-width: 959.98px) {
  .stage--stacked .stage__item--2in1 .stage__card.stage__card--image {
    z-index: -1;
  }
}
.stage--stacked .stage__item--2in1 .stage__card .stage__inner-wrap {
  padding-right: 5rem;
}
.stage--stacked .stage__card--image .media,
.stage--stacked .stage__card--image .image {
  height: 100%;
}
.stage--stacked .stage__card--image picture {
  width: 100%;
  height: 100%;
  display: flex;
}
.stage--stacked .stage__card--image picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.stage__item[data-slick-index="0"] {
  z-index: 10;
}
.stage__item[data-slick-index="1"] {
  z-index: 20;
}
.stage__item[data-slick-index="2"] {
  z-index: 30;
}
.stage__item[data-slick-index="3"] {
  z-index: 40;
}
.stage__item[data-slick-index="4"] {
  z-index: 50;
}
.stage__item[data-slick-index="5"] {
  z-index: 60;
}
.stage__item[data-slick-index="6"] {
  z-index: 70;
}
.stage__item[data-slick-index="7"] {
  z-index: 80;
}
.stage__item[data-slick-index="8"] {
  z-index: 90;
}
.stage__item[data-slick-index="9"] {
  z-index: 100;
}
.stage__item[data-slick-index="10"] {
  z-index: 110;
}
.stage__item[data-slick-index="11"] {
  z-index: 120;
}
.stage__item[data-slick-index="12"] {
  z-index: 130;
}
.stage__item[data-slick-index="13"] {
  z-index: 140;
}
.stage__item[data-slick-index="14"] {
  z-index: 150;
}
.stage__item[data-slick-index="15"] {
  z-index: 160;
}

.stage__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
}
@media (min-width: 480px) {
  .stage__nav {
    padding-top: 1rem;
  }
}
@media (min-width: 960px) {
  .stage__nav {
    padding-top: 2rem;
  }
}

.stage__arrow {
  border: none;
  background: none;
  flex: 0 0 40px;
  height: 2.5rem;
  position: relative;
  padding: 0;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
.stage__arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #1c437c;
}
.stage__arrow.stage__arrow--prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.stage__arrow.slick-disabled {
  opacity: 0.4;
}

.stage__status {
  font-size: 1.25rem;
  margin: 0 1rem;
  width: 5rem;
  text-align: center;
  color: #1c437c;
}
.stage__status span {
  font-weight: 700;
  padding: 0 5px;
}
.stage__status span + span {
  font-weight: 400;
}

html::before {
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  font-family: sans-serif;
  padding: 0.5rem 1rem;
  position: fixed;
  right: 0;
  top: 0;
  opacity: 0;
  z-index: 999;
  content: "xxs (0)";
}
@media (min-width: 400px) {
  html::before {
    content: "xs (400px)";
  }
}
@media (min-width: 480px) {
  html::before {
    content: "sm (480px)";
  }
}
@media (min-width: 720px) {
  html::before {
    content: "md (720px)";
  }
}
@media (min-width: 960px) {
  html::before {
    content: "lg (960px)";
  }
}
@media (min-width: 1200px) {
  html::before {
    content: "xl (1200px)";
  }
}
@media (min-width: 1900px) {
  html::before {
    content: "xxl (1900px)";
  }
}

.highlight__wrap {
  padding: 2rem;
}

.highlight__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 720px) {
  .highlight__title {
    font-size: 1.375rem;
  }
}

.highlight__text {
  padding: 0 0 1.5rem;
}
.highlight__text p {
  font-size: 1rem;
  margin-bottom: 0;
}

.highlight__read-more {
  margin-bottom: 1rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 35px;
}
.highlight__read-more i {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  overflow: hidden;
}
.highlight__read-more i:before {
  position: absolute;
  left: -44px;
  top: 6px;
  bottom: 6px;
  width: 64px;
  text-align: left;
}
.highlight__read-more:hover, .highlight__read-more:focus {
  padding-right: 80px;
}
.highlight__read-more:hover i, .highlight__read-more:focus i {
  width: 64px;
}
.highlight__read-more:hover i:before, .highlight__read-more:focus i:before {
  left: 0;
}

.highlight__item--blue,
.highlight__item--azure,
.highlight__item--green {
  background: #1c437c;
}
.highlight__item--blue .highlight__title,
.highlight__item--blue .highlight__text,
.highlight__item--blue .highlight__read-more,
.highlight__item--azure .highlight__title,
.highlight__item--azure .highlight__text,
.highlight__item--azure .highlight__read-more,
.highlight__item--green .highlight__title,
.highlight__item--green .highlight__text,
.highlight__item--green .highlight__read-more {
  color: #fff;
}
.highlight__item--blue .highlight__linkgroup ul li a[class^=icon-link],
.highlight__item--azure .highlight__linkgroup ul li a[class^=icon-link],
.highlight__item--green .highlight__linkgroup ul li a[class^=icon-link] {
  color: #fff !important;
}
.highlight__item--blue .highlight__linkgroup ul li a[class^=icon-link]:before,
.highlight__item--azure .highlight__linkgroup ul li a[class^=icon-link]:before,
.highlight__item--green .highlight__linkgroup ul li a[class^=icon-link]:before {
  color: #fff !important;
}
.highlight__item--blue .highlight__linkgroup ul li a[class^=icon-link]:hover,
.highlight__item--azure .highlight__linkgroup ul li a[class^=icon-link]:hover,
.highlight__item--green .highlight__linkgroup ul li a[class^=icon-link]:hover {
  color: #fff !important;
}
.highlight__item--blue .highlight__linkgroup ul li a[class^=icon-link]:hover:before,
.highlight__item--azure .highlight__linkgroup ul li a[class^=icon-link]:hover:before,
.highlight__item--green .highlight__linkgroup ul li a[class^=icon-link]:hover:before {
  color: #fff !important;
}
.highlight__item--blue .highlight__linkgroup ul li span,
.highlight__item--blue .highlight__linkgroup ul li strong,
.highlight__item--azure .highlight__linkgroup ul li span,
.highlight__item--azure .highlight__linkgroup ul li strong,
.highlight__item--green .highlight__linkgroup ul li span,
.highlight__item--green .highlight__linkgroup ul li strong {
  color: #fff !important;
}
.highlight__item--blue .highlight__text p a,
.highlight__item--blue .highlight__text li a,
.highlight__item--azure .highlight__text p a,
.highlight__item--azure .highlight__text li a,
.highlight__item--green .highlight__text p a,
.highlight__item--green .highlight__text li a {
  color: #fff !important;
}

.highlight__item--azure {
  background: #0ba1e2;
}

.highlight__item--blue-light {
  background: #e6f1fc;
}

.highlight__item--yellow {
  background: #f5e51e;
}

.highlight__item--green {
  background: #a7c438;
}

.highlight__item {
  margin-right: -30px;
}
.highlight__item a {
  text-decoration: none;
}
.highlight__item a:hover, .highlight__item a:focus {
  text-decoration: none;
}
.highlight__item a:hover .highlight__read-more, .highlight__item a:focus .highlight__read-more {
  padding-right: 80px;
}
.highlight__item a:hover .highlight__read-more i, .highlight__item a:focus .highlight__read-more i {
  width: 64px;
}
.highlight__item a:hover .highlight__read-more i:before, .highlight__item a:focus .highlight__read-more i:before {
  left: 0;
}
.highlight__item .highlight__text p a,
.highlight__item .highlight__text li a {
  text-decoration: underline;
}
.highlight__item .highlight__text p a:hover, .highlight__item .highlight__text p a:active, .highlight__item .highlight__text p a:focus,
.highlight__item .highlight__text li a:hover,
.highlight__item .highlight__text li a:active,
.highlight__item .highlight__text li a:focus {
  text-decoration: none;
}

@media (min-width: 480px) {
  .highlight__item {
    margin-right: 0px;
  }
}
@media (min-width: 720px) {
  .highlight--col-2 {
    display: flex;
  }
  .highlight--col-2 .highlight__item {
    flex: 0 0 50%;
  }
  .highlight--col-3 {
    display: flex;
  }
  .highlight--col-3 .highlight__item {
    flex: 0 0 33.33333%;
  }
}
.image {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: relative;
}

.lightbox {
  display: block;
  position: relative;
}
.lightbox:hover .icon-lightbox, .lightbox:active .icon-lightbox {
  opacity: 1;
}

.icon-lightbox {
  text-shadow: rgba(0, 0, 0, 0.4) 0 0 20px;
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  line-height: 1;
  color: #fff;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

/* overwriting original fancybox img-paths start */
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: none !important;
}

#fancybox-loading div {
  background-image: none !important;
}

.fancybox-opened {
  z-index: 9999;
  width: 100vw !important;
  max-height: 100vh;
}

.fancybox-inner {
  width: auto !important;
  max-width: 100vw;
  height: auto !important;
}

.fancybox-image {
  width: 100%;
  height: auto !important;
}

.fancybox-overlay {
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.95) !important;
  cursor: pointer;
}

.fancybox-close {
  text-decoration: none !important;
  text-indent: -9999em;
  border-radius: 50%;
  right: 50px;
  top: 10px;
  width: 40px;
  height: 40px;
  color: #1c437c;
  transition: all 0.2s ease-in-out;
}
.fancybox-close:before {
  display: block;
  text-indent: 0em;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fancybox-close:hover {
  color: #1c437c;
  background-color: rgba(167, 196, 56, 0.2);
}

.fancybox-skin {
  border-radius: 0;
  background: none !important;
}

.fancybox-opened .fancybox-skin {
  box-shadow: none;
}

.fancybox-nav {
  position: absolute;
  width: 60px;
  height: 60px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.fancybox-nav:before {
  font-size: 60px;
  line-height: 60px;
  color: #1c437c;
  transition: all 0.2s ease-in-out;
  position: absolute;
  text-align: center;
  width: 60px;
}
.fancybox-nav:hover {
  text-decoration: none;
  color: #1c437c;
}
.fancybox-nav span {
  display: none !important;
}
.fancybox-nav.fancybox-prev {
  left: -60px;
}
.fancybox-nav.fancybox-next {
  right: -60px;
}

.fancybox-error {
  color: red;
  padding: 0 0 20px !important;
}

/* overwriting original fancybox img-paths end */
.fancybox-title {
  min-height: 120px;
}
.fancybox-title .text {
  margin: 0;
  max-width: 120ch;
  text-align: left;
  color: #1c437c;
}
.fancybox-title .credits,
.fancybox-title .caption {
  position: relative;
  font: 400 16px/1.5 "Moderat", Arial, sans-serif;
}
.fancybox-title .credits {
  font-style: italic;
  margin-bottom: 0.5em;
}
.fancybox-title .caption {
  margin-bottom: 0;
}
.fancybox-title a.download {
  float: right;
  display: block;
  padding: 0 0 0 32px;
  width: 0;
  height: 32px;
  color: #1c437c;
  overflow: hidden;
  position: absolute;
  right: 0px;
  margin: 30px 0px 0px;
}
.fancybox-title a.download:before {
  position: absolute;
  left: 1px;
  top: 0;
  font-size: 32px;
  line-height: 100%;
}

.linkgroup ul,
.link-group ul {
  list-style: none !important;
  padding: 0;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 2rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
.linkgroup ul li,
.link-group ul li {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e8e8;
  flex: 1 1 100%;
}
.linkgroup ul li:before,
.link-group ul li:before {
  display: none !important;
}
.linkgroup ul li:first-of-type,
.link-group ul li:first-of-type {
  border-top: 1px solid #e8e8e8;
}
.linkgroup ul li:last-of-type,
.link-group ul li:last-of-type {
  border-bottom: 0;
}
.linkgroup ul li:first-of-type:last-of-type,
.link-group ul li:first-of-type:last-of-type {
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 960px) {
  .linkgroup ul li,
  .link-group ul li {
    padding: 1.25rem 0;
  }
}
.linkgroup a[class^=icon-link],
.link-group a[class^=icon-link] {
  color: #1c437c;
  padding-left: 30px;
  font-weight: 600;
  font-size: 1rem;
}
.linkgroup a[class^=icon-link]:before,
.link-group a[class^=icon-link]:before {
  font-size: 1.125rem;
  color: inherit;
}
@media (min-width: 960px) {
  .linkgroup a[class^=icon-link]:before,
  .link-group a[class^=icon-link]:before {
    font-size: 1.25rem;
  }
}
.linkgroup a[class^=icon-link] .icon-link__meta,
.linkgroup a[class^=icon-link] .icon-link__desc,
.link-group a[class^=icon-link] .icon-link__meta,
.link-group a[class^=icon-link] .icon-link__desc {
  font-size: 1rem;
  font-weight: 300;
}
.linkgroup a[class^=icon-link] .icon-link__meta,
.link-group a[class^=icon-link] .icon-link__meta {
  white-space: nowrap;
}
.linkgroup a[class^=icon-link] .icon-link__desc,
.link-group a[class^=icon-link] .icon-link__desc {
  display: block;
}
.linkgroup a[class^=icon-link] .icon-link__title,
.link-group a[class^=icon-link] .icon-link__title {
  position: relative;
  display: inline-block;
}
.linkgroup a[class^=icon-link] .icon-link__title:after,
.link-group a[class^=icon-link] .icon-link__title:after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 25%;
  background: #f5e51e;
  z-index: -1;
  opacity: 0;
  transition: height 0.1s ease-in;
  height: 0%;
}
.linkgroup a[class^=icon-link]:hover, .linkgroup a[class^=icon-link]:active, .linkgroup a[class^=icon-link]:focus,
.link-group a[class^=icon-link]:hover,
.link-group a[class^=icon-link]:active,
.link-group a[class^=icon-link]:focus {
  text-decoration: none;
}
.linkgroup a[class^=icon-link]:hover .icon-link__title:after, .linkgroup a[class^=icon-link]:active .icon-link__title:after, .linkgroup a[class^=icon-link]:focus .icon-link__title:after,
.link-group a[class^=icon-link]:hover .icon-link__title:after,
.link-group a[class^=icon-link]:active .icon-link__title:after,
.link-group a[class^=icon-link]:focus .icon-link__title:after {
  opacity: 1;
  height: 95%;
}
.linkgroup a[class^=icon-link]:hover,
.link-group a[class^=icon-link]:hover {
  color: #1c437c;
}
.linkgroup a[class^=icon-link]:hover .icon-link__meta,
.linkgroup a[class^=icon-link]:hover .icon-link__desc,
.link-group a[class^=icon-link]:hover .icon-link__meta,
.link-group a[class^=icon-link]:hover .icon-link__desc {
  color: #1c437c;
}
@media (min-width: 960px) {
  .linkgroup a[class^=icon-link],
  .link-group a[class^=icon-link] {
    padding-left: 40px;
    font-size: 1.25rem;
  }
  .linkgroup a[class^=icon-link] .icon-link__meta,
  .linkgroup a[class^=icon-link] .icon-link__desc,
  .link-group a[class^=icon-link] .icon-link__meta,
  .link-group a[class^=icon-link] .icon-link__desc {
    font-size: 1.25rem;
  }
}
.linkgroup a.icon-link--intern:before,
.link-group a.icon-link--intern:before {
  top: 5px;
}
@media (min-width: 960px) {
  .linkgroup a.icon-link--intern:before,
  .link-group a.icon-link--intern:before {
    top: 7px;
  }
}
.linkgroup a.icon-link--extern:before,
.link-group a.icon-link--extern:before {
  top: 4px;
}
@media (min-width: 960px) {
  .linkgroup a.icon-link--extern:before,
  .link-group a.icon-link--extern:before {
    top: 6px;
  }
}
.linkgroup a.icon-link--mail:before,
.link-group a.icon-link--mail:before {
  top: 4px;
  left: 2px;
}
@media (min-width: 960px) {
  .linkgroup a.icon-link--mail:before,
  .link-group a.icon-link--mail:before {
    top: 6px;
  }
}
.linkgroup a.icon-link--download:before,
.link-group a.icon-link--download:before {
  top: 5px;
}
@media (min-width: 960px) {
  .linkgroup a.icon-link--download:before,
  .link-group a.icon-link--download:before {
    top: 6px;
  }
}
.linkgroup a.icon-link--phone:before,
.link-group a.icon-link--phone:before {
  font-size: 28px;
  top: 3px;
  left: -2px;
}
@media (min-width: 480px) {
  .linkgroup.linkgroup--col-2 ul, .linkgroup.link-group--col-2 ul,
  .link-group.linkgroup--col-2 ul,
  .link-group.link-group--col-2 ul {
    flex-flow: row wrap;
  }
}
@media (min-width: 480px) {
  .linkgroup.linkgroup--col-2 ul li:first-of-type:last-of-type, .linkgroup.link-group--col-2 ul li:first-of-type:last-of-type,
  .link-group.linkgroup--col-2 ul li:first-of-type:last-of-type,
  .link-group.link-group--col-2 ul li:first-of-type:last-of-type {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 480px) {
  .linkgroup.linkgroup--col-2 ul li, .linkgroup.link-group--col-2 ul li,
  .link-group.linkgroup--col-2 ul li,
  .link-group.link-group--col-2 ul li {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - (2 * 60px / 2));
    max-width: calc(50% - (2 * 60px / 2));
  }
  .linkgroup.linkgroup--col-2 ul li:nth-of-type(2), .linkgroup.link-group--col-2 ul li:nth-of-type(2),
  .link-group.linkgroup--col-2 ul li:nth-of-type(2),
  .link-group.link-group--col-2 ul li:nth-of-type(2) {
    border-top: 1px solid #e8e8e8;
  }
  .linkgroup.linkgroup--col-2 ul li:last-of-type, .linkgroup.link-group--col-2 ul li:last-of-type,
  .link-group.linkgroup--col-2 ul li:last-of-type,
  .link-group.link-group--col-2 ul li:last-of-type {
    border-bottom: 1px solid #e8e8e8;
  }
}

.linkgroup--no-border ul li,
.link-group--no-border ul li {
  border: none !important;
  padding: 0 0 1.5rem !important;
}
.linkgroup--no-border ul li:last-of-type,
.link-group--no-border ul li:last-of-type {
  border: none !important;
  padding: 0 !important;
}

.linkgroup--compact ul li,
.link-group--compact ul li {
  padding: 0 0 1.5rem !important;
}
.linkgroup--compact ul li:last-of-type,
.link-group--compact ul li:last-of-type {
  padding: 0 !important;
}
.linkgroup--compact a[class^=icon-link],
.link-group--compact a[class^=icon-link] {
  font-size: 1rem;
  padding-left: 35px;
  color: #1c437c;
}
.linkgroup--compact a[class^=icon-link] .icon-link__meta,
.linkgroup--compact a[class^=icon-link] .icon-link__desc,
.link-group--compact a[class^=icon-link] .icon-link__meta,
.link-group--compact a[class^=icon-link] .icon-link__desc {
  font-size: 1rem;
}
.linkgroup--compact a.icon-link--intern:before,
.link-group--compact a.icon-link--intern:before {
  top: 1px;
}
.linkgroup--compact a.icon-link--download:before,
.link-group--compact a.icon-link--download:before {
  top: 1px;
}
.linkgroup--compact a.icon-link--mail:before,
.link-group--compact a.icon-link--mail:before {
  top: 1px;
}
.linkgroup--compact a.icon-link--extern:before,
.link-group--compact a.icon-link--extern:before {
  top: 2px;
}
.linkgroup--compact a.icon-link--phone:before,
.link-group--compact a.icon-link--phone:before {
  top: 1px;
}

.logobar {
  padding: 4rem 0;
}

.logobar__heading {
  margin-bottom: 2rem;
}

.logobar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0 -30px;
  padding: 0;
}

.logobar__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  width: 50%;
  min-width: 0;
  margin-bottom: 2rem;
  height: 90px;
}
@media (min-width: 720px) {
  .logobar__item {
    width: auto;
    margin-bottom: 0;
  }
}
.logobar__item.invisible {
  display: none;
}

.logobar__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.logobar__logo {
  height: auto;
  width: 100%;
  max-width: 120px;
}
@media (min-width: 960px) {
  .logobar__logo {
    max-width: 160px;
  }
}

.navigation-language {
  margin-left: 30px;
}

.navigation-language__list {
  list-style: none outside;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigation-language__item {
  z-index: 9;
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
}
.navigation-language__item > a,
.navigation-language__item > span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1c437c;
  padding: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.navigation-language__item > a:after,
.navigation-language__item > span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  z-index: -1;
  background: transparent;
  transition: all 0.2s ease-in-out;
}
.navigation-language__item > a:hover, .navigation-language__item > a:active, .navigation-language__item > a:focus,
.navigation-language__item > span:hover,
.navigation-language__item > span:active,
.navigation-language__item > span:focus {
  text-decoration: none;
}
.navigation-language__item > a:hover:after, .navigation-language__item > a:active:after, .navigation-language__item > a:focus:after,
.navigation-language__item > span:hover:after,
.navigation-language__item > span:active:after,
.navigation-language__item > span:focus:after {
  height: 30px;
  width: 30px;
  background: #f5e51e;
}
.navigation-language__item.is-current > a, .navigation-language__item.is-current > span {
  color: #1c437c;
  font-weight: 700;
  /*
  &:after {
  	background: $blue-darker;
  	height: 6px;
  }
  */
}
.navigation-language__item abbr {
  text-decoration: none;
  pointer-events: none;
}
.navigation-language__item a abbr {
  cursor: pointer;
}

.navigation-main {
  position: relative;
  z-index: 1;
  margin-right: 19.5px;
}

.navigation-main__first-level {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.first-level__item {
  margin: 0 7.5px;
  text-align: center;
  text-decoration: none;
  position: relative;
  line-height: 1;
}
.first-level__item > a,
.first-level__item > span {
  font-weight: 400;
  font-size: 18px;
  color: #1c437c;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  position: relative;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .first-level__item > a,
  .first-level__item > span {
    font-size: 22px;
  }
}
.first-level__item > a:after,
.first-level__item > span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  z-index: -1;
  background: transparent;
  transition: all 0.2s ease-in-out;
}
.first-level__item > a:hover, .first-level__item > a:active,
.first-level__item > span:hover,
.first-level__item > span:active {
  text-decoration: none;
}
.first-level__item > a:hover:after, .first-level__item > a:active:after,
.first-level__item > span:hover:after,
.first-level__item > span:active:after {
  height: 60px;
  width: 60px;
  background: #f5e51e;
}
.first-level__item.is-current > a:after,
.first-level__item.is-current > span:after {
  height: 60px;
  width: 60px;
  background: #f5e51e;
}
.first-level__item:not(.nohover):hover > a,
.first-level__item:not(.nohover):hover > span, .first-level__item.hoverIntent > a,
.first-level__item.hoverIntent > span {
  text-decoration: none;
}
.first-level__item:not(.nohover):hover > a:after,
.first-level__item:not(.nohover):hover > span:after, .first-level__item.hoverIntent > a:after,
.first-level__item.hoverIntent > span:after {
  height: 60px;
  width: 60px;
  background: #f5e51e;
}
.first-level__item:not(.nohover):hover .navigation-main__second-level, .first-level__item.hoverIntent .navigation-main__second-level {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.navigation-main__second-level {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10%);
  position: absolute;
  top: 100%;
  left: 50%;
  width: auto;
  min-width: 300px;
  list-style: none outside;
  padding: 1.5rem 30px 2.5rem;
  margin: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -2;
  background: #fff;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1);
}
.navigation-main__second-level:before {
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #e6f1fc;
}
.navigation-main__second-level:after {
  content: "";
  position: absolute;
  display: block;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  opacity: 0;
}

@media (max-width: 1360px) {
  .first-level__item:last-of-type .navigation-main__second-level {
    left: auto;
    right: 0;
    transform: translate(0, -10%);
  }
  .first-level__item:last-of-type:not(.nohover):hover .navigation-main__second-level, .first-level__item:last-of-type.hoverIntent .navigation-main__second-level {
    left: auto;
    right: 0;
    transform: translate(0, 0);
  }
}
/*
.first-level__item:first-of-type .navigation-main__second-level  {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%,0);
}
*/
.second-level__item {
  margin: 0;
  text-align: left;
}
.second-level__item > a,
.second-level__item > span {
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid #e6f1fc;
  padding: 1rem 0 1rem;
  display: block;
  height: 100%;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
  color: #1c437c;
  font-size: 1rem;
  line-height: 1.4;
}
.second-level__item > a:before,
.second-level__item > span:before {
  position: absolute;
  display: block;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #1c437c;
  opacity: 0;
  transition: opacity 0.2s ease-out, right 0.2s ease-out;
}
.second-level__item > a:hover, .second-level__item > a:active,
.second-level__item > span:hover,
.second-level__item > span:active {
  font-weight: 700;
  color: #1c437c;
  text-decoration: none;
}
.second-level__item > a:hover:before, .second-level__item > a:active:before,
.second-level__item > span:hover:before,
.second-level__item > span:active:before {
  right: 0;
  opacity: 1;
}
.second-level__item.is-current > a,
.second-level__item.is-current > span {
  font-weight: 700;
  color: #1c437c;
}
.second-level__item.second-level__item--gruenden {
  position: relative;
}
.second-level__item.second-level__item--gruenden:before {
  position: absolute;
  left: 0;
  font-size: 28px;
  top: 11px;
}
.second-level__item.second-level__item--gruenden > a,
.second-level__item.second-level__item--gruenden > span {
  padding-left: 40px;
}
.second-level__item.second-level__item--managen {
  position: relative;
}
.second-level__item.second-level__item--managen:before {
  position: absolute;
  left: 0;
  font-size: 28px;
  top: 11px;
}
.second-level__item.second-level__item--managen > a,
.second-level__item.second-level__item--managen > span {
  padding-left: 40px;
}
.second-level__item.second-level__item--vernetzen {
  position: relative;
}
.second-level__item.second-level__item--vernetzen:before {
  position: absolute;
  left: 0;
  font-size: 28px;
  top: 11px;
}
.second-level__item.second-level__item--vernetzen > a,
.second-level__item.second-level__item--vernetzen > span {
  padding-left: 40px;
}

.navigation-meta {
  margin-left: 30px;
}

.navigation-meta__list {
  list-style: none outside;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navigation-meta__item {
  z-index: 9;
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 1rem;
}
.navigation-meta__item > a,
.navigation-meta__item > span {
  font-size: 0.875rem;
  padding: 0.5rem 0;
  transition: all 0.2s ease-in-out;
  color: #1c437c;
  font-weight: 700;
}
.navigation-meta__item > a:after,
.navigation-meta__item > span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  z-index: -1;
  background: transparent;
  transition: all 0.2s ease-in-out;
}
.navigation-meta__item > a:hover, .navigation-meta__item > a:active, .navigation-meta__item > a:focus,
.navigation-meta__item > span:hover,
.navigation-meta__item > span:active,
.navigation-meta__item > span:focus {
  text-decoration: none;
}
.navigation-meta__item > a:hover:after, .navigation-meta__item > a:active:after, .navigation-meta__item > a:focus:after,
.navigation-meta__item > span:hover:after,
.navigation-meta__item > span:active:after,
.navigation-meta__item > span:focus:after {
  height: 30px;
  width: 30px;
  background: #f5e51e;
}
.navigation-meta__item.is-current > a, .navigation-meta__item.is-current > span {
  color: #1c437c;
}
.navigation-meta__item.is-current > a:after, .navigation-meta__item.is-current > span:after {
  height: 30px;
  width: 30px;
  background: #f5e51e;
}
.navigation-meta__item.navigation-meta__item--social {
  padding-inline: 0.25rem;
}
.navigation-meta__item.navigation-meta__item--social > a:before {
  display: flex;
  font-size: 1.5rem;
  line-height: 1;
}
.navigation-meta__item.navigation-meta__item--search {
  padding-right: 0;
}
.navigation-meta__item.navigation-meta__item--search > a,
.navigation-meta__item.navigation-meta__item--search > span {
  padding-left: 1.5rem;
  padding-right: 0;
}
.navigation-meta__item.navigation-meta__item--search > a:before,
.navigation-meta__item.navigation-meta__item--search > span:before {
  color: #1c437c;
  position: absolute;
  display: block;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.125rem;
}
.navigation-meta__item.navigation-meta__item--search > a:after,
.navigation-meta__item.navigation-meta__item--search > span:after {
  margin-left: 1.25rem;
}

.navigation-mobile {
  background: #f5e51e;
}
@media (min-width: 960px) {
  .navigation-mobile {
    display: none;
  }
}
.navigation-mobile .slide-nav-checkbox,
.navigation-mobile .slide-nav-label-root,
.navigation-mobile .slide-nav-root {
  display: block;
}
.navigation-mobile .slide-nav-checkbox {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
}
.navigation-mobile .slide-nav-label-root {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
}
.navigation-mobile .slide-nav-root,
.navigation-mobile .slide-nav-sub {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 320px;
  background: #fff;
  z-index: 9999;
  right: -400px;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate(0, 0);
  transition: transform 0.33s ease;
  padding: 5rem 0 0 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.navigation-mobile .slide-nav-root::-webkit-scrollbar,
.navigation-mobile .slide-nav-sub::-webkit-scrollbar {
  display: none;
}
.navigation-mobile .slide-nav-sub {
  position: absolute;
  bottom: auto;
  bottom: 0;
}
.navigation-mobile .slide-nav-root {
  min-height: 100%;
  min-height: 100%;
}
.navigation-mobile .slide-nav-root ul {
  text-decoration: none;
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.navigation-mobile .slide-nav-root a,
.navigation-mobile .slide-nav-root span {
  display: block;
  text-decoration: none;
}
.navigation-mobile .slide-nav-root a {
  visibility: hidden;
}
.navigation-mobile .slide-nav-root .slide-nav-label-sub {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.navigation-mobile .slide-nav-root .slide-nav-root-heading,
.navigation-mobile .slide-nav-root .slide-nav-label-back {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  margin: 0;
  background: #f5e51e;
  line-height: 5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
.navigation-mobile .slide-nav-root .slide-nav-root-heading {
  padding-left: 2.5rem;
}
.navigation-mobile .slide-nav-checkbox:checked ~ .slide-nav-root,
.navigation-mobile .slide-nav-root .slide-nav-checkbox:checked ~ .slide-nav-sub {
  transform: translate(-400px, 0);
}
.navigation-mobile .slide-nav-checkbox:checked ~ .slide-nav-root a,
.navigation-mobile .slide-nav-root .slide-nav-checkbox:checked ~ .slide-nav-sub a {
  visibility: visible !important;
}
.navigation-mobile .slide-nav-checkbox:checked ~ .slide-nav-root:has(> ul li .slide-nav-checkbox:checked),
.navigation-mobile .slide-nav-checkbox:checked ~ .slide-nav-sub:has(> ul li .slide-nav-checkbox:checked) {
  overflow-y: hidden;
}
.navigation-mobile .slide-nav-item > a,
.navigation-mobile .slide-nav-item > span,
.navigation-mobile .slide-nav-sub-heading > a,
.navigation-mobile .slide-nav-sub-heading > span,
.navigation-mobile .slide-nav-sub-item > a,
.navigation-mobile .slide-nav-sub-item > span {
  position: relative;
  padding: 1rem 2.5rem 1rem 2.5rem;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}
.navigation-mobile .slide-nav-item > a:after,
.navigation-mobile .slide-nav-item > span:after,
.navigation-mobile .slide-nav-sub-heading > a:after,
.navigation-mobile .slide-nav-sub-heading > span:after,
.navigation-mobile .slide-nav-sub-item > a:after,
.navigation-mobile .slide-nav-sub-item > span:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 0;
  background: #abd2f4;
}
.navigation-mobile .slide-nav-sub-heading > a,
.navigation-mobile .slide-nav-sub-heading > span {
  font-weight: 700;
  color: #1c437c;
}
.navigation-mobile .slide-nav-item-meta {
  margin-top: 1rem;
}
.navigation-mobile .slide-nav-item-meta > a,
.navigation-mobile .slide-nav-item-meta > span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  padding: 0.5rem 2.5rem 0.5rem 2.5rem;
}
.navigation-mobile .slide-nav-item-meta + .slide-nav-item-meta {
  margin-top: 0;
}
.navigation-mobile .slide-nav-item-meta:last-of-type {
  margin-bottom: 0;
}
.navigation-mobile .slide-nav-label-root {
  display: none;
}
.navigation-mobile .slide-nav-root {
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.5);
}
.navigation-mobile .slide-nav-item > a.is-current,
.navigation-mobile .slide-nav-item-meta > a.is-current,
.navigation-mobile .slide-nav-item-meta.is-current > a {
  position: relative;
}
.navigation-mobile .slide-nav-item > a.is-current:before,
.navigation-mobile .slide-nav-item-meta > a.is-current:before,
.navigation-mobile .slide-nav-item-meta.is-current > a:before {
  content: "";
  display: block;
  position: absolute;
  left: 1.25rem;
  bottom: 50%;
  transform: translate(-50%, 50%);
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #f5e51e;
}
.navigation-mobile label {
  text-indent: -9999em;
  overflow: hidden;
  margin: 0;
}
.navigation-mobile .slide-nav-label:before,
.navigation-mobile .slide-nav-label-sub:before,
.navigation-mobile .slide-nav-label-back:before {
  position: absolute;
  text-indent: 0em;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.375rem;
}
.navigation-mobile .slide-nav-label-sub {
  width: auto;
}
.navigation-mobile .slide-nav-label-sub:before {
  left: auto;
  right: 1rem;
}
.navigation-mobile .slide-nav-label-back {
  padding-left: 4rem;
  text-indent: 0em;
}
.navigation-mobile .slide-nav-label-back:before {
  transform: translate(-50%, -50%) rotate(180deg);
  left: 2rem;
}
.navigation-mobile .slide-nav-label-close:before {
  color: #000;
}

.slide-nav__share {
  margin: 0 1.5rem 0 2.5rem;
}
.slide-nav__share .share__title {
  font-size: 0.875rem;
  font-weight: 400;
  margin-right: auto;
}

.navigation-mobile .slide-nav-sub ul {
  margin-bottom: 5rem;
}

button.slide-nav-trigger {
  border: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.navigation-mobile .slide-nav-root .nav-teaser {
  margin-top: 1rem;
}

.nav-teaser__item {
  background: #e6f1fc;
  margin-bottom: 1px;
}
.nav-teaser__item a {
  display: block;
  padding: 3.5rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  position: relative;
  background-position: right 2rem center;
  background-repeat: no-repeat;
}

.nav-teaser__item--guetesiegel a {
  background-image: url("../images/BS_Guetesiegel_RGB_1200x1200.svg");
  background-size: 80px auto;
}

.nav-teaser__item--partner a {
  background-image: url("../images/ibs-puzzle.svg");
  background-size: 100px auto;
}

body.slide-nav-open {
  overflow-y: hidden;
  max-height: 100%;
}

.notice {
  position: relative;
  margin-right: -30px;
}
@media (min-width: 480px) {
  .notice {
    margin-right: 0;
  }
}
.notice .notice__wrap {
  position: relative;
  padding: 1rem 30px;
  overflow: hidden;
  background: #e6f1fc;
  border-radius: 0;
}
@media (min-width: 720px) {
  .notice .notice__wrap {
    padding: 4rem 60px;
  }
  .form--powermail .notice .notice__wrap {
    padding: 4rem 60px;
  }
}
.notice .notice__wrap .notice__icon {
  position: relative;
  margin: 0 auto 1rem;
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
@media (min-width: 720px) {
  .notice .notice__wrap .notice__icon {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    margin: 0;
  }
}
.notice .notice__wrap .notice__icon:before {
  display: block;
  position: absolute;
  font-size: 1.375rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 720px) {
  .notice .notice__wrap .notice__icon:before {
    font-size: 2.375rem;
  }
}
.notice .notice__wrap .notice__text {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 720px) {
  .notice .notice__wrap .notice__text {
    padding-left: 120px;
  }
}
.notice .notice__wrap .notice__text p {
  margin-bottom: 0;
  position: relative;
  font-size: 1rem;
  text-align: center;
  width: 100%;
}
@media (min-width: 720px) {
  .notice .notice__wrap .notice__text p {
    font-size: 1.375rem;
    text-align: left;
  }
}
.notice .notice__wrap .notice__text p + p {
  margin-top: 1.5rem;
}
.notice .notice__wrap i {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.notice .notice__wrap i:before {
  z-index: 2;
  color: #1c437c;
  font-size: 28px;
}
@media (min-width: 480px) {
  .notice .notice__wrap i:before {
    font-size: 50px;
  }
}
.notice.notice--mail .notice__icon:before {
  font-size: 1.75rem;
}
@media (min-width: 720px) {
  .notice.notice--mail .notice__icon:before {
    font-size: 3rem;
  }
}
.notice.notice--info .notice__icon:before {
  font-size: 1.75rem;
}
@media (min-width: 720px) {
  .notice.notice--info .notice__icon:before {
    font-size: 3rem;
  }
}
.notice.notice--error {
  color: #dc3545;
}
.notice.notice--error .notice__wrap {
  background: rgba(220, 53, 69, 0.1);
}
.notice.notice--error .notice__icon:before {
  font-size: 1.75rem;
}
@media (min-width: 720px) {
  .notice.notice--error .notice__icon:before {
    font-size: 3rem;
  }
}

.pagination {
  display: flex;
  align-items: center;
}

.pagination__list {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  flex-basis: 100%;
  padding: 0;
}
@media (min-width: 720px) {
  .pagination__list {
    justify-content: flex-start;
  }
}
.pagination__list > li {
  padding: 0;
  margin: 0 0.125rem;
  display: flex;
  align-items: baseline;
  /*
  		&:not(.pagination__previous):not(.pagination__next):not(.pagination__first):not(.pagination__last) {

  			@include media-breakpoint-down(sm) {
  				display: none;
  	        }
          }
  */
}
@media (min-width: 720px) {
  .pagination__list > li {
    margin: 1rem 0.125rem;
  }
}
.pagination__list > li > a, .pagination__list > li > span {
  color: #1c437c;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-radius: 50%;
  font-weight: 400;
  font-size: 1rem;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
}
@media (min-width: 960px) {
  .pagination__list > li > a, .pagination__list > li > span {
    height: 3.75rem;
    width: 3.75rem;
    font-size: 1.25rem;
    line-height: 3.7rem;
  }
}
.pagination__list > li > a:hover, .pagination__list > li > a:active, .pagination__list > li > a:focus, .pagination__list > li > span:hover, .pagination__list > li > span:active, .pagination__list > li > span:focus {
  color: white;
  background-color: #1c437c;
}
.pagination__list > li.pagination__current > a,
.pagination__list > li.pagination__current > span {
  background: #f5e51e;
}
.pagination__list > li.pagination__current > a:hover, .pagination__list > li.pagination__current > a:focus,
.pagination__list > li.pagination__current > span:hover,
.pagination__list > li.pagination__current > span:focus {
  color: white;
  background-color: #1c437c;
}
.pagination__list > li.pagination--is-disabled > a,
.pagination__list > li.pagination--is-disabled > span, .pagination__list > li.pagination--is-disabled > a,
.pagination__list > li.pagination--is-disabled > span {
  pointer-events: none;
  opacity: 0.5;
}

.pagination__status {
  display: inline-block;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 1rem;
}
@media (min-width: 480px) {
  .pagination__status {
    text-align: right;
    padding-top: 0;
  }
}
@media (min-width: 720px) {
  .pagination__status {
    display: none;
  }
}

.big-search {
  margin-bottom: 5rem;
}
@media (max-width: 719.98px) {
  .big-search {
    margin-bottom: 2rem;
  }
}
.big-search > .form-control {
  color: #1c437c;
}
@media (max-width: 719.98px) {
  .big-search > .form-control, .big-search > .custom-select, .big-search > .custom-file {
    width: 100%;
    margin-bottom: 0;
  }
  .big-search .input-group-append {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.big-search__input,
.big-search__submit {
  font-size: 1.25rem;
  height: 5rem;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 959.98px) {
  .big-search__input,
  .big-search__submit {
    font-size: 1rem;
    height: 4rem;
  }
}
@media (max-width: 719.98px) {
  .big-search__input,
  .big-search__submit {
    font-size: 1rem;
    height: 3rem;
  }
}

.big-search__input {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  padding: 1rem;
  font-weight: 500;
  color: #0ba1e2;
  background: #e6f1fc;
  border-color: #e6f1fc;
}
@media (max-width: 719.98px) {
  .big-search__input {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
}
.big-search__input::-webkit-input-placeholder {
  color: #1c437c;
}

.big-search__input:-moz-placeholder {
  color: #1c437c;
}

.big-search__input::-moz-placeholder {
  color: #1c437c;
}

.big-search__input:-ms-input-placeholder {
  color: #1c437c;
}

.big-search__input:hover, .big-search__input:active, .big-search__input:focus {
  border-color: #fff;
  background: #fff;
}
.big-search__submit {
  padding: 0 4rem;
  color: #1c437c;
}
@media (max-width: 719.98px) {
  .big-search__submit {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    padding: 0 2rem;
  }
}
.big-search__submit:hover, .big-search__submit:active, .big-search__submit:focus {
  color: #1c437c;
  background: #a7c438;
  border-color: #a7c438;
}

.search-status p {
  font-size: 1.25rem;
}
@media (max-width: 959.98px) {
  .search-status p {
    font-size: 1rem;
  }
}

.share {
  text-align: right;
  display: none;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
@media (min-width: 480px) {
  .share {
    display: flex;
  }
}
@media print {
  .share {
    display: none !important;
  }
}

.share__title {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0;
  margin-right: 2rem;
}

.share__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.share__item {
  line-height: 60px;
}

.share__link {
  width: 3rem;
  height: 3rem;
  display: block;
  text-align: center;
  color: #1c437c;
  position: relative;
  text-decoration: none;
  border-radius: 50%;
}
.share__link:hover, .share__link:focus, .share__link:active {
  text-decoration: none;
  color: #1c437c;
  background: #f5e51e;
}
.share__link:before {
  display: block;
  text-align: center;
  font-size: 2.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.statement {
  text-align: center;
}
.statement p {
  font-size: 1rem;
}
@media (min-width: 480px) {
  .statement p {
    font-size: 1.25rem;
  }
}
@media (min-width: 960px) {
  .statement p {
    font-size: 1.375rem;
  }
}

.stickybar {
  display: flex;
  background: #a7c438;
  border-radius: 15px 15px 0 0;
  transform: rotate(270deg) translate(-50%, 100%);
  position: fixed;
  left: 100%;
  top: 50%;
  transform-origin: top left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 9999999999;
  transition: transform 0.2s ease-in;
}
.stickybar.is-visible {
  transform: rotate(270deg) translate(-50%, -100%);
}

.stickybar__item {
  border-right: 1px solid #fff;
}
.stickybar__item:last-child {
  border: 0;
}

.stickybar__button.btn.btn-icon-right.btn-lg, .btn-group-lg > .stickybar__button.btn.btn-icon-right {
  font-weight: 400;
  font-size: 1.25rem;
  color: #fff;
  line-height: 32px;
  display: none;
  padding-right: 4rem;
}
@media (min-width: 960px) {
  .stickybar__button.btn.btn-icon-right.btn-lg, .btn-group-lg > .stickybar__button.btn.btn-icon-right {
    display: inline-block;
  }
}
.stickybar__button.btn.btn-icon-right.btn-lg:before, .btn-group-lg > .stickybar__button.btn.btn-icon-right:before {
  font-size: 30px;
  transform: rotate(90deg) translate(-50%, 50%);
  right: 0.2rem;
}
.stickybar__button.btn.btn-icon-right.btn-lg:hover, .btn-group-lg > .stickybar__button.btn.btn-icon-right:hover, .stickybar__button.btn.btn-icon-right.btn-lg:focus, .btn-group-lg > .stickybar__button.btn.btn-icon-right:focus, .stickybar__button.btn.btn-icon-right.btn-lg:active, .btn-group-lg > .stickybar__button.btn.btn-icon-right:active {
  color: #1c437c;
}

.nav-tabs {
  border-bottom: none;
}
@media (min-width: 480px) {
  .nav-tabs {
    border-bottom: 1px solid #e8e8e8;
    border-color: #999999;
  }
}
.nav-tabs .nav-item {
  display: block;
  width: 100%;
  margin-bottom: -1px;
}
@media (min-width: 480px) {
  .nav-tabs .nav-item {
    margin-right: 1rem;
    display: list-item;
    width: auto;
  }
}
.nav-tabs .nav-link {
  color: #1c437c;
  background: #abd2f4;
  border-color: #999999;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 480px) {
  .nav-tabs .nav-link {
    border-color: #abd2f4;
    border-bottom-color: #999999;
  }
}
.nav-tabs .nav-link:before {
  content: "";
  display: block;
  height: 4px;
  background: transparent;
  position: absolute;
  top: -4px;
  left: -1px;
  right: -1px;
  transition: all 0.2s ease-in-out;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:active, .nav-tabs .nav-link.active {
  background: #fff;
  border-color: #999999;
}
.nav-tabs .nav-link:hover:before, .nav-tabs .nav-link:active:before, .nav-tabs .nav-link.active:before {
  background: #1c437c;
}
.nav-tabs .nav-link.active {
  cursor: default;
  border-bottom-color: #999999;
}
@media (min-width: 480px) {
  .nav-tabs .nav-link.active {
    border-bottom-color: #fff;
  }
}

.team {
  position: relative;
}

.team__item .team__deckhead {
  color: #0ba1e2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.team__item .team__image,
.team__item .image {
  margin-left: 0px;
  max-width: 240px;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .team__item .team__image,
  .team__item .image {
    max-width: 40%;
    float: left;
  }
}
@media (min-width: 720px) {
  .team__item .team__image,
  .team__item .image {
    max-width: none;
    float: none;
    padding: 0;
    margin: 0 0 1rem;
  }
}
@media (min-width: 480px) {
  .team__item .team__text {
    width: 60%;
    float: right;
    padding-left: 30px;
  }
}
@media (min-width: 720px) {
  .team__item .team__text {
    padding-left: 0;
    max-width: none;
    float: none;
    width: 100%;
  }
}
.team__item .team__text a {
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.team__item .team__text + .team__text {
  margin-top: 2rem;
}
.team__item .team__title {
  padding: 0;
  color: #1c437c;
  position: relative;
  margin: 0 0 0.5rem;
  z-index: 1;
  display: inline-block;
}
.team__item p,
.team__item address {
  color: #1c437c;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.team__item p .mail,
.team__item address .mail {
  padding-left: 0;
}
.team__item p .mail:before,
.team__item address .mail:before {
  display: none;
}
.team__item .team__jobtitle {
  color: #0ba1e2;
  margin: 0 0 0.5rem;
}
.team__item .team__mail,
.team__item .team__link {
  font-weight: 600;
}
.team__item .team__telephone + .team__fax {
  margin-top: -1rem;
}
.team__item .team__telephone + .team__mail {
  margin-top: -1rem;
}
.team__item a.icon-link--phone {
  font-weight: 600;
}
.team__item a.icon-link--phone:before {
  font-size: 24px;
  top: 2px;
  left: 0;
}
.team__item a.icon-link--mail:before {
  font-size: 20px;
  top: 2px;
  left: 2px;
}
.team__item a.icon-link--extern:before {
  font-size: 18px;
  top: 3px;
  left: 2px;
}
.team__item .read-more {
  display: inline;
  color: #1c437c;
  -webkit-backface-visibility: hidden;
  transition: color 0.2s ease-in-out;
}
.team__item:hover, .team__item:focus {
  text-decoration: none;
}
.team__item:hover .h2:before, .team__item:focus .h2:before {
  background: #1c437c;
}
.team__item:hover .read-more, .team__item:focus .read-more {
  color: #1c437c;
}
.team__item.team__item--teaser {
  background: #f5e51e;
  margin-right: 30px;
  margin-top: 30px;
  padding: 2.5rem 2rem 1rem;
  position: relative;
}
.team__item.team__item--teaser .image {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
}
@media (min-width: 720px) {
  .team__item.team__item--teaser .image {
    width: 140px;
  }
}
.team__item.team__item--teaser .team__deckhead {
  color: #1c437c;
  text-transform: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.team__item.team__item--teaser .team__title {
  color: #333333;
}
.team__item.team__item--teaser .team__jobtitle,
.team__item.team__item--teaser .team__text p,
.team__item.team__item--teaser .team__text address,
.team__item.team__item--teaser .team__telephone a {
  color: #1c437c;
  color: #333333;
}
.team__item.team__item--teaser .team__telephone a.icon-link--phone {
  color: #1c437c;
}
@media (max-width: 479.98px) {
  .team__item.team__item--teaser {
    margin-right: 0;
    margin-top: 80px;
  }
  .team__item.team__item--teaser .image {
    top: -80px;
  }
  .team__item.team__item--teaser.team__item--right {
    margin-left: 0;
    margin-right: 0px;
  }
}
@media (max-width: 719.98px) {
  .team__item.team__item--teaser {
    margin-left: -30px;
  }
  .team__item.team__item--teaser .team__text {
    padding-left: 0;
    max-width: none;
    float: none;
  }
  .team__item.team__item--teaser.team__item--right {
    margin-left: 0;
    margin-right: 0px;
  }
}
@media (min-width: 960px) {
  .team__item.team__item--teaser .image {
    top: -80px;
  }
  .team__item.team__item--teaser.team__item--right {
    float: right;
    width: 340px;
    margin-top: 0;
    margin-left: 60px;
    margin-right: -10.55%;
  }
  .team__item.team__item--teaser.team__item--right .team__deckhead {
    padding-right: 110px;
  }
  .team__item.team__item--teaser.team__item--left {
    float: left;
    width: 340px;
    margin-top: 80px;
    margin-right: 60px;
    margin-left: -10.55%;
  }
  .team__item.team__item--teaser.team__item--left .image {
    left: -30px;
  }
  .team__item.team__item--teaser.team__item--left .team__deckhead {
    padding-left: 110px;
  }
}
.team__item.team__item--teaser.team__item--multiple {
  margin-top: 0;
}

/*
.team-widget {

	.team__wrap {
		background: $blue-lighter;
		padding: ($spacer * 2) $grid-gutter-width ($spacer * 1);
		overflow: hidden;
		clear: both;
		background-image: url("../images/bg_icons_teaser_kontakt.png");
		background-repeat: no-repeat;
		background-position: bottom -70px right 10px;


		@include media-breakpoint-up(md) {
			overflow: visible;
			box-shadow: 0 0 40px rgba(0,0,0, 0.1);
		}
	}


	.team-widget__row {

		@include media-breakpoint-up(lg) {
			padding-right: 33.333%;
		}
	}


	.team__heading {
		background: white;
		margin: -($spacer * 2) floor(-($grid-gutter-width * 1)) ($spacer * 2);
		padding: ($spacer * 1) $grid-gutter-width;
		z-index: 1;
		position: relative;
		color: $primary;
		font-size: 1.125rem;
	}


	.team__item {
		min-width: 320px;


		.team__image,
		.image {
			margin-bottom: 0;
			margin-right: $grid-gutter-width;
			width: 70px;
			height: 70px;
			border-radius: 50%;
			float: left;


			img {
				border-radius: 50%;
			}
		}


		.team__text {
			overflow: hidden;
		}
	}
}
*/
.teaser__item {
  position: relative;
  z-index: 1;
  color: #333333;
}
.teaser__item .teaser__wrap {
  position: relative;
}
@media (max-width: 1199.98px) {
  .teaser__item .teaser__wrap {
    max-width: 340px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.teaser__item > a {
  display: block;
}
.teaser__item > a:focus {
  outline: none !important;
}

.teaser__item--bg {
  position: relative;
}
.teaser__item--bg:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  top: 0;
  bottom: 0;
  background: #e6f1fc;
  z-index: -1;
}
@media (min-width: 720px) {
  .teaser__item--bg:before {
    left: 0.75rem;
    right: 0.75rem;
  }
}
.teaser__item--bg .teaser__wrap {
  padding: 2rem 0 1rem 30px;
}
@media (min-width: 720px) {
  .teaser__item--bg .teaser__wrap {
    padding: 4rem 0 3rem;
    max-width: 340px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .teaser__item--bg .teaser__wrap {
    max-width: 400px;
  }
}

.teaser__deckhead {
  margin: 0 0 0.5rem -15px;
}
@media (min-width: 1200px) {
  .teaser__deckhead {
    margin: 0 0 0.5rem 15px;
  }
}
.teaser__deckhead > * {
  display: inline-block;
  padding: 5px 0;
  transition: all 0.2s ease-in-out;
}
.teaser__deckhead > *:first-child {
  padding-left: 15px;
}
.teaser__deckhead > *:last-child {
  padding-right: 15px;
}

.teaser__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .teaser__title {
    padding: 0 30px;
  }
}
@media (min-width: 720px) {
  .teaser__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

.teaser__text {
  padding: 0 0 0.5rem;
}
@media (min-width: 1200px) {
  .teaser__text {
    padding: 0 30px 1.5rem;
  }
}
.teaser__text p {
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 720px) {
  .teaser__text p {
    font-size: 1.125rem;
  }
}

.teaser__image {
  margin: 0 0 1.5rem;
  max-width: 340px;
}
@media (min-width: 1200px) {
  .teaser__image {
    margin: 0 30px 1.5rem;
  }
}

.teaser__image--right {
  float: right;
  margin: 0;
  width: 120px;
  margin-right: -30px;
  margin-left: 20px;
}
@media (min-width: 480px) {
  .teaser__image--right {
    width: 140px;
    margin-right: 0px;
    margin-left: 30px;
  }
}

@media (min-width: 960px) {
  .teaser--col-1 .teaser__image--right {
    width: 210px;
  }
}
.teaser__image--icon img {
  max-height: 140px;
  width: auto;
  margin: 0 auto;
}

.teaser__link {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .teaser__link {
    margin: 0 30px 1.5rem;
  }
}

.teaser__link ul li a[class^=icon-link] {
  color: #333333 !important;
}
.teaser__link ul li a[class^=icon-link]:before {
  color: #333333 !important;
}
.teaser__link ul li a[class^=icon-link]:hover {
  color: #1c437c !important;
}
.teaser__link ul li a[class^=icon-link]:hover:before {
  color: #1c437c !important;
}

.teaser__item a {
  text-decoration: none;
}
.teaser__item a .teaser__deckhead {
  color: #333333;
}
.teaser__item a .teaser__title {
  color: #333333;
}
.teaser__item a .teaser__text p {
  color: #333333;
}
.teaser__item a .teaser__read-more {
  color: #333333;
}
@media (min-width: 1200px) {
  .teaser__item a .teaser__read-more {
    margin: 0 30px 1rem;
  }
}
.teaser__item a:hover, .teaser__item a:focus {
  text-decoration: none;
}
.teaser__item a:hover .teaser__deckhead > *, .teaser__item a:focus .teaser__deckhead > * {
  background: #f5e51e;
}
.teaser__item a:hover .teaser__read-more, .teaser__item a:focus .teaser__read-more {
  padding-right: 5rem;
}
.teaser__item a:hover .teaser__read-more i, .teaser__item a:focus .teaser__read-more i {
  width: 4rem;
}

.teaser__title a {
  color: #1c437c;
}

.teaser.teaser--col-2, .teaser.teaser--col-3, .teaser.teaser--col-4, .teaser.teaser--col-5 {
  /*
  		.teaser__image {
  			float: left;
  			width: 120px;
  			padding-right: floor(( $grid-gutter-width * 0.5 ));


  			@include media-breakpoint-up(xs) {
  				width: 100%;
  				padding-right: 0;
  				float: none;
  			}
  		}

  		.teaser__title {
  			font-size: $h3-font-size;
  		}
  */
}
@media (min-width: 480px) {
  .teaser.teaser--fitinrow.teaser--col-2 .teaser__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media (min-width: 480px) and (max-width: 959.98px) {
  .teaser.teaser--fitinrow.teaser--col-3 .teaser__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media (min-width: 720px) {
  .teaser.teaser--fitinrow.teaser--col-3 .teaser__item:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media (min-width: 480px) and (max-width: 959.98px) {
  .teaser.teaser--fitinrow.teaser--col-4 .teaser__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media (min-width: 720px) {
  .teaser.teaser--fitinrow.teaser--col-4 .teaser__item:nth-of-type(4n + 1) {
    clear: both;
  }
}
@media (min-width: 480px) and (max-width: 959.98px) {
  .teaser.teaser--fitinrow.teaser--col-5 .teaser__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media (min-width: 720px) {
  .teaser.teaser--fitinrow.teaser--col-5 .teaser__item {
    width: 20%;
  }
  .teaser.teaser--fitinrow.teaser--col-5 .teaser__item:nth-of-type(5n + 1) {
    clear: both;
  }
}
.teaser.teaser--slideshow .slick-list {
  padding-top: 20px;
  margin-top: -20px;
}
.teaser.teaser--slideshow .teaser__item {
  display: block !important;
  flex: none !important;
}

.slick-dots {
  padding: 0;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 720px) {
  .slick-dots {
    padding: 0;
    line-height: 0 !important;
  }
}
.slick-dots li {
  display: inline;
  font-size: 12px;
  line-height: 1;
  padding: 0 4px !important;
}
.slick-dots li:before {
  display: none;
}
.slick-dots li button {
  border: 0;
  background: #0ba1e2;
  box-shadow: none !important;
  width: auto;
  padding: 0;
  border: 0 solid red;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  text-indent: -10000em;
  transition: background 0.2s ease-in-out;
}
.slick-dots li:hover button, .slick-dots li:focus button, .slick-dots li:active button, .slick-dots li.slick-active button {
  background: #1c437c;
}
.slick-dots li:last-of-type:first-of-type {
  display: none;
}

.background {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.background--blue-light {
  background: #e6f1fc;
  background: transparent;
  position: relative;
}
.background--blue-light:before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: #e6f1fc url("../images/puzzle_white50.svg") bottom 50% left 10% no-repeat;
  background-size: 2400px auto;
}

.background--blue-middle {
  background: #abd2f4;
  background: transparent;
  position: relative;
}
.background--blue-middle:before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: #abd2f4 url("../images/puzzle_white50.svg") bottom 50% left 10% no-repeat;
  background-size: 2400px auto;
}

.background--yellow {
  background: #f5e51e;
  background: transparent;
  position: relative;
}
.background--yellow:before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: #f5e51e url("../images/puzzle_white50.svg") bottom 50% left 10% no-repeat;
  background-size: 2400px auto;
}

.background--blue {
  background: #1c437c;
  background: transparent;
  position: relative;
}
.background--blue:before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: #1c437c url("../images/puzzle_white50.svg") bottom 50% left 10% no-repeat;
  background-size: 2400px auto;
}

.background--blue-light.background--wide {
  background: transparent;
  position: relative;
}
.background--blue-light.background--wide:before {
  content: "";
  position: absolute;
  width: 4000em;
  margin-left: -2000em;
  left: 50%;
  top: 0;
  bottom: 0;
  background: #e6f1fc url("../images/puzzle_white50.svg") top 4% left 50.5% no-repeat;
  background-size: 2400px auto;
}

.background--blue-middle.background--wide {
  background: transparent;
  position: relative;
}
.background--blue-middle.background--wide:before {
  content: "";
  position: absolute;
  width: 4000em;
  margin-left: -2000em;
  left: 50%;
  top: 0;
  bottom: 0;
  background: #abd2f4 url("../images/puzzle_white15.svg") top 4% left 50.5% no-repeat;
  background-size: 2400px auto;
}

.teaser__item.teaser__special {
  padding: 0;
  display: flex;
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special {
    margin-bottom: 4rem;
  }
}
.teaser__item.teaser__special > a,
.teaser__item.teaser__special > span {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex: 0 0 100%;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special > a,
  .teaser__item.teaser__special > span {
    padding: 4.5rem 2.5rem;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special > a,
  .teaser__item.teaser__special > span {
    padding: 7.5rem 3.75rem;
  }
}
.teaser__item.teaser__special .teaser__wrap {
  display: flex;
  max-width: none;
  align-items: center;
  width: 100%;
  margin: 0;
}
.teaser__item.teaser__special .teaser__image {
  margin: 0;
}
.teaser__item.teaser__special .teaser__textblock {
  flex: 0 0 100%;
  max-width: 25rem;
}
@media (min-width: 960px) {
  .teaser__item.teaser__special .teaser__textblock {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.teaser__item.teaser__special .teaser__title,
.teaser__item.teaser__special .teaser__text,
.teaser__item.teaser__special .teaser__text p {
  padding-left: 0;
  padding-right: 0;
}
.teaser__item.teaser__special .teaser__title {
  margin-bottom: 1rem;
}
.teaser__item.teaser__special .teaser__text {
  padding-bottom: 0;
  margin-bottom: 1rem;
}
.teaser__item.teaser__special .teaser__read-more {
  margin-left: 0;
  margin-bottom: 0;
}

.teaser__item.teaser__special--guetesiegel {
  transform: translateY(-1.875rem);
  margin-left: 30px;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--guetesiegel {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--guetesiegel {
    transform: translateY(-3.75rem);
  }
}
.teaser__item.teaser__special--guetesiegel > a,
.teaser__item.teaser__special--guetesiegel > span {
  padding: 2.5rem 2.5rem;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--guetesiegel > a,
  .teaser__item.teaser__special--guetesiegel > span {
    padding: 3.25rem 4rem;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--guetesiegel > a,
  .teaser__item.teaser__special--guetesiegel > span {
    padding: 5rem 7.5rem;
  }
}
.teaser__item.teaser__special--guetesiegel .teaser__wrap {
  flex-wrap: wrap;
}
.teaser__item.teaser__special--guetesiegel .teaser__image {
  flex: 0 0 100%;
  margin-left: -15px;
  margin-bottom: 2rem;
}
.teaser__item.teaser__special--guetesiegel .teaser__image .img-responsive {
  width: 120px;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--guetesiegel .teaser__image .img-responsive {
    width: 160px;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--guetesiegel .teaser__image .img-responsive {
    width: 220px;
  }
}
.teaser__item.teaser__special--guetesiegel .teaser__textblock {
  flex: 0 0 100%;
  max-width: 25rem;
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--guetesiegel .teaser__textblock {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.teaser__item.teaser__special--stiftungssuche {
  transform: translateY(-1.875rem);
  margin-left: 30px;
  margin-bottom: 0;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--stiftungssuche {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--stiftungssuche {
    transform: translateY(-3.75rem);
  }
}
.teaser__item.teaser__special--stiftungssuche.background--blue:before {
  background-image: none;
}
.teaser__item.teaser__special--stiftungssuche .teaser__wrap {
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
}
.teaser__item.teaser__special--stiftungssuche .teaser__image {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  order: 0;
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--stiftungssuche .teaser__image {
    flex: 0 0 40%;
    max-width: 40%;
    margin-bottom: 0;
    order: 1;
  }
}
.teaser__item.teaser__special--stiftungssuche .teaser__image .img-responsive {
  max-width: 120px;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--stiftungssuche .teaser__image .img-responsive {
    max-width: 130px;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--stiftungssuche .teaser__image .img-responsive {
    max-width: none;
  }
}
.teaser__item.teaser__special--stiftungssuche a .teaser__title,
.teaser__item.teaser__special--stiftungssuche a .teaser__text p,
.teaser__item.teaser__special--stiftungssuche a .teaser__read-more {
  color: #fff;
}

.teaser__item.teaser__special--video {
  padding: 3.75rem 30px 2rem 30px;
  align-self: flex-start;
}
.teaser__item.teaser__special--video .teaser__wrap {
  display: block;
}
.teaser__item.teaser__special--video .teaser__title {
  text-align: center;
  margin-bottom: 2rem;
}

.teaser__item.teaser__special--partner-werden {
  position: relative;
  margin-left: 30px;
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--partner-werden {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--partner-werden {
    min-height: 560px;
  }
}
.teaser__item.teaser__special--partner-werden > a {
  padding-bottom: 3.75rem;
}
.teaser__item.teaser__special--partner-werden .teaser__wrap {
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-end;
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--partner-werden .teaser__wrap {
    justify-content: flex-end;
  }
}
.teaser__item.teaser__special--partner-werden .teaser__image {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  margin-right: 2rem;
}
@media (min-width: 480px) {
  .teaser__item.teaser__special--partner-werden .teaser__image {
    margin-right: 0;
  }
}
@media (min-width: 720px) {
  .teaser__item.teaser__special--partner-werden .teaser__image {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--partner-werden .teaser__image {
    flex: 0 1 auto;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
  }
}
.teaser__item.teaser__special--partner-werden .teaser__image .img-responsive {
  width: 220px;
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--partner-werden .teaser__image .img-responsive {
    width: 65%;
  }
}
@media (min-width: 960px) {
  .teaser__item.teaser__special--partner-werden .teaser__textblock {
    align-self: flex-end;
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.teaser__item.teaser__special--partner-werden .btn {
  display: block;
  max-width: 15rem;
}
.teaser__item.teaser__special--partner-werden > a:hover .btn, .teaser__item.teaser__special--partner-werden > a:active .btn, .teaser__item.teaser__special--partner-werden > a:focus .btn {
  background: #1c437c;
  border-color: #1c437c;
  color: #fff;
}

.teaser--projects .teaser__image {
  margin-left: 0;
  margin-right: 0;
}
.teaser--projects .teaser__title {
  padding: 0;
}
.teaser--projects .teaser__text {
  padding-left: 0;
  padding-right: 0;
}
.teaser--projects .teaser__item a .teaser__read-more {
  margin-left: 0;
  margin-right: 0;
}
.teaser--projects .teaser__deckhead {
  margin: 0 0 1rem;
  display: block;
}
.teaser--projects .teaser__deckhead > * {
  padding: 0;
  margin-bottom: 0.5rem;
  display: block;
  background-color: transparent !important;
  color: #333333;
}
/*
.teaser--news {

	.teaser__image {
		float: left;
		margin-right: 45px;
	}
}
*/
@media (max-width: 719.98px) {
  .teaser--projects.mt-6 {
    margin-top: 0 !important;
  }
}

.teaser__item--highlight {
  position: relative;
  padding: 2rem 2rem 1rem;
}
@media (max-width: 719.98px) {
  .teaser__item--highlight.mb-8 {
    margin-bottom: 1.5rem !important;
  }
}
.teaser__item--highlight:before {
  content: "";
  display: block;
  background: #e6f1fc url(../images/puzzle_white50.svg) top 20% left 0% no-repeat;
  background-size: 3000px auto;
  background: #f5f5f5 url(../images/puzzle_white50.svg) top 20% left 0% no-repeat;
  background-size: 3000px auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.teaser__item--highlight .teaser__image {
  max-width: 420px;
}
@media (min-width: 480px) {
  .teaser__item--highlight:before {
    left: 30px;
  }
}
@media (min-width: 720px) {
  .teaser__item--highlight {
    margin-top: -2rem;
  }
  .teaser__item--highlight:before {
    top: -30px;
    bottom: 30px;
    left: -90px;
  }
}
@media (min-width: 1200px) {
  .teaser__item--highlight {
    padding-right: 6rem;
  }
  .teaser__item--highlight:before {
    right: 30px;
  }
}

.teaser--list,
.teaser--search-result {
  width: 100%;
}
.teaser--list .teaser__item,
.teaser--list .teaser__item .teaser__wrap,
.teaser--search-result .teaser__item,
.teaser--search-result .teaser__item .teaser__wrap {
  overflow: hidden;
}
@media (min-width: 720px) {
  .teaser--list .teaser__wrap,
  .teaser--search-result .teaser__wrap {
    margin: 0 -30px;
    max-width: none !important;
  }
  .teaser--list .teaser__image,
  .teaser--search-result .teaser__image {
    float: left;
    margin-right: 30px;
    max-width: 310px;
  }
  .teaser--list .teaser__body,
  .teaser--search-result .teaser__body {
    overflow: hidden;
  }
}
@media (min-width: 1200px) {
  .teaser--list .teaser__image,
  .teaser--search-result .teaser__image {
    margin-right: 15px;
  }
}
.teaser--list .teaser__text p,
.teaser--search-result .teaser__text p {
  margin-bottom: 0;
}
.latest-projects:before {
  top: -4rem !important;
  z-index: -1;
}
.latest-projects__header .h3,
.latest-projects__header .h2 {
  font-weight: 700;
  color: #333333;
}
@media (min-width: 720px) {
  .latest-projects__footer {
    position: absolute;
    right: 0;
    top: 4.35rem;
    margin-bottom: 0 !important;
  }
}
.latest-projects__footer .read-more {
  color: #333333;
}
.latest-projects__footer .read-more:hover {
  padding-right: 5rem;
}
.latest-projects__footer .read-more:hover i {
  width: 4rem;
}

.latest-news .background:before {
  left: -2rem;
  right: -5rem;
  width: auto;
}
.latest-news__header .h3,
.latest-news__header .h2 {
  font-weight: 700;
  color: #333333;
}
@media (min-width: 720px) {
  .latest-news__footer {
    position: absolute;
    right: 0;
    top: 4.35rem;
    margin-bottom: 0 !important;
  }
}
.latest-news__footer .read-more {
  color: #333333;
}
.latest-news__footer .read-more:hover {
  padding-right: 5rem;
}
.latest-news__footer .read-more:hover i {
  width: 4rem;
}

.textrow p,
.textrow ul li,
.textrow ol li,
.textrow address {
  font-size: 1rem;
}
@media (min-width: 960px) {
  .textrow p,
  .textrow ul li,
  .textrow ol li,
  .textrow address {
    font-size: 1.25rem;
  }
}
.textrow p a,
.textrow ul li a,
.textrow ol li a,
.textrow address a {
  position: relative;
  display: inline;
  background-image: linear-gradient(#f5e51e, #f5e51e);
  background-position-x: 100%;
  background-position-y: 100%;
  background-size: 100% 4px;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
  text-decoration: none;
  padding-bottom: 4px;
  /*
  &:after {
  	content: "";
  	position: absolute;
  	left: -2%;
  	right: -2%;
  	bottom: 0;
  	height: 25%;
  	background: $yellow;
  	z-index: -1;
  	transition: transform 0.1s ease-in;
  	transform: scaleY(1);
  	transform-origin: bottom;

  	transition: height 0.1s ease-in;
  	height: 15%;
  }


  &:hover,
  &:active,
  &:focus {
  	text-decoration: none;

  	background-size: 100% 100%;

  	&:after {
  		// transform: scaleY(3.8);
  		height: 95%;
  	}
  }


  &[class^="icon-link"] {


  	&:after {
  		left: calc(30px - 2%); // [underline offset] - [icon padding]


  		@include media-breakpoint-up(lg) {
  			// left: calc(36px - 2%);
  		}
  	}
  }
  */
}
.textrow p a:hover, .textrow p a:active, .textrow p a:focus,
.textrow ul li a:hover,
.textrow ul li a:active,
.textrow ul li a:focus,
.textrow ol li a:hover,
.textrow ol li a:active,
.textrow ol li a:focus,
.textrow address a:hover,
.textrow address a:active,
.textrow address a:focus {
  text-decoration: none;
  background-size: 100% 100%;
}
.textrow p a[class^=icon-link],
.textrow ul li a[class^=icon-link],
.textrow ol li a[class^=icon-link],
.textrow address a[class^=icon-link] {
  background-position-x: calc(100% + 28px);
}
@media (max-width: 1199.98px) {
  .textrow p a,
  .textrow ul li a,
  .textrow ol li a,
  .textrow address a {
    background-size: 100% 2px;
    padding-bottom: 2px;
    /*				
    .team__item a.icon-link--mail::before {
        font-size: 16px;
        top: 2px;
        left: 0px;
    }
    */
  }
  .textrow p a[class^=icon-link],
  .textrow ul li a[class^=icon-link],
  .textrow ol li a[class^=icon-link],
  .textrow address a[class^=icon-link] {
    padding-left: 24px;
    background-position-x: calc(100% + 22px);
  }
  .textrow p a[class^=icon-link]::before,
  .textrow ul li a[class^=icon-link]::before,
  .textrow ol li a[class^=icon-link]::before,
  .textrow address a[class^=icon-link]::before {
    font-size: 16px;
    top: 2px;
  }
  .textrow p a.icon-link--mail::before,
  .textrow ul li a.icon-link--mail::before,
  .textrow ol li a.icon-link--mail::before,
  .textrow address a.icon-link--mail::before {
    font-size: 16px;
    top: 2px;
    left: 2px;
  }
}
.textrow ul,
.textrow ol {
  margin-left: 0;
  padding-left: 0;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) {
  .textrow ul,
  .textrow ol {
    margin-bottom: 1rem;
  }
}
.textrow ul ul, .textrow ul ol,
.textrow ol ul,
.textrow ol ol {
  margin-top: 0.25rem;
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .textrow ul ul, .textrow ul ol,
  .textrow ol ul,
  .textrow ol ol {
    margin-bottom: 0;
  }
}
.textrow ul ul li:last-of-type, .textrow ul ol li:last-of-type,
.textrow ol ul li:last-of-type,
.textrow ol ol li:last-of-type {
  margin-bottom: 0;
}
.textrow ul li {
  list-style: none;
  position: relative;
  margin: 0 0 0.25rem;
  padding-left: 20px;
  overflow: hidden;
}
.textrow ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #0ba1e2;
  left: 0px;
  border-radius: 5px;
}
@media (min-width: 960px) {
  .textrow ul li {
    margin: 0 0 1rem;
    padding-left: 40px;
  }
  .textrow ul li:before {
    width: 10px;
    height: 10px;
    top: 11px;
  }
}
.textrow ol {
  counter-reset: list;
}
.textrow ol > li {
  margin: 0 0 0.25rem;
  list-style: none;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
}
@media (min-width: 960px) {
  .textrow ol > li {
    margin: 0 0 1rem;
    padding-left: 40px;
  }
}
.textrow ol > li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: 0;
  color: #0ba1e2;
  font-weight: 700;
}
@media (min-width: 960px) {
  .textrow ol > li:before {
    top: -2px;
    font-size: 1.375rem;
  }
}
.textrow ul ul > li, .textrow ol ul > li {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
}
.textrow ul ul > li:before, .textrow ol ul > li:before {
  top: 8px;
}
@media (min-width: 960px) {
  .textrow ul ul, .textrow ol ul {
    padding: 0.5rem 0;
  }
  .textrow ul ul > li, .textrow ol ul > li {
    padding-left: 20px;
    font-size: 1rem;
  }
  .textrow ul ul > li:before, .textrow ol ul > li:before {
    width: 6px;
    height: 6px;
    top: 9px;
  }
}
.textrow ul.list-unstyled li, .textrow ul.list-inline li, .textrow ol.list-unstyled li, .textrow ol.list-inline li {
  padding-left: 0;
}
.textrow ul.list-unstyled li:before, .textrow ul.list-inline li:before, .textrow ol.list-unstyled li:before, .textrow ol.list-inline li:before {
  display: none;
}

@media (max-width: 719.98px) {
  .tableWrapOuter {
    overflow: hidden;
  }
  .tableWrapOuter .tableWrapInner {
    position: relative;
    overflow-x: auto;
  }
}
table,
table.contenttable,
table.ce-table {
  margin-bottom: 0 !important;
}

.media {
  margin: 0 0 1rem 0;
}
.media.media--full-width {
  padding: 0;
}
@media (min-width: 480px) {
  .media.media--full-width {
    padding: 0;
  }
}
@media (min-width: 960px) {
  .media.media--full-width {
    padding: 0;
  }
}
@media (max-width: 479.98px) {
  .media .media--right {
    margin: 0 0 1rem -30px;
  }
}

@media (min-width: 480px) {
  .media {
    margin: 0 0 1rem;
  }
  .media--left {
    float: left;
    width: 50%;
    padding: 0 30px 0 0;
  }
  .media--right {
    float: right;
    width: 50%;
    padding: 0 0 0 30px;
  }
  .media--left .image,
  .media--right .image {
    margin: 0;
  }
}
@media (min-width: 720px) {
  .media--left {
    padding: 0 60px 0 0;
  }
  .media--right {
    padding: 0 0 0 60px;
  }
}
@media (min-width: 960px) {
  .media--left,
  .media--right {
    width: 340px;
    padding: 0;
  }
  .media--left.media--size-md,
  .media--right.media--size-md {
    width: 440px;
  }
  .media--left {
    margin-right: 60px;
    margin-left: 0;
  }
  .media--left.media--wide {
    margin-left: -13.85%;
  }
  .media--right {
    margin-left: 60px;
    margin-right: -30px;
    margin-right: 0;
  }
  .media--right.media--wide {
    margin-right: -13.85%;
  }
  .media--right.media--wide .media__caption {
    text-align: right;
  }
}
@media (min-width: 960px) {
  .textrow--sm p, .textrow--sm li  {
    font-size: 1rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 480px) {
  .textrow--intro p, .textrow--intro li  {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .textrow--intro p, .textrow--intro li  {
    font-size: 1.375rem;
  }
}

@media (min-width: 720px) {
  .textrow--flex-middle {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
  }
  .textrow--flex-middle .text,
  .textrow--flex-middle .textrow__text {
    order: 0;
  }
  .textrow--flex-middle .media {
    flex: 0 0 auto;
  }
  .textrow--flex-middle .media--right {
    float: none;
    order: 1;
  }
}
/*


.textrow--col-1,
.textrow--col-2,
.textrow--col-3,
.textrow--col-4,
.textrow--col-5 {

	p,
	ul li,
	ol li,
	address {
		font-size: $font-size-base;


		@include media-breakpoint-up(md) {
			font-size: $font-size-base;
		}
	}


	ul,
	ol {

		li {
			padding-left: 20px;
		}
	}


	ul li:before {
		top: 7px;
	}



	.link-group {
		// .link-group--no-border;
		// .link-group--compact;
	}
}


.textrow--col-4,
.textrow--col-5 {


	h4,
	h5 {
		font-size: $font-size-base;
		margin-bottom: ($spacer * 0.5);
	}


	p,
	ul li,
	ol li,
	address {
		font-size: $font-size-base;
	}
}




.textrow--highlight {

	.textrow__text {
		background: $blue-lightest;
		padding: 1rem 20px 1px;

		@include media-breakpoint-up(md) {
			padding: 1.5rem 30px 1px;
		}
	}
}




.textrow--text-overflow-hidden .textrow__text {
	overflow: hidden;
}

*/
.top-scroll__fixed {
  position: fixed;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-indent: -10000em;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.2s ease-in-out, bottom 400ms ease-in-out;
  right: 15px;
  bottom: -60px;
  background: #a7c438;
  color: #fff;
}
.top-scroll__fixed.is-visible {
  bottom: 15px;
}
.top-scroll__fixed:before {
  display: inline-block;
  text-indent: 0;
  position: absolute;
  line-height: 1;
  text-align: center;
  color: #fff;
  line-height: 1;
  top: 15px;
  left: 16px;
  font-size: 16px;
  transform: rotate(-180deg);
}
.top-scroll__fixed:hover:before {
  color: #1c437c;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 5rem;
  transition: 300ms transform ease-out, 300ms height ease-out, 300ms box-shadow ease-in-out;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 100%;
  width: 4000px;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0);
}
@media (min-width: 720px) {
  .header {
    height: 9rem;
  }
}
@media (min-width: 960px) {
  .header {
    height: 10rem;
  }
}

.header__container {
  position: relative;
  height: 100%;
}

.header__meta {
  position: absolute;
  right: 30px;
  top: 1.5rem;
  display: none;
  transition: 300ms transform ease-out, 300ms height ease-out, 300ms box-shadow ease-in-out;
}
@media (min-width: 960px) {
  .header__meta {
    display: flex;
    align-items: center;
  }
}

.header__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  width: calc(100% - 260px);
}
@media (min-width: 960px) {
  .header__navigation {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header__navigation {
    width: calc(100% - 320px);
  }
}

.header__logo {
  position: absolute;
  z-index: 999;
  transition: all 0.2s ease-in-out;
  left: 30px;
  bottom: 50%;
  transform: translateY(54%);
  width: 7.5rem;
}
@media (min-width: 720px) {
  .header__logo {
    width: 10rem;
  }
}
@media (min-width: 960px) {
  .header__logo {
    bottom: 0;
    transform: translateY(6px);
    width: 12.5rem;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    width: 15rem;
  }
}

.header.header--fixed.scroll-direction-is-up {
  transform: translateY(0%);
}
.header.header--fixed.scroll-offset-small-is-reached {
  height: 5rem;
}
@media (min-width: 720px) {
  .header.header--fixed.scroll-offset-small-is-reached {
    height: 9rem;
  }
}
.header.header--fixed.scroll-offset-small-is-reached .header__logo {
  left: 30px;
  bottom: 50%;
  transform: translateY(54%);
  width: 7.5rem;
}
@media (min-width: 720px) {
  .header.header--fixed.scroll-offset-small-is-reached .header__logo {
    left: 30px;
    bottom: 50%;
    transform: translateY(54%);
    width: 10rem;
  }
}
.header.header--fixed.scroll-offset-small-is-reached .header__meta {
  transform: translateY(-150%);
}
.header.header--fixed.scroll-offset-small-is-reached .header__navigation {
  bottom: 40%;
  transform: translateY(40%);
}
.header.header--fixed.scroll-direction-is-down.scroll-offset-out-is-reached {
  transform: translateY(-100%);
}

.slide-nav-trigger,
.navigation-mobile .slide-nav-label-close {
  z-index: 1;
  margin-bottom: 0;
  height: 1.5rem;
  width: 1.5rem;
  z-index: 1;
  position: absolute;
  right: 1.75rem;
  top: 1.75rem;
  cursor: pointer;
}
.slide-nav-trigger:before,
.navigation-mobile .slide-nav-label-close:before {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  transition: all 0.2s ease-in-out;
}
.slide-nav-trigger:hover, .slide-nav-trigger:active,
.navigation-mobile .slide-nav-label-close:hover,
.navigation-mobile .slide-nav-label-close:active {
  text-decoration: none;
}
.slide-nav-trigger:hover:before, .slide-nav-trigger:active:before,
.navigation-mobile .slide-nav-label-close:hover:before,
.navigation-mobile .slide-nav-label-close:active:before {
  color: #000;
}
@media (min-width: 960px) {
  .slide-nav-trigger,
  .navigation-mobile .slide-nav-label-close {
    display: none;
  }
}

.footer {
  padding: 2rem 0;
  background: #e6f1fc;
  background: transparent;
  position: relative;
}
.footer:before {
  content: "";
  position: absolute;
  width: 4000em;
  margin-left: -2000em;
  left: 50%;
  top: 0;
  bottom: 0;
  background: #e6f1fc url("/assets/images/puzzle_white50.svg") top 16% left 50.5% no-repeat;
  background-size: 2400px auto;
}

.footer__logo {
  margin-bottom: 2rem;
}
.footer__logo img {
  max-width: 200px;
  height: auto;
}
@media (min-width: 720px) {
  .footer__logo img {
    max-width: 245px;
  }
}

.footer__description {
  margin-bottom: 1rem;
}
.footer__description p {
  font-size: 1rem;
}
@media (min-width: 720px) {
  .footer__description {
    margin-top: 4.5rem;
    margin-bottom: 1rem;
  }
  .footer__description p {
    font-size: 1.25rem;
  }
}

.footer__legal li {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1rem;
}
.footer__legal li a {
  position: relative;
  z-index: 1;
}
.footer__legal li a:after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 25%;
  background: #f5e51e;
  z-index: -1;
  opacity: 0;
  transition: height 0.1s ease-in;
  height: 0%;
}
.footer__legal li a:hover, .footer__legal li a:active, .footer__legal li a:focus {
  text-decoration: none;
}
.footer__legal li a:hover:after, .footer__legal li a:active:after, .footer__legal li a:focus:after {
  opacity: 1;
  height: 95%;
}

/*
|--------------------------------------------------------------------------
| Fact Box
|--------------------------------------------------------------------------
|
| Do:
| Don't:
|
| Options:
|
*/
.factbox {
  position: relative;
}
.factbox:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #e6f1fc url("../images/puzzle_white50.svg") top 16% left 6% no-repeat;
  background-size: 2500px auto;
}
@media (min-width: 720px) {
  .factbox {
    padding: 60px 0;
  }
  .factbox:before {
    content: "";
    display: block;
    position: absolute;
    top: 30px;
    bottom: -30px;
    left: 0;
    width: 33.33333%;
    z-index: -3;
    background: #1c437c url("../images/puzzle_white05.svg") top 16% left 6% no-repeat;
    background-size: 2500px auto;
  }
  .factbox:after {
    background: #e6f1fc;
    top: 0;
    width: calc(66.666% + 30px);
  }
}

.factbox__inner {
  padding: 1.25rem 0;
}
@media (min-width: 960px) {
  .factbox__inner {
    padding: 0;
  }
}

.factbox__item.row {
  margin: 0;
  position: relative;
  padding: 1.25rem 0 1.25rem 0;
}
.factbox__item.row:before {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 1px;
  background: #abd2f4;
}
.factbox__item.row:last-of-type:before {
  display: none;
}
@media (min-width: 720px) {
  .factbox__item.row {
    padding: 0 0 1rem 0;
  }
}
@media (min-width: 720px) {
  .factbox__item.row {
    margin: 0;
    padding: 0.75rem 0;
  }
  .factbox__item.row:before {
    display: none;
  }
}
@media (min-width: 960px) {
  .factbox__item.row {
    padding: 1.25rem 0;
  }
}

.factbox__label {
  padding: 0 90px 0 30px;
}

.factbox__title {
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  font-size: 1rem;
}
@media (min-width: 720px) {
  .factbox__title {
    margin-bottom: 0;
    text-align: right;
    color: #e6f1fc;
    font-weight: 400;
  }
}
@media (min-width: 960px) {
  .factbox__title {
    font-size: 1.25rem;
  }
}

.factbox__content {
  line-height: 1.6;
  padding: 0 60px 0 30px;
  font-size: 1rem;
}
@media (min-width: 720px) {
  .factbox__content {
    padding: 0 60px 0 30px;
  }
}
@media (min-width: 960px) {
  .factbox__content {
    font-size: 1.25rem;
  }
}

.factbox p,
.factbox ul,
.factbox ol,
.factbox address {
  margin-bottom: 0;
  font-size: inherit;
}

.facts .facts__panel div[class^=col-] {
  width: 100% !important;
  flex: 0 0 100% !important;
  margin-left: 0 !important;
}

.projecthero {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .projecthero {
    padding-top: 0;
  }
}
.projecthero .media {
  margin: 0;
}
.projecthero .image__credits {
  right: auto;
  left: 0;
}
.projecthero .image__credits {
  bottom: auto;
  top: 0;
}
@media (min-width: 960px) {
  .projecthero .image__credits {
    bottom: 0;
    top: auto;
  }
}
.projecthero .h3 {
  font-weight: 300 !important;
}
.projecthero h4,
.projecthero h5,
.projecthero ul li {
  margin-bottom: 0;
}
.projecthero p {
  margin-bottom: 1rem;
}
.projecthero p,
.projecthero ul li {
  font-size: 1rem !important;
}

/*
.projecthero--banner {
	position: relative;
	height: 100%;


	&:before {
		content: "";
		display: block;
		background: $yellow url("../images/puzzle_white50.svg") top 6% left 6% no-repeat;
		background-size: 3000px auto;
		top: 0;
		bottom: 0;
		left: 30px;
		right: 0;
		position: absolute;


		@include media-breakpoint-up(sm) {
			right: 30px;
		}


		@include media-breakpoint-up(lg) {
			top: 0;
		}


		@media (min-width: 1800px) {
			right: auto;
			left: 50%;
			width: 1740px;
			transform: translateX(-50%);
		}
	}


	.projecthero__container {
		padding: 1.5rem 2rem 1rem 4rem;
		position: relative;

		@include media-breakpoint-up(sm) {
			padding: 1.5rem 4rem 1rem;
		}

		@include media-breakpoint-up(md) {
			padding: 4rem 5rem 3rem;
		}
	}
}
*/
/*

.hero--dark {

	h1,
	h2,
	h3,
	h4,
	h5,
	p,
	a[class^="icon-link"] {
		color: #fff;


		&:hover,
		&:active,
		&:focus {
			color: #fff;
		}
	}


	&:before {
		background: $primary url("../images/puzzle_white15.svg") top 6% left 6% no-repeat;
		background-size: 3000px auto;
	}
}


*/
.projecthero--banner-image {
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width: 960px) {
  .projecthero--banner-image {
    max-width: 1600px;
    margin: 0 auto 2rem;
    clear: both;
    overflow: hidden;
  }
}
.projecthero--banner-image .projecthero__image {
  background: #f7f7f7;
  margin: 0 30px 0 0;
  max-width: 480px;
}
@media (min-width: 720px) {
  .projecthero--banner-image .projecthero__image {
    max-width: 70%;
  }
}
@media (min-width: 960px) {
  .projecthero--banner-image .projecthero__image {
    width: 50%;
    max-width: 900px;
    margin: 0 0 0 30px;
    float: left;
    margin: 0;
    max-width: none;
    width: 80%;
  }
}
.projecthero--banner-image .projecthero__container {
  background: #f5e51e;
  padding: 1.5rem 2rem 1rem;
  margin: -30px 0 0 30px;
  position: relative;
  z-index: 1;
  width: auto;
  background: #f5f5f5;
}
.projecthero--banner-image .projecthero__container:before {
  content: "";
  display: block;
  background: #f5f5f5 url(../images/puzzle_white50.svg) top 42.5% left 5% no-repeat;
  background-size: 2500px auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
@media (min-width: 720px) {
  .projecthero--banner-image .projecthero__container {
    padding: 2.5rem 3rem 2rem;
  }
}
@media (min-width: 960px) {
  .projecthero--banner-image .projecthero__container {
    float: right;
    width: 40%;
    margin: 60px 0 0 -25%;
  }
}

.projecthero__fact-item {
  overflow: hidden;
}
.projecthero__fact-item p,
.projecthero__fact-item li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.projecthero__fact-item ul {
  padding-left: 0;
  list-style: none;
}
.projecthero__fact-item ul li {
  position: relative;
  padding-left: 15px;
}
.projecthero__fact-item ul li:before {
  position: absolute;
  top: 7px;
  left: -1px;
  font-size: 13px;
  color: #0ba1e2;
}
.projecthero__fact-item .icon-link--mail {
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.projecthero__fact-item .icon-link--mail:before {
  font-size: 20px;
  top: 2px;
  left: 2px;
}
.projecthero__fact-item .icon-link--mail:after {
  content: "";
  position: absolute;
  left: 28px;
  right: -2%;
  bottom: 0;
  height: 25%;
  background: #f5e51e;
  z-index: -1;
  opacity: 0;
  transition: height 0.1s ease-in;
  height: 0%;
}
.projecthero__fact-item .icon-link--mail:hover, .projecthero__fact-item .icon-link--mail:active, .projecthero__fact-item .icon-link--mail:focus {
  text-decoration: none;
}
.projecthero__fact-item .icon-link--mail:hover:after, .projecthero__fact-item .icon-link--mail:active:after, .projecthero__fact-item .icon-link--mail:focus:after {
  opacity: 1;
  height: 95%;
}
.projecthero__fact-item .icon-link--extern {
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.projecthero__fact-item .icon-link--extern:before {
  font-size: 18px;
  top: 4px;
  left: 2px;
}
.projecthero__fact-item .icon-link--extern:after {
  content: "";
  position: absolute;
  left: calc(30px - 2%);
  right: -2%;
  bottom: 0;
  height: 25%;
  background: #f5e51e;
  z-index: -1;
  opacity: 0;
  transition: height 0.1s ease-in;
  height: 0%;
}
.projecthero__fact-item .icon-link--extern:hover, .projecthero__fact-item .icon-link--extern:active, .projecthero__fact-item .icon-link--extern:focus {
  text-decoration: none;
}
.projecthero__fact-item .icon-link--extern:hover:after, .projecthero__fact-item .icon-link--extern:active:after, .projecthero__fact-item .icon-link--extern:focus:after {
  opacity: 1;
  height: 95%;
}

.rating {
  margin-bottom: 15px;
}
.rating__range {
  display: flex;
  justify-content: flex-start;
  margin: 5px 0;
}
.rating__item {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: white;
  margin-right: 10px;
  position: relative;
}
.rating__item--checked:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f5e51e;
  height: 18px;
  width: 18px;
  border-radius: 50%;
}
.rating__number {
  display: none;
}

.sdg {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .sdg {
    margin-top: -3rem;
    margin-bottom: 1.5rem !important;
  }
}
.sdg__item {
  margin: 0 0.5rem 0.5rem 0;
  width: 75px;
}
@media (min-width: 720px) {
  .sdg__item {
    width: 90px;
    margin: 0 1rem 1rem 0;
  }
}

.sitemap {
  display: flex;
  list-style: none outside;
  padding: 0;
  margin: 0;
}
.sitemap li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.sitemap--level-1 {
  flex-wrap: wrap;
  margin: 0 -30px;
}
.sitemap--level-1 > li {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: 0 30px;
}
@media (min-width: 480px) {
  .sitemap--level-1 > li {
    margin-bottom: 2rem;
  }
}
@media (min-width: 720px) {
  .sitemap--level-1 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.sitemap--level-2 {
  flex-direction: row;
  flex-wrap: wrap;
}
.sitemap--level-2 > li {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}
.sitemap--level-2 li a {
  color: #1c437c;
  text-decoration: none;
}
.sitemap--level-2 li a:hover, .sitemap--level-2 li a:active {
  text-decoration: underline;
}

.sitemap--level-3 {
  flex-direction: column;
}
.sitemap--level-3 > li {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}
.sitemap--level-3 > li:first-of-type {
  margin-top: 1rem;
}
.sitemap--level-3 > li:last-of-type {
  margin-bottom: 0;
}

.sitemap__h1,
.sitemap__h2 {
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.sitemap__h1 {
  padding: 2rem 0;
  position: relative;
}
.sitemap__h1:before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  background: #abd2f4;
}
@media (min-width: 480px) {
  .sitemap__h1 {
    padding: 3rem 0;
  }
}

.hero--banner.not-found-wrap .link-group a,
.hero--banner.not-found-wrap .h1 {
  color: #fff;
}
.hero--banner.not-found-wrap .h1 {
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .hero--banner.not-found-wrap .h1 {
    margin-bottom: 4rem;
  }
}
.hero--banner.not-found-wrap .col {
  padding: 0;
}
.hero--banner.not-found-wrap:before {
  background: #1c437c url("../images/puzzle_white25.svg") top 6% left 6% no-repeat;
  background-size: 2000px auto;
}
.hero--banner.not-found-wrap .hero__container {
  padding: 1.5rem 2rem 1rem 4rem;
  position: relative;
}
@media (min-width: 480px) {
  .hero--banner.not-found-wrap .hero__container {
    padding: 1.5rem 4rem 1rem;
  }
}
@media (min-width: 720px) {
  .hero--banner.not-found-wrap .hero__container {
    padding: 4rem 5rem 3rem;
  }
}

/*# sourceMappingURL=main.css.map */