@charset "UTF-8";
/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
@import url("//fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
:root {
  --bs-blue:#0d6efd;
  --bs-indigo:#6610f2;
  --bs-purple:#6f42c1;
  --bs-pink:#d63384;
  --bs-red:#dc3545;
  --bs-orange:#fd7e14;
  --bs-yellow:#ffc107;
  --bs-green:#198754;
  --bs-teal:#20c997;
  --bs-cyan:#0dcaf0;
  --bs-white:#fff;
  --bs-gray:#6c757d;
  --bs-gray-dark:#343a40;
  --bs-gray-100:#f8f9fa;
  --bs-gray-200:#e9ecef;
  --bs-gray-300:#dee2e6;
  --bs-gray-400:#ced4da;
  --bs-gray-500:#adb5bd;
  --bs-gray-600:#6c757d;
  --bs-gray-700:#495057;
  --bs-gray-800:#343a40;
  --bs-gray-900:#212529;
  --bs-primary:#0d6efd;
  --bs-secondary:#6c757d;
  --bs-success:#198754;
  --bs-info:#0dcaf0;
  --bs-warning:#ffc107;
  --bs-danger:#dc3545;
  --bs-light:#f8f9fa;
  --bs-dark:#212529;
  --bs-primary-rgb:13,110,253;
  --bs-secondary-rgb:108,117,125;
  --bs-success-rgb:25,135,84;
  --bs-info-rgb:13,202,240;
  --bs-warning-rgb:255,193,7;
  --bs-danger-rgb:220,53,69;
  --bs-light-rgb:248,249,250;
  --bs-dark-rgb:33,37,41;
  --bs-white-rgb:255,255,255;
  --bs-black-rgb:0,0,0;
  --bs-body-color-rgb:33,37,41;
  --bs-body-bg-rgb:255,255,255;
  --bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family:var(--bs-font-sans-serif);
  --bs-body-font-size:1rem;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.5;
  --bs-body-color:#212529;
  --bs-body-bg:#fff;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
.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 > * {
  box-sizing: border-box;
  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.3333333333%;
}

.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.6666666667%;
}

.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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.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;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .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;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .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;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .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;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .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;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .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;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap-grid.min.css.map */
/**
 * Swiper 7.3.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 16, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.background-color--prime-blue {
  background-color: #002868;
  color: #fff;
}
.background-color--prime-blue h1,
.background-color--prime-blue h2,
.background-color--prime-blue h3,
.background-color--prime-blue h4,
.background-color--prime-blue h5,
.background-color--prime-blue .h1,
.background-color--prime-blue .h2,
.background-color--prime-blue .h3,
.background-color--prime-blue .h4,
.background-color--prime-blue .h5,
.background-color--prime-blue a {
  color: #fff;
}
.background-color--navy {
  background-color: #010e30;
  color: #fff;
}
.background-color--navy h1,
.background-color--navy h2,
.background-color--navy h3,
.background-color--navy h4,
.background-color--navy h5,
.background-color--navy .h1,
.background-color--navy .h2,
.background-color--navy .h3,
.background-color--navy .h4,
.background-color--navy .h5,
.background-color--navy a {
  color: #fff;
}
.background-color--yellow {
  background-color: #ffc627;
  color: #333;
}
.background-color--white {
  background-color: #fff;
  color: #333;
}
.background-color--black {
  background-color: #333;
  color: #fff;
}
.background-color--light-blue {
  background-color: #6cb2e2;
  color: #333;
}
.background-color--cool-grey {
  background-color: #eff2f9;
  color: #333;
}

.text-color--prime-blue {
  color: #002868;
}
.text-color--navy {
  color: #010e30;
}
.text-color--yellow {
  color: #ffc627;
}
.text-color--white {
  color: #fff;
}
.text-color--black {
  color: #333;
}
.text-color--light-blue {
  color: #6cb2e2;
}
.text-color--cool-grey {
  color: #eff2f9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

button {
  border: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("../../fonts/icons/icomoon.eot");
  src: url("../../fonts/icons/icomoon.eot#iefix") format("embedded-opentype"), url("../../fonts/icons/icomoon.ttf") format("truetype"), url("../../fonts/icons/icomoon.woff") format("woff"), url("../../fonts/icons/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon-e-chevron:before {
  content: "\e900";
}

.icon-w-chevron:before {
  content: "\e901";
}

@font-face {
  font-family: "Vito-Regular";
  font-display: swap;
  src: url("../../fonts/vito/Vito-Regular.woff") format("woff"), url("../../fonts/vito/Vito-Regular.woff2") format("woff2"), url("../../fonts/vito/Vito-Regular.eot") format("opentype");
}
@font-face {
  font-family: "Vito-Medium";
  font-display: swap;
  src: url("../../fonts/vito/Vito-Medium.woff") format("woff"), url("../../fonts/vito/Vito-Medium.woff2") format("woff2"), url("../../fonts/vito/Vito-Medium.eot") format("opentype");
}
@font-face {
  font-family: "Vito-Bold";
  font-display: swap;
  src: url("../../fonts/vito/Vito-Bold.woff") format("woff"), url("../../fonts/vito/Vito-Bold.woff2") format("woff2"), url("../../fonts/vito/Vito-Bold.eot") format("opentype");
}
body {
  color: #333;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Vito-Regular";
}
body b {
  font-family: "Vito-Bold";
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Lora", serif;
  margin-bottom: 8px;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 500;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 700;
}

h1,
.h1 {
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
}

h2,
.h2 {
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -0.075rem;
}

h3,
.h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h4,
.h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-style: italic;
}

h6,
.h6 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.text--lg {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text--md {
  font-size: 1.125rem;
}
.text--sm {
  font-size: 1rem;
  line-height: 1.25rem;
}

.lead {
  margin-bottom: 48px;
}

section {
  margin-bottom: 48px;
}

p {
  padding-bottom: 24px;
}
p:last-of-type {
  padding-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ul,
ol {
  margin-bottom: 24px;
}
ul li,
ol li {
  margin-bottom: 8px;
}

.quote-wrapper {
  padding-left: 64px;
  position: relative;
  display: block;
}
.quote-wrapper--pull-quote {
  padding-left: 40px;
}
.quote-wrapper--pull-quote::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #ffc627;
  left: 10px;
}

q,
blockquote {
  font-family: "Lora", serif;
  font-style: italic;
  display: block;
}

blockquote {
  font-style: normal;
  font-weight: 700;
}

cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: rgba(51, 51, 51, 0.5);
  font-size: 1rem;
}

.text-block_eyebrow {
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: "Vito-Bold";
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.05rem;
}

.quote-icon {
  font-family: "Lora", serif;
  quotes: "”";
  font-size: 18rem;
  line-height: 1.2;
  color: #ffc627;
  pointer-events: none;
}
.quote-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: open-quote;
  font-size: 0;
}
.quote-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: close-quote;
}

@media (min-width: 992px) {
  h1,
.h1 {
    font-size: 3.75rem;
    line-height: 4.5rem;
  }
  .quote-wrapper {
    padding-left: 64px;
  }
  .quote-wrapper--pull-quote {
    padding-left: 96px;
  }
  .quote-wrapper--pull-quote::before {
    left: 64px;
  }
}
body {
  overflow-x: hidden;
  background-color: white;
}

.footer-container a, .tray--program-finder .slider-controls .buttons .program-finder-button, .menu ul li > label img, .menu label.menu-toggle::after, .tray--gallery .gallery-item__text-block, .swiper-video-outter .swiper-button-prev,
.swiper-video-outter .swiper-button-next, .play svg,
.pause svg, .play,
.pause, .play-pause, .breadcrumbs .more-links--wrapper ul li a::after, .breadcrumbs ul li button, .modal, .modal-fade, .side-nav__nav ul button span::after, .side-nav__nav ul button svg, .in-line-nav__nav ul li a::after, .in-line-nav__trigger svg, .tray--profile .swiper-button-prev,
.tray--profile .swiper-button-next, .tray--profile .profile-image::before, .tray--accordion--to-tab .accordion .button-row button, .tray--accordion .accordion__button .icon--wrapper .icon, .desktop-main-nav--wrapper ul li .inner-wrapper ul li a::after, .desktop-main-nav--wrapper ul li .inner-wrapper ul li a, .desktop-main-nav--wrapper ul li .inner-wrapper ul, .desktop-main-nav--wrapper ul li .inner-wrapper, .desktop-main-nav--wrapper ul li a::after, .desktop-main-nav--wrapper ul li a, .desktop-main-nav--wrapper ul li svg, ul.tools-dropdown li a,
ul.account-dropdown li a, ul.tools-dropdown li,
ul.account-dropdown li, .top-bar .section ul li svg, .top-bar .section ul li.icons::after, .top-bar .section ul li a::after, .top-bar .section ul li a, .main-nav-toggle .icon, .top-bar .button-links button::after, .card, .social-links a svg, .custom-select-wrapper .custom-options .custom-option, .custom-select-wrapper .custom-options, .custom-select-wrapper .custom-select .custom-select-trigger::after, .custom-select-wrapper .custom-select .custom-select-trigger, .form-element label.image-selects .icon, .form-element label:not(.image-selects) span, .form-element label:not(.image-selects), .link, .background-color--prime-blue .button,
.background-color--prime-blue .button--prime, .background-color--navy .button,
.background-color--navy .button--prime, .background-color--black .button,
.background-color--black .button--prime, #jump-to-main {
  transition: all 0.25s linear;
}

#jump-to-main {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  background-color: #eff2f9;
  padding: 10px;
}
#jump-to-main:focus {
  opacity: 1;
  pointer-events: unset;
}
#jump-to-main:focus:hover {
  color: #ffc627;
}

.home-link {
  display: block;
}

.container {
  padding-left: 4px;
  padding-right: 4px;
}

.row {
  margin-right: -0.15625rem;
  margin-left: -0.15625rem;
}

.row > * {
  padding-right: 0.15625rem;
  padding-left: 0.15625rem;
}

.yellow-pop-border {
  border: solid #ffc627;
  border-width: 30px 30px 0 30px;
}

.yellow-contact-pop-border {
  position: relative;
  padding-left: 30px;
}
.yellow-contact-pop-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 50%;
  background-color: #ffc627;
}

.center-item {
  display: flex;
  justify-content: center;
}

.border--top--right {
  position: relative;
}
.border--top--right::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: 1;
  top: -30px;
  right: 0px;
  border: solid #ffc627;
  border-width: 30px 30px 0 0;
}

.ellip {
  display: block;
  height: 100%;
}

.ellip-line {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  max-width: 100%;
}

.ellip,
.ellip-line {
  position: relative;
  overflow: hidden;
}

.sr-only {
  font-size: 0;
  position: absolute;
  left: -666em;
}

.tray--button-container {
  margin-bottom: 50px;
}

main .tray--breadcrumb-inline-nav:first-of-type {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .yellow-contact-pop-border {
    padding-left: 0px;
    padding-top: 0px;
  }
  .yellow-contact-pop-border::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 30px;
    background-color: #ffc627;
  }
  .border--top--right {
    position: relative;
  }
  .border--top--right::after {
    width: 263px;
    height: 263px;
    top: -50px;
    right: -42px;
    border-width: 50px 42px 0 0;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0;
  }
  .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
  .row > * {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.ratio--16-9 {
  position: relative;
}
.ratio--16-9::after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.ratio--16-9 > .content,
.ratio--16-9 > .background-image,
.ratio--16-9 > img,
.ratio--16-9 > video,
.ratio--16-9 > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ratio--16-9 > iframe,
.ratio--16-9 > video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ratio--9-16 {
  position: relative;
}
.ratio--9-16::after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 177.7777777778%;
  overflow: hidden;
}
.ratio--9-16 > .content,
.ratio--9-16 > .background-image,
.ratio--9-16 > img,
.ratio--9-16 > video,
.ratio--9-16 > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ratio--9-16 > iframe,
.ratio--9-16 > video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ratio--4-5 {
  position: relative;
}
.ratio--4-5::after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
}
.ratio--4-5 > .content,
.ratio--4-5 > .background-image,
.ratio--4-5 > img,
.ratio--4-5 > video,
.ratio--4-5 > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ratio--4-5 > iframe,
.ratio--4-5 > video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ratio--5-4 {
  position: relative;
}
.ratio--5-4::after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 80%;
  overflow: hidden;
}
.ratio--5-4 > .content,
.ratio--5-4 > .background-image,
.ratio--5-4 > img,
.ratio--5-4 > video,
.ratio--5-4 > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ratio--5-4 > iframe,
.ratio--5-4 > video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ratio--1-1 {
  position: relative;
}
.ratio--1-1::after {
  display: block;
  content: "";
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.ratio--1-1 > .content,
.ratio--1-1 > .background-image,
.ratio--1-1 > img,
.ratio--1-1 > video,
.ratio--1-1 > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ratio--1-1 > iframe,
.ratio--1-1 > video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.button,
.in-line-nav__trigger {
  font-size: 1rem;
  line-height: 1.125rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 30px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  border: 0;
  cursor: pointer;
}
.button::before,
.in-line-nav__trigger::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.button:hover, .button:focus, .button:active, .button.active,
.in-line-nav__trigger:hover,
.in-line-nav__trigger:focus,
.in-line-nav__trigger:active,
.in-line-nav__trigger.active {
  border-color: #ffc627;
  outline: none;
}
.button:hover::before, .button:focus::before, .button:active::before, .button.active::before,
.in-line-nav__trigger:hover::before,
.in-line-nav__trigger:focus::before,
.in-line-nav__trigger:active::before,
.in-line-nav__trigger.active::before {
  transform: scaleY(1);
}
.button--prime,
.in-line-nav__trigger--prime {
  background-color: #002868;
  color: #fff;
}
.button--prime::before,
.in-line-nav__trigger--prime::before {
  background-color: #ffc627;
}
.button--prime:hover, .button--prime:focus, .button--prime:active,
.in-line-nav__trigger--prime:hover,
.in-line-nav__trigger--prime:focus,
.in-line-nav__trigger--prime:active {
  color: #333;
}
.button--secondary,
.in-line-nav__trigger--secondary {
  background-color: #ffc627;
  color: #333;
}
.button--secondary::before,
.in-line-nav__trigger--secondary::before {
  background-color: #002868;
}
.button--secondary:hover, .button--secondary:focus, .button--secondary:active,
.in-line-nav__trigger--secondary:hover,
.in-line-nav__trigger--secondary:focus,
.in-line-nav__trigger--secondary:active {
  color: #fff;
}
.button--ghost,
.in-line-nav__trigger--ghost {
  background-color: transparent;
  border: solid 1px;
  border-color: #002868;
  color: #002868;
}
.button--ghost::before,
.in-line-nav__trigger--ghost::before {
  background-color: #ffc627;
}
.button--ghost:hover, .button--ghost:focus, .button--ghost:active,
.in-line-nav__trigger--ghost:hover,
.in-line-nav__trigger--ghost:focus,
.in-line-nav__trigger--ghost:active {
  color: #333;
}

.background-color--prime-blue .button,
.background-color--prime-blue .button--prime, .background-color--navy .button,
.background-color--navy .button--prime, .background-color--black .button,
.background-color--black .button--prime {
  border-color: #fff;
  color: #fff;
  border: solid 1px;
  background-color: transparent;
}
.background-color--prime-blue .button:hover, .background-color--prime-blue .button:focus, .background-color--prime-blue .button:active,
.background-color--prime-blue .button--prime:hover,
.background-color--prime-blue .button--prime:focus,
.background-color--prime-blue .button--prime:active, .background-color--navy .button:hover, .background-color--navy .button:focus, .background-color--navy .button:active,
.background-color--navy .button--prime:hover,
.background-color--navy .button--prime:focus,
.background-color--navy .button--prime:active, .background-color--black .button:hover, .background-color--black .button:focus, .background-color--black .button:active,
.background-color--black .button--prime:hover,
.background-color--black .button--prime:focus,
.background-color--black .button--prime:active {
  color: #ffc627;
  border-color: #ffc627;
  background-color: transparent;
}
.background-color--prime-blue .button:hover::before, .background-color--prime-blue .button:focus::before, .background-color--prime-blue .button:active::before,
.background-color--prime-blue .button--prime:hover::before,
.background-color--prime-blue .button--prime:focus::before,
.background-color--prime-blue .button--prime:active::before, .background-color--navy .button:hover::before, .background-color--navy .button:focus::before, .background-color--navy .button:active::before,
.background-color--navy .button--prime:hover::before,
.background-color--navy .button--prime:focus::before,
.background-color--navy .button--prime:active::before, .background-color--black .button:hover::before, .background-color--black .button:focus::before, .background-color--black .button:active::before,
.background-color--black .button--prime:hover::before,
.background-color--black .button--prime:focus::before,
.background-color--black .button--prime:active::before {
  display: none;
}
.background-color--prime-blue .button--ghost,
.background-color--prime-blue .button--prime--ghost, .background-color--navy .button--ghost,
.background-color--navy .button--prime--ghost, .background-color--black .button--ghost,
.background-color--black .button--prime--ghost {
  border-color: #fff;
  color: #fff;
}
.background-color--prime-blue .button--ghost:hover, .background-color--prime-blue .button--ghost:focus, .background-color--prime-blue .button--ghost:active,
.background-color--prime-blue .button--prime--ghost:hover,
.background-color--prime-blue .button--prime--ghost:focus,
.background-color--prime-blue .button--prime--ghost:active, .background-color--navy .button--ghost:hover, .background-color--navy .button--ghost:focus, .background-color--navy .button--ghost:active,
.background-color--navy .button--prime--ghost:hover,
.background-color--navy .button--prime--ghost:focus,
.background-color--navy .button--prime--ghost:active, .background-color--black .button--ghost:hover, .background-color--black .button--ghost:focus, .background-color--black .button--ghost:active,
.background-color--black .button--prime--ghost:hover,
.background-color--black .button--prime--ghost:focus,
.background-color--black .button--prime--ghost:active {
  color: #ffc627;
  border-color: #ffc627;
}
.background-color--prime-blue .background-color--cool-grey .button, .background-color--navy .background-color--cool-grey .button, .background-color--black .background-color--cool-grey .button {
  background-color: #002868;
  color: #fff;
}
.background-color--prime-blue .background-color--cool-grey .button::before, .background-color--navy .background-color--cool-grey .button::before, .background-color--black .background-color--cool-grey .button::before {
  display: block;
  background-color: #ffc627;
}
.background-color--prime-blue .background-color--cool-grey .button:hover, .background-color--prime-blue .background-color--cool-grey .button:focus, .background-color--prime-blue .background-color--cool-grey .button:active, .background-color--navy .background-color--cool-grey .button:hover, .background-color--navy .background-color--cool-grey .button:focus, .background-color--navy .background-color--cool-grey .button:active, .background-color--black .background-color--cool-grey .button:hover, .background-color--black .background-color--cool-grey .button:focus, .background-color--black .background-color--cool-grey .button:active {
  color: #333;
}
.background-color--prime-blue .form-element--with-button .button--prime,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--prime, .background-color--navy .form-element--with-button .button--prime,
.background-color--navy .form-element--with-button .in-line-nav__trigger--prime, .background-color--black .form-element--with-button .button--prime,
.background-color--black .form-element--with-button .in-line-nav__trigger--prime {
  background-color: #002868;
  color: #fff;
}
.background-color--prime-blue .form-element--with-button .button--prime::before,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--prime::before, .background-color--navy .form-element--with-button .button--prime::before,
.background-color--navy .form-element--with-button .in-line-nav__trigger--prime::before, .background-color--black .form-element--with-button .button--prime::before,
.background-color--black .form-element--with-button .in-line-nav__trigger--prime::before {
  background-color: #ffc627;
}
.background-color--prime-blue .form-element--with-button .button--prime:hover, .background-color--prime-blue .form-element--with-button .button--prime:focus, .background-color--prime-blue .form-element--with-button .button--prime:active,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--prime:hover,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--prime:focus,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--prime:active, .background-color--navy .form-element--with-button .button--prime:hover, .background-color--navy .form-element--with-button .button--prime:focus, .background-color--navy .form-element--with-button .button--prime:active,
.background-color--navy .form-element--with-button .in-line-nav__trigger--prime:hover,
.background-color--navy .form-element--with-button .in-line-nav__trigger--prime:focus,
.background-color--navy .form-element--with-button .in-line-nav__trigger--prime:active, .background-color--black .form-element--with-button .button--prime:hover, .background-color--black .form-element--with-button .button--prime:focus, .background-color--black .form-element--with-button .button--prime:active,
.background-color--black .form-element--with-button .in-line-nav__trigger--prime:hover,
.background-color--black .form-element--with-button .in-line-nav__trigger--prime:focus,
.background-color--black .form-element--with-button .in-line-nav__trigger--prime:active {
  color: #333;
}
.background-color--prime-blue .form-element--with-button .button--ghost,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost, .background-color--navy .form-element--with-button .button--ghost,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost, .background-color--black .form-element--with-button .button--ghost,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost {
  background-color: transparent;
  border: solid 1px;
  border-color: #002868;
  color: #002868;
}
.background-color--prime-blue .form-element--with-button .button--ghost::before,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost::before, .background-color--navy .form-element--with-button .button--ghost::before,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost::before, .background-color--black .form-element--with-button .button--ghost::before,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.background-color--prime-blue .form-element--with-button .button--ghost::before,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost::before, .background-color--navy .form-element--with-button .button--ghost::before,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost::before, .background-color--black .form-element--with-button .button--ghost::before,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost::before {
  background-color: #ffc627;
}
.background-color--prime-blue .form-element--with-button .button--ghost:hover, .background-color--prime-blue .form-element--with-button .button--ghost:focus, .background-color--prime-blue .form-element--with-button .button--ghost:active,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost:hover,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost:focus,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost:active, .background-color--navy .form-element--with-button .button--ghost:hover, .background-color--navy .form-element--with-button .button--ghost:focus, .background-color--navy .form-element--with-button .button--ghost:active,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost:hover,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost:focus,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost:active, .background-color--black .form-element--with-button .button--ghost:hover, .background-color--black .form-element--with-button .button--ghost:focus, .background-color--black .form-element--with-button .button--ghost:active,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost:hover,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost:focus,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost:active {
  border-color: #ffc627;
  outline: none;
}
.background-color--prime-blue .form-element--with-button .button--ghost:hover::before, .background-color--prime-blue .form-element--with-button .button--ghost:focus::before, .background-color--prime-blue .form-element--with-button .button--ghost:active::before,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost:hover::before,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost:focus::before,
.background-color--prime-blue .form-element--with-button .in-line-nav__trigger--ghost:active::before, .background-color--navy .form-element--with-button .button--ghost:hover::before, .background-color--navy .form-element--with-button .button--ghost:focus::before, .background-color--navy .form-element--with-button .button--ghost:active::before,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost:hover::before,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost:focus::before,
.background-color--navy .form-element--with-button .in-line-nav__trigger--ghost:active::before, .background-color--black .form-element--with-button .button--ghost:hover::before, .background-color--black .form-element--with-button .button--ghost:focus::before, .background-color--black .form-element--with-button .button--ghost:active::before,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost:hover::before,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost:focus::before,
.background-color--black .form-element--with-button .in-line-nav__trigger--ghost:active::before {
  transform: scaleY(1);
}

.background-color--cool-grey .button,
.background-color--cool-grey .button--prime, .background-color--yellow .button,
.background-color--yellow .button--prime, .background-color--light-blue .button,
.background-color--light-blue .button--prime {
  background-color: #002868;
  color: #fff;
}
.background-color--cool-grey .button::before,
.background-color--cool-grey .button--prime::before, .background-color--yellow .button::before,
.background-color--yellow .button--prime::before, .background-color--light-blue .button::before,
.background-color--light-blue .button--prime::before {
  background-color: #ffc627;
}
.background-color--cool-grey .button:hover, .background-color--cool-grey .button:focus, .background-color--cool-grey .button:active,
.background-color--cool-grey .button--prime:hover,
.background-color--cool-grey .button--prime:focus,
.background-color--cool-grey .button--prime:active, .background-color--yellow .button:hover, .background-color--yellow .button:focus, .background-color--yellow .button:active,
.background-color--yellow .button--prime:hover,
.background-color--yellow .button--prime:focus,
.background-color--yellow .button--prime:active, .background-color--light-blue .button:hover, .background-color--light-blue .button:focus, .background-color--light-blue .button:active,
.background-color--light-blue .button--prime:hover,
.background-color--light-blue .button--prime:focus,
.background-color--light-blue .button--prime:active {
  color: #333;
}
.background-color--cool-grey .button::before,
.background-color--cool-grey .button--prime::before, .background-color--yellow .button::before,
.background-color--yellow .button--prime::before, .background-color--light-blue .button::before,
.background-color--light-blue .button--prime::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.background-color--cool-grey .button:hover, .background-color--cool-grey .button:focus, .background-color--cool-grey .button:active,
.background-color--cool-grey .button--prime:hover,
.background-color--cool-grey .button--prime:focus,
.background-color--cool-grey .button--prime:active, .background-color--yellow .button:hover, .background-color--yellow .button:focus, .background-color--yellow .button:active,
.background-color--yellow .button--prime:hover,
.background-color--yellow .button--prime:focus,
.background-color--yellow .button--prime:active, .background-color--light-blue .button:hover, .background-color--light-blue .button:focus, .background-color--light-blue .button:active,
.background-color--light-blue .button--prime:hover,
.background-color--light-blue .button--prime:focus,
.background-color--light-blue .button--prime:active {
  outline: none;
}
.background-color--cool-grey .button:hover::before, .background-color--cool-grey .button:focus::before, .background-color--cool-grey .button:active::before,
.background-color--cool-grey .button--prime:hover::before,
.background-color--cool-grey .button--prime:focus::before,
.background-color--cool-grey .button--prime:active::before, .background-color--yellow .button:hover::before, .background-color--yellow .button:focus::before, .background-color--yellow .button:active::before,
.background-color--yellow .button--prime:hover::before,
.background-color--yellow .button--prime:focus::before,
.background-color--yellow .button--prime:active::before, .background-color--light-blue .button:hover::before, .background-color--light-blue .button:focus::before, .background-color--light-blue .button:active::before,
.background-color--light-blue .button--prime:hover::before,
.background-color--light-blue .button--prime:focus::before,
.background-color--light-blue .button--prime:active::before {
  transform: scaleY(1);
}

.logo--primary {
  width: 288px;
}
.logo--stacked {
  width: 422px;
}
.logo--icon {
  width: 181px;
}
.logo--wordmark {
  width: 208px;
}

.icon {
  width: 24px;
  height: 24px;
}
.icon--button, .icon--expanding-oop {
  width: 55px;
  height: 55px;
}
.icon--checkbox, .icon--radio {
  width: 26px;
  height: 26px;
}
.icon--account, .icon--search, .icon--tools {
  width: 16px;
  height: 16px;
}
.icon--caret-large {
  width: 67px;
  height: 44px;
}
.icon--growing-talent {
  width: 56px;
  height: 49px;
}
.icon--small-carret-s {
  width: 14px;
  height: 7.5px;
}
.icon--expand-s, .icon--collapse-s {
  width: 12px;
  height: 12px;
}
.icon--caret-large {
  width: 67px;
  height: 44px;
}
.icon--carret-filled {
  width: 20px;
  height: 13px;
}
.icon--carret-n, .icon--carret-s {
  width: 24px;
  height: 14px;
}
.icon--carret-e, .icon--carret-w {
  width: 14px;
  height: 24px;
}
.icon--close-s {
  width: 14px;
  height: 14px;
}
.icon--caret-s-s {
  width: 16px;
  height: 7.58px;
}
.icon--facebook, .icon--insta, .icon--twitter, .icon--youtube {
  width: 48px;
  height: 48px;
}
.icon--linkedin {
  width: 45px;
  height: 45px;
}
.icon--caret-s-e {
  width: 5px;
  height: 7px;
}
.icon--video {
  width: 101px;
  height: 101px;
}

svg.icon {
  fill: #333;
}
svg.icon--caret-large {
  fill: transparent;
}

#checkbox-d g,
#checkbox-d rect,
#checkbox-s g,
#checkbox-s rect,
#radio-d g,
#radio-d rect {
  stroke: #333;
}

#radio-s rect#rect-1 {
  fill: #333;
}
#radio-s rect#rect-2 {
  stroke: #333;
}

[class^=background-color--] svg.icon {
  fill: #fff;
}

.tray--content--signature__text-block_icon .icon {
  max-width: 72px;
  width: unset;
  height: unset;
  display: flex;
  flex-shrink: 0;
}

.link {
  position: relative;
  padding: 0.1em 0;
  text-decoration: none;
  color: #333;
  background-color: transparent;
  border: 0;
  display: inline;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-right: 20px;
  line-height: 1rem;
}
.link:last-of-type {
  margin-right: 0;
}
.link[href^="mailto:"] {
  text-transform: none;
}
.link.inline-link {
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
}
.link--prime {
  box-shadow: 0 6px 0 #fff, 0 7px 0 #010e30;
}
.link--prime:hover, .link--prime:focus {
  box-shadow: 0 4px 0 #fff, 0 5px 0 #ffc627;
}

nav:not(.breadcrumbs) .link--prime {
  box-shadow: 0 6px 0 #010e30, 0 7px 0 #fff;
}
nav:not(.breadcrumbs) .link--prime:hover, nav:not(.breadcrumbs) .link--prime:focus {
  box-shadow: 0 3px 0 #010e30, 0 5px 0 #ffc627;
}

nav.side-nav__nav .link--prime {
  box-shadow: 0 6px 0 #fff, 0 7px 0 #fff;
}
nav.side-nav__nav .link--prime:hover, nav.side-nav__nav .link--prime:focus {
  box-shadow: 0 4px 0 #fff, 0 5px 0 #ffc627;
}

button.link {
  display: inline;
  line-height: 1;
}

.background-color--prime-blue .link {
  color: #fff;
  box-shadow: 0 6px 0 #002868, 0 7px 0 #fff;
}
.background-color--prime-blue .link:hover, .background-color--prime-blue .link:focus {
  box-shadow: 0 3px 0 #002868, 0 5px 0 #ffc627;
}
.background-color--navy .link {
  color: #fff;
  box-shadow: 0 6px 0 #010e30, 0 7px 0 #fff;
}
.background-color--navy .link:hover, .background-color--navy .link:focus {
  box-shadow: 0 3px 0 #010e30, 0 5px 0 #ffc627;
}

.tray--large-promo.with-background .link {
  box-shadow: 0 6px 0 #eff2f9, 0 7px 0 #333;
}
.tray--large-promo.with-background .link:hover, .tray--large-promo.with-background .link:focus {
  box-shadow: 0 3px 0 #eff2f9, 0 5px 0 #ffc627;
}

.inline-link {
  position: relative;
  color: #333;
  background-color: transparent;
  border: 0;
  display: inline;
  cursor: pointer;
}
.inline-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  left: 0;
  bottom: -2px;
  transition: all 0.25s ease-in-out;
}
.inline-link:hover, .inline-link:focus {
  color: #333;
  outline: none;
}
.inline-link:hover::after, .inline-link:focus::after {
  bottom: 0;
  height: 2px;
  background-color: #ffc627;
}
/*
a:not(.button),
button {
  position: relative;
  color: #333;
  background-color: transparent;
  border: 0;
  display: inline;
  cursor: pointer;
  line-height: 1.1;
  text-decoration: none;
}
a:not(.button)::after,
button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  left: 0;
  bottom: -2px;
  transition: all 0.25s ease-in-out;
}
a:not(.button):hover, a:not(.button):focus,
button:hover,
button:focus {
  color: #333;
  outline: none;
}
a:not(.button):hover::after, a:not(.button):focus::after,
button:hover::after,
button:focus::after {
  bottom: 0;
  height: 2px;
  background-color: #ffc627;
}
*/
.background-color--prime-blue a,
.background-color--prime-blue button,
.background-color--navy a,
.background-color--navy button {
  position: relative;
  color: #fff;
  background-color: transparent;
  border: 0;
  display: inline;
  cursor: pointer;
  line-height: 1.1;
  align-self: start;
}
.background-color--prime-blue a::after,
.background-color--prime-blue button::after,
.background-color--navy a::after,
.background-color--navy button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: -6px;
  transition: all 0.25s ease-in-out;
}
.background-color--prime-blue a:hover, .background-color--prime-blue a:focus,
.background-color--prime-blue button:hover,
.background-color--prime-blue button:focus,
.background-color--navy a:hover,
.background-color--navy a:focus,
.background-color--navy button:hover,
.background-color--navy button:focus {
  color: #fff;
  outline: none;
}
.background-color--prime-blue a:hover::after, .background-color--prime-blue a:focus::after,
.background-color--prime-blue button:hover::after,
.background-color--prime-blue button:focus::after,
.background-color--navy a:hover::after,
.background-color--navy a:focus::after,
.background-color--navy button:hover::after,
.background-color--navy button:focus::after {
  bottom: 0;
  height: 2px;
  background-color: #ffc627;
}

button.in-line-nav__trigger::after,
.swiper-slide a::after,
.button::after,
.card::after,
footer a::after,
.social-links a::after,
.side-nav__nav a::after,
.side-nav__toggle::after,
.tray--sort__wrapper button::after,
.tab-toggle::after,
.share a::after,
.home-link::after,
.top-links button::after,
.main-nav-toggle::after,
.close-alert::after,
.accordion__button::after {
  display: none;
}

.form-element {
  margin-bottom: 20px;
}
.form-element label:not(.image-selects) {
  display: flex;
  align-items: center;
  border: solid 1px #010101;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 70px;
  position: relative;
}
.form-element label:not(.image-selects) span {
  z-index: 2;
}
.form-element label:not(.image-selects) span.move-up {
  margin-top: -40px;
  font-size: 0.7rem;
  opacity: 0.5;
}
.form-element label:not(.image-selects) input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}
.form-element label:not(.image-selects) input:focus {
  outline: solid 2px #002868;
}
.form-element label:not(.image-selects) button {
  margin-left: auto;
}
.form-element label.image-selects {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-element label.image-selects input {
  display: none;
}
.form-element label.image-selects svg {
  position: absolute;
}
.form-element label.image-selects span {
  margin-left: 32px;
}
.form-element label.image-selects input:checked + .icon--checkbox-s {
  opacity: 1;
}
.form-element label.image-selects input:checked + .icon--radio-s {
  opacity: 1;
}
.form-element label.image-selects .icon--checkbox-s {
  opacity: 0;
}
.form-element label.image-selects .icon--radio-s {
  opacity: 0;
}
.form-element label.invalad-input {
  border-color: #da1e28;
}
.form-element--with-button label input {
  padding-right: 167px;
}

.form-element--search {
  display: flex;
  background-color: #fff;
  padding: 13px;
  margin-bottom: 0;
}
.form-element--search label:not(.image-selects) {
  height: 50px;
  margin-right: 30px;
}
.form-element--search label:not(.image-selects) span.move-up {
  margin-top: -30px;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  height: 70px;
}
.custom-select-wrapper select {
  display: none;
}
.custom-select-wrapper .custom-select {
  background-color: #fff;
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select-wrapper .custom-select .custom-select-trigger {
  display: flex;
  align-items: center;
  border: solid 1px #010101;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 70px;
  position: relative;
  cursor: pointer;
}
.custom-select-wrapper .custom-select .custom-select-trigger::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333;
  margin-top: 0-round 4px;
  right: 20px;
}
.custom-select-wrapper .custom-select.opened .custom-select-trigger:after {
  transform: rotate(-180deg);
}
.custom-select-wrapper .custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-select-wrapper .custom-options {
  z-index: 2;
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  background: #ebebeb;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.custom-select-wrapper .custom-options .custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  cursor: pointer;
}
.custom-select-wrapper .custom-options .custom-option:hover, .custom-select-wrapper .custom-options .custom-option.selection {
  background: #002868;
  color: #fff;
}

.section-container--wavy {
  background-size: auto;
  background-position: center;
}
.section-container--wavy--lg {
  background-image: url("../img/wavy--xxxl.svg");
  background-size: auto;
  background-position: center;
}
.section-container--wavy--md {
  background-image: url("../img/wavy--xxxl.svg");
  background-size: auto;
  background-position: center;
}
.section-container--wavy--sm {
  background-image: url("../img/wavy--xxxl.svg");
  background-size: auto;
  background-position: center;
}

.footer-container ul.social-links {
  padding: 0 0 48px 0;
}

.social-links {
  display: flex;
  padding: 0 0 48px 0;
  margin-top: 49px;
  border-bottom: 1px solid #fff;
}
.social-links li {
  margin-right: 30px;
}
.social-links li:last-of-type {
  margin-right: 0;
}
.social-links .svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.social-links .svg-wrapper .icon--youtube {
  width: 30px;
  height: 21px;
}
.social-links .svg-wrapper .icon--twitter {
  width: 30px;
  height: 25px;
}
.social-links .svg-wrapper .icon--linkedin {
  width: 29px;
  height: 29px;
}
.social-links .svg-wrapper .icon--facebook, .social-links .svg-wrapper .icon--insta {
  width: 30px;
  height: 30px;
}
.social-links a:hover svg {
  fill: #ffc627;
}

.background-color--prime-blue svg.icon, .background-color--navy svg.icon, .background-color--black svg.icon {
  fill: #fff;
}

@media (min-width: 992px) {
  .footer-container ul.social-links {
    padding: 0;
  }
}
.card {
  flex: 1 1 100%;
  margin-bottom: 60px;
}
.card__date {
  font-size: 2.5rem;
  font-family: "Vito-Bold";
  margin-bottom: 27px;
}
.card__time, .card__location {
  text-transform: uppercase;
  font-family: "Vito-Bold";
}
.card__time {
  margin-top: -20px;
}
.card__location {
  margin-bottom: 27px;
}
.card__text {
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Lora", serif;
  margin-bottom: 45px;
  font-weight: 500;
}
.card__image-wrapper {
  margin-bottom: 24px;
}

.card--date {
  border: solid 2px #002868;
  padding: 30px;
  min-height: 288px;
}

a.card--date:hover {
  border-color: #ffc627;
  color: unset;
}
a.card--date:hover .link {
  color: #333;
}
a.card--date:hover .link::after {
  background-color: #ffc627;
  height: 2px;
  transform: translate3d(0, -0.1em, 0);
}

[class^=background-color--]:not(.background-color--white) .card--date,
[class*=background-color--]:not(.background-color--white) .card--date {
  border-color: #6cb2e2;
}
[class^=background-color--]:not(.background-color--white) a.card--date:hover,
[class*=background-color--]:not(.background-color--white) a.card--date:hover {
  border-color: #ffc627;
  color: unset;
}
[class^=background-color--]:not(.background-color--white) a.card--date:hover .link,
[class*=background-color--]:not(.background-color--white) a.card--date:hover .link {
  color: #fff;
}

.card--story {
  padding: 0;
  border: 0;
}
.card--story .link {
  margin-top: 24px;
}

.hide {
  display: none;
}

@media (min-width: 992px) {
  .card {
    flex: 0 1 calc(33.333333% - 60px);
    margin-left: 30px;
    margin-right: 30px;
  }
  .card:nth-child(3n) {
    margin-bottom: 60px;
  }
}
.tray--filters {
  margin-bottom: 30px;
}
.tray--filters__wrapper {
  padding: 20px;
}
.tray--filters form {
  display: flex;
  flex-direction: column;
}
.tray--filters form .form--title {
  font-family: "Vito-Bold";
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tray--filters form > div {
  margin-right: 20px;
}
.tray--filters form > div:last-of-type label {
  margin-right: 0;
}
.tray--filters form .form-element {
  width: 100%;
}
.tray--filters form .form-element .custom-select,
.tray--filters form .form-element .custom-select-wrapper,
.tray--filters form .form-element .custom-select-trigger {
  height: 50px;
}
.tray--filters form .form-element--search {
  padding: 0;
}
.tray--filters form .form-element--search input,
.tray--filters form .form-element--search label {
  padding-right: 0;
}

.tray--sort__wrapper {
  display: flex;
  border-bottom: 2px solid #010e30;
  padding-bottom: 10px;
}
.tray--sort__wrapper button {
  margin-left: auto;
  display: flex;
  background-color: transparent;
  position: relative;
  align-items: center;
  cursor: pointer;
  color: #333;
}
.tray--sort__wrapper button img {
  margin-right: 10px;
}

@media (min-width: 992px) {
  .tray--filters form {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .tray--filters form > div {
    margin-right: 20px;
  }
  .tray--filters form > div:last-of-type label {
    margin-right: 0;
  }
  .tray--filters form .form--title {
    margin-bottom: 0;
  }
  .tray--filters form .form-element {
    margin-bottom: 0;
    flex: 1 1 50%;
  }
  .tray--filters form .form-element--search {
    flex-basis: 100%;
    margin-right: 0;
  }
}
.search-result__item {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #010e30;
  padding-top: 40px;
  padding-bottom: 40px;
}
.search-result__item_image {
  flex: 1 1 100%;
  margin-bottom: 30px;
}
.search-result__item_text-block {
  flex: 1 1 100%;
}
.search-result__item_text-block .text-block__date {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.search-result__item_text-block .text-block__header {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 16px;
}
.search-result__item_text-block .text-block__extract {
  margin-top: 16px;
}

.search-page .search-result__item {
  border-bottom-width: 1px;
}
.search-page .search-result__item_text-block .text-block__header {
  font-family: "Lora", serif;
  font-weight: 800;
}
.search-page .form-element--search {
  flex-direction: column;
  padding: 0;
  margin-bottom: 48px;
}
.search-page .form-element--search label {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .search-result__item {
    flex-direction: row;
  }
  .search-result__item_image {
    flex-basis: 50%;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .search-page .form-element--search {
    flex-direction: row;
  }
  .search-page .form-element--search label {
    margin-bottom: 0;
  }
}
.top-bar-outter {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0 0 0;
}
.top-bar .home-link {
  display: block;
  width: 230px;
  align-self: unset;
}
.top-bar .section {
  width: 100%;
  display: flex;
  margin-top: 15px;
}
.top-bar .top-links {
  display: none;
}
.top-bar .button-links {
  display: flex;
  flex: 1 0 calc(100% + 70px);
  margin-left: -35px;
  justify-content: space-between;
  background-color: #010e30;
  padding: 25px 45px;
  position: relative;
  z-index: 2;
}
.top-bar .button-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 200vw;
  background-color: inherit;
  z-index: -1;
}
.top-bar .button-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px);
  height: 1px;
  background-color: #002868;
}
.top-bar .button-links button {
  background-color: transparent;
}
.top-bar .button-links button svg.icon {
  fill: #fff;
}
#main-site-search {
  display: flex;
  display: none;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  justify-content: center;
  background-color: #010e30;
  padding-left: 30px;
}
#main-site-search .form-element {
  width: 90%;
}
#main-site-search .form-element label:not(.image-selects) {
  height: 50px;
}
#main-site-search .form-element label:not(.image-selects) input {
  background-color: #fff;
  color: #333;
}
#main-site-search .form-element button {
  margin-top: 20px;
  width: 100%;
  padding: 16px 30px;
}

.main-nav-toggle {
  padding: 0;
  background-color: transparent;
  margin-left: auto;
  position: relative;
  width: 24px;
  height: 24px;
}
.main-nav-toggle .icon {
  position: absolute;
  width: 24px;
  height: 24px;
}
.main-nav-toggle .icon--hamburger {
  opacity: 1;
}
.main-nav-toggle .icon--close {
  opacity: 0;
}
.main-nav-toggle.active .icon--hamburger {
  opacity: 0;
}
.main-nav-toggle.active .icon--close {
  opacity: 1;
}
.main-nav-toggle svg {
  fill: #fff;
}

.tools-dropdown,
.account-dropdown {
  display: none;
}

.top-bar .section ul li.icons button {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0;
}
.top-bar .section ul li svg {
  fill: #fff;
}

.featured-block {
  display: none;
}

@media (min-width: 768px) {
  #main-site-search .form-element {
    width: 761px;
    margin-left: auto;
    margin-right: auto;
    padding: 13px;
    background-color: #fff;
    display: flex;
  }
  #main-site-search .form-element label {
    border-color: #010101;
  }
  #main-site-search .form-element label input:focus {
    outline: solid 2px #002868;
  }
  #main-site-search .form-element button {
    margin-top: 0;
    width: auto;
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .main-nav-toggle {
    display: none !important;
  }
  .top-bar-outter {
    overflow-x: unset;
  }
  .top-bar {
    flex-direction: row;
    height: 70px;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
  }
  .top-bar .home-link {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    align-items: center;
  }
  .top-bar .section {
    align-items: center;
    margin-top: 0;
  }
  .top-bar .section ul {
    margin-bottom: 0;
    margin-left: auto;
  }
  .top-bar .section ul li {
    list-style: none;
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 0;
  }
  .top-bar .section ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 0.875rem;
    letter-spacing: 0.05rem;
  }
  .top-bar .section ul li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #ffc627;
    bottom: -23px;
  }
  .top-bar .section ul li a:hover, .top-bar .section ul li a:focus {
    color: #ffc627;
  }
  .top-bar .section ul li a:hover::after, .top-bar .section ul li a:focus::after {
    height: 4px;
  }
  .top-bar .section ul li svg {
    fill: #fff;
    cursor: pointer;
    position: relative;
  }
  .top-bar .section ul li svg:hover, .top-bar .section ul li svg:focus-within {
    fill: #ffc627;
  }
  .top-bar .section ul li svg:hover::after, .top-bar .section ul li svg:focus-within::after {
    height: 4px;
  }
  .top-bar .section ul li.icons {
    position: relative;
  }
  .top-bar .section ul li.icons::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #ffc627;
    bottom: -21px;
    left: 50%;
    margin-left: 2px;
    transform: translateX(-50%);
  }
  .top-bar .section ul li.icons:hover svg, .top-bar .section ul li.icons.active svg, .top-bar .section ul li.icons:focus-within svg {
    fill: #ffc627;
  }
  .top-bar .section ul li.icons:hover::after, .top-bar .section ul li.icons.active::after, .top-bar .section ul li.icons:focus-within::after {
    height: 4px;
  }
  .top-bar .top-links {
    display: flex;
  }
  .top-bar ul.tools-dropdown,
.top-bar ul.account-dropdown {
    position: absolute;
    display: none;
    background-color: #ffc627;
    width: 270px;
    padding: 27px 32px;
    right: -20px;
    top: 41px;
    z-index: 200;
  }
  .top-bar ul.tools-dropdown li.header,
.top-bar ul.account-dropdown li.header {
    font-family: "Vito-Bold";
    color: #333;
  }
  .top-bar ul.tools-dropdown li a,
.top-bar ul.account-dropdown li a {
    color: #333;
    line-height: 30px;
  }
  .top-bar ul.tools-dropdown li a::after,
.top-bar ul.account-dropdown li a::after {
    display: none;
  }
  .top-bar ul.tools-dropdown li:hover:not(.header),
.top-bar ul.account-dropdown li:hover:not(.header) {
    background-color: #fff;
  }
  .top-bar ul.tools-dropdown li:hover:not(.header) a,
.top-bar ul.account-dropdown li:hover:not(.header) a {
    color: #333;
  }
  #main-site-search {
    padding: 0;
    background-color: #002868;
    height: 366px;
  }
  #main-site-search .form-element {
    margin-bottom: 0;
  }
}
#main-site-search--desktop {
  display: none;
}

.desktop-main-nav {
  display: none;
  background-color: #010e30;
}
.desktop-main-nav--wrapper {
  color: #fff;
}
.desktop-main-nav--wrapper ul {
  padding: 24px 0 0 0;
}
.desktop-main-nav--wrapper ul li {
  list-style: none;
  margin-bottom: 0;
  display: block;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.desktop-main-nav--wrapper ul li .inner-wrapper ul li a {
  text-transform: none;
}
.desktop-main-nav--wrapper ul li svg {
  fill: #fff;
  margin-left: -20px;
  pointer-events: none;
}
.desktop-main-nav--wrapper ul li.active svg {
  transform: rotate(180deg);
}
.desktop-main-nav--wrapper ul li.active .inner-wrapper {
  align-items: center;
}
.desktop-main-nav--wrapper ul li.active .inner-wrapper ul {
  opacity: 1;
}
.desktop-main-nav--wrapper ul li a {
  color: inherit;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-right: 40px;
}
.desktop-main-nav--wrapper ul li a:hover {
  color: #ffc627;
}
.desktop-main-nav--wrapper ul li a:hover::after {
  height: 4px;
}
.desktop-main-nav--wrapper ul li .inner-wrapper {
  background-color: #010e30;
  display: none;
  z-index: 100;
  flex-basis: 100%;
  position: relative;
  overflow-y: hidden;
  z-index: 1;
}
.desktop-main-nav--wrapper ul li .inner-wrapper .flex-wrapper {
  display: flex;
  flex-direction: row;
  z-index: 200;
  position: relative;
  align-items: flex-start;
}
.desktop-main-nav--wrapper ul li .inner-wrapper ul {
  position: relative;
}
.desktop-main-nav--wrapper ul li .inner-wrapper ul li {
  display: block;
  margin-bottom: 15px;
}
.desktop-main-nav--wrapper ul li .inner-wrapper ul li a {
  display: block;
  padding: 5px 0;
}
.desktop-main-nav--wrapper ul li .inner-wrapper ul li a:hover, .desktop-main-nav--wrapper ul li .inner-wrapper ul li a:focus {
  box-shadow: 0 0px 0 #010e30, 0 2px 0 #ffc627;
}
.desktop-main-nav .mobile-main-nav--action-links {
  background-color: #002868;
  padding: 20px 0;
  width: calc(100% + 68px);
  margin-left: -34px;
}
.desktop-main-nav .mobile-main-nav--action-links ul {
  padding: 0 34px;
  margin: 0;
}
.desktop-main-nav .mobile-main-nav--action-links ul li {
  list-style: none;
  margin-bottom: 20px;
}
.desktop-main-nav .mobile-main-nav--action-links ul li:last-of-type {
  margin-bottom: 0;
}
.desktop-main-nav .mobile-main-nav--action-links ul li a {
  text-decoration: none;
  color: #fff;
}
.desktop-main-nav .mobile-action-nav ul {
  padding: 30px 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.desktop-main-nav .mobile-action-nav ul::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #002868;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.desktop-main-nav .mobile-action-nav ul li {
  margin-bottom: 0;
  padding: 0;
}
.desktop-main-nav .mobile-action-nav ul li button {
  padding: 0;
  background-color: transparent;
}
.desktop-main-nav .mobile-action-nav ul li button svg {
  margin-left: 0;
}
.desktop-main-nav .mobile-search-toggle.active svg,
.desktop-main-nav .mobile-tools-toggle.active svg,
.desktop-main-nav .mobile-account-toggle.active svg {
  fill: #ffc627;
}
.desktop-main-nav #mobile-site-search {
  display: none;
  background-color: #002868;
  padding: 20px;
  width: calc(100% + 68px);
  margin-left: -34px;
}
.desktop-main-nav #mobile-site-search .form-element {
  margin-bottom: 0;
}
.desktop-main-nav #mobile-site-search .form-element input {
  background-color: #fff;
  color: #333;
}
.desktop-main-nav #mobile-site-search .form-element label span {
  color: #333;
  position: relative;
  z-index: 2;
}
.desktop-main-nav #mobile-site-search .form-element button {
  margin-top: 20px;
  width: 100%;
  background-color: #010e30;
}
.desktop-main-nav .mobile-tools-wrapper,
.desktop-main-nav .mobile-account-wrapper {
  background-color: #ffc627;
  width: calc(100% + 68px);
  margin-left: -34px;
  padding-bottom: 10px;
  display: none;
}
.desktop-main-nav .mobile-tools-wrapper ul,
.desktop-main-nav .mobile-account-wrapper ul {
  padding: 30px 30px 0 30px;
}
.desktop-main-nav .mobile-tools-wrapper ul li.heading,
.desktop-main-nav .mobile-account-wrapper ul li.heading {
  color: #333;
  font-size: 1.5rem;
}
.desktop-main-nav .mobile-tools-wrapper ul li:last-of-type,
.desktop-main-nav .mobile-account-wrapper ul li:last-of-type {
  margin-bottom: 0;
}
.desktop-main-nav .mobile-tools-wrapper ul li:not(.heading):hover, .desktop-main-nav .mobile-tools-wrapper ul li:not(.heading):active, .desktop-main-nav .mobile-tools-wrapper ul li:not(.heading):focus,
.desktop-main-nav .mobile-account-wrapper ul li:not(.heading):hover,
.desktop-main-nav .mobile-account-wrapper ul li:not(.heading):active,
.desktop-main-nav .mobile-account-wrapper ul li:not(.heading):focus {
  background-color: #fff;
  color: #333;
}
.desktop-main-nav .mobile-tools-wrapper ul li a,
.desktop-main-nav .mobile-account-wrapper ul li a {
  color: #333;
  display: block;
}

.desktop-main-nav--wrapper ul li.active .featured-block {
  opacity: 1;
}
.desktop-main-nav--wrapper ul li.active .featured-block .link {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 7px 0 #010e30, 0 8px 0 #fff;
}
.desktop-main-nav--wrapper ul li.active .featured-block .link:hover, .desktop-main-nav--wrapper ul li.active .featured-block .link:focus {
  box-shadow: 0 4px 0 #010e30, 0 5px 0 #ffc627;
}
.desktop-main-nav--wrapper ul li.active .featured-block .link::after {
  display: none;
}
.desktop-main-nav--wrapper ul li.active .featured-block a::after,
.desktop-main-nav--wrapper ul li.active .featured-block a::before {
  display: none;
}

@media (min-width: 768px) {
  .desktop-main-nav--wrapper ul li {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .desktop-main-nav--wrapper ul li {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 992px) {
  #main-site-search--desktop {
    background-color: #002868;
    display: none;
    justify-content: center;
    align-items: center;
    height: 227px;
  }
  .desktop-main-nav {
    display: block;
    position: relative;
    z-index: 100;
  }
  .desktop-main-nav--wrapper {
    display: flex;
    height: 70px;
    align-items: center;
  }
  .desktop-main-nav--wrapper ul > li {
    line-height: 70px;
  }
  .desktop-main-nav--wrapper ul > li a {
    padding-right: 0;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    display: block;
  }
  .desktop-main-nav--wrapper ul > li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #ffc627;
    bottom: 0;
  }
  .desktop-main-nav--wrapper ul > li a.link--prime {
    display: inline-block;
  }
  .desktop-main-nav--wrapper ul > li a.link--prime::after {
    display: none;
  }
  .desktop-main-nav--wrapper ul {
    margin: 0 0 0 -20px;
    padding: 0;
  }
  .desktop-main-nav--wrapper ul li {
    display: inline-block;
    margin-bottom: 0;
  }
  .desktop-main-nav--wrapper ul li svg {
    display: none;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper {
    padding: 0 1000em;
    margin: 0 -1000em;
    opacity: 0;
    display: none;
    max-height: 0;
    position: absolute;
    width: auto;
    top: 70px;
    padding-bottom: 20px;
    transition: max-height 0.7s ease-in-out;
    overflow-y: hidden;
    z-index: 100;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper .flex-wrapper {
    opacity: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 2.5px;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul {
    margin-top: -50px;
    background-color: #ffc627;
    padding: 40px 30px;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul li {
    line-height: 1.5rem;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul li:last-of-type {
    margin-bottom: 0;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul li a {
    padding-left: 20px;
    padding-right: 20px;
    color: #333;
    box-shadow: 0 0 0;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul li a:hover {
    background-color: #fff;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul li a::after {
    display: none;
  }
  .desktop-main-nav--wrapper ul li.trigger-enter .inner-wrapper {
    display: block;
  }
  .desktop-main-nav--wrapper ul li.trigger-enter a::after {
    height: 4px;
  }
  .desktop-main-nav--wrapper ul li.trigger-enter-active .inner-wrapper {
    opacity: 1;
    max-height: 1500px;
    z-index: 2;
  }
  .desktop-main-nav--wrapper ul li.trigger-enter-active .inner-wrapper .flex-wrapper {
    margin-left: 0;
    opacity: 1;
  }
  .desktop-main-nav .mobile-main-nav--action-links,
.desktop-main-nav .mobile-action-nav,
.desktop-main-nav #mobile-site-search,
.desktop-main-nav .mobile-tools-wrapper {
    display: none;
  }
  .featured-block {
    max-width: 306px;
    padding: 26px;
    flex: 1 1 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-left: 60px;
    position: relative;
  }
  .featured-block a::after {
    display: none;
  }
  .featured-block.left {
    right: unset;
    left: calc(-100% - 60px);
    transform: translateX(100%);
    margin-right: calc(-50% + 0px);
    margin-left: 0;
  }
  .featured-block .h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
  }
  .featured-block::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    box-shadow: inset -1px -1px #6cb2e2, inset 1px 1px #6cb2e2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  .featured-block__image {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    margin-bottom: 20px;
  }
  .featured-block .link {
    text-transform: none;
    align-self: start;
    margin-top: 30px;
  }
}
@media (min-width: 1400px) {
  .desktop-main-nav--wrapper ul li {
    padding-left: 14px;
    padding-right: 14px;
  }
  .desktop-main-nav--wrapper ul li .inner-wrapper ul li a {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.tray--accordion {
  padding-top: 70px;
  padding-bottom: 70px;
  width: 100%;
}
.tray--accordion h2,
.tray--accordion .h2 {
  text-align: center;
  margin-bottom: 70px;
}
.tray--accordion .accordion {
  border-bottom: solid 1px #ffc627;
}
.tray--accordion .accordion__button {
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Lora", serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  min-height: 64px;
  background-color: transparent;
  padding: 0 16px;
  position: relative;
  border-top: solid 1px #ffc627;
  width: 100%;
  cursor: pointer;
  color: #333;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
}
.tray--accordion .accordion__button .icon--wrapper {
  margin-left: auto;
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.tray--accordion .accordion__button .icon--wrapper .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tray--accordion .accordion__button.active .icon--wrapper .icon--expand-s {
  opacity: 0;
}
.tray--accordion .accordion__content {
  font-size: 1.125rem;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1.5rem;
  display: none;
}
.tray--accordion .accordion__content.show {
  display: block;
}
.tray--accordion .accordion__content p:last-of-type {
  padding-bottom: 0;
}

.background-color--prime-blue .accordion, .background-color--navy .accordion, .background-color--black .tray--accordion .accordion {
  border-bottom: solid 1px #fff;
}
.background-color--prime-blue .accordion__button, .background-color--navy .accordion__button, .background-color--black .tray--accordion .accordion__button {
  color: #fff;
  border-top: solid 1px #fff;
}
.background-color--prime-blue .accordion__button svg.icon, .background-color--navy .accordion__button svg.icon, .background-color--black .tray--accordion .accordion__button svg.icon {
  fill: #fff;
}

svg path {
  fill: inherit;
}

@media (min-width: 992px) {
  .tray--accordion .accordion__button {
    padding: 15px 0;
  }
  .tray--accordion .accordion__content {
    padding-right: 100px;
    padding-left: 0;
  }
}
.tray--accordion--to-tab .accordion .button-row {
  display: none;
}
@media (min-width: 992px) {
  .tray--accordion--to-tab .accordion {
    border-bottom: 0;
  }
  .tray--accordion--to-tab .accordion .button-row {
    display: flex;
    border-bottom: 1px solid #ffc627;
    height: 48px;
    justify-content: space-around;
    margin-bottom: 40px;
  }
  .tray--accordion--to-tab .accordion .button-row button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    background-color: transparent;
    font-family: "Lora", serif;
    font-weight: 500;
    color: #002868;
    cursor: pointer;
  }
  .tray--accordion--to-tab .accordion .button-row button:not(.inactive) {
    background-color: #ffc627;
  }
  .tray--accordion--to-tab .accordion .button-row button:hover {
    background-color: #ffc627;
  }
  .tray--accordion--to-tab .accordion__button {
    display: none;
  }
  .tray--accordion--to-tab .accordion__content {
    padding: 0;
  }
}
.pre-header {
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: "Vito-Bold";
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tray--text-header {
  padding: 75px 0;
}
.tray--text-header .button-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.tray--text-header .button-row .button {
  width: 100%;
  text-align: center;
}
.tray--text-header .button-row .button + .button {
  margin-top: 20px;
}
.tray--text-header--title-header-block {
  text-align: center;
}
.tray--text-header--title-header-block .button-row {
  margin-top: 48px;
  justify-content: center;
}
.tray--text-header--cta-header-block {
  text-align: center;
  padding: 60px 0 136px 0;
}
.tray--text-header--cta-header-block .text-block {
  display: block;
  margin-top: 32px;
}
.tray--text-header--cta-header-block .text-block p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.tray--text-header--body-copy {
  padding: 30px 0 48px 0;
}
.tray--text-header--body-copy + .tray--text-header--body-copy {
  padding: 0 0 48px 0;
  margin-top: -12px;
}

@media (min-width: 992px) {
  .tray--text-header {
    padding: 105px 0 110px 0;
  }
  .tray--text-header h2,
.tray--text-header .h2 {
    font-size: 3.75rem;
    letter-spacing: -0.0625rem;
    line-height: 4.5rem;
  }
  .tray--text-header .text-block {
    margin-top: 0;
  }
  .tray--text-header .button-row {
    margin-top: 70px;
  }
  .tray--text-header .button-row .button {
    width: auto;
  }
  .tray--text-header .button-row .button + .button {
    margin-left: 20px;
    margin-top: 0;
  }
  .tray--text-header--title-header-block .button-row {
    margin-top: 24px;
  }
  .tray--text-header--cta-header-block {
    text-align: left;
    padding: 97px 0 108px 0;
  }
  .tray--text-header--cta-header-block h1 + p {
    margin-top: 16px;
  }
  .tray--text-header--cta-header-block .col-lg-8 {
    padding-right: 55px;
  }
  .tray--text-header--cta-header-block .col-lg-3 {
    padding-left: 15px;
  }
  .tray--text-header--body-copy {
    padding: 30px 0 48px 0;
  }
}
.tray--text-block-cta {
  padding: 75px 0;
}
.tray--text-block-cta .button-row {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 48px;
}
.tray--text-block-cta .button-row .button {
  margin-bottom: 20px;
}
.tray--text-block-cta .button-row .button:last-ot-type {
  margin-bottom: 0;
}
.tray--text-block-cta .text-block {
  margin-top: 32px;
}
.tray--text-block-cta .text-block p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .tray--text-block-cta {
    padding: 125px 0;
  }
  .tray--text-block-cta .button-row {
    margin-top: 0;
  }
  .tray--text-header--cta-header-block .button-row {
    margin-top: 30px;
  }
}
.tray--comp-card {
  padding: 70px 0;
}
.tray--comp-card .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.background-color--prime-blue .card-list .card__kicker, .background-color--black .card-list .card__kicker, .background-color--navy .card-list .card__kicker {
  color: #fff;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
}
.card-list .card {
  flex: 1 1 100%;
  margin-bottom: 60px;
  display: none;
}
.card-list .card__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 300px;
  margin-bottom: 24px;
}
.card-list .card__image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
.card-list .card__kicker {
  text-transform: uppercase;
  font-family: "Vito-Bold";
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 1px;
  color: #010101;
}
.card-list .card h3,
.card-list .card .text-block {
  margin-bottom: 24px;
}
.card-list .card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 33px;
}
.card-list .card__icon-wrapper .icon-container {
  width: 120px;
  height: 120px;
  background-color: #ffc627;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}
.card-list .card .modal-trigger {
  background-color: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.card-header {
  text-align: center;
  margin-bottom: 48px;
}
.card-header h2,
.card-header .h2 {
  margin-bottom: 24px;
}

.button--show-less {
  display: none;
  margin-left: 30px;
}

.card-wrapper .card a {
  align-self: flex-start;
}

@media (min-width: 992px) {
  .card-wrapper {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .card-wrapper .card {
    flex: 0 1 calc(33.333333% - 60px);
    margin-left: 30px;
    margin-right: 30px;
  }
  .card-wrapper .card:nth-child(3n) {
    margin-bottom: 60px;
  }
  .tray--comp-card--narrow .card-wrapper .card {
    flex: 0 1 calc(50% - 60px);
  }
}
.swiper {
  width: 100%;
  height: auto;
}

.tray--profile {
  padding-top: 70px;
  padding-bottom: 70px;
}
.tray--profile.background-color--prime-blue, .tray--profile.background-color--navy {
  padding-top: 70px;
}
.tray--profile .profile-header {
  text-align: center;
  margin-bottom: 48px;
}
.tray--profile .profile-header h1 {
  margin-bottom: 24px;
}
.tray--profile .profile-header p:last-of-type {
  margin-bottom: 0;
}
.tray--profile .swiper-slide,
.tray--profile .swiper-slide a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 73.5px;
  text-align: center;
}
.tray--profile .swiper-slide h3,
.tray--profile .swiper-slide .h3,
.tray--profile .swiper-slide a h3,
.tray--profile .swiper-slide a .h3 {
  margin-bottom: 4px;
}
.tray--profile .swiper-slide .title,
.tray--profile .swiper-slide a .title {
  font-size: 1rem;
  font-family: "Vito-Bold";
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tray--profile .profile-image {
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 220.3px;
  margin-bottom: 32px;
  background-color: #525252;
  background: repeating-linear-gradient(-45deg, #4f5053, #4f5053 2px, #525354 2px, #525354 10px);
}
.tray--profile .profile-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.tray--profile .profile-image::before {
  content: "";
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 0 #ffc627;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.tray--profile .swiper-slide a:hover {
  color: #333;
}
.tray--profile .swiper-slide a:hover .profile-image::before {
  box-shadow: inset 0 0 0 5px #ffc627;
}
.tray--profile.background-color--prime-blue .swiper-slide a:hover {
  color: #fff;
}
.tray--profile .line {
  width: 81px;
  height: 2px;
  background-color: #002868;
  margin-bottom: 24px;
}
.tray--profile .swiper-button-prev,
.tray--profile .swiper-button-next {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #fff;
  box-shadow: 0 0 6px #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
  font-family: "icomoon";
  margin-left: 5px;
  margin-right: 5px;
  color: #333;
}
.tray--profile .swiper-button-prev::after,
.tray--profile .swiper-button-next::after {
  display: none;
}
.tray--profile .swiper-button-prev::before,
.tray--profile .swiper-button-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tray--profile .swiper-button-prev:hover,
.tray--profile .swiper-button-next:hover {
  background-color: #ffc627;
  color: #002868;
}
.tray--profile .swiper-button-prev {
  left: 0;
}
.tray--profile .swiper-button-prev::before {
  left: 22px;
  content: "\e901";
}
.tray--profile .swiper-button-next {
  right: 0;
}
.tray--profile .swiper-button-next::before {
  right: 16px;
  content: "\e900";
}

[class^=background-color--] .line {
  background-color: #ffc627;
}

@media (min-width: 992px) {
  .tray--profile {
    padding-top: 70px;
  }
  .tray--profile .swiper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.tray--prefooter--social-media {
  padding: 103px 0;
  text-align: center;
}
.tray--prefooter--social-media .header h2,
.tray--prefooter--social-media .header .h2 {
  margin-bottom: 32px;
}
.tray--prefooter--social-media .text-block {
  margin-bottom: 32px;
}
.tray--prefooter--social-media .text-block p:last-of-type {
  padding-bottom: 0;
}
.tray--prefooter--social-media .social-links {
  justify-content: center;
  border-bottom: 0;
  padding: 0;
  margin-top: 32px;
}
.tray--prefooter--social-media .social-links li {
  list-style: none;
}
.tray--prefooter--social-media + footer {
  margin-top: 30px;
}

.tray--prefooter--cta {
  padding: 120px 0;
  text-align: center;
}
.tray--prefooter--cta .header h2,
.tray--prefooter--cta .header .h2 {
  margin-bottom: 32px;
}
.tray--prefooter--cta .text-block {
  margin-bottom: 32px;
}
.tray--prefooter--cta .text-block p:last-of-type {
  padding-bottom: 0;
}
.tray--prefooter--cta .button-row {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.tray--prefooter--cta .button-row .button {
  width: 100%;
  margin-bottom: 20px;
}
.tray--prefooter--cta + footer {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .tray--prefooter--cta .button-row {
    flex-wrap: no-wrap;
    justify-content: center;
  }
  .tray--prefooter--cta .button-row .button {
    width: auto;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .tray--prefooter--cta .button-row .button:last-of-type {
    margin-right: 0;
  }
}
.tray--prefooter--form-cta {
  padding-top: 75px;
  padding-bottom: 75px;
}
.tray--prefooter--form-cta .header {
  margin-bottom: 72px;
}
.tray--prefooter--form-cta address {
  font-style: normal;
}
.tray--prefooter--form-cta address .contact {
  margin-bottom: 32px;
}
.tray--prefooter--form-cta address .contact:last-of-type {
  margin-bottom: 0;
}
.tray--prefooter--form-cta address .contact__header {
  font-family: "Vito-Bold";
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 1rem;
}
.tray--prefooter--form-cta address .contact a[href^="mailto:"] {
  display: block;
  margin-top: 30px;
}
.tray--prefooter--form-cta .prefooter--form-cta--left {
  padding-bottom: 64px;
  max-width: 250px;
}
.tray--prefooter--form-cta .prefooter--form-cta--right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 64px;
  padding-bottom: 80px;
}
.tray--prefooter--form-cta .form-header {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
.tray--prefooter--form-cta .form-header h3,
.tray--prefooter--form-cta .form-header .h3 {
  margin-bottom: 8px;
}
.tray--prefooter--form-cta .form-header .text-block {
  margin-bottom: 24px;
}
.tray--prefooter--form-cta form {
  width: calc(100% + 5px);
  margin-left: -2.5px;
  padding-left: 8.33333333%;
  padding-right: 8.33333333%;
}
.tray--prefooter--form-cta + footer {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .tray--prefooter--form-cta {
    padding: 120px 0;
  }
  .tray--prefooter--form-cta .header {
    margin-top: 6px;
  }
  .tray--prefooter--form-cta .form-wrapper {
    padding-top: 90px;
    padding-bottom: 110px;
  }
  .tray--prefooter--form-cta form {
    margin-left: 0;
    max-width: 470px;
    padding-left: 0;
    padding-right: 0;
  }
}
.tray--alert {
  background-color: #eff2f9;
}
.tray--alert a {
  color: #bb0042;
}

.alert {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 35px;
  color: #bb0042;
  position: relative;
}
.alert__header {
  font-size: 1.5rem;
  font-family: "Vito-Bold";
  padding-right: 40px;
  margin-bottom: 5px;
}
.alert__message {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 400;
  padding-right: 40px;
}
.alert button {
  position: absolute;
  top: 20px;
  right: 20px;
  margin-left: auto;
  cursor: pointer;
  background-color: transparent;
  flex-shrink: 0;
}
.alert button svg {
  fill: #bb0042;
}
.alert a.link {
  display: inline;
  align-self: flex-start;
  margin-top: 10px;
  font-size: 1rem;
  box-shadow: 0 2px 0 #bb0042, 0 3px 0 #fff;
}
.alert a.link:hover, .alert a.link:focus {
  box-shadow: 0 0px 0 #bb0042, 0 2px 0 #ffc627;
}

@media (min-width: 992px) {
  .alert {
    flex-direction: row;
    align-items: center;
    padding: 10.5px 20px 10.5px 0;
  }
  .alert__header {
    font-size: 1.875rem;
    margin-right: 25px;
    margin-bottom: 0;
    padding-right: 0;
    flex: 0 0 auto;
  }
  .alert__message {
    font-size: 1.125rem;
    margin-right: 15px;
    padding-right: 0;
    flex: 0 1 auto;
    margin-left: auto;
    margin-right: auto;
  }
  .alert button {
    position: relative;
    top: unset;
    right: unset;
  }
  .alert a.link {
    color: #bb0042;
    display: inline-flex;
    position: relative;
    width: unset;
    height: unset;
    font-size: 1rem;
    flex: 0 0 auto;
    margin-top: 3px;
    margin-right: 10px;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .alert__header {
    flex: 1 0 auto;
  }
  .alert__message {
    flex: 0 1 auto;
    margin-left: 30px;
    margin-right: 30px;
  }
  .alert a.link {
    flex: 1 0 auto;
    margin-left: 20px;
  }
}
.in-line-nav__trigger {
  background-color: #ffc627;
  color: #002868;
  display: flex;
  align-items: center;
  text-indent: 20px;
  cursor: pointer;
  width: 100%;
}
.in-line-nav__trigger::before {
  background-color: #002868;
}
.in-line-nav__trigger .mobile {
  display: flex;
}
.in-line-nav__trigger .mobile span {
  margin-left: 10px;
}
.in-line-nav__trigger .desktop {
  display: none;
}
.in-line-nav__trigger span {
  align-items: center;
}
.in-line-nav__trigger .icon {
  width: 14px;
  height: 15px;
}
.in-line-nav__trigger .icon--close-s {
  opacity: 0;
}
.in-line-nav__trigger .icon--caret-s-s {
  width: 16px;
  height: 8px;
}
.in-line-nav__trigger svg {
  fill: #002868;
  position: absolute;
}
.in-line-nav__trigger:hover, .in-line-nav__trigger:focus, .in-line-nav__trigger:active {
  color: #fff;
}
.in-line-nav__trigger:hover svg, .in-line-nav__trigger:focus svg, .in-line-nav__trigger:active svg {
  fill: #fff;
}
.in-line-nav__trigger.active {
  color: #fff;
}
.in-line-nav__trigger.active svg {
  fill: #fff;
}
.in-line-nav__trigger.active .icon--close-s {
  opacity: 1;
}
.in-line-nav__trigger.active .icon--hamburger-s {
  opacity: 0;
}
.in-line-nav__trigger.active .mobile .icon--caret-s-s {
  transform: rotate(180deg);
}
.in-line-nav__nav {
  display: none;
  position: relative;
  z-index: 100;
}
.in-line-nav__nav ul {
  padding: 22px 25px 37px 27px;
  margin: 0;
  width: 100%;
  list-style: none;
}
.in-line-nav__nav ul li {
  width: auto;
  font-size: 0.875rem;
}
.in-line-nav__nav ul li a {
  position: relative;
}
.in-line-nav__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0) !important;
}
.in-line-nav__nav ul li a:hover, .in-line-nav__nav ul li a:focus {
  color: #fff;
}
.in-line-nav__nav ul li a:hover::after, .in-line-nav__nav ul li a:focus::after {
  background-color: white !important;
  bottom: -4px;
}

@media (min-width: 992px) {
  .in-line-nav__trigger {
    width: auto;
  }
  .in-line-nav__trigger .mobile {
    display: none;
  }
  .in-line-nav__trigger .desktop {
    display: flex;
  }
  .in-line-nav__nav {
    position: absolute;
  }
  .in-line-nav__nav ul {
    padding: 24px 200px 37px 49px;
  }
}
.side-nav {
  margin-bottom: 20px;
}
.side-nav__header {
  line-height: 1.5rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 4px solid #ffc627;
  padding-bottom: 16px;
  margin-bottom: 16px;
  display: none;
}
.side-nav__nav {
  background-color: #002868;
  display: none;
}
.side-nav__nav ul {
  padding: 0 10px;
  margin: 0;
  list-style: none;
  font-family: "Vito-Bold";
  font-size: 1rem;
  line-height: 1.125rem;
}
.side-nav__nav ul > li {
  font-weight: 800;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.side-nav__nav ul > li:last-of-type {
  margin-bottom: 20px;
}
.side-nav__nav ul > li a {
  color: #fff;
  box-shadow: 0 0 0;
}
.side-nav__nav ul > li a:hover, .side-nav__nav ul > li a:focus {
  box-shadow: 0 3px 0 #002868, 0 5px 0 #fff;
}
.side-nav__nav ul button {
  padding: 0;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.side-nav__nav ul button svg {
  margin-left: auto;
  fill: #fff;
}
.side-nav__nav ul button span {
  position: relative;
  color: #fff;
  box-shadow: 0 0 0;
}
.side-nav__nav ul button span::after {
  height: 0;
}
.side-nav__nav ul button.active svg {
  transform: rotate(180deg);
}
.side-nav__nav ul button.active span {
  position: relative;
}
.side-nav__nav ul button.active span::after {
  content: "";
  left: 0;
  bottom: -4px;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffc627;
}
.side-nav__nav ul li ul {
  display: none;
  padding-top: 16px;
}
.side-nav__nav ul li ul button.active span::after {
  display: none;
}
.side-nav__nav ul li ul li {
  font-weight: 500;
  padding-left: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 0;
  font-family: "Vito-Regular";
}
.side-nav__nav ul li ul li:last-of-type {
  border-bottom: 0;
}
.side-nav__nav ul li ul li a {
  font-size: 1rem;
  line-height: 1.125rem;
}
.side-nav__nav ul li ul li a:hover, .side-nav__nav ul li ul li a:focus {
  box-shadow: 0 3px 0 #002868, 0 5px 0 #fff;
}
.side-nav__nav ul li ul button.active span {
  box-shadow: 0 0px 0 #fff, 0 2px 0 #ffc627;
}

@media (min-width: 992px) {
  .side-nav {
    margin-bottom: 0;
  }
  .side-nav__header {
    display: block;
  }
  .side-nav .in-line-nav__trigger {
    display: none;
  }
  .side-nav__nav {
    background-color: transparent;
    display: block;
  }
  .side-nav__nav ul {
    padding: 0 0 0 10px;
  }
  .side-nav__nav ul > li {
    border-bottom: 1px solid #979797;
  }
  .side-nav__nav ul > li a {
    color: #333;
    box-shadow: 0 3px 0 #fff, 0 7px 0 #fff;
  }
  .side-nav__nav ul > li a:hover {
    box-shadow: 0 0px 0 #fff, 0 2px 0 #ffc627;
  }
  .side-nav__nav ul > li ul button.active span {
    box-shadow: 0 0px 0 #fff, 0 2px 0 #ffc627;
  }
  .side-nav__nav ul button svg {
    fill: #333;
  }
  .side-nav__nav ul button span {
    color: #333;
    box-shadow: 0 3px 0 #fff, 0 7px 0 #fff;
  }
  .side-nav__nav ul button span:hover {
    box-shadow: 0 0px 0 #fff, 0 2px 0 #ffc627;
  }
}
.modal-fade {
  background-color: rgba(51, 51, 51, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.modal-fade.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1400;
}

.modal {
  position: fixed;
  top: calc(50% - 30px);
  left: 50%;
  margin-top: 0px;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  max-height: calc(100% - 80px);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.modal .button + .button {
  margin-top: 0;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
  top: 50%;
  max-height: calc(100vh - 210px);
  z-index: 1600;
}
.modal button {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.modal button svg {
  fill: #002868;
}
.modal__body {
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
  width: 80%;
  overflow-y: auto;
  max-height: calc(100vh - 335px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal__body p:last-of-type {
  padding-bottom: 0;
}
.modal__body::-webkit-scrollbar {
  display: none;
}

@media (min-width: 992px) {
  .modal__body {
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    width: 70%;
  }
}
table,
thead,
tbody,
th,
td,
tr {
  display: block;
}

table {
  border: solid 1px #5b616b;
  border-collapse: collapse;
}

thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

tr {
  min-height: 42px;
}

tbody tr:nth-child(odd) {
  background: #002868;
  color: #fff;
}

td {
  border: none;
  border-bottom: 1px solid #5b616b;
  border-right: 1px solid #5b616b;
  position: relative;
  display: flex;
  padding: 10px 20px;
}
td .mobile-colum-header,
td span {
  flex: 1 1 50%;
}

@media (min-width: 992px) {
  table {
    display: table;
  }
  table thead {
    display: table-header-group;
    color: #fff;
    min-height: 40px;
    text-align: left;
  }
  table thead tr {
    background-color: #002868;
    position: unset;
    top: unset;
    left: unset;
  }
  table thead tr th {
    padding: 10px 0 10px 20px;
  }
  table tr {
    display: table-row;
  }
  table th,
table td {
    display: table-cell;
  }
  table tbody {
    display: table-row-group;
  }
  table tbody tr:nth-child(odd) {
    background-color: #fff;
    color: #333;
  }
  table {
    width: 100%;
  }
  td {
    display: table-cell;
  }
  td .mobile-colum-header {
    display: none;
  }
}
.announcement {
  padding: 40px;
  border-radius: 4px;
}
.announcement__header {
  margin-bottom: 24px;
}
.announcement h2,
.announcement .h2 {
  font-size: 1.875rem;
}
.announcement p {
  font-size: 1.125rem;
}
.announcement p:last-of-type {
  padding-bottom: 0;
}
.announcement .button {
  margin-top: 48px;
}

@media (min-width: 992px) {
  .announcement h2,
.announcement .h2 {
    font-size: 2.5rem;
  }
}
.pagination {
  padding-top: 30px;
  padding-bottom: 30px;
}
.pagination ul {
  display: flex;
  list-style: none;
}
.pagination ul li {
  padding-left: 16px;
  padding-right: 16px;
}
.pagination ul li:first-of-type {
  padding-left: 0;
}
.pagination ul li:last-of-type {
  margin-right: 0;
}
.pagination ul li.hidden {
  display: none;
}
.pagination ul li a {
  position: relative;
}
.pagination ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: transparent;
  transition: opacity 300ms, transform 300ms;
}
.pagination ul li a:hover, .pagination ul li a:focus {
  color: #333;
}
.pagination ul li a:hover::after, .pagination ul li a:focus::after {
  background-color: #ffc627;
  height: 0.15em;
  height: 2px;
  transform: translate3d(0, -0.1em, 0);
}
.pagination ul li.current a {
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
}
.pagination ul li.current a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffc627;
  transition: opacity 300ms, transform 300ms;
}
.pagination ul li.current a:hover, .pagination ul li.current a:focus {
  color: #333;
}
.pagination ul li.current a:hover::after, .pagination ul li.current a:focus::after {
  background-color: #ffc627;
  height: 0.15em;
  height: 2px;
  transform: translate3d(0, -0.1em, 0);
}

.swiper--slideshow,
.swiper--slideshow-wrapper,
.swiper--video {
  width: 100%;
  height: 485px;
  position: relative;
  overflow: hidden;
}
.swiper--slideshow .swiper-slide,
.swiper--slideshow-wrapper .swiper-slide,
.swiper--video .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-color: #525252;
  background: repeating-linear-gradient(-45deg, #4f5053, #4f5053 2px, #525354 2px, #525354 10px);
}
.swiper--slideshow .swiper-slide img,
.swiper--slideshow-wrapper .swiper-slide img,
.swiper--video .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.swiper--slideshow .swiper-slide::before, .swiper--slideshow .swiper-slide::after,
.swiper--slideshow-wrapper .swiper-slide::before,
.swiper--slideshow-wrapper .swiper-slide::after,
.swiper--video .swiper-slide::before,
.swiper--video .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  width: 135px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.swiper--slideshow .swiper-slide::after,
.swiper--slideshow-wrapper .swiper-slide::after,
.swiper--video .swiper-slide::after {
  left: unset;
  right: 0;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.swiper--slideshow .swiper-button-prev,
.swiper--slideshow .swiper-button-next,
.swiper--slideshow-wrapper .swiper-button-prev,
.swiper--slideshow-wrapper .swiper-button-next,
.swiper--video .swiper-button-prev,
.swiper--video .swiper-button-next {
  width: 24px;
  height: 24px;
}
.swiper--slideshow .swiper-button-prev svg,
.swiper--slideshow .swiper-button-next svg,
.swiper--slideshow-wrapper .swiper-button-prev svg,
.swiper--slideshow-wrapper .swiper-button-next svg,
.swiper--video .swiper-button-prev svg,
.swiper--video .swiper-button-next svg {
  fill: #fff;
}
.swiper--slideshow .swiper-button-prev::after,
.swiper--slideshow .swiper-button-next::after,
.swiper--slideshow-wrapper .swiper-button-prev::after,
.swiper--slideshow-wrapper .swiper-button-next::after,
.swiper--video .swiper-button-prev::after,
.swiper--video .swiper-button-next::after {
  display: none;
}
.swiper--slideshow .swiper-button-next,
.swiper--slideshow-wrapper .swiper-button-next,
.swiper--video .swiper-button-next {
  right: 49px;
}
.swiper--slideshow .swiper-button-prev,
.swiper--slideshow-wrapper .swiper-button-prev,
.swiper--video .swiper-button-prev {
  left: 49px;
}
.swiper--slideshow .swiper-pagination,
.swiper--slideshow-wrapper .swiper-pagination,
.swiper--video .swiper-pagination {
  text-align: left;
  left: 20px;
  bottom: 164px;
  z-index: 3;
}
.swiper--slideshow .swiper-pagination .swiper-pagination-bullet,
.swiper--slideshow-wrapper .swiper-pagination .swiper-pagination-bullet,
.swiper--video .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 5px;
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0);
}
.swiper--slideshow .swiper-pagination .swiper-pagination-bullet:first-of-type,
.swiper--slideshow-wrapper .swiper-pagination .swiper-pagination-bullet:first-of-type,
.swiper--video .swiper-pagination .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}
.swiper--slideshow .swiper-pagination .swiper-pagination-bullet:last-of-type,
.swiper--slideshow-wrapper .swiper-pagination .swiper-pagination-bullet:last-of-type,
.swiper--video .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.swiper--slideshow .swiper-pagination .swiper-pagination-bullet-active,
.swiper--slideshow-wrapper .swiper-pagination .swiper-pagination-bullet-active,
.swiper--video .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.swiper--slideshow .text-block,
.swiper--slideshow-wrapper .text-block,
.swiper--video .text-block {
  color: #fff;
  position: absolute;
  z-index: 4;
  max-width: 280px;
  left: 20px;
  top: 334px;
}

@media (min-width: 992px) {
  .swiper--slideshow .swiper-pagination,
.swiper--slideshow .text-block,
.swiper--slideshow-wrapper .swiper-pagination,
.swiper--slideshow-wrapper .text-block {
    left: 70px;
  }
}
.breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.breadcrumbs ul li {
  font-size: 0.875rem;
  text-align: left;
  align-items: center;
  display: none;
}
.breadcrumbs ul li:first-of-type {
  display: flex;
}
.breadcrumbs ul li a {
  display: block;
  margin-left: 20px;
  margin-right: 0;
  position: relative;
  padding: 0.1em 0;
  text-decoration: none;
  color: #333;
  border: 0;
  display: inline;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: capitalize;
  line-height: 1rem;
}
.breadcrumbs ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  left: 0;
  bottom: -3px;
  transition: all 0.25s ease-in-out;
}
.breadcrumbs ul li a:hover, .breadcrumbs ul li a:focus {
  color: #333;
  outline: none;
}
.breadcrumbs ul li a:hover::after, .breadcrumbs ul li a:focus::after {
  bottom: 0;
  height: 2px;
  background-color: #ffc627;
}
.breadcrumbs ul li:first-of-type a {
  padding-left: 0;
}
.breadcrumbs ul li:last-of-type::after {
  display: none;
}
.breadcrumbs ul li button {
  background-color: transparent;
  cursor: pointer;
}
.breadcrumbs ul li button:hover, .breadcrumbs ul li button:focus {
  color: #ffc627;
}
.breadcrumbs ul li::before {
  margin-top: 5px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-image: url("../icons/caret-w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 7px;
  margin-left: -10px;
  margin-right: 10px;
}
.breadcrumbs .more-links {
  position: absolute;
  z-index: 100;
  margin-left: 47px;
  display: none;
}
.breadcrumbs .more-links--wrapper {
  padding: 20px;
}
.breadcrumbs .more-links--wrapper ul {
  flex-direction: column;
  width: 100%;
  padding-top: 20px;
}
.breadcrumbs .more-links--wrapper ul li {
  display: block;
  text-align: left;
  align-self: flex-start;
}
.breadcrumbs .more-links--wrapper ul li a {
  color: #fff;
  padding: 0;
  position: relative;
}
.breadcrumbs .more-links--wrapper ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0);
}
.breadcrumbs .more-links--wrapper ul li a:hover, .breadcrumbs .more-links--wrapper ul li a:focus {
  color: #fff;
}
.breadcrumbs .more-links--wrapper ul li a:hover::after, .breadcrumbs .more-links--wrapper ul li a:focus::after {
  background-color: white;
  bottom: 0px;
}

.tray--breadcrumb-inline-nav-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.tray--breadcrumb-inline-nav-wrapper .breadcrumbs {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .breadcrumbs ul li {
    display: flex;
  }
  .breadcrumbs ul li::after {
    margin-top: 5px;
    margin-left: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-image: url("../icons/caret-e.svg");
    width: 5px;
    height: 7px;
  }
  .breadcrumbs ul li::before {
    display: none;
  }
  .tray--breadcrumb-inline-nav-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .tray--breadcrumb-inline-nav-wrapper .breadcrumbs {
    margin-left: 30px;
    margin-bottom: 0;
  }
  .tray--breadcrumb-inline-nav-wrapper .breadcrumbs li {
    margin-bottom: 0;
  }
}
.video-wrapper {
  padding-top: 107px;
  padding-bottom: 107px;
}
.video-wrapper > .video__header {
  margin-top: -50px;
  margin-bottom: 42px;
}

.video--container--iframe #video-controls {
  pointer-events: none;
}

.video--container,
.video--container--iframe {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.video--container video,
.video--container iframe,
.video--container--iframe video,
.video--container--iframe iframe {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.video--container.stand-alone,
.video--container--iframe.stand-alone {
  aspect-ratio: 16/9;
}
.video--container.stand-alone #video-controls,
.video--container--iframe.stand-alone #video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faux-poster {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-size: cover;
  overflow: hidden;
  opacity: 1;
  transition-delay: 0s, 0s;
}
.faux-poster .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.video-description {
  margin-top: 10px;
}

#video-controls {
  position: absolute;
  bottom: 100px;
  right: 80px;
  z-index: 1000;
}

.play-pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 101px;
  height: 101px;
  background-color: transparent;
  cursor: pointer;
  z-index: 1000;
}
.play-pause.active .play {
  opacity: 0.3;
}

.play,
.pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.play svg,
.pause svg {
  transform: scale(50%);
  fill: #fff;
}

.pause {
  opacity: 0;
}

.faux-poster:hover::after, .faux-poster:focus::after {
  color: #333;
}
.active .faux-poster {
  opacity: 0;
  height: 0;
  transition-delay: 0s, 800ms;
}

.video--container:hover .play-pause.active .pause,
.video--container--iframe:hover .play-pause.active .pause {
  opacity: 1;
}

@media (min-width: 992px) {
  .tray--hero .video--container,
.tray--hero .video--container--iframe {
    height: 759px;
  }
  .tray--hero--landing-n-section-page .video--container,
.tray--hero--landing-n-section-page .video--container--iframe {
    height: 595px;
  }
  .tray--hero__video .video--container,
.tray--hero__video .video--container--iframe {
    min-height: unset;
    height: unset;
  }
  .tray--hero--alt .video--container,
.tray--hero--alt .video--container--iframe {
    height: 465px;
  }
  .tray--hero--alt .video--container video,
.tray--hero--alt .video--container iframe,
.tray--hero--alt .video--container--iframe video,
.tray--hero--alt .video--container--iframe iframe {
    transform: translateY(-25%);
  }
  .video-wrapper {
    margin-bottom: 0;
  }
  .play,
.pause {
    width: 101px;
    height: 101px;
  }
  .play .icon--video,
.pause .icon--video {
    width: 101px;
    height: 101px;
  }
  .play svg,
.pause svg {
    transform: scale(47.52%);
  }
  .play-pause.active .play {
    opacity: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .play,
.pause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 33px;
    height: 33px;
  }
  .play .icon--video,
.pause .icon--video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 33px;
    height: 33px;
  }
}
.swiper-video-outter {
  position: relative;
}
.swiper-video-outter .swiper--video {
  height: auto;
}
.swiper-video-outter .swiper--video .video-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.swiper-video-outter .swiper-button-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-video-outter .swiper-button-prev,
.swiper-video-outter .swiper-button-next {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #fff;
  box-shadow: 0 0 6px #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
  font-family: "icomoon";
  color: #333;
}
.swiper-video-outter .swiper-button-prev::after,
.swiper-video-outter .swiper-button-next::after {
  display: none;
}
.swiper-video-outter .swiper-button-prev::before,
.swiper-video-outter .swiper-button-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-video-outter .swiper-button-prev:hover,
.swiper-video-outter .swiper-button-next:hover {
  background-color: #ffc627;
  color: #002868;
}
.swiper-video-outter .swiper-button-prev::before {
  left: 22px;
  content: "\e901";
}
.swiper-video-outter .swiper-button-next::before {
  right: 16px;
  content: "\e900";
}

.swiper--video {
  width: 100%;
}
.swiper--video .swiper-slide {
  background: none;
}
.swiper--video .swiper-slide::before, .swiper--video .swiper-slide::after {
  display: none;
}
.swiper--video .swiper-slide .video-description {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.background-color--prime-blue svg.icon.icon--carret-button-w,
.background-color--prime-blue svg.icon.icon--carret-button-e, .background-color--navy svg.icon.icon--carret-button-w,
.background-color--navy svg.icon.icon--carret-button-e, .background-color--black svg.icon.icon--carret-button-w,
.background-color--black svg.icon.icon--carret-button-e {
  fill: #333;
}

@media (min-width: 992px) {
  .swiper--video .swiper-slide .video-description {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .swiper-video-outter .swiper-button-prev,
.swiper-video-outter .swiper-button-next {
    position: absolute;
  }
  .swiper-video-outter .swiper-button-prev {
    left: -70px;
  }
  .swiper-video-outter .swiper-button-next {
    right: -70px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .swiper-button-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
  }
  .swiper-video-outter .swiper-button-prev,
.swiper-video-outter .swiper-button-next {
    position: relative;
    width: 55px;
    height: 55px;
    left: unset;
    right: unset;
  }
  .swiper-video-outter .swiper-button-prev::after,
.swiper-video-outter .swiper-button-next::after {
    display: none;
  }
  .swiper-button-prev {
    margin-right: 10px;
  }
  .swiper-button-next {
    margin-left: 10px;
  }
}
.event-row {
  padding-top: 43px;
  padding-bottom: 80px;
}
.event-row__header, .event-row__body, .event-row__footer {
  display: flex;
}
.event-row__header {
  flex-direction: column;
}
.event-row__header .line {
  margin-top: 27px;
  margin-bottom: 48px;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.event-row__header button {
  display: none;
}
.event-row__body {
  flex-direction: column;
}
.event-row__body .card--date.hide {
  display: none;
}
.event-row__footer {
  justify-content: center;
}

[class^=background-color--]:not(.background-color--white) .event-row__header .line,
[class*=background-color--]:not(.background-color--white) .event-row__header .line {
  background-color: #fff;
}

@media (min-width: 992px) {
  .event-row {
    padding-top: 80px;
  }
  .event-row__header, .event-row__body {
    flex-direction: row;
  }
  .event-row__header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .event-row__header button {
    display: block;
  }
  .event-row__header .title {
    flex: 1 0 auto;
  }
  .event-row__header .button {
    flex: 1 0 auto;
  }
  .event-row__header .line {
    flex: 1 1 100%;
    margin: 0 30px;
  }
  .event-row__body {
    flex-wrap: wrap;
    margin-bottom: 0;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .event-row__footer {
    display: none;
  }
}
.tray--large-promo {
  position: relative;
}
.tray--large-promo__wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
}
.tray--large-promo__image {
  width: 123%;
  margin-left: -11.5%;
  position: relative;
  margin-bottom: 54px;
}
.tray--large-promo__image::before {
  position: absolute;
  content: "";
  width: 122px;
  height: 122px;
  background-color: #ffc627;
  top: -21px;
  right: 0;
  z-index: -1;
}
.tray--large-promo h2 {
  margin-bottom: 22px;
}
.tray--large-promo p:last-of-type {
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .tray--large-promo__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .tray--large-promo__image {
    width: 570px;
    height: auto;
    margin-left: unset;
    margin-bottom: 0;
  }
  .tray--large-promo__image::before {
    right: -21px;
  }
  .tray--large-promo__text-block {
    width: 500px;
  }
  .tray--large-promo.with-background .tray--large-promo__wrapper {
    position: relative;
  }
  .tray--large-promo.with-background .tray--large-promo__wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: #eff2f9;
    z-index: -1;
  }
  .tray--large-promo.with-background::before {
    content: "";
    position: absolute;
    width: 75%;
    max-width: 1500px;
    height: 100%;
    background-color: #eff2f9;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .tray--large-promo.with-background .tray--large-promo__image::before {
    right: unset;
    left: -21px;
    top: unset;
    bottom: -21px;
  }
  .tray--large-promo.align-right .tray--large-promo__wrapper {
    flex-direction: row-reverse;
  }
  .tray--large-promo.align-right .tray--large-promo__wrapper::before {
    right: unset;
    left: 0;
  }
  .tray--large-promo.align-right .tray--large-promo__image::before {
    top: unset;
    bottom: -21px;
  }
  .tray--large-promo.align-right.with-background::before {
    left: 0;
    right: unset;
  }
  .tray--large-promo.align-right.with-background .tray--large-promo__image::before {
    left: unset;
    right: -21px;
    bottom: -21px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .tray--large-promo__text-block {
    padding-left: 60px;
  }
  .tray--large-promo.align-right .tray--large-promo__text-block {
    padding-left: 0px;
    padding-right: 60px;
  }
}
.tray--gallery {
  padding-top: 70px;
  padding-bottom: 70px;
}
.tray--gallery .gallery-title {
  margin-bottom: 30px;
}
.tray--gallery .gallery-wrapper {
  display: flex;
  flex-direction: column;
}
.tray--gallery .gallery-item {
  position: relative;
  margin-bottom: 30px;
}
.tray--gallery .gallery-item__text-block {
  background-color: #002868;
  color: #fff;
  padding: 16px 25px 40px 25px;
}
.tray--gallery .gallery-item__text-block_icon {
  margin-left: -10px;
  margin-top: -10px;
  margin-bottom: 10px;
}
.tray--gallery .gallery-item__text-block_icon svg {
  transform: scale(0.5);
  fill: #ffc627;
}
.tray--gallery.background-color--prime-blue .gallery-item__text-block, .tray--gallery.background-color--navy .gallery-item__text-block {
  padding: 16px 0 40px 0;
}

@media (min-width: 992px) {
  .tray--gallery {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .tray--gallery .gallery-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .tray--gallery .gallery-item {
    overflow: hidden;
    flex: 0 1 calc(33.333333% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  .tray--gallery .gallery-item__text-block {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    left: 0;
    background-color: rgba(0, 40, 104, 0.9);
    padding: 30px;
  }
  .tray--gallery .gallery-item__text-block_text {
    margin-top: auto;
  }
  .tray--gallery .gallery-item:hover .gallery-item__text-block {
    opacity: 1;
  }
  .tray--gallery.background-color--prime-blue .gallery-item__text-block, .tray--gallery.background-color--navy .gallery-item__text-block {
    padding: 30px;
  }
}
.tray--profile-group .card-list .card {
  display: flex;
  flex-direction: column;
}
.tray--profile-group .card-list .card h3 {
  margin-bottom: 8px;
}
.tray--profile-group .card-list .card__title {
  font-size: 1rem;
  font-family: "Vito-Bold";
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tray--profile-group .card-list .card .text-block {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.tray--profile-group .card-list .card .link {
  margin-right: auto;
  width: auto;
}

#wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu {
  position: absolute;
  top: 25%;
  right: 0;
  background: #fff;
  width: 355px;
  height: auto;
  transform: translate3d(355px, 0, 0);
  transition: transform 0.35s;
  z-index: 100;
  padding: 46px 0;
}
.menu label {
  cursor: pointer;
}
.menu label.menu-toggle {
  position: absolute;
  right: 355px;
  width: 48px;
  height: 500px;
  line-height: 0px;
  display: block;
  padding: 0;
  text-indent: -9999px;
  background-color: #002868;
}
.menu label.menu-toggle::after {
  position: absolute;
  width: 25px;
  height: 25px;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  background: #002868 url("../icons/caret-n--white.svg") 50% 50%/25px 25px no-repeat;
}
.menu ul {
  padding: 45px 0;
  margin: 0;
  list-style: none;
}
.menu ul li {
  line-height: 1.5rem;
  padding-left: 30px;
  padding-right: 30px;
}
.menu ul li.header,
.menu ul li label,
.menu ul li a {
  display: block;
  text-decoration: none;
  color: #333;
}
.menu ul li.header {
  font-size: 1.875rem;
  line-height: 2rem;
  font-family: "Lora", serif;
  font-weight: 700;
  margin-bottom: 30px;
}
.menu ul li > label {
  position: relative;
}
.menu ul li > label img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.menu ul li > label:hover img {
  opacity: 1;
}
.menu .image {
  margin-bottom: 40px;
}
.menu .menu {
  top: 45px;
  height: 100%;
}
.menu .menu ul {
  padding-top: 0;
}
.menu .menu label.menu-toggle {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  width: auto;
  height: 28px;
  background: none;
  position: relative;
  transform: none;
  right: unset;
  text-indent: unset;
  line-height: 1;
  color: #002868;
  padding-left: 30px;
  text-decoration: underline;
  margin-bottom: 20px;
}
.menu .menu label.menu-toggle img {
  margin-right: 10px;
}
.menu .menu label.menu-toggle::after {
  background: none;
}
.menu .menu .menu {
  top: 0;
}

.menu-checkbox {
  display: none;
}

/* fade in checked menu */
.menu-checkbox:checked + .menu {
  transform: translate3d(0, 0, 0);
}
.menu-checkbox:checked + .menu label.menu-toggle::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hero-borders::before, .hero-borders::after {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 232px;
  height: 383px;
  z-index: 10;
  border: solid #ffc627;
  border-width: 30px 0 0 30px;
  pointer-events: none;
}
.hero-borders::after {
  width: 30px;
  height: 194px;
  left: unset;
  right: -30px;
  top: 110px;
}

.tray--hero {
  width: 100%;
  position: relative;
}
.tray--hero .tray--hero__background {
  width: calc(100% - 60px);
  min-height: 442px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-left: 30px;
}
.tray--hero .tray--hero__background_footer {
  position: absolute;
  bottom: 0;
  height: 60px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.tray--hero .hero--wavy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 70px;
  height: 100%;
}
.tray--hero .hero--wavy img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: unset;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: left top;
     object-position: left top;
}
.tray--hero .icon--caret-large {
  margin-top: 52px;
}
.tray--hero--landing-n-section-page .hero-borders::after, .tray--hero--alt .hero-borders::after {
  display: none;
}

@media (min-width: 992px) {
  .tray--hero .tray--hero__background {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 82px);
    margin-left: 41px;
  }
  .tray--hero .container {
    margin-top: -220px;
    z-index: 4;
    position: relative;
  }
  .tray--hero .container .col-10 {
    min-height: 189px;
    position: relative;
    padding-top: 70px;
  }
  .tray--hero .container .col-10::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #fff;
    top: 0;
    right: 100%;
    pointer-events: none;
  }
  .tray--hero .hero--wavy {
    width: 265px;
  }
  .tray--hero.tray--hero--home-page .hero-borders::before, .tray--hero.tray--hero--home-page .hero-borders::after {
    top: -41px;
    left: -41px;
    border-width: 41px 0 0 41px;
  }
  .tray--hero.tray--hero--home-page .hero-borders::after {
    left: unset;
    top: 220px;
    right: -41px;
    width: 41px;
    height: 300px;
  }
  .hero-borders::after {
    right: -41px;
  }
}
@media (min-width: 1400px) {
  .hero-borders::before {
    width: 90%;
  }
}
.tray--hero--home-page {
  padding-top: 30px;
}
.tray--hero--home-page .tray--hero__background {
  min-height: 442px;
}
.tray--hero--home-page .hero-borders::before {
  height: 338px;
  top: -30px;
}
.tray--hero__video .tray--hero__background {
  min-height: unset;
}
.tray--hero .container {
  pointer-events: none;
}
.tray--hero .container .col-10 {
  pointer-events: auto;
}
.tray--hero .video--container {
  border-radius: 0;
}

@media (min-width: 992px) {
  .tray--hero--home-page {
    padding-top: 41px;
  }
  .tray--hero--home-page .tray--hero__background {
    min-height: 759px;
  }
  .tray--hero--home-page .hero-borders::before {
    height: 646px;
  }
  .tray--hero--home-page .hero-borders::after {
    height: 382px;
  }
}
.tray--hero--landing-n-section-page {
  padding-top: 41px;
  margin-bottom: 30px;
}
.tray--hero--landing-n-section-page .tray--hero__background {
  min-height: 425px;
  width: 100%;
  margin-left: 0;
}
.tray--hero--landing-n-section-page .hero-borders::before {
  border-width: 41px 0 0 0;
  width: 80%;
  top: -41px;
}
.tray--hero--landing-n-section-page .hero-borders::after {
  display: none;
}
.tray--hero__video .tray--hero__background {
  min-height: unset;
}

@media (min-width: 992px) {
  .tray--hero--landing-n-section-page {
    padding-top: 41px;
  }
  .tray--hero--landing-n-section-page .tray--hero__background {
    min-height: 595px;
    width: calc(100% - 82px);
    margin-left: 41px;
  }
  .tray--hero--landing-n-section-page .hero-borders::before {
    height: 506px;
    left: -41px;
    max-width: 1240px;
    border-width: 41px 0 0 41px;
  }
  .tray--hero--landing-n-section-page .hero-borders::after {
    display: block;
    border-width: 0 41px 0 0;
    height: 241px;
  }
  .tray--hero__video .tray--hero__background {
    min-height: unset;
  }
}
@media (min-width: 1400px) {
  .tray--hero--landing-n-section-page .hero-borders::before {
    max-width: unset;
    width: 90%;
  }
  .tray--hero--landing-n-section-page .hero-borders::after {
    height: 300px;
  }
}
.tray--hero--alt {
  padding-top: 30px;
}
.tray--hero--alt .tray--hero__background {
  min-height: 425px;
}
.tray--hero--alt .hero-borders::before {
  height: 30px;
  top: -30px;
  left: 0;
  width: 80%;
}
.tray--hero--alt .hero-borders::after {
  display: none;
}
.tray--hero--alt .tray--hero__background {
  width: 100%;
  margin-left: 0;
}
.tray--hero--alt .hero--wavy {
  width: 133px;
}
.tray--hero__video .tray--hero__background {
  min-height: unset;
}

@media (min-width: 1400px) {
  .tray--hero--alt {
    padding-top: 41px;
  }
  .tray--hero--alt .tray--hero__background {
    min-height: 465px;
    width: calc(100% - 82px);
    margin-left: 41px;
  }
  .tray--hero--alt .hero-borders::before {
    height: 506px;
    left: -41px;
    width: 90%;
    border-width: 41px 0 0 41px;
    top: -41px;
  }
  .tray--hero--alt .hero-borders::after {
    top: 161px;
    border-width: 0 41px 0 0;
    display: block;
  }
}
.tray--content--signature {
  position: relative;
  overflow: hidden;
}
.tray--content--signature__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 123%;
  margin-left: -11.5%;
  padding: 0 11.5% 125px 11.5%;
}
.tray--content--signature__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 65%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tray--content--signature__text-left {
  width: 123%;
  margin-left: -11.5%;
  padding: 97px 11.5% 125px 11.5%;
}
.tray--content--signature__text-block-wrapper {
  position: relative;
}
.tray--content--signature__text-block {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 82px 11.5%;
}
.tray--content--signature__text-block_icon {
  position: absolute;
  background-color: #002868;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: -65px;
}
.tray--content--signature__text-block_icon svg {
  fill: #6cb2e2;
}
.tray--content--signature__text-block .button {
  margin-top: 45px;
}
.tray--content--signature .overlay-lines {
  background-image: url("../img/wavy--lg--white.svg");
  background-position: center;
  background-size: fill;
  background-repeat: repeat;
  height: 100%;
  position: absolute;
  width: 123%;
  top: 35%;
  left: -11.5%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 992px) {
  .tray--content--signature__wrapper {
    flex-direction: row;
    width: calc(100% + 200px);
    margin-left: -100px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .tray--content--signature__image {
    width: 65%;
    height: 100%;
  }
  .tray--content--signature__text-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 100%;
    padding-right: 20%;
    padding-left: 180px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tray--content--signature__text-block-wrapper {
    width: 50%;
    margin-left: -10%;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .tray--content--signature__text-block {
    width: calc(100% - 100px);
    padding: 80px 90px;
  }
  .tray--content--signature__text-block_icon {
    top: 0;
    left: -65px;
  }
  .tray--content--signature .overlay-lines {
    background-position: center;
    background-size: cover;
    top: 0;
    left: 55%;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
.tray--profile {
  position: relative;
  overflow: hidden;
}
.tray--profile__wrapper {
  display: flex;
  flex-direction: column;
}
.tray--profile__image {
  position: relative;
  top: 0;
  left: 0;
  height: 65%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.tray--profile__text-left {
  position: relative;
  z-index: 1;
  width: 123%;
  margin-left: -11.5%;
}
.tray--profile .highlight-text {
  font-size: 2.5rem;
  line-height: 3rem;
  font-family: "Vito-Bold";
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  top: calc(0% - 40px);
  width: calc(100% - 100px);
  left: -30px;
  text-transform: uppercase;
  z-index: 3;
}
.tray--profile__text_block {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-top: 67px;
  padding-bottom: 67px;
  margin-top: -50px;
}
.tray--profile__text_block p {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  line-height: 2rem;
}
.tray--profile__text_block p:last-of-type {
  padding-bottom: 64px;
}
.tray--profile__text_block .quotes {
  margin-top: 20px;
  margin-left: 155px;
  margin-bottom: 54px;
}

.background-color--prime-blue.tray--profile p,
.background-color--navy.tray--profile p {
  color: #333;
}

@media (min-width: 992px) {
  .tray--profile__image {
    position: absolute;
    width: 65%;
    height: 100%;
  }
  .tray--profile__image.top {
    background-position: top;
  }
  .tray--profile__image.bottom {
    background-position: bottom;
  }
  .tray--profile__image.left {
    background-position: left;
  }
  .tray--profile__image.right {
    background-position: right;
  }
  .tray--profile__image.center {
    background-position: center;
  }
  .tray--profile__wrapper {
    flex-direction: row;
    align-items: center;
  }
  .tray--profile__text-left, .tray--profile__text-block {
    flex: 0 0 50%;
  }
  .tray--profile__text-left {
    flex: 0 0 calc(50% + 119px);
  }
  .tray--profile__text-left {
    width: 100%;
    position: relative;
  }
  .tray--profile .highlight-text {
    position: absolute;
    top: 0%;
    transform: rotate(-90deg);
    transform-origin: top right;
    left: -50%;
    margin-left: -200px;
    width: auto;
  }
  .tray--profile__text_block {
    padding-left: 100px;
    margin-left: -67px;
    position: relative;
    margin-top: 0;
  }
  .tray--profile__text_block .quotes {
    position: absolute;
    margin-top: 0;
    margin-left: unset;
    margin-bottom: unset;
    top: -100px;
    right: -20px;
  }
}
@media (min-width: 1400px) {
  .tray--profile .highlight-text {
    margin-left: -150px;
  }
}
.tray--stats {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../img/wavy--xxl.svg");
  background-size: auto;
  background-position: center;
}
.tray--stats__header {
  font-size: 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 62px;
}
.tray--stats__wrapper {
  display: flex;
  flex-direction: column;
}
.tray--stats__wrapper .stat {
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 75px;
}
.tray--stats__wrapper .stat__number {
  font-size: 3.75rem;
  line-height: 3.75rem;
  font-family: "Vito-Bold";
  color: #ffc627;
  margin-bottom: 24px;
}
.tray--stats__wrapper .stat__text {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.tray--stats .center-item {
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .tray--stats {
    padding-top: 143px;
    padding-bottom: 203px;
  }
  .tray--stats__header {
    padding-left: 70px;
    padding-right: 70px;
    letter-spacing: -1px;
  }
  .tray--stats__wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .tray--stats__wrapper .stat {
    width: 33.3333%;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 0;
  }
  .tray--stats__wrapper .stat__header {
    font-size: 3.75rem;
    line-height: 4.375rem;
  }
  .tray--stats__wrapper .stat__number {
    font-size: 5rem;
    line-height: 6.25rem;
    margin-bottom: 30px;
  }
  .tray--stats__wrapper .stat__text {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .tray--stats__wrapper.has-4 .stat {
    width: 25%;
  }
}
.tray--program-finder {
  background-color: #002868;
  padding-top: 30px;
  padding-bottom: 50px;
}
.tray--program-finder h1 {
  margin-bottom: 48px;
}
.tray--program-finder h2 {
  margin-bottom: 28px;
}
.tray--program-finder__text-block {
  margin-top: 30px;
}
.tray--program-finder__text-block .link {
  margin-top: 48px;
}
.tray--program-finder .link {
  display: inline-block;
  margin-top: 28px;
}
.tray--program-finder .container {
  padding: 60px 30px;
  box-shadow: inset -30px 0 0 #002868, inset 30px 0 0 #002868;
}
.tray--program-finder .search-wrapper {
  padding-bottom: 190px;
  width: calc(100% - 2px);
  margin-top: 88px;
  margin-left: 2px;
}
.tray--program-finder #program-finder-search {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 17px;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.15);
  margin-bottom: 35px;
  margin-top: -40px;
}
.tray--program-finder #program-finder-search button {
  margin-top: 15px;
}
.tray--program-finder #program-finder-search .form-element {
  margin-bottom: 0;
}
.tray--program-finder #program-finder-search .form-element span {
  font-size: 0;
}
.tray--program-finder #program-finder-search .form-element label,
.tray--program-finder #program-finder-search .button {
  width: 100%;
  height: 50px;
}
.tray--program-finder #program-finder-search .button {
  background-color: #002868;
  color: #fff;
}
.tray--program-finder .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tray--program-finder .slider-controls .resutls {
  margin-right: 25px;
}
.tray--program-finder .slider-controls .buttons {
  display: flex;
  flex-direction: row;
}
.tray--program-finder .slider-controls .buttons .program-finder-button {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #fff;
  box-shadow: 0 0 6px #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
}
.tray--program-finder .slider-controls .buttons .program-finder-button--next, .tray--program-finder .slider-controls .buttons .program-finder-button--prev {
  font-family: "icomoon";
  margin-left: 5px;
  margin-right: 5px;
  color: #333;
}
.tray--program-finder .slider-controls .buttons .program-finder-button--next::before, .tray--program-finder .slider-controls .buttons .program-finder-button--prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tray--program-finder .slider-controls .buttons .program-finder-button--next::before {
  right: 16px;
  content: "\e900";
}
.tray--program-finder .slider-controls .buttons .program-finder-button--prev::before {
  left: 22px;
  content: "\e901";
}
.tray--program-finder .slider-controls .buttons .program-finder-button:hover {
  background-color: #ffc627;
  color: #002868;
}
.tray--program-finder .center-item {
  margin-top: 35px;
}

.swiper--program-finder {
  padding-right: 30px;
  margin-right: -27px;
  margin-top: -150px;
  overflow: hidden;
}
.swiper--program-finder .swiper-slide .ratio--1-1 {
  margin-bottom: 18px;
}

.swiper-notification {
  font-size: 0;
}

@media (min-width: 992px) {
  .tray--program-finder {
    padding-top: 50px;
  }
  .tray--program-finder__text-block {
    margin-top: 0;
    margin-bottom: 80px;
  }
  .tray--program-finder .container {
    box-shadow: 0 0 0;
    padding: 60px;
  }
  .tray--program-finder h1 {
    margin-bottom: 60px;
  }
  .tray--program-finder .search-wrapper {
    padding-top: 75px;
    padding-bottom: 190px;
    padding-left: 45px;
    padding-right: 100px;
    width: calc(100% + 120px);
    margin-left: -60px;
    margin-top: -25px;
  }
  .tray--program-finder #program-finder-search {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 0;
  }
  .tray--program-finder #program-finder-search .form-element {
    width: 100%;
  }
  .tray--program-finder #program-finder-search .form-element label {
    width: calc(100% - 30px);
  }
  .tray--program-finder #program-finder-search .button {
    width: auto;
    margin-top: 0;
  }
  .tray--program-finder .slider-controls {
    height: 100%;
  }
  .tray--program-finder .slider-controls .resutls {
    margin-right: 25px;
    margin-left: auto;
  }
  .swiper--program-finder {
    padding-right: 60px;
    margin-right: -60px;
    margin-top: -120px;
    overflow: hidden;
  }
}
.tray--deadline {
  padding-top: 106px;
  padding-bottom: 106px;
}
.tray--deadline__header {
  text-align: center;
}
.tray--deadline__header h2 {
  margin-bottom: 24px;
}
.tray--deadline .deadline-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: 77px;
}

@media (min-width: 992px) {
  .tray--deadline .deadline-item-wrapper {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
.tray--event-feature {
  padding-top: 41px;
  padding-bottom: 41px;
}
.tray--event-feature .link {
  margin-top: 30px;
}
.tray--event-feature .date-block {
  font-size: 2.5rem;
  line-height: 3.75rem;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  z-index: 2;
  color: #fff;
  background-color: #010e30;
  font-family: "Vito-Bold";
  transform: rotate(-90deg);
  transform-origin: bottom right;
  right: -1px;
  top: 21px;
}
.tray--event-feature__image {
  width: calc(100% + 35px);
  margin-left: -35px;
  max-width: 570px;
  min-height: 498px;
  position: relative;
  overlow: hidden;
}
.tray--event-feature__image img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.tray--event-feature .text-block {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 80px;
  padding-bottom: 40px;
  border: solid 2px #6cb2e2;
  margin-top: -26px;
  position: relative;
  z-index: 3;
}
.tray--event-feature .text-block_eyebrow {
  margin-bottom: 30px;
}
.tray--event-feature .text-block h2 {
  margin-bottom: 44px;
}
.tray--event-feature .text-block p:last-of-type {
  margin-bottom: 48px;
}
.tray--event-feature[class^=background-color--]:not(.background-color--navy) .text-block, .tray--event-feature[class*=background-color--]:not(.background-color--navy) .text-block {
  border-color: #6cb2e2;
}

@media (min-width: 992px) {
  .tray--event-feature__image {
    margin-left: 0;
  }
  .tray--event-feature__wrapper {
    display: flex;
    align-items: center;
  }
  .tray--event-feature .date-block {
    padding: 30px 30px 40px 30px;
    top: -38px;
  }
  .tray--event-feature .text-block {
    padding-left: 200px;
    margin-top: unset;
    margin-left: -140px;
    padding-right: 80px;
    padding-top: 43px;
  }
  .tray--event-feature .text-block_eyebrow {
    margin-bottom: 23px;
  }
  .tray--event-feature .text-block h2 {
    margin-bottom: 32px;
  }
  .tray--event-feature .text-block p:last-of-type {
    margin-bottom: 30px;
  }
}
.tray--story-feature {
  padding-bottom: 41px;
}
.tray--story-feature .link {
  margin-top: 30px;
}
.tray--story-feature .date-block {
  font-size: 2.5rem;
  line-height: 3.75rem;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  z-index: 2;
  color: #fff;
  background-color: #010e30;
  font-family: "Vito-Bold";
  transform: rotate(-90deg);
  transform-origin: bottom right;
  right: -1px;
  top: 21px;
}
.tray--story-feature__image {
  width: calc(100% + 80px);
  margin-left: -40px;
}
.tray--story-feature .text-block {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 80px;
  padding-bottom: 40px;
  margin-top: -26px;
  position: relative;
  z-index: 3;
}
.tray--story-feature .text-block_eyebrow {
  margin-bottom: 30px;
}
.tray--story-feature .text-block h2 {
  margin-bottom: 44px;
}
.tray--story-feature .text-block p:last-of-type {
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .tray--story-feature {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .tray--story-feature__wrapper {
    display: flex;
    align-items: center;
  }
  .tray--story-feature .date-block {
    padding: 30px 30px 40px 30px;
    top: -38px;
  }
  .tray--story-feature__image {
    margin-top: -1px;
    width: 100%;
    margin-left: 0;
  }
  .tray--story-feature .text-block {
    padding-left: 0;
    margin-top: unset;
    padding-right: 80px;
    padding-top: 43px;
  }
  .tray--story-feature .text-block_eyebrow {
    margin-bottom: 23px;
  }
  .tray--story-feature .text-block h2 {
    margin-bottom: 32px;
  }
  .tray--story-feature .text-block p:last-of-type {
    margin-bottom: 30px;
  }
}
.story-row,
.news-row {
  padding-top: 43px;
  padding-bottom: 80px;
}
.story-row__header, .story-row__body, .story-row__footer,
.news-row__header,
.news-row__body,
.news-row__footer {
  display: flex;
}
.story-row__header,
.news-row__header {
  flex-direction: column;
}
.story-row__header .line,
.news-row__header .line {
  margin-top: 27px;
  margin-bottom: 48px;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.story-row__header button,
.news-row__header button {
  display: none;
}
.story-row__body,
.news-row__body {
  flex-direction: column;
}
.story-row__body .card--date.hide,
.news-row__body .card--date.hide {
  display: none;
}
.story-row__footer,
.news-row__footer {
  justify-content: center;
}
.story-row .pre-header,
.news-row .pre-header {
  font-size: 1rem;
  font-family: "Vito-Bold";
  text-transform: uppercase;
  margin-bottom: 16px;
}
.story-row .card--story .link,
.news-row .card--story .link {
  display: inline-block;
}

[class^=background-color--]:not(.background-color--white) .story-row__header .line,
[class^=background-color--]:not(.background-color--white) .news-row__header .line,
[class*=background-color--]:not(.background-color--white) .story-row__header .line,
[class*=background-color--]:not(.background-color--white) .news-row__header .line {
  background-color: #fff;
}

@media (min-width: 992px) {
  .story-row,
.news-row {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .story-row__header, .story-row__body,
.news-row__header,
.news-row__body {
    flex-direction: row;
  }
  .story-row__header,
.news-row__header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .story-row__header button,
.news-row__header button {
    display: block;
  }
  .story-row__header .title,
.news-row__header .title {
    flex: 1 0 auto;
  }
  .story-row__header .button,
.news-row__header .button {
    flex: 1 0 auto;
  }
  .story-row__header .line,
.news-row__header .line {
    flex: 1 1 100%;
    margin: 0 30px;
  }
  .story-row__body,
.news-row__body {
    flex-wrap: wrap;
    margin-bottom: 0;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .story-row__footer,
.news-row__footer {
    display: none;
  }
}
.tray--page-title {
  margin-top: 34px;
  margin-bottom: 34px;
}
.tray--page-title h1 + p {
  margin-top: 50px;
}
.tray--page-title .center-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (min-width: 992px) {
  .tray--page-title {
    margin-top: 64px;
    margin-bottom: 80px;
  }
}
.tray--profile-header {
  padding: 40px 0;
}
.tray--profile-header .profile-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tray--profile-header .profile-header-wrapper__text-block {
  display: flex;
  flex-direction: column;
}
.tray--profile-header .profile-header-wrapper__image {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
}
.tray--profile-header .profile-header-wrapper__extract {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 1px;
  font-family: "Vito-Bold";
  text-transform: uppercase;
}
.tray--profile-header .profile-header-wrapper .profile-header__name-block p {
  margin-top: -5px;
  margin-bottom: 20px;
}
.tray--profile-header .right-rail {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tray--profile-header .right-rail ul.flex {
  border-left: 2px solid #ffc627;
  padding-left: 20px;
}
.tray--profile-header .right-rail ul.flex li {
  flex-direction: row;
  flex-wrap: wrap;
}
.tray--profile-header .right-rail ul.flex li a {
  display: inline-block;
  text-transform: none;
  margin-bottom: 10px;
}
.tray--profile-header .right-rail ul.flex li a:last-of-type {
  margin-bottom: 0;
}
.tray--profile-header .right-rail ul.flex li svg {
  fill: #ffc627;
}

@media (min-width: 992px) {
  .tray--profile-header {
    padding: 70px 0;
  }
  .tray--profile-header .profile-header-wrapper {
    flex-direction: row;
  }
  .tray--profile-header .profile-header-wrapper__image {
    margin-right: 30px;
    max-width: 250px;
    margin-bottom: 0;
  }
  .tray--profile-header .right-rail {
    margin-left: -30px;
  }
}
.tray-flush--top {
  padding-top: 0;
}
.tray-flush--bottom {
  padding-bottom: 0;
}
.tray-flush--top-n-bottom {
  padding-top: 0;
  padding-bottom: 0;
}

.tray--profile-group.background-color--prime-blue {
  padding-top: 80px;
  padding-bottom: 20px;
}

.right-rail__header, .right-rail__sub-header {
  font-size: 1.875rem;
  line-height: 2rem;
  font-family: "Lora", serif;
  font-weight: 500;
  margin-bottom: 24px;
}
.right-rail__sub-header {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.right-rail__image {
  margin-bottom: 16px;
}
.right-rail address {
  font-style: normal;
}
.right-rail ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.right-rail ul li {
  margin-bottom: 15px;
}
.right-rail ul li img {
  align-self: flex-start;
}
.right-rail ul li .text {
  width: 87%;
  margin-left: auto;
}
.right-rail ul li .button {
  width: 100%;
  text-align: center;
}
.right-rail ul.flex li {
  display: flex;
}

.story-detail .tray--page-title {
  padding-bottom: 34px;
  position: relative;
  margin-bottom: 20px;
}
.story-detail .tray--page-title h1::after {
  content: "";
  display: block;
  position: absolute;
  width: 81px;
  height: 2px;
  background-color: #002868;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
}
.story-detail .tray--page-title h2 {
  margin-top: 45px;
}
.story-detail .story-image {
  margin-bottom: 30px;
}
.story-detail .story-image figcaption {
  font-size: 1rem;
  margin-top: 10px;
}
.story-detail a.link {
  padding: 0;
  margin-right: 0;
}

.tray--story-share__wrapper {
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #979797;
}
.tray--story-share__wrapper ul.share {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.tray--story-share__wrapper ul.share .header {
  font-family: "Vito-Bold";
}
.tray--story-share__wrapper ul.share svg:not(.icon--link) {
  transform: scale(0.521);
}
.tray--story-share__wrapper ul.share li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  width: 48px;
  height: 48px;
}

@media (min-width: 992px) {
  .story-detail .row > * {
    padding-left: 70px;
    padding-right: 70px;
  }
  .story-detail .story-image {
    width: 100%;
    margin-bottom: 30px;
  }
  .story-detail .story-image--small {
    max-width: 275px;
  }
  .story-detail .story-image--large {
    width: calc(100% + 106px);
    margin-left: -53px;
    margin-top: 40px;
  }
  .story-detail .story-image--left {
    float: left;
    margin-left: -53px;
    margin-right: 30px;
  }
  .story-detail .story-image--main {
    width: calc(100% + 160px);
    margin-left: -80px;
    margin-top: 0;
  }
  .story-card .card {
    max-width: 275px;
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 40px;
  }
  .story-card--left {
    float: left;
    margin-left: -53px;
    margin-right: 53px;
  }
  .story-card--right {
    float: right;
    margin-right: -53px;
    margin-left: 30px;
  }
  .story-detail .tray--story-share .row > * {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .tray--story-share {
    margin-bottom: 80px;
  }
  .tray--story-share__wrapper {
    flex-direction: row;
  }
  .tray--story-share__wrapper ul.share {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  .tray--story-share__wrapper .pub-date {
    margin-left: auto;
  }
}
footer {
  position: relative;
  margin-top: 100px;
}
footer::before {
  content: "";
  position: absolute;
  top: -47px;
  left: 0;
  background-image: url("https://res.cloudinary.com/whitman-college/image/upload/v1663875644/CSS/hill.svg");
  background-position: top center;
  width: 100%;
  height: 47px;
}

.footer-container {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 30px 0;
  grid-auto-flow: row;
  grid-template-areas: "column-1" "column-3" "column-2" "bottom";
}
.footer-container .column-1 {
  grid-area: column-1;
  margin-bottom: 18px;
}
.footer-container .column-3 {
  grid-area: column-3;
}
.footer-container .column-2 {
  grid-area: column-2;
}
.footer-container .bottom {
  grid-area: bottom;
}
.footer-container .footer-icon {
  width: 288px;
  display: block;
  margin-bottom: 8px;
}
.footer-container .address {
  display: flex;
}
.footer-container .address svg {
  display: none;
}
.footer-container .address + .address {
  margin-top: 28px;
}
.footer-container .button-row {
  display: flex;
  flex-direction: column;
}
.footer-container .button-row .button {
  margin-top: 10px;
  text-align: center;
}
.footer-container ul {
  padding: 0;
}
.footer-container ul li {
  list-style: none;
  margin-bottom: 11px;
}
.footer-container ul li a {
  font-size: 0.875rem;
}
.footer-container a {
  color: #fff;
  text-decoration: none;
}
.footer-container a:hover {
  color: #ffc627;
}
.footer-container .bottom {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
}
.footer-container .bottom .copywright {
  margin-bottom: 19px;
}
.footer-container .bottom .links a {
  margin-right: 30px;
}
.footer-container .bottom .links a:last-of-type {
  margin-right: 0;
}

@media (min-width: 992px) {
  .footer-container {
    padding: 93px 0 52px 0;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 1fr auto;
    gap: 180px 70px;
    grid-template-areas: "column-1 column-2 column-3" "bottom bottom bottom";
  }
  .footer-container .button-row {
    flex-direction: row;
    justify-content: flex-end;
  }
  .footer-container .button-row .button {
    margin-left: 23px;
    padding-left: 23px;
    padding-right: 23px;
  }
  .footer-container .button-row .button:first-of-type {
    margin-left: 0;
  }
  .footer-container .social-links {
    padding: 0;
    border-bottom: 0;
    margin-top: 52px;
    justify-content: flex-end;
  }
  .footer-container .social-links a {
    margin-left: 30px;
    margin-right: 0;
  }
  .footer-container .social-links a:first-of-type {
    margin-left: 0;
  }
  .footer-container .bottom {
    flex-direction: row;
  }
  .footer-container .bottom .copywright {
    margin-bottom: 0;
  }
  .footer-container .bottom .links {
    margin-left: auto;
  }
  .footer-container .bottom .links a {
    margin-right: 0;
    margin-left: 30px;
  }
  .footer-container .bottom .links a:first-of-type {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .footer-container .button-row {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=styles.css.map */