@charset "UTF-8";
.header {
  position: relative;
  z-index: 1; }

.header__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3.5rem 0rem 4rem 0rem;
  font-size: 1.7rem; }
  @media (max-width: 991px) {
    .header__inner {
      padding: 1rem 0rem 1rem 0rem;
      justify-content: center; } }

.header__logo {
  margin-right: 6.6rem; }
  @media (max-width: 1599px) {
    .header__logo {
      margin-right: 5rem; } }
  @media (max-width: 1199px) {
    .header__logo {
      margin-right: 0; } }
  @media (max-width: 991px) {
    .header__logo {
      order: 2; } }

.header__logo-img {
  width: 141.72px;
  height: 45px; }
  @media (max-width: 1199px) {
    .header__logo-img {
      width: 106.72px;
      height: 35px; } }

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

.header__nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13.5rem; }
  @media (max-width: 1599px) {
    .header__nav-container {
      margin-right: 2.5rem; } }
  @media (max-width: 1199px) {
    .header__nav-container {
      margin-right: 0rem; } }

.header__nav-item {
  margin-right: 2rem;
  margin-left: 2rem; }
  @media (max-width: 1199px) {
    .header__nav-item {
      margin-right: 1.5rem;
      margin-left: 1.5rem; } }
  @media (max-width: 991px) {
    .header__nav-item {
      margin-left: 1rem;
      margin-right: 1rem; } }

.header__nav-link {
  font-size: 1.7rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500;
  line-height: 1.2;
  transition: color .1s linear;
  outline: none; }
  .header__nav-link:hover {
    color: gray; }
  .header__nav-link--tel {
    color: rgba(0, 0, 0, 0.4); }
  @media (max-width: 1199px) {
    .header__nav-link {
      font-size: 1.5rem; } }

.header__buttons {
  position: absolute;
  right: 15px;
  outline: none; }
  @media (max-width: 499px) {
    .header__buttons {
      top: 22.5px; } }

.header__buttons-item {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  margin-right: 3rem;
  outline: none; }
  @media (max-width: 1119px) {
    .header__buttons-item {
      margin-right: 1.5rem; } }
  @media (max-width: 768px) {
    .header__buttons-item {
      margin-right: 0; }
      .header__buttons-item--hidden {
        display: none; } }
  .header__buttons-item:last-child {
    margin-right: 0; }

.header__buttons-icon {
  position: relative;
  height: 20px;
  width: 20px;
  transition: fill .2s linear; }
  @media (max-width: 991px) {
    .header__buttons-icon {
      height: 15px;
      width: 15px; } }

.header__logo-link {
  outline: none; }

@media (min-width: 991px) {
  .burger {
    display: none; } }

.menu {
  position: absolute;
  left: -30px;
  top: 0;
  z-index: 1;
  width: 30%;
  height: 100vh;
  background-color: #fff;
  transition: transform 0.4s ease;
  transform: translateX(-100%); }
  @media (max-width: 768px) {
    .menu {
      width: 100%; } }

.menu__active {
  transform: translateX(0%);
  overflow: hidden; }
  @media (max-width: 768px) {
    .menu__active {
      left: 0; } }

.menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh; }

.menu__list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 2.2rem 1.2rem; }

.menu__list-nav {
  position: relative;
  z-index: 1000; }

.menu__list-footer {
  position: absolute;
  bottom: 65px;
  left: 15px; }

.menu__btn {
  width: 30px;
  height: 30px;
  position: absolute;
  right: -60px;
  top: 17px; }

.menu__close {
  width: 18px;
  padding: 0;
  margin: 0;
  position: relative;
  border: none;
  transition: transform 0.2s linear; }
  .menu__close > span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: rotate(45deg); }
  .menu__close > span::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: rotate(-45deg); }
  .menu__close:hover {
    transform: rotate(15deg); }

.menu__close-img {
  width: 15px;
  height: 14px;
  transition: transform 0.2s linear; }
  .menu__close-img:hover {
    transform: rotate(15deg); }

.menu__input {
  width: 100%;
  border: none;
  background: none;
  margin: 0 1.2rem;
  outline: none;
  position: relative; }
  .menu__input::after {
    content: "Поиск";
    display: block;
    width: 100%;
    position: absolute;
    font-size: 1.5rem;
    top: -8px;
    color: rgba(0, 0, 0, 0.4); }

.menu__nav-item {
  display: flex;
  justify-content: space-between;
  margin: 2.4rem 1.6rem; }

.menu__nav-link {
  font-size: 1.7rem;
  font-family: "Raleway";
  font-weight: 500;
  color: #000;
  transition: color .2s linear; }
  .menu__nav-link:hover {
    color: gray; }

.menu__nav-img {
  width: 15px;
  height: 13px; }

.no-scroll {
  overflow: hidden; }

.container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem; }
  @media (max-width: 768px) {
    .container--active {
      padding-left: 0;
      padding-right: 0; } }

.black__button,
.white__button {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #000;
  border: none;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #fff;
  padding: 1.8rem 2.4rem;
  cursor: pointer;
  transition: color .2s linear, transform .3s linear;
  z-index: 1; }
  .black__button::after,
  .white__button::after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: gray;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity .2s linear; }
  .black__button:hover,
  .white__button:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px); }
    .black__button:hover::after,
    .white__button:hover::after {
      opacity: 1;
      transform: translateY(2px); }
  .black__button--active,
  .white__button--active {
    color: rgba(255, 255, 255, 0.5); }
  .black__button--call,
  .white__button--call {
    width: 380px;
    justify-content: center;
    margin-top: 2rem; }
    @media (max-width: 1199px) {
      .black__button--call,
      .white__button--call {
        width: 100%; } }
  .black__button--full,
  .white__button--full {
    width: 100%;
    display: flex;
    justify-content: center; }
  @media (max-width: 1199px) {
    .black__button,
    .white__button {
      font-size: 1.5rem;
      padding: 1.6rem 2.2rem; } }
  @media (max-width: 768px) {
    .black__button,
    .white__button {
      margin-top: 2rem; } }

.black__button > a {
  color: #fff; }

.white__button {
  background-color: #fff;
  color: #000; }
  .white__button--active {
    color: rgba(0, 0, 0, 0.418); }
  .white__button--footer {
    display: none;
    order: 3;
    margin-top: 4rem; }
    @media (max-width: 768px) {
      .white__button--footer {
        display: block; } }
  .white__button--product {
    position: absolute;
    top: 40%;
    left: 75px; }
    @media (max-width: 768px) {
      .white__button--product {
        display: none; } }
  .white__button:hover {
    color: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px); }
    .white__button:hover::after {
      opacity: 1;
      transform: translateY(2px); }

.black__button-img {
  margin-left: 0.8rem; }
  @media (max-width: 1199px) {
    .black__button-img {
      width: 10px;
      height: 8px; } }

.up__button {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter';
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0; }
  .up__button:hover > a {
    color: white; }
  @media (max-width: 768px) {
    .up__button--footer {
      display: none; } }
  .up__button > a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color .2s linear; }

.page__upload-btn {
  padding: 1.5rem;
  font-size: 1.7rem;
  color: #000;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: color .2s linear, background-color .2s linear; }
  .page__upload-btn:hover {
    background-color: #000;
    color: #fff; }

.load-more__button {
  width: 100%;
  background-color: #F4F4F4;
  border: none;
  font-size: 1.7rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  padding: 2rem 1.5rem;
  transition: background-color .2s linear; }
  .load-more__button:hover {
    background-color: #EBEBEB;
    cursor: pointer; }
  .load-more__button--active {
    color: rgba(0, 0, 0, 0.5); }
  @media (max-width: 991px) {
    .load-more__button {
      font-size: 1.6rem; } }
  @media (max-width: 768px) {
    .load-more__button {
      font-size: 1.5rem; } }
  @media (max-width: 499px) {
    .load-more__button {
      font-size: 1.4rem; } }

.product__favourite {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #000;
  font-family: 'Inter';
  transition: transform .2s linear;
  cursor: pointer; }
  .product__favourite > svg {
    margin-right: 0.8rem; }
  .product__favourite:hover {
    transform: translateY(-2px); }
  @media (max-width: 768px) {
    .product__favourite {
      display: block;
      width: 100%;
      text-align: center;
      margin: 2rem 0; } }

.call__widget {
  position: fixed;
  right: 85px;
  bottom: 19px;
  z-index: 2; }
  @media (max-width: 1199px) {
    .call__widget {
      right: 40px;
      bottom: 5px; } }
  @media (max-width: 991px) {
    .call__widget {
      right: 13px;
      bottom: 2px; } }

.call__button {
  border: none;
  background: none;
  outline: none; }
  .call__button:hover .call__img {
    transform: translateY(-2px);
    cursor: pointer; }

.call__img {
  position: relative;
  bottom: -20px;
  transition: transform .2s linear; }
  @media (max-width: 991px) {
    .call__img {
      width: 80px;
      height: 80px;
      bottom: -20px; } }
  @media (max-width: 768px) {
    .call__img {
      bottom: 0px; } }

.call__button-text {
  font-size: 1.4rem;
  font-family: 'Raleway';
  font-weight: 500;
  text-align: center; }
  @media (max-width: 991px) {
    .call__button-text {
      font-size: 1rem; } }
  @media (max-width: 768px) {
    .call__button-text {
      display: none; } }

.modal__panel {
  display: none;
  transition: background-color .2s linear;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100; }
  .modal__panel--opened {
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden; }

.modal__container {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background-color: #fff;
  padding: 5rem;
  transition: 2s;
  transform: translateX(100%);
  overflow: auto; }
  .modal__container--opened {
    display: block;
    transform: translateX(0%); }
  .modal__container--no-scroll {
    overflow: hidden; }
  @media (max-width: 768px) {
    .modal__container {
      width: 70%; } }
  @media (max-width: 499px) {
    .modal__container {
      width: 100%; } }

.modal__close {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 25px;
  border: none;
  background: none; }

.modal__close-img {
  width: 16px;
  height: 16px;
  transition: transform .2s linear;
  cursor: pointer; }
  .modal__close-img:hover {
    transform: rotate(15deg); }
  @media (max-width: 991px) {
    .modal__close-img {
      width: 14px;
      height: 15px; } }
  @media (max-width: 768px) {
    .modal__close-img {
      width: 14px;
      height: 14px; } }

.modal__title {
  font-size: 3rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 3rem; }
  .modal__title--mail {
    text-align: left;
    font-weight: 700; }
  .modal__title--review {
    text-align: left; }
  @media (max-width: 1199px) {
    .modal__title {
      font-size: 2.5rem; } }
  @media (max-width: 991px) {
    .modal__title {
      font-size: 1.9rem; } }
  @media (max-width: 768px) {
    .modal__title {
      font-size: 1.5rem; } }
  @media (max-width: 499px) {
    .modal__title {
      font-size: 2rem;
      margin-bottom: 1rem; } }

.modal__block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  align-items: center;
  width: 100%; }

.modal__block-bottom {
  max-width: 380px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2rem; }

.modal__block-top {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding-top: 2rem; }
  .modal__block-top--main {
    padding-top: 0; }
  @media (max-width: 499px) {
    .modal__block-top {
      padding-top: 8rem; }
      .modal__block-top--main {
        padding-top: 0; } }

.modal__block-text {
  max-width: 380px;
  font-size: 1.5rem;
  font-family: 'Inter';
  font-weight: 400;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem; }
  @media (max-width: 991px) {
    .modal__block-text {
      font-size: 1rem; } }

.modal__product {
  display: flex;
  flex-direction: column;
  margin: 2rem 0rem; }
  @media (max-width: 499px) {
    .modal__product {
      margin: .5rem 0rem; } }

.modal__product-info {
  display: flex;
  justify-content: space-between;
  border: 1px solid #000;
  margin-top: -.3rem;
  padding: 1.5rem; }

.modal__product-name {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  color: #000;
  font-family: 'Inter';
  font-weight: 400; }
  @media (max-width: 768px) {
    .modal__product-name {
      font-size: 1.1rem; } }

.modal__product-price {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-family: 'Inter';
  font-weight: 400; }
  @media (max-width: 768px) {
    .modal__product-price {
      font-size: 1.1rem; } }

.modal__mail {
  display: none;
  transition: background-color .2s linear;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100; }
  .modal__mail--opened {
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden; }

.modal__mail-container {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background-color: #fff;
  padding: 5rem;
  transition: 2s;
  transform: translateX(100%);
  overflow: auto; }
  .modal__mail-container--opened {
    display: block;
    transform: translateX(0%); }
  @media (max-width: 768px) {
    .modal__mail-container {
      width: 100%; } }

.modal__mail-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.modal__mail-close {
  position: relative; }

.modal__mail-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  transition: transform .2s linear;
  cursor: pointer;
  z-index: 1000; }
  .modal__mail-btn:hover {
    transform: rotate(15deg); }

.modal__mail-img {
  width: 16px;
  height: 16px; }

.modal__mail-top {
  margin: 0rem -5rem; }

.modal__mail-bg {
  margin-top: 3rem;
  width: 100%;
  height: auto; }

.modal__mail-main {
  display: flex;
  max-width: 380px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem 0rem; }

.modal__mail-send {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 100; }
  .modal__mail-send--active {
    display: flex;
    overflow: hidden; }

.modal__send-wrapper {
  position: relative; }

.modal__subtitle {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Inter';
  color: #000; }

.modal__review {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.3); }
  .modal__review--closed {
    display: none; }
  .modal__review--send {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    width: 100%;
    height: 100%; }
    .modal__review--send-active {
      display: block; }

.modal__review-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.modal__send-exit {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 27px;
  height: 25px;
  background: none;
  border: none;
  transition: transform .2s linear;
  cursor: pointer; }
  .modal__send-exit:hover {
    transform: rotate(15deg); }
  @media (max-width: 499px) {
    .modal__send-exit {
      top: 50px;
      right: 20px; } }

.modal__send-close {
  width: 16px;
  height: 16px; }

.modal__send-title {
  font-family: 'Raleway';
  font-size: 5rem;
  font-weight: 400;
  text-align: center; }
  @media (max-width: 1199px) {
    .modal__send-title {
      font-size: 5rem; } }
  @media (max-width: 991px) {
    .modal__send-title {
      font-size: 3rem; } }
  @media (max-width: 768px) {
    .modal__send-title {
      font-size: 2.5rem; } }
  @media (max-width: 499px) {
    .modal__send-title {
      font-size: 2rem;
      white-space: nowrap; } }

.modal__send-link {
  margin-top: 2rem;
  display: block;
  color: #000;
  text-align: center;
  font-size: 4rem;
  transition: color .2s linear; }
  .modal__send-link:hover {
    color: gray; }
  @media (max-width: 1199px) {
    .modal__send-link {
      font-size: 4rem; } }
  @media (max-width: 991px) {
    .modal__send-link {
      font-size: 2rem; } }
  @media (max-width: 768px) {
    .modal__send-link {
      font-size: 2rem; } }
  @media (max-width: 499px) {
    .modal__send-link {
      font-size: 1.9rem; } }

.modal__review-main {
  position: relative; }

.modal__review-content {
  position: relative;
  background-color: #fff;
  padding: 4rem 3rem;
  margin-top: -0.3rem; }

.modal__review-header {
  position: relative; }

.modal__review-exit {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 25px;
  height: 25px;
  background: none;
  border: none;
  transition: transform .2s linear;
  cursor: pointer; }
  .modal__review-exit:hover {
    transform: rotate(15deg); }

.modal__finish {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 100%;
  height: 100%; }
  .modal__finish--active {
    display: block;
    z-index: 2;
    overflow: hidden;
    width: 100%; }

.modal__finish-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.modal__finish-title {
  font-family: 'Raleway';
  font-size: 6rem;
  font-weight: 400;
  text-align: center; }
  @media (max-width: 1199px) {
    .modal__finish-title {
      font-size: 5rem; } }
  @media (max-width: 991px) {
    .modal__finish-title {
      font-size: 3rem; } }
  @media (max-width: 768px) {
    .modal__finish-title {
      font-size: 2.5rem; } }
  @media (max-width: 499px) {
    .modal__finish-title {
      font-size: 2rem;
      white-space: nowrap; } }

.modal__finish-link {
  margin-top: 2rem;
  display: block;
  color: #000;
  text-align: center;
  font-size: 5rem;
  transition: color .2s linear; }
  .modal__finish-link:hover {
    color: gray; }
  @media (max-width: 1199px) {
    .modal__finish-link {
      font-size: 4rem; } }
  @media (max-width: 991px) {
    .modal__finish-link {
      font-size: 2rem; } }
  @media (max-width: 768px) {
    .modal__finish-link {
      font-size: 2rem; } }
  @media (max-width: 499px) {
    .modal__finish-link {
      font-size: 1.9rem; } }

.search {
  display: none; }
  .search--active {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block; }

.search__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 5rem; }

.search__input {
  width: 100%;
  font-family: 'Raleway';
  font-size: 5.5rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #000;
  font-weight: 500; }
  .search__input::-moz-placeholder {
    position: relative;
    font-family: 'Raleway';
    font-size: 5.5rem;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 500; }
  .search__input:-ms-input-placeholder {
    position: relative;
    font-family: 'Raleway';
    font-size: 5.5rem;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 500; }
  .search__input::placeholder {
    position: relative;
    font-family: 'Raleway';
    font-size: 5.5rem;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 500; }
    @media (max-width: 991px) {
      .search__input::-moz-placeholder {
        font-size: 4.5rem; }
      .search__input:-ms-input-placeholder {
        font-size: 4.5rem; }
      .search__input::placeholder {
        font-size: 4.5rem; } }
    @media (max-width: 768px) {
      .search__input::-moz-placeholder {
        font-size: 3rem; }
      .search__input:-ms-input-placeholder {
        font-size: 3rem; }
      .search__input::placeholder {
        font-size: 3rem; } }
    @media (max-width: 499px) {
      .search__input::-moz-placeholder {
        font-size: 2.5rem; }
      .search__input:-ms-input-placeholder {
        font-size: 2.5rem; }
      .search__input::placeholder {
        font-size: 2.5rem; } }
  @media (max-width: 991px) {
    .search__input {
      font-size: 4.5rem; } }
  @media (max-width: 768px) {
    .search__input {
      font-size: 3rem; } }
  @media (max-width: 499px) {
    .search__input {
      font-size: 2.5rem; } }

.search__close {
  display: flex;
  justify-content: flex-end; }
  .search__close > button {
    border: none;
    background: none;
    transition: transform .2s linear;
    cursor: pointer; }
    .search__close > button:hover {
      transform: rotate(15deg); }

.search__close-img {
  width: 16px;
  height: 16px; }

.search__result {
  margin-top: 4rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  display: flex;
  flex-direction: column; }
  .search__result--hidden {
    display: none; }

.search__result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  transition: background-color .2s linear; }
  .search__result-item:hover {
    background-color: #F4F4F4; }

.search__result-left {
  display: flex;
  align-items: center; }

.search__result-prev {
  width: 50px;
  height: 50px;
  margin-right: 2.5rem;
  transition: transform .2s linear; }
  .search__result-prev:hover {
    transform: scale(1.1); }
  @media (max-width: 768px) {
    .search__result-prev {
      width: 35px;
      height: 35px; } }
  @media (max-width: 499px) {
    .search__result-prev {
      margin-right: 1.5rem;
      width: 30px;
      height: 30px; } }

.search__result-name {
  font-size: 2rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  transition: color .2s linear; }
  .search__result-name:hover {
    color: #FF7614; }
  @media (max-width: 768px) {
    .search__result-name {
      font-size: 1.6rem; } }
  @media (max-width: 499px) {
    .search__result-name {
      font-size: 1.5rem; } }

.search__result-price {
  font-size: 2rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4); }
  @media (max-width: 768px) {
    .search__result-price {
      font-size: 1.6rem; } }
  @media (max-width: 499px) {
    .search__result-price {
      font-size: 1.5rem; } }

.choices__inner {
  width: 200px;
  background-color: #fff;
  border: none;
  border: 1px solid #000000;
  border-radius: 0;
  font-family: 'Inter';
  font-weight: 400;
  padding: 1.5rem;
  min-height: auto;
  margin-bottom: 0.5rem; }
  @media (max-width: 991px) {
    .choices__inner {
      width: 100%;
      margin-bottom: 1.5rem; }
      .choices__inner:last-child {
        margin-bottom: 0; } }

.is-open .choices__inner {
  background-color: #fff;
  border: none;
  border: 1px solid #000000;
  border-radius: 0;
  font-family: 'Inter';
  font-weight: 400;
  padding: 1.5rem;
  min-height: auto; }

.choices__list--dropdown {
  padding: 0rem;
  background-color: #fff; }

.is-active .choices__list .choices__list--dropdown {
  padding-top: 0.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  background-color: #fff; }

.choices__item {
  background-color: #fff; }

.is-open .choices__list--dropdown {
  position: absolute;
  z-index: 2;
  padding: 0rem;
  background-color: #fff;
  width: 200px;
  border-radius: 0;
  padding-top: 0.5rem;
  color: #000; }
  @media (max-width: 991px) {
    .is-open .choices__list--dropdown {
      width: 100%; } }

.choices[data-type*='select-one'] .choices__inner {
  padding: 1.5rem;
  border: 1px solid #000000;
  color: #000;
  text-align: left; }

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #fff; }
  .choices__list--dropdown .choices__item--selectable.is-highlighted:hover {
    background-color: #F4F4F4; }

.choices__item .choices__item--choice .choices__item--selectable {
  background-color: red; }

.choices[data-type*='select-one']:after {
  display: none; }

.choices[data-type*='select-one']::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icons/down-arrow-black.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  top: 35%;
  right: 15px;
  transform: rotate(180deg); }
  @media (max-width: 499px) {
    .choices[data-type*='select-one']::before {
      top: 30%; } }

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 0; } }

.choices__placeholder {
  opacity: 1; }

.main {
  display: flex;
  width: 100%;
  background-image: url(../img/main-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 65rem;
  background-position-y: 0px;
  position: absolute;
  top: 0;
  z-index: 0; }
  @media (max-width: 991px) {
    .main {
      max-height: 500px; } }
  @media (max-width: 768px) {
    .main {
      min-height: 550px; } }

@media (max-width: 768px) {
  .main__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between; } }

.main__photo {
  position: relative;
  padding-bottom: 50rem; }

.main__info {
  position: absolute;
  top: 150px; }
  @media (max-width: 991px) {
    .main__info {
      top: 20px; } }

.main__bg {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -1000;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }
  @media (max-width: 768px) {
    .main__bg {
      display: none; } }

.main__title {
  margin-top: 9rem;
  font-size: 6.5rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  line-height: 1.3; }
  @media (max-width: 1599px) {
    .main__title {
      font-size: 5.5rem; } }
  @media (max-width: 1199px) {
    .main__title {
      font-size: 5rem; } }
  @media (max-width: 991px) {
    .main__title {
      font-size: 4.5rem; } }
  @media (max-width: 768px) {
    .main__title {
      font-size: 4rem; } }
  @media (max-width: 499px) {
    .main__title {
      font-size: 3rem; } }

.main__text {
  width: 53%;
  margin-bottom: 7rem; }
  @media (max-width: 1599px) {
    .main__text {
      margin-bottom: 2rem;
      width: 52%; } }
  @media (max-width: 768px) {
    .main__text {
      width: 100%; } }

.main__catalog {
  display: flex; }
  @media (max-width: 1199px) {
    .main__catalog {
      flex-wrap: wrap;
      justify-content: center; } }

.main__catalog-item {
  margin-right: 4rem;
  margin-bottom: 2rem;
  width: calc(33.33333% - 40px); }
  @media (max-width: 1199px) {
    .main__catalog-item {
      margin-left: 4rem; } }
  @media (max-width: 991px) {
    .main__catalog-item {
      width: 40%;
      margin-right: 2rem;
      margin-left: 2rem; } }
  @media (max-width: 768px) {
    .main__catalog-item {
      width: 60%; } }
  @media (max-width: 499px) {
    .main__catalog-item {
      width: 100%; } }

.main__catalog-top {
  position: relative;
  height: 200px;
  background-repeat: no-repeat; }
  .main__catalog-top::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(216, 216, 216, 0);
    transition: background-color .2s linear; }
  .main__catalog-top:hover {
    cursor: pointer; }
    .main__catalog-top:hover::before {
      background-color: rgba(216, 216, 216, 0.2); }
  @media (max-width: 499px) {
    .main__catalog-top {
      background-size: 100%;
      height: 140px; } }

.main__catalog-bottom {
  margin-top: 2rem; }
  .main__catalog-bottom > a {
    display: flex; }

.main__catalog-name {
  margin-right: 1rem;
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 1.7rem;
  color: #000;
  transition: color .2s linear; }
  .main__catalog-name:hover {
    color: gray; }

.main__catalog-count {
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 1.7rem;
  color: rgba(0, 0, 0, 0.4); }

.about {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .about {
      padding: 2rem 0; } }

.about__inner {
  display: flex;
  justify-content: flex-start; }

.about__nav {
  width: 20%; }
  @media (max-width: 991px) {
    .about__nav {
      display: none; } }
  .about__nav > ul {
    position: absolute; }

.about__nav-page--topped {
  position: fixed !important;
  top: 50px;
  transition: transform .5s linear;
  transform: translateY(20px); }

.about__brand {
  width: 40%;
  margin-left: 10rem; }
  @media (max-width: 1199px) {
    .about__brand {
      width: 100%;
      margin-left: 18rem; } }
  @media (max-width: 991px) {
    .about__brand {
      margin-left: 0; } }
  .about__brand--secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto; }

.about__nav-item {
  margin-bottom: 1.5rem; }
  .about__nav-item:last-child {
    margin-bottom: 0; }

.about__nav-link {
  font-size: 1.7rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Raleway';
  font-weight: 500; }
  .about__nav-link:hover {
    color: #000; }

.about__brand-title {
  font-size: 5.5rem;
  font-family: 'Raleway';
  font-weight: 500; }
  @media (max-width: 991px) {
    .about__brand-title {
      font-size: 5rem; } }
  @media (max-width: 768px) {
    .about__brand-title {
      font-size: 4.5rem; } }
  @media (max-width: 499px) {
    .about__brand-title {
      font-size: 4rem; } }

.about__brand-subtitle {
  font-size: 3rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500;
  margin: 4rem 0rem 3rem; }

.about__brand-text {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Inter';
  line-height: 1.3; }

.about__brand-interior {
  font-size: 1.5rem;
  font-family: 'Inter';
  color: rgba(0, 0, 0, 0.3);
  margin: 1rem 0; }

.about__brand-card {
  background-color: #F4F4F4;
  padding: 5rem 8rem; }
  @media (max-width: 991px) {
    .about__brand-card {
      padding: 1rem 2rem; } }

.about__brand-list {
  display: flex;
  align-items: flex-start;
  margin-left: 2rem;
  position: relative;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  margin-bottom: 2rem; }
  .about__brand-list::before {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    top: 5px;
    width: 7px;
    height: 7px;
    background-color: #000;
    border-radius: 50%; }
  @media (max-width: 768px) {
    .about__brand-list {
      font-size: 1.5rem; } }

.stocks {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .stocks {
      padding: 2rem 0; } }

.stocks__block-bottom {
  margin-top: 2rem; }

.stocks__block-name {
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  transition: color .2s linear; }
  .stocks__block-name:hover {
    color: gray; }
  @media (max-width: 768px) {
    .stocks__block-name {
      font-size: 1.5rem; } }

.stocks__block-price {
  margin-top: 2.5rem;
  font-family: 'Raleway';
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4); }
  @media (max-width: 768px) {
    .stocks__block-price {
      font-size: 1.5rem; } }

.interior {
  margin-top: 85rem; }
  @media (max-width: 991px) {
    .interior {
      margin-top: 65rem; } }
  @media (max-width: 499px) {
    .interior {
      margin-top: 63rem; } }

.interior__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 6rem; }
  @media (max-width: 1199px) {
    .interior__block {
      flex-direction: column;
      align-items: center; } }

.interior__photo {
  width: 45%; }
  @media (max-width: 1199px) {
    .interior__photo {
      width: 80%; } }
  @media (max-width: 991px) {
    .interior__photo {
      width: 85%; } }
  @media (max-width: 768px) {
    .interior__photo {
      width: 90%; } }
  @media (max-width: 499px) {
    .interior__photo {
      width: 100%; } }

.interior__info {
  width: 47%; }
  @media (max-width: 1199px) {
    .interior__info {
      width: 80%; } }
  @media (max-width: 991px) {
    .interior__info {
      width: 85%; } }
  @media (max-width: 768px) {
    .interior__info {
      width: 90%; } }
  @media (max-width: 499px) {
    .interior__info {
      width: 100%; } }

.interior__title {
  font-size: 5.5rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500;
  margin-top: 1.7rem;
  margin-bottom: 3rem; }
  @media (max-width: 1199px) {
    .interior__title {
      font-size: 4.5rem;
      line-height: 1; } }
  @media (max-width: 991px) {
    .interior__title {
      font-size: 4rem; } }
  @media (max-width: 768px) {
    .interior__title {
      font-size: 3.5rem; } }
  @media (max-width: 499px) {
    .interior__title {
      font-size: 3rem; } }

.interior__text {
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin-bottom: 9rem; }
  @media (max-width: 1199px) {
    .interior__text {
      font-size: 1.5rem;
      line-height: 1.3;
      margin-bottom: 5rem; } }
  @media (max-width: 991px) {
    .interior__text {
      margin-bottom: 4rem; } }

.interior__cards {
  display: flex;
  margin-top: 5rem;
  margin-bottom: 7.5rem;
  flex-wrap: wrap; }
  @media (max-width: 991px) {
    .interior__cards {
      justify-content: center; } }

.interior__cards-link {
  position: relative;
  z-index: 100; }

.interior__cards-block {
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 1199px) {
    .interior__cards-block {
      justify-content: center; } }

.interior__cards-item {
  margin-bottom: 4.5rem;
  margin-right: 4rem;
  width: calc( 33.33333% - 40px); }
  @media (max-width: 991px) {
    .interior__cards-item {
      width: 45%;
      margin-right: 3rem;
      margin-left: 3rem; } }
  @media (max-width: 768px) {
    .interior__cards-item {
      width: 85%;
      margin-right: 1rem;
      margin-left: 1rem; } }

.interior__cards-img {
  position: relative;
  margin-right: 4rem;
  margin-bottom: 2rem; }
  .interior__cards-img::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px;
    height: 100px;
    background-color: black;
    z-index: 1000; }
  @media (max-width: 1599px) {
    .interior__cards-img {
      height: 250px;
      width: auto; } }
  @media (max-width: 991px) {
    .interior__cards-img {
      width: 100%;
      height: auto;
      margin: 0;
      margin-bottom: 1rem; } }

.interior__cards-bottom {
  display: flex;
  margin-bottom: 1rem; }

.interior__cards-text {
  font-size: 1.7rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  transition: color .2s linear; }

.interior__cards-number {
  font-size: 1.7rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 1rem;
  transition: color .2s linear; }

.interior__cards-revirect {
  display: flex; }
  .interior__cards-revirect:hover .interior__cards-text, .interior__cards-revirect:hover .interior__cards-number {
    color: gray; }

.form-call-catalog {
  display: flex;
  flex-direction: column;
  align-items: center; }

.js-validate-error-label {
  position: relative;
  top: -7px;
  left: 0;
  color: #FF0000 !important;
  font-size: 1.4rem;
  font-family: 'Raleway';
  font-weight: 500; }
  @media (max-width: 499px) {
    .js-validate-error-label {
      font-size: 1.2rem; } }

.contact__inner {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .contact__inner {
      padding: 0; } }

.contact__map {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1); }
  @media (max-width: 1199px) {
    .contact__map {
      max-height: 300px; } }
  @media (max-width: 768px) {
    .contact__map {
      max-height: 270px; } }
  @media (max-width: 499px) {
    .contact__map {
      max-height: 240px; } }

.contact__map-container {
  position: relative;
  z-index: 1; }
  .contact__map-container::before {
    content: "";
    display: block;
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1; }

.contact__table {
  display: flex;
  flex-direction: column;
  margin: 5rem 0; }

.contact__table-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .contact__table-item--first {
    display: flex;
    justify-content: space-around;
    width: 50%; }
    @media (max-width: 991px) {
      .contact__table-item--first {
        width: 100%;
        justify-content: center; }
        .contact__table-item--first > .contact__table-name, .contact__table-item--first .contact__table-schedule {
          margin-top: 2rem;
          width: 50%;
          text-align: center; } }
    @media (max-width: 499px) {
      .contact__table-item--first {
        flex-direction: column;
        align-items: center; }
        .contact__table-item--first > .contact__table-name, .contact__table-item--first .contact__table-schedule {
          margin-top: 2rem;
          width: 100%;
          text-align: center; } }
    @media (max-width: 768px) {
      .contact__table-item--first {
        padding: 0; } }
  .contact__table-item--second {
    display: flex;
    justify-content: space-around;
    width: 50%; }
    @media (max-width: 991px) {
      .contact__table-item--second {
        width: 100%;
        justify-content: center; }
        .contact__table-item--second > .contact__table-info, .contact__table-item--second .contact__table-map {
          margin-top: 2rem;
          width: 50%;
          text-align: center; } }
    @media (max-width: 499px) {
      .contact__table-item--second {
        flex-direction: column;
        align-items: center; }
        .contact__table-item--second > .contact__table-info, .contact__table-item--second .contact__table-map {
          margin-top: 2rem;
          width: 100%;
          text-align: center; } }
  .contact__table-item:nth-child(even) {
    border-top: none;
    border-bottom: none; }

.contact__table-name {
  width: 25%; }

.contact__name-top {
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem; }
  @media (max-width: 768px) {
    .contact__name-top {
      text-align: left; } }
  @media (max-width: 499px) {
    .contact__name-top {
      font-size: 1.5rem; } }

.contact__address {
  display: inline-block;
  width: 100%;
  font-size: 2rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500;
  transition: color .2s linear; }
  .contact__address:hover {
    color: gray; }
  @media (max-width: 768px) {
    .contact__address {
      text-align: left; } }

.contact__links {
  display: flex;
  flex-direction: column; }
  .contact__links > a {
    font-size: 2rem;
    color: #000;
    font-family: 'Raleway';
    margin-bottom: 1rem;
    transition: color .2s linear; }
    .contact__links > a:hover {
      color: gray; }
    .contact__links > a:last-child {
      margin-bottom: 0; }
  @media (max-width: 768px) {
    .contact__links {
      text-align: left; } }

@media (max-width: 768px) {
  .contact__table-name {
    text-align: left; } }

@media (max-width: 768px) {
  .contact__table-schedule {
    text-align: right; } }

.authors {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .authors {
      padding: 2rem 0; } }

.authors__buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin: 1.5rem 0; }

.authors__choice {
  border: none;
  background-color: #F4F4F4;
  color: #000;
  padding: 1.2rem 2rem;
  border-radius: 100px;
  margin-right: 1.5rem;
  font-size: 1.7rem;
  transition: background-color .2s linear; }
  .authors__choice:last-child {
    margin-right: 0; }
  .authors__choice:hover {
    cursor: pointer;
    background-color: #EBEBEB; }
  .authors__choice--active {
    color: #fff;
    background-color: #000; }
    .authors__choice--active:hover {
      color: #fff;
      background-color: #000; }
  @media (max-width: 991px) {
    .authors__choice {
      font-size: 1.5rem;
      margin-bottom: 1rem; } }
  @media (max-width: 768px) {
    .authors__choice {
      font-size: 1.3rem;
      padding: 1rem 1.5rem; } }

.authors__photo {
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 1199px) {
    .authors__photo {
      justify-content: center; } }
  @media (max-width: 991px) {
    .authors__photo {
      flex-direction: column;
      align-items: center; } }

.author__photo-item {
  margin-right: 2rem;
  margin-bottom: 2rem;
  width: calc( 33.33333% - 20px); }
  @media (max-width: 1199px) {
    .author__photo-item {
      width: 60%;
      margin: 0;
      margin-bottom: 2rem; } }
  @media (max-width: 991px) {
    .author__photo-item {
      width: 60%; } }
  @media (max-width: 768px) {
    .author__photo-item {
      width: 80%; } }
  @media (max-width: 499px) {
    .author__photo-item {
      width: 95%;
      margin: 2rem 0rem .5rem; } }

.author__photo-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.aurhor__photo-name {
  margin: 2rem 0rem .5rem;
  font-size: 3rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  transition: color .2s linear; }
  @media (max-width: 1199px) {
    .aurhor__photo-name {
      margin: 0; } }
  @media (max-width: 991px) {
    .aurhor__photo-name {
      font-size: 2.5rem; } }
  @media (max-width: 768px) {
    .aurhor__photo-name {
      font-size: 2rem; } }
  @media (max-width: 499px) {
    .aurhor__photo-name {
      font-size: 1.8rem; } }

.author__photo-style {
  margin: .5rem 0rem;
  font-size: 1.7rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Raleway';
  font-weight: 500; }
  @media (max-width: 991px) {
    .author__photo-style {
      font-size: 1.6rem; } }
  @media (max-width: 768px) {
    .author__photo-style {
      font-size: 1.5rem; } }
  @media (max-width: 499px) {
    .author__photo-style {
      font-size: 1.4rem; } }

.product {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .product {
      padding: 2rem 0; } }

.product__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem; }

.product__header-name {
  display: flex;
  flex-direction: column;
  width: 30%;
  justify-content: space-between; }
  @media (max-width: 1199px) {
    .product__header-name {
      width: 100%;
      margin-bottom: 2rem; } }

.product__info {
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-content: space-between;
  align-items: flex-start; }
  @media (max-width: 1199px) {
    .product__info {
      width: 100%;
      margin-bottom: 2rem;
      align-items: flex-end; } }

.product__buy {
  display: flex;
  flex-direction: column;
  width: 2  0%;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap; }
  @media (max-width: 1199px) {
    .product__buy {
      width: 100%;
      align-items: flex-start;
      margin-bottom: 2rem;
      flex-direction: row; } }

.product__name {
  font-size: 3rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000; }

.product__remark {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.4); }

.product__link {
  display: block;
  font-size: 1.7rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500;
  transition: transform .2s linear; }
  .product__link:hover {
    transform: translateY(-2px); }
  .product__link--top {
    order: 2; }

.product__description {
  color: #000;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  line-height: 1.3; }
  @media (max-width: 768px) {
    .product__description {
      font-size: 1.6rem; } }

.product__price {
  font-size: 3rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500; }
  @media (max-width: 768px) {
    .product__price {
      display: block;
      width: 100%;
      text-align: center;
      margin: 2rem 0; } }

.product__photo-block {
  margin: 4rem 0rem 5rem; }

.product__secondary-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.product__card-photo {
  margin-top: 2rem;
  width: 49%; }
  @media (max-width: 768px) {
    .product__card-photo {
      margin-top: 1rem; }
      .product__card-photo--middle {
        display: flex;
        justify-content: center;
        width: 100%; } }

.product__card-middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.product__card-text {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  width: 49%;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  padding: 0rem 4rem; }
  @media (max-width: 768px) {
    .product__card-text {
      margin-top: 1rem;
      width: 100%; } }
  @media (max-width: 499px) {
    .product__card-text {
      font-size: 1.3rem;
      padding: 0; } }

.product__card-info {
  font-size: 1.7rem;
  color: #000;
  font-family: 'Inter';
  font-weight: 400; }
  @media (max-width: 991px) {
    .product__card-info {
      font-size: 1.5rem; } }
  @media (max-width: 768px) {
    .product__card-info {
      font-size: 1.7rem; } }
  @media (max-width: 499px) {
    .product__card-info {
      font-size: 1.3rem;
      padding: 0; } }

.product__set-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media (max-width: 991px) {
    .product__set-inner {
      justify-content: center; } }

.product__set-title {
  font-size: 3rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500; }
  @media (max-width: 499px) {
    .product__set-title {
      margin: 2rem 0; } }

.product__set-left {
  display: flex;
  flex-direction: column;
  width: 49%;
  margin: 3.2rem 0; }
  @media (max-width: 991px) {
    .product__set-left {
      width: 100%; } }

@media (max-width: 991px) {
  .product__set-right {
    display: flex;
    justify-content: center;
    width: 100%; } }

.product__param-name {
  font-size: 1.7rem;
  color: #000;
  font-family: 'Inter';
  font-weight: 400; }
  @media (max-width: 499px) {
    .product__param-name {
      font-size: 1.3rem; } }

.product__param-value {
  font-size: 1.7rem;
  color: #000;
  font-family: 'Inter';
  font-weight: 400; }
  @media (max-width: 499px) {
    .product__param-value {
      font-size: 1.3rem; } }

.product__left-param {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: .8rem 0rem; }

.product__review {
  margin: 8rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.product__review-left {
  width: 49%; }
  @media (max-width: 991px) {
    .product__review-left {
      width: 100%;
      order: 1; } }

.product__review-info {
  color: #000;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 1.7rem; }
  @media (max-width: 499px) {
    .product__review-info {
      font-size: 1.5rem; } }

.product__review-right {
  width: 49%; }
  @media (max-width: 991px) {
    .product__review-right {
      display: flex;
      flex-direction: column;
      width: 100%;
      order: 3;
      margin-top: 2rem; } }

.product__review-top {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 499px) {
    .product__review-top {
      flex-direction: column;
      align-items: flex-start; } }

.product__review-img {
  margin: 2rem 0; }

.product__banner-img {
  position: relative; }

.product__consult {
  padding: 2rem;
  margin: 2rem 0; }
  @media (max-width: 991px) {
    .product__consult {
      background-color: #f4f4f4; } }

.product__consult-photo {
  height: 600px;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover; }
  @media (max-width: 991px) {
    .product__consult-photo {
      display: none; } }

.product__consult-input {
  display: flex;
  flex-direction: column; }

.product__consult-img {
  position: relative; }

.product__consult-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 5%;
  left: 30%; }
  @media (max-width: 991px) {
    .product__consult-main {
      position: static;
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center; } }

.product__consult-subtitle {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Inter';
  color: #000;
  width: 99%;
  margin-bottom: 4rem;
  margin-top: 3rem; }
  @media (max-width: 991px) {
    .product__consult-subtitle {
      text-align: center; } }
  @media (max-width: 768px) {
    .product__consult-subtitle {
      font-size: 1.6rem; } }
  @media (max-width: 499px) {
    .product__consult-subtitle {
      font-size: 1.5rem;
      text-align: left; } }

.product__consult-title {
  font-size: 3rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000; }
  @media (max-width: 991px) {
    .product__consult-title {
      font-size: 2.5rem; } }
  @media (max-width: 991px) {
    .product__consult-title {
      font-size: 2.2rem; } }
  @media (max-width: 991px) {
    .product__consult-title {
      font-size: 2rem; } }

.redirect {
  display: flex;
  align-items: center; }
  @media (max-width: 768px) {
    .redirect {
      margin-top: 3rem; } }

.redirect__link {
  font-size: 1.7rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color .2s linear, transform .2s linear; }
  .redirect__link--active {
    color: rgba(0, 0, 0, 0.5); }
  .redirect__link:hover {
    color: gray;
    transform: translateY(-2px); }

.redirect__img {
  margin-left: 0.8rem; }

.page--product {
  margin: 5rem 0; }

.page__block {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem; }
  @media (max-width: 768px) {
    .page__block {
      margin-top: 2rem;
      margin-bottom: 2rem; } }

.page__title {
  font-size: 5.5rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  margin-bottom: 3rem; }
  @media (max-width: 1199px) {
    .page__title {
      font-size: 4.5rem;
      line-height: 1; } }
  @media (max-width: 991px) {
    .page__title {
      font-size: 4rem;
      margin-bottom: 1rem; } }
  @media (max-width: 768px) {
    .page__title {
      font-size: 3.5rem;
      margin-bottom: 1rem; } }
  @media (max-width: 499px) {
    .page__title {
      font-size: 3rem;
      text-align: left; } }

.page__middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap; }
  .page__middle--product {
    align-items: center; }

.page__text {
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  width: 60%;
  margin-bottom: 1.5rem; }
  @media (max-width: 1199px) {
    .page__text {
      font-size: 1.6rem; } }
  @media (max-width: 991px) {
    .page__text {
      font-size: 1.5rem;
      width: 100%; } }
  @media (max-width: 768px) {
    .page__text {
      font-size: 1.4rem; } }
  @media (max-width: 499px) {
    .page__text {
      font-size: 1.3rem; } }

.page__cards {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7.5rem; }
  @media (max-width: 991px) {
    .page__cards {
      justify-content: center; } }
  @media (max-width: 768px) {
    .page__cards {
      margin-top: 2rem;
      margin-bottom: 0; } }

.page__card-item {
  width: calc( 33.33333% - 20px);
  margin-bottom: 2rem;
  margin-right: 2rem; }
  @media (max-width: 991px) {
    .page__card-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 80%; } }
  @media (max-width: 768px) {
    .page__card-item {
      margin-right: 0; } }

.page__card-interior {
  position: relative;
  margin-bottom: 2rem;
  margin-right: 2rem; }
  @media (max-width: 1199px) {
    .page__card-interior {
      display: flex;
      flex-direction: column;
      margin-right: 6rem;
      margin-left: 6rem;
      margin-bottom: 3rem; } }
  @media (max-width: 991px) {
    .page__card-interior {
      display: flex;
      flex-direction: column;
      margin-right: 5rem;
      margin-left: 5rem; } }
  @media (max-width: 768px) {
    .page__card-interior {
      margin: 1rem 4rem; } }
  @media (max-width: 499px) {
    .page__card-interior {
      margin-left: 2rem;
      margin-right: 2rem; } }

.page__card-photo {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem; }
  .page__card-photo--mb0 {
    margin-bottom: 0; }
  .page__card-photo::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(216, 216, 216, 0);
    transition: background-color .2s linear; }
  .page__card-photo:hover {
    cursor: pointer; }
    .page__card-photo:hover::before {
      background-color: rgba(216, 216, 216, 0.2); }

.primary__card-bottom,
.secondary__card-bottom {
  display: flex; }

.secondary__card-bottom {
  flex-direction: column; }

.primary__card-link {
  display: flex;
  align-items: center; }
  .primary__card-link:hover .primary__card-text {
    color: gray; }
  .primary__card-link:hover .aurhor__photo-name {
    color: gray; }

.primary__card-text,
.secondary__card-text {
  font-size: 1.7rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: #000;
  transition: color .2s linear; }
  @media (max-width: 991px) {
    .primary__card-text,
    .secondary__card-text {
      font-size: 1.6rem; } }
  @media (max-width: 768px) {
    .primary__card-text,
    .secondary__card-text {
      font-size: 1.9rem; } }

.secondary__card-text {
  font-size: 2rem;
  margin-top: 1rem; }
  @media (max-width: 768px) {
    .secondary__card-text {
      font-size: 1.5rem; } }

.primary__card-price,
.secondary__card-price {
  font-size: 1.7rem;
  font-family: 'Raleway';
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 1rem; }
  @media (max-width: 991px) {
    .primary__card-price,
    .secondary__card-price {
      font-size: 1.6rem; } }
  @media (max-width: 768px) {
    .primary__card-price,
    .secondary__card-price {
      font-size: 1.5rem; } }

.secondary__card-price {
  margin-left: 0;
  margin-top: 3rem; }
  @media (max-width: 768px) {
    .secondary__card-price {
      font-size: 1.3rem;
      margin-top: 1rem; } }

.primary__card-link:hover .secondary__card-text {
  color: gray; }

.secondary__card-link:hover .secondary__card-text {
  color: gray; }

.page__input {
  display: flex;
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #000;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  margin-bottom: 3rem;
  resize: none;
  outline: none; }
  .page__input--rev {
    width: 100%;
    max-width: none; }
  .page__input--question {
    min-height: 100px; }
  .page__input:hover::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  .page__input:hover:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  .page__input:hover::placeholder {
    color: rgba(0, 0, 0, 0.4); }
  @media (max-width: 1199px) {
    .page__input {
      font-size: 1.25rem;
      padding: 1.1rem; } }
  @media (max-width: 499px) {
    .page__input {
      margin-bottom: 1rem; } }
  .page__input::-moz-placeholder {
    -moz-transition: color .2s linear;
    transition: color .2s linear;
    font-size: 1.7rem;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3); }
  .page__input:-ms-input-placeholder {
    -ms-transition: color .2s linear;
    transition: color .2s linear;
    font-size: 1.7rem;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3); }
  .page__input::placeholder {
    transition: color .2s linear;
    font-size: 1.7rem;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3); }
    @media (max-width: 1199px) {
      .page__input::-moz-placeholder {
        font-size: 1.25rem; }
      .page__input:-ms-input-placeholder {
        font-size: 1.25rem; }
      .page__input::placeholder {
        font-size: 1.25rem; } }

.page__input-wrapper {
  width: 100%;
  position: relative; }

.page__label {
  max-width: 380px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start; }
  .page__label:hover .page__fake {
    border-width: 2px; }
  .page__label--review {
    margin-bottom: 3rem; }

.page__check {
  display: none; }
  .page__check:checked + .page__fake::before {
    opacity: 1; }

.page__fake {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  margin-right: 1.5rem; }
  .page__fake::before {
    content: "";
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../img/icons/check-icon.png);
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .2s linear;
    opacity: 0; }

.page__access {
  font-size: 1.5rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000; }
  @media (max-width: 1199px) {
    .page__access {
      font-size: 1.25rem; } }
  @media (max-width: 991px) {
    .page__access {
      font-size: 1rem; } }
  @media (max-width: 768px) {
    .page__access {
      font-size: .9rem; } }
  @media (max-width: 499px) {
    .page__access {
      font-size: 1rem; } }

.page__upload {
  display: none; }

.page__upload-btn {
  text-align: center; }
  @media (max-width: 768px) {
    .page__upload-btn {
      font-size: 1.3rem; } }

.swiper-slide {
  position: static; }

.swiper-container {
  padding-bottom: 120px; }
  @media (max-width: 991px) {
    .swiper-container {
      padding-bottom: 60px; } }
  @media (max-width: 768px) {
    .swiper-container {
      padding-bottom: 30px; } }

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin-left: 3.5rem;
  margin-top: 2rem;
  color: #000;
  background: none;
  border: none;
  outline: none;
  width: 8.75px;
  height: 17.5px; }
  @media (max-width: 499px) {
    .swiper-button-prev,
    .swiper-button-next {
      margin-left: 2rem;
      margin-top: 1rem; } }

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.8rem; }

.slider {
  margin-bottom: 8rem; }
  @media (max-width: 991px) {
    .slider {
      margin-bottom: 5rem; } }
  @media (max-width: 768px) {
    .slider {
      margin-bottom: 4rem; } }

.slide {
  position: relative; }

.page__slide-card {
  position: absolute;
  bottom: -105px;
  right: 315px;
  background-color: #eaeaea;
  padding: 4.5rem 5rem 6rem 5rem; }
  @media (max-width: 1599px) {
    .page__slide-card {
      bottom: -110px;
      right: 251px;
      padding: 1.5rem 3rem 3rem 3rem; } }
  @media (max-width: 1199px) {
    .page__slide-card {
      right: 150px;
      bottom: -20px;
      padding: 2rem; } }
  @media (max-width: 991px) {
    .page__slide-card {
      right: 0px;
      bottom: -20px;
      padding: 1rem; } }
  @media (max-width: 768px) {
    .page__slide-card {
      display: none; } }

.slide__text {
  font-size: 2rem;
  font-family: "Inter";
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  margin-bottom: 23rem; }
  @media (max-width: 1199px) {
    .slide__text {
      margin-bottom: 2rem;
      font-size: 1.5rem; } }

.slide__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px; }
  @media (max-width: 1599px) {
    .slide__img {
      width: 200px; } }
  @media (max-width: 1199px) {
    .slide__img {
      display: none; } }

.slider__bottom {
  display: flex;
  align-items: center; }

@media (max-width: 768px) {
  .slide__name {
    font-size: 1rem; } }

@media (max-width: 768px) {
  .slide__prof {
    font-size: 1rem; } }

.catalog {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .catalog {
      padding: 2rem 0; } }

.catalog__block {
  padding: 5rem 0rem 5rem;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 991px) {
    .catalog__block {
      justify-content: center; } }
  @media (max-width: 768px) {
    .catalog__block {
      padding: 1rem 0rem 1rem; } }

.catalog__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.catalog__block-item {
  margin-top: 4rem;
  margin-right: 2rem;
  width: calc(33.33333% - 20px); }
  .catalog__block-item:hover .catalog__block-name {
    color: gray; }
  @media (max-width: 991px) {
    .catalog__block-item {
      width: 40%;
      margin-left: 2rem; } }
  @media (max-width: 768px) {
    .catalog__block-item {
      width: 70%;
      margin-top: 2rem; } }
  @media (max-width: 499px) {
    .catalog__block-item {
      width: 100%; } }

.catalog__card-img {
  position: relative;
  height: 280px;
  background-repeat: no-repeat;
  max-height: 300px;
  background-position: center; }
  .catalog__card-img::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(216, 216, 216, 0);
    transition: background-color .2s linear;
    margin: 0 auto; }
  .catalog__card-img:hover {
    cursor: pointer; }
    .catalog__card-img:hover::before {
      background-color: rgba(216, 216, 216, 0.2); }
  @media (max-width: 1199px) {
    .catalog__card-img {
      background-size: 100%;
      height: 300px; } }
  @media (max-width: 991px) {
    .catalog__card-img {
      height: 180px; } }
  @media (max-width: 768px) {
    .catalog__card-img {
      height: 290px; } }
  @media (max-width: 499px) {
    .catalog__card-img {
      height: 165px; } }

.catalog__block-top {
  cursor: pointer;
  position: relative;
  height: 290px;
  background-repeat: no-repeat;
  max-height: 300px;
  background-position: center; }
  .catalog__block-top::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #D8D8D8;
    opacity: 0;
    transition: opacity .2s linear; }
  .catalog__block-top:hover::before {
    opacity: 30%; }
  @media (max-width: 499px) {
    .catalog__block-top {
      height: 150px;
      background-size: 100%; } }

.catalog__block-name {
  transition: color .2s linear;
  font-size: 2rem;
  color: #000;
  font-family: 'Raleway';
  font-weight: 500;
  text-align: center; }
  @media (max-width: 768px) {
    .catalog__block-name {
      font-size: 1.5rem; } }

.catalog__novelty {
  padding: 5rem 0rem 5rem; }
  @media (max-width: 768px) {
    .catalog__novelty {
      padding: 1rem 0rem 1rem; } }

.catalog__choice {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  margin-bottom: 5rem; }
  @media (max-width: 991px) {
    .catalog__choice {
      flex-direction: column; } }

.catalog__choice-left {
  display: flex; }
  .catalog__choice-left > select {
    margin-right: 2rem; }
    .catalog__choice-left > select:last-child {
      margin-right: 0; }
  @media (max-width: 991px) {
    .catalog__choice-left {
      flex-direction: column; } }

.catalog__choice-wrapper {
  position: relative; }
  .catalog__choice-wrapper:first-child {
    margin-right: 2rem; }
    @media (max-width: 991px) {
      .catalog__choice-wrapper:first-child {
        margin-right: 0; } }
  .catalog__choice-wrapper:last-child {
    margin: 0; }

.catalog__roll-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  width: 100%; }
  .catalog__roll-item > div {
    margin-right: 15rem; }

.catalog__pagination-block {
  display: flex;
  align-items: center;
  justify-content: center; }

.catalog__pagination-item {
  cursor: pointer;
  padding: 1rem;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  transition: background-color .2s linear; }
  .catalog__pagination-item:first-child {
    transform: rotate(180deg); }
  .catalog__pagination-item:hover {
    background-color: #F4F4F4; }
  .catalog__pagination-item--active {
    background-color: #000;
    color: #fff; }
    .catalog__pagination-item--active:hover {
      background-color: #000;
      color: #fff; }
  .catalog__pagination-item > a {
    color: inherit; }

.catalog__card-new {
  position: relative;
  margin-bottom: 3.5rem;
  margin-right: 2rem;
  width: calc(33.33333% - 20px); }
  @media (max-width: 1199px) {
    .catalog__card-new {
      margin-right: 0;
      margin-left: 0;
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column; } }
  @media (max-width: 991px) {
    .catalog__card-new {
      margin-bottom: 1.5rem; } }

.catalog__card-bottom {
  margin-top: 1rem; }

.catalog__choice-select4 {
  color: #000;
  background-color: #000; }

.favorites {
  padding: 8rem 0rem; }
  @media (max-width: 499px) {
    .favorites {
      padding: 4rem 0rem; } }

.favorites__top {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 499px) {
    .favorites__top {
      flex-direction: column;
      align-items: flex-start; }
      .favorites__top > button {
        margin-top: 1rem; } }

.favorites__cards {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 1199px) {
    .favorites__cards {
      justify-content: center; } }
  @media (max-width: 499px) {
    .favorites__cards {
      margin-top: 2rem; } }

.favorites__card-item {
  position: relative;
  margin-bottom: 3.5rem;
  margin-right: 1rem;
  width: calc(33.33333% - 20px); }
  @media (max-width: 1199px) {
    .favorites__card-item {
      margin-left: 2rem;
      margin-right: 2rem;
      width: 40%; } }
  @media (max-width: 768px) {
    .favorites__card-item {
      margin-right: 0;
      margin-left: 0;
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column; } }

.favorites__delete {
  transition: transform .2s linear; }
  .favorites__delete:hover {
    transform: translateY(-2px); }
  .favorites__delete--all {
    font-size: 1.7rem;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Raleway';
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0; }

.favorite__card-img {
  margin-bottom: 2rem;
  position: relative;
  background-image: url(../img/favorites/ph-2.png);
  height: 290px;
  background-repeat: no-repeat;
  max-height: 300px;
  background-position: center; }
  .favorite__card-img:hover .favorite__delete-btn {
    opacity: 1; }
  @media (max-width: 499px) {
    .favorite__card-img {
      background-size: 100%;
      height: 160px; } }

.favourite__card-bottom {
  position: absolute;
  bottom: -30px; }
  @media (max-width: 768px) {
    .favourite__card-bottom {
      bottom: -20px;
      left: 130px; } }
  @media (max-width: 499px) {
    .favourite__card-bottom {
      left: 5px;
      bottom: -27px; } }

.favorite__delete-btn {
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  right: 15px;
  top: 15px;
  background-image: url(../img/icons/close-icon.png);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: 50%;
  opacity: 0;
  border: none;
  transition: opacity .2s linear, transform .2s linear;
  cursor: pointer; }
  .favorite__delete-btn:hover {
    transform: rotate(15deg); }
  @media (max-width: 499px) {
    .favorite__delete-btn {
      width: 30px;
      height: 30px;
      background-size: 11px;
      opacity: 1; } }

.favourite__count {
  position: absolute;
  top: -5px;
  left: 7px;
  background-color: #000;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  transition: background-color .2s linear; }

.favourite__count-hover:hover > .header__buttons-icon {
  fill: gray; }

.favourite__count-hover:hover > .favourite__count {
  background-color: gray; }

.reviews {
  padding: 8rem 0rem; }
  @media (max-width: 768px) {
    .reviews {
      padding: 2rem 0rem; } }

.reviews__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.reviews__left {
  width: 60%; }
  @media (max-width: 991px) {
    .reviews__left {
      width: 100%;
      order: 2; } }

.reviews__right {
  width: 35%; }
  @media (max-width: 991px) {
    .reviews__right {
      width: 100%;
      order: 1; } }

.reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.reviews__top-left {
  display: flex;
  align-items: center; }
  @media (max-width: 499px) {
    .reviews__top-left {
      flex-direction: column;
      align-items: flex-start; } }

.reviews__item {
  margin: 2rem 0rem 4rem; }

.reviews__top-name {
  font-size: 2rem;
  font-family: 'Raleway';
  font-weight: 700;
  color: #000;
  margin-right: 1.5rem; }

.reviews__top-date {
  font-size: 1.5rem;
  font-family: 'Inter';
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4); }

.reviews__link {
  display: block;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Inter';
  transition: transform .2s linear; }
  .reviews__link:hover {
    transform: translateY(-2px); }

.reviews__text {
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  line-height: 1.2; }

.reviews__photos {
  display: flex; }
  .reviews__photos > div {
    margin-right: 1.5rem; }
    .reviews__photos > div:last-child {
      margin-right: 0; }

.fslightbox-toolbar:nth-child(1) {
  background: none; }

.fslightbox-toolbar:nth-child(7) {
  background: none; }

.fslightbox-toolbar:nth-child(1) {
  background: none; }

.fslightbox-toolbar-button {
  background: none; }
  .fslightbox-toolbar-button:first-child {
    display: none; }

.fslightbox-toolbar-button:nth-child(1) {
  order: 7; }

.fslightbox-toolbar-button:nth-child(2) {
  position: relative;
  top: 15px;
  right: 15px; }

.fslightbox-slide-number-container {
  display: none; }

.review__input {
  width: 100%;
  display: flex; }

.reviews__access {
  display: flex;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 2rem; }

.reviews__load {
  width: 100%; }

.reviews__input {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #000;
  font-size: 1.7rem;
  font-family: 'Inter';
  font-weight: 400;
  color: #000;
  margin-bottom: 3rem;
  resize: none;
  outline: none; }
  .reviews__input--rev {
    width: 100%;
    max-width: none; }
  .reviews__input--question {
    min-height: 100px; }
  .reviews__input:hover::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  .reviews__input:hover:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  .reviews__input:hover::placeholder {
    color: rgba(0, 0, 0, 0.4); }
  @media (max-width: 1199px) {
    .reviews__input {
      font-size: 1.25rem;
      padding: 1.1rem; } }
  @media (max-width: 768px) {
    .reviews__input {
      min-width: 280px; } }
  @media (max-width: 499px) {
    .reviews__input {
      min-width: 220px; } }
  .reviews__input::-moz-placeholder {
    font-size: 1.7rem;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
    -moz-transition: color .2s linear;
    transition: color .2s linear; }
  .reviews__input:-ms-input-placeholder {
    font-size: 1.7rem;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
    -ms-transition: color .2s linear;
    transition: color .2s linear; }
  .reviews__input::placeholder {
    font-size: 1.7rem;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
    transition: color .2s linear; }
    @media (max-width: 1199px) {
      .reviews__input::-moz-placeholder {
        font-size: 1.25rem; }
      .reviews__input:-ms-input-placeholder {
        font-size: 1.25rem; }
      .reviews__input::placeholder {
        font-size: 1.25rem; } }

.footer {
  background-color: #000;
  color: #fff;
  padding-top: 7rem; }

.footer__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap; }

.footer__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .footer__col--links {
    margin-left: 10rem; }
    @media (max-width: 768px) {
      .footer__col--links {
        margin-left: 0; } }
  @media (max-width: 1199px) {
    .footer__col--top {
      margin: 0 auto; } }
  @media (max-width: 768px) {
    .footer__col--top > button {
      display: none; } }
  @media (max-width: 768px) {
    .footer__col {
      width: 100%;
      text-align: center; } }
  @media (max-width: 499px) {
    .footer__col {
      text-align: left; } }

.footer__roll {
  display: none; }
  @media (max-width: 768px) {
    .footer__roll {
      display: flex;
      width: 100%;
      order: 1;
      padding: 1.5rem 1.6rem;
      border: 1px solid #fff;
      background-color: #000;
      color: #fff;
      outline: none;
      margin-bottom: 4rem; } }

.footer__roll-item {
  background-color: #fff;
  color: #000;
  width: 100%; }

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 4rem; }
  @media (max-width: 768px) {
    .footer__logo {
      margin-bottom: 3rem; } }

.footer__address-link {
  font-size: 2rem;
  color: #fff;
  font-family: 'Raleway';
  font-weight: 500;
  font-style: normal;
  margin-bottom: 0.4rem;
  transition: color .2s linear; }
  .footer__address-link:hover {
    color: gray; }
  @media (max-width: 768px) {
    .footer__address-link {
      font-size: 1.5rem; } }

.footer__schedule {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter';
  margin-bottom: 14rem; }
  @media (max-width: 768px) {
    .footer__schedule {
      margin-bottom: 4rem;
      font-size: 1.3rem; } }

.footer__col-name {
  margin-bottom: 2.4rem; }
  @media (max-width: 768px) {
    .footer__col-name {
      display: none; } }

.footer__col-title {
  font-size: 2rem;
  color: #fff;
  font-family: 'Raleway';
  font-weight: 500; }

.footer__col-links {
  display: flex;
  flex-direction: column;
  margin-right: 10rem; }
  .footer__col-links:last-child {
    margin-right: 0; }
  @media (max-width: 768px) {
    .footer__col-links {
      display: none; }
      .footer__col-links:last-child {
        display: flex; } }

.footer__col-link {
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter';
  margin-top: .4rem;
  margin-bottom: .4rem;
  transition: color .2s linear; }
  .footer__col-link:hover {
    color: gray; }
  @media (max-width: 768px) {
    .footer__col-link {
      font-size: 1.5rem;
      text-align: left;
      margin-bottom: 0.8rem; } }

.footer__links-block {
  display: flex;
  align-items: flex-start;
  order: 2; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4rem 0 4rem;
  margin-top: 4rem; }
  @media (max-width: 768px) {
    .footer__bottom {
      border: none; } }

.footer__credits {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 768px) {
    .footer__credits {
      flex-direction: column; } }

.footer__bottom-credits {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Inter'; }
  @media (max-width: 768px) {
    .footer__bottom-credits {
      margin-bottom: 1.2rem; }
      .footer__bottom-credits:last-child {
        margin-bottom: 0; } }

.footer-up {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.footer-up__inner {
  display: flex;
  align-items: center;
  padding: 3rem 0rem; }
  @media (max-width: 499px) {
    .footer-up__inner {
      justify-content: flex-start;
      margin-left: -1.5rem; } }

.footer-up__link {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0rem 2rem;
  transition: color .2s linear; }
  .footer-up__link:hover {
    color: #000; }
  @media (max-width: 991px) {
    .footer-up__link {
      font-size: 1.5rem; } }
  @media (max-width: 768px) {
    .footer-up__link {
      font-size: 1.4rem; } }
  @media (max-width: 499px) {
    .footer-up__link {
      font-size: 0.95rem; } }

.footer-up__icon {
  width: 20px;
  height: 20px;
  margin: -1rem; }
  @media (max-width: 991px) {
    .footer-up__icon {
      width: 16px;
      height: 16px; } }

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