.btn {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: var(--gutter-xs);
  height: var(--finger-size-xxl);
  padding-right: var(--gutter-default);
  padding-left: var(--gutter-default);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: var(--transition-default);
}
.btn-default {
  box-shadow: 0 4px 15px rgba(29, 47, 93, 0.3);
  transition: var(--transition-default);
  overflow: hidden;
  position: relative;
}
.btn-default:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-default:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 47, 93, 0.4);
}
.btn-default:hover:before {
  left: 100%;
}
.btn-primary {
  padding: 0;
  gap: 6px;
  color: var(--color-primary);
}
.btn-primary span {
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .btn-primary span {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .btn-primary span {
    font-size: 18px;
  }
}
.btn-primary i {
  font-size: 26px;
}
.btn-primary_light span {
  background-color: #f9fcff !important;
}
.btn-error {
  padding-right: var(--gutter-lg);
  padding-left: var(--gutter-lg);
  color: white;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(29, 47, 93, 0.3);
  background-color: var(--color-primary);
  overflow: hidden;
  position: relative;
}
@media (hover: hover) {
  .btn-error:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 47, 93, 0.4);
  }
  .btn-error:hover:before {
    left: 100%;
  }
}
.btn-error:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-anchor {
  height: 52px;
  gap: 0;
  padding-right: var(--gutter-sm);
  padding-left: var(--gutter-sm);
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.btn-anchor span {
  display: flex;
  width: 100%;
  height: 32px;
  padding-right: var(--gutter-xs);
  align-items: center;
  transition: all 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  background-color: var(--color-white);
  position: relative;
}
.btn-anchor i {
  height: 32px;
  background-color: var(--color-white);
  transition: all 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (hover: hover) {
  .btn-anchor:hover span {
    color: var(--color-secondary);
  }
  .btn-anchor:hover i {
    color: var(--color-secondary);
  }
  .btn-anchor:hover .btn-anchor-transition-bar {
    width: 100%;
    left: 100%;
    transition: all 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  }
}
.btn-anchor-transition-bar {
  width: 0;
  height: 100%;
  background: var(--color-secondary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-form {
  width: 100%;
  height: 42px;
  color: var(--color-light);
  font-weight: 600;
  border-radius: 4px;
  background-color: var(--color-primary);
}
.btn-slider {
  height: 42px;
  padding-right: 36px;
  padding-left: 36px;
  color: var(--color-white);
  border-radius: 36px;
  font-weight: 500;
  background-color: var(--color-secondary);
}
@media (hover: hover) {
  .btn-slider:hover {
    background-color: var(--color-red);
  }
}
.btn_light {
  color: var(--color-light);
}

.card .outer:before {
  padding-top: 75%;
}
.card .outer .inner {
  background-size: cover;
}
.card-v1_2.outer:before {
  padding-top: 200%;
}
.card-v2_4.outer:before {
  padding-top: 200%;
}
.card-v3_4.outer:before {
  padding-top: 133.3333333333%;
}
.card-v4_3.outer:before {
  padding-top: 75%;
}
.card-v4_2.outer:before {
  padding-top: 50%;
}
.card-v4_4.outer:before {
  padding-top: 100%;
}
.card-v8_4.outer:before {
  padding-top: 100%;
}
@media (min-width: 992px) {
  .card-v8_4.outer:before {
    padding-top: calc(50% - 12px);
  }
}
.card-v16_9.outer:before {
  padding-top: 56.25%;
}

form:invalid button[type=submit],
form:invalid input[type=submit] {
  pointer-events: none;
  opacity: 0.8;
  cursor: not-allowed;
}
form:invalid input[type=file] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -101;
}
form input:not([type=checkbox], [type=radio], [type=search], [type=file], [type=submit], [type=range]),
form textarea:not([type=checkbox], [type=radio], [type=search], [type=file], [type=submit], [type=range]) {
  width: 100%;
  padding-left: var(--gutter-sm);
  padding-right: var(--gutter-sm);
  color: var(--color-dark);
  font-size: var(--font-size-xs);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 300ms linear;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-light);
}
form input:not([type=checkbox], [type=radio], [type=search], [type=file], [type=submit], [type=range]):focus,
form textarea:not([type=checkbox], [type=radio], [type=search], [type=file], [type=submit], [type=range]):focus {
  outline: 0;
  border-color: rgba(var(--rgb-primary), 0.5);
  box-shadow: 0 0 0 0.25rem rgba(var(--rgb-primary), 0.25);
}
form input:not([type=checkbox], [type=radio], [type=file]),
form textarea:not([type=checkbox], [type=radio], [type=file]) {
  height: var(--finger-size-xl);
}
form input[type=button], form input[type=submit],
form textarea[type=button],
form textarea[type=submit] {
  border: none;
  cursor: pointer;
}
form input[type=checkbox]:checked, form input[type=checkbox]:not(:checked) {
  opacity: 0.01;
  position: absolute;
  left: 0;
}
form input[type=checkbox]:checked:focus + label:before, form input[type=checkbox]:not(:checked):focus + label:before {
  box-shadow: 0 0 0 0.25rem rgba(var(--rgb-primary), 0.25);
}
form input[type=checkbox]:checked + label, form input[type=checkbox]:not(:checked) + label {
  display: block;
  padding-left: var(--gutter-xxl);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--color-gray);
  font-size: var(--font-size-xs);
  font-weight: 500;
  line-height: 1.5em;
  cursor: pointer;
}
form input[type=checkbox]:checked + label:before, form input[type=checkbox]:checked + label:after, form input[type=checkbox]:not(:checked) + label:before, form input[type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
}
form input[type=checkbox]:checked + label:before, form input[type=checkbox]:not(:checked) + label:before {
  font-size: var(--finger-size-default);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-light);
  transition: var(--transition-default);
  left: 0;
  top: 0;
}
form input[type=checkbox]:checked + label:after, form input[type=checkbox]:not(:checked) + label:after {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  transition: var(--transition-default);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(29,47,93,1)'%3E%3Cpath d='M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  top: var(--gutter-xs);
  left: var(--gutter-xs);
}
form input[type=checkbox]:checked + label > a, form input[type=checkbox]:not(:checked) + label > a {
  text-decoration: underline;
}
form input[type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
form input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
form input[type=checkbox]:disabled:checked label:before, form input[type=checkbox]:disabled:not(:checked) label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}
form input[type=checkbox]:disabled:checked + label {
  color: #777;
}
form input[type=checkbox]:disabled + label {
  color: #aaa;
}
form textarea {
  padding: 13px;
  resize: none;
}
form textarea.h135 {
  min-height: 210px;
}
@media (min-width: 768px) {
  form textarea.h135 {
    min-height: 135px;
  }
}
form button {
  outline: none;
}
form button::-moz-focus-inner {
  border: 0;
}

.form {
  position: relative;
}
.form-wrapper {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--color-light);
}
@media (min-width: 576px) {
  .form-wrapper {
    padding: 24px;
  }
}
@media (min-width: 768px) {
  .form-wrapper {
    padding: 24px 36px;
  }
}
@media (min-width: 992px) {
  .form-wrapper {
    padding: 36px 48px;
  }
}
.form-title {
  display: block;
  margin-bottom: var(--gutter-xs);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark);
}
.form-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
}
.form-row + .form-row {
  margin-top: 10px;
}
.form-col {
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 992px) {
  .form-col {
    width: 50%;
  }
  .form-col + .form-col {
    margin-top: 0;
    margin-left: 15px;
  }
}
.form-wrap {
  width: 100%;
  position: relative;
}
.form-group {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
  }
}
.form-label {
  display: inline-block;
  margin-bottom: var(--gutter-xs);
  line-height: normal;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}
.form-control:focus, .form-select:focus {
  border-color: rgba(var(--rgb-primary), 0.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--rgb-primary), 0.25);
  background-color: var(--color-white);
}
.form-control:disabled, .form-select:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}
.form-control.hidden, .form-select.hidden {
  display: none;
}
.form-control.hidden.visible, .form-select.hidden.visible {
  display: block;
}
.form-check {
  display: flex;
  min-height: 36px;
  align-items: center;
  position: relative;
}
.form-check-input {
  opacity: 0.01;
  position: absolute;
  top: 0;
  left: 0;
}
.form .form-terms-link {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}
.form .form-terms-link:hover {
  color: var(--color-primary);
}

.select {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.select:not(:last-child) {
  margin-bottom: var(--gutter-default);
}
@media (min-width: 992px) {
  .select:not(:last-child) {
    margin-bottom: 0;
  }
}
.select-label {
  display: block;
  margin-right: auto;
  margin-bottom: 6px;
  color: rgba(var(--rgb-dark), 0.6);
}
@media (min-width: 346px) {
  .select-label {
    font-size: var(--font-size-xs);
  }
}
@media (min-width: 576px) {
  .select-label {
    margin-bottom: var(--gutter-sm);
  }
}
@media (min-width: 992px) {
  .select-label {
    margin-bottom: var(--gutter-xs);
  }
}
.select select {
  display: block;
  width: 100%;
  height: 48px;
  padding-right: 12px;
  padding-left: 12px;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: rgba(var(--rgb-light), 0.5);
  font-size: var(--font-size-sm);
  letter-spacing: -0.5px;
  text-transform: capitalize;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0icmdiYSgyNDMsMjQ2LDI0NSwxKSI+PHBhdGggZD0iTTEyIDE2TDYgMTBIMThMMTIgMTZaIj48L3BhdGg+PC9zdmc+");
  position: relative;
}
.select select:focus {
  border: rgba(var(--rgb-primary), 0.5);
  background-color: var(--color-secondary);
}
.select select:focus:disabled {
  cursor: not-allowed;
}
.select select option {
  font-weight: 400;
}
.select select svg {
  fill: #162a48;
  font-size: 24px;
  position: absolute;
  top: var(--gutter-lg);
  right: var(--gutter-lg);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 226, 254.6);
  --bs-table-border-color: rgb(165.28, 180.8, 203.68);
  --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(225.6, 227.4, 229);
  --bs-table-border-color: rgb(180.48, 181.92, 183.2);
  --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: rgb(209, 231, 220.8);
  --bs-table-border-color: rgb(167.2, 184.8, 176.64);
  --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 244.4, 252);
  --bs-table-border-color: rgb(165.28, 195.52, 201.6);
  --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-border-color: rgb(204, 194.08, 164.32);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: rgb(248, 214.6, 217.8);
  --bs-table-border-color: rgb(198.4, 171.68, 174.24);
  --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: rgb(198.4, 199.2, 200);
  --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 224.1, 225);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: rgb(77.4, 80.6, 83.8);
  --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.d-block {
  display: block !important;
}

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

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

.p-static {
  position: static !important;
}

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

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

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

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

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

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

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

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

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

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

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

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

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

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

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

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

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

.mt-5 {
  margin-top: 3rem !important;
}

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

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

.mb-5 {
  margin-bottom: 3rem !important;
}

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

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

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

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

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

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

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

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

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

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

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

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

.pe-5 {
  padding-right: 3rem !important;
}

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

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

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

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

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

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

.ps-5 {
  padding-left: 3rem !important;
}

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

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

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

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
.logo-header {
  position: relative;
  z-index: 1001;
}
.logo-header img {
  max-width: 140px;
}
@media (min-width: 1200px) {
  .logo-header img {
    max-width: 170px;
  }
}
.logo-header_large {
  display: none;
}
@media (min-width: 992px) {
  .logo-header_large {
    display: block;
  }
}
@media (min-width: 992px) {
  .logo-header_small {
    display: none;
  }
}
.logo-footer {
  margin-bottom: var(--gutter-xl);
}

.lang {
  display: flex;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.lang-header {
  padding-right: 16px;
  padding-left: 16px;
  margin-left: auto;
  border-radius: 20px;
  border: 1px solid #24386b;
  background-color: var(--color-primary);
  position: relative;
  z-index: 121;
}
@media (min-width: 992px) {
  .lang-header {
    width: 144px;
    margin-left: var(--gutter-xl);
    border-radius: 24px;
  }
}
.lang-header:hover {
  background-color: var(--color-secondary);
}
.lang-header, .lang-nav {
  gap: var(--gutter-xs);
  color: var(--color-light);
}
@media (min-width: 992px) {
  .lang-header, .lang-nav {
    gap: var(--gutter-sm);
  }
}
.lang-header span, .lang-nav span {
  font-size: 14px;
  font-weight: 500;
}
.lang-header i, .lang-nav i {
  font-size: 18px;
}

.social {
  display: flex;
}
.social-item {
  display: flex;
  width: var(--finger-size-default);
  height: var(--finger-size-default);
  align-items: center;
  justify-content: center;
}
.social-item:not(:last-child) {
  margin-right: var(--gutter-sm);
}
.social-item i {
  transition: var(--transition-default);
}
.social-header {
  display: flex;
  margin-left: auto;
  align-items: center;
}
@media (min-width: 1200px) {
  .social-header:before {
    content: "";
    width: 1px;
    margin-right: 32px;
    margin-left: 32px;
    height: var(--gutter-xxl);
  }
}
.social-header .social-item {
  margin-right: 0;
  position: relative;
}
@media (min-width: 768px) {
  .social-header .social-item {
    width: var(--finger-size-default);
    height: var(--finger-size-default);
  }
}
@media (min-width: 992px) {
  .social-header .social-item {
    width: var(--finger-size-xl);
    height: var(--finger-size-xl);
  }
}
@media (hover: hover) {
  .social-header .social-item:hover {
    opacity: 0.9;
    transform: scale(1.1);
  }
  .social-header .social-item:hover i {
    color: var(--color-secondary);
  }
}
.social-header .social-item i {
  font-size: 16px;
  color: var(--color-white);
}
@media (min-width: 992px) {
  .social-header .social-item i {
    font-size: 20px;
  }
}
.social-nav {
  /*
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter-sm);
  padding-left: var(--gutter-sm);

  @include mq('small') {
    max-width: 540px;
    padding-right: 0;
    padding-left: 0;
  }

  @include mq('medium') {
    max-width: 720px;
  }
  */
}
@media (min-width: 992px) {
  .social-nav {
    display: none;
  }
}
.social-nav .social-item {
  width: var(--finger-size-xl);
  height: var(--finger-size-xl);
  border-radius: 8px;
  background-color: var(--color-border);
}
@media (min-width: 992px) {
  .social-nav .social-item {
    width: var(--finger-size-default);
    height: var(--finger-size-default);
  }
}
.social-nav .social-item:not(:last-child) {
  margin-right: var(--gutter-default);
}
@media (min-width: 992px) {
  .social-nav .social-item:not(:last-child) {
    margin-right: var(--gutter-xs);
  }
}
.social-nav .social-item i {
  font-size: 18px;
}
.social-footer {
  margin-left: -8px;
}
.social-footer .social-item {
  border-radius: 8px;
  background-color: #24386b;
}
@media (hover: hover) {
  .social-footer .social-item:hover {
    background-color: var(--color-secondary);
  }
}
.social-footer .social-item i {
  font-size: 20px;
  fill: #b6b6b6;
}
.social-contact .social-item {
  border-radius: 8px;
  background-color: var(--color-primary);
}
@media (hover: hover) {
  .social-contact .social-item:hover {
    background-color: var(--color-secondary);
  }
}
.social-contact .social-item i {
  font-size: 20px;
  color: var(--color-white);
}

.breadcrumb {
  display: flex;
  line-height: 21px;
}
.breadcrumb li {
  display: flex;
  height: var(--finger-size-default);
  align-items: center;
}
.breadcrumb li:first-child {
  display: none;
}
@media (min-width: 576px) {
  .breadcrumb li:first-child {
    display: flex;
  }
}
.breadcrumb li > span {
  margin-right: var(--gutter-sm);
  margin-left: var(--gutter-sm);
}
.breadcrumb li a {
  display: flex;
  height: var(--finger-size-default);
  align-items: center;
  white-space: nowrap;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}
.breadcrumb li a span {
  display: block;
  font-weight: 500;
}
.breadcrumb li:hover a {
  color: var(--color-secondary);
}
.breadcrumb li:last-child a span {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .breadcrumb li:last-child a span {
    max-width: inherit;
  }
}

.editor {
  text-align: justify;
  color: var(--color-default);
}
.editor ol {
  padding-left: 20px;
}
.editor ol li {
  list-style-type: decimal;
}
.editor ul {
  padding-left: 20px;
}
.editor ul li {
  list-style-type: disc;
}
.editor ul li:before {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-right: var(--gutter-xs);
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  background-color: var(--color-default);
}
.editor ol,
.editor ul {
  margin-top: var(--gutter-default);
  margin-bottom: var(--gutter-default);
}
.editor ol li:not(:last-child),
.editor ul li:not(:last-child) {
  margin-bottom: var(--gutter-xs);
}
.editor ol li,
.editor ul li,
.editor p {
  line-height: 1.6;
}
.editor ol li b,
.editor ol li strong,
.editor ul li b,
.editor ul li strong,
.editor p b,
.editor p strong {
  color: var(--color-secondary);
}
.editor p ~ strong {
  font-size: 20px;
}
.editor img {
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.editor a {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}
.editor a:hover {
  color: var(--color-red);
}
.editor table:not(:first-child),
.editor h2:not(:first-child),
.editor p:not(:first-child),
.editor h3:not(:first-child),
.editor h4:not(:first-child),
.editor h5:not(:first-child) {
  margin-top: var(--gutter-default);
}
.editor table:not(:last-child),
.editor h2:not(:last-child),
.editor p:not(:last-child),
.editor h3:not(:last-child),
.editor h4:not(:last-child),
.editor h5:not(:last-child) {
  margin-bottom: var(--gutter-default);
}
.editor h2,
.editor h3,
.editor h4,
.editor h5 {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  letter-spacing: -0.5px;
}
.editor br {
  display: none;
}
.editor table {
  overflow: hidden;
}
.editor table tr {
  border-bottom: 1px solid rgba(var(--rgb-dark), 0.2);
  transition: var(--transition-default);
}
.editor table tr:nth-child(odd) {
  background-color: rgba(var(--rgb-light), 0.4);
}
@media (hover: hover) {
  .editor table tr:hover {
    background-color: rgba(var(--rgb-dark), 0.1);
  }
}
.editor table tr:first-child {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.editor table tr:first-child th,
.editor table tr:first-child td {
  font-weight: var(--font-weight-semibold);
}
.editor table tr:first-child th:not(:first-child),
.editor table tr:first-child td:not(:first-child) {
  border-left: 1px solid rgba(var(--rgb-gray), 0.5);
}
.editor table tr:not(:first-child) th,
.editor table tr:not(:first-child) td {
  border-left: 1px solid rgba(var(--rgb-dark), 0.2);
}
.editor table tr:not(:first-child) th:last-child,
.editor table tr:not(:first-child) td:last-child {
  border-right: 1px solid rgba(var(--rgb-dark), 0.2);
}
.editor table tr th,
.editor table tr td {
  padding: var(--gutter-sm);
}

.iframe-content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.iframe-responsive {
  display: block;
  background-color: var(--color-light);
  position: relative;
}
.iframe-responsive iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.iframe__video {
  padding-bottom: 56.25%;
}
.iframe__map {
  padding-bottom: 100%;
}
@media (min-width: 768px) {
  .iframe__map {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 992px) {
  .iframe__map {
    height: 400px;
    padding-bottom: 0;
  }
}

.modal {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  background: rgba(var(--rgb-black), 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1009;
}
@media (min-width: 992px) {
  .modal {
    align-items: center;
  }
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal.show .modal-dialog {
  transform: translateY(0);
}
.modal-large .modal-dialog {
  max-width: 1140px;
}
.modal-default .modal-dialog {
  max-width: 576px;
}
.modal-dialog {
  width: 100%;
  transform: translateY(100%);
  transition: all 0.2s cubic-bezier(0.75, 0.5, 0.05, 1);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-white);
  position: relative;
}
@media (min-width: 992px) {
  .modal-dialog {
    max-height: calc(100% - 10rem);
    margin: 1.75rem auto;
    padding: 0;
  }
}
.modal-head {
  margin-bottom: var(--gutter-lg);
  padding-bottom: var(--gutter-default);
  border-bottom: 1px solid var(--color-light);
  /*
  @include mq('large') {
    height: 72px;
    margin-bottom: 0;
    padding: var(--gutter-default) var(--gutter-lg);
  }
  */
}
.modal-title {
  margin-bottom: var(--gutter-sm);
  font-size: 24px;
  font-weight: 600;
}
.modal-description {
  color: var(--color-gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.modal-name {
  display: flex;
  gap: var(--gutter-sm);
  align-items: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-secondary);
}
@media (min-width: 992px) {
  .modal-name {
    color: var(--color-secondary);
  }
}
.modal-close {
  display: flex;
  width: var(--finger-size-default);
  height: var(--finger-size-default);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--color-secondary);
  position: absolute;
  top: var(--gutter-sm);
  right: var(--gutter-sm);
}
@media (hover: hover) {
  .modal-close:hover {
    opacity: 0.7;
  }
}
.modal-close i {
  color: var(--color-white);
  font-size: 20px;
}
.modal-content {
  display: flex;
  gap: var(--gutter-lg);
  padding: var(--gutter-sm);
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .modal-content {
    padding: var(--gutter-default);
    flex-direction: row;
  }
}
.modal-form {
  padding: var(--gutter-lg);
}
@media (min-width: 992px) {
  .modal-form {
    width: 40%;
  }
}
.modal-cover {
  display: none;
  width: 60%;
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .modal-cover {
    display: block;
  }
}

[data-tooltip] {
  position: relative;
}
[data-tooltip]:hover {
  cursor: pointer;
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after {
  opacity: 1;
  visibility: visible;
}
[data-tooltip]:hover:before {
  transform: translate(-50%, 0);
}
[data-tooltip]:hover:after {
  top: 15px;
}
[data-tooltip]:before, [data-tooltip]:after {
  margin-top: -0.5em;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-default);
  position: absolute;
}
[data-tooltip]:before {
  content: attr(data-tooltip);
  display: flex;
  padding-right: var(--gutter-sm);
  padding-left: var(--gutter-sm);
  height: var(--finger-size-default);
  font-size: var(--font-size-xs);
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  white-space: nowrap;
  color: var(--color-white);
  background-color: var(--color-secondary);
  transform: translate(-50%, -16px);
  top: -33px;
  left: 50%;
  z-index: 101;
}
[data-tooltip]:after {
  content: "";
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-secondary) transparent transparent transparent;
  transform: translateX(-50%);
  top: -6px;
  left: 50%;
}

.tab-content {
  display: none;
  opacity: 0;
  animation: displayTransition 1s ease;
  transform: translateY(20px);
}
.tab-content.current {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.accordion-container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  border: 3px solid #e0e0e0;
  border-radius: 24px;
  overflow: hidden;
}
.accordion-item {
  width: 100%;
  transition: transform 0.5s;
}
.accordion-item.is-active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-content {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.accordion-content p {
  margin-bottom: var(--gutter-sm);
}

.copyright {
  font-size: 13px;
  color: var(--color-gray);
}
@media (hover: hover) {
  .copyright:hover {
    opacity: 0.6;
  }
}

[data-content] {
  display: none;
  opacity: 0;
  animation: displayTransition 1s ease;
}
[data-content].current {
  display: block;
  opacity: 1;
}

@keyframes displayTransition {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
  }
  100% {
    opacity: 1;
  }
}
@keyframes collapseTransition {
  0% {
    display: none;
    max-height: 0;
  }
  1% {
    display: block;
  }
  100% {
    max-height: 750px;
    transform: translate(0, 0) rotateX(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes ripple-whatsapp {
  0% {
    transform: scale(0.6);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
}
@keyframes ripple-call {
  0% {
    transform: scale(0.6);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(44, 166, 223, 0.6);
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
    box-shadow: 0 0 0 20px rgba(44, 166, 223, 0);
  }
}
@keyframes ripple-primary {
  0% {
    transform: scale(0.6);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(var(--rgb-primary), 0.6);
  }
  100% {
    transform: scale(1.6);
    transform-origin: center;
    opacity: 0;
    box-shadow: 0 0 0 20px rgba(var(--rgb-primary), 0);
  }
}
.scroll-buttons {
  display: flex;
  width: 100%;
  height: 48px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 21;
}
@media (min-width: 768px) {
  .scroll-buttons {
    width: -moz-max-content;
    width: max-content;
    gap: 24px;
    flex-direction: column;
    height: auto;
    right: 36px;
    bottom: 16px;
    left: inherit;
  }
}
.scroll-btn {
  display: flex;
  gap: var(--gutter-xs);
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .scroll-btn {
    width: 1em;
    height: 1em;
    flex: inherit;
    border-radius: 50%;
    font-size: 60px;
    z-index: 21;
  }
  .scroll-btn:before, .scroll-btn:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: -1;
  }
}
@media (min-width: 768px) {
  .scroll-btn span {
    display: none;
  }
}
.scroll-btn i {
  gap: 0;
  font-size: 24px;
  transition: var(--transition-default);
}
@media (min-width: 768px) {
  .scroll-btn i {
    font-size: 28px;
  }
}
.scroll-top {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  cursor: pointer;
  border-radius: 4px;
  background-color: var(--color-secondary);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
@media (hover: hover) {
  .scroll-top:hover {
    transform: translate(-50%, -3px);
  }
  .scroll-top:hover svg {
    fill: var(--color-primary);
  }
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top i {
  font-size: 18px;
}
.scroll-whatsapp {
  color: var(--color-white);
  border-top-right-radius: 6px;
  background-color: #25d366;
  overflow: hidden;
  position: relative;
}
.scroll-whatsapp::before, .scroll-whatsapp::after {
  background-color: rgba(37, 211, 102, 0.4);
}
.scroll-whatsapp::before {
  animation: ripple-whatsapp 2s infinite;
}
.scroll-whatsapp::after {
  animation: ripple-whatsapp 2s infinite 0.5s;
}
@media (min-width: 768px) {
  .scroll-whatsapp {
    overflow: inherit;
    border-top-right-radius: 50%;
    bottom: inherit;
  }
}
.scroll-call {
  color: var(--color-white);
  border-top-right-radius: 6px;
  background-color: var(--color-secondary);
  overflow: hidden;
  position: relative;
}
.scroll-call::before, .scroll-call::after {
  background-color: rgba(44, 166, 223, 0.4);
}
.scroll-call::before {
  animation: ripple-call 2s infinite;
}
.scroll-call::after {
  animation: ripple-call 2s infinite 0.5s;
}
@media (min-width: 768px) {
  .scroll-call {
    overflow: inherit;
    border-top-right-radius: 50%;
    bottom: inherit;
  }
}
.scroll-customer {
  border-top-left-radius: 6px;
  background-color: var(--color-primary);
  overflow: hidden;
  position: relative;
}
.scroll-customer::before, .scroll-customer::after {
  background-color: rgba(var(--rgb-primary), 0.4);
}
.scroll-customer::before {
  animation: ripple-primary 2s infinite;
}
.scroll-customer::after {
  animation: ripple-primary 2s infinite 0.5s;
}
@media (min-width: 768px) {
  .scroll-customer {
    overflow: inherit;
    border-top-left-radius: 50%;
    bottom: inherit;
  }
}

.glightbox-clean .gdesc-inner {
  padding: var(--gutter-default) !important;
}
.glightbox-clean .gslide-description {
  display: none;
}
.glightbox-clean .gslide-title {
  margin-bottom: 0 !important;
  letter-spacing: -0.5px;
  font-weight: var(--font-weight-semibold) !important;
  font-family: var(--font-primary) !important;
}

.gvideo-container .gdesc-inner {
  display: none;
}

.swiper-slide {
  display: block;
}
.swiper-nav-item {
  display: flex;
  width: 1em;
  height: 1em;
  font-size: 48px;
  cursor: pointer;
  color: var(--color-light);
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  border: 1px solid var(--color-secondary);
  background-color: var(--color-primary);
}
.swiper-nav-item i {
  font-size: 26px;
  color: var(--color-light);
}
.swiper-nav-item.swiper-button-disabled {
  cursor: not-allowed;
  background-color: rgba(var(--rgb-white), 0.3);
}
.swiper-nav-item.swiper-button-disabled i {
  color: rgba(var(--rgb-primary), 0.7);
}
.swiper--pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper--pagination span {
  display: flex;
  width: 16px;
  height: 16px;
  margin: 0 !important;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--color-primary);
  /*
  &:before {
    content: '';
    width: 1em;
    height: 1em;
    font-size: 6px;
    border-radius: 50%;
    background-color: var(--color-white);
  }
  */
}

.overlay-backdrop {
  width: 100vw;
  height: 100vh;
  transition: opacity 0.15s linear;
  background-color: var(--color-black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 107;
}
.overlay-backdrop.fade {
  opacity: 0;
}
.overlay-backdrop.show {
  opacity: 0.5;
}

.hr-light {
  width: 100%;
  height: 1px;
  margin-top: var(--gutter-lg);
  margin-bottom: var(--gutter-lg);
  border: 0;
  opacity: 0.25;
  background-color: #8d8c8c;
}

.nav {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  color: var(--color-white);
  transform: translateX(120%);
  transition: all 0.2s cubic-bezier(0.75, 0.5, 0.05, 1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}
@media (min-width: 992px) {
  .nav {
    width: auto;
    height: 96px;
    margin-left: auto;
    padding-top: 0;
    opacity: 1;
    color: var(--color-secondary);
    visibility: visible;
    justify-content: flex-start;
    flex-direction: row;
    transform: translateX(0);
    position: static;
  }
}
.nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background-color: var(--color-primary);
  position: relative;
}
@media (min-width: 992px) {
  .nav-wrapper {
    width: inherit;
    height: inherit;
    border-top: none;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
  }
}
.nav-content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter-sm);
  padding-left: var(--gutter-sm);
  padding-bottom: var(--gutter-xl);
}
@media (min-width: 576px) {
  .nav-content {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .nav-content {
    max-width: 720px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .nav-content {
    display: flex;
    max-width: inherit;
    height: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .nav-expand {
    position: relative;
  }
}
.nav-expand > .nav-link:after {
  content: "";
  width: 1em;
  height: 1em;
  font-size: 12px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  position: absolute;
  right: var(--gutter-sm);
}
@media (min-width: 992px) {
  .nav-expand > .nav-link:after {
    margin-bottom: 6px;
    margin-left: 0.625rem;
    font-size: 8px;
    border-width: 0 0 2px 2px;
    position: initial;
  }
}
.nav-expand > .nav-dropdown > .nav-expand > .nav-link:after {
  margin-left: auto;
  transform: rotate(-135deg);
}
@media (min-width: 992px) {
  .nav-item:first-child .nav-link {
    margin-left: 0;
  }
}
.nav-item.current .nav-dropdown-primary {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
@media (min-width: 1200px) {
  .nav-item.current .nav-dropdown-primary {
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 0) rotateX(-90deg);
  }
}
@media (min-width: 992px) and (hover: hover) {
  .nav-item:hover > .nav-link {
    color: var(--color-secondary);
  }
  .nav-item:hover > .nav-link:before {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .nav-item:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
}
@media (min-width: 992px) and (hover: hover) and (min-width: 992px) {
  .nav-item:hover > .nav-dropdown {
    transform: translate(0, 0) rotateX(0);
  }
}
@media (min-width: 992px) {
  .nav-item > .nav-link {
    justify-content: center;
    white-space: nowrap;
  }
  .nav-item > .nav-link:before {
    bottom: var(--gutter-lg);
    left: 0;
    z-index: -1;
  }
}
@media (min-width: 992px) {
  .nav-item > .nav-link.current:before {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.nav-item .nav-btn {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .nav-item .nav-btn {
    max-width: 540px;
    padding-right: var(--gutter-sm);
    padding-left: var(--gutter-sm);
  }
}
@media (min-width: 768px) {
  .nav-item .nav-btn {
    max-width: 696px;
  }
}
@media (min-width: 992px) {
  .nav-item .nav-btn {
    height: var(--gutter-xxl);
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.nav-link {
  display: flex;
  height: 3.75rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  flex-shrink: 0;
  color: var(--color-light);
  border-bottom: 1px solid #24386b;
  align-items: center;
  position: relative;
}
.nav-link.current {
  color: var(--color-secondary);
}
@media (min-width: 768px) {
  .nav-link {
    height: 3.75rem;
    margin-right: var(--gutter-xs);
    margin-left: var(--gutter-xs);
  }
}
@media (min-width: 992px) {
  .nav-link {
    height: 100%;
    color: var(--color-dark);
    border-bottom-color: var(--color-primary);
    border-bottom: none;
  }
}
@media (min-width: 1200px) {
  .nav-link {
    margin-right: var(--gutter-sm);
    margin-left: var(--gutter-sm);
  }
}
@media (min-width: 1200px) and (hover: hover) {
  .nav-link:hover {
    color: var(--color-secondary);
  }
}
@media (min-width: 992px) {
  .nav-btn {
    position: relative;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .nav-btn:hover > .nav-link {
    color: var(--color-light);
    background-color: var(--color-primary);
  }
  .nav-btn:hover > .nav-link:before {
    opacity: 1;
    visibility: visible;
  }
  .nav-btn:hover > .nav-dropdown-secondary {
    opacity: 1;
    visibility: visible;
    transform: translate(100%, 0) rotateX(0);
  }
}
.nav-btn.current > .nav-link {
  padding-left: var(--gutter-sm);
  color: var(--color-primary);
}
@media (min-width: 992px) {
  .nav-btn.current > .nav-link {
    padding-left: var(--gutter-xs);
  }
}
.nav-btn.current > .nav-link:before {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .nav-btn.current > .nav-link:before {
    opacity: 0;
    visibility: hidden;
  }
}
.nav-btn.current .nav-dropdown-secondary {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  transform: translate(0, 0);
}
@media (min-width: 992px) {
  .nav-btn.current .nav-dropdown-secondary {
    max-height: inherit;
    opacity: 0;
    visibility: hidden;
    transform: translate(100%, 0) rotateX(0);
    position: absolute;
    top: -24px;
    left: 0;
  }
}
.nav-btn .nav-link {
  margin-right: var(--gutter-default);
  margin-left: var(--gutter-default);
}
@media (min-width: 992px) {
  .nav-btn .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding-right: var(--gutter-default);
    padding-left: var(--gutter-default);
    color: var(--color-light);
  }
}
.nav-btn .nav-link:before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  left: var(--gutter-default);
}
.nav-dropdown {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(var(--rgb-dark), 0.1);
  background-color: var(--color-primary);
  transform-origin: 0 0;
  transition: var(--transition-default);
}
@media (min-width: 992px) {
  .nav-dropdown {
    width: 300px;
    background-color: #24386b;
    border-bottom-right-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
    top: 100%;
    left: 50%;
  }
}
.nav-dropdown-head {
  background-color: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .nav-dropdown-head {
    display: none;
  }
}
.nav-dropdown-head > div {
  display: flex;
  height: var(--finger-size-xxl);
  padding-right: var(--gutter-sm);
  padding-left: var(--gutter-sm);
  margin-right: auto;
  margin-left: auto;
  color: var(--color-white);
  align-items: center;
}
@media (min-width: 576px) {
  .nav-dropdown-head > div {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .nav-dropdown-head > div {
    max-width: 696px;
  }
}
.nav-dropdown-primary {
  height: calc(100% - 236px);
  transform: translate(120%, 0);
  overflow-y: scroll;
  position: absolute;
  top: 96px;
  left: 0;
  z-index: 11;
}
@media (min-width: 992px) {
  .nav-dropdown-primary {
    height: inherit;
    overflow-y: hidden;
    transform: translate(0, 0) rotateX(-90deg);
    top: 100%;
    left: 0;
    overflow: hidden;
  }
}
.nav-dropdown-secondary {
  max-height: 90%;
  overflow: auto;
  transform: translate(120%, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 301;
}
@media (min-width: 992px) {
  .nav-dropdown-secondary {
    max-height: inherit;
    top: 0;
    left: 0;
    transform: translate(100%, 0) rotateX(-90deg);
    position: absolute;
  }
}
.nav-toggle, .nav-back {
  display: flex;
  width: var(--finger-size-default);
  height: var(--finger-size-default);
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.nav-toggle {
  width: 36px;
  height: 36px;
  margin-left: var(--gutter-lg);
  position: relative;
}
.nav-toggle.is-active span {
  border-color: transparent;
}
.nav-toggle.is-active span:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.is-active span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-toggle span {
  display: block;
  width: 30px;
  height: 18px;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: var(--color-light);
  transition: var(--transition-default);
  position: relative;
}
@media (min-width: 992px) {
  .nav-toggle span {
    color: var(--color-primary);
  }
}
.nav-toggle span:before, .nav-toggle span:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: var(--transition-default);
  position: absolute;
  top: 50%;
  left: 50%;
}
.nav-title {
  display: flex;
  max-width: calc(100% - 7.5rem);
  height: var(--finger-size-default);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.5px;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-back:before {
  content: "";
  width: 12px;
  height: 12px;
  color: var(--color-white);
  border-style: solid;
  border-width: 0 2px 2px 0;
  box-sizing: border-box;
  transform: rotate(135deg);
}
@media (min-width: 992px) {
  .nav-back:before {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-toggle, .nav-title, .nav-back {
    display: none;
  }
}
.nav-logo {
  position: relative;
  z-index: 1009;
}
.nav-header {
  display: flex;
  padding-top: 16px;
  padding-bottom: 36px;
  align-items: center;
  justify-content: space-between;
}
.nav-footer {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-bottom: 24px;
  flex-direction: column;
}
.nav-header, .nav-footer {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter-sm);
  padding-left: var(--gutter-sm);
  background-color: var(--color-primary);
  position: relative;
  z-index: 1009;
}
@media (min-width: 576px) {
  .nav-header, .nav-footer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .nav-header, .nav-footer {
    max-width: 720px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .nav-header, .nav-footer {
    display: none;
  }
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
}
.header-container {
  display: flex;
  align-items: center;
}
.header-top {
  position: relative;
  z-index: 121;
}
.header-content {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #24386b;
}
@media (min-width: 768px) {
  .header-content {
    border: none;
  }
}
.header-content.sticky-lock {
  width: 100%;
  margin-top: -180px;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 2px 5px rgba(12, 10, 10, 0.1);
  background-color: var(--color-white);
  transition: transform 500ms ease-in-out;
  transform: translateY(0);
  position: fixed;
  top: 0;
}
.header-content.sticky-lock .logo-header_large {
  display: block !important;
}
.header-content.sticky-lock .logo-header_small {
  display: none !important;
}
.header-content.sticky-lock .nav-toggle span {
  color: var(--color-primary);
}
.header-content.sticky-lock.sticky-active {
  transform: translateY(180px) !important;
}
.header-content-box {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .header-content-box {
    background-color: var(--color-white);
  }
}
.header-content-box:before, .header-content-box:after {
  display: none;
  content: "";
  width: 36px;
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .header-content-box:before, .header-content-box:after {
    display: block;
  }
}
@media (min-width: 1400px) {
  .header-content-box:before, .header-content-box:after {
    display: block;
    width: 72px;
  }
}
.header-content-box:before {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  left: -36px;
}
@media (min-width: 1400px) {
  .header-content-box:before {
    left: -72px;
  }
}
.header-content-box::after {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  right: -36px;
}
@media (min-width: 1400px) {
  .header-content-box::after {
    right: -72px;
  }
}
.header-info {
  display: flex;
  width: 100%;
  gap: var(--gutter-lg);
  height: var(--finger-size-default);
}
@media (min-width: 576px) {
  .header-info {
    width: -moz-max-content;
    width: max-content;
    justify-content: flex-start;
  }
}
.header-info a {
  display: flex;
  gap: var(--gutter-xs);
  align-items: center;
}
.header-info a:first-child {
  display: none;
}
@media (min-width: 768px) {
  .header-info a:first-child {
    display: flex;
  }
}
.header-info a i {
  font-size: 18px;
}
@media (min-width: 992px) {
  .header-info a i {
    font-size: 20px;
  }
}
.header-info a span {
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .header-info a span {
    font-size: 15px;
  }
}
.header-info_mail {
  color: var(--color-light);
}
.header-info_phone {
  color: var(--color-red);
}

.footer {
  padding-bottom: 42px;
  color: var(--color-white);
  overflow: hidden;
  background-color: var(--color-primary);
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
}
.footer-bg {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .footer-bg {
    width: 490px;
    height: 565px;
    background-size: cover;
    background-position: center center;
  }
}
.footer-top {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 576px) {
  .footer-top {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 768px) {
  .footer-top {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }
}
@media (min-width: 1200px) {
  .footer-top {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.footer-summary {
  margin-bottom: var(--gutter-xl);
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray);
}
.footer-logos {
  display: flex;
  gap: var(--gutter-lg);
}
.footer-btn {
  width: 220px;
  margin-bottom: var(--gutter-lg);
  border-radius: 24px;
  background-color: var(--color-secondary);
}
.footer-btn:hover {
  background-color: var(--color-red);
}
.footer-bottom {
  padding-top: var(--gutter-sm);
  padding-bottom: var(--gutter-sm);
  border-top: 1px solid rgba(244, 244, 244, 0.2);
  position: relative;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer-bottom .container {
    gap: 0;
    align-items: center;
    flex-direction: row;
  }
}
.footer-policy {
  display: flex;
  gap: var(--gutter-default);
}
.footer-policy a {
  padding-right: 0;
  padding-left: 0;
  font-size: 13px;
  color: var(--color-gray);
}
.footer-policy a:hover {
  color: var(--color-light);
}
.footer-title {
  display: block;
  margin-bottom: var(--gutter-default);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
}
.footer-nav {
  display: flex;
  padding: var(--gutter-xl);
  border-radius: 32px;
  flex-wrap: wrap;
  background-color: #24386b;
}
.footer-nav-lister {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-nav-lister a {
  display: flex;
  width: 100%;
  height: var(--finger-size-default);
  align-items: center;
  color: var(--color-gray);
  font-size: 14px;
  justify-content: space-between;
}
@media (hover: hover) {
  .footer-nav-lister a:hover {
    color: var(--color-white);
  }
}
@media (min-width: 576px) {
  .footer-nav-lister a {
    width: calc(50% - 16px);
  }
}
.footer-nav-lister a i {
  font-size: 24px;
}
.footer-info {
  display: flex;
  margin-top: 36px;
  gap: var(--gutter-xs);
  margin-bottom: var(--gutter-lg);
  flex-direction: column;
}
.footer-icon {
  font-size: 24px;
}
@media (hover: hover) {
  .footer-link:hover {
    color: var(--color-secondary);
  }
}
.footer-phone {
  color: var(--color-red);
}
.footer-address .footer-icon {
  align-self: start;
}
.footer-link, .footer-address {
  display: flex;
  gap: var(--gutter-sm);
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
}

.slider {
  position: relative;
  /*
  &--container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: 0;
    padding-left: 0;

    //@media (min-width: 576px) {max-width: 540px;}

    @media (min-width: 768px) {
      //max-width: 720px;
      max-width: 840px;
      padding-right: calc(var(--bs-gutter-x) * 0.5);
      padding-left: calc(var(--bs-gutter-x) * 0.5);
      margin-right: auto;
      margin-left: auto;
    }

    @media (min-width: 992px) {
      //max-width: 960px;
      max-width: 1080px;
    }

    @media (min-width: 1200px) {
      //max-width: 1140px;
      max-width: 1260px;
    }

    @media (min-width: 1400px) {
      //max-width: 1320px;
      max-width: 1440px;
    }

    @include mq('wide') {
      max-width: 1584px;
    }
  }
  */
}
.slider-img {
  display: none;
  position: relative;
}
.slider-img:before {
  content: "";
  width: 100%;
  height: 320px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(2, 60, 105) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.slider-img img {
  width: 100%;
}
@media (min-width: 768px) {
  .slider-img {
    height: 768px;
    position: relative;
  }
  .slider-img img {
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .slider-img {
    height: 962px;
  }
}
.slider-cover {
  width: 360px;
  height: 550px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
@media (min-width: 992px) {
  .slider-cover {
    transform: translateX(0);
    right: 0;
    left: inherit;
  }
}
@media (min-width: 1200px) {
  .slider-cover {
    width: 480px;
    height: 723px;
  }
}
.slider-mask {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-item {
  width: 100%;
  height: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slider-item-container {
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.slider-content {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: var(--gutter-xl);
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .slider-content {
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 21;
  }
}
.slider-content {
  /*
  @include mq('xlarge') {
    padding-right: var(--gutter-xl);
    padding-left: var(--gutter-xl);
  }

  @include mq('xxlarge') {
    padding-right: var(--gutter-xl-section);
    padding-left: var(--gutter-xl-section);
  }
  */
}
.slider-content .container {
  position: relative;
}
@media (min-width: 992px) {
  .slider-box {
    width: 45%;
  }
}
.slider-slogan_title {
  display: inline-block;
  margin-bottom: var(--gutter-lg);
  color: var(--color-primary);
  position: relative;
}
.slider-slogan_title small {
  position: absolute;
  top: -6px;
}
.slider-slogan_title span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .slider-slogan_title span {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .slider-slogan_title span {
    font-size: 2.625rem;
  }
}
@media (min-width: 1200px) {
  .slider-slogan_title span {
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  .slider-slogan_title span {
    font-size: 3.75rem;
  }
}
.slider-slogan_title p {
  font-size: 1.125rem;
  font-weight: 500;
}
.slider-slogan_summary {
  margin-bottom: var(--gutter-lg);
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .slider-slogan_summary {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .slider-slogan_summary {
    font-size: 1.5rem;
  }
}
.slider-pagination {
  width: -moz-max-content !important;
  width: max-content !important;
  gap: var(--gutter-default);
  position: absolute;
  bottom: 12px !important;
  left: 0 !important;
  z-index: 41;
}
.slider-pagination span {
  width: 1em;
  height: 1em;
  font-size: 12px;
  opacity: 1;
  background-color: rgba(var(--rgb-white), 0.2);
  transition: var(--transition-default);
}
@media (min-width: 768px) {
  .slider-pagination span {
    margin: 0 8px !important;
    font-size: 12px;
  }
}
.slider-pagination span:not(.swiper-pagination-bullet-active):hover {
  background-color: var(--color-secondary);
}
.slider-pagination span.swiper-pagination-bullet-active {
  background-color: var(--color-white);
}
.slider-navigation {
  display: flex;
  gap: 6px;
  align-items: center;
}
.slider-btn_next, .slider-btn_prev {
  display: none;
  width: 1em;
  height: 1em;
  font-size: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
}
@media (min-width: 768px) {
  .slider-btn_next, .slider-btn_prev {
    display: flex;
    font-size: 50px;
  }
}
@media (hover: hover) {
  .slider-btn_next:hover i, .slider-btn_prev:hover i {
    color: var(--color-secondary);
  }
}
.slider-btn_next i, .slider-btn_prev i {
  font-size: 24px;
  color: rgba(var(--rgb-white), 0.7);
  transition: var(--transition-default);
}
@media (min-width: 768px) {
  .slider-btn_next i, .slider-btn_prev i {
    font-size: 36px;
  }
}
.slider-btn__next {
  right: 0;
}
.slider-btn__prev {
  left: 0;
}
.slider-container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.slider-wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 12px;
  z-index: 11;
}
.slider-wrapper .container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.section {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 576px) {
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 768px) {
  .section {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }
}
@media (min-width: 1200px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.section--title {
  margin-bottom: 50px;
}
.section--title span {
  display: inline-flex;
  margin-bottom: var(--gutter-sm);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
}
.section--title h2 {
  font-weight: 600;
  margin-bottom: 0;
}
.section--title p {
  margin-top: 20px;
}
.section--head {
  display: flex;
  margin-bottom: var(--gutter-lg-section);
  align-items: center;
  justify-content: space-between;
}
.section--head__col {
  align-items: flex-end;
  justify-content: space-between;
}
.section--head__row {
  flex-direction: column;
}
@media (min-width: 992px) {
  .section--head__row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.section--head__buttons {
  display: flex;
  align-items: center;
}
.section--head {
  /*
  &__center {
    display: flex;
    gap: var(--gutter-lg);
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  */
}
.section {
  /*
  &--description {
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
  }
  */
}
.section--btn {
  border-color: var(--color-dark);
}
@media (hover: hover) {
  .section--btn:hover {
    color: var(--color-white);
    background-color: var(--color-dark);
  }
}
.section__white {
  background-color: var(--color-white);
}

.corporate-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
@media (hover: hover) {
  .corporate-card:hover figure:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
  }
  .corporate-card:hover figure img {
    transform: scale(1.01);
  }
}
.corporate-card figure:after {
  content: "";
  width: 200%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.corporate-card figure img {
  transition: var(--transition-default);
}
.corporate {
  /*
  &-cover {
    margin-bottom: 72px;
    border-radius: 48px;
    overflow: hidden;
  }


  &-slogan {
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 500;
  }
  */
}
.corporate-wrapper {
  margin-bottom: 72px;
}
.corporate-workly_title {
  display: block;
  margin-bottom: var(--gutter-sm);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}
.corporate-workly_lister {
  display: flex;
  gap: 6px;
  margin-bottom: var(--gutter-sm);
  flex-direction: column;
}
.corporate-workly_lister li {
  display: flex;
  padding-top: 6px;
  padding-bottom: 6px;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-light);
}
.corporate-workly_lister li strong,
.corporate-workly_lister li span {
  font-size: 15px;
  font-weight: 500;
}
.corporate-workly_lister li strong {
  color: var(--color-gray);
}
.corporate-workly_lister li span {
  color: var(--color-dark);
}
.corporate-workly_info {
  display: flex;
  gap: 12px;
  line-height: 1.5;
}
.corporate-workly_info i {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  color: var(--color-light);
  border-radius: 50%;
  background-color: var(--color-primary);
}
.corporate-workly_info p {
  font-size: 14px;
  color: var(--color-gray);
}

.repeater {
  display: flex;
  width: 100%;
  gap: 24px;
  overflow: hidden;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 1.5rem 0;
  align-items: center;
  position: relative;
}
.repeater-item {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  background: linear-gradient(to right, #1c3a7c 10%, #b7dcf5);
  background-clip: border-box;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .repeater-item {
    font-size: 60px;
  }
}
.repeater-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.repeater-track:hover .repeater-content {
  animation-play-state: paused;
}
.repeater-content {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  white-space: nowrap;
  align-items: center;
  animation: scroll 40s linear infinite;
}
@media (min-width: 768px) {
  .repeater-content {
    gap: 2rem;
    animation: scroll 60s linear infinite;
  }
}

@keyframes scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.treatments {
  background-color: #f9fcff;
}
.treatments-card {
  display: block;
  padding: 48px 36px;
  color: var(--color-primary);
  overflow: hidden;
  border-radius: 24px;
  transition: var(--transition-default);
  background-color: var(--color-white);
  position: relative;
}
.treatments-card_sub {
  background-color: #f9fcff;
}
.treatments-card-icon {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 28px;
  transition: all 200ms ease-in-out;
}
.treatments-card-symbol {
  display: flex;
  width: 120px;
  height: 120px;
  opacity: 0.1;
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transform: rotate(20deg);
  transition: all 200ms ease-in-out;
  position: absolute;
  top: -24px;
  right: -24px;
}
.treatments-card-title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.treatments-card-arrow {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 24px;
  border-bottom-right-radius: 22px;
  transition: all 200ms ease-in-out;
  position: absolute;
  right: 0;
  bottom: 0;
}
.treatments-card-arrow i {
  font-size: 20px;
  color: var(--color-primary);
}
.treatments-card:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.treatments-card:hover .treatments-card-icon {
  transform: translate(10px, -10px);
  filter: brightness(0) invert(1);
}
.treatments-card:hover .treatments-card-symbol {
  filter: brightness(0) invert(1);
}
.treatments-card:hover .treatments-card-arrow {
  background-color: var(--color-white);
}
.treatments-card:hover .treatments-card-arrow i {
  color: var(--color-primary);
}
.treatments-aside {
  padding-top: 36px;
  border-top: 1px solid var(--color-light);
}
@media (min-width: 1200px) {
  .treatments-aside {
    padding-top: 0;
    border: none;
    text-align: right;
  }
}
.treatments-buttons {
  display: flex;
  gap: var(--gutter-default);
}
@media (min-width: 1200px) {
  .treatments-buttons {
    gap: var(--gutter-lg);
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .treatments-buttons {
    flex-direction: row;
  }
}
.treatments-buttons_call {
  color: var(--color-red);
}
.treatments-section {
  background-color: var(--color-primary);
}
.treatments-carousel {
  margin-bottom: 60px;
}

.kids-content {
  display: flex;
  max-width: 1432px;
  width: calc(100% - 1.5rem);
  margin-right: auto;
  margin-left: auto;
  height: 480px;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 768px) {
  .kids-content {
    border-radius: 48px;
  }
}
@media (min-width: 992px) {
  .kids-content {
    height: 600px;
    border-radius: 72px;
  }
}
.kids-content:before {
  content: "";
  width: 75%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(44, 166, 223) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .kids-content:before {
    width: 50%;
  }
}
.kids-logo {
  display: inline-block;
  margin-bottom: var(--gutter-lg);
}
.kids-title {
  color: var(--color-white);
}
.kids-description {
  color: var(--color-white);
}
.kids-btn {
  color: var(--color-white);
}
.kids-box {
  position: relative;
  z-index: 11;
}
.kids-wrapper {
  margin-bottom: 60px;
}
.kids-treatment {
  margin-bottom: 60px;
}

.team-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
@media (hover: hover) {
  .team-card:hover .team-card_img {
    transform: scale(1.05);
  }
  .team-card:hover .team-card_info {
    transform: scale(1.1);
    background-color: var(--color-secondary);
  }
  .team-card:hover .team-card_info span,
  .team-card:hover .team-card_info p {
    color: var(--color-light);
  }
}
.team-card_img {
  transition: var(--transition-default);
}
.team-card_info {
  display: flex;
  width: calc(100% - 48px);
  margin-right: 30px;
  margin-left: 30px;
  padding-top: 16px;
  padding-bottom: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  transition: var(--transition-default);
  background-color: var(--color-light);
  position: absolute;
  bottom: 24px;
}
.team-card_info span,
.team-card_info p {
  transition: var(--transition-default);
}
.team-card_info span {
  color: var(--color-dark);
  font-weight: 600;
}
.team-card_info p {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 400;
}
.team-profession {
  margin-bottom: var(--gutter-lg);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
}
.team-experience {
  margin-bottom: var(--gutter-sm);
}
.team-experience li {
  padding-top: var(--gutter-default);
  padding-bottom: var(--gutter-default);
  font-size: 15px;
  line-height: 19px;
  border-bottom: 1px solid var(--color-light);
}
.team-experience li b {
  display: inline-block;
  min-width: 220px;
  font-weight: 500;
}
.team-experience li span {
  color: var(--color-gray);
}
.team-update_date {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray);
}
.team-cover {
  padding: 36px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f9fcff;
}
.team-cover img {
  border-radius: 16px;
  overflow: hidden;
}

.blog {
  background-color: #f9fcff;
}
@media (hover: hover) {
  .blog-card:hover .blog-card_cover figure {
    transform: scale(1.1);
  }
  .blog-card:hover .blog-card_cover figure:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
  }
  .blog-card:hover .blog-card_content {
    transform: translateY(-10px);
  }
  .blog-card:hover .blog-card_title {
    color: var(--color-secondary);
  }
  .blog-card:hover .btn {
    color: var(--color-red);
  }
}
.blog-card_cover {
  border-radius: 24px;
  overflow: hidden;
}
.blog-card_cover figure {
  transition: var(--transition-default);
}
.blog-card_cover figure:after {
  content: "";
  width: 200%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.blog-card_cover figure img {
  transition: var(--transition-default);
}
.blog-card_content {
  margin-top: -110px;
  margin-right: 16px;
  margin-left: 16px;
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition-default);
  background-color: var(--color-light);
  position: relative;
  z-index: 13;
}
@media (min-width: 768px) {
  .blog-card_content {
    margin-right: 36px;
    margin-left: 36px;
    padding: 36px;
  }
}
.blog-card_title {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .blog-card_title {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
.blog-card_summary {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 24px;
}
@media (min-width: 768px) {
  .blog-card_summary {
    margin-bottom: 26px;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .blog-card_summary {
    margin-bottom: 24px;
  }
}
.blog-card .btn {
  height: var(--finger-size-default);
  color: var(--color-secondary);
}

.clinic {
  background-color: #f9fcff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}

.cta {
  background-color: #f9fcff;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) {
  .cta-content {
    flex-direction: row;
  }
}
.cta-head {
  position: relative;
}
.cta-instruments {
  width: 264px;
  height: 397px;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateX(-50%);
  position: absolute;
  bottom: -72px;
  left: 50%;
  z-index: -1;
}
@media (min-width: 992px) {
  .cta-instruments {
    opacity: 1;
    transform: translateX(0);
    bottom: -96px;
    left: -202px;
  }
}
.cta-title {
  display: block;
  margin-bottom: 16px;
  color: var(--color-primary);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .cta-title {
    text-align: left;
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .cta-title {
    font-size: 36px;
  }
}
.cta-info {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-weight: 300;
}
@media (min-width: 768px) {
  .cta-info {
    justify-content: flex-start;
  }
}
.cta-info a {
  color: var(--color-dark);
  font-weight: 500;
}
.cta-info a:hover {
  color: var(--color-secondary);
}
.cta-buttons {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .cta-buttons {
    gap: 24px;
    flex-direction: row;
  }
}
.cta-btn {
  width: 230px;
  height: 42px;
  color: var(--color-white);
  border-radius: 36px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cta-btn {
    width: 230px;
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .cta-btn {
    height: 60px;
  }
}
.cta-btn_primary {
  background-color: var(--color-red);
}
.cta-btn_secondary {
  background-color: var(--color-primary);
}
.cta-btn i {
  font-size: 22px;
}

.gallery {
  padding-top: 120px;
  padding-bottom: 120px;
}
.gallery-swiper {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 80%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 80%, transparent 100%);
}
.gallery-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
@media (hover: hover) {
  .gallery-card:hover figure:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
  }
  .gallery-card:hover figure img {
    transform: scale(1.01);
  }
}
.gallery-card figure {
  overflow: hidden;
}
.gallery-card figure:after {
  content: "";
  width: 200%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.gallery-card figure img {
  transition: var(--transition-default);
}
.gallery-card {
  /*
  &-icon {
    display: flex;
    width: 1em;
    height: 1em;
    font-size: 48px;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    background-color: var(--color-light);
    transform: translate(-50%, -50%);
    transition: all 300ms ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;

    i {
      font-size: 42px;
      color: var(--color-primary);
    }
  }
  */
}

.faq-header {
  width: 100%;
  padding-right: 36px;
}
.faq-panel {
  overflow: hidden;
  height: 0;
  will-change: height;
}
.faq-panel-inner {
  margin-top: 12px;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-6px);
}
.faq-icon .ri-add {
  opacity: 1;
  visibility: visible;
}
.faq-item {
  padding: 24px;
  cursor: pointer;
  border-radius: 16px;
  border-bottom: 1px solid var(--color-light);
  transition: var(--transition-default);
  position: relative;
}
@media (min-width: 768px) {
  .faq-item {
    padding: 36px;
  }
}
.faq-item:hover {
  background-color: #f9fcff;
}
.faq-item:hover .faq-icon {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item[open] {
  background-color: #f9fcff;
}
.faq-item[open] .faq-panel {
  height: auto;
}
.faq-item[open] .faq-icon {
  background-color: var(--color-primary);
}
.faq-item[open] .faq-icon .ri-add {
  opacity: 0;
  visibility: hidden;
}
.faq-item[open] .faq-icon .ri-subtract {
  opacity: 1;
  visibility: visible;
}
.faq-item[open] .faq-icon i {
  color: var(--color-white);
}
.faq-item[open] .faq-panel-inner {
  opacity: 1;
  transform: translateY(0);
}
.faq-item[open] .faq-icon .icon {
  transform: rotate(180deg);
}
.faq-title {
  display: flex;
  align-items: center;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
  border: 0;
  text-align: left;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
}
@media (min-width: 768px) {
  .faq-title {
    font-size: 16px;
  }
}
.faq-title:focus-visible {
  outline: none;
  border-radius: 12px;
}
.faq-icon {
  display: flex;
  width: 1em;
  height: 1em;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  font-size: 36px;
  transform: translateY(-50%);
  transition: var(--transition-default);
  position: absolute;
  top: 36px;
  right: 36px;
}
.faq-icon i {
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: var(--transition-default);
  position: absolute;
  top: 50%;
  left: 50%;
}
.faq-icon .icon {
  display: block;
}
.faq-buttons {
  justify-content: flex-start;
}

.links-item {
  display: flex;
  padding-right: 24px;
  padding-left: 24px;
  gap: 6px;
  color: var(--color-white);
  aspect-ratio: 2/1;
  border-radius: 16px;
  flex-direction: column;
  background-color: var(--color-primary);
  justify-content: center;
}
@media (hover: hover) {
  .links-item:hover {
    background-color: var(--color-secondary);
  }
}
.links-item strong {
  opacity: 0.4;
  font-size: 13px;
}
.links-item span {
  font-weight: 500;
}

.hero {
  height: 360px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .hero {
    height: 460px;
  }
}
.hero .container {
  display: flex;
  height: 100%;
  padding-bottom: 96px;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
}
.hero-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero-bg:before {
  content: "";
  height: 100%;
  left: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(29, 47, 93) 100%);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.hero-title {
  display: flex;
  margin-bottom: var(--gutter-sm);
  color: var(--color-primary);
  font-size: 1.5rem;
  align-items: center;
  line-height: 1.3;
  font-weight: 600;
  text-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
  position: relative;
}
@media (min-width: 768px) {
  .hero-title {
    margin-bottom: var(--gutter-default);
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 2.625rem;
  }
}
.hero-breadcrumb {
  display: flex;
  color: var(--color-white);
}

.pages {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.pages-photo {
  overflow: hidden;
  border-radius: 1rem;
}
.pages--space {
  padding-top: 11.875rem;
}

/*
.gallery {
  &--card {
    display: block;
    //box-shadow: 0 0 50px rgba(var(--rgb-black), 0.1);
    @include mq('hover') {
      &:hover {
        &:after,
        figcaption {
          opacity: 1;
          visibility: visible;
        }
        figure {
          clip-path: inset(24px);
        }
      }
    }
    figure {
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: inset(0 0 0 0);
      transition: var(--transition-default);
      figcaption {
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-default);
        position: absolute;
      }
      figcaption {
        z-index: 13;
        svg {
          font-size: 48px;
          fill: var(--color-primary);
        }
      }
    }
  }
  &-swiper {
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 20%,
      #000 80%,
      transparent 100%
    );
  }
}
.product {
  &-content {
    margin-bottom: var(--gutter-xxl);
  }
  &-swiper {
    margin-bottom: var(--gutter-default);
    &-thumbs {
      position: relative;
      @include mq('hover') {
        &:hover {
          .product-swiper {
            &-left {
              transform: translate(0, -50%);
            }
            &-right {
              transform: translate(0, -50%);
            }
          }
        }
      }
    }
    &-item {
      display: flex;
      width: 1em;
      height: 1em;
      font-size: 42px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--color-white);
      transition: var(--transition-default);
      background-color: var(--color-primary);
      position: absolute;
      top: 50%;
      z-index: 19;
      @include mq('hover') {
        &:hover {
          background-color: var(--color-secondary);
        }
      }
      i {
        font-size: 20px;
      }
    }
    &-left {
      left: 0;
      transform: translate(-42px, -50%);
    }
    &-right {
      right: 0;
      transform: translate(42px, -50%);
    }
  }
  &-documents {
    display: flex;
    gap: var(--gutter-sm);
    flex-direction: column;
    &-item {
      display: flex;
      padding: var(--gutter-default) var(--gutter-lg);
      align-items: center;
      background-color: var(--color-light);
      justify-content: space-between;
    }
    &-title {
      display: flex;
      gap: var(--gutter-default);
      align-items: center;
      i {
        font-size: 36px;
        color: var(--color-primary);
      }
      span {
        color: var(--color-secondary);
        font-size: 18px;
        font-weight: 600;
      }
    }
  }
}
.features {
  &-nav {
    display: flex;
    margin-bottom: var(--gutter-lg);
    padding-top: var(--gutter-lg);
    padding-bottom: var(--gutter-lg);
    gap: var(--gutter-sm);
    align-items: center;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    justify-content: center;
  }
  &-btn {
    display: flex;
    padding-left: var(--gutter-sm);
    padding-right: var(--gutter-sm);
    font-weight: 500;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    &.current {
      color: var(--color-primary);
    }
    @include mq('hover') {
      &:hover {
        color: var(--color-primary);
      }
    }
  }
}
.blog {
  &-showcase {
    margin-top: -120px;
    margin-bottom: var(--gutter-xl);
    padding: var(--gutter-lg);
    text-align: center;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
    @include mq('medium') {
      padding: var(--gutter-lg-section);
    }
  }
  &-tag {
    display: inline-flex;
    height: var(--finger-size-default);
    padding-right: var(--gutter-sm);
    padding-left: var(--gutter-sm);
    margin-bottom: var(--gutter-default);
    color: var(--color-white);
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
  }
  &-title {
    display: block;
    margin-bottom: var(--gutter-sm);
  }
  &-desc {
    line-height: 1.5;
  }
}
*/
.file-btn {
  height: 36px;
  gap: 6px;
  padding-right: 0;
  padding-left: 0;
  color: var(--color-primary);
}
.file-btn strong {
  font-weight: 600;
}
.file-btn i {
  font-size: 24px;
}
.file-info {
  display: flex;
  gap: 3px;
  align-items: center;
  color: var(--color-gray);
  font-weight: 400;
}
.file-info i {
  font-size: 18px;
}

.error-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.error-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--color-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .error-title {
    font-size: 6rem;
  }
}
@media (min-width: 992px) {
  .error-title {
    font-size: 8rem;
  }
}
.error-title span {
  color: var(--color-secondary);
  animation: pulse 2s infinite;
}
.error-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark, #333);
}
@media (min-width: 768px) {
  .error-subtitle {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .error-subtitle {
    font-size: 2.5rem;
  }
}
.error-text {
  margin-bottom: var(--gutter-default);
  line-height: 1.6;
  font-size: 1rem;
  color: var(--color-dark);
}
@media (min-width: 768px) {
  .error-text {
    margin-bottom: var(--gutter-lg);
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  .error-text {
    margin-bottom: var(--gutter-xl);
    font-size: 1.2rem;
  }
}
.error-buttons {
  display: flex;
  gap: var(--gutter-default);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
/* Responsive Design */
/* decorative elements
.error-inner:before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(29, 47, 93, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.error-inner:after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(29, 47, 93, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}
*/
.address {
  line-height: 1.5;
}

.contact-info {
  margin-bottom: var(--gutter-xl);
  font-size: 18px;
  color: var(--color-gray);
  line-height: 1.5;
}
.contact-call {
  color: var(--color-red);
}
.contact-btn {
  padding-right: var(--gutter-xl);
  padding-left: var(--gutter-xl);
  border-radius: 24px;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: var(--gutter-xl);
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 576px) {
  .contact-row {
    gap: 0;
    flex-direction: row;
  }
}
.contact-block b {
  display: block;
  margin-bottom: var(--gutter-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
}
.contact-block a:not(.contact-call),
.contact-block span {
  color: var(--color-dark);
}
.contact-block a,
.contact-block span {
  font-size: 16px;
  line-height: 1.5;
}
@media (hover: hover) {
  .contact-mail:hover, .contact-call:hover {
    color: var(--color-secondary) !important;
  }
}
.contact-content {
  margin-bottom: var(--gutter-xl-section);
}
.contact-map {
  overflow: hidden;
  border-radius: 48px;
  position: relative;
}

.leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: var(--border-radius-sm);
  box-sizing: border-box;
  box-shadow: var(--box-shadow-default);
}

.leaflet-popup-tip-container {
  margin-top: -2px;
}

.leaflet-popup-tip {
  border: 2px solid #e6e9ec;
  box-shadow: var(--box-shadow-default);
}

.leaflet-popup-content {
  margin: 0;
  padding: var(--gutter-default);
  border: 2px solid #e6e9ec;
  border-radius: var(--border-radius-sm);
}

.leaflet-popup-content .leaflet-popup-title {
  display: block;
  margin-bottom: var(--gutter-sm);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-secondary);
}

.leaflet-popup-content .leaflet-popup-lister {
  display: flex;
  min-width: 240px;
  gap: var(--gutter-xs);
  flex-direction: column;
  font-size: var(--font-size-sm);
  font-family: var(--font-secondary);
}

.leaflet-popup-content .leaflet-popup-lister li {
  display: flex;
  height: 24px;
  justify-content: space-between;
}

.leaflet-popup-content .leaflet-popup-lister li:not(:last-child) {
  border-bottom: 1px solid #e6e9ec;
}

.leaflet-popup-content .leaflet-popup-lister li b {
  font-weight: var(--font-weight-bold);
}

.leaflet-marker,
.leaflet-marker::after {
  width: 1em;
  height: 1em;
  position: absolute;
  left: 50%;
  top: 50%;
}

.leaflet-marker {
  display: flex;
  margin: -21px 0 0 -21px;
  font-size: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  background-color: var(--color-primary);
  transform: rotate(-45deg);
}

.leaflet-marker::after {
  content: "";
  font-size: 32px;
  border-radius: 50%;
  background-color: var(--color-white);
  transform: translate(-50%, -50%);
}

.leaflet-marker svg.icon {
  font-size: 24px;
  transform: rotate(45deg);
}

.leaflet-content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.leaflet-responsive {
  display: block;
  background-color: var(--color-light);
  position: relative;
}

.leaflet-responsive #map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-responsive {
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

@media (min-width: 768px) {
  .leaflet-responsive {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 992px) {
  .leaflet-responsive {
    height: 600px;
    padding-bottom: 0;
  }
}
.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
}

.cc-window {
  display: flex;
  width: 100%;
  max-width: 95%;
  padding: 15px;
  border-radius: 15px;
  overflow: hidden;
  line-height: 1.5em;
  flex-direction: column;
  transform: translateX(-50%) scale(0.9);
  transition: opacity 1s ease;
  position: fixed;
  z-index: 9999;
}
@media (min-width: 768px) {
  .cc-window {
    max-width: 768px;
    height: 100px;
    padding: 0 30px;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .cc-window {
    max-width: 768px;
  }
}
.cc-window.in-active {
  opacity: 0;
  visibility: hidden;
}
.cc-window.cc-invisible {
  opacity: 0;
}
.cc-window.cc-revoke {
  transition: transform 1s ease;
}

.cc-window.cc-bottom {
  left: 50%;
  bottom: 30px;
}

@media (hover: hover) {
  .cc-compliance a.cc-btn.cc-dismiss:hover {
    color: #000;
    background-color: #fff;
  }
  .cc-banner.cc-theme-edgeless .cc-message a.cc-link:hover {
    color: #ef2c19;
  }
}
.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}

.cc-link {
  display: block;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.7;
}
.cc-link:hover {
  opacity: 1;
}
.cc-link:active {
  color: initial;
}
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: flex;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .cc-btn {
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
  }
}

.cc-close {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  opacity: 0.9;
  line-height: 0.75;
}
.cc-close:focus {
  opacity: 1;
}
.cc-close:hover {
  opacity: 1;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}
.cc-highlight .cc-btn:first-child:focus {
  background-color: transparent;
  text-decoration: underline;
}
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-window .cc-message {
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .cc-window .cc-message {
    margin-bottom: 0;
    padding-right: 30px;
    text-align: left;
  }
}

.cc-compliance a.cc-btn.cc-dismiss {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100px;
}
