@import "default.css";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --defaultFont: "Montserrat", sans-serif;
  --bgColor: #615049;
  --colorFC: #FCF0E2;
  --accentColor: #BB7F54;
  --textColor: #282626;
  --blackColor: #282626;
}

.fixed body {
  overflow: hidden;
}

body {
  position: relative;
  font-family: var(--defaultFont);
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: var(--textColor);
  background: var(--bgColor);
  min-width: 375px;
  overflow-x: hidden;
}

.hidden {
  display: none;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

[class*=__container] {
  max-width: 1224px;
  width: 100%;
  margin: auto;
}

main {
  position: relative;
  background: #fff;
  max-width: 1280px;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto 22px auto;
  padding: 30px 28px 110px 30px;
}
main::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 13px);
  width: calc(100% - 56px);
  height: 140px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(15px);
  z-index: -5;
}

body.inner-page main {
  padding: 30px 28px 10px 30px;
}

.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.page-title {
  color: var(--textColor);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
}

.ico {
  display: flex;
  align-items: center;
}
.ico[class*=icon-]::before {
  font-family: "icons";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  padding: 4px;
  color: var(--textColor);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.12s linear;
}
.button span {
  padding: 4px 15px;
  background: #fff;
  border-radius: 52px;
  transition: all 0.12s linear;
}
.button:hover {
  border-color: var(--blackColor);
  transition: all 0.12s linear;
}
.button:hover span {
  background: var(--blackColor);
  color: #fff;
}

.button-accent {
  border: 1px solid var(--accentColor);
  color: #fff;
}
.button-accent span {
  background: var(--accentColor);
}

.button-dark {
  border-color: var(--blackColor);
  font-weight: 600;
}
.button-dark span {
  background: var(--blackColor);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.button-dark span[class*=icon-]::before {
  font-weight: normal;
  line-height: 1;
}
.button-dark:hover {
  border-color: var(--accentColor);
}
.button-dark:hover span {
  background: var(--accentColor);
}

button.button {
  background: none;
  line-height: normal;
}

button[type=submit] {
  font-size: 16px;
  font-weight: 600;
  min-width: 175px;
}
button[type=submit] span {
  padding: 5px 15px;
  width: 100%;
}
button[type=submit] span.icon-arrow-lnk {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
button[type=submit] .icon-arrow-lnk::before {
  font-size: 12px;
  line-height: 1;
}

.link {
  color: #F9CCAB;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.link i.icon-arrow-lnk {
  gap: 10px;
  line-height: 1;
  font-size: 10px;
}
.link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

nav.main-menu {
  overflow: hidden;
  padding: 24px 32px 21px 32px;
  border-radius: 15px;
  background: linear-gradient(90deg, #E1DAD1 0.02%, #E3D8CB 99.45%);
  margin-bottom: 24px;
}
nav.main-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.main-menu ul li a span[class*=icon-] {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.main-menu ul li a span[class*=icon-]::before {
  font-size: 15px;
}
nav.main-menu ul li.m-right {
  margin: 0 0 0 auto;
}

.main-menu.with-fullslider {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1280px;
  background: transparent;
  z-index: 100;
  padding: 24px 64px 21px 64px;
}

.sidebar {
  display: flex;
  align-items: center;
  border-radius: calc(var(--index) * 2);
  justify-content: center;
  flex-wrap: wrap;
  background: var(--blackColor);
  padding: 10px;
  gap: 25px;
  margin-top: 24px;
}
.sidebar a.button {
  font-weight: 600;
}
.sidebar a.button span {
  font-size: 12px;
}
.sidebar a.button span[class*=icon-] {
  gap: 10px;
}
.sidebar a.button span[class*=icon-]::before {
  font-size: 16px;
}
.sidebar a.button:hover {
  border-color: var(--accentColor);
}
.sidebar a.button:hover span {
  background: var(--accentColor);
}
.sidebar.side-nav {
  justify-content: flex-start;
}

.sidebar-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sidebar-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 0 auto;
}
.sidebar-nav__button {
  display: block;
  width: 33px;
  height: 33px;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid #fff;
  flex-shrink: 0;
  transition: border-color 0.12s ease;
}
.sidebar-nav__button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  transition: background 0.12s ease;
}
.sidebar-nav__button:hover {
  border-color: var(--accentColor);
  transition: border-color 0.12s ease;
}
.sidebar-nav__button:hover span {
  background: var(--accentColor);
  transition: background 0.12s ease;
}
.sidebar-nav__button:hover span svg path {
  fill: #fff;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
  padding: 13px 20px;
  background: #FFF;
  color: #111;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  border-radius: 12px;
  border: 1px solid #181818;
  outline: none;
  width: 100%;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, textarea::-moz-placeholder {
  color: #111;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  color: #111;
}
input[type=text]:focus-visible,
input[type=tel]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible,
textarea:focus-visible {
  border-color: var(--accentColor);
}

.fancybox__container {
  max-width: 100%;
}
.fancybox__container .fancybox__backdrop {
  background: rgba(163, 165, 172, 0.5);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  opacity: 1;
  will-change: opacity, backdrop-filter;
}

.modal .modal-wrapper {
  padding: 50px 20px 30px 20px;
  background: #FFF;
  border-radius: 12px;
  -webkit-mask: url(../img/subs.svg) calc(100% + 1px) calc(0% - 1px) no-repeat, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.modal.fancybox__content {
  border-radius: 12px;
  background: transparent;
  filter: drop-shadow(0px 0px 56px rgba(66, 68, 73, 0.15));
  max-width: 350px;
  width: 100%;
  padding: 0;
}

.modal .modal-title {
  color: #111;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

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

.modal form.modal-form button[type=submit] {
  padding: 11.5px 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}

.modal .set-rating {
  margin-top: 5px;
}

.modal .set-rating > span {
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.modal .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  background: #fff;
  transition: background 0.12s linear;
  z-index: 1;
}

.modal .modal-close:hover {
  cursor: pointer;
  background: #111;
}

.modal .modal-close:hover svg path {
  fill: #fff;
}

form.modal-form input[type=text],
form.modal-form input[type=password] {
  outline: none;
  background: #E7DFDF;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  line-height: 15px;
  padding: 10.5px 17px;
}
form.modal-form button[type=submit].form-button {
  padding: 5px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}
form.modal-form button[type=submit].form-button span {
  padding: 10px 15px;
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  main {
    padding: 90px 28px 110px 30px;
  }
  body.inner-page main {
    padding: 90px 28px 10px 30px;
  }
  .page-title {
    font-size: 40px;
    line-height: 42px;
  }
  .main-menu.with-fullslider {
    position: fixed;
    width: 100%;
    left: auto;
    transform: none;
    max-width: 375px;
    z-index: 999;
    background: linear-gradient(90deg, #E1DAD1 0.02%, #E3D8CB 99.45%);
    padding: 106px 28px 80px 28px;
  }
}
@media screen and (max-width: 520px) {
  .page-title {
    gap: 5px;
    font-size: 30px;
    line-height: 32px;
  }
}