.accept-cookie-modal {
  position: fixed;
  left: 0;
  bottom: 100px;
  width: 100%;
  z-index: 2000000;  
}
.accept-cookie-modal_hidden {
  display: none;
}
.accept-cookie-modal__popup {
  width: 600px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: white;
  border-radius: 15px;
  padding: 44px 88px 50px 45px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.accept-cookie-modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  cursor: pointer;
  top: 24px;
  right: 24px;
  border-radius: 50%;
  border: 1px solid #b48848;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accept-cookie-modal__popup-text {
  margin: 0;
  color: #1b1a18;
  font-size: 18px;
  line-height: 27px;
}
.accept-cookie-modal__link {
  font-weight: 600;
  color: #1b1a18;
  position: relative;
}
.accept-cookie-modal__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 100%;
  background-color: #1b1a18;
}
.accept-cookie-modal__btn {
  margin-top: 24px;
}
.faq {
  background-color: #F7F7F4;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 514px 1fr;
  gap: 60px;
  padding: 74px 104px 74px;
}
.faq * {
  margin: 0;
  padding: 0;
}
.faq__section {
  background-color: white;
}
.faq__section-title {
  margin-top: 60px;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid #ABABA7;
  padding: 30px 0;
}
.faq__item svg {
  transition: 0.5s;
}
.faq__item_opened svg {
  transform: rotate(180deg);
}
.faq__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  cursor: pointer;
}
.faq__content {
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.faq__item-q {
  color: #1B1A18;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Geometria';
}
.faq__item-a {
  color: #000000;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  margin-top: 30px;
}
.faq__item_opened .faq__item-a {
  display: block;
}
.faq__image {
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .faq {
    background-color: #F7F7F4;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: unset;
    padding: 44px;
    margin-top: 40px;
  }
  .faq__img {
    display: none;
  }
  .faq__item {
    padding: 20px 0;
  }
}

.logo_skin-white {
  background: url('/assets/img/logo_white.svg') no-repeat center;
  background-size: contain;
}
.logo_skin-dark {
  background: url('/assets/img/logo.svg#normal') no-repeat center;
  background-size: contain;
  pointer-events: all; 
}

.button.button_skin-brown_logo-hovered {
  color: white !important;
}
.bold-text {
  font-weight: 600;
}
table {
  border-collapse: collapse;
}
.debug {
  border: 1px solid red;
}
.scroll-invisible {
  opacity: 0;
  visibility: hidden;
}
.fixed-menu {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px 8px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(250, 250, 252, .7);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 30px;
  z-index: 100000;
  transition: 0.3s;
  border: 1px solid #f0f0e9;
}
.fixed-menu_hidden {
  display: none;
}
.fixed-menu__nav {
  display: flex;
  align-items: center;
}
.fixed-menu__btn {
  margin-left: 15px;
}
@media (max-width: 1439px) {
  .fixed-menu {
      left: 20px;
      transform: none;
  }
}
.navigation__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  padding-left: 65px;
  margin-bottom: 30px;
  border-left: 2px solid #b48848;
}
.navigation__links_tablet {
  display: none;
  font-weight: 700;
}
.navigation__link a {
line-height: 48px;
white-space: nowrap;
}
.navigation__link {
  position: relative;
}
.navigation__link:before {
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  background-color: #b48848;
  top: 100%;
  left: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation__link:hover:before {
  width: 100%;
  left: 0;
}

@media (max-width: 1079px) {
  .navigation__links {
      padding-left: 40px;
      row-gap: 10px;
  }
  .navigation__links_desktop {
      display: none;
  }
  .navigation__links_tablet {
      display: grid;
      
  }
  .navigation__link a {
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .navigation__links_tablet {
      display: none;
  }
}


.categories-card {
--categories-card-border-radius: 15px;
--transition-timing: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
background: #ffffff;
-webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
-webkit-transition: all var(--transition-timing);
transition: all var(--transition-timing);
border-radius: var(--categories-card-border-radius);
will-change: transform;
}
@media all and (max-width: 767px) {
.categories-card {
    width: 100%;
    height: 105px;
}
}
@media all and (min-width: 768px) and (max-width: 1079px) {
.categories-card {
    --categories-card-photo-container-height: 200px;
    max-width: 250px;
    width: 100%;
    height: 230px;
}
}
@media all and (min-width: 1080px) and (max-width: 1799px) {
.categories-card {
    --categories-card-photo-container-height: 200px;
    width: 100%;
    height: 260px;
}
}
@media all and (min-width: 1800px) {
.categories-card {
    --categories-card-photo-container-height: 260px;
    width: 100%;
    height: 330px;
    padding-bottom: 25px;
}
}
@media all and (min-width: 1080px) {
.categories-card:hover {
    z-index: 2;
}
.categories-card:hover.categories-card_has-menu {
    -webkit-box-shadow: 0px 4px 20px transparent;
    box-shadow: 0px 4px 20px transparent;
}
.categories-card:hover.categories-card_has-menu:before {
    opacity: 1;
}
.categories-card:hover .categories-card__container {
    pointer-events: none;
}
.categories-card:hover .categories-card__photo-wrapper,
.categories-card:hover .categories-card__photo-container,
.categories-card:hover .categories-card__photo,
.categories-card:hover .categories-card__content,
.categories-card:hover a {
    pointer-events: auto;
}
.categories-card:hover .categories-card__photo-container {
    -webkit-transform: scale(0.75) translate(0, -50%);
    transform: scale(0.75) translate(0, -50%);
    pointer-events: none;
}
.categories-card:hover .categories-card__title {
    font-weight: bold;
}
.categories-card_has-menu:hover .categories-card__content {
    -webkit-transform: translateY(
        -webkit-calc(var(--categories-card-photo-container-height) / -2)
    );
    transform: translateY(
        calc(var(--categories-card-photo-container-height) / -2)
    );
    -webkit-box-shadow:
        0 25px 15px -15px rgba(0, 0, 0, 0.1),
        0 28px 0px -28px rgba(0, 0, 0, 0.04);
    box-shadow:
        0 25px 15px -15px rgba(0, 0, 0, 0.1),
        0 28px 0px -28px rgba(0, 0, 0, 0.04);
}
/* .categories-card:hover .categories-card__content {
    -webkit-transform: translateY(
        -webkit-calc(var(--categories-card-photo-container-height) / -2)
    );
    transform: translateY(
        calc(var(--categories-card-photo-container-height) / -2)
    );
    -webkit-box-shadow:
        0 25px 15px -15px rgba(0, 0, 0, 0.1),
        0 28px 0px -28px rgba(0, 0, 0, 0.04);
    box-shadow:
        0 25px 15px -15px rgba(0, 0, 0, 0.1),
        0 28px 0px -28px rgba(0, 0, 0, 0.04);
} */
.categories-card:hover .categories-card__dropdown {
    opacity: 1;
    height: auto;
    visibility: visible;
}
.categories-card:hover .categories-card__menu-item {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
}
.categories-card__container {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
justify-content: space-between;
position: relative;
border-radius: var(--categories-card-border-radius);
}
/* .categories-card__container:before {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: -webkit-calc(var(--categories-card-photo-container-height) * 0.5);
bottom: calc(var(--categories-card-photo-container-height) * 0.5);
-webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
opacity: 0;
z-index: -1;
-webkit-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
border-radius: inherit;
} */
@media all and (max-width: 767px) {
.categories-card__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
}
.categories-card__photo-wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: relative;
width: 100%;
cursor: pointer;
}
.categories-card__photo-wrapper a {
display: block;
width: 100%;
height: 100%;
}
@media all and (min-width: 1800px) {
.categories-card__photo-wrapper {
    height: 260px;
}
}
@media all and (min-width: 1080px) and (max-width: 1799px) {
.categories-card__photo-wrapper {
    height: 190px;
}
}
@media all and (min-width: 768px) and (max-width: 1079px) {
.categories-card__photo-wrapper {
    height: 170px;
}
}
@media all and (max-width: 767px) {
.categories-card__photo-wrapper {
    height: 100px;
    width: 100px;
    min-width: 100px;
}
}
.categories-card__photo-container {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
pointer-events: none;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
position: absolute;
height: var(--categories-card-photo-container-height);
width: var(--categories-card-photo-container-height);
will-change: transform;
-webkit-transition: -webkit-transform var(--transition-timing);
transition: -webkit-transform var(--transition-timing);
transition: transform var(--transition-timing);
transition:
    transform var(--transition-timing),
    -webkit-transform var(--transition-timing);
}
@media all and (max-width: 767px) {
.categories-card__photo-container {
    width: 90px;
    top: -15px;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
}
}
@media all and (min-width: 768px) {
.categories-card__photo-container {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition:
        transform 0.5s ease-in-out,
        -webkit-transform 0.5s ease-in-out;
    top: -20px;
}
}
@media all and (min-width: 768px) and (max-width: 1079px) {
.categories-card__photo-container {
    left: -webkit-calc(
        100% / 2 - var(--categories-card-photo-container-height) / 2
    );
    left: calc(
        100% / 2 - var(--categories-card-photo-container-height) / 2
    );
}
}
@media all and (min-width: 1080px) and (max-width: 1799px) {
.categories-card__photo-container {
    left: -webkit-calc(
        100% / 2 - var(--categories-card-photo-container-height) / 2
    );
    left: calc(
        100% / 2 - var(--categories-card-photo-container-height) / 2
    );
}
}
@media all and (min-width: 1800px) {
.categories-card__photo-container {
    left: -webkit-calc(
        100% / 2 - var(--categories-card-photo-container-height) / 2
    );
    left: calc(
        100% / 2 - var(--categories-card-photo-container-height) / 2
    );
    top: -25px;
}
}
.categories-card__photo {
width: auto !important;
max-width: 100% !important;
}
@media all and (max-width: 767px) {
.categories-card__photo {
    max-height: 100px !important;
    height: auto !important;
}
}
.categories-card__content {
position: relative;
-webkit-transition: -webkit-transform var(--transition-timing);
transition: -webkit-transform var(--transition-timing);
transition: transform var(--transition-timing);
transition:
    transform var(--transition-timing),
    -webkit-transform var(--transition-timing);
background: #fff;
border-radius: var(--categories-card-border-radius);
overflow: hidden;
will-change: transform;
}
.categories-card__title {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
@media all and (max-width: 1079px) {
.categories-card__title {
    font-size: 18px;
    line-height: 20px;
    padding: 0 15px;
}
}
@media all and (min-width: 1080px) {
.categories-card__title {
    padding: 0 25px;
}
}
.categories-card__title a {
color: #333;
}
@media all and (min-width: 1800px) {
.categories-card__title {
    padding: 0 30px;
    font-size: 22px;
    line-height: 30px;
}
}
@media all and (min-width: 1080px) and (max-width: 1799px) {
.categories-card__title {
    font-size: 18px;
    line-height: 26px;
}
}
.categories-card__dropdown {
margin-top: 12px;
opacity: 0;
visibility: hidden;
height: 0;
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
overflow: hidden;
-webkit-transition: all var(--transition-timing);
transition: all var(--transition-timing);
will-change: transform, opacity;
}
@media all and (max-width: 1079px) {
.categories-card__dropdown {
    display: none;
}
}
@media all and (min-width: 1080px) {
.categories-card__dropdown {
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    z-index: 999;
}
}
.categories-card__dropdown-wrapper {
background: #ffffff;
border-radius: 15px;
padding: 15px 0;
}
.categories-card:hover .categories-card__dropdown {
opacity: 1;
visibility: visible;
height: auto;
-webkit-transform: translateY(0);
transform: translateY(0);
}
@media all and (min-width: 768px) and (max-width: 1079px) {
.categories-card__menu {
    padding: 0 12px;
    margin-bottom: 10px;
}
}
@media all and (min-width: 1080px) and (max-width: 1799px) {
.categories-card__menu {
    padding: 0 25px;
    padding-bottom: 10px;
}
}
@media all and (min-width: 1800px) {
.categories-card__menu {
    padding: 0 35px;
    padding-bottom: 15px;
}
}
.categories-card__menu-item {
display: block;
margin-top: 5px;
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
-webkit-transition: all var(--transition-timing);
transition: all var(--transition-timing);
will-change: transform, opacity;
}
.categories-card:hover .categories-card__menu-item {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
@media all and (min-width: 1800px) {
.categories-card__menu-item .link {
    font-size: 18px !important;
    line-height: 24px !important;
}
}
.categories-card__menu-item:first-child {
margin-top: 5px;
}
@media all and (max-width: 1079px) {
.categories-card__menu-item:not(:first-child) {
    margin-top: 10px;
}
}
@media all and (min-width: 1080px) {
.categories-card__menu-item:not(:first-child) {
    margin-top: 15px;
}
}
.categories-card__menu-item:last-child {
margin-bottom: 10px;
}


/* скрываем чекбоксы и блоки с содержанием */
.hide,
.hide + label ~ div {
display: none;
}
/* вид текста label */
.hide + label {
margin: 0;
padding: 0;
cursor: pointer;
display: inline-block;
}
/* вид текста label при активном переключателе */
.hide:checked + label {
border-bottom: 0;
font-size: 14px;
text-transform: uppercase;
font-weight: normal;
position: absolute;
top: 40px;
right: calc(50% - 380px);
z-index: 9999999;
color: #7c7c7c00;
width: 165px;
display: flex;
align-items: flex-end;
flex-direction: row;
}
/* когда чекбокс активен показываем блоки с содержанием  */
.hide:checked + label + div {
background: rgba(24, 25, 26, 0.6);
backdrop-filter: blur(20px);
margin-left: 0px;
padding: 0;
position: fixed;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
/* чуточку анимации при появлении */
-webkit-animation: fade ease-in 0.5s;
-moz-animation: fade ease-in 0.5s;
animation: fade ease-in 0.5s;
}
.contacts-info__item {
width: 100%;
}

/* анимация при появлении скрытых блоков */
@-moz-keyframes fade {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}
@-webkit-keyframes fade {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}
@keyframes fade {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}
/* .hide + label:before {
  background-color: #b48848;
  color: #fff;
  content: "\002B";
  display: block;
  float: left;
  font-size: 14px;
  font-weight: bold;
  height: 16px;
  line-height: 16px;
  margin: 3px 5px;
  text-align: center;
  width: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.hide:checked + label:before {
  content: "\2212";
  content: url(/assets/img/x.svg);
  cursor: pointer;
  background: transparent;
  border: 1px solid #B48848;
  border-radius: 50%;
  padding: 0;
  display: block;
  height: 20px;
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  opacity: 1;
  outline: none;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
} */
.hide + label:after {
background-color: #b48848;
color: #fff;
/* content: "\002B"; */
display: block;
float: right;
font-size: 14px;
font-weight: bold;
height: 16px;
line-height: 16px;
margin: 3px 5px;
text-align: center;
width: 16px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.hide:checked + label:after {
/* content: "\2212"; */
content: url(/assets/img/x.svg);
cursor: pointer;
background: transparent;
border: 1px solid #b48848;
border-radius: 50%;
padding: 0;
display: block;
height: 20px;
width: 20px;
min-width: 20px;
min-height: 20px;
opacity: 1;
outline: none;
position: relative;
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
text-align: center;
display: none;
}
@media (max-width: 1200px) {
.hide:checked + label {
  left: calc(100% + 150px);
}
.reqv__heder_title {
  display: none;
}
}
@media (max-width: 768px) {
.hide:checked + label {
  right: 50px;
  left: auto;
}
}

.icon-text {
flex-wrap: wrap;
justify-content: center;
}
.contacts-info__req {
padding: 40px;

}

.button_size-medium {
height: fit-content;
}
@media (min-width: 1080px) {
.reviews {
  flex-wrap: wrap;
}
}
.work-scheme__stage-text p {
padding-top: 10px;
margin-left: 10px;
}
.service-slider__image {
border-radius: 15px;
}
.icon-text {
justify-content: flex-start;
}
.slider img {
border-radius: 15px;
}
/* .sidebar-item__head:before {
  color: #b48848;
  padding-right: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 2.3s ease-in-out;
  transition: all 2.3s ease-in-out;
}
.sidebar-item__head:hover:before {
  content: "|";
  padding-right: 20px;
  -webkit-transform: scaleY(1);
  transform: scaleY(1.9);
  font-weight: 300;
  -webkit-transition: all 2.3s ease-in-out;
  transition: all 2.3s ease-in-out;
  padding-left: 8px;
} */
.sidebar-item__head a {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
margin-left: 0px;
}

.sidebar-item__head:hover a,
.sidebar-item__head:active a {
color: #b48848;
border-left-color: #b48848;
border-left-style: solid;
border-left-width: 1px;
padding-left: 10px;
margin-left: -10px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.sidebar-item_is-active > .sidebar-item__head .sidebar-item__title {
font-weight: bold;
color: #b48848;
border-left-color: #b48848;
border-left-style: solid;
border-left-width: 1px;
padding-left: 10px;
margin-left: 10px;
}
/* .sidebar-item {
  width: calc(100% - 30px);
} */
/* .sidebar-item-wrapper {
  width: calc(100% - 30px);
} */
.aside {
margin: 0px 60px 0 0;
width: 230px;
}
.article-slider__slide img {
border-radius: 15px;
}
.article-slider__slide {
    max-height: 170px;
    overflow: hidden;
    border-radius: 15px;
}
.owl-carousel .owl-item img {
border-radius: 15px;
}
@media (min-width: 1080px) {
.reviews__button {
  width: 110px;
}
}
/* .sidebar-item__head {
  justify-content: flex-start;
} */
.sidebar_sublist .sidebar-item__title {
font-size: 16px;
}
.categories-card {
border-radius: 15px;
}
.types__background {
border-radius: 15px;
}
.slider-big__item img {
border-radius: 15px;
}
.sidebar__item-space {
background: none;
}
.button_skin-brown {
background: transparent !important;
color: #333 !important;
border: #b48848 solid 0.7px !important;
font-weight: 500;
}
.button_skin-brown:before {
background: -webkit-radial-gradient(
  circle closest-side,
  #b48848,
  transparent
) !important;
background: radial-gradient(
  circle closest-side,
  #b48848,
  transparent
) !important;
}
.button_skin-brown:hover {
background-color: #1b1a18 !important;
color: white !important;
}
.button_skin-brown-white {
/* background: #ffffff !important;
color: #000 !important; */
background: transparent !important;
color: white !important;
border: #b48848 solid 0.7px !important;
font-weight: 500;
}
.button_skin-brown-white:before {
background: -webkit-radial-gradient(
  circle closest-side,
  #b48848,
  transparent
) !important;
background: radial-gradient(
  circle closest-side,
  #b48848,
  transparent
) !important;
}
.button_skin-brown-white:hover {
color: white !important;
}
.title,
.aside__title,
.preloader__title,
.screen-title,
.title h1,
h1,
h2,
h3 {
font-family: "Geometria", sans-serif !important;
}
.title {
line-height: 1.15;
}
.portfolio__background {
border-radius: 15px;
}
.grid__card img {
border-radius: 15px;
}
.sidebar_sublist .sidebar-item__title {
opacity: 1;
}
@media (min-width: 1800px) {
.sidebar-item__title {
  font-size: 16px;
}
}
.aside:nth-child(1n) {
float: left;
margin-right: 0px;
clear: none;
}

.categories-card:hover .categories-card__dropdown {
-webkit-box-shadow: none;
box-shadow: none;
}

.reviews__body {
width: calc(99.9% * 9 / 12 - 22.5px);
}

.acor-container {
padding: 30px 0;
border-bottom: #0000002b 1px solid;
border-top: #0000002b 1px solid;
}
.acor-container .acor-body {
width: calc(100% - 40px);
margin: 0 auto;
max-height: 0;
/* color: rgba(0, 0, 0, 0); */
line-height: 18px;
padding: 0 30px;
box-sizing: border-box;
/* transition: color 0.5s, padding 0.5s; */
transition: all 500ms ease-out;
overflow: hidden;
font-size: 18px;
}
.acor-container .acor-body p {
margin: 0 0 10px;
}
.acor-container label {
cursor: pointer;
display: block;
padding: 15px 20px;
width: 100%;
font-weight: bold;
box-sizing: border-box;
font-size: 24px;
margin: 0 0 5px;
transition: color 0.35s;
}
.acor-container label:hover {
color: #b48848;
}
.acor-container input {
display: none;
}
.acor-container label:after {
content: "\002b";
float: right;
font-size: 64px;
font-weight: 300;
}
.acor-container input:checked + label:after {
transition: transform 0.35s;
content: "\002d";
}
.acor-container input:checked + label + .acor-body {
/* height: auto;
margin-top: -5px;
color: #000; */
max-height: unset;
overflow: unset;
padding: 30px 30px;
}
.reviews__description {
width: calc(99.9% * 9 / 12 - 22.5px);
}

.container__content {
  justify-content: space-between;
}

@keyframes reqv_appearance {
  from {
    transform: translateY(100%)
  }
  to {
    transform: none;
  }
}
.reqv {
  width: 690px;
  max-width: 100vw;
  padding: 80px;
  background-color: white;
  border-radius: 15px;
  position: relative;
  height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: none;
  animation: reqv_appearance 0.5s ease-in-out forwards;
  &::-webkit-scrollbar {
    display: none;
  }
}
.reqv::before {
  content: url('http://bw-rw.oldstage.atwinta.site/assets/img/reqv_bg_top.png');
  position: absolute;
  top: 0;
  left: 0;
}
/* .reqv::after {
  content: url('http://bw-rw.oldstage.atwinta.site/assets/img/reqv_bg_bottom.png');
  position: absolute;
  right: 0;
  bottom: 0;
} */
.reqv__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 690px;
  max-width: 100vw;
  height: 90vh;
  box-sizing: border-box;
}

@keyframes close_icone_appearance {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reqv__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #B48848;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 22;
  opacity: 0;
  animation: close_icone_appearance 0.5s 0.3s forwards;
}

.reqv__heder_logo {
width: 200px !important;
height: 30px !important;
}
.reqv__heder_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #B48848;
  line-height: normal;
}
.reqv__body {
width: 100%;
color: rgb(51 51 51);
position: relative;
display: flex;
flex-direction: column;
gap: 15px;
}

.reqv__body_header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.reqv__body_info {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: smaller;
}

.reqv__body_info-l {
  font-weight: 600;
}
.reqv__body_info-l,
.reqv__body_info-p {
width: 50%;
padding: 3px;
}

.icon-requisites {
height: 19px;
width: 19px;
background: url(/assets/img/requis.svg) 50% no-repeat;
}
.reqv__mob-upload {
  display: none;
}
@media (max-width: 760px) {
  .reqv {
    padding: 60px 28px 28px;
  }
  .reqv__mob-upload {
      display: flex;
      align-items: center;
      gap: 5px;
      position: absolute;
      top: 20px;
      left: 20px;
      color: #B48848;
      font-size: 18px;
      font-family: PT Sans;
  }
  .reqv__mob-upload .icon-text__icon {
      margin-right: 5px;
  }
  .reqv__close {
      width: 30px;
      height: 30px;
  }
  .reqv__close img {
      width: 12px;
      height: 12px;
  }
  .reqv__decor {
      display: none;
  }
}
/* .menu__social_whatsapp a span {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 40px;
height: 40px;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
background: url("/assets/images/w.svg") no-repeat 50%;
background-size: 40px;
}
.menu__social_whatsapp:hover span {
width: 40px;
height: 40px;
background: url("/assets/images/w-b.svg") no-repeat 50%;
background-size: 40px;
}
*/

@media (min-width: 1080px) {
.section-full-content {
  width: calc(99.9% * 9 / 12 - 0px);
}
}

.article-slider__slide:hover:before {
border-radius: 15px;
}
.sidebar__item-space {
height: 5px;
}
.sidebar-item__head {
width: 90%;
}

table {
  max-width: 100% !important;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 2px solid #b48848;
  margin-top: 1em;
}
table::after {
  content: "";
  border: 3px solid #b48848;
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  bottom: -1px;
  border-radius: 15px;
  z-index: 2;
  pointer-events: none;
}
table[border="0"],
table.disable-border {
  border-radius: 0;
  border: none;
}
table[border="0"]::after,
table.disable-border::after {
  content: unset;
}
table td {
  padding: 10px;
  border: 1px solid #b48848;
}
table[border="0"] td,
table.disable-border td {
  border: none;
}
table tr {
  width: 100%;
  height: 100%;
  vertical-align: top;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
table tr:hover {
  background-color: #fff;
}
.disable-hover tr:hover {
  background-color: transparent;
}


.filter__parent-label {
padding: 10px 15px;

@media (max-width: 1799px) {
  padding: 10px 16.5px;
}
}

.article-slider + .page-content > .page-content__tabs {
  margin-top: 0;
}

.VueCarousel-slide.article-slider__slide {
  height: unset;
}

.VueCarousel-slide.article-slider__slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-content + .article-slider {
  margin-top: 1em;
}

.vue-dropzone {
  width: auto;
}