@charset "UTF-8";
/*** importuri ***/
/*
* Barebones V3
* Copyright 2019 Steve Cochran
*
* Based of Skeleton by Dave Gamache
*
* Free to use under the MIT license.
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Media Breakpoints
- Variables
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* ENV Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Media breakpoint variables for use in media queries
* 	Note: this section is currently commented out pending release of 
* 	final CSS env() spec
*  Breakpoints based on 
*	 https://medium.freecodecamp.org/the-100-correct-way-to-do-css-breakpoints-88d6a5ba1862
* 
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* CSS Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  /* default theme: light background, dark text, blue accent */
  --theme-hue: 0;
  /* white */
  --accent-hue: 9;
  /* red */
  --text-color-richer: hsl(var(--accent-hue), 90%, 95%);
  /* #0d0d0d		*/
  --text-color-normal: hsl(var(--accent-hue), 20%, 85%);
  --text-color-softer: hsl(var(--accent-hue), 20%, 80%);
  --accent-color: hsl(var(--accent-hue), 100%, 80%);
  --accent-color-softer: hsl(var(--accent-hue), 60%, 80%);
  --accent-color-hover: hsl(var(--accent-hue), 95%, 51%);
  --border-color: hsl(var(--theme-hue), 0%, 73%);
  --border-color-softer: hsl(var(--theme-hue), 0%, 82%);
  --background-color: hsl(var(--accent-hue), 10%, 10%);
  --background-color-softer: hsl(var(--accent-hue), 10%, 15%);
  --code-background: hsl(var(--accent-hue), 10%, 5%);
  --button-primary-color: var(--text-color-richer);
  --button-background-color: hsl(var(--accent-hue), 95%, 35%);
  /* Note: Skeleton was based off a 10px font sizing for REM  */
  /* 62.5% of typical 16px browser default = 10px */
  --base-font-size: 62.5%;
  /* Grid Defaults - default to match orig skeleton settings */
  --grid-max-width: 1000px;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* CSS Grid depends much more on CSS than HTML, so there is less boilerplate
	 than with skeleton. Only basic 1-4 column grids are included.
	 Any additional needs should be made using custom CSS directives */
.grid-container {
  position: relative;
  max-width: var(--grid-max-width);
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-gap: 32px;
  gap: 32px;
  grid-column: 1;
  /* by default use min 200px wide columns auto-fit into width */
  grid-template-columns: minmax(200px, 1fr);
}
.grid-container .grid-container {
  padding: 0;
}

/* grids to 3 columns above mobile sizes */
@media (min-width: 768px) {
  /* basic grids */
  .grid-container.sixths {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-container.fifths {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-container.quarters {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-container.thirds {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-container.halves {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-container.full {
    grid-template-columns: 1fr;
  }
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Georgia", "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color-normal);
  background-color: var(--background-color);
  min-height: 100vh;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: var(--text-color-richer);
}

h1,
h2 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  font-size: 2.6rem;
  line-height: 1.3;
  letter-spacing: 0;
}

h4 {
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0;
}

h5 {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
}

h6 {
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: var(--accent-color);
  text-decoration: none;
  background-color: transparent;
}

a:hover,
a:focus {
  color: var(--accent-color-hover);
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  height: 4rem;
  padding: 0 3rem;
  color: var(--text-color-richer);
  text-align: center;
  font-size: 1em;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--button-background-color);
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  color: var(--text-color-richer);
  border-color: var(--text-color-softer);
  outline: 0;
  background-color: var(--accent-color-hover);
  transform: scale(1.05);
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  padding: 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: var(--background-color-softer);
  border: 1px solid var(--background-color-softer);
  border-radius: 5px;
  width: 100%;
  color: var(--button-primary-color);
}

select {
  cursor: pointer;
}

/*** Stefan ***/
input[name=contact_firstname],
label[for=contact_firstname],
input[name=contact_email_verify],
label[for=contact_email_verify] {
  display: none;
  height: 0;
  padding: 0;
}

.success-email {
  display: block;
  color: green;
  margin-bottom: 1em;
  font-size: 2em;
  font-style: italic;
}

.form-field-error {
  display: block;
  color: red;
}

/* Removes awkward default styles on some inputs for iOS */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
input[type=button],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

textarea {
  min-height: 7em;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

label {
  font-size: 0.7em;
  color: var(--text-color-softer);
}

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

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle outside;
  margin-left: 20px;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  font-size: 100%;
  margin: 1rem 0 1rem 3rem;
  color: var(--text-color-softer);
}

li {
  margin-bottom: 0.5rem;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 2rem;
}

pre,
blockquote,
dl,
table,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

img {
  border-style: none;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.main-navigation {
  display: block;
  width: 100%;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 1em;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  background-color: var(--background-color);
  padding: 2rem 0.5rem;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li {
  padding: 1em;
  border-bottom: 1px solid var(--background-color-softer);
  width: 90%;
  width: calc(100vw - 4rem);
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:last-child {
  border: none;
}
.main-navigation ul ul a {
  max-width: 100%;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: -2rem;
  display: block;
  top: 100%;
  z-index: 999999;
  padding: 1rem 0.5rem;
}
.main-navigation li {
  position: relative;
}
.main-navigation li:hover > a, .main-navigation li.focus > a {
  color: var(--accent-color);
  transition: all 0.4s ease;
}
.main-navigation a {
  display: block;
  text-decoration: none;
  color: var(--text-color-softer);
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

button.menu-toggle {
  background-color: transparent;
  border: none;
  padding: 0 0.5em;
  z-index: 999999;
}

.menu-toggle {
  position: absolute;
  top: 25px;
  right: 16px;
}

.main-navigation.toggled {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  height: 100vh;
  background: #242526;
  display: block;
  padding: 90px 15px;
  line-height: 60px;
  overflow-y: auto;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.mobile-menu-container {
  display: inline-block;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 28px;
  height: 4px;
  background-color: var(--text-color-softer);
  margin: 8px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 9px);
  transform: rotate(-45deg) translate(-9px, 9px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

ul.nav-menu > .menu-item-has-children > a::after {
  content: "▼";
  padding-left: 2em;
  font-size: 9px;
}

ul.sub-menu > .menu-item-has-children > a::after {
  content: "►";
  padding-left: 3px;
}

.is-active {
  color: var(--accent-color) !important;
}

.footer-menu {
  display: flex;
  justify-content: center;
}
.footer-menu ul {
  display: block;
  list-style: none;
  padding-top: 1em;
  line-height: 2.5em;
}
.footer-menu ul a {
  color: var(--text-color);
}
.footer-menu ul li a:hover {
  color: var(--accent-color-hover);
}

/****** Social menu */
.ks-social {
  padding: 2em 0;
  border-bottom: 2px solid #555;
  justify-self: center;
  align-self: center;
}
.ks-social ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 2em;
}
.ks-social ul li .ks-social-inner a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ks-social ul li .ks-social-inner svg {
  height: 22px;
  width: 22px;
  fill: var(--text-color-softer);
}
.ks-social ul li .ks-social-inner svg:hover {
  fill: var(--accent-color-hover);
  transition: all 0.4s ease;
}

/*** Breadcrumbs ***/
.breadcrumbs {
  display: flex;
  list-style: none;
  margin: 0;
}

ul.breadcrumbs > li > a:after {
  content: ">";
  padding-left: 0.8em;
  padding-right: 0.8em;
  margin-bottom: 0.5em;
  font-size: 0.7em;
}

ul.breadcrumbs > li:last-child > a:after {
  content: "";
}

@media screen and (min-width: 60rem) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: flex;
    justify-content: flex-end;
  }
  .main-navigation ul ul li {
    width: 330px;
    padding-left: 0;
  }
  .main-navigation li {
    margin-left: 2rem;
  }

  ul.nav-menu > .menu-item-has-children > a::after {
    padding-left: 5px;
  }

  .ks-social {
    margin-left: 0;
    margin-right: auto;
    border: none;
  }
  .ks-social ul {
    justify-content: flex-start;
  }
}
.abv {
  color: #05044e;
  color: #084a68;
  color: #31097b;
  color: #691390;
  color: #a7207a;
  color: #b8432e;
  color: #d17e47;
  color: #e7cf65;
  color: #cdfa85;
  color: #b1f89b;
  color: #eff8d8;
}

.swc_card {
  display: grid;
  grid-template-rows: 50px auto auto auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  justify-items: center;
  align-items: center;
  padding: 4rem 2rem;
  margin-block: 3rem;
}
.swc_card .swc_card_media {
  margin-bottom: 100px;
}
.swc_card .swc_card_svg {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  background-color: var(--background-color-softer);
  border-radius: 50%;
  padding: 2.5rem;
}
.swc_card h2,
.swc_card h3 {
  margin-block: 1rem;
  font-size: 1.5em;
}
.swc_card .swc_card_text {
  text-align: center;
}

.swc_card:hover {
  box-shadow: 0 0 12px black;
}
.swc_card:hover .swc_card_svg {
  background-color: var(--text-color-normal);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.swc_card:hover .swc_card_svg svg {
  fill: var(--background-color);
}

.swc_icon_text {
  display: grid;
  place-items: center;
  grid-template-rows: 1fr 1fr;
  padding: 1.2em 0.5em;
  background-color: var(--background-color-softer);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

.swc_two_thirds {
  order: 2;
}

.swc_img_background {
  display: grid;
  place-items: center;
  max-width: 100%;
  order: 1;
}

.swc_icon {
  display: inline;
  margin-right: 40px;
  position: relative;
  top: 0.15em;
}

.swc_start_icon {
  display: grid;
  grid-template-rows: max-content 1fr;
  gap: 2rem;
}
.swc_start_icon img {
  margin-top: 1.6em;
}

.swc_image_text,
.swc_text_image {
  display: grid;
  gap: 2em;
  align-items: center;
  place-items: center;
  grid-template-areas: "image" "text";
}
.swc_image_text div,
.swc_text_image div {
  grid-area: text;
  align-self: center;
}
.swc_image_text img,
.swc_image_text svg,
.swc_image_text picture,
.swc_text_image img,
.swc_text_image svg,
.swc_text_image picture {
  grid-area: image;
  vertical-align: middle;
}

@media screen and (min-width: 850px) {
  .swc_two_thirds {
    grid-column: span 2;
    order: initial;
  }

  .swc_image_text {
    grid-template-columns: 30% 65%;
    grid-template-areas: "image text";
    min-height: 350px;
  }

  .swc_text_image {
    grid-template-columns: 65% 35%;
    grid-template-areas: "text image";
    min-height: 350px;
  }

  .swc_start_icon {
    grid-template-columns: max-content 1fr;
  }
  .swc_start_icon img {
    margin-top: 1.6em;
  }
}
/**** Animation - requires javascript*/
.fade-in {
  opacity: 0;
  transition: opacity 650ms ease-in;
}

.fade-in.appear {
  opacity: 1;
}

.from-left {
  transform: translateX(-50%);
}

.from-right {
  transform: translateX(50%);
}

.from-left,
.from-right {
  transition: opacity 250ms ease-in, transform 400ms ease-in;
  opacity: 0;
}

.from-left.appear,
.from-right.appear {
  transform: translateX(0);
  opacity: 1;
}

.pulse {
  animation: pulse 1s infinite ease-in-out 1000ms alternate;
}

@keyframes pulse {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.2);
  }
}
/**** (end) Animation */
.video-popup {
  text-align: center;
  color: #ff6666;
  height: 30em;
  max-width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
}

.video-popup h2 {
  padding: 1em 0;
}

#mkLightboxContainer {
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100vh;
  min-width: 100vw;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#mkLightboxContainer > * {
  z-index: 99;
}

#overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

#mkLightboxContainer #mklbInner {
  position: relative;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  margin-left: 0;
}

section.imageContainer {
  margin: 0;
  padding: 1em;
  box-sizing: border-box;
  border: none;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}

#mkLightboxContainer img,
#mkLightboxContainer video {
  background: #fff;
  box-shadow: 0 0 30px #222;
  max-height: 85vh;
  min-width: auto;
  max-width: 75vw;
  width: auto;
  height: auto;
}

#mkLightboxContainer #yt-video {
  width: 75vw;
  height: 42.1875vw;
  /* 75*9/16 */
}

.mklbItem:hover {
  cursor: pointer;
  font-style: italic;
}

#closeIconContainer {
  width: 25px;
  height: 25px;
  position: fixed;
  top: 15px;
  right: 15px;
  transition: transform 0.2s linear;
}

#closeIconContainer:hover {
  cursor: pointer;
  transform: rotate(90deg);
}

#closeIconContainer svg,
#prev svg,
#next svg,
#stopGallery svg,
#playGallery svg {
  fill: white;
}

#prevContainer,
#nextContainer {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  padding: 10px 5px 10px 5px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
}

#nextContainer {
  left: auto;
  right: 0;
}

#prevContainer:hover,
#nextContainer:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.25);
}

#prev,
#next {
  width: 35px;
  height: 35px;
}

.grid {
  display: grid;
  align-content: flex-start;
  grid-gap: 1em;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid figure {
  width: 100%;
  margin: 0;
}

.grid img {
  width: 100%;
}

#controlContainer {
  position: absolute;
  top: 1em;
  left: 0.5em;
  display: flex;
}

#controlContainer > div {
  width: 2em;
}

#controlContainer > div:hover {
  cursor: pointer;
}

#controlContainer #stopGallery,
#controlContainer.stop #playGallery {
  opacity: 0.5;
}

#controlContainer.stop #stopGallery,
#controlContainer #playGallery {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .grid-2-sm {
    grid-template-columns: 1fr 1fr;
  }

  .video-popup {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .grid-12-xs {
    grid-template-columns: 1fr;
  }
}
.screen-reader-text {
  display: none;
}

.swc_hidden,
a.swc_hidden {
  display: none;
}

.swc_grid_order2 {
  order: 2;
}

.swc_grid_order1 {
  order: 1;
}

#page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.gradient-black {
  background: linear-gradient(135deg, #141110 0%, #1c1817 0%, #1f1a19 0%, #221c1c 12%, black 25%, #302827 39%, #302827 50%, #302827 51%, #302827 60%, black 76%, #1c1817 91%, #141110 100%);
}

main {
  margin: 0;
  padding: 0;
  min-height: 0;
}

button a,
button a:hover {
  color: var(--text-color-richer);
}

/*** Frontpage ***/
.hero__rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  gap: 3em;
  flex-wrap: wrap;
}
.hero__rows h1 {
  color: var(--text-color-richer);
  text-align: center;
  margin-top: 5rem;
}
.hero__rows p {
  font-size: 1.3em;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0;
  padding: 0 1em;
}
.hero__rows div {
  margin-top: auto;
  margin-bottom: auto;
}

.swc_home__hero {
  background: linear-gradient(135deg, #141110 0%, #1c1817 0%, #1f1a19 0%, #221c1c 12%, black 25%, #302827 39%, #302827 50%, #302827 51%, #302827 60%, black 76%, #1c1817 91%, #141110 100%);
  min-height: 100vh;
  padding-bottom: 2em;
  margin-bottom: 3em;
}

/*** (end) Frontpage ***/
.hero-background,
.swc_hero_section {
  background: linear-gradient(135deg, #141110 0%, #1c1817 0%, #1f1a19 0%, #221c1c 12%, black 25%, #302827 39%, #302827 50%, #302827 51%, #302827 60%, black 76%, #1c1817 91%, #141110 100%);
  height: 100%;
  min-height: 300px;
  color: var(--text-color-softer);
  margin-bottom: 2em;
}

.swc_hero_container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  flex-direction: column;
  perspective: 1000px;
}

.swc_hero_entry {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swc_hero_entry h1 {
  margin-bottom: auto;
  font-size: 2.5em;
  text-align: center;
}
.swc_hero_entry hr {
  display: block;
  width: 75px;
  height: 3px;
  line-height: 3px;
  background-color: var(--accent-color);
  margin: 0;
  border: 0;
  opacity: 0;
}
.swc_hero_entry p {
  padding: 0;
  font-size: 1.3em;
  margin-top: 1.5em;
  text-align: center;
}

#masthead {
  background: linear-gradient(135deg, #141110 0%, #1c1817 0%, #1f1a19 0%, #221c1c 12%, black 25%, #302827 39%, #302827 50%, #302827 51%, #302827 60%, black 76%, #1c1817 91%, #141110 100%);
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpml-ls-flag {
  margin-right: 3px;
}

.logo-container {
  display: block;
  margin-right: 1rem;
}

.logo {
  background: url("../img/keysoft-white-logo.svg") no-repeat center center/cover;
  display: block;
  width: 200px;
  height: 57px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.above-header {
  padding-top: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}

.swc_group_infobox {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.swc_grid_item_center {
  display: flex;
  align-items: center;
}

.swc_address {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.swc_address h2 {
  margin-top: 0;
}
.swc_address ul > li {
  margin: 1em 0;
  display: flex;
  gap: 1em;
  align-items: center;
}

.swc_emph {
  font-weight: 700;
  color: white;
}

.swc_boxshadow {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 1em;
}
.swc_boxshadow:hover {
  box-shadow: 0 0 12px black;
}

.swc_rounded {
  border-radius: 10px;
}

ul {
  list-style-image: url("../img/checked.svg");
}
ul li {
  padding-left: 5px;
}

/******** swc cookie consent ***/
#swc_cookie_wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  color: var(--text-color-normal-softer);
  text-align: center;
  z-index: 1;
}
#swc_cookie_wrapper p {
  text-align: left;
  font-size: 0.9em;
}
#swc_cookie_wrapper .cookie__title {
  color: var(--text-color-normal);
  font-size: 1.2em;
  text-align: center;
}
#swc_cookie_wrapper button {
  border: 1px solid #000;
}
#swc_cookie_wrapper a {
  margin-left: 2rem;
}

#swc_cookie_wrapper.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 300ms ease;
}

/******** (end) swc cookie consent ***/
.swc_flex_halign_center {
  justify-self: center;
}

.above-site-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-info {
  text-align: center;
  padding: 2em 0;
  border-top: 2px solid var(--background-color-softer);
}

.back-to-top-wrapper {
  justify-self: center;
  align-self: center;
}

a.back-to-top-link {
  display: block;
  line-height: 3rem;
  border-radius: 50%;
  background-color: var(--background-color-softer);
  margin: 1em 0;
  padding: 1.5em;
  color: var(--text-color-richer);
}
a.back-to-top-link:visited {
  color: var(--accent-color);
}
a.back-to-top-link:hover {
  background-color: var(--code-background);
  color: var(--accent-color-hover);
}

/********* swc breadcrumbs */
#swc_breadcrumbs {
  padding-top: 1em;
  font-size: 0.8em;
}

/************* Accordion - necesita js ******/
summary {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  padding: 1em;
  cursor: pointer;
  border-radius: 8px;
}
summary h3 {
  display: inline;
  font-size: 1.1em;
  padding: 0;
  margin: 0;
}
summary::before {
  content: "";
  margin-right: 0.5em;
}

summary:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
  color: var(--accent-color);
}
summary:hover h3 {
  color: var(--accent-color);
}

details[open] summary ~ * {
  animation: open 0.6s ease;
}

@keyframes open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/************* (end) Accordion */
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 180px;
  }

  .swc_grid_order1,
.swc_grid_order2 {
    order: initial;
  }

  .swc_hero_container {
    flex-direction: row;
    justify-content: space-between;
  }
  .swc_hero_container img {
    margin-right: 0;
  }

  .swc_hero_entry {
    align-items: flex-start;
  }
  .swc_hero_entry p,
.swc_hero_entry h1 {
    text-align: left;
  }
  .swc_hero_entry hr {
    opacity: 1;
  }

  .featuredImage {
    border-radius: 10px;
  }

  .sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    height: 70px;
    transition: all 0.4s ease;
  }
  .sticky-header .grid-container {
    padding-top: 7px;
  }

  .sticky-header + .content {
    padding-top: 90px;
  }

  .above-site-info {
    flex-direction: row;
  }

  #swc_cookie_wrapper {
    bottom: 50px;
    left: 50px;
    max-width: 400px;
  }

  .back-to-top-wrapper {
    padding: 0;
    justify-self: center;
    margin-right: 0;
    margin-left: auto;
  }

  .swc_flex_row {
    flex-direction: row;
  }

  .swc_boxshadow {
    padding: 2em;
  }

  .swc_flex_valign_center {
    align-self: center;
  }
}
pre {
  background-color: #333333;
  margin: 1rem 0;
  border-bottom: 1px solid #c1bfbf;
  border-right: 1px solid #c1bfbf;
}

code {
  font-size: 0.9em;
  font-family: "Courier New", Courier, monospace;
  font-weight: 600;
  display: block;
  text-wrap: wrap;
}

.code {
  font-size: 0.9em;
  font-family: "Courier New", Courier, monospace;
  font-weight: 600;
  display: block;
  text-wrap: wrap;
}

table {
  padding: 1em;
}
