@charset "UTF-8";
#header {
  margin-bottom: min(190px, 17vw);
}
#header .header-inner {
  display: flex;
  height: min(120px, 12vh);
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 1200px) {
  #header .header-inner {
    gap: 15px;
  }
}
#header .header-inner .logo-wrapper {
  flex: 0 0 260px;
  margin-right: auto;
}
@media (max-width: 1400px) {
  #header .header-inner .logo-wrapper {
    flex: 0 0 160px;
  }
}
#header .header-inner .logo-wrapper img {
  width: 90%;
}
#header .header-inner .menu-main-menu-container {
  flex: 0 1 1232px;
}
@media (max-width: 1023px) {
  #header .header-inner .menu-main-menu-container {
    display: none;
  }
}
#header .header-inner .menu-main-menu-container > ul#main-menu {
  justify-content: flex-end;
  list-style: none;
  display: flex;
  gap: 82px;
  padding: 0;
  margin: 0;
  align-items: flex-end;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item {
  font-size: clamp(1.2rem, 0.625vw, 1.9rem);
  position: relative;
  padding: 4px 2px;
  font-weight: 700;
}
@media (min-width: 1100px) {
  #header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu {
  display: none;
  top: 100%;
  left: -25px;
  position: absolute;
  background: #204686;
  padding: 24px;
  border-radius: 8px;
  width: 270px;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu:hover {
  display: initial;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu li a {
  color: white !important;
  font-weight: 400;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu li:hover a {
  text-decoration: underline;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu li.current-menu-item:not(.inactive) {
  position: relative;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu li.current-menu-item:not(.inactive) a {
  font-weight: 700;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item > ul.sub-menu li.current-menu-item:not(.inactive):after {
  content: "";
  left: -10px;
  top: 7px;
  font-size: 2.5rem;
  font-weight: 400;
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: white;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item:hover > ul.sub-menu {
  display: initial;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item.current-menu-item, #header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item.current-menu-ancestor {
  position: relative;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item.current-menu-item a, #header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item.current-menu-ancestor a {
  color: #204686;
}
#header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item.current-menu-item:after, #header .header-inner .menu-main-menu-container > ul#main-menu > li.menu-item.current-menu-ancestor:after {
  left: -8px;
  top: -9px;
  font-size: clamp(2.5rem, 1.3vw, 3rem);
  font-weight: 400;
  position: absolute;
  content: "›";
  color: #204686;
}
#header .header-inner #grey-search {
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  margin-left: 2vw;
}
@media (max-width: 1023px) {
  #header .header-inner #grey-search {
    display: none;
  }
}
#header .header-inner .search-box-full {
  display: none;
  flex-grow: 1;
  border-bottom: 1px solid #204686;
}
#header .header-inner .search-box-full form {
  position: relative;
}
#header .header-inner .search-box-full form input {
  border: none;
  padding-left: 0;
  font-size: 1.6rem;
  color: #204686;
}
#header .header-inner .search-box-full form input::-moz-placeholder {
  font-size: 1.6rem;
  color: #828282;
}
#header .header-inner .search-box-full form input::placeholder {
  font-size: 1.6rem;
  color: #828282;
}
#header .header-inner .search-box-full form input:focus, #header .header-inner .search-box-full form input:focus-visible, #header .header-inner .search-box-full form input:focus-within {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: white !important;
}
#header .header-inner .search-box-full form input:-internal-autofill-selected {
  background-color: #204686 !important;
  color: #204686 !important;
}
#header .header-inner .search-box-full form img {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  right: 0;
  bottom: 25%;
  cursor: pointer;
}

#mobile-menu {
  position: fixed;
  z-index: 30;
  transition: all 0.3s;
  bottom: 0;
  right: 0;
  height: 0vh;
  width: 0vw;
  background: #D1C4A7;
}
#mobile-menu .inner-menu {
  overflow: auto;
  padding: 20px 20vw 20px 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
#mobile-menu .inner-menu #main-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
#mobile-menu .inner-menu #main-menu > li.current-menu-item, #mobile-menu .inner-menu #main-menu > li.current-menu-ancestor, #mobile-menu .inner-menu #main-menu > li.current-menu-parent {
  position: relative;
}
#mobile-menu .inner-menu #main-menu > li.current-menu-item:after, #mobile-menu .inner-menu #main-menu > li.current-menu-ancestor:after, #mobile-menu .inner-menu #main-menu > li.current-menu-parent:after {
  left: -15px;
  top: -9px;
  font-size: 3rem;
  font-weight: 400;
  position: absolute;
  content: "›";
  color: #fff;
}
#mobile-menu .inner-menu #main-menu > li > a {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}
#mobile-menu .inner-menu .sub-menu {
  height: 0;
  overflow: hidden;
  padding-left: 15px;
}
#mobile-menu .inner-menu .sub-menu li a {
  display: block;
  color: white;
  margin-top: 20px;
  font-weight: 400;
  font-size: 1.2rem;
}
#mobile-menu .inner-menu .sub-menu li.current-menu-item {
  position: relative;
}
#mobile-menu .inner-menu .sub-menu li.current-menu-item a {
  font-weight: 700;
}
#mobile-menu .inner-menu .sub-menu li.current-menu-item:after {
  content: "";
  left: -10px;
  top: 7px;
  font-size: 2.5rem;
  font-weight: 400;
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: white;
}
#mobile-menu .inner-menu .sub-menu li.inactive {
  display: none !important;
}
#mobile-menu .search-toggle {
  position: fixed;
  bottom: -64px;
  left: -64px;
  background: #99C1B9;
  height: 130px;
  width: 130px;
  transform: rotate(45deg);
  z-index: 10000;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
  transition-duration: 0.3s;
}
#mobile-menu .search-toggle img {
  position: absolute;
  top: 13px;
  left: 52px;
  transform: rotate(-45deg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7481%) hue-rotate(134deg) brightness(122%) contrast(101%);
}

.mobile-menu-toggle {
  position: fixed;
  bottom: -64px;
  right: -64px;
  background: #204686;
  height: 130px;
  width: 130px;
  transform: rotate(45deg);
  z-index: 10000;
  transition: all 0.3s;
}
.mobile-menu-toggle.open {
  background: #D1C4A7;
}
.mobile-menu-toggle.open ~ #mobile-menu {
  background: #204686;
  opacity: 1;
  height: 100vh;
  width: 100vw;
}
.mobile-menu-toggle.open ~ #mobile-menu .search-toggle {
  transition-delay: 0.3s;
  transition-duration: 0.3s;
  pointer-events: initial;
  opacity: 1;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  #mobile-menu {
    display: none !important;
  }
}
#nav-icon2 {
  width: 60px;
  height: 45px;
  left: -2px;
  top: -7px;
  position: absolute;
  margin: 50px auto;
  transform: rotate(-45deg) scale(0.5);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 50%;
  background: white;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 18px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 36px;
}

#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}

#footer {
  background-color: #99C1B9;
}
@media (max-width: 1023px) {
  #footer {
    background-color: #fff;
  }
}
#footer .mobile-container {
  display: none;
}
#footer .mobile-container .mobile-footer .pages-mobile {
  color: #204686;
}
@media (max-width: 1023px) {
  #footer .mobile-container .mobile-footer {
    padding-left: 1.4rem;
    padding-bottom: 1.71rem;
  }
  #footer .mobile-container .mobile-footer p {
    max-width: 215px;
    margin-bottom: 0;
    color: #204686;
    font-size: 1.2rem;
    font-weight: 900;
  }
}
@media (max-width: 1023px) {
  #footer .mobile-container {
    display: flex;
  }
}
#footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #E8E8E8;
}
@media (max-width: 1023px) {
  #footer:before {
    display: none;
  }
}
#footer .footer {
  padding-top: 1.8rem;
  padding-bottom: 1.2rem;
}
#footer .footer--row {
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
  align-content: center;
}
#footer .footer--row--menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#footer .footer--row--menu-container .copy {
  font-size: 1rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 450px) {
  #footer .footer--row--menu-container .copy {
    font-size: 0.8rem;
  }
}
#footer .footer--row--menu-container--pages {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
#footer .footer--row--menu-container--pages a:hover {
  color: white;
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}
#footer .footer--row--menu-container--pages--single:not(:last-child) {
  border-right: 1px solid white;
  margin-right: 2px;
}
@media (max-width: 1023px) {
  #footer .footer--row--menu-container--pages--single:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  #footer .footer--row--menu-container--pages {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  #footer .footer--row--menu-container {
    margin: 1rem 0 2rem 0;
  }
}
#footer .footer--row--add-container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1023px) {
  #footer .footer {
    display: none;
  }
}
#footer .top-footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
#footer .top-footer-menu--container {
  padding: 0px 33px;
  display: flex;
  align-items: center;
  gap: 120px;
  border-bottom: 1px dotted white;
}
#footer .top-footer-menu .link-container {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-bottom: 21.5px;
}
#footer .top-footer-menu .link-container .link-icon {
  width: 44.31px;
  height: 42.71px;
}
#footer .top-footer-menu .link-container span {
  position: relative;
  display: block;
  width: 7.3px;
  height: 14px;
  padding: 0;
  margin: 0;
}
#footer .top-footer-menu .link-container .arrow-blue {
  position: absolute;
  left: 0px;
  display: none;
}
#footer .top-footer-menu .link-container p {
  flex-grow: 1;
  color: #FFFFFF;
  font-size: 12px;
  margin-bottom: 0px;
}
#footer .top-footer-menu .link-container:hover .arrow-blue {
  display: block;
}
#footer .top-footer-menu .link-container:hover p {
  color: #204686;
  font-weight: bold;
}
#footer .top-footer-menu .link-1 {
  min-width: 172px;
}
#footer .top-footer-menu .link-2 {
  min-width: 244px;
}
#footer .top-footer-menu .link-3 {
  min-width: 174px;
}

.scrollToTop {
  position: fixed;
  bottom: 105px;
  right: 55px;
  z-index: 31;
  transition: 0.2s;
}

.mobile-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-container .top-footer-menu-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  margin-left: 15px;
}
.mobile-container .top-footer-menu-mobile--container {
  padding: 0px 33px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted white;
  gap: 20px;
}
@media (max-width: 450px) {
  .mobile-container .top-footer-menu-mobile--container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.mobile-container .top-footer-menu-mobile .link-container-mobile {
  min-width: unset;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 21.5px;
}
.mobile-container .top-footer-menu-mobile .link-container-mobile .arrow-blue {
  display: none;
}
.mobile-container .top-footer-menu-mobile .link-container-mobile p {
  color: #204686;
  font-size: 12px;
  margin-bottom: 0px;
}
@media (max-width: 699px) {
  .mobile-container {
    flex-direction: column-reverse;
  }
  .mobile-container .mobile-footer {
    padding-left: 0px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
  .mobile-container .mobile-footer .footer--row--menu-container--pages {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-container .mobile-footer p {
    max-width: unset !important;
  }
}

.white {
  color: white;
}

.blue {
  color: #204686;
}

#page-title {
  margin-bottom: 65px;
}
#page-title .title-icon {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 576px) {
  #page-title .title-icon .icon {
    display: none;
  }
}
#page-title .title-icon .title-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#page-title .title-icon .title-container .icon {
  max-width: 59.68px;
  max-height: 59.68px;
}
#page-title .title-icon .title-container .title {
  font-size: clamp(2.5rem, 4.3vw, 3.5rem);
  color: #204686;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 575px) {
  #page-title .title-icon .title-container {
    flex-direction: column;
    row-gap: 0.5rem;
    align-items: flex-start;
  }
}
#page-title .title-icon .header-btn {
  background-color: #204686;
  color: white;
  border: none;
  border-radius: 1rem;
  padding: 1.1rem 1.7rem;
  font-weight: 700;
  font-size: 10px;
  cursor: pointer;
  background-image: linear-gradient(45deg, #D1C4A7 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 0.6s ease-in-out;
}
#page-title .title-icon .header-btn:hover {
  background-position: 0;
}
#page-title .title-icon .header-btn:hover span {
  text-decoration: none !important;
}
#page-title .title-icon .header-btn img {
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
}
#page-title .has-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  #page-title .has-btn {
    flex-direction: column;
    row-gap: 2.2rem;
    align-items: flex-start;
  }
}
#page-title .subtitle {
  font-size: 1.6rem;
  line-height: 25px;
  color: #828282;
  padding: 30px 20px 0;
}
@media (max-width: 575px) {
  #page-title .subtitle {
    padding: 30px 0 0;
  }
}

#pagination .inner-container {
  display: flex;
  justify-content: flex-end;
  color: #828282;
  font-size: 1.6rem;
  align-items: center;
}
#pagination .inner-container .per_page_wrapper {
  white-space: nowrap;
}
#pagination .inner-container .per_page_wrapper .per_page_text {
  margin-right: 15px;
  font-size: 1.1rem;
  color: #828282;
  font-weight: 700;
}
#pagination .inner-container .page-numbers {
  margin-left: 0.8rem;
  padding: 6px 11px;
  line-height: 2rem;
  background-color: transparent;
}
#pagination .inner-container .page-numbers:nth-child(1) {
  margin-right: 0.4rem;
}
#pagination .inner-container .page-numbers:hover, #pagination .inner-container .page-numbers:hover, #pagination .inner-container .page-numbers.current {
  color: #fff;
  background: #828282;
  text-decoration: none;
}
#pagination .inner-container .page-numbers.dots {
  padding: 6px 11px;
}
#pagination .inner-container .page-numbers.dots:hover {
  background: transparent;
  color: inherit;
}

.select2-container .select2-selection {
  height: -moz-fit-content;
  height: fit-content;
  color: #828282;
  font-size: 1.2rem;
  font-weight: 700;
}
.select2-container .select2-selection .select2-selection__rendered {
  min-height: 47px;
  overflow: hidden;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.select2-container .select2-selection--multiple {
  border-radius: 8px;
  min-width: 280px;
  padding: 0;
  display: flex;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  height: 46px;
  padding: 0;
  min-height: 46px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
}
.select2-container .select2-selection--multiple .select2-search {
  padding: 9px 0;
}
.select2-container .select2-selection--multiple .select2-search textarea {
  font-size: 1.2rem;
  font-weight: 700;
}
.select2-container .select2-selection--single {
  border-radius: 8px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 15px 9px 20px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.select2-container .select2-selection.small {
  border-radius: 0;
}
.select2-container .select2-selection.small .select2-selection__rendered {
  padding: 2px 15px 2px 20px;
  min-height: unset;
}
.select2-container .select2-selection.small .select2-selection__arrow {
  top: 3px;
}
.select2-container .select2-selection .select2-selection__arrow {
  top: 11px;
}
.select2-container .select2-dropdown--below {
  top: 31px;
}
.select2-container .select2-dropdown .select2-results__option {
  padding-left: 20px;
  font-size: 1.4rem;
}
.select2-container .select2-dropdown.big .select2-results__option {
  padding-left: 35px;
}
.select2-container .select2-dropdown.big .select2-results__option--selected {
  background: transparent;
  position: relative;
  color: #204686;
}
.select2-container .select2-dropdown.big .select2-results__option--selected::after {
  content: "";
  position: absolute;
  display: inline-block;
  transform: rotate(45deg);
  height: 10px;
  width: 6px;
  top: 10px;
  left: 15px;
  border-bottom: 3px solid #204686;
  border-right: 3px solid #204686;
}
.select2-container--open .select2-selection {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::-moz-selection {
  background-color: #CBE558 !important;
  color: #828282 !important;
}
*::selection {
  background-color: #CBE558 !important;
  color: #828282 !important;
}

html {
  /* font-size: 10px; */
  font-size: 62.5%;
}

body {
  background-color: #fff;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .select2-container.select2-container--default.select2-container--open:not(.select2) {
  margin-top: -32px;
}
body .container {
  max-width: 170rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1023px) {
  body .container {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}
body .container-fluid {
  max-width: 164rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
body footer {
  max-height: 40rem;
  margin-top: auto;
}
@media (min-width: 1201px) {
  body footer .site-logo {
    max-height: 6.3rem;
  }
}
@media (max-width: 1200px) {
  body footer .site-logo {
    max-width: 180px;
    max-height: 6rem;
  }
}
@media (max-width: 650px) {
  body footer .site-logo {
    max-width: 130px;
    max-height: 4rem;
  }
}
@media (max-width: 450px) {
  body footer .site-logo {
    max-width: 85px;
    max-height: 4rem;
  }
}
body footer .elke-logo {
  max-height: 4.3rem;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #204686;
}

h1 {
  font-weight: 700;
  letter-spacing: 1.02px;
  font-size: 5.1rem;
}
@media (max-width: 425px) {
  h1 {
    font-size: 3.5rem;
  }
}

p,
li {
  color: #828282;
}
p::-moz-selection, li::-moz-selection {
  background-color: green;
  color: blue;
}
p::selection,
li::selection {
  background-color: green;
  color: blue;
}

p a {
  color: #204686;
  font-weight: 700;
}
p a:hover {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
  color: #204686;
}

a,
span {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #204686;
}
a:hover .bluebutton {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}

.button-submit:hover input {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}

a,
button {
  transition: 0.3s ease-in-out;
}
a.bluebutton,
button.bluebutton {
  outline: none;
  border: 1px solid #204686;
  padding: 0 20px;
  background-color: #204686;
  border-radius: 10px;
  color: white;
  font-size: clamp(1rem, 0.75vw, 1.2rem);
  line-height: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
}
a.bluebutton:hover,
button.bluebutton:hover {
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}

.context-text {
  font-size: 1.6rem;
  color: #828282;
  line-height: 30px;
}

b {
  font-weight: 700;
}

h2.ws-title {
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 2.5rem;
}
h2.ws-title:after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  display: block;
  max-width: 41rem;
  width: 100%;
}

/* global class for spacing spacing */
.big-top-space {
  margin-top: 20rem;
}

.big-bottom-space {
  margin-bottom: 20rem;
}

.medium-top-space {
  margin-top: 10rem;
}

.medium-bottom-space {
  margin-bottom: 10rem;
}

.small-top-space {
  margin-top: 4rem;
}

.small-bottom-space {
  margin-bottom: 4rem;
}

.banner img {
  max-width: 100%;
}

.archive-filter--date #sort-posts .sort {
  font-size: 1.5rem;
  color: #828282;
  line-height: 3.5rem;
}
.archive-filter--date #sort-posts button {
  padding: 0 0 0 2rem;
  color: #828282;
  font-size: 1.5rem;
  line-height: 3.5rem;
  border: 0.1rem solid #828282;
  background: #fff;
  border-radius: 0.2rem;
  margin-left: 1rem;
}
.archive-filter--date #sort-posts button img {
  padding: 0 2rem;
}

.d-contents {
  display: contents;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #204686;
  color: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 3s;
  transition: background-color 5000s ease-in-out 3s;
  -webkit-text-fill-color: inherit !important;
}
