/*
Kris Khoury SASS Framework
*/
/* Reset CSS */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 45%;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 45%;
  }
}
.container {
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.interior .container .row-main {
  gap: 50px;
}
.container .row-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 1199.98px) {
  .container .row-main {
    padding: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.container .row-main .col-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.container .row .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 1);
          flex: 0 0 calc(100% / 12 * 1);
  max-width: calc(100% / 12 * 1);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 2);
          flex: 0 0 calc(100% / 12 * 2);
  max-width: calc(100% / 12 * 2);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 3);
          flex: 0 0 calc(100% / 12 * 3);
  max-width: calc(100% / 12 * 3);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 4);
          flex: 0 0 calc(100% / 12 * 4);
  max-width: calc(100% / 12 * 4);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 5);
          flex: 0 0 calc(100% / 12 * 5);
  max-width: calc(100% / 12 * 5);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 6);
          flex: 0 0 calc(100% / 12 * 6);
  max-width: calc(100% / 12 * 6);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 7);
          flex: 0 0 calc(100% / 12 * 7);
  max-width: calc(100% / 12 * 7);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 8);
          flex: 0 0 calc(100% / 12 * 8);
  max-width: calc(100% / 12 * 8);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 9);
          flex: 0 0 calc(100% / 12 * 9);
  max-width: calc(100% / 12 * 9);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 10);
          flex: 0 0 calc(100% / 12 * 10);
  max-width: calc(100% / 12 * 10);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 11);
          flex: 0 0 calc(100% / 12 * 11);
  max-width: calc(100% / 12 * 11);
  padding-left: 10px;
  padding-right: 10px;
}
.container .row .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 12);
          flex: 0 0 calc(100% / 12 * 12);
  max-width: calc(100% / 12 * 12);
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 576px) {
  .container .row .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .container .row .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .container .row .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .container .row .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .container .row .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .container .row .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .container .row .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .container .row .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .container .row .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .container .row .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .container .row .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .container .row .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
}
@media (min-width: 768px) {
  .container .row .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .container .row .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .container .row .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .container .row .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .container .row .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .container .row .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .container .row .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .container .row .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .container .row .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .container .row .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .container .row .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .container .row .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
}
@media (min-width: 992px) {
  .container .row .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .container .row .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .container .row .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .container .row .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .container .row .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .container .row .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .container .row .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .container .row .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .container .row .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .container .row .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .container .row .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .container .row .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
}
@media (min-width: 1200px) {
  .container .row .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .container .row .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .container .row .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .container .row .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .container .row .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .container .row .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .container .row .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .container .row .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .container .row .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .container .row .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .container .row .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .container .row .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
}
@media (min-width: 1400px) {
  .container .row .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .container .row .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .container .row .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .container .row .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .container .row .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .container .row .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .container .row .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .container .row .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .container .row .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .container .row .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .container .row .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .container .row .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
}
.container .row.no-gutter {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
}
.container .row.no-gutter > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-1.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 1);
          flex: 0 0 calc(100% / 12 * 1);
  max-width: calc(100% / 12 * 1);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-2.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 2);
          flex: 0 0 calc(100% / 12 * 2);
  max-width: calc(100% / 12 * 2);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-3.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 3);
          flex: 0 0 calc(100% / 12 * 3);
  max-width: calc(100% / 12 * 3);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-4.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 4);
          flex: 0 0 calc(100% / 12 * 4);
  max-width: calc(100% / 12 * 4);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-5.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 5);
          flex: 0 0 calc(100% / 12 * 5);
  max-width: calc(100% / 12 * 5);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-6.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 6);
          flex: 0 0 calc(100% / 12 * 6);
  max-width: calc(100% / 12 * 6);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-7.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 7);
          flex: 0 0 calc(100% / 12 * 7);
  max-width: calc(100% / 12 * 7);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-8.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 8);
          flex: 0 0 calc(100% / 12 * 8);
  max-width: calc(100% / 12 * 8);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-9.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 9);
          flex: 0 0 calc(100% / 12 * 9);
  max-width: calc(100% / 12 * 9);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-10.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 10);
          flex: 0 0 calc(100% / 12 * 10);
  max-width: calc(100% / 12 * 10);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-11.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 11);
          flex: 0 0 calc(100% / 12 * 11);
  max-width: calc(100% / 12 * 11);
  padding-left: 0;
  padding-right: 0;
}
.container .row.no-gutter .col-12.no-gutter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 12 * 12);
          flex: 0 0 calc(100% / 12 * 12);
  max-width: calc(100% / 12 * 12);
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 576px) {
  .container .row.no-gutter .col-sm-1.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-2.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-3.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-4.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-5.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-6.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-7.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-8.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-9.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-10.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-11.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-sm-12.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .container .row.no-gutter .col-md-1.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-2.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-3.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-4.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-5.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-6.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-7.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-8.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-9.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-10.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-11.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-md-12.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .container .row.no-gutter .col-lg-1.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-2.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-3.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-4.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-5.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-6.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-7.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-8.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-9.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-10.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-11.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-lg-12.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .container .row.no-gutter .col-xl-1.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-2.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-3.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-4.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-5.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-6.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-7.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-8.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-9.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-10.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-11.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xl-12.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .container .row.no-gutter .col-xxl-1.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 1);
            flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-2.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 2);
            flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-3.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 3);
            flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-4.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 4);
            flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-5.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 5);
            flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-6.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 6);
            flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-7.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 7);
            flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-8.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 8);
            flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-9.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 9);
            flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-10.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 10);
            flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-11.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 11);
            flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 0;
    padding-right: 0;
  }
  .container .row.no-gutter .col-xxl-12.no-gutter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12 * 12);
            flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 0;
    padding-right: 0;
  }
}

.text-start {
  text-align: start;
}

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

.text-end {
  text-align: end;
}

@media (min-width: 576px) {
  .text-sm-start {
    text-align: start;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-end {
    text-align: end;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: start;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-end {
    text-align: end;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: start;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-end {
    text-align: end;
  }
}
.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-start {
  justify-items: flex-start;
}

.justify-items-end {
  justify-items: flex-end;
}

.align-content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.align-content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.align-content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.align-content-baseline {
  -ms-flex-line-pack: baseline;
      align-content: baseline;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 576px) {
  .justify-sm-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify-sm-content-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify-sm-content-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify-sm-content-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-sm-content-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .justify-sm-content-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .justify-sm-items-center {
    justify-items: center;
  }
  .justify-sm-items-start {
    justify-items: flex-start;
  }
  .justify-sm-items-end {
    justify-items: flex-end;
  }
  .align-sm-content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align-sm-content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align-sm-content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align-sm-content-stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align-sm-content-baseline {
    -ms-flex-line-pack: baseline;
        align-content: baseline;
  }
  .align-sm-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align-sm-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align-sm-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .justify-md-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify-md-content-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify-md-content-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify-md-content-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-md-content-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .justify-md-content-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .justify-md-items-center {
    justify-items: center;
  }
  .justify-md-items-start {
    justify-items: flex-start;
  }
  .justify-md-items-end {
    justify-items: flex-end;
  }
  .align-md-content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align-md-content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align-md-content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align-md-content-stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align-md-content-baseline {
    -ms-flex-line-pack: baseline;
        align-content: baseline;
  }
  .align-md-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align-md-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align-md-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .justify-lg-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify-lg-content-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify-lg-content-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify-lg-content-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-lg-content-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .justify-lg-content-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .justify-lg-items-center {
    justify-items: center;
  }
  .justify-lg-items-start {
    justify-items: flex-start;
  }
  .justify-lg-items-end {
    justify-items: flex-end;
  }
  .align-lg-content-center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align-lg-content-start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align-lg-content-end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align-lg-content-stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align-lg-content-baseline {
    -ms-flex-line-pack: baseline;
        align-content: baseline;
  }
  .align-lg-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align-lg-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align-lg-items-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.ma-auto {
  margin: auto;
}

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

.mr-auto {
  margin-right: auto;
}

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

.ml-auto {
  margin-left: auto;
}

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

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

@media (min-width: 576px) {
  .ma-sm-auto {
    margin: auto;
  }
  .mt-sm-auto {
    margin-top: auto;
  }
  .mr-sm-auto {
    margin-right: auto;
  }
  .mb-sm-auto {
    margin-bottom: auto;
  }
  .ml-sm-auto {
    margin-left: auto;
  }
  .mx-sm-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 768px) {
  .ma-md-auto {
    margin: auto;
  }
  .mt-md-auto {
    margin-top: auto;
  }
  .mr-md-auto {
    margin-right: auto;
  }
  .mb-md-auto {
    margin-bottom: auto;
  }
  .ml-md-auto {
    margin-left: auto;
  }
  .mx-md-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 992px) {
  .ma-lg-auto {
    margin: auto;
  }
  .mt-lg-auto {
    margin-top: auto;
  }
  .mr-lg-auto {
    margin-right: auto;
  }
  .mb-lg-auto {
    margin-bottom: auto;
  }
  .ml-lg-auto {
    margin-left: auto;
  }
  .mx-lg-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media (min-width: 1200px) {
  .ma-xl-auto {
    margin: auto;
  }
  .mt-xl-auto {
    margin-top: auto;
  }
  .mr-xl-auto {
    margin-right: auto;
  }
  .mb-xl-auto {
    margin-bottom: auto;
  }
  .ml-xl-auto {
    margin-left: auto;
  }
  .mx-xl-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
}
.pa-0 {
  padding: 0px !important;
}

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

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

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

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

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

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

.pa-1 {
  padding: 1px !important;
}

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

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

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

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

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

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

.pa-2 {
  padding: 2px !important;
}

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

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

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

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

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

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

.pa-3 {
  padding: 3px !important;
}

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

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

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

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

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

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

.pa-4 {
  padding: 4px !important;
}

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

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

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

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

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

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

.pa-5 {
  padding: 5px !important;
}

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

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

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

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

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

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

.pa-6 {
  padding: 6px !important;
}

.pt-6 {
  padding-top: 6px !important;
}

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

.pb-6 {
  padding-bottom: 6px !important;
}

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

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

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

.pa-7 {
  padding: 7px !important;
}

.pt-7 {
  padding-top: 7px !important;
}

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

.pb-7 {
  padding-bottom: 7px !important;
}

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

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

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

.pa-8 {
  padding: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

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

.pb-8 {
  padding-bottom: 8px !important;
}

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

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

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

.pa-9 {
  padding: 9px !important;
}

.pt-9 {
  padding-top: 9px !important;
}

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

.pb-9 {
  padding-bottom: 9px !important;
}

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

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

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

.pa-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

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

.pb-10 {
  padding-bottom: 10px !important;
}

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

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

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

.pa-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

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

.pb-20 {
  padding-bottom: 20px !important;
}

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

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

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

.pa-21 {
  padding: 21px !important;
}

.pt-21 {
  padding-top: 21px !important;
}

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

.pb-21 {
  padding-bottom: 21px !important;
}

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

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

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

.pa-22 {
  padding: 22px !important;
}

.pt-22 {
  padding-top: 22px !important;
}

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

.pb-22 {
  padding-bottom: 22px !important;
}

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

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

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

.pa-23 {
  padding: 23px !important;
}

.pt-23 {
  padding-top: 23px !important;
}

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

.pb-23 {
  padding-bottom: 23px !important;
}

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

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

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

.pa-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

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

.pb-24 {
  padding-bottom: 24px !important;
}

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

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

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

.pa-25 {
  padding: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

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

.pb-25 {
  padding-bottom: 25px !important;
}

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

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

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

.ma-0 {
  margin: 0px !important;
}

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

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

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

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

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

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

.ma-1 {
  margin: 1px !important;
}

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

.mr-1 {
  margin-right: 1px !important;
}

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

.ml-1 {
  margin-left: 1px !important;
}

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

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

.ma-2 {
  margin: 2px !important;
}

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

.mr-2 {
  margin-right: 2px !important;
}

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

.ml-2 {
  margin-left: 2px !important;
}

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

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

.ma-3 {
  margin: 3px !important;
}

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

.mr-3 {
  margin-right: 3px !important;
}

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

.ml-3 {
  margin-left: 3px !important;
}

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

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

.ma-4 {
  margin: 4px !important;
}

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

.mr-4 {
  margin-right: 4px !important;
}

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

.ml-4 {
  margin-left: 4px !important;
}

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

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

.ma-5 {
  margin: 5px !important;
}

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

.mr-5 {
  margin-right: 5px !important;
}

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

.ml-5 {
  margin-left: 5px !important;
}

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

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

.ma-6 {
  margin: 6px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

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

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

.ma-7 {
  margin: 7px !important;
}

.mt-7 {
  margin-top: 7px !important;
}

.mr-7 {
  margin-right: 7px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.ml-7 {
  margin-left: 7px !important;
}

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

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

.ma-8 {
  margin: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

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

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

.ma-9 {
  margin: 9px !important;
}

.mt-9 {
  margin-top: 9px !important;
}

.mr-9 {
  margin-right: 9px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.ml-9 {
  margin-left: 9px !important;
}

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

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

.ma-10 {
  margin: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

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

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

.ma-20 {
  margin: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

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

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

.ma-21 {
  margin: 21px !important;
}

.mt-21 {
  margin-top: 21px !important;
}

.mr-21 {
  margin-right: 21px !important;
}

.mb-21 {
  margin-bottom: 21px !important;
}

.ml-21 {
  margin-left: 21px !important;
}

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

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

.ma-22 {
  margin: 22px !important;
}

.mt-22 {
  margin-top: 22px !important;
}

.mr-22 {
  margin-right: 22px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.ml-22 {
  margin-left: 22px !important;
}

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

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

.ma-23 {
  margin: 23px !important;
}

.mt-23 {
  margin-top: 23px !important;
}

.mr-23 {
  margin-right: 23px !important;
}

.mb-23 {
  margin-bottom: 23px !important;
}

.ml-23 {
  margin-left: 23px !important;
}

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

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

.ma-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

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

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

.ma-25 {
  margin: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

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

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

@media (min-width: 576px) {
  .sm-up {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .md-up {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .lg-up {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .xl-up {
    display: block !important;
  }
}

@media (min-width: 1400px) {
  .xxl-up {
    display: block !important;
  }
}

@media (max-width: -0.02px) {
  .xs-down {
    display: block !important;
  }
}

@media (max-width: 575.98px) {
  .sm-down {
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  .md-down {
    display: block !important;
  }
}

@media (max-width: 991.98px) {
  .lg-down {
    display: block !important;
  }
}

@media (max-width: 1199.98px) {
  .xl-down {
    display: block !important;
  }
}

@media (min-width: 576px) {
  .-sm-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .-md-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .-lg-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .-xl-up {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .-xxl-up {
    display: none !important;
  }
}

@media (max-width: -0.02px) {
  .-xs-down {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .-sm-down {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .-md-down {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .-lg-down {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .-xl-down {
    display: none !important;
  }
}

.max-xs {
  max-width: 0 !important;
}

.max-sm {
  max-width: 576px !important;
}

.max-md {
  max-width: 768px !important;
}

.max-lg {
  max-width: 992px !important;
}

.max-xl {
  max-width: 1200px !important;
}

.max-xxl {
  max-width: 1400px !important;
}

@media (min-width: 576px) {
  .max-sm-up {
    max-width: 576px !important;
  }
}
@media (min-width: 768px) {
  .max-md-up {
    max-width: 768px !important;
  }
}
@media (min-width: 992px) {
  .max-lg-up {
    max-width: 992px !important;
  }
}
@media (min-width: 1200px) {
  .max-xl-up {
    max-width: 1200px !important;
  }
}
@media (min-width: 1400px) {
  .max-xxl-up {
    max-width: 1400px !important;
  }
}
.position-absolute {
  position: absolute !important;
}

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

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

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

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

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

.top-1 {
  top: 1px !important;
}

.top-2 {
  top: 2px !important;
}

.top-3 {
  top: 3px !important;
}

.top-4 {
  top: 4px !important;
}

.top-5 {
  top: 5px !important;
}

.top-10 {
  top: 10px !important;
}

.top-15 {
  top: 15px !important;
}

.top-20 {
  top: 20px !important;
}

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

.bottom-1 {
  bottom: 1px !important;
}

.bottom-2 {
  bottom: 2px !important;
}

.bottom-3 {
  bottom: 3px !important;
}

.bottom-4 {
  bottom: 4px !important;
}

.bottom-5 {
  bottom: 5px !important;
}

.bottom-10 {
  bottom: 10px !important;
}

.bottom-15 {
  bottom: 15px !important;
}

.bottom-20 {
  bottom: 20px !important;
}

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

.right-1 {
  right: 1px !important;
}

.right-2 {
  right: 2px !important;
}

.right-3 {
  right: 3px !important;
}

.right-4 {
  right: 4px !important;
}

.right-5 {
  right: 5px !important;
}

.right-10 {
  right: 10px !important;
}

.right-15 {
  right: 15px !important;
}

.right-20 {
  right: 20px !important;
}

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

.left-1 {
  left: 1px !important;
}

.left-2 {
  left: 2px !important;
}

.left-3 {
  left: 3px !important;
}

.left-4 {
  left: 4px !important;
}

.left-5 {
  left: 5px !important;
}

.left-10 {
  left: 10px !important;
}

.left-15 {
  left: 15px !important;
}

.left-20 {
  left: 20px !important;
}

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

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

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

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

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.gap-0 {
  gap: 0px !important;
}

.gap-1 {
  gap: 1px !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-3 {
  gap: 3px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-7 {
  gap: 7px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-9 {
  gap: 9px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-11 {
  gap: 11px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-13 {
  gap: 13px !important;
}

.gap-14 {
  gap: 14px !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-17 {
  gap: 17px !important;
}

.gap-18 {
  gap: 18px !important;
}

.gap-19 {
  gap: 19px !important;
}

.gap-20 {
  gap: 20px !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

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

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

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.flex-basis-auto {
  -ms-flex-preferred-size: auto !important;
      flex-basis: auto !important;
}

.flex-basis-0 {
  -ms-flex-preferred-size: 0 !important;
      flex-basis: 0 !important;
}

.flex-basis-100 {
  -ms-flex-preferred-size: 100% !important;
      flex-basis: 100% !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-last {
  -webkit-box-ordinal-group: 10000 !important;
      -ms-flex-order: 9999 !important;
          order: 9999 !important;
}

.text-primary {
  color: #004f7e !important;
}

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

.text-tertiary {
  color: #D9E4EA !important;
}

.text-accent {
  color: #ef3621 !important;
}

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

.text-black {
  color: #363636 !important;
}

.text-gray {
  color: #70797e !important;
}

.text-dgray {
  color: #585f63 !important;
}

.text-lgray {
  color: #8a9297 !important;
}

.bg-primary {
  background-color: #004f7e !important;
}

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

.bg-tertiary {
  background-color: #D9E4EA !important;
}

.bg-accent {
  background-color: #ef3621 !important;
}

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

.bg-black {
  background-color: #363636 !important;
}

.bg-gray {
  background-color: #70797e !important;
}

.bg-dgray {
  background-color: #585f63 !important;
}

.bg-lgray {
  background-color: #8a9297 !important;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto !important;
  float: none !important;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #e5e5e5;
  max-width: 96%;
  padding: 10px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .wp-caption {
    display: block;
    margin: 0 auto !important;
    float: none !important;
  }
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 13px;
  line-height: 16px;
  margin: 0;
  padding: 15px 10px 5px;
  text-align: left;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

#eyebrow {
  background-color: #D9E4EA;
}
@media (max-width: 991.98px) {
  #eyebrow {
    display: none;
  }
}
#eyebrow .languages {
  max-width: 200px;
}
#eyebrow .languages select {
  padding: 5px 10px;
  font-size: 14px;
}
#eyebrow .btn {
  text-transform: uppercase;
}
#eyebrow .search-form .form-control {
  background-color: transparent;
  border-radius: 4px;
  border-color: rgba(0, 79, 126, 0.5);
  font-weight: 600;
}
#eyebrow .search-form .form-control::-webkit-input-placeholder {
  color: #004f7e;
}
#eyebrow .search-form .form-control::-moz-placeholder {
  color: #004f7e;
}
#eyebrow .search-form .form-control:-ms-input-placeholder {
  color: #004f7e;
}
#eyebrow .search-form .form-control::-ms-input-placeholder {
  color: #004f7e;
}
#eyebrow .search-form .form-control::placeholder {
  color: #004f7e;
}

#masthead {
  background: rgb(0, 79, 126);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(72%, rgb(0, 79, 126)), to(rgb(51, 114, 152)));
  background: linear-gradient(0deg, rgb(0, 79, 126) 72%, rgb(51, 114, 152) 100%);
  padding: 25px 0;
}
@media (max-width: 991.98px) {
  #masthead {
    padding: 1rem;
    border-bottom: 5px solid #ef3621;
  }
}
#masthead .logo {
  margin-top: 5px;
  margin-left: 30px;
}
@media (max-width: 991.98px) {
  #masthead .logo {
    width: 120px;
  }
}

#menu-languages {
  padding: 0;
  margin: 0;
  list-style: none;
}

#footer {
  background-color: #004f7e;
  color: #fff;
  position: relative;
}
#footer:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, rgba(54, 54, 54, 0)), to(rgba(54, 54, 54, 0.25)));
  background: linear-gradient(180deg, rgba(54, 54, 54, 0) 72%, rgba(54, 54, 54, 0.25) 100%);
}
#footer .wrapper {
  padding: 40px 0;
}
#footer .wrapper .menu-top-container ul,
#footer .wrapper .menu-footer-container ul {
  list-style: circle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer .wrapper .menu-top-container ul li,
#footer .wrapper .menu-footer-container ul li {
  padding: 0 1rem;
}
#footer .wrapper .menu-top-container ul li.current-menu-item,
#footer .wrapper .menu-footer-container ul li.current-menu-item {
  list-style: disc;
}
#footer .wrapper .menu-top-container ul li.current-menu-item a,
#footer .wrapper .menu-footer-container ul li.current-menu-item a {
  color: #fff;
  font-weight: 700;
}
#footer .wrapper .menu-top-container ul li a,
#footer .wrapper .menu-footer-container ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
#footer .wrapper .menu-top-container ul li a:hover, #footer .wrapper .menu-top-container ul li a:focus, #footer .wrapper .menu-top-container ul li a:active, #footer .wrapper .menu-top-container ul li a:focus-visible,
#footer .wrapper .menu-footer-container ul li a:hover,
#footer .wrapper .menu-footer-container ul li a:focus,
#footer .wrapper .menu-footer-container ul li a:active,
#footer .wrapper .menu-footer-container ul li a:focus-visible {
  color: #ef3621;
}
#footer .wrapper .logo {
  max-width: 150px;
}
#footer .wrapper .copyright {
  display: block;
  font-size: 12px;
  padding-top: 10px;
}
#footer .wrapper #social-menu .wp-block-social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767.98px) {
  #footer .wrapper #social-menu .wp-block-social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#footer .wrapper #social-menu .wp-block-social-links li a {
  color: #fff;
}
#footer .wrapper h4 {
  font-size: 18px;
  font-weight: 700;
}

#desktop-navigation {
  background-color: #edf3f6;
  position: sticky;
  top: 0px;
  z-index: 100;
  border-bottom: 1px solid #D9E4EA;
}
.admin-bar #desktop-navigation {
  top: 32px;
}
@media (max-width: 991.98px) {
  #desktop-navigation {
    display: none;
  }
}
#desktop-navigation .menu-top-container ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 0;
}
#desktop-navigation .menu-top-container ul li a {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  position: relative;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #004f7e;
  display: inline-block;
  padding: 10px 18px;
}
#desktop-navigation .menu-top-container ul li a:after {
  border-bottom: 0px solid transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
#desktop-navigation .menu-top-container ul li a:hover {
  color: #ef3621;
}
#desktop-navigation .menu-top-container ul li a:hover:after {
  border-bottom: 4px solid #ef3621;
}
#desktop-navigation .menu-top-container ul li.current-menu-item a {
  color: #ef3621;
}

#mobile-navigation {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 79, 126, 0.9);
  overflow: auto;
}
#mobile-navigation.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#mobile-navigation ul {
  padding: 0;
  margin: 0 !important;
  list-style: none;
}
#mobile-navigation #social-menu {
  padding: 20px 0;
}
#mobile-navigation #social-menu ul li a {
  color: #fff !important;
}
#mobile-navigation .menu-top-container {
  text-align: center;
  width: 100%;
}
#mobile-navigation .menu-top-container ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 0;
  width: 90%;
}
@media (max-width: 767.98px) and (orientation: landscape) {
  #mobile-navigation .menu-top-container ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#mobile-navigation .menu-top-container ul li a {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  position: relative;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  display: block;
  padding: 10px 15px;
  border: solid 1px transparent;
}
#mobile-navigation .menu-top-container ul li a:active, #mobile-navigation .menu-top-container ul li a:focus, #mobile-navigation .menu-top-container ul li a:focus-within {
  border: solid 1px #fff;
  outline: none;
}
#mobile-navigation .menu-icon {
  position: absolute;
  top: 10px;
  right: 20px;
}
.admin-bar #mobile-navigation .menu-icon {
  top: 50px;
}
#mobile-navigation .menu-icon a {
  color: #fff;
  font-size: 30px;
}

.mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .mobile {
    display: block;
  }
}
.mobile .menu-icon a {
  color: #fff;
  font-size: 30px;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #D9E4EA;
}

body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.freeze {
  overflow: hidden;
}
body a {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #004f7e;
  outline-color: rgba(239, 54, 33, 0.5);
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
hr.light {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
}

h1 {
  color: #004f7e;
}

h1, h2 {
  font-family: "Libre Caslon Text", serif;
}
h1 a, h2 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}
h1 a:hover, h2 a:hover {
  color: #337298;
}
h1 a:hover i, h2 a:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
h1 a i, h2 a i {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  font-size: 16px;
}

iframe {
  max-width: 100%;
}

.fb-post span {
  width: 100% !important;
}
.fb-post span iframe {
  width: 100% !important;
}

form {
  width: 100%;
}

.form-label {
  font-size: 13px;
}

.form-field, input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #8a9297;
  border-radius: 4px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-field:focus, input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  color: #666;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.col-content .form-field, .col-content input[type=text],
.col-content input[type=password],
.col-content input[type=email],
.col-content input[type=number],
.col-content input[type=tel],
.col-content input[type=url],
.col-content input[type=search],
.col-content textarea,
.col-content select {
  border-color: #337298;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23004f7e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  background-color: #fff;
  padding-right: 2.25rem;
}

input[type=checkbox],
input[type=radio] {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

input[type=checkbox] {
  border-radius: 0.25em;
}
input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #70797e;
}

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

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn,
button,
input[type=submit],
input[type=button] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  background-color: #f8f9fa;
  color: #212529;
  border-color: #f8f9fa;
}
.btn:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
  background-color: #e2e6ea;
  color: #212529;
}
.btn:focus,
button:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn:active,
button:active,
input[type=submit]:active,
input[type=button]:active {
  background-color: #dae0e5;
}
.btn:disabled,
button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled {
  opacity: 0.65;
  pointer-events: none;
}
.btn.btn-primary,
button.btn-primary,
input[type=submit].btn-primary,
input[type=button].btn-primary {
  background-color: #ef3621;
  color: #fff;
}
.btn.btn-primary:hover,
button.btn-primary:hover,
input[type=submit].btn-primary:hover,
input[type=button].btn-primary:hover {
  background-color: #9f1a0b;
}
.btn.btn-secondary,
button.btn-secondary,
input[type=submit].btn-secondary,
input[type=button].btn-secondary {
  background-color: #337298;
  color: #fff;
}
.btn.btn-secondary:hover,
button.btn-secondary:hover,
input[type=submit].btn-secondary:hover,
input[type=button].btn-secondary:hover {
  background-color: #19394c;
}
.btn.btn-tertiary,
button.btn-tertiary,
input[type=submit].btn-tertiary,
input[type=button].btn-tertiary {
  background-color: #D9E4EA;
  color: #fff;
}
.btn.btn-tertiary:hover,
button.btn-tertiary:hover,
input[type=submit].btn-tertiary:hover,
input[type=button].btn-tertiary:hover {
  background-color: #97b5c6;
}
.btn.btn-accent,
button.btn-accent,
input[type=submit].btn-accent,
input[type=button].btn-accent {
  background-color: #ef3621;
  color: #fff;
}
.btn.btn-accent:hover,
button.btn-accent:hover,
input[type=submit].btn-accent:hover,
input[type=button].btn-accent:hover {
  background-color: #9f1a0b;
}
.btn.btn-simple,
button.btn-simple,
input[type=submit].btn-simple,
input[type=button].btn-simple {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: transparent;
  color: #ef3621;
  border: solid 1px #ef3621;
}
.btn.btn-simple:hover,
button.btn-simple:hover,
input[type=submit].btn-simple:hover,
input[type=button].btn-simple:hover {
  color: #004f7e;
  border-color: #004f7e;
}
.btn.btn-text,
button.btn-text,
input[type=submit].btn-text,
input[type=button].btn-text {
  border: 0;
  background-color: transparent;
  color: #004f7e;
  padding: 0;
}
.btn.btn-text:hover,
button.btn-text:hover,
input[type=submit].btn-text:hover,
input[type=button].btn-text:hover {
  color: #000f18;
}

.btn:not(.no-animation):hover i,
button:not(.no-animation):hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn i,
button i {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  font-size: 0.8rem;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.btn.btn-opposite:hover i,
button.btn-opposite:hover i {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.btn.btn-attention,
button.btn-attention {
  background-color: #ef3621;
  color: #fff;
  -webkit-animation: 1s jump ease infinite alternate;
          animation: 1s jump ease infinite alternate;
}
.btn.btn-attention:hover,
button.btn-attention:hover {
  background-color: #ce220f;
  color: #fff;
  border-color: #ce220f;
}
.btn.btn-attention:hover i,
button.btn-attention:hover i {
  -webkit-transform: translateX(-5px) scale(1.2);
          transform: translateX(-5px) scale(1.2);
}

#content {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}
@media (max-width: 991.98px) {
  #content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
#content .date {
  font-size: 13px;
  color: rgba(54, 54, 54, 0.6);
  line-height: 1.4;
}
.archive #content .date {
  font-size: 13px;
}
.interior:not(.archive) #content .container .row-main .col-content > header,
.interior:not(.archive) #content .container .row-main .col-content > .content,
.interior:not(.archive) #content .container .row-main .col-content > .tags-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1399.98px) and (min-width: 1200px) {
  #content .container .row-main .col-content {
    padding-left: 20px;
  }
}
#content .container .row-main .col-content .subtitle {
  margin-bottom: 10px;
}
#content .container .row-main .col-content .subtitle h2 {
  font-size: 20px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #363636;
  margin: 0 0 20px;
}
#content .container .row-main .col-content header h1 {
  margin: 0 0 10px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#content .container .row-main .col-content .banner {
  margin: 0 auto 2rem;
  padding: 10px;
  text-align: center;
}
#content .container .row-main .col-content .banner img {
  margin: 0 auto;
}
#content .container .row-main .col-content .top-banner a {
  border: solid 10px #D9E4EA;
  display: inline-block;
}
#content .container .row-main .col-content .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2px;
  border-bottom: 1px solid #D9E4EA;
  width: 300px;
}
#content .container .row-main .col-content .tabs li a {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #D9E4EA;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 0;
  text-decoration: none;
  color: #363636;
  background-color: #D9E4EA;
}
#content .container .row-main .col-content .tabs li a.current {
  background-color: #fff;
}
#content .container .row-main .col-content .tabs li a.current:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
#content .container .row-main .col-content #list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767.98px) {
  #content .container .row-main .col-content #list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
#content .container .row-main .col-content #list li {
  border: 1px solid #D9E4EA;
  border-radius: 5px;
  overflow: hidden;
}
#content .container .row-main .col-content #list li a {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  color: #363636;
  display: block;
  padding: 1rem;
  height: 100%;
}
#content .container .row-main .col-content #list li a:hover, #content .container .row-main .col-content #list li a:focus, #content .container .row-main .col-content #list li a:active, #content .container .row-main .col-content #list li a:focus-visible {
  background-color: rgba(217, 228, 234, 0.5);
}
#content .container .row-main .col-content #list li a:hover .title, #content .container .row-main .col-content #list li a:focus .title, #content .container .row-main .col-content #list li a:active .title, #content .container .row-main .col-content #list li a:focus-visible .title {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  text-shadow: 0px 3px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #content .container .row-main .col-content #list li a {
    gap: 0;
  }
}
#content .container .row-main .col-content #list li a .title {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 17px;
  color: #363636;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
#content .container .row-main .col-content #list li a .location {
  font-size: 14px;
  color: #004f7e;
  font-weight: 700;
  line-height: 1.4;
}
#content .container .row-main .col-content #list li a .author {
  font-size: 16px;
  color: #004f7e;
  font-weight: 700;
  line-height: 1.4;
}
#content .container .row-main .col-content #pagination {
  padding: 3rem 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#content .container .row-main .col-content #pagination > div .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
#content .container .row-main .col-content #pagination > div .pagination > span.page-numbers:not(.dots) {
  background-color: #ef3621;
  color: #fff;
}
#content .container .row-main .col-content #pagination > div .pagination > a.page-numbers:hover, #content .container .row-main .col-content #pagination > div .pagination > a.page-numbers:focus, #content .container .row-main .col-content #pagination > div .pagination > a.page-numbers:active, #content .container .row-main .col-content #pagination > div .pagination > a.page-numbers:focus-visible {
  background-color: #004f7e;
  color: #fff;
}
#content .container .row-main .col-content #pagination > div .pagination .page-numbers {
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
#content .container .row-main .col-content #pagination > div .pagination .page-numbers:not(.dots) {
  border: 1px solid #D9E4EA;
}
#content .container .row-main .col-content #pagination > div:last-child {
  color: #004f7e;
}
#content .container .row-main .col-content .content {
  color: #363636;
  font-family: "Libre Caslon Text", serif;
}
#content .container .row-main .col-content .content p {
  color: #363636;
  font-family: "Libre Caslon Text", serif;
}
#content .container .row-main .col-content .content p:not(.wp-caption-text) {
  margin-bottom: 20px;
}
#content .container .row-main .col-content .content a {
  color: #004f7e;
  font-family: "Libre Caslon Text", serif;
}
#content .container .row-main .col-content .content a:hover {
  color: #ef3621;
}
#content .container .row-main .col-content .tags-wrapper {
  clear: both;
}
#content .container .row-main .col-content .tags-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#content .container .row-main .col-content .tags-wrapper ul li[data-count] {
  border: 1px solid #D9E4EA;
  border-radius: 5px;
}
#content .container .row-main .col-content .tags-wrapper ul li[data-count] a {
  display: block;
  padding: 2px 6px;
  text-decoration: none;
  color: #004f7e;
  font-size: 14px;
}
#content .container .row-main .col-content .tags-wrapper ul li[data-count] a:hover {
  color: #ef3621;
}
#content .container .row-main .col-content footer {
  color: #363636;
}
#content .container .row-main .col-sidebar {
  background-color: #D9E4EA;
  padding: 10px;
}
@media (min-width: 1200px) {
  #content .container .row-main .col-sidebar {
    width: 320px;
  }
}
#content .container .row-main .col-sidebar #sidebar > aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1199.98px) {
  #content .container .row-main .col-sidebar #sidebar > aside {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media (max-width: 991.98px) {
  #content .container .row-main .col-sidebar #sidebar > aside {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  #content .container .row-main .col-sidebar #sidebar > aside .ad {
    aspect-ratio: 6/5;
  }
}
@media (min-width: 992px) {
  #content .container .row-main .col-sidebar #sidebar > aside .ad:not(:last-child) {
    margin-bottom: 10px;
  }
}
#content .container .row-main .col-sidebar #sidebar > aside .ad a img {
  height: auto;
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

.custom-block {
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .custom-block {
    margin-bottom: 1rem;
  }
}
.custom-block.has-background {
  padding: 1rem;
}
.custom-block header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}
@media (max-width: 767.98px) {
  .custom-block header {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .custom-block header > div {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.custom-block header > div:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767.98px) {
  .custom-block header .btn span {
    font-size: 14px;
  }
}