.language-selector__dropdown,
.language-selector__mobile {
  pointer-events: auto !important;
  z-index: 9999;
  position: relative;
}

.language-selector__dropdown a,
.language-selector__mobile a {
  pointer-events: auto !important;
}


/* Ogólny kontener */
.language-selector {
  position: relative;
  display: inline-block;
}

/* Przycisk z flagą (desktop) */
.language-selector__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: block;
}

.language-selector__toggle img {
  width: 24px;
  height: auto;
  vertical-align: bottom;
  margin-top: 5px;
}

/* Dropdown z flagami (desktop) */
.language-selector__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  padding: 5px;
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.language-selector.open .language-selector__dropdown {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.language-selector__dropdown a {
  display: block;
  margin: 5px 0;
}

.language-selector__dropdown img {
  width: 24px;
  height: auto;
  transition: transform 0.2s ease;
}

.language-selector__dropdown img:hover {
  transform: scale(1.1);
}

/* Flagi w rzędzie (mobile) */
.language-selector__mobile {
  display: none;
  gap: 8px;
  align-items: center;
}

.language-selector__mobile img {
  height: 16px;
  vertical-align: bottom;
}

/* Widoczność wersji desktopowej i mobilnej */
@media (max-width: 768px) {
  .language-selector__toggle,
  .language-selector__dropdown {
    display: none;
  }

  .language-selector__mobile {
    display: flex;
  }
}

@media (min-width: 769px) {
  .language-selector__mobile {
    display: none;
  }

  .language-selector__toggle,
  .language-selector__dropdown {
    display: block;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-optical-sizing: auto;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-optical-sizing: auto;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  max-width: 500px;
  margin: 64px auto;
  position: relative;
  width: auto;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 16px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 16px;
}

.modal-title {
  margin: 0;
  line-height: 1.5;
}

.modal-close {
  margin: 0;
  padding: 0;
  border: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background: none;
  font-size: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.in, .modal-backdrop.out {
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.modal-backdrop.is-open {
  opacity: 0.5;
}

.modal.in .modal-dialog {
  animation: scaleUp 0.35s ease-in-out;
}

.modal.out .modal-dialog {
  animation: scaleDown 0.35s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
body {
  overflow-x: hidden;
}

.mobile-only {
  display: none;
}
@media (max-width: 991px) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 991px) {
  .mobile-hidden {
    display: none !important;
  }
}

.floating-cup {
  position: fixed;
  z-index: 97;
  left: 0;
  right: 0;
  margin: auto;
  width: 270px;
  top: 100px;
  max-height: 80vh;
  bottom: 0;
  transition: 1s ease all;
}
.floating-cup.--hidden {
  transform: scale(0.75);
}
.floating-cup.--stop {
  position: absolute;
  top: -130px;
  transition: none;
}
@media (max-width: 991px) {
  .floating-cup {
    display: none;
  }
}
.floating-cup__cap {
  position: absolute;
  top: 5px;
  left: 0px;
}
.floating-cup__cap img {
  max-width: 100%;
  margin-left: 4px;
}
.floating-cup__body {
  height: 722px;
  width: 270px;
  background: url("../img/cup_bg.svg") -85px 0, url("../img/cup_body.png");
  background-size: cover;
  transition: 0.5s ease all;
  mask-image: url("../img/cup_body.png");
  mask-size: auto 100%;
}
.floating-cup__body--rotate {
  background: url("../img/cup_bg.svg") -722px 0, url("../img/cup_body.png");
  background-size: cover;
  background-blend-mode: multiply;
  mask-image: url("../img/cup_body.png");
  mask-size: auto 100%;
}
.floating-cup__body img {
  max-width: 100%;
  max-height: 100%;
}

.btn {
  background: #FF2060;
  padding: 16px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  transition: 0.2s ease all;
  cursor: pointer;
}
.btn:hover {
  background: #000;
}

.modal-dialog {
  max-width: 90vw;
  margin: 5vh auto;
  position: relative;
  width: auto;
  pointer-events: none;
}

.modal-content {
  height: 100%;
}

.modal-title {
  margin: 0;
  line-height: 1.5;
  font-family: "Sofia Sans Condensed";
  font-size: 30px;
}

.modal-body {
  overflow: hidden;
}
.modal-body .photos {
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}
.modal-body .photos .swiper-slide {
  text-align: center;
}
.modal-body .photos img, .modal-body .photos video {
  max-height: 400px;
}
.modal-body .offer__carousel-item-details {
  display: block;
  width: 300px;
  margin: 0 auto;
}

.section__heading {
  font-family: "Sofia Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  margin-top: 50px;
}

.tippy-popper {
  position: fixed !important;
  right: 25px;
  bottom: 25px;
  left: initial !important;
  transform: none !important;
  display: flex;
  align-items: flex-end;
}

.tippy-tooltip.kambu-theme {
  background: #fff !important;
  border: 1px solid #000 !important;
}
.tippy-tooltip.kambu-theme img, .tippy-tooltip.kambu-theme video {
  position: absolute;
  top: -110px;
  right: 30px;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  border: 1px solid #000;
}
.tippy-tooltip.kambu-theme p {
  color: #000;
  margin-top: 130px;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  font-family: "Sofia Sans", sans-serif;
}
.tippy-tooltip.kambu-theme p strong {
  display: block;
  font-size: 24px;
}

@keyframes fill-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.info-message {
  max-width: 100%;
  background: #1d9fff;
  padding: 25px 15px 15px 15px;
  text-align: center;
  font-size: 18px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999999;
  width: 280px;
  line-height: 29px;
  color: #fff;
  transition: 0.2s ease all;
}
@media (max-width: 991px) {
  .info-message {
    width: 100%;
    left: 0;
    bottom: 0;
  }
}
.info-message__bar {
  height: 6px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.info-message__bar::before {
  content: "";
  width: 0;
  height: 6px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #76bdfa;
  animation-duration: 6s;
  animation-name: fill-progress;
}

.swipe-icon {
  margin-top: 25px;
}
.swipe-icon img {
  width: 35px;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 25px 15px;
  align-items: center;
  position: sticky;
  top: -1px;
  background: #fff;
  padding-top: calc(1em + 1px);
  height: 100px;
  z-index: 98;
}
.header.isSticky {
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .header__navigation {
    position: fixed;
    background: rgba(255, 255, 255, 0.7);
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    left: -100vw;
    transition: 0.2s ease all;
    height: 100vh;
    z-index: 98;
  }
  .header__navigation ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  .header__navigation ul li a {
    font-size: 30px !important;
  }
  .header__navigation.open {
    left: 0;
  }
}
.header__navigation-toggler {
  display: none;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .header__navigation-toggler {
    display: block;
  }
}
.header__navigation-toggler-button {
  border: none;
  background: none;
}
.header__navigation-toggler-button img {
  max-width: 30px;
}
.header__navigation ul {
  display: flex;
}
.header__navigation ul li {
  padding: 0 10px;
}
.header__navigation ul li a {
  color: #000;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  transition: 0.2s ease all;
}
.header__navigation ul li a:hover {
  color: #FF2060;
}
.header__button {
  background: #FF2060;
  padding: 16px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  transition: 0.2s ease all;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header__button-container {
    display: none;
  }
}
.header__button:hover {
  background: #000;
}

@keyframes upAndDown {
  0% {
    top: 10px;
  }
  50% {
    top: 40px;
  }
  100% {
    top: 10px;
  }
}
.hero {
  height: 100vh;
  min-height: 900px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -100px;
}
@media (max-width: 991px) {
  .hero {
    height: auto;
    margin-top: 50px;
    min-height: 0;
  }
}
.hero > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .hero > div {
    width: 100%;
  }
}
.hero h1, .hero h2 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 200px;
  font-weight: 700;
  line-height: 100%;
  font-style: italic;
}
@media (max-width: 1299px) {
  .hero h1, .hero h2 {
    font-size: 150px;
  }
}
@media (max-width: 991px) {
  .hero h1, .hero h2 {
    font-size: 100px;
  }
}
@media (max-width: 750px) {
  .hero h1, .hero h2 {
    font-size: 40px;
    margin: 15px 0;
  }
}
.hero__scroller {
  border: 1px solid #000;
  width: 34px;
  height: 63px;
  border-radius: 50px;
  position: absolute;
  bottom: 150px;
  left: 10%;
  background: #fff;
}
@media (max-width: 991px) {
  .hero__scroller {
    display: none;
  }
}
.hero__scroller::before {
  content: "";
  display: block;
  width: 3px;
  height: 12px;
  background: #000;
  transition: 0.2s ease all;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 10px;
  animation: 5s infinite upAndDown;
}
.hero__cup-mobile {
  width: 100%;
}
.hero__cup-mobile img {
  max-width: 100%;
}

.cup-swiper {
  max-width: 100% !important;
  width: 100% !important;
  margin-top: 25px;
}
.cup-swiper .swiper-wrapper {
  max-width: 100% !important;
  width: 100% !important;
}
.cup-swiper .swiper-slide {
  max-width: 100% !important;
  width: 100% !important;
  text-align: center;
}

.heros_outer_wrapper {
  width: 100vw;
  overflow: hidden;
}
.heros_outer_wrapper .hero {
  width: 100vw;
  min-width: 100vw;
}

.heros_inner_wrapper {
  display: flex;
  width: 200vw;
  min-width: 200vw;
  height: 100%;
  transition: 1s ease all;
}

.about-us {
  position: relative;
  height: 100vh;
  min-height: 900px;
}
@media (max-width: 991px) {
  .about-us {
    margin-top: 50px;
    height: auto;
  }
}
.about-us::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .about-us::before {
    display: none;
  }
}
.about-us video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-us video {
    position: static;
    height: 300px;
  }
}
.about-us__box {
  position: absolute;
  z-index: 2;
  width: 33%;
}
@media (max-width: 991px) {
  .about-us__box {
    position: relative;
    width: 90%;
    left: 0 !important;
    margin: 0 auto;
  }
}
.about-us__box h3 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .about-us__box h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .about-us__box h3 {
    color: #000;
  }
}
.about-us__box p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  border: 1px solid #fff;
  padding: 25px;
  color: #fff;
  line-height: 30px;
}
@media (max-width: 991px) {
  .about-us__box p {
    color: #000;
    border-color: #000;
    padding: 15px;
  }
}
@media (max-width: 1199px) {
  .about-us__box p {
    font-size: 20px;
  }
}
@media (max-width: 1299px) {
  .about-us__box p {
    line-height: 25px;
  }
}
.about-us__box button {
  margin-top: 15px;
  float: right;
}
@media (max-width: 1399px) {
  .about-us__box button {
    float: none;
  }
}
.about-us__box--to-left {
  top: 130px;
  left: 50px;
}
@media (max-width: 1399px) {
  .about-us__box--to-left {
    top: 50px;
  }
}
.about-us__box--to-right {
  right: 50px;
  bottom: 100px;
}
@media (max-width: 1399px) {
  .about-us__box--to-right {
    bottom: initial;
    top: 50px;
  }
}
@media (max-width: 991px) {
  .about-us__box--to-right {
    margin-top: 50px;
  }
}

.offer {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}
.offer__carousel {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: 100px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .offer__carousel .swiper-button-prev, .offer__carousel .swiper-button-next {
    width: 44px !important;
    height: 44px !important;
    background-size: contain !important;
  }
}
@media (max-width: 1199px) {
  .offer__carousel .swiper-button-prev {
    margin-left: 25px;
  }
}
.offer__carousel::after {
  content: "";
  width: 484px;
  height: calc(100% - 19px);
  display: block;
  border: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 991px) {
  .offer__carousel::after {
    display: none;
  }
}
.offer__carousel .swiper-button-prev {
  width: 88px;
  height: 88px;
  background: url("../img/arrow-left.png");
  margin-top: -90px;
  left: 0;
}
@media (max-width: 991px) {
  .offer__carousel .swiper-button-prev {
    margin-left: 15px !important;
  }
}
.offer__carousel .swiper-button-prev::after {
  display: none;
}
.offer__carousel .swiper-button-next {
  width: 88px;
  height: 88px;
  background: url("../img/arrow-right.png");
  margin-top: -90px;
  right: 0;
}
@media (max-width: 991px) {
  .offer__carousel .swiper-button-next {
    right: 15px;
  }
}
.offer__carousel .swiper-button-next::after {
  display: none;
}
.offer__carousel-item-details {
  display: none;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .offer__carousel-item-details {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.offer__carousel-item-details h5 {
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.offer__carousel-item-dictionary {
  padding-top: 15px;
}
.offer__carousel-item-dictionary > div {
  display: flex;
  padding: 10px 0;
}
.offer__carousel-item-dictionary > div > * {
  flex: 1;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
}
.offer__carousel-item-dictionary button:first-of-type {
  margin-top: 25px;
}
.offer__carousel-item-dictionary button.show_realizations {
  width: 137px;
  height: 137px;
  border-radius: 100%;
  border: 1px solid #000;
  background: #fff;
  font-size: 15px;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  position: absolute;
  left: -85%;
  bottom: -43px;
  text-transform: uppercase;
  transition: 0.2s ease all;
  cursor: pointer;
}
@media (max-width: 991px) {
  .offer__carousel-item-dictionary button.show_realizations {
    position: static;
    margin-left: 15px;
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 1199px) {
  .offer__carousel-item-dictionary button.show_realizations {
    left: -200px;
  }
}
.offer__carousel-item-dictionary button.show_realizations:hover {
  background: #000;
  color: #fff;
}
.offer__carousel-item-dictionary-list > span {
  display: block;
}
.offer__carousel-item-dictionary-list > span.tooltip {
  text-decoration: underline;
}
.offer__carousel-item-dictionary-list > span.tooltip:hover + .tooltipContent {
  display: block;
}
.offer__carousel .swiper-wrapper {
  align-items: center;
  padding-top: 25px;
  padding-bottom: 50px;
}
.offer__filtering {
  top: 50px;
  margin-left: 25px;
  border: 1px solid #000;
  padding: 15px;
  display: flex;
  gap: 50px;
}
@media (max-width: 757px) {
  .offer__filtering {
    display: none;
  }
}
.offer__filtering h4 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Sofia Sans Condensed", sans-serif;
  line-height: 26px;
}
.offer__filtering button {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 26px;
  font-family: "Sofia Sans Condensed", sans-serif;
  display: block;
  background: none;
  border: none;
}
.offer__filtering button.--unchecked, .offer__filtering button:hover {
  text-decoration: line-through;
}

.offer-swiper .swiper-slide {
  text-align: center;
  min-height: 820px;
}
.offer-swiper .swiper-slide-active {
  transform: scale(0.6) !important;
}
@media (max-width: 991px) {
  .offer-swiper .swiper-slide-active {
    transform: scale(1) !important;
  }
  .offer-swiper .swiper-slide-active::before {
    content: "";
    width: 400px;
    height: calc(100% + 50px);
    position: absolute;
    border: 1px solid #000;
    margin-left: -36px;
    margin-top: -25px;
    z-index: -1;
    display: none;
  }
  .offer-swiper .swiper-slide-active .offer__carousel-item-details {
    display: block;
  }
}
.offer-swiper .swiper-slide-active + div {
  transform: scale(0.8) !important;
  z-index: 1;
  position: relative;
  transition: 0.2s ease all;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .offer-swiper .swiper-slide-active + div {
    transform: scale(1) !important;
  }
  .offer-swiper .swiper-slide-active + div .offer__carousel-item-details {
    display: block;
  }
}
.offer-swiper .swiper-slide-active + div + div {
  transition: 0.2s ease all;
}
@media (max-width: 1199px) {
  .offer-swiper .swiper-slide-active + div + div {
    transform: scale(0.6);
  }
}
@media (min-width: 1200px) {
  .offer-swiper .swiper-slide-active + div + div {
    transform: scale(1) !important;
  }
  .offer-swiper .swiper-slide-active + div + div .offer__carousel-item-details {
    display: block;
  }
}
.offer-swiper .swiper-slide-active + div + div + div {
  transition: 0.2s ease all;
  transform: scale(0.8) !important;
}
.offer-swiper .swiper-slide-active + div + div + div + div {
  transform: scale(0.6) !important;
}
.offer-swiper .swiper-slide img {
  max-width: 100% !important;
}

.swiper-slide[data-model=Olympus] img.--placeholder {
  opacity: 0;
}

.realizations {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  padding-left: 25px;
  padding-right: 25px;
}
.realizations-swiper {
  padding-top: 50px;
  padding-bottom: 50px;
}
.realizations .swiper-slide {
  padding: 15px;
}
.realizations .swiper-slide .realization__body {
  transition: 0.2s ease all;
}
.realizations .swiper-slide:hover .realization__body {
  transform: scale(1.1);
}
.realizations .swiper-slide:hover .realization__body button, .realizations .swiper-slide:hover .realization__body a {
  display: block;
}
.realizations .swiper-slide-inner {
  border: 1px solid #000;
}

.realization__body {
  border: 1px solid #000;
  position: relative;
}
.realization__body img {
  width: 100%;
}
.realization__body .badge {
  background: #000;
  color: #fff;
  font-size: 15px;
  line-height: 26px;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
}
.realization__body > div {
  padding: 15px;
}
.realization__body > div strong {
  font-size: 23px;
  font-weight: 800;
  line-height: 26px;
  display: block;
}
.realization__body > div span {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  display: block;
}
.realization__body > div p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  font-family: "Sofia Sans", sans-serif;
  padding-bottom: 30px;
}
.realization__body > div button, .realization__body > div a {
  position: absolute;
  bottom: -30px;
  right: 15px;
  display: none;
  text-decoration: none;
}

.realization__body video {
  height: 334px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 100px;
  padding-left: 25px;
  padding-right: 25px;
}
.contact h2 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .contact h2 {
    line-height: 45px;
  }
}
.contact form {
  width: 800px;
  max-width: 100%;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 50px 200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .contact form {
    padding: 15px;
  }
}
.contact form > div {
  display: flex;
  gap: 25px;
}
.contact form > div > label {
  flex: 1;
}
.contact form input, .contact form select, .contact form textarea {
  border: 1px solid #000;
  border-radius: 5px;
  width: 100%;
  height: 62px;
  padding-left: 15px;
  padding-right: 15px;
}
.contact form textarea {
  min-height: 185px;
}
.contact form label {
  position: relative;
  margin: 25px 0;
  display: block;
}
.contact form label > span {
  position: absolute;
  top: -5px;
  left: 25px;
  font-size: 13px;
  background: #fff;
  padding-left: 5px;
  padding-right: 5px;
}
.contact form button[type=submit] {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 100%;
  border: 1px solid #000;
  background: #fff;
  right: -84px;
  bottom: -84px;
  font-family: "Sofia Sans", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.2s ease all;
}
@media (max-width: 991px) {
  .contact form button[type=submit] {
    position: static;
    width: auto;
    height: auto;
    padding: 15px;
    border-radius: 0;
  }
}
.contact form button[type=submit]:hover {
  background: #000;
  color: #fff;
}

.footer {
  margin-top: 150px;
}
.footer::before {
  content: "";
  width: 90%;
  height: 1px;
  margin: 0 auto;
  background: #000;
  display: block;
}
.footer__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px;
}
@media (max-width: 991px) {
  .footer__body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}
.footer__body--about {
  max-width: 40%;
  width: 40%;
  min-width: 40%;
  padding-right: 75px;
}
@media (max-width: 991px) {
  .footer__body--about {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
  }
}
.footer__body--about p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}
.footer__body--menu {
  width: 60%;
  max-width: 60%;
  min-width: 60%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .footer__body--menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
  }
}
.footer__body--menu-group {
  width: 33.333%;
  max-width: 33.333%;
  min-width: 33.333%;
}
@media (max-width: 991px) {
  .footer__body--menu-group {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.footer__body--menu-group li:not(.footer__body--menu-group-heading) {
  padding: 5px 0;
}
.footer__body--menu-group li:not(.footer__body--menu-group-heading) a, .footer__body--menu-group li:not(.footer__body--menu-group-heading) span {
  color: #000;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s ease all;
}
.footer__body--menu-group li:not(.footer__body--menu-group-heading) a:hover {
  color: #FF2060;
}
.footer__body h4, .footer__body .footer__body--menu-group-heading {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .footer__body h4, .footer__body .footer__body--menu-group-heading {
    font-size: 37px;
  }
}
.footer__body h4::after, .footer__body .footer__body--menu-group-heading::after {
  content: "";
  width: 155px;
  max-width: 100%;
  height: 1px;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  background: #000;
}
.footer__copyright {
  text-align: center;
  display: block;
  padding-bottom: 25px;
}
.footer__copyright::before {
  content: "";
  width: 90%;
  height: 1px;
  margin: 0 auto;
  background: #000;
  display: block;
  margin-bottom: 50px;
}

.blog h3 {
  margin-left: 25px;
}
.blog h3 + small {
  text-align: center;
  display: block;
  margin-top: 15px;
}
.blog h3 + small a {
  color: #000;
  text-decoration: none;
}
.blog__wrapper {
  display: grid;
  gap: 25px;
  padding: 50px 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1199px) {
  .blog__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .blog__wrapper {
    grid-template-columns: 1fr;
  }
}
.blog__wrapper .realization__body {
  max-width: 100%;
  transition: 0.2s ease all;
}
.blog__wrapper .realization__body:hover {
  transform: scale(1.1);
}
.blog__wrapper .realization__body:hover a {
  display: block;
}
.blog__page h3 {
  margin-left: 15px;
}
.blog__page .blog__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 50px;
  row-gap: 75px;
}
@media (max-width: 1199px) {
  .blog__page .blog__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .blog__page .blog__wrapper {
    grid-template-columns: 1fr;
  }
}
.blog__page .blog__wrapper .realization__body {
  max-width: 100%;
}
.blog-detail__page h1 + span {
  display: block;
  text-align: center;
  margin-top: 30px;
}
.blog-detail-content {
  width: 700px;
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  margin-top: 50px;
  text-align: justify;
}
.blog-detail-content img {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  max-width: 100%;
}
.blog-detail-content p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
}

.preloader {
  position: relative;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease all;
}
.preloader.--hide {
  visibility: hidden;
  opacity: 0;
}

.lid {
  width: 80px;
  height: 30px;
  background: #e6e6e6;
  border-radius: 5px 5px 0 0;
  border: 3px solid #999;
  border-bottom: none;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.button {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 15px;
  background: #999;
  border-radius: 8px;
}

.mug {
  width: 80px;
  height: 140px;
  background: linear-gradient(to bottom, #fff, #e0e0e0);
  border-radius: 0 0 15px 15px;
  position: relative;
  overflow: hidden;
  border: 3px solid #999;
  margin: -3px auto 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.coffee {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #6f4e37;
  animation: irregularFill 4s infinite;
}

@keyframes irregularFill {
  0% {
    height: 0%;
  }
  10% {
    height: 20%;
  }
  20% {
    height: 18%;
  }
  30% {
    height: 35%;
  }
  40% {
    height: 33%;
  }
  50% {
    height: 60%;
  }
  60% {
    height: 58%;
  }
  70% {
    height: 75%;
  }
  80% {
    height: 72%;
  }
  90% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
.wave {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 10 Q 10 0, 20 10 T 40 10 T 60 10 T 80 10 T 100 10 T 120 10 V20 H0 Z" fill="%236f4e37"/></svg>');
  background-size: 200% 100%;
  animation: waveAnim 1.5s linear infinite;
  pointer-events: none;
}

@keyframes waveAnim {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: 100%;
  }
}
.loading-text {
  text-align: center;
  margin-top: 20px;
  font-family: sans-serif;
  color: #444;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */
