@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Joti+One&family=Shadows+Into+Light&display=swap");
body {
  font-family: "Inter", sans-serif;
}

@keyframes fadeInMove {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.container__title {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  font-family: "Joti One", serif;
  margin: 0 0 30px 0;
  padding: 30px 20px;
  border-bottom: 1px solid #d7d7d7;
}

body {
  padding: 0;
  margin: 0;
  background-color: #100C06;
}

.hero {
  height: 100vh;
  background-color: rgb(255, 255, 255);
  position: relative;
}
.hero__buttons {
  display: flex;
  gap: 20px;
}
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.hero__bottom {
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .hero__bottom {
    bottom: -5px;
  }
}
@media screen and (max-width: 769px) {
  .hero__bottom {
    bottom: -5px;
  }
}
.hero__bottom svg {
  width: 100%;
}
.hero__titles {
  bottom: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-family: "Joti One", serif;
}
.hero__button {
  padding: 20px 37px;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 17px;
  background-color: rgba(0, 0, 0, 0.3215686275);
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  transition: 0.5s;
  font-family: "Sigmar", sans-serif;
  margin-top: 40px;
}
.hero__button--buy {
  padding: 20px 37px;
  text-decoration: none;
  border: 1px solid #7c7c7c;
  border-radius: 17px;
  background-color: rgb(255, 167, 0);
  font-weight: 800;
  font-size: 16px;
  color: #000;
  transition: 0.5s;
  font-family: "Sigmar", sans-serif;
  margin-top: 40px;
}
.hero__button:hover {
  transition: 0.5s;
  transform: scale(1.1);
}
@media screen and (min-width: 769px) {
  .hero__title {
    font-weight: 700;
    font-size: 118px;
    color: #fff;
    line-height: 114px;
  }
}
@media screen and (max-width: 769px) {
  .hero__title {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
  }
}
.hero__title {
  font-family: "Joti One", serif;
  padding: 0;
  margin: 0;
  text-shadow: 6px 8px 2px #000;
}
.hero__title strong {
  color: #D78F09;
}
.hero__subtitle {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .hero__subtitle {
    font-weight: 200;
    font-size: 36px;
    color: #fff;
  }
}
@media screen and (max-width: 769px) {
  .hero__subtitle {
    font-weight: 200;
    font-size: 24px;
    color: #fff;
  }
}
.hero__subtitle {
  font-family: "Shadows Into Light", cursive;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInMove 0.8s ease-out forwards;
}
.hero__nav-button {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__nav-button svg {
  fill: #fff;
  stroke: #fff;
  width: 17px;
}
.hero__nav {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}
.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 769px) {
  .hero__background img {
    object-position: right;
  }
}
.hero__mask {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000000;
}
@media screen and (min-width: 769px) {
  .hero__mask {
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(255, 195, 0, 0.25) 100%);
  }
}
@media screen and (max-width: 769px) {
  .hero__mask {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(39, 30, 0, 0.7) 100%);
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.5882352941);
}
.header.subpage {
  background-color: #1a1a1a;
}
.header.active {
  background: rgba(0, 0, 0, 0.8705882353);
  z-index: 100;
  backdrop-filter: blur(10px); /* rozmycie tła pod spodem */
  -webkit-backdrop-filter: blur(10px); /* wsparcie dla Safari */
  transition: 0.5s;
}
.header:not(.active) {
  transition: 0.5s;
}
.header__inside {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .header__right {
    gap: 16px;
    padding-right: 40px;
  }
}
.header__lang {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
@media screen and (max-width: 400px) {
  .header__lang {
    font-size: 12px;
  }
}
.header__lang-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}
.header__lang-link:hover {
  opacity: 1;
  color: #D78F09;
}
.header__lang-link.is-active {
  opacity: 1;
  color: #D78F09;
  pointer-events: none;
}
.header__logo {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .header__logo {
    padding-left: 40px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 769px) {
  .header__logo-img {
    width: 255px;
  }
}
@media screen and (max-width: 769px) {
  .header__logo-img {
    width: 205px;
  }
}
.header__nav-button {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.header__nav-button svg {
  fill: #fff;
  stroke: #fff;
  width: 17px;
}

.about__top {
  position: relative;
  top: -39px;
  width: 100%;
}
.about__bottom {
  position: relative;
}
@media screen and (min-width: 769px) {
  .about__bottom {
    top: -2px;
  }
}
@media screen and (max-width: 769px) {
  .about__bottom {
    top: -12px;
  }
}
.about__hr {
  height: 1px !important;
  display: block;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.about__inside {
  display: grid;
  gap: 50px;
  margin: 0px 0;
}
@media screen and (min-width: 769px) {
  .about__inside {
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
}
@media screen and (max-width: 769px) {
  .about__inside {
    grid-template-columns: 1fr;
  }
}
.about__inside {
  margin-top: -43px;
  background: white;
  z-index: 10;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
}
.about__img {
  width: 100%;
  border-radius: 25px;
  z-index: 10;
  position: relative;
  margin: 0 auto;
  display: block;
  transform: rotate(-3deg);
}
.about__title {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 36px;
  color: #000;
  font-family: "Joti One", serif;
}
.about__subtitle {
  font-weight: 900;
  font-size: 16px;
  color: #000;
}
.about__content {
  font-weight: 300;
  font-size: 16px;
  color: #000;
  line-height: 24px;
}

.quickinfo {
  margin-bottom: 100px;
}
.quickinfo__inside {
  background-color: #EDEDED;
}
.quickinfo__list {
  padding: 0 50px;
  display: grid;
  background-color: #EDEDED;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .quickinfo__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 769px) {
  .quickinfo__list {
    grid-template-columns: 1fr;
  }
}
.quickinfo__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  flex-direction: column;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  line-height: 22px;
}
.quickinfo__item a {
  text-decoration: none;
  color: #D78F09;
}
.quickinfo__icon {
  width: 50px;
  height: 50px;
  background: #D78F09;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.quickinfo__icon svg {
  height: 35px;
  width: 35px;
}

.offer {
  background-image: url(./../../img/offer.png);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 70px 0;
}
.offer__inside {
  display: grid;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 769px) {
  .offer__inside {
    grid-template-columns: 1fr 300px;
  }
}
@media screen and (max-width: 769px) {
  .offer__inside {
    grid-template-columns: 1fr;
  }
}
.offer__mask {
  background: rgba(30, 30, 30, 0.71);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.offer__nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .offer__nav {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 769px) {
  .offer__nav {
    justify-content: center;
    margin-top: 20px;
  }
}
.offer__button {
  padding: 20px 37px;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.3215686275);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transition: 0.5s;
}
.offer__button:hover {
  transition: 0.5s;
  transform: scale(1.1);
}
.offer__title {
  font-family: "Joti One", serif;
}
@media screen and (min-width: 769px) {
  .offer__title {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    line-height: 52px;
  }
}
@media screen and (max-width: 769px) {
  .offer__title {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: center;
  }
}

.gallery {
  margin-top: 100px;
}
.gallery__title {
  font-weight: 500;
  font-size: 36px;
  color: #fff;
  font-family: "Joti One", serif;
  text-align: center;
}
.gallery__list {
  display: grid;
}
@media screen and (min-width: 769px) {
  .gallery__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 769px) {
  .gallery__list {
    grid-template-columns: 1fr 1fr;
  }
}
.gallery__list {
  gap: 30px;
}
.gallery__list img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .gallery__list img {
    height: 300px;
  }
}
@media screen and (max-width: 769px) {
  .gallery__list img {
    height: 180px;
  }
}
.gallery__list img {
  background-color: #ededed;
  display: block;
  object-fit: cover;
}
.gallery img:hover {
  transition: 0.5s;
  transform: scale(1.1);
}
.gallery img {
  transition: 0.5s;
  transform: scale(1);
}

.faq {
  margin: 100px 0;
}
.faq__list {
  padding: 0;
}
.faq__title {
  font-weight: 500;
  font-size: 36px;
  color: #fff;
  font-family: "Joti One", serif;
  text-align: center;
}
.faq__icon {
  width: 57px;
  height: 57px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D78F09;
}
.faq__icon svg {
  width: 25px;
  height: 25px;
  color: #D78F09;
}
.faq__item.active .faq__icon {
  transform: rotate(90deg);
  transition: 0.2s;
}
.faq__item:not(.active) .faq__icon {
  transition: 0.2s;
}
.faq__item {
  list-style: none;
  padding: 10px 0;
}
.faq__item__inside {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 30px;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.faq__item-answer {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #a8a8a8;
  overflow: hidden;
}
.faq__item:not(.active) .faq__item-answer {
  max-height: 0;
  transition: 0.2s;
}
.faq__item.active .faq__item-answer {
  transition: 0.2s;
  max-height: 500px;
}
.faq__more-button {
  padding: 20px 37px;
  text-decoration: none;
  border: 1px solid #D78F09;
  border-radius: 30px;
  background-color: transparent;
  font-weight: 300;
  font-size: 16px;
  color: #D78F09;
  margin: 0 auto;
  display: block;
  width: max-content;
  transition: 0.5s;
}
.faq__more-button:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.footer {
  padding: 50px 25px 26px 25px;
  background-color: #000;
}
.footer__imoje {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__imoje-img {
  width: 111px;
}
.footer hr {
  border-color: #4e4e4e;
  border-style: dashed;
}
.footer__shortdesc {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: block;
}
.footer__shortdesc strong {
  font-weight: 700;
}
.footer__a {
  font-weight: 300;
  font-size: 16px;
  color: #D78F09;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .footer__a {
    padding: 0 15px;
  }
}
@media screen and (max-width: 769px) {
  .footer__a {
    padding: 0 2px;
  }
}
.footer__span {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
.footer__links {
  text-align: center;
}
.footer__logo {
  margin: 0 auto;
  display: block;
}
.footer__social {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 8px;
}
.footer__social-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #fff;
}
.footer__social-link svg path {
  fill: #fff;
}
.footer__social-link:hover svg, .footer__social-link:hover svg path {
  fill: #241b0e;
}
.footer__social-link:hover {
  color: #241b0e;
  background-color: #D78F09;
  border-color: #D78F09;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(215, 143, 9, 0.25);
}
.footer__social-link:focus-visible {
  outline: 2px solid #D78F09;
  outline-offset: 3px;
}

.nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 110;
  width: 250px;
}
.nav__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.nav__inside > div {
  width: 100%;
}
.nav__inside {
  padding-left: 15px;
  padding-right: 15px;
  border-left: #D78F09 5px solid;
  gap: 30px;
  height: 100%;
  display: flex;
}
.nav__background-img {
  width: 100%;
  height: 100%;
  opacity: 0.1;
  object-fit: cover;
}
.nav__header {
  display: grid;
  grid-template-columns: 1fr 30px;
  margin-top: 40px;
}
.nav__header svg {
  width: 30px;
}
.nav__header div {
  display: flex;
  align-items: center;
}
.nav__title {
  font-weight: 700;
  font-size: 32px;
  color: #000;
  font-family: "Sigmar", sans-serif;
  padding: 0;
  margin: 0;
}
.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__nav {
  margin-top: 20px;
  z-index: 100;
  display: block;
  position: relative;
}
.nav__a {
  display: flex;
  align-items: center;
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
.nav__a .nav__line {
  width: 0;
  transition: 0.5s;
}
.nav__a:hover .nav__line {
  width: 35px;
  transition: 0.5s;
}
.nav__img {
  background-color: #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav__line {
  background: #D78F09;
  height: 2px;
  display: block;
  margin-right: 10px;
}
.nav__close-button:hover {
  transform: scale(1.5);
  transition: 0.5s;
}
.nav__close-button {
  transform: scale(1);
  transition: 0.5s;
}
.nav__lang {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}
.nav__lang-heading {
  font-weight: 600;
  font-size: 13px;
  color: #333;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav__lang-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav__lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  text-decoration: none;
}
.nav__lang-link:hover {
  border-color: #D78F09;
  color: #D78F09;
}
.nav__lang-link.is-active {
  border-color: #D78F09;
  background: rgba(215, 143, 9, 0.12);
  color: #D78F09;
  pointer-events: none;
}

.contact {
  margin-bottom: 50px;
}
.contact__opening-hours-content {
  color: #fff;
}
.contact__inside {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .contact__inside {
    grid-template-columns: 1fr 350px;
  }
}
@media screen and (max-width: 769px) {
  .contact__inside {
    grid-template-columns: 1fr;
  }
}
.contact__title {
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  font-family: "Joti One", serif;
}
.contact span {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  display: block;
  line-height: 24px;
}
.contact__item {
  display: grid;
  grid-template-columns: 1fr 30px;
  border-bottom: 1px solid #252525;
  padding-bottom: 2px;
  margin-bottom: 9px;
}
.contact__item div {
  display: flex;
  align-items: center;
}
.contact a {
  color: #D78F09;
  text-decoration: none;
}
.contact__copy {
  display: block;
  background: #D78F09;
  padding: 6px 7px 2px 7px;
  border-radius: 5px;
}
.contact__copy svg {
  width: 15px;
  color: #000;
}

.main.subpage {
  margin-top: 100px;
}

.faqpage__list {
  padding: 0 20px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faqpage__item {
  background-color: #111;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #323232;
}
.faqpage__title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0 0 10px 0;
}
.faqpage__answer {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

.contentpage {
  color: #fff;
}
.contentpage h2 {
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  font-family: "Joti One", serif;
}
.contentpage h3 {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.contentpage span, .contentpage p {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}

.order-form__price-title {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: block;
}
.order-form__price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-form__price {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  font-family: "Joti One", serif;
  margin-bottom: 20px;
}
.order-form .order-form__price {
  font-size: 24px !important;
}

.offerpage__summary {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.offerpage__content ul {
  list-style: square !important;
  padding-left: 15px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offerpage__text-right {
  text-align: right;
}
.offerpage__block--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  gap: 30px;
}
@media screen and (max-width: 769px) {
  .offerpage__block--2 {
    grid-template-columns: 1fr;
  }
}
.offerpage__block--3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
  gap: 30px;
}
@media screen and (max-width: 769px) {
  .offerpage__block--3 {
    grid-template-columns: 1fr;
  }
}
.offerpage__block__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offerpage__block--2:nth-child(2) {
  direction: rtl;
}
.offerpage__block--2:nth-child(2) .offerpage__col {
  direction: ltr;
}

.offer-group__banner {
  margin: 40px 0 32px 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3d2e19;
  line-height: 0;
  background: #1a140c;
}
.offer-group__banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 370px;
  object-fit: cover;
  object-position: top;
}
.offer-group__block {
  align-items: flex-start;
  background: #241b0e;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #3d2e19;
  margin: 0 0 50px 0;
}
.offer-group__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-group__heading {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px 0;
}
.offer-group__intro {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  margin: 0 0 8px 0;
}
.offer-group__list {
  list-style: square;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
.offer-group__summary {
  text-align: left;
  max-width: 640px;
  margin: 16px 0 0;
  padding: 0;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.offer-group__discount {
  margin-top: 24px;
}
.offer-group__discount-title {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.offer-group__discount-text {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.offer-group__contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-group__contact-label {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.offer-group__contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.offer-group__button {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.offer-group__button--primary {
  background-color: #f7c04a;
  color: #241b0e;
  border-color: #f7c04a;
}
.offer-group__button--primary:hover {
  background-color: #ffd66b;
}
.offer-group__button--secondary {
  background-color: transparent;
  color: #f7c04a;
  border-color: #f7c04a;
}
.offer-group__button--secondary:hover {
  background-color: rgba(247, 192, 74, 0.1);
}
.offer-group__contact-email {
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}

.terms-content {
  padding: 0 20px;
}
.terms-content h4 {
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 40px;
}
.terms-content p {
  margin-bottom: 10px;
}

.author {
  border-top: 1px solid #2b2b2b;
  background-color: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.author span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 300;
  font-size: 14px;
  color: #717171;
  letter-spacing: 1px;
}
.author img {
  width: 95px;
}

.opinions {
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: #1B150B;
}
.opinions .splide__slide {
  padding: 20px;
  overflow: visible;
}
.opinions #opinions-slider {
  display: flex;
  flex-direction: column;
}
.opinions #opinions-slider .splide__track {
  order: 1;
}
.opinions #opinions-slider .splide__pagination {
  display: none !important;
}
.opinions #opinions-slider .splide__arrows {
  order: 2;
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  top: auto;
  bottom: auto;
}
.opinions #opinions-slider .splide__arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  margin: 0;
  border: 1px solid #D78F09;
  background: transparent;
}
.opinions #opinions-slider .splide__arrow svg {
  fill: #D78F09;
}
.opinions #opinions-slider .splide__arrow--prev {
  left: auto;
}
.opinions #opinions-slider .splide__arrow--next {
  right: auto;
}

.opinion-card {
  padding: 40px 30px;
  background-color: #20190E;
  border: 1px solid #382C17;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: visible;
}
.opinion-card__quote {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: auto;
  z-index: 1;
}
.opinion-card__text {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.opinion-card__author {
  margin-top: auto;
  text-align: right;
}
.opinion-card__name {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.opinion-card__role {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin: 0;
}

.video-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-popup-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-popup {
  background: #000;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.video-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #131313;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.video-popup__close {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}
.video-popup__close:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.video-popup__body {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-popup__body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-popup__footer {
  padding: 14px 18px 18px 18px;
  background: #000;
  display: flex;
  justify-content: flex-end;
}
.video-popup__close-btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #f7c04a;
  background-color: #f7c04a;
  color: #241b0e;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.video-popup__close-btn:hover {
  background-color: #ffd66b;
  border-color: #ffd66b;
}

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