/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  display: inline-block;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
}

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

figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display: flex;
}

:root {
  --white: #fff;
  --beige: #f1ead6;
  --black: #000;
  --accent: #6f00ff;
  --accent-soft: #780fff;
  --font-primary: "TT Commons Pro", sans-serif;
  --font-secondary: "TT Drugs", sans-serif;
  --fw-base: 600;
  --fw-secondary: 500;
  --site-padding: clamp(16px, 2.142857vw, 36px);
  --gap: clamp(16px, 1.190476vw, 20px);
  --transition-base: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@font-face {
  font-family: "TT Commons Pro";
  src: url("../fonts/TT_Commons_Pro_DemiBold.woff2") format("woff2"), url("../fonts/TT_Commons_Pro_DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Drugs";
  src: url("../fonts/TT_Drugs_Medium.woff2") format("woff2"), url("../fonts/TT_Drugs_Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--gap);
  width: 100%;
  padding-inline: var(--site-padding);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  background-color: var(--accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-base);
  font-size: 1rem;
  line-height: 1;
  color: var(--white);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

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

*:focus-visible {
  outline-color: red;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 4px;
}

section.main {
  height: 100lvh;
}
section.main .container {
  height: 100svh;
}
section.main .container .row {
  padding-block: clamp(20px, 1.666667vw, 28px) 1rem;
  height: 100%;
  grid-template-rows: max-content max-content 1fr max-content;
}
section.main .container .row .logo {
  grid-column: 1/span 8;
  grid-row: 1;
}
section.main .container .row .logo svg {
  width: 100%;
  height: auto;
}
section.main .container .row .logo svg path {
  fill: var(--white);
}
section.main .container .row .infos {
  grid-column: 1/span 8;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
}
section.main .container .row .infos p {
  font-size: clamp(24px, 1.904762vw, 32px);
  line-height: 1;
}
section.main .container .row .big-button {
  grid-column: 1/span 8;
  grid-row: 3;
  align-self: center;
  position: relative;
  display: flex;
  font-size: clamp(32px, 4.285714vw, 72px);
  font-family: var(--font-secondary);
  font-weight: var(--fw-secondary);
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
  color: var(--accent);
  border-radius: 100vmax;
}
section.main .container .row .big-button .btn-row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 1.190476vw, 20px) clamp(20px, 2.380952vw, 40px);
  white-space: nowrap;
  transition: transform var(--transition-base), padding var(--transition-base);
}
section.main .container .row .big-button .btn-row--second {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
section.main .container .row .big-button:hover .btn-row {
  padding-block: clamp(20px, 2.380952vw, 40px);
}
section.main .container .row .big-button:hover .btn-row--first {
  transform: translateY(-100%);
}
section.main .container .row .big-button:hover .btn-row--second {
  transform: translateY(0);
}
section.main .container .row .footer {
  grid-column: 1/span 8;
  grid-row: 4;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  section.main .container .row .footer {
    flex-direction: column;
    gap: 1rem;
  }
}
section.main .container .row .socials,
section.main .container .row .dsgvo {
  display: flex;
  gap: 0.5rem;
}
section.main .container .row .socials li,
section.main .container .row .dsgvo li {
  display: flex;
}
section.main .container .row .socials li .btn,
section.main .container .row .dsgvo li .btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--white);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.5em 1em;
  border-radius: 100vmax;
  color: var(--accent);
  transition: opacity var(--transition-base);
}
section.main .container .row .socials li .btn:has(svg),
section.main .container .row .dsgvo li .btn:has(svg) {
  padding: 0.5em 1.5em 0.5em 1em;
}
section.main .container .row .socials li .btn svg,
section.main .container .row .dsgvo li .btn svg {
  width: clamp(20px, 1.428571vw, 24px);
  height: auto;
}
section.main .container .row .socials li .btn:hover,
section.main .container .row .dsgvo li .btn:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */