@charset "UTF-8";
html,
body {
  background-color: var(--black);
  color: var(--white);
  font-variant-ligatures: none;
  font-size: 16px;
  position: relative;
  width: 100%;
  font-family: "Proxima Nova", sans-serif;
  font-display: swap;
  font-weight: normal;
  overflow-x: hidden;
}
@media (min-width: 2000px) {
  html,
  body {
    font-size: 0.8vw;
  }
}
@media (max-width: 1250px) {
  html,
  body {
    font-size: 1.25vw;
  }
}
@media (max-width: 500px) {
  html,
  body {
    font-size: 3.5vw;
  }
}

body::before {
  content: "";
  display: block;
  height: 0;
  padding-top: 5rem;
}

body * {
  box-sizing: border-box;
}

section,
main,
header,
footer {
  position: relative;
}

.middle {
  margin: 0px auto;
  width: 70rem;
}
@media (max-width: 500px) {
  .middle {
    width: 25rem !important;
  }
}
.middle.pad {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 500px) {
  .middle.pad.shrink {
    padding-left: 0;
    padding-right: 0;
  }
}

.notices {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
}
.notices.is-bottom-right {
  flex-direction: column-reverse;
  align-items: flex-end;
}
.notices .notification {
  animation-duration: 0.15s;
  margin: 0.5em 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  /* border-radius: 4px; */
  pointer-events: auto;
  min-height: 3em;
  position: relative;
  transform: translateX(calc(100% + 2em));
  transition: all 0.5s, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35), opacity 0.3s ease, height 0.5s ease;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}
.notices .notification.active {
  transform: translateX(0%);
}
.notices .notification.is-success {
  background-color: var(--black);
}
.notices .notification.is-danger {
  background-color: var(--red);
}
.notices .notification.is-warning {
  background-color: var(--red-light);
}
.notices .notification.is-info {
  background-color: var(--grey);
}
.notices .notification .progress {
  margin-top: 0.5em;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}
.notices .notification .progress::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.3);
}
.notices .notification .progress::-webkit-progress-value {
  background-color: #fff;
}
.notices .notification .progress::-moz-progress-bar {
  background-color: #fff;
}
.notices .notification .delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notices .notification .delete:before {
  content: "×";
  font-size: 1.2rem;
  line-height: 1;
  color: inherit;
  display: block;
}
.notices .notification .delete:hover {
  color: #fff;
}
.notices .notification.is-closing {
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 500px) {
  .notices {
    padding: 0;
    position: fixed !important;
  }
  .notices .notification {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .notices .notification {
    min-width: 350px;
    max-width: 600px;
    overflow: hidden;
  }
}
header {
  position: fixed;
  z-index: 1000;
  top: 0;
  height: 5rem;
}
header .bar {
  height: 5rem;
  background-color: var(--black);
  z-index: 2;
  position: relative;
}
header .logo {
  aspect-ratio: 34/7;
  background-image: url(../assets/images/element-logo.svg);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 3rem;
  margin-top: 1rem;
}
header .hamburger {
  width: 5rem;
  height: 5rem;
  margin-right: -1.25rem;
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 500px) {
  header .hamburger {
    display: block;
  }
}
header .hamburger > div {
  width: 2.5rem;
  height: 2rem;
  position: relative;
}
header .hamburger > div > div {
  width: 100%;
  height: 3px;
  background-color: var(--gold);
  position: absolute;
  left: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .hamburger > div > div:nth-of-type(1) {
  top: 0;
}
header .hamburger > div > div:nth-of-type(2), header .hamburger > div > div:nth-of-type(3) {
  top: calc(50% - 1.5px);
}
header .hamburger > div > div:nth-of-type(4) {
  bottom: 0;
}
.showmenu header .hamburger > div > div:nth-of-type(1), .showmenu header .hamburger > div > div:nth-of-type(4) {
  width: 0;
  left: 50%;
}
.showmenu header .hamburger > div > div:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.showmenu header .hamburger > div > div:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header nav {
  display: flex;
  justify-content: flex-end;
  user-select: none;
}
header nav a {
  padding: 0 1.5rem;
  font-size: 1.5rem;
  line-height: 5rem;
}
header nav a:hover, header nav a:focus {
  text-decoration: none;
  background: linear-gradient(20deg, rgb(205, 161, 53) 0%, rgb(243, 215, 115) 50%, rgb(205, 161, 53) 100%);
  color: var(--black);
}
@media (max-width: 500px) {
  header nav {
    display: none;
  }
  .showmenu header nav {
    display: block;
    position: absolute;
    left: 0;
    top: 5rem;
    width: 100%;
    background-color: var(--black);
    border-top: 1px solid;
    border-color: var(--gold);
  }
  .showmenu header nav a {
    padding: 0 calc(50vw - 12.5rem);
    display: block;
    border-bottom: 1px solid;
    border-color: var(--gold);
  }
}

footer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
[data-page=summary] footer, [data-page=pozvanka] footer {
  border-top: 0.25rem solid;
  border-color: var(--gold);
  padding-top: 3rem;
}
footer strong {
  color: var(--gold);
}
footer .contact {
  font-size: 1rem;
  line-height: 150%;
  display: flex;
}
footer .contact a {
  text-decoration: none;
  padding-left: 1.75rem;
  background-size: auto 1.1rem;
  background-position: left 0.2rem;
  background-repeat: no-repeat;
}
footer .contact a.linkmail {
  background-image: url(../assets/images/icon-mail.svg);
}
footer .contact a.linkphone {
  background-image: url(../assets/images/icon-phone.svg);
}
footer .contact a:focus {
  outline: 1px dotted;
  outline-offset: 0.25rem;
  outline-color: var(--gold-light);
}
footer .contact a + a {
  margin-left: 1.5rem;
}
@media (max-width: 500px) {
  footer .contact a + a {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
@media (max-width: 500px) {
  footer .contact {
    flex-direction: column;
    align-items: flex-start !important;
    align-content: flex-start !important;
  }
}
footer .weblinks {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.5rem;
  display: flex;
}
@media (max-width: 500px) {
  footer .weblinks {
    flex-wrap: wrap;
  }
}
footer .weblinks a {
  text-decoration: none;
  padding: 0 0.75rem;
  border: 1px solid;
  border-color: var(--gold);
  color: var(--gold);
  margin: 0 0.5rem 0.5rem 0;
}
footer .weblinks a:hover, footer .weblinks a:focus {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

section.tip {
  background: linear-gradient(20deg, rgb(205, 161, 53) 0%, rgb(243, 215, 115) 50%, rgb(205, 161, 53) 100%);
  padding: 3.5rem 0;
  color: var(--black);
}
section.tip .lucia {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  margin-left: -2.5rem;
  background-image: url(../assets/images/lucia-red.jpg);
  background-position: center;
  background-size: cover;
}
@media (max-width: 500px) {
  section.tip .lucia {
    margin-left: 0;
  }
}
section.tip .lucia + div {
  width: 42.5rem;
}
@media (max-width: 500px) {
  section.tip .lucia + div {
    width: 100%;
    margin-top: 2rem;
  }
}
section.tip .lucia + div p {
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 300;
}
section.tip h1 {
  font-size: 2.5rem;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
section.tip .sign {
  height: 4.5rem;
  margin-top: 0.5rem;
  background-position: left center;
  background-image: url(../assets/images/sign-black.svg);
}

section.produkt {
  padding-top: 4.5rem;
}
section.produkt .middle > div {
  width: 30rem;
}
@media (max-width: 500px) {
  section.produkt .middle > div {
    width: 100%;
  }
  section.produkt .middle > div.mmt25 {
    margin-top: 2.5rem;
  }
  section.produkt .middle > div.mmt50 {
    margin-top: 5rem;
  }
}
section.produkt h1, section.produkt span {
  color: var(--gold-light);
}
section.produkt .upper {
  text-transform: uppercase;
}
section.produkt h1 {
  font-size: 1.5rem;
  line-height: 150%;
  margin-bottom: 0.5rem;
  font-family: "Span";
  font-weight: 700;
}
section.produkt h1.sans {
  font-size: 2rem;
  line-height: 150%;
  font-family: "Proxima Nova";
}
section.produkt h1.sans.upper {
  text-transform: uppercase;
}
section.produkt .fauxli p {
  padding-left: 1.5em;
  background-repeat: no-repeat;
  background-size: 0.75em auto;
  background-position: left 0.275em;
}
section.produkt .fauxli.arrow p {
  background-image: url(../assets/images/icon-arrow.svg);
}
section.produkt .fauxli.dash p {
  background-image: url(../assets/images/icon-dash.svg);
}
section.produkt .badge {
  margin: 5rem 0;
}

[data-produkt=zensen] .pic.i1 {
  background-image: url(../assets/data/zensen1.jpg);
}

[data-produkt=zensen] .pic.i2 {
  background-image: url(../assets/data/zensen2.jpg);
}

[data-produkt=zensen] .pic.i3 {
  background-image: url(../assets/data/zensen3.jpg);
}

[data-produkt=sera] .pic.i1 {
  background-image: url(../assets/data/serum1.jpg);
}

[data-produkt=sera] .pic.i2 {
  background-image: url(../assets/data/serum2.jpg);
}

[data-produkt=sera] .pic.i3 {
  background-image: url(../assets/data/serum3.jpg);
}

[data-produkt=masky] .pic.i1 {
  background-image: url(../assets/data/masky1.jpg);
}

[data-produkt=masky] .pic.i2 {
  background-image: url(../assets/data/masky2.jpg);
}

[data-produkt=masky] .pic.i3 {
  background-image: url(../assets/data/masky3.jpg);
}

main .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 500px) {
  main .grid {
    grid-template-columns: 1fr;
  }
}
main .grid > div {
  background-color: var(--grey);
}
[data-produkt=zensen] main .grid > div + div {
  background-color: var(--red);
}
[data-produkt=masky] main .grid > div + div {
  background-color: var(--grey-dark);
}
@media (max-width: 500px) {
  main .grid > div:nth-of-type(1) .link {
    display: none;
  }
}
main .grid > div:nth-of-type(2) .link {
  display: none;
}
@media (max-width: 500px) {
  main .grid > div:nth-of-type(2) .link {
    display: block;
  }
}
main .pic {
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  width: 50%;
}
main .pic.i1 {
  width: 100%;
}
main .price {
  padding: 2rem 2.5rem 2.5rem;
}
main .price h1 {
  font-size: 3rem;
  line-height: 120%;
  font-weight: 700;
  font-family: "Span";
  color: var(--gold-light);
  margin-bottom: 1rem;
}
main .price h1 + p {
  font-size: 1.5rem;
  line-height: 150%;
  height: 11rem;
  overflow: hidden;
}
@media (max-width: 500px) {
  main .price h1 + p {
    height: auto;
    margin-bottom: 1rem;
  }
}
main .line {
  margin-top: 1.5rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--white);
  user-select: none;
}
main .line div + p {
  text-align: right;
  font-size: 2.5rem;
  line-height: 4rem;
  font-weight: 700;
}
main .line div > p {
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 120%;
}
main .line div > p span {
  text-decoration: line-through;
}
main .serum {
  background-color: var(--grey);
  padding: 0 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 500px) {
  main .serum {
    grid-template-columns: 1fr;
  }
}
main .serum h1 {
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 700;
  font-family: "Span";
  margin-bottom: 0;
  color: var(--gold-light);
}
main .serum h1 + p {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
  border-color: var(--white);
}
main .serum .pic {
  aspect-ratio: 19/13;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  margin-top: 1.5rem;
}
main .serum > div:nth-of-type(1) .pic {
  background-image: url(../assets/data/pdrn.png);
}
main .serum > div:nth-of-type(2) .pic {
  background-image: url(../assets/data/retinoids.png);
}
main .serum > div:nth-of-type(3) .pic {
  background-image: url(../assets/data/spicule.png);
}
main .serum .button {
  margin: 2rem auto 0;
}
main .link {
  padding-top: 1.5rem;
}
main .link .button {
  margin: 0px auto;
}
@media (max-width: 500px) {
  main .link {
    padding: 2rem 0;
    background-color: var(--grey);
  }
}
main .message {
  background-color: var(--grey);
  padding: 2.5rem 2.5rem 2rem;
}
main .message div:nth-of-type(1) {
  width: 36.5rem;
  color: var(--gold);
}
@media (max-width: 500px) {
  main .message div:nth-of-type(1) {
    width: 100%;
  }
}
main .message div:nth-of-type(1) h1 {
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 400;
}
main .message div:nth-of-type(1) p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 150%;
}
main .message div:nth-of-type(1) .sign {
  height: 4.5rem;
  margin-top: 1rem;
  background-position: right center;
  background-image: url(../assets/images/sign-gold.svg);
}
main .message .lucia {
  aspect-ratio: 1/1;
  width: 25rem;
  background-position: center;
  background-size: cover;
  background-image: url(../assets/images/lucia-gold.jpg);
  border-radius: 50%;
}
@media (max-width: 500px) {
  main .message .lucia {
    width: 100%;
    margin-top: 2rem;
  }
}
main .portfolio {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 500px) {
  main .portfolio {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
main .portfolio [data-produkt=zensen] {
  background-color: var(--red);
}
main .portfolio [data-produkt=masky] {
  background-color: var(--grey-dark);
}
main .portfolio [data-produkt=sera] {
  background-color: var(--grey);
}
main .portfolio .tx {
  padding: 2.5rem 2.25rem 4rem;
  color: var(--gold-light);
  position: relative;
  text-align: center;
}
main .portfolio .tx h1 {
  font-size: 1.5rem;
  line-height: 100%;
  font-weight: 700;
  font-family: "Span";
  margin-bottom: 1rem;
}
main .portfolio .tx h1 + p {
  height: 12rem;
  overflow: hidden;
  font-size: 1rem;
  line-height: 150%;
}
@media (max-width: 500px) {
  main .portfolio .tx h1 + p {
    height: auto;
  }
}
main .portfolio .tx .button {
  position: absolute;
  left: calc(50% - 6.25rem);
  bottom: -2rem;
}

section.about {
  padding: 5rem 0 10rem;
}
section.about h1 {
  margin: 2rem 0;
  font-size: 2rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--gold-light);
  font-family: "Span";
  text-align: center;
}
section.about h1 + .flex > p {
  font-size: 1rem;
  line-height: 150%;
  width: 31rem;
}
@media (max-width: 500px) {
  section.about h1 + .flex > p {
    width: 100%;
  }
  section.about h1 + .flex > p + p {
    margin-top: 1rem;
  }
}

section.form {
  padding: 4rem 0 10rem;
}
section.form .middle {
  width: 40rem;
}
section.form .middle h1 {
  font-size: 1.5rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--gold-light);
  font-family: "Span";
  text-align: center;
  margin-bottom: 1rem;
}
section.form .middle h1 + p {
  font-size: 1rem;
  line-height: 150%;
  color: var(--gold-light);
}
section.form .middle form {
  margin-top: 3rem;
}
section.form .middle form input {
  width: 100%;
  height: 4rem;
  background-color: var(--grey);
  border: 3px solid;
  border-color: var(--gold);
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 4rem;
  font-family: "Proxima Nova";
  padding: 0 1.5rem;
}
section.form .middle form input:focus {
  border-color: var(--gold-light);
}
section.form .middle form input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--grey) inset !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--grey) inset !important;
  -webkit-text-fill-color: var(--white) !important;
}
section.form .middle form .err input {
  border-color: var(--red-light);
}
section.form .middle form label {
  font-size: 0.8rem;
  line-height: 120%;
  color: var(--white);
  padding-bottom: 0.25rem;
}
section.form .middle form .item + .item {
  margin-top: 0.5rem;
}
section.form .middle form .button {
  margin: 2.5rem auto 0;
}