@charset "UTF-8";

:root {
  --color-blue: #1200ff;
  --color-darkblue: rgb(12, 0, 181);
  --color-brightblue: #52daff;
  --color-white: #ffffff;
  --color-white-half: rgba(255, 255, 255, 0.5);
  --color-black: #000000;
  --color-black-half: rgba(0, 0, 0, 0.5);
  --color-error: #ff5cff;
  --font-main: "Formale Grotesque N3", Arial, Helvetica, sans-serif;
  --font-main-strong: "Formale Grotesque B2", Arial, Helvetica, sans-serif;
  --font-title: "Formale Grotesque B2", Arial, Helvetica, sans-serif;
  --font-nav1: "Formale Grotesque B2", Arial, Helvetica, sans-serif;
  --font-nav2: "Formale Grotesque N3", Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "Formale Grotesque B2";
  src:
    url("https://theatereffinger.ch/template/theatereffinger/fonts/FormaleGrotesque-B2.woff2") format("woff2"),
    url("https://theatereffinger.ch/template/theatereffinger/fonts/FormaleGrotesque-B2.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Formale Grotesque N3";
  src:
    url("https://theatereffinger.ch/template/theatereffinger/fonts/FormaleGrotesque-N3.woff2") format("woff2"),
    url("https://theatereffinger.ch/template/theatereffinger/fonts/FormaleGrotesque-N3.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  min-height: 100%;
  background-color: var(--color-blue);
  font-family: var(--font-main);
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.3;
  -webkit-text-size-adjust: none;
}

body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active {
  outline: none;
  outline: 0;
}

a {
  color: var(--color-brightblue);
  text-decoration: none;
}

a:hover,
a:active {
  color: var(--color-white);
  text-decoration: none;
}

strong,
b {
  font-family: var(--font-main-strong);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 60px);
  max-width: 1178px;
  height: auto;
}

/* Header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-color: var(--color-blue);
  z-index: 9999999;
}

header .inner {
  display: flow-root;
  height: 129px;
  border-bottom: 1px solid var(--color-white-half);
}

header .logo {
  float: left;
  margin: 46px 0 0 -56px;
  width: 66%;
  max-width: 334px;
}

header .logo img {
  float: left;
  width: 100%;
}

header .navigation {
  float: right;
  margin: 42px 0 10px 0;
  width: calc(100% - 334px);
}

nav {
  float: left;
  margin: 0 0 6px 0;
  width: 100%;
}

nav ul {
  float: right;
  margin: 0;
  padding: 0;
  width: auto;
}

nav ul li {
  position: relative;
  margin: 0;
  padding: 0;
  display: inline;
  list-style: none;
  font-family: var(--font-nav2);
}

nav ul li::before {
  content: none;
}

nav a {
  float: left;
  padding: 0;
  margin: 0 0 0 16px;
  color: var(--color-white);
  text-decoration: none;
}

nav a:hover,
nav a:active,
nav ul li.active a {
  color: var(--color-brightblue);
}

/* Mobile navigation */

.navMobileIcon {
  display: none;
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 48px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.navMobileIcon span {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-white);
}

.navMobileIcon span:before,
.navMobileIcon span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  content: "";
}

.navMobileIcon span:before {
  top: -10px;
}

.navMobileIcon span:after {
  width: 70%;
  bottom: -10px;
}

.navMobileIconX span {
  transition: background-color 0s 0.3s;
}

.navMobileIconX span:before,
.navMobileIconX span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.navMobileIconX span:before {
  transition-property: top, transform;
}

.navMobileIconX span:after {
  transition-property: bottom, transform;
}

.navMobileIconX.is-active span {
  background: none;
}

.navMobileIconX.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}

.navMobileIconX.is-active span:after {
  bottom: 0;
  transform: rotate(-45deg);
  width: 100%;
}

.navMobileIconX.is-active span:before,
.navMobileIconX.is-active span:after {
  transition-delay: 0s, 0.3s;
}

#navMobile {
  position: fixed;
  right: -100%;
  top: 130px;
  width: 100%;
  height: calc(100% - 130px);
  min-height: calc(100% - 130px);
  background: var(--color-blue);
  z-index: 10010;
  transition: all 0.3s ease-in-out;
  overflow-x: hidden;
  overflow-y: auto;
}

#navMobile.open {
  right: 0;
}

#navMobile ul {
  position: relative;
  float: left;
  margin: 30px;
  padding: 0;
  width: calc(100% - 60px);
}

#navMobile ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

#navMobile ul li::before {
  content: none;
}

#navMobile ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 12px 0;
  width: 100%;
  display: block;
  font-family: var(--font-nav2);
  font-size: 1.3em;
  text-decoration: none;
  color: var(--color-white);
}

/* Main */

main {
  float: left;
  margin-top: 130px;
  padding: 50px 0 100px 0;
  width: 100%;
  min-height: calc(100vh - 500px);
}

main a {
  text-decoration: underline;
}

main a:hover,
main a:active {
  color: var(--color-white);
  text-decoration: underline;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: var(--font-nav1);
  margin: 22px 0 8px 0;
  color: var(--color-white);
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 2.5rem;
  margin: 0 0 28px 0;
  line-height: 1;
  color: var(--color-brightblue);
}

h2,
.h2 {
  font-family: var(--font-title);
  font-size: 2.9rem;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  color: var(--color-white);
}

h3,
.h3 {
  line-height: 1;
  font-size: 1.5rem;
  text-transform: none;
}

h4,
.h4 {
  margin-bottom: 8px;
  font-family: var(--font-nav2);
  font-size: 1.3rem;
  text-transform: none;
}

p {
  margin-bottom: 8px;
  hyphens: auto;
}

blockquote p {
  margin: 20px 0;
  font-family: var(--font-nav1);
  font-size: 1.5rem;
  line-height: 1.1;
}

.font-yellow {
  color: var(--color-brightblue);
}

/* Intro layout */

.page-intro {
  float: left;
  width: 100%;
  margin-bottom: 24px;
}

.act {
  float: left;
  margin: 0 -20px;
  width: calc(100% + 40px);
}

.act .act-column {
  float: left;
  width: 50%;
}

.act article {
  position: relative;
  float: left;
  margin: 0 20px;
  width: calc(100% - 40px);
}

.act .act-title,
.act .side-meta {
  min-height: 50%;
  padding-bottom: 17px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-white-half);
}

.side-meta {
  border-top: 1px solid var(--color-white-half);
  padding-top: 18px;
}

/* Alerts */

.alert {
  float: left;
  width: 100%;
  padding: 14px 0 18px 0;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--color-white-half);
}

.alert strong {
  display: block;
  margin-bottom: 8px;
}

.alert ul {
  margin-left: 25px;
  padding-bottom: 0;
}

.alert ul li {
  margin: 0 0 8px 18px;
}

.alert-success {
  color: var(--color-white);
}

.alert-error {
  color: var(--color-error);
}

.alert-error ul li::before {
  color: var(--color-error);
}

/* Form shell */

.geno-form-shell {
  float: left;
  width: 100%;
}

form,
fieldset {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}

.question-card,
.form-section {
  float: left;
  width: 100%;
  margin: 0 0 26px 0;
  padding: 0 0 22px 0;
  border-bottom: 1px solid var(--color-white-half);
}

.question-card legend,
.form-section h2 {
  float: left;
  margin: 0 0 16px 0;
  padding: 0;
  width: 100%;
  font-family: var(--font-main-strong);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-white);
}

.form-section h2 {
  text-transform: none;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
}

.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  background: transparent;
  cursor: pointer;
}

.choice-card span {
  line-height: 1.4;
  color: var(--color-white);
}

.choice-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-white-half);
  border-radius: 50%;
  background: var(--color-blue);
  margin-top: 2px;
  position: relative;
  flex: 0 0 22px;
}

.choice-card input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 1.05rem;
  color: var(--color-white);
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  float: none;
  margin: 0;
  padding: 10px 0 6px 0;
  width: 100%;
  height: 42px;
  border: none;
  border-bottom: 1px solid var(--color-white-half);
  background-color: transparent;
  outline: none;
  font-family: var(--font-main);
  font-size: 1.3rem;
  color: var(--color-white);
  border-radius: 0;
  box-shadow: none;
}

textarea {
  padding-top: 12px;
  min-height: 124px;
  height: 124px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: var(--color-white);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--color-white);
  -webkit-box-shadow: 0 0 0px 1000px var(--color-blue) inset;
  transition: background-color 5000s ease-in-out 0s;
}

select {
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-white) 50%),
    linear-gradient(135deg, var(--color-white) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select option {
  color: var(--color-black);
  background: var(--color-white);
}

::placeholder {
  color: var(--color-white-half);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-white);
  line-height: 1.45;
}

.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-white-half);
  background: var(--color-blue);
  margin-top: 3px;
  position: relative;
  flex: 0 0 22px;
}

.check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-field a {
  color: var(--color-brightblue);
  text-decoration: underline;
}

.checkbox-field a:hover {
  color: var(--color-white);
}

.actions {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 22px 10px 22px;
  min-height: 48px;
  border: 1px solid var(--color-brightblue);
  background-color: var(--color-brightblue);
  font-family: var(--font-main-strong);
  font-size: 1rem;
  color: var(--color-blue);
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.btn:hover,
.btn:active {
  color: var(--color-brightblue);
  background-color: var(--color-blue);
}

.hidden {
  display: none;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Footer */

.block,
.block2 {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -11px;
  width: calc(100% + 22px);
}

.block.fifth {
  width: calc(20% - 22px);
  margin: 0 11px;
}

footer {
  float: left;
  position: relative;
  padding: 136px 0 60px 0;
  width: 100%;
  background-color: #ececec;
  background-image:
    url("https://theatereffinger.ch/template/theatereffinger/images/bg_footer_2.svg"),
    url("https://theatereffinger.ch/template/theatereffinger/images/bg_footer_1.svg");
  background-position: right 110%, left top;
  background-repeat: no-repeat;
  background-size: 100% auto, 100% auto;
  box-sizing: border-box;
  z-index: 20;
  margin-top: 60px;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer p {
  color: var(--color-blue);
  line-height: 1.2;
}

footer a {
  color: var(--color-black);
  line-height: 1.2;
}

footer h4 {
  margin: 15px 0 5px 0;
  font-family: var(--font-main);
  font-size: 1.3rem;
}

footer a:hover,
footer a:active {
  text-decoration: underline;
  color: var(--color-black);
}

ul.socialmedia {
  margin: 5px 0 0 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

ul.socialmedia li {
  float: left;
  margin: 0 2px 0 0;
  padding: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
}

ul.socialmedia li::before {
  content: none;
}

ul.socialmedia li a {
  display: block;
  margin: 0;
  padding-left: 34px;
  width: 34px;
  height: 34px;
  background-size: 34px auto;
  background-position: top left;
  background-repeat: no-repeat;
  background-color: var(--color-blue);
  overflow: hidden;
  white-space: nowrap;
}

ul.socialmedia li a:hover,
ul.socialmedia li a:active {
  background-color: var(--color-black);
}

li.facebook a {
  background-image: url("https://theatereffinger.ch/template/theatereffinger/images/icon_sm_facebook.svg");
}

li.youtube a {
  background-image: url("https://theatereffinger.ch/template/theatereffinger/images/icon_sm_youtube.svg");
}

li.instagram a {
  background-image: url("https://theatereffinger.ch/template/theatereffinger/images/icon_sm_instagram.svg");
}

li.linkedin a {
  background-image: url("https://theatereffinger.ch/template/theatereffinger/images/icon_sm_linkedin.svg");
}

/* Responsive */

@media only screen and (max-width: 1370px) {
  header .logo {
    position: fixed;
    margin: 0;
    top: 46px;
    left: 30px;
  }
}

@media only screen and (max-width: 1260px) {
  header .logo {
    position: relative;
    margin: 46px 0 0 0;
    top: inherit;
    left: inherit;
  }
}

@media only screen and (max-width: 1120px) {
  nav a {
    margin: 0 0 0 10px;
  }
}

@media only screen and (max-width: 1020px) {
  header .navigation {
    display: none;
  }

  .navMobileIcon {
    display: block;
  }

  .act .act-column {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  footer {
    background-position: right bottom, left top;
  }

  .block.fifth {
    width: calc(50% - 22px);
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 780px) {
  .inner {
    width: calc(100% - 30px);
  }

  header .logo {
    margin-top: 50px;
    max-width: 270px;
  }

  main {
    padding: 35px 0 70px 0;
  }

  h2,
  .h2 {
    font-size: 2.2rem;
  }

  blockquote p {
    font-size: 1.25rem;
  }

  .question-card legend,
  .form-section h2 {
    font-size: 1.25rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea,
  select {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .block.fifth {
    width: calc(100% - 22px);
  }
}

@media (max-width: 400px) {
  footer {
    background-size: 150% auto, 160% auto;
  }
}