@charset "UTF-8";
/* GLOBAL */
@font-face {
  font-family: "PlayfairDisplay";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-SemiBoldItalic.woff2") format("woff2"), url("../fonts/PlayfairDisplay-SemiBoldItalic.woff") format("woff");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PTSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/PTSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Times New Roman";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/timesnewromanpsmt.woff2") format("woff2");
}
:root {
  --swiper-pagination-bottom: -20px;
}

.bg-image {
  background-image: url("../images/bg.jpg");
  background-repeat: repeat;
}

* {
  box-sizing: border-box;
}

.wrapper {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0 40px;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.brd-gold {
  border: 1px solid #d1b97a;
}

.title {
  font-family: "PlayfairDisplay", sans-serif;
  font-size: 24px;
  margin: 0;
  margin-bottom: 20px;
  line-height: 1.23;
}
@media (min-width: 1200px) {
  .title {
    font-size: 36px;
    margin-bottom: 35px;
  }
}

.title-main {
  font-family: "PlayfairDisplay", sans-serif;
  font-size: 24px;
  color: #f5f5f5;
  line-height: 1.23;
  margin: 0;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .title-main {
    font-size: 46px;
  }
}

.description-main {
  font-size: 15px;
  line-height: 1.4;
  color: #d1b97a;
  position: relative;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .description-main {
    font-size: 18px;
  }
}
.description-main::after {
  content: "";
  margin-top: 10px;
  display: block;
  height: 1px;
  background-color: #d1b97a;
  max-width: 560px;
}

.wrapper-block {
  position: relative;
}

.page {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000039;
  box-sizing: border-box;
  min-width: 320px;
  line-height: 1.45;
  scroll-behavior: smooth;
}
@media (min-width: 1200px) {
  .page {
    height: 100%;
    font-size: 16px;
    line-height: 19px;
  }
}

.page__body {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  background-image: linear-gradient(45deg, #050505, #363636, #808080);
  background-attachment: fixed; /* Фиксируем фон */
  background-repeat: no-repeat; /* Запрещаем повторение фона */
  background-size: cover; /* Фон заполняет весь контейнер */
}
@media (min-width: 1200px) {
  .page__body {
    min-height: 100%;
  }
}

.page__body.is-open {
  overflow: hidden;
}

.page__main {
  padding: 10px 0;
}
@media (min-width: 1200px) {
  .page__main {
    flex-grow: 1;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  min-width: 320px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 2440px) {
  .container {
    width: 1540px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* BLOCKS */
.btn {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  padding: 20px 10px;
  display: block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.btn--gold {
  color: #d1b97a;
  border: 1px solid transparent;
  padding: 4px 10px;
  font-size: 12px;
  width: unset;
}
@media (min-width: 768px) {
  .btn--gold {
    font-size: 14px;
  }
}
.btn--gold:hover {
  color: #f5f5f5;
  border-color: #f5f5f5;
}
.btn--gold-border {
  border: 1px solid #d1b97a;
  color: #d1b97a;
  padding: 15px 10px;
}
@media (min-width: 1200px) {
  .btn--gold-border {
    padding: 14px 0;
  }
  .btn--gold-border:hover {
    color: #f5f5f5;
    border-color: #f5f5f5;
  }
}
.btn--main {
  color: #ffffff;
  background-color: #363636;
  border-radius: 6px;
  padding: 20px;
  text-transform: uppercase;
  max-width: 295px;
}
.btn--main:hover {
  color: #d1b97a;
}
.btn--white {
  color: #ffffff;
  border: 1px solid #f5f5f5;
  background-color: #000039;
  text-transform: uppercase;
}
.btn--white:hover {
  color: #d1b97a;
  border: 1px solid #d1b97a;
}

@media (min-width: 1200px) {
  .header {
    background-color: transparent;
    border-bottom: none;
  }
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 20px;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 0;
  padding-bottom: 5px;
}
@media (min-width: 1200px) {
  .header__wrapper {
    padding-bottom: 30px;
  }
}

.header__logo-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  padding-top: 0;
  color: #d1b97a;
  position: relative;
}
@media (min-width: 1200px) {
  .header__logo-wrapper {
    padding: 36px 0;
    padding-top: 0;
  }
}

.header__burger {
  position: relative;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: 28px;
  height: 20px;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 1200px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  display: block;
  position: absolute;
  width: 100%;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  height: 3px;
  background-color: #d1b97a;
  border: none;
}
.header__burger span:first-child {
  top: 0;
}
.header__burger span:nth-child(2),
.header__burger span:nth-child(3) {
  top: 8px;
}
.header__burger span:nth-child(4) {
  width: 70%;
  left: unset;
  right: 0;
  top: 16px;
}

.header__logo {
  width: 200px;
  display: block;
  transition: 0.3s;
}
.header__logo:hover {
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 380px;
  }
}

.header__burger--active span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.header__burger--active span:nth-child(2) {
  transform: rotate(45deg);
}

.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg);
}

.header__burger--active span:nth-child(4) {
  width: 0;
  right: 50%;
}

.header__language {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .header__language {
    margin-top: 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.header__language-link {
  width: 33px;
  height: 20px;
  display: block;
  transition: 0.3s;
}
.header__language-link:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .header__language-link {
    width: 40px;
    height: 20px;
  }
}

.logo__title {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
  color: #d1b97a;
  text-align: center;
  font-size: 24px;
  line-height: 35px;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1200px) {
  .logo__title {
    font-size: 34px;
    line-height: 44px;
  }
}

.logo__info {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
}

.logo__description {
  margin: 0;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .logo__description {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.logo__name {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  margin: 0;
}
@media (min-width: 1200px) {
  .logo__name {
    font-size: 25px;
  }
}

.nav-menu {
  display: flex;
  position: unset;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  opacity: 1;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #d1b97a;
  border-bottom: 1px solid #d1b97a;
}
.nav-menu--active {
  display: block;
  opacity: 1;
  transition: 0.3s;
  animation: openMenu;
  animation-duration: 0.3s;
  border-bottom: 1px solid #d1b97a;
}

@keyframes openMenu {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
.nav-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .nav-menu__list {
    gap: 0;
  }
}

.nav-menu__link {
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  padding: 2px 10px;
  font-size: 12px;
  color: #cccbcb;
  margin: 0;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  border: 1px solid #ffffff;
}
@media (min-width: 768px) {
  .nav-menu__link {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
  }
}
.nav-menu__link--gold {
  color: #d1b97a;
}
.nav-menu__link::after {
  content: "";
  position: relative;
  bottom: -29px;
  display: block;
  bottom: 8px;
  opacity: 0;
  height: 1px;
  background-color: #d1b97a;
  pointer-events: none;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .nav-menu__link:hover {
    color: #d1b97a;
  }
  .nav-menu__link:hover::after {
    opacity: 1;
    bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .nav-menu__button {
    color: #d1b97a;
    border: none;
  }
}

.hero {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (min-width: 1200px) {
  .hero {
    padding-top: 10px;
  }
}

.hero__banner {
  width: 900px;
  height: 650px;
}
.hero__banner img {
  object-fit: cover;
}

.hero__carousel {
  border: 1px solid #d1b97a;
}

.hero__swiper {
  position: relative;
}

.hero__swiper.is-visible {
  display: block;
}
@media (min-width: 690px) {
  .hero__swiper.is-visible {
    display: none;
  }
}

.hero__swiper--second.is-visible {
  display: none;
}
@media (min-width: 690px) {
  .hero__swiper--second.is-visible {
    display: block;
  }
}

.hero__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero__dots {
  background-color: transparent;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d1b97a;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.hero__dots:hover {
  background-color: #d1b97a;
}
.hero__dots--active {
  background-color: #d1b97a;
}

.hero-card {
  display: flex;
  justify-content: center;
  background-color: #363636;
}
.hero-card img {
  height: 100%;
}

.callback {
  width: 172px;
  padding: 10px;
  margin: 0 auto;
  margin-top: 40px;
  background-image: url("../images/phone.svg");
  background-repeat: no-repeat;
  background-position: center left 16px;
  background-size: 14px;
}
@media (min-width: 768px) {
  .callback {
    position: absolute;
    right: 0;
    top: 56px;
    margin: 0;
  }
  .callback:hover {
    background-image: url("../images/phone-white.svg");
  }
}

.catalog {
  padding-top: 20px;
  padding-bottom: 70px;
}

.catalog__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .catalog__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .catalog__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.gallery {
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .gallery {
    padding-bottom: 86px;
  }
}

.gallery__carousel {
  border: 1px solid #d1b97a;
}

.card {
  position: relative;
  border: 1px solid #d1b97a;
  height: 100%;
  min-height: 370px;
  cursor: pointer;
}
.card img {
  position: relative;
  height: 660px;
}

.card__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.card__content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  min-height: 370px;
  justify-content: end;
  z-index: 1;
  text-align: left;
  padding: 20px;
  min-height: 370px;
}

.card__title {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  color: #d1b97a;
  font-size: 16px;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1b97a;
}
@media (min-width: 2440px) {
  .card__title {
    font-size: 20px;
  }
}

.card__text {
  font-size: 13px;
  line-height: 1.45;
  color: #ffffff;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  text-shadow: 0 2px #000039;
}

@media (min-width: 1200px) {
  .card__block-text {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
}

.text-block {
  background-color: #ffffff;
  color: #000039;
  padding-top: 45px;
  padding-bottom: 60px;
  border: 2px solid #d1b97a;
}
.text-block--color {
  background-color: #f1f5ed;
}

.text-block__content {
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .text-block__content {
    font-size: 18px;
    line-height: 30px;
  }
}

.form {
  padding-top: 40px;
  padding-bottom: 50px;
}

.form__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form__input {
  font-family: "PT Sans", sans-serif;
  width: 100%;
  height: 60px;
  border: 0;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  margin: 0;
  outline: none;
  padding: 0 10px;
  border: 2px solid transparent;
}
.form__input:focus-visible {
  border-color: #d1b97a;
}
.form__input::placeholder {
  font-size: 13px;
  font-family: "PT Sans", sans-serif;
}

.form__textarea {
  padding: 10px;
  font-family: "PT Sans", sans-serif;
  border: 2px solid transparent;
}
.form__textarea:focus-visible {
  border-color: #d1b97a;
  outline: none;
}
.form__textarea::placeholder {
  font-size: 13px;
  font-family: "PT Sans", sans-serif;
}

.form__title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #f5f5f5;
  line-height: 1.23;
  margin: 0;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .form__title {
    font-size: 40px;
  }
}

.form__description {
  color: #d1b97a;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .form__description {
    font-size: 20px;
  }
}

.form__button {
  margin-top: 10px;
  margin-bottom: 10px;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .form__button {
    max-width: 260px;
  }
}

.form__info {
  color: #f5f5f5;
  text-align: center;
  margin: 0;
  font-size: 12px;
}
.form__info a {
  color: #f5f5f5;
  transition: 0.3s;
}
.form__info a:hover {
  color: #d1b97a;
}
@media (min-width: 1200px) {
  .form__info {
    font-size: 11px;
  }
}

.form__wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.contact {
  background-color: #ffffff;
  padding-top: 40px;
  border: 2px solid #d1b97a;
}

.contact__title {
  margin: 0;
  font-family: "PlayfairDisplay", sans-serif;
}

.contact__content {
  font-size: 13px;
  line-height: 1.45;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .contact__content {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .contact__content {
    font-size: 18px;
  }
}
.contact__content a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.contact__content a:hover {
  color: #d1b97a;
}

.contact__form {
  width: 100%;
  height: 400px;
}
.contact__form iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (min-width: 1200px) {
  .contact__form {
    height: 600px;
  }
}

.footer {
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .footer {
    padding-top: 40px;
  }
}
.footer p {
  margin: 0;
}

.footer__logo {
  margin: 0 auto;
}

.footer__button-groupe {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .footer__button-groupe {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.footer__call {
  color: #ffffff;
  text-decoration: none;
  margin: 0;
  margin-top: 20px;
  display: block;
}
.footer__call:hover {
  color: #d1b97a;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: opacity ease-in-out 0.3s;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
  display: none;
  opacity: 0;
  outline: 0;
  cursor: pointer;
}

.modal__header-block {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
  color: #d1b97a;
  text-align: center;
  font-size: 28px;
  line-height: 48px;
  padding: 10px;
  background-image: linear-gradient(45deg, #050505, #363636, #808080);
}
.modal__header-block span {
  text-transform: uppercase;
}
.modal__header-block span:last-child {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 1200px) {
  .modal__header-block {
    font-size: 40px;
  }
}

.modal.is-open {
  display: flex;
  opacity: 1;
}

.modal__button {
  max-width: 100%;
}

.modal__wrapper {
  width: 100%;
  max-width: 560px;
  min-height: 100vh;
  background-color: #fff;
  margin: 0 auto;
  z-index: 1;
  cursor: default;
}
@media (min-width: 1200px) {
  .modal__wrapper {
    min-height: 720px;
    margin: auto;
  }
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #000000;
  padding: 0 10px;
}
.modal__header button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.modal__header button:hover {
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .modal__header {
    background-color: transparent;
    position: fixed;
    top: 30px;
    right: 50px;
  }
}

.modal__content {
  padding: 20px;
}

.modal__title {
  font-weight: 600;
  line-height: 1.2;
  font-size: 28px;
  color: #363636;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .modal__title {
    font-size: 33px;
  }
}

.modal__input {
  border: 1px solid #c9c9c9;
  height: 50px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__info {
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
  color: #363636;
}
.modal__info a {
  color: #363636;
}
.modal__info a:hover {
  color: #d1b97a;
}

.modal__input-group {
  display: flex;
  gap: 10px;
}

.modal__title-group {
  color: #363636;
}/*# sourceMappingURL=style.css.map */
