@font-face {
    font-family: 'lato_lightregular';
    src: url('../fonts/lato-light-webfont.woff2') format('woff2'), url('../fonts/lato-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'latoregular';
    src: url('../fonts/lato-regular-webfont.woff2') format('woff2'), url('../fonts/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'latobold';
    src: url('../fonts/lato-bold-webfont.woff2') format('woff2'), url('../fonts/lato-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
	margin: 0;
    padding: 0;
    min-height: 100%;
    max-width: 100vw;
	height: auto !important;
    overflow-x: hidden;
}
body {
	font-weight: 400;
	color:#5f5f5f;
    font-family: 'latoregular', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    min-height: 100%;
    min-width: 230px;
	height: auto;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-image: url(../images/general/bg-pattern.png);
    background-position: bottom center;
    background-repeat: repeat-x;
    background-attachment: fixed;
}
*::-moz-selection {
    color: #fff;
    background-color: #00a2a6;
}
*::selection {
    color: #fff;
    background-color: #00a2a6;
}
img {
    -webkit-user-select: none;
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}
.columns {
  -webkit-columns: 300px; 
  -moz-columns: 300px; 
  columns: 300px;
}
.columns > * {
    -webkit-column-break-inside: avoid; 
    page-break-inside: avoid;           
    break-inside: avoid-column;
    margin-bottom: 2rem;
}
.superbutton {
    background-color: #006466;
    font-size: 1.25rem;
    color: #fff;
    padding: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 7px rgba(0,0,0,0.4);
}
.superbutton:hover {
    color: #ffec00;
}
.superbutton:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffec00;
}
/* FONT ADJUST */
@media (min-width: 1401px) {
html {
    font-size: 16px;
    line-height: 1.3em;
}
}
@media (max-width: 1400px) {
html {
    font-size: 16px;
    line-height: 1.3em;
}
}
@media (max-width: 500px) {
html {
    font-size: 14px;
    line-height: 1.3em;
	-webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
}
p {
    margin: 0 0 0.5em;
}
a {
    text-decoration: none;
    color: #00a2a6;
    transition: color 0.5s ease-in;
}
a:hover {
    color: #006466;
}
h1, h2, h3 {
	font-family: 'latobold';
    font-weight: 700;
}
h1 {
    margin: 0px 0px 3vh;
    font-size: 2.25rem;
    line-height: 1.3em;
    color: #00a2a6;
    position: relative;
}
h2 {
    margin: 1em 0 .5em;
}
h3 {
    font-size: 1rem;
    line-height: 1.2em;
    color: #00a2a6;
}
h4 {
    font-size: 1.5rem;
    line-height: 1.2em;
    color: #00a2a6;
    margin: 0 0 1rem;
    font-weight: 400;
}
.details__content h4 {
    font-size: 1.1rem;
    margin: 1rem 0 .5rem;
}
.details:last-of-type {
    border-bottom: none;
}
.details > .details__title {
    background-color: #eff6f6;
    padding-left: 2em;
    margin-bottom: 0;
    box-shadow: 0 3px 15px rgba(0,0,0,.3)
}
.details > .details__title > button.details__trigger {
    box-shadow: none;
    background-color: transparent
}
.details__title::before,
.details__title::after {
    content: '';
    position: absolute;
    top: 50%;
    z-index: 1;
    right: auto
}
.details__title::after {
    left: .75em;
    transform: translate(50%, -50%);
    height: 1em;
    width: .25em;
}
.details__title::before {
    left: .5em;
    transform: translate(0, -50%);
    height: .25em;
    width: 1em;
}
.details > .details__content {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 3px 15px rgba(0,0,0,.3)
}
h5 {
	line-height: 1em;
	margin: 0px 0px 20px 0px;
}
blockquote {
    margin: 0;
    text-align: right;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1em;
    margin-bottom: 0.3rem;
}
b {
    font-weight: 500;
}
p, b, a, ul, ol {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}
.wrapper {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* HEADER STYLE */
.sharebox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    box-sizing: border-box;
    left: 0;
    top: 0;
    z-index: 2000;
    position: absolute;
}
.share {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
}
.showshare  {
    display: inline-flex;
    cursor: pointer;
    margin: 0;
    height: 21px;
    align-items: center;
}
.showshare img {
    width: 20px;
    margin-right: 5px;
    box-sizing: border-box;
    height: 20px;
    border-radius: 100%;
    transform: scale(1);
    transition: transform 0.1s ease-in;
}
.showshare:active img {
    transform: scale(1.3);
}
.sharebuttons {
    overflow: hidden;
    max-height: 0px;
    width: auto;
    opacity: 0;
    transition: all 0.5s ease-in;
    display: flex;
    flex-flow: column;
    align-items: left;
    position: absolute;
    left: 10px;
    top: 20px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.5));
}
.sharebuttons:before {
  content:"";
  display:block;
  width:0;
  height:0;
  border-left:10px solid #00a2a6;
  border-right:10px solid transparent;
  border-bottom:10px solid #00a2a6;
  border-top:10px solid transparent;
  position:absolute;
  transform:scale(0);
  transform-origin:bottom center;
  top:0;
  left:0;
  transition:transform 0.5s ease-in
 }
.sharebuttons.visible {
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    transition: all 0.5s ease-in;
}
.sharebuttons.visible:before {
  transform:scale(1);
  transition:transform 0.5s ease-in
 }
.sharebuttons > div:not(.tosoc) {
    padding: 5px 10px !important;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #00a2a6 !important;
    width: 100% !important;
    text-align: left;
    height: auto;
}
.sharebuttons > div.tosoc {
    padding: 0px 10px !important;
    display: block;
    background-color: #00a2a6 !important;
    width: 100% !important;
    text-align: left;
    height: auto;
    box-sizing: border-box;
}
.sharebuttons > .tosoc p {
    margin: 0;
    color: #fff;
    hyphens: auto;
    font-size: 0.8rem;
    line-height: 1.3em;
    box-sizing: border-box;
}
.sharebuttons > .tosoc a {
    color: #fff;    
}
.sharebuttons > div:first-of-type {
    padding-top: 10px!important;
    margin-top: 15px;
}
.sharebuttons > div:last-child {
    padding-bottom: 10px!important;
}
.sharebuttons > div:only-child {
    padding-bottom: 10px!important;
}
header {
    width: 100%;
    text-align: center;
    min-height: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.75);
}
header .logobox {
    background-color: #fff;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}
header .logobox a {
    display: block;
    width: 70%;
    max-width: 310px;
    min-width: 100px;
}
img.logo {
    width: 100%;
}
.headerimg {
    background: url(../images/general/header-pattern.png), #008a8d;
    background: url(../images/general/header-pattern.png), -moz-linear-gradient(left, #008a8d 0%, #00a2a6 100%);
    background: url(../images/general/header-pattern.png), -webkit-linear-gradient(left, #008a8d 0%,#00a2a6 100%);
    background: url(../images/general/header-pattern.png), linear-gradient(to right, #008a8d 0%,#00a2a6 100%);
    background-size: contain;
    background-repeat: repeat-x;
    padding: 0;
    position: relative;
}
.headerimg > div {
    margin: 0 auto;
    position: relative;
    width: 90%;
    max-width: 1340px;
    height: 160px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}
.headerimg p {
    text-align: left;
    color: #fff;
    font-family: 'lato_lightregular', sans-serif;
    letter-spacing: 0.2em;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3em;
}
.headerimg img.lkw {
    position: absolute;
    right: -55px;
    bottom: -10%;
    height: 200%;
    pointer-events: none;
}
/* NAVI STYLING */
nav {
    font-size: 1.25rem;
    line-height: 1.2em;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    right: auto;
    background-color: #006466;
    overflow: hidden;
}
.navi {
    list-style: none;
    box-sizing: border-box;
    padding: 0;
    height: auto;
    transition: max-height 0.5s ease-in;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
nav a,.navbutton p {
    color: #fff;
    transition: color 0.5s ease-in;
    white-space: nowrap;
    text-transform: uppercase;
    padding: 6px 0;
    display: block;
    margin: 0;
    text-transform: uppercase;
}
nav a:hover {
    color: #fff;
    transition: color 0.5s ease-in;
}
.menuitem {
    box-sizing: border-box;
    position: relative;
    text-transform: uppercase;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.active {
    transition: all 0.5s ease-in;
}
.active > a {
    font-weight: 700;
}
.menuitem.navbutton {
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
/* NORMALES MENÜ */
@media (min-width: 801px){
nav {
    left: 0;
}
.menuitem.navbutton {
    display: none;
}
.navi {
    flex-flow: row;
}
.menuitem {
    height: 60px;
}
.menuitem:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffec00;
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
    transition: opacity 0.5s ease-in;
}
.menuitem:hover:before, .menuitem.active:before {
    opacity: 1;
}
}
/* DROPDOWN-MENÜ */
@media (max-width: 800px){
.menuitem.navbutton {
    display: flex;
    height: 60px;
}
nav {
    max-height: 60px;
    transition: max-height 0.5s ease-in;
}
nav.drop {
    max-height: 1000px;
}
.navi {
    flex-flow: column;
}
.menuitem {
    height: 40px;
}
}
/* NAVI STYLING ENDE */
.fixit.sticked {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.75);
}
/* SIDEBAR */
aside {
    flex: 1 1 310px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    background-color: #e7f2f2;
    box-sizing: border-box;
}
aside > * {
    flex: 1 1 250px;
    padding: 40px;
}
aside #contdata p {
    margin-bottom: 1em;
}
aside #siegel {
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px 40px 40px;
    overflow: hidden;
}
aside #siegel p {
    margin: 0;
}
aside #siegel img {
    display: block;
    width: 50px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}
aside strong {
    color: #00a2a6;
}
/* SIDEBAR STYLING ENDE */
.content {
    width: 90%;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
    margin: 0 auto;
    min-height: calc(100vh - 420px);
    max-width: 1340px;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
    background-color: #fff;
}
article {
    position: relative;
}
.contentbox {
    padding: 0 50px 50px;
    box-sizing: border-box;
    flex: 1 1 100%;
}
.contentbox.teaser {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.contentbox.teaser h2 {
    flex: 9 1 400px;
    font-size: 1.25rem;
    margin-right: 1em;
    color: #00a2a6;
    font-weight: 400;
}
.contentbox.teaser .superbutton {
    flex: 1 1 200px;
}
.main {
    flex: 9 1 750px;
    padding-top: 50px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.topcontent {
    flex: 1 1 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.topcontent .contentbox {
    flex: 1 1 250px;
}
.main p, .main ul li, .main ol li {
    width: 100%;
}
.main p img {
    max-width: 100%;
    box-sizing: border-box;
}
.main p img.float {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.main ul, .main ol {
    padding-left: 13px;
    margin: 0 0 1.7em;
}
.main .sibox {
    flex: 0 0 245px;
    position: relative;
    margin: 0 auto;
}
.main .sibox img {
    display: block;
}
.main .sibox p {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px;
    color: #fff;
    background-color: rgba(0,100,102,0.3);
}
@media (max-width: 800px) {
.main .sibox {
    display: none;
}
.contentbox {
    padding: 0 20px 20px;
}
}
ol { 
    counter-reset: item; 
}
ol li { 
    display: block; 
    text-indent:-13px
}
ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color: #444;
    width: 13px;
    display: inline-block;
    text-indent: 0;
}
.main ul li a {
    display: block;
}
.imagebox {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    height: 145px;
    overflow: hidden;
    flex: 1 1 100%;
    margin-bottom: 55px;
}
.imagebox img {
    display: block;
    flex: 1 1 245px;
    width: 100%;
}
.containerbox:not(:last-child) {
    margin-bottom: 1em;
    border-bottom: 1px solid #ddd;
}
.gallery {
    margin: -10px;
    display: flex;
    flex-flow: row wrap;
}
.gallery img {
    display: block;
    margin: 10px;
}

/* KONTAKT SEITE */
form {
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    width: calc(100% + 40px);
    margin: 0px -20px;
    padding: 0px;
}
form .form-field, form .form-spacer {
    display: block;
    width: 100%;
    margin: 0px 0px 20px;
    padding: 0px 20px;
}
form .form-field.half {
    flex: 1 1 150px;
}
form .form-field.full {
    flex: 1 1 100%;
}
form .form-field .form-label {
    margin-bottom: 5px;
}
.form-input-wrapper, .form-input-wrapper input  {
    width: 100%;
}
.checkboxes {
    display: block;
}
.buttons {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
button:not(.details__trigger) {
    background-color: #00a2a6;
    border: none;
    box-sizing: border-box;
    flex: 1 1 140px;
    max-width: 140px;
    margin-bottom: 20px;
    padding: 10px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    width: 30%;
    transition: all .2s ease-in;
}
button:not(.details__trigger):hover {
    background-color: #444;
    color: #fff;
    transition: all .2s ease-in;
}
.form-textarea-wrapper, .form-textarea-wrapper textarea {
    width: 100%;
}
.form-textarea-wrapper textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
}
input, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
} 
input, textarea {
    border: 1px solid #aaa;
    padding: 5px;
    font-size: 1em;
    box-sizing: border-box;
    font-family: 'lato_lightregular', sans-serif;
    color: #444;
}
input:focus, textarea:focus {
    border: 1px solid #00a2a6;
}
.radio {
	display: block;
}
input[type='checkbox'],
input[type='radio'] {
  width:auto;
  float:left;
  margin-right: .75em;
  background:transparent;
  border:none;
}

input[type='checkbox']:checked,
input[type='checkbox']:not(:checked),
input[type='radio']:checked,
input[type='radio']:not(:checked) {
  background: transparent;
  position: absolute;
  visibility: hidden;
  margin:0;
  padding:0;
}

input[type='checkbox'] + label,
input[type='radio'] + label {
    cursor: pointer;
    text-indent: -21px;
    padding-left: 20px;
    display: block !important;
}

input[type='checkbox']:checked + label::before,
input[type='checkbox']:not(:checked) + label::before,
input[type='radio']:checked + label::before,
input[type='radio']:not(:checked) + label::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height:17px;
    border-radius: 50%;
    position: relative;
    top:-5px;
    background-color: #444;
    background-image: url(../images/general/check.png);
    margin-right: 2px;
    background-size: 0%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
    text-align: center;
    font-size: 2rem;
    line-height: 0.5em;
    text-indent: 0px;
}

input[type=radio]:checked + label::before,
input[type=radio]:not(:checked) + label::before {
  border-radius: 50%;
}

input[type='checkbox']:hover  + label::before,
input[type='radio']:hover  + label::before {
    background-color: #00a2a6;
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}

input[type='checkbox']:checked  + label::before,
input[type='radio']:checked  + label::before {
    background-color: #00a2a6;
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}
.notices {
    margin: 15px 0 !important;
    color: #fff !important;
    position: relative;
    box-sizing: border-box;
    top: 33px;
    overflow: hidden;
    max-height: 0px;
    margin-bottom: 0px;
    z-index: 2000;
    width: 100%;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    animation: fadeout 5s linear;
}
@keyframes fadeout {
    0% {opacity: 1;margin-bottom: 50px;max-height: 100px;}
    75% {opacity: 1;margin-bottom: 50px;max-height: 100px;}
    100% {opacity: 0;margin-bottom: 0px;max-height: 0px;}
}
.notices.yellow {
    border-left: 0px solid #ba9800 !important;
    background: #d89b26;
}
.notices.red {
    border-left: 0px solid #f14101 !important;
    background: #c9592e;
}
.notices.blue {
    border-left: 0px solid #005498 !important;
    background: #b9d5da !important;
}
.notices.green {
    border-left: 0px solid #00a2a6 !important;
    background: #00a2a6 !important;
}
.notices p {
    margin: 0 !important;
}

footer {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    line-height: 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    background-color: #00a2a6;
    box-shadow: 0 0 10px rgba(0,0,0,0.75);
}
body.errorpage footer {
    position: absolute;
    bottom: 0;
    height: 60px;
    display: block;
    padding: 10px;
}
footer p {
    margin: 0;
}
footer p, footer a {
    color: #fff;
}
body .cc-banner.cc-top {
    border-bottom: 2px solid #ddd;
}
body .cc-revoke, body .cc-window {
    font-family: inherit;
    font-size: 1rem;
}
body .cc-revoke, body .cc-window {
    z-index: 200000;
}
body .cc-banner .cc-message {

    padding-right: 30px;

}

@media (max-width:1040px) {
.headerimg img.lkw {
    position: absolute;
    right: 0;
    bottom: -10%;
    height: 130%;
    pointer-events: none;
}
.headerimg p {
    font-size: 1rem;
}
nav {
    font-size: 1rem;
}
}
@media (max-width:600px) {
.headerimg {
    height: 40px;
}
.headerimg img.lkw {
    display: none;
}
.headerimg p {
    display: none;
} 
h2 {
    font-size: 1.5rem;
}
.content {
    width: 100%;    
}
}

img.pu {
    cursor: pointer;
}
.pu-imagebox {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-width: 100vw;
    max-height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    width: auto;
    height: auto;
    padding: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
.pu-imagebox.pu-show {
    pointer-events: all;
    opacity: 1;
    transition: opacity 0.5s ease-in;
}
.pu-sign {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    position: absolute;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
    opacity: 0.7;
    transition: opacity 0.5s ease-in;
}
.pu-sign:hover {
    opacity: 1;
}
.pu-arr {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1em;
}
.pu-arr#pu-left {
    left: 20px;
}
.pu-arr#pu-right {
    right: 20px;
}
.pu-close {
    top: 15px;
    right: 20px;
}
.pu-imagewrapper {
    position: relative;
    height: calc(100% - 80px);
    width: calc(100% - 80px);
    margin: 0 auto;
}
.pu-imagewrapper img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: pu-fadein 0.5s ease-in;
}
@keyframes pu-fadein {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.pu-text {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}