@charset "utf-8";

:root {
  --color-key: #000;
  --color-key-lt: #333;
  --color-key-bg: #F7F7F5;
  --color-accent: #47763B;
  --color-accent-bg: #FFF5F6;
  --body-bg: #F2F1EB;
  --blue: #4F8ECC;
  --red: #E8441D;
  --brown: #C3641D;
  --orange: #E4B62D;
  --yellow: #F6CE34;
  --font-sans-serif: 'Zen Kaku Gothic New', sans-serif;
  --font-serif: 'Zen Old Mincho', serif;
  --font-en: 'EB Garamond', serif;
  --font-size-base: 2.4rem;
  --font-weight-base: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --z-index-header: 100;
  --z-index-modal: 200;
  --height-header: 7.29166vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
  font-size: inherit;
  margin: 0;
}

img {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  line-height: initial;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
}

form,
label {
  margin-bottom: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

dd {
  margin-bottom: 1rem;
}

a,
button {
  color: var(--color-key);
  cursor: pointer;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

th {
  font-weight: var(--font-weight-base);
  text-align: left;
}

th,
td {
  padding: .3em 0;
}

html {
  font-size: .52083vw;
  -webkit-text-size-adjust: 100%;
}

body {
  animation: fadeIn .8s ease-in 0s 1 normal;
  background-color: var(--body-bg);
  margin: 0;
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: 1.9;
  color: #000;
  word-break: normal;
  overflow-wrap: break-word;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

/* --------------------------------
  header
-------------------------------- */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes drop {
  0% {
    bottom: 0px;
    opacity: 1;
  }
  
  80% {
    opacity: 1;
  }
  
  100% {
    opacity: 1;
    bottom: -250px;
  }
}

@keyframes wave {
  0% {
    background-position: 0 160px;
    background-size: 170px 300px;
  }
  
  100% {
    background-position: 500px -18px;
    background-size: 250px 150px;
  }
}

body {
  background-color: #d2d2d2;
}

.kuhl{
  margin-top: 0px;
  width: 60%;
}

.loader {
  width: 120px;
  height: 120px;
  position: fixed;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 120px;
  font-family: sans-serif;
  color: #ffffff;
  font-size: 16px;
  border-radius: 25px;
}

.loader span {
  z-index: 3;
}

.loader-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
  background: transparent repeat-x 0 100px/150px 300px url(''); 
  z-index: 2;
  animation: wave 1s ease-out forwards;
}

.drops {
  -webkit-filter: url('#liquid');
  filter: url('#liquid');
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  z-index: 1;
  opacity: 0;
  animation: fade-in .1s linear .4s forwards;
}

.drop1 , .drop2 {
  width: 21px;
  height: 23px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #000000
}


@media (max-width: 800px) {

  .drop1 , .drop2 {
    width: 15px;
    height: 17px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #000000
  }
  


}

.drop1 {
  width: 40px;
  height: 10px;
  bottom: 8px;
  border-radius: 0;
}

.drop2 {
  animation: drop 1.8s cubic-bezier(1,.19,.66,.12) .5s infinite;
}




.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


ul.global-nav{
  position: absolute;
  left:25px;
  bottom:25px;
  font-size:14px;
  letter-spacing: 0.05em;
}

ul.global-nav li{
  margin:0 0 -3px 0;
  padding:0;
}

a:hover{
  text-decoration: underline;
}