.paddingTB20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.paddingTB40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.paddingTB80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.paddingLR0 {
  padding-left: 0;
  padding-right: 0;
}
.paddingR20 {
  padding-right: 20px;
}
.paddingR40 {
  padding-right: 40px;
}
.paddingR80 {
  padding-right: 80px;
}
.border {
  border: 1px solid red;
}
.border-gray {
  border: 1px solid #b6b6b6;
}
.bg-silver {
  background-color: #f7f7f7;
}
.color-green {
  color: forestgreen;
}
.form-border.red {
  border: 2px solid red;
}
.form-border.green {
  border: 2px solid green;
}
.input-ux {
  display: block;
  width: 100%;
  position: relative;
}
.input-ux .fa {
  font-size: 25px;
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
}
.input-ux .fa-check {
  color: #30a92a;
}
.input-ux .fa-times {
  color: #d90000;
}
.input-ux .input-wrong {
  border: 2px solid #c12424;
  background-color: rgba(217, 0, 0, 0.15) !important;
}
.input-ux input[type='number']::-webkit-inner-spin-button,
.input-ux input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.input-ux .help {
  position: absolute;
  right: 0;
  left: 0;
  top: -6px;
  font-size: 12px;
  color: #d90000;
  display: none;
}
.alert {
  display: none;
  position: fixed;
  bottom: 0;
  padding: 20px;
  z-index: 1055;
  margin: auto;
  width: 100%;
  color: #fff;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-size: 1.2em;
  font-family: "Lexend Giga";
}
.alert.alert-success {
  background-color: green;
}
.alert.alert-danger {
  background-color: red;
}
.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex-container .item.column {
  display: flex;
  flex-direction: column;
}
.flex-container.column {
  display: flex;
  flex-direction: column;
}
#toggle-menu {
  float: right;
  margin-left: 20px;
  display: none;
}
#toggle-menu #navibutton {
  position: absolute;
  right: 4%;
  top: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: block;
  margin: auto;
  z-index: 13;
}
#toggle-menu #navibutton .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  right: 0;
  transition: all 0.15s;
  -moz-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  border-radius: 2px;
}
#toggle-menu #navibutton .line:nth-of-type(2) {
  top: 14px;
}
#toggle-menu #navibutton .line:nth-of-type(3) {
  top: 24px;
}
#toggle-menu #navibutton.show {
  position: absolute;
}
#toggle-menu #navibutton.show .line:nth-of-type(1) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: 15px;
}
#toggle-menu #navibutton.show .line:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
#toggle-menu #navibutton.show .line:nth-of-type(3) {
  top: 15px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.hidden {
  display: none;
  width: 0;
  height: 0;
}
.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
body {
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 17px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7em;
}
h1,
h2,
h3,
h4 {
  color: #000;
  text-transform: uppercase;
}
h1 {
  line-height: 0;
  margin: 0;
  padding: 0;
}
h2 {
  padding-bottom: 20px;
  font-weight: 800;
  font-size: 2.4em;
}
h3 {
  font-size: 1.5em;
  font-weight: 700;
  padding-bottom: 20px;
}
h4 {
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: 20px;
}
.no-pointer {
  cursor: default !important;
}
p {
  padding-bottom: 20px;
  line-height: 1.7em;
}
.caption {
  font-family: 'Lexend Giga';
  font-size: 1.8em;
  padding-bottom: 40px;
  max-width: 930px;
  display: block;
  margin: auto;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.caption.small {
  font-size: 1em;
  max-width: 800px;
  padding-bottom: 0;
}
#header {
  background-color: #362833;
  padding: 0px 60px;
  display: flex;
  position: fixed;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 100;
}
#header .flex-container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
#header .logo a {
  text-decoration: none;
  color: #fff;
  transition: 300ms;
  padding: 12px 0;
}
#header .logo a img {
  display: inline;
  margin-right: 6px;
  margin-top: -1px;
  margin-left: 20px;
  max-width: 500px;
  width: 100%;
  fill: #fff;
  transition: 300ms;
}
#header .logo a .caption {
  font-weight: 400;
  display: inline;
  transition: 300ms;
}
#header .logo a:hover svg {
  fill: #43aeec;
}
#header .logo a:hover .caption {
  color: #43aeec;
}
#header #nav {
  display: inline-block;
  margin-bottom: 0;
  padding-left: 0;
}
#header #nav li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
#header #nav li a {
  position: relative;
  transition: 300ms;
  display: block;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px 25px;
  cursor: pointer;
}
#header #nav li a:after {
  content: '';
  background-color: #fff;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 300ms;
}
#header #nav li a:hover {
  color: #fff;
}
#header #nav li a:hover:after {
  width: 50%;
}
#header #nav li a.active:after {
  width: 50%;
}
#header #nav li ul {
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
  top: 69px;
  right: -10px;
  left: -10px;
  margin: auto;
  padding-left: 0;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 300ms;
}
#header #nav li ul li {
  position: relative;
  display: block;
}
#header #nav li ul li:last-of-type {
  border-bottom: none;
}
#header #nav li ul li a {
  text-align: center;
  padding: 20px 10px;
}
#header #nav li ul li .nested {
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 145px;
  right: -145px;
  z-index: 50;
  padding-left: 0;
}
#header #nav li ul li li a {
  padding: 20px 10px;
}
#header #nav li ul li:hover .nested {
  transition: 300ms;
  visibility: visible;
  opacity: 1;
  display: block;
}
#header #nav li:hover ul {
  transition: 300ms;
  visibility: visible;
  opacity: 1;
  display: block;
}
#banner {
  padding-top: 70px;
  background-image: url("../img/elegant-white-background-with-gray-abstract-shapes.png");
  position: relative;
}
#banner .overlay {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#banner h2 {
  padding-bottom: 0;
  margin-bottom: 0;
}
#banner p {
  font-size: 2.2rem;
  text-transform: uppercase;
}
#banner .elipse {
  background-color: #fff;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
#banner .elipse img {
  max-width: 200px;
  opacity: 0;
}
#banner .flex-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#banner .flex-container .item {
  text-align: center;
  opacity: 0;
}
#banner .flex-container .flex-container {
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
#banner .flex-container .flex-container .item {
  padding: 20px 70px;
  position: relative;
}
#banner .flex-container .flex-container .item h3 {
  font-size: 2.2em;
  font-weight: 800;
  padding-bottom: 0;
  margin-bottom: 0;
}
#banner .flex-container .flex-container .item .caption {
  font-weight: 800;
  font-size: 1.1em;
  font-family: Arial;
}
#banner .flex-container .flex-container .item:nth-of-type(2):before {
  content: '';
  width: 8px;
  height: 120px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
#banner .flex-container .flex-container .item:nth-of-type(2):after {
  content: '';
  width: 8px;
  height: 120px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
}
#banner .flex-container .flex-container .item:last-of-type {
  padding-right: 0;
}
#hotel {
  padding-top: 80px;
  padding-bottom: 80px;
}
#hotel h2 {
  font-family: 'Lexend Giga';
  font-size: 1.8em;
  padding-bottom: 40px;
  max-width: 930px;
  display: block;
  margin: auto;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 400;
}
#hotel img {
  max-width: 100%;
}
#product .lady {
  max-width: 500px;
  width: 100%;
  display: block;
  margin: auto auto 40px;
  position: relative;
  opacity: 0;
}
#product .vune-sides {
  position: relative;
}
#product .vune-sides:before {
  content: '';
  width: 200px;
  height: 400px;
  background-image: url("../img/vune-smoke.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  position: absolute;
  left: -300px;
  bottom: -20px;
  display: block;
}
#product .vune-sides:after {
  content: '';
  width: 200px;
  height: 400px;
  background-image: url("../img/vune-smoke.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  position: absolute;
  right: -300px;
  bottom: -20px;
  display: block;
}
#difuser {
  position: relative;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
#difuser .bg-left {
  width: 50%;
  position: absolute;
  background-image: url("../img/left-elegant-bg.png");
  height: 900px;
  background-size: cover;
  background-position: bottom;
  background-position-x: right;
  z-index: -1;
}
#difuser .bg-right {
  width: 50%;
  position: absolute;
  background-image: url("../img/right-white-background-with-gray-abstract-shapes.png");
  right: 0px;
  height: 900px;
  background-size: cover;
  background-position: bottom;
  background-position-x: left;
  z-index: -1;
}
#difuser h2 {
  font-family: "Lexend Giga";
  opacity: 0;
}
#difuser .flex-container {
  justify-content: space-evenly;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
#difuser .flex-container .item.column {
  justify-content: space-evenly;
}
#difuser .difuser-img {
  max-width: 220px;
  opacity: 0;
}
#difuser .box {
  clip-path: polygon(5% 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0 90%, 0 10%);
  max-width: 320px;
  padding: 25px 35px 25px 45px;
}
#difuser .box p {
  color: #fff;
  font-family: Arial;
  font-size: 1em;
  text-align: left;
  font-weight: 600;
  padding: 0;
  margin: 0;
  line-height: 1.3em;
}
#difuser .box.blue {
  background: #211f8a;
}
#difuser .box.gray {
  background: #bbafb1;
}
#difuser .smoke-pink {
  position: absolute;
  max-width: 15vw;
  bottom: -24px;
  left: 11%;
  opacity: 0;
}
#difuser .smoke-blue {
  position: absolute;
  max-width: 15vw;
  bottom: 40px;
  right: 11%;
  opacity: 0;
}
#umisteni {
  flex-wrap: wrap;
  overflow-x: hidden;
}
#umisteni .flex-container {
  justify-content: center;
  opacity: 0;
}
#umisteni .flex-container .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
#umisteni .flex-container .item .caption {
  max-width: 430px;
  text-align: center;
  text-transform: uppercase;
  color: #56627f;
}
#umisteni .flex-container:first-of-type {
  padding-top: 40px;
  padding-bottom: 20px;
}
#umisteni .flex-container:first-of-type img:first-of-type {
  margin-right: -90px;
}
#umisteni .flex-container:first-of-type img:last-of-type {
  margin-left: -90px;
}
#umisteni .flex-container:last-of-type {
  padding-bottom: 40px;
}
#umisteni h2 {
  font-family: "Lexend Giga";
  text-align: center;
  opacity: 0;
}
#umisteni h2:first-of-type {
  padding-top: 80px;
}
#umisteni img {
  max-width: 30%;
}
#paleta {
  text-align: center;
  position: relative;
  padding: 0;
  overflow: hidden;
}
#paleta .wave {
  position: absolute;
  width: 100%;
  z-index: -1;
}
#paleta .wave:first-of-type {
  top: 40%;
}
#paleta .wave:nth-of-type(2) {
  top: 70%;
}
#paleta .wave:last-of-type {
  bottom: 3%;
}
#paleta h2 {
  font-family: "Lexend Giga";
  opacity: 0;
}
#paleta .caption {
  margin-bottom: 40px;
}
#paleta .caption.small {
  max-width: 615px;
}
#paleta .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 0.5fr;
  gap: 0px 0px;
  grid-template-areas: ". . . . ." ". . . . ." ". . . . ." ". . . area-large area-large" ". . . area-large area-large" "customer-line customer-line customer-line area-large area-large";
}
#paleta .grid .area-large {
  grid-area: area-large;
}
#paleta .grid .area-large img {
  width: 75%;
}
#paleta .grid .customer-line {
  grid-area: customer-line;
  padding: 0px 25px;
  margin-top: 15px;
}
#paleta .grid .customer-line a {
  color: #000;
}
#paleta .grid .customer-line .caption.small {
  text-transform: uppercase;
  background-color: #f0ede8;
  padding: 15px 5px;
  width: 100%;
  max-width: unset;
}
#paleta .grid .grid-item {
  padding: 15px 25px;
}
#paleta .grid .grid-item img {
  width: 100%;
}
#letak {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
#letak .container {
  position: relative;
}
#letak .flex-container:first-of-type {
  background-image: url("../img/bubbles.png");
  background-size: contain;
  background-position: bottom;
}
#letak .flex-container:first-of-type .item:first-of-type {
  max-width: 30%;
  justify-content: center;
  align-items: center;
}
#letak .flex-container:first-of-type .item:nth-of-type(2) {
  max-width: 20%;
  justify-content: space-evenly;
}
#letak .flex-container:first-of-type .item:nth-of-type(2) .item {
  max-width: 100%;
  flex-direction: row;
}
#letak .flex-container:first-of-type .item:nth-of-type(2) img {
  max-width: 110px;
}
#letak .flex-container:first-of-type .item:last-of-type {
  max-width: 50%;
  align-items: center;
  justify-content: flex-start;
}
#letak .flex-container:first-of-type .item:last-of-type .item-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#letak .flex-container:first-of-type .item:last-of-type .item-inner img:first-of-type {
  max-width: 180px;
  object-fit: contain;
}
#letak .flex-container:first-of-type .item:last-of-type .item-inner img:last-of-type {
  max-width: 266px;
}
#letak .flex-container:first-of-type .item .box {
  clip-path: polygon(5% 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0 90%, 0 10%);
  max-width: 80%;
  padding: 25px 35px 25px 45px;
  display: block;
  margin-bottom: 20px;
}
#letak .flex-container:first-of-type .item .box p {
  text-align: center;
  color: #fff;
  font-family: Arial;
  font-size: 0.9em;
  font-weight: 600;
  padding-bottom: 10px;
  margin: 0;
  line-height: 1.3em;
  text-transform: unset;
}
#letak .flex-container:first-of-type .item .box p strong {
  padding-bottom: 20px;
  font-size: 1.1em;
}
#letak .flex-container:first-of-type .item .box.bg-darkgray {
  background-color: #56627f;
}
#letak .flex-container:last-of-type {
  align-items: center;
}
#letak p {
  font-family: 'Lexend Giga';
  text-transform: uppercase;
}
#letak p.small {
  font-size: 0.8em;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 0;
}
#letak p.bg-lightblue {
  background-color: #f3f6fa;
  padding-top: 10px;
  padding-bottom: 10px;
}
#letak .red {
  color: #820b1e;
  font-weight: 600;
}
#letak .zarizeni {
  max-width: 350px;
  width: 100%;
}
#letak h2 {
  font-family: "Lexend Giga";
}
#letak #dotazy {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  font-size: 0.9em;
  list-style-type: none;
  max-width: 30%;
  width: 100%;
  border-bottom: 3px solid #56627f;
  border-left: 3px solid #56627f;
  border-right: 3px solid #56627f;
}
#letak #dotazy li {
  color: #56627f;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#letak #dotazy li a {
  color: #56627f;
  text-decoration: none;
}
#letak #dotazy li:first-of-type {
  background-color: #56627f;
  color: #fff;
}
#letak .button {
  max-width: 30%;
}
#letak #cena {
  border: 3px solid #56627f;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.8em;
  max-width: 30%;
  width: 100%;
  color: #56627f;
  font-weight: 600;
  text-align: left;
}
#letak #cena .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#letak #cena .item:first-of-type {
  margin-bottom: 20px;
}
#letak #cena .item p {
  padding-bottom: 0;
  margin-bottom: 0;
}
#letak #cena .item p:last-of-type {
  text-align: right;
  font-weight: 800;
}
#letak #cena .item p i {
  font-style: normal;
  font-size: 0.8em;
}
#letak #cena .item:first-of-type:after {
  content: '';
  display: block;
  position: absolute;
  background-color: #56627f;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: -10px;
}
.button {
  padding: 15px 50px;
  background-color: #ffe7e4;
  -webkit-box-shadow: -1px 4px 3px 0px #8e8680;
  -moz-box-shadow: -1px 4px 3px 0px #8e8680;
  box-shadow: -1px 4px 3px 0px #8e8680;
  border-radius: 25px;
  text-transform: uppercase;
  max-width: 350px;
  font-family: "Lexend Giga";
  font-weight: 600;
  display: inline-block;
  margin: auto;
  cursor: pointer;
  transition: 300ms;
}
.button:hover {
  background-color: #fdbeb4;
}
#footer {
  background-color: #362833;
  padding: 20px 0px;
  color: #fff;
  text-transform: uppercase !important;
}
#footer .flex-container {
  padding-left: 35px;
  padding-right: 35px;
  justify-content: space-between;
  align-items: center;
  max-width: 1330px;
  margin: auto;
}
#footer .flex-container ul {
  list-style-type: none;
  padding-left: 0;
}
#footer .flex-container ul li {
  font-size: 0.8em;
  margin-bottom: -5px;
  letter-spacing: 0.2em;
}
#footer .flex-container .slogan {
  font-family: Arial;
  font-size: 1em;
}
#footer .flex-container .logo a {
  text-decoration: none;
  color: #fff;
  transition: 300ms;
}
#footer .flex-container .logo a img {
  max-width: 215px;
}
#form .form-group label {
  width: 100%;
}
#form .form-group .button {
  color: #303030;
  border: 2px solid #303030;
  padding: 3px 7px;
  text-align: center;
}
#form .form-group .button:hover {
  background-color: #303030;
  color: #fff;
  cursor: pointer;
}
#form .form-group #imageLabel {
  width: 100%;
  padding: 3px 7px;
  text-align: center;
  border: 1px solid #dadada;
  margin-top: 0.5rem;
}
#form .form-group #imageContainer {
  border: 1px solid #dadada;
  padding: 5px;
}
#form .form-group #imageContainer img {
  height: 250px;
  object-fit: contain;
  width: 100%;
}
#form #dalsivune {
  cursor: pointer;
}
.modal {
  color: #000;
}
.modal-dialog {
  max-width: 700px;
}
.modal-footer #form-submit {
  background-color: #694c62;
  border: none;
}
.modal-footer #form-submit:hover {
  background-color: #362833;
}
.modal-footer #form-submit:focus {
  border: none;
  box-shadow: none;
  background-color: #362833;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/*# sourceMappingURL=style.css.map */