@charset "UTF-8";

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
}

.btn-gold {
  background: #E5D7C4;
  border: 1px solid #E5D7C4;
  color: #2C2C2C;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: #ddcbb2;
}

.btn-blue {
  background: #A1B5C1;
  border: 1px solid #A1B5C1;
  color: #2C2C2C;
}

.btn-blue:hover {
  background: #92a9b7;
}

.btn-transparent {
  border: 1px solid #A1B5C1;
  background: transparent;
  color: #2C2C2C;
  padding: 20px 30px;
  border-radius: 80px;
}

.btn-transparent:hover {
  background: #A1B5C1;
  color: #2C2C2C;
}

.btn-transparent span {
  margin-right: 15px;
}

.ic-btn {
  width: 16px;
  height: 16px;
  fill: #5F5F5F;
}

@media only screen and (max-width: 578px) {
  .btn-transparent {
    padding: 15px 20px;
    border-radius: 80px;
    font-size: 15px;
    flex-shrink: 0;
  }

  .btn-transparent span {
    margin-right: 7px;
  }
}

.header {
  padding: 4px 0;
}

.header__wrp {
  display: flex;
  flex-direction: column;
}

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

.header__icon {
  width: 19px;
  height: 19px;
  fill: #988975;
}

.header__contacts {
  color: #5F5F5F;
  font-size: 16px;
}

.header__contacts span {
  padding-left: 10px;
}

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

.header__btn {
  padding: 12px 22px;
  border-radius: 80px;
}

.header__insta {
  padding-right: 15px;
  flex-shrink: 0;
}

.header__insta:hover {
  opacity: 0.7;
}

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

.header__search {
  position: relative;
  margin-right: 20px;
  flex-grow: 1;
}

.header__icon-search {
  width: 19px;
  height: 19px;
}

.header__nav {
  flex-basis: content;
}

.header__input {
  border-radius: 50px;
  box-shadow: none;
  outline: none;
  border: 1px solid #aeaeae;
  padding: 6px 6px 6px 16px;
  color: #5F5F5F;
  width: 100%;
  background: transparent;
}

.header__input:active,
.header__input:focus {
  outline: none;
}

.header__input::-moz-placeholder {
  color: #5F5F5F;
}

.header__input::placeholder {
  color: #5F5F5F;
}

.header__search-btn {
  background: transparent;
  box-shadow: none;
  border: none;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  opacity: 0.6;
}

.header__search-btn:hover {
  opacity: 1;
}

.header__nav-contacts {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header__logo {
    width: 15%;
  }

  .header__contacts {
    font-size: 14px;
  }

  .header__btn {
    font-size: 14px;
  }
}

@media only screen and (max-width: 904px) {
  .header hr {
    display: none;
  }

  .header__wrp {
    flex-direction: row;
    justify-content: space-between;
  }

  .header__top {
    flex-basis: 90%;
  }

  .header__contacts {
    display: none;
  }

  .header__search {
    display: none;
  }

  .header__logo {
    width: auto;
  }

  .header__nav-contacts {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding-left: 15px;
  }

  .header__nav-contacts .header__contacts {
    display: block;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 562px) {
  .header__online {
    display: none;
  }

  .header__nav-contacts .header__online {
    display: flex;
    margin-top: 15px;
  }
}

.header {
  position: absolute;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.menu-fixed .header__search,
.menu-fixed hr {
  display: none;
}

.menu-fixed .header__adress,
.menu-fixed .header__time,
.menu-fixed .header__online,
.menu-fixed .header__phone {
  display: none;
}

.menu-fixed .header__nav-contacts .header__adress,
.menu-fixed .header__nav-contacts .header__time,
.menu-fixed .header__nav-contacts .header__online,
.menu-fixed .header__nav-contacts .header__phone {
  display: flex;
}

.menu-fixed .header__wrp {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.menu-fixed .header__logo img {
  width: 70%;
}

.menu-fixed .header__nav {
  padding: 0;
  margin: 0;
}

.page-body .menu-fixed {
  background: rgba(255, 255, 255, 0.7);
}

.page-body .menu-fixed::after {
  display: none;
}

.page-body .header__online {
  color: #282828;
  background: #fff;
  box-shadow: 0 7px 10px rgba(199, 199, 199, 0.1647058824);
}

@media only screen and (max-width: 1200px) {
  .menu-fixed .header__logo {
    width: auto;
  }
}

@media only screen and (max-width: 945px) {
  .menu-fixed .header__nav {
    display: flex;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 576px) {
  .header {
    padding-left: 0px;
    padding-right: 0px;
  }

  .menu-fixed .header__logo {
    display: inline;
  }
}

.headings__wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.heading-title {
  color: #2C2C2C;
  font-family: "CenturyGotic", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.bgmain__title {
  margin: 40px 0;
  width: 90%;
  font-size: 42px;
}

.heading-subtitle {
  font-size: 18px;
  line-height: 1.3;
  color: #2C2C2C;
}

.form-title {
  font-size: 22px;
}

.homepage .form-title {
  font-size: 42px;
}

@media only screen and (max-width: 768px) {

  .heading-title,
  .bgmain__title {
    font-size: 32px;
  }

  .homepage .form-title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 578px) {

  .heading-title,
  .bgmain__title {
    font-size: 24px;
  }

  .headings__wrp img {
    display: none;
  }

  .homepage .form-title {
    font-size: 24px;
  }
}

.heading {
  background: #E6EEF2;
  padding: 30px 0px 60px 0;
}

.heading h1 {
  font-family: "CenturyGotic", sans-serif;
  font-size: 32px;
  color: #2C2C2C;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
}

.breadcrumbs {

  color: #A5ADB5;
}

.breadcrumbs li {
  display: inline-block;
  font-size: 18px;
  color: #5F5F5F;
}

.ss-result__title a {
  color: #5F5F5F;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;

}

.ss-result__url a {
  color: #5F5F5F;
  text-decoration: none;
  font-size: 18px;

}

.breadcrumbs li a {
  color: #5F5F5F;
  text-decoration: none;
}

.breadcrumbs li a:hover {
  color: #5F5F5F;
}

.breadcrumbs li::after {
  color: #6E6E6E;
  content: "—";
  padding: 0 5px;
}

.breadcrumbs li:last-child::after {
  display: none;
}

@media only screen and (max-width: 945px) {
  h1 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 578px) {
  .heading h1 {
    font-size: 22px;
  }

  .breadcrumbs li {
    font-size: 15px;
  }
}

.main-text {
  background: #E6EEF2;
  padding: 20px 20px 20px 40px;
  border-left: 2px solid #988975;
  line-height: 1.3;
  font-size: 18px;
  color: #5F5F5F;
  margin-bottom: 30px;
}

p {
  line-height: 1.3;
  color: #5F5F5F;
  font-size: 18px;
  padding: 7px 0;
}

@media only screen and (max-width: 578px) {
  .main-text {
    padding: 15px 15px 15px 20px;
    font-size: 15px;
    margin-bottom: 20px;
  }

  p {
    font-size: 15px;
    padding: 7px 0;
  }
}

.content {
  background: #fff;
  margin-top: -30px;
  padding: 20px;
}

.content img {
  margin-bottom: 20px;
}

.content h2 {
  font-family: "CenturyGotic", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #2C2C2C;
}

.content h3 {
  font-family: "CenturyGotic", sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin: 20px 0;
  line-height: 1.3;
  color: #2C2C2C;
}

.content p {
  color: #5F5F5F;
  line-height: 1.5;
  margin: 7px 0;
  font-size: 16px;
}

.content ul {
  list-style-type: disc;
  padding-left: 30px;
  line-height: 1.3;
}

.content li {
  line-height: 1.5;
  padding: 7px 0;
  color: #5F5F5F;
  font-size: 16px;
}

.content table {
  min-width: 400px;
  font-size: 16px;
}

.content table td {
  padding: 17px;
  line-height: 1.3;
  color: #5F5F5F;
  vertical-align: middle;
}

.content table img {
  margin-bottom: 0;
}

.content .table-docs td {
  border: 1px solid #ececec;
}

.content .table-docs a {
  color: #988975;
  text-decoration: underline;
}

.content .table-docs a:hover {
  color: #A1B5C1;
}

.content .documents {
  display: block;
  margin-bottom: 25px;
  color: #988975;
  text-decoration: underline;
  line-height: 1.4;
}

.content .documents:hover {
  color: #A1B5C1;
}

@media only screen and (max-width: 576px) {
  .content {
    padding: 7px;
  }

  .content h2 {
    font-size: 18px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p {
    color: #5F5F5F;
    line-height: 1.3;
    margin: 7px 0;
    font-size: 14px;
  }

  .content ul {
    list-style-type: disc;
    padding-left: 30px;
    line-height: 1.3;
  }

  .content li {
    font-size: 14px;
  }

  .content td,
  .content th {
    font-size: 14px;
    line-height: 1.3;
  }

  .content .picture {
    margin-top: 20px;
  }
}

.service-slider {
  margin-top: 20px;
}

.service-item {
  height: 200px;
  display: flex;
}

.service-item img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 578px) {
  .service-item {
    height: 120px;
    display: flex;
  }

  .service-item img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.bgmain {
  margin: 15px 0 60px 0;
}

.bgmain__img {
  border-radius: 30px;
  width: 100%;
}

.bgmain__btns {
  padding: 10px;
  background: #F5F5F5;
  border-radius: 80px;
  display: inline-flex;
  margin-left: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 60;
}

.bgmain__wrp {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.032px solid rgba(255, 255, 255, 0.31);
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  transition: all 0.3s;
}

.bgmain__icon {
  width: 14px;
  height: 14px;
  fill: #2C2C2C;
  flex-shrink: 0;
}

.bgmain__btn {
  border-radius: 80px;
  text-transform: none;
  padding: 0 0 0 45px;
  font-size: 18px;
  line-height: 1.2;
}

.bgmain__btn span {
  margin-right: 15px;
}

.bgmain__btn:hover .bgmain__wrp {
  transform: rotate(45deg);
  transition: all 0.3s;
}

.bgmain__btn:first-child {
  margin-right: 10px;
}

.bgmain__tizers {
  display: flex;
  margin-bottom: 30px;
}

.bgmain__tizers p {
  font-size: 22px;
  line-height: 1.4;
  color: #5F5F5F;
}

.bgmain__tizers p:first-child {
  border-right: 1px solid #E5D7C4;
  max-width: 205px;
}

.bgmain__tizers p:last-child {
  padding-left: 40px;
  max-width: 489px;
}

@media only screen and (max-width: 1200px) {
  .bgmain__btn {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .bgmain__tizers p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 670px) {
  .bgmain__btns {
    margin-left: 0;
  }

  .bgmain__wrp {
    padding: 15px;
  }

  .bgmain__icon {
    width: 10px;
    height: 10px;
  }

  .bgmain__btn {
    font-size: 15px;
    padding: 0 0 0 25px;
  }

  .bgmain__btn span {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 578px) {
  .bgmain__tizers p {
    font-size: 16px;
  }

  .bgmain__tizers p:first-child {
    padding-right: 15px;
  }
}

.services-home {
  margin: 60px 0;
}

.service {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}

.service:hover .service__title {
  color: #988975;
}

.service:hover .service__link {
  color: #988975;
}

.service__img {
  display: block;
  height: 289px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 10px;
}

.service__wrp {
  display: flex;
  flex-direction: column;
}

.service__title {
  font-family: "CenturyGotic", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
  color: #2C2C2C;
  padding: 0 15px;
  transition: all 0.3s;
}

.service__category {
  padding: 4px;
  border-radius: 4px;
  background: #A1B5C1;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  display: inline-flex;
  align-self: flex-start;
  margin-left: 15px;
}

.service__link {
  color: #2C2C2C;
  font-size: 16px;
  text-decoration: underline;
  margin-top: auto;
  padding: 15px;
  transition: all 0.3s;
}

.service-page {
  border: 3px solid rgba(236, 236, 236, 0.7058823529);
  padding: 15px;
}

.service-page .service__title {
  font-size: 20px;
}

.service-page__img {
  width: 100%;
  border-radius: 20px;
}

@media only screen and (max-width: 980px) {
  .service__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 578px) {
  .services-home {
    margin: 30px 0;
  }

  .service__img {
    height: 220px;
  }

  .service__title {
    font-size: 18px;
  }
}

.service-page-wrp {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
}

.table-service a {}

.table-sevice td {
  background: #F5F5F5;
  border: 2px solid #fff;
}

.table-sevice thead td {
  background: #A1B5C1;
  color: #fff;
}

.about {
  margin: 60px 0;
}

.about__li {
  display: flex;
  align-items: flex-start;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 30px;
}

.about__li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, rgba(161, 181, 193, 0) 0%, #A1B5C1 55.73%, rgba(161, 181, 193, 0) 100%);
  display: block;
  bottom: 0;
  left: 0;
}

.about__number {
  font-size: 20px;
  color: #A1B5C1;
  padding: 10px;
  border: 1px solid #A1B5C1;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__text {
  color: #5F5F5F;
  font-size: 18px;
  line-height: 1.3;
}

.about img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.yelow-block {
  background: #E6EEF2;
  border-radius: 20px 0 0 0;
}

.gray-block {
  background: #E7E4E4;
}

.gray2-block {
  background: rgba(194, 194, 194, 0.16);
  border-radius: 0 20px 0 0;
}

.light-gray-block {
  background: rgba(217, 217, 217, 0.36);
}

.dark-gray-block {
  background: #ececec;
}

.blocks {
  margin: 60px 0;
}

.blocks__item {
  width: 100%;
  padding: 30px;
  position: relative;
  min-height: 250px;
}

.blocks__title {
  font-family: "CenturyGotic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2C2C2C;
}

.blocks__p {
  line-height: 1.4;
  color: #5F5F5F;
  font-size: 18px;
}

.blocks__btn {
  padding: 20px 10px;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
  margin: auto;
  max-width: 267px;
  background: #dae4eb;
}

.blocks__btn:hover {
  background: #cad6de;
}

.blocks__img {
  position: absolute;
  right: 0;
  bottom: 0px;
}

.blocks__nopadding {
  padding: 0 !important;
}

.blocks__nopadding img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.text-gray {
  color: #ececec;
}

.lena__title {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
}

.lena__post {
  font-size: 14px;
  color: #5F5F5F;
}

@media only screen and (max-width: 1200px) {
  .blocks__item {
    width: 100%;
    padding: 15px;
  }

  .blocks__btn {
    padding: 15px 20px;
    left: 15px;
    bottom: 15px;
  }
}

@media only screen and (max-width: 904px) {
  .blocks__btn {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .blocks__item {
    min-height: auto;
  }

  .blocks__img {
    bottom: 0;
    right: 0;
    width: 30%;
  }

  .blocks__title {
    font-size: 20px;
  }

  .blocks__p {
    font-size: 14px;
  }

  .yelow-block .blocks__p {
    max-width: 70%;
  }
}

@media only screen and (max-width: 578px) {
  .blocks {
    margin: 30px 0;
  }

  .blocks__item {
    overflow: hidden;
  }

  .blocks__img {
    z-index: 60;
    right: -20px;
  }

  .blocks .lena__title {
    font-size: 14px;
  }
}

.mainform {
  margin: 60px 0;
}

.mainform__text {
  font-size: 18px;
  line-height: 1.3;
  color: #5F5F5F;
  margin-bottom: 20px;
}

.mainform__wrp {
  display: flex;
  margin-bottom: 0;
}

.mainform__photos {
  display: flex;
}

.mainform__photo {
  width: 80px;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #A1B5C1;
}

.mainform__photo:not(:first-child) {
  position: relative;
  margin-left: -2%;
}

.mainform label {
  width: 100%;
}

.mainform__input {
  border: 1px solid #E5D7C4;
  background: #fff;
  border-radius: 80px;
  width: 100%;
  padding: 30px 25px;
  font-size: 18px;
}

.mainform__input:focus,
.mainform__input:active {
  outline: none;
}

.mainform__input::-moz-placeholder {
  font-size: 18px;
}

.mainform__input::placeholder {
  font-size: 18px;
}

.mainform__btn {
  padding: 35px 35px;
  border-radius: 80px;
  width: 100%;
  text-transform: none;
  background: #E5D7C4;
  font-weight: 500;
  border: none;
  font-size: 18px;
  box-shadow: 0px 0px 6.76254px 5.63545px rgba(255, 255, 255, 0.25) inset;
  margin-bottom: 15px;
}

.mainform__btn:focus,
.mainform__btn:active {
  outline: none;
}

.mainform__btn::-moz-placeholder {
  font-size: 18px;
}

.mainform__btn::placeholder {
  font-size: 18px;
}

.mainform__privacy {
  margin-top: -100px;
  font-size: 14px;
  color: #5F5F5F;
  line-height: 1.3;
}

.mainform__recaptcha {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 992px) {
  .mainform__privacy {
    margin-top: 0;
  }
}

@media only screen and (max-width: 578px) {
  .mainform {
    margin: 30px 0;
  }

  .mainform__wrp {
    flex-wrap: wrap;
  }

  .mainform__text {
    margin-top: 15px;
  }

  .mainform__privacy {
    margin-top: 0px;
  }
}

.doctor {
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  padding: 10px;
}

.doctor__img {
  width: 100%;
  height: 450px;
  position: relative;
  margin-bottom: 15px;
  display: block;
}

.doctor__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.doctor__stage {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
  background: #A1B5C1;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
}

.doctor__name {
  font-family: "CenturyGotic", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #2C2C2C;
  margin-bottom: 15px;
}

.doctor__post {
  font-size: 16px;
  line-height: 1.3;
  color: #5F5F5F;
  margin-bottom: 15px;
}

.doctor__link {
  font-size: 16px;
  text-decoration: underline;
  color: #988975;
  margin-bottom: 15px;
  display: block;
}

.doctor__link:hover {
  color: #E5D7C4;
}

.doctor__btn {
  align-self: center;
  margin-top: auto;
}

.doctor__post-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.doctor__post-page {
  color: #fff;
  background: #A1B5C1;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .doctor__btn {
    margin-bottom: 15px;
  }
}

.certs__wrp {
  margin-top: 60px 0;
}

.certs__title {
  margin-bottom: 15px;
}

.certs__item {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.certs__item::before {
  content: "";
  background: url(../img/cert2.png);
  width: 153px;
  height: 231px;
  display: block;
  position: relative;
  z-index: 1;
}

.certs__item img {
  width: 136px;
  height: 176px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 15px auto;
  z-index: 10;
}

.certs__slider {
  padding-bottom: 30px;
}

.certs__subtitle {
  max-width: 90%;
}

.service__slider .certs__item {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service__slider .certs__item::before {
  display: none;
}

.service__slider .certs__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 2px;
  position: relative;
  margin-bottom: 10px;
  margin-top: 40px;
}

.swiper-scrollbar-drag {
  background: #988975;
}

@media only screen and (max-width: 578px) {
  .certs__wrp {
    background: #fff;
    margin-top: -90px;
    padding: 15px;
    box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.12);
  }

  .certs__item img {
    width: 130px;
    height: 160px;
  }

  .certs__subtitle {
    max-width: 100%;
    font-size: 16px;
  }
}

.equip {
  padding: 10px;
  border: 1px solid #ececec;
}

.equip__title {
  font-family: "CenturyGotic", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #2C2C2C;
}

.equip__desc {
  color: #5F5F5F;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.equip__btn {
  padding: 14px 28px;
}

@media only screen and (max-width: 578px) {
  .equip__title {
    font-size: 20px;
  }

  .equip__desc {
    font-size: 16px;
  }

  .equip__desc li {
    font-size: 16px;
  }
}

.toast {
  padding: 12px;
  margin: 10px;
  position: relative;
  background-color: #fff;
}

.toast__header {
  display: flex;
  justify-content: end;
}

.toast__wrp {
  display: flex;
}

.toast__img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #A1B5C1;
  margin-right: 15px;
}

.toast__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2C2C2C;
}

.toast__text {
  color: #5F5F5F;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.toast .btn-close {
  position: absolute;
  right: 7px;
  top: 7px;
}

.toast__link {
  color: #988975;
  text-decoration: underline;
}

@media only screen and (max-width: 578px) {
  .toast__img {
    width: 60px;
    height: 60px;
  }
}

.panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  flex-direction: column;
  right: 10px !important;
  border-radius: 80px;
  background: #E5D7C4;
  padding: 4px;
  z-index: 100;
}

.panel__ic {
  width: 60px;
  height: 60px;
}

.panel__ic:not(:last-child) {
  margin-bottom: 15px;
}

.panel__ic:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 578px) {
  .panel__ic {
    width: 40px;
    height: 40px;
  }
}

body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

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

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}

#watchme .btn-close {
  right: -30px;
}

#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-family: "CenturyGotic", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  color: #2C2C2C;
}

.modal-contacts {
  padding: 20px 40px;
}

.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}

.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}

.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}

.modal-contacts__bottom span {
  margin-left: 10px;
}

.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #E5D7C4;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}

.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}

.form_input__modal:focus {
  border-bottom: 2px solid #E5D7C4;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #E5D7C4;
  color: #fff;
  border: 1px solid #E5D7C4;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}

.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #E5D7C4;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

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

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

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}

.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}

.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}

.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}

.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

.modal__btn {
  padding: 20px 30px;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }

  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }

  .modal-header {
    padding-top: 60px;
  }

  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }

  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}

.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  line-height: 1.3;
  font-size: 15px;
  color: #5F5F5F;
  display: block;
}

.checkbox-text a {
  color: #A1B5C1;
}

.recaptcha-place {
  margin-bottom: 10px;
}

.custom-checkbox {
  display: flex;
  align-items: start;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  max-width: 19px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 2px;
  border-radius: 1px;
  background: rgba(202, 204, 216, 0.4);
  margin-right: 10px;
}

.custom-checkbox input:checked+.checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/check-ic.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.just-validate-error-label {
  font-size: 12px;
  color: #5C5C77 !important;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  background: #A1B5C1;
  padding: 17px 25px;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ececec;
  padding: 15px;
  width: 100%;
}

.product:hover .product__title {
  color: #988975;
}

.product__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-bottom: 15px;
}

.product__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.product__category {
  background: #A1B5C1;
  color: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 15px;
  align-self: flex-start;
  display: inline-flex;
}

.product__title {
  font-family: "CenturyGotic", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #2C2C2C;
  margin-bottom: 15px;
}

.product__desc {
  line-height: 1.3;
  color: #5F5F5F;
  font-size: 16px;
  margin-bottom: 15px;
}

.product__btn {
  padding: 20px 30px;
  margin-top: auto;
}

.product__btn:hover {
  color: #2C2C2C;
}

.product__price {
  font-family: "CenturyGotic", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #5F5F5F;
  margin-bottom: 15px;
}

@media only screen and (max-width: 578px) {
  .product__title {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .product__category {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .product__desc {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .product__btn {
    padding: 15px 17px;
    text-transform: none;
  }

  .product__img {
    height: 200px;
    margin-bottom: 7px;
  }
}

.contacts {
  border: 1px solid #ececec;
  padding: 20px;
}

.contacts__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}

.contacts__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}

.contacts__subtitle {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

.contacts__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.contacts__group {
  margin: 20px 0;
}

.contacts__label {
  font-size: 16px;
  color: #5F5F5F;
  margin-bottom: 10px;
}

.contacts__input {
  margin-bottom: 10px;
}

.contacts__input a {
  color: #2C2C2C;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.contacts__btn {
  width: 100%;
  background: #fff;
  border: 1px solid #988975;
  color: #988975;
  font-weight: 600;
  padding: 15px 5px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.contacts__btn:hover {
  border: 1px solid #988975;
  color: #fff;
  background: #988975;
}

.content-contacts {
  margin: 20px 0;
}

@media only screen and (max-width: 578px) {
  .contacts {
    padding: 5px;
  }
}

.relatives {
  overflow-x: hidden;
}

.relatives__slider {
  padding-bottom: 80px;
  overflow: hidden;
}

.relatives .swiper-slide {
  height: auto;
}

.relatives .relatives__title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 578px) {
  .relatives__slider {
    padding-bottom: 90px;
  }
}

.response {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
}

.response__logo {
  width: 200px;
  margin-right: 15px;
}

.response__info {
  display: flex;
  flex-direction: column;
}

.response__top {
  display: flex;
  margin-bottom: 20px;
}

.response__name {
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
  line-height: 1.3;
}

.response__rating {
  display: flex;
  gap: 5px;
}

.response__ic {
  width: 15px;
  height: 15px;
}

.response__date {
  color: #5F5F5F;
  margin-bottom: 20px;
  display: flex;
}

.response__date span {
  margin-left: 10px;
}

.response__item {
  margin-bottom: 20px;
}

.response__item p {
  font-size: 18px;
}

@media only screen and (max-width: 1200px) {
  .response {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 578px) {
  .response {
    padding: 5px;
  }

  .response__text {
    font-size: 15px;
  }

  .response__name {
    font-size: 15px;
  }

  .response__date {
    font-size: 15px;
  }

  .response__item p {
    font-size: 15px;
  }

  .order1 {
    order: 1;
  }

  .order2 {
    order: 2;
  }
}

.groups_nav {
  display: flex;
  justify-content: start;
  margin-bottom: 30px;
}

.groups_ic {
  width: 10px;
  height: 16px;
  fill: #E5D7C4;
}

.relatives-slider-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
}

.relatives-slider-btn:hover {
  background: #E5D7C4;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.relatives-slider-btn:hover .groups_ic {
  fill: #fff;
}

.accordion-header {
  background-color: rgba(230, 238, 242, 0.2705882353);
  padding: 20px 45px 20px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  line-height: 1.3;
  color: #2C2C2C;
}

.accordion-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
  background: #A1B5C1;
  border-radius: 50%;
}

.accordion-arrow.active {
  transform: translateY(-50%) rotate(90deg);
  background: #E5D7C4;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  line-height: 1.3;
  color: #5F5F5F;
  padding-left: 20px;
}

.accordion-content p {
  margin: 0;
  padding: 10px;
}

.active .accordion-header {
  font-weight: 700;
  color: #988975;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  padding: 60px 0;
  background: #fff;
  color: #5F5F5F;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__desc {
  line-height: 1.3;
  margin-bottom: 20px;
}

.footer__time {
  margin-bottom: 20px;
}

.footer__btn {
  padding: 20px 30px;
  background: #E5D7C4;
  box-shadow: 0px 0px 4px 4px rgba(255, 255, 255, 0.25) inset;
  border-radius: 80px;
  text-transform: none;
  border: none;
  margin-bottom: 20px;
}

.footer__wrp {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer__social {
  display: flex;
  margin-right: 15px;
}

.footer__icon {
  background: #DCCBB5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 40px;
  height: 40px;
}

.footer__icon:not(:last-child) {
  margin-right: 10px;
}

.footer__ic {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.footer__phone {
  color: #2C2C2C;
  margin-top: 15px;
}

.footer__phone:hover {
  color: #2C2C2C;
}

.footer__menu {
  margin-bottom: 20px;
}

.footer__li {
  margin-bottom: 13px;
}

.footer__a {
  display: block;
  color: #5F5F5F;
}

.footer__a:hover {
  color: #988975;
}

.footer__title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__info {
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.9;
}

.delosait {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 0;
  color: #5F5F5F;
}

.delosait__ic {
  width: 12px;
  height: 12px;
  fill: rgb(206, 7, 7);
  margin: 0 5px 0 5px;
}

.delosait a {
  color: #5F5F5F;
}

.delosait a:hover {
  color: #2C2C2C;
}

@media only screen and (max-width: 576px) {
  .delosait {
    justify-content: start;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
  flex-shrink: 0;
}

.nav__link {
  color: #5F5F5F;
  font-size: 16px;
}

.nav__link:hover {
  color: #988975;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}

.dropdown-list__link:hover {
  color: #A1B5C1;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }

  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}

.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }

  .mobile-back {
    display: block;
  }

  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }

  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }

  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-submenu__list-item {
    padding: 0;
  }

  .nav__link {
    border-bottom: 1px solid #ececec;
  }

  .nav__link::after {
    transform: rotate(-90deg);
  }

  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }

  .dropdown-submenu__title {
    padding: 0 30px;
  }

  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }

  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }

  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }

  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }

  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }

  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}

.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}

.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}

@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 14px;
  }

  .nav__item:not(:last-child) {
    margin-right: 20px;
  }
}

#mainCarousel {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #000;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
    0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  text-align: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainCarousel .carousel__slide img {
  display: block;
  max-width: 100%;
  height: auto;
  border-style: none;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

#mainCarousel .carousel__button.is-prev {
  left: 0;
}

#mainCarousel .carousel__button.is-next {
  right: 0;
}

#mainCarousel .carousel__button:focus {
  outline: none;
  box-shadow: none;
}

#mainCarousel {
  margin-bottom: 20px;
}

#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 96px;
  height: 64px;
  overflow: hidden;
}

#thumbCarousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

#thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #mainCarousel .carousel__slide {
    height: auto;
  }

  #mainCarousel .carousel__button.is-prev {
    display: none;
  }

  #mainCarousel .carousel__button.is-next {
    display: none;
  }
}

.service__subcategories ul li a {
  color: #5F5F5F;

}

.service__subcategories ul li a:hover {
  color: #988975;
  text-decoration: underline;
}

.service-image {
  width: 100%;
  height: 300px;
}

.service__slider {
  margin-bottom: 20px;
}

@media only screen and (max-width: 568px) {
  .service-image {
    width: 100%;
    height: 200px;
  }

}

.haction_slide {
  height: auto !important;
}

.haction {
  height: 100%;
  background: #E6EEF2;
  box-shadow: 0 15px 20px #38383814;
}

.actions-block {
  background: #fbf2e6;
}

.btn.disabled {
  background: #e5d7c4b6;
  border: 1px solid #e5d7c4b6;
  box-shadow: 0px 0px 6.76254px 5.63545px rgba(255, 255, 255, 0.25) inset;
}

.link {
  color: #978264;
  text-decoration: underline;

}

.eye {
  position: relative;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  align-self: start;
  cursor: pointer;
  height: auto;
  border-radius: 4px 0 0 4px;
  background: #978264;
  padding: 15px 10px;
}

.eye span {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;

}

