
/* =============== PAGE neurology ================= */

/* -------- section main-banner-neurology --------- */

.main-banner-neurology .container {
  padding: 0;
  background: linear-gradient(#fff 10px, #f8f8f8 60px);
}

.main-banner-neurology-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 40px 20px;
}

.main-banner-neurology-title h1 {
  font-family: 'Ysabeau SC', sans-serif;
  color: #d4a661;
  font-size: 2.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px #777;
  text-align: center;
}

.main-banner-neurology-title span {
  font-size: 1.2rem;
  text-align: center;
}

.main-banner-neurology-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.bnNeurologyItem img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 990px) {
  .main-banner-neurology-title {
    padding: 80px;
    flex-direction: row;
  }

  .main-banner-neurology-title h1 {
    font-size: 3rem;
    font-weight: bold;
    width: 50%;
    text-align: right;
    padding-right: 15px;
    border-right: 10px solid #777;
  }

  .main-banner-neurology span {
    width: 50%;
    text-align: left;
    padding-top: 17px;
  }

  .main-banner-neurology-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

/* ------------- section intro-neurology ------------ */

.container-intro-neurology {
  background-color: #f8f8f8;
}

.intro-neurology-text {
  font-size: 1.3rem;
  text-align: left;
  padding: 20px 0;
  border-top: 5px solid #777;
  border-bottom: 5px solid #777;
}

@media (min-width: 990px) {
  .container-intro-neurology {
    padding: 60px 0 60px;
  }

  .intro-neurology-text {
    width: 50%;
    margin: 0 auto;
    text-align: justify;
  }
}

/* -------- section offer-neurology --------- */

.container-offer-neurology {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  background-color: #f8f8f8;
}

.offer-neurology-title {
  font-size: 1.4rem;
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: #cd2122;
  text-shadow: 2px 2px 4px #777;
}

.offer-neurology ul {
  padding: 0;
  text-align: left;
}

.offer-neurology li {
  font-size: 1.2rem;
  border-bottom: 1px solid #cd2122;
  padding: 10px 0;
  font-style: italic;
}

.offer-neurology li:last-child {
  border-bottom: none;
}

@media (min-width: 990px) {
  .container-offer-neurology {
    padding-bottom: 40px;
  }

  .offer-neurology-title {
    font-size: 1.8rem;
  }

  .offer-neurology ul {
    width: 50%;
  }
}

/* -------- section need-neurology --------- */

.container-need-neurology {
  padding: 40px 0;
  background-image: linear-gradient(#f1f1f1 90%, #fff 95%);
}

.need-neurology-title {
  padding: 40px 20px 0 20px;
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Ysabeau SC', sans-serif;
  color: #555;
  text-shadow: 2px 2px 4px #777;
}

.need-neurology-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background-color: #cd2122;
  padding: 20px;
  color: #fff;
  border: 3px solid #fff;
}

.need-neurology-text-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.need-neurology-text {
  text-align: justify;
  padding: 10px 0;
}

.need-neurology-text:nth-child(2) {
  border-top: 1px solid #fff;
}

.need-neurology-list {
  padding: 0 20px;
}

.need-neurology-list li {
  display: flex;
  justify-content: left;
  gap: 15px;
  text-align: left;
  line-height: 1.6rem;
  padding-bottom: 20px;
}

.need-neurology-list li::before {
  content: "\f0a3";
  font-family: FontAwesome;
  font-size: 16px;
  font-style: normal;
  color: #d4a661;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.need-neurology-warning {
  padding: 0 20px 60px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  font-size: 1.2rem;
}

.need-neurology-warning::before {
  content: url(assets/svg/triangle-warning.svg);
  display: flex;
  align-items: center;
}

@media (min-width: 770px) {
  .need-neurology-title {
    padding: 80px 40px 60px 40px;
  }

  .need-neurology-list {
    width: 80%;
    padding: 0;
    margin: 0 auto;
    font-size: 1.2rem;
  }

  .need-neurology-list li {
    gap: 25px;
  }

  .need-neurology-banner {
    width: 80%;
    margin: 0 auto;
    flex-direction: row;
    background-color: transparent;
    color: #cd2122;
  }

  .need-neurology .banner-icon {
    padding: 18px;
  }

  .need-neurology-text:nth-child(2) {
    border-top: 2px solid #cd2122;
  }

  .need-neurology-warning {
    width: 80%;
    margin: 60px auto 80px;
    justify-content: center;
    font-size: 1.4rem;
    padding: 20px 40px;
    border: 3px solid #fff;
    border-radius: 46px;
  }
}

@media (min-width: 990px) {
  .container-need-neurology {
    padding-top: 80px;
  }

  .need-neurology-text {
    font-size: 1.2em;
  }
}

/* ---------- therapy-stages ------------ */

.wrapper-therapy-stages {
  display: flex;
  flex-direction: column;
  padding: 60px 20px 80px;
  gap: 20px;
  background:
    linear-gradient(63deg, #262626 23%, transparent 23%) 7px 0,
    linear-gradient(63deg, transparent 74%, #262626 78%),
    linear-gradient(63deg, transparent 34%, #262626 38%, #262626 58%, transparent 62%),
    #222;
  background-size: 16px 48px;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.therapy-stages-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.title-therapy-stages {
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  letter-spacing: 1px;
  color: #fff;
  padding: 40px 0;
  text-shadow: 2px 2px 4px #000;
}

.therapy-stage {
  width: 300px;
  height: 350px;
  padding: 20px;
  background-color: #fff;
  transition: 0.7s all ease 0s;
}

.therapy-stage-border {
  border: 1px solid #cd2122;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.therapy-stage-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.therapy-stage-header svg {
  fill: #d4a661;
  width: 50px;
  height: 50px;
  transition: 0.7s all ease 0s;
}

.therapy-stage-name {
  font-family: 'Ysabeau SC', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #cd2122;
}

.therapy-stage-decor {
  width: 100%;
}

.therapy-stage-decor div {
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #fff 10%, #555 50%, #fff 90%);
  margin: 1px;
  transition: 0.7s all ease 0s;
}

.therapy-stage-text {
  font-size: 1.1em;
  text-align: justify;
  padding-top: 20px;
  color: #555;
}

.therapy-stage-link {
  text-transform: uppercase;
  background-color: #cd2122;
  border: 2px solid transparent;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 40px;
  text-wrap: nowrap;
  transition: 0.7s all ease 0s;
}

.therapy-stage-link:hover {
  border-color: #fff;
}

.therapy-stage-send:hover {
  background-color: #cd2122;
  color: #fff;
}

.therapy-stage-send:hover .therapy-stage-name {
  color: #fff;
  transition: 0.7s all ease 0s;
}

.therapy-stage-send:hover .therapy-stage-header svg {
  fill: #fff;
}

.therapy-stage-send:hover .therapy-stage-border {
  border-color: #fff;
}

.therapy-stage-send:hover .therapy-stage-link {
  background-color: #333;
}

.therapy-stage-send:hover .therapy-stage-decor div {
  background-image: linear-gradient(to right, #cd2122 10%, #fff 50%, #cd2122 90%);
}

@media (min-width: 1100px) {
  .wrapper-therapy-stages {
    padding: 80px 20px 100px;
    gap: 40px;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  }

  .therapy-stages-list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }

  .therapy-stage {
    width: 350px;
    height: 350px;
  }
}

/* -------- section consultation-neurology --------- */

.consultation-neurology-title {
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px #777;
}

.consultation-neurology-title span {
  color: #555;
  font-size: 1.4rem;
  font-style: italic;
  text-transform: none;
  line-height: 1.5;
}

.consultation-neurology-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.consultation-neurology-left-panel p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
}

.consultation-neurology-left-panel td:nth-child(1) {
  display: none;
}

.consultation-neurology-left-panel td:nth-child(2) {
  border-bottom: 2px solid #d4a661;
}

.consultation-neurology-right-panel {
  text-align: justify;
  padding: 20px;
  border: 2px solid #d4a661;
  border-radius: 20px;
  background-color: #eee;
}

.consultation-neurology-left-panel ul {
  padding: 0;
}

.consultation-neurology-left-panel li {
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #d4a661;
}

.consultation-neurology-left-panel li::before {
  content: url(assets/svg/checkbox.svg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 990px) {
  .consultation-neurology-title {
    font-size: 1.8rem;
  }

  .consultation-neurology-title span {
    font-size: 1.6rem;
  }

  .consultation-neurology-wrapper {
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
  }

  .consultation-neurology-left-panel {
    width: 60%;
    padding-right: 20px;
  }

  .consultation-neurology-left-panel p {
    font-size: 1.3rem;
  }

  .consultation-neurology-left-panel td:nth-child(1) {
    display: table;
    padding-right: 20px;
  }

  .consultation-neurology-right-panel {
    width: 40%;
  }
}

/* -------- section examination-neurology --------- */

.examination-neurology-title {
  text-transform: none;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
}

.examination-neurology-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.examination-neurology-item {
  display: flex;
  width: 350px;
  height: 233px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  outline: 20px solid #ddd;
}

.examination-neurology-item p {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
}

#exNeuroIt1 {
  background-image: url(assets/img/neurology-ex-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt2 {
  background-image: url(assets/img/neurology-ex-2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt3 {
  background-image: url(assets/img/neurology-ex-3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt4 {
  background-image: url(assets/img/neurology-ex-4.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt5 {
  background-image: url(assets/img/neurology-ex-5.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt6 {
  background-image: url(assets/img/neurology-ex-6.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt7 {
  background-image: url(assets/img/neurology-ex-7.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt8 {
  background-image: url(assets/img/neurology-ex-8.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#exNeuroIt9 {
  background-image: url(assets/img/neurology-ex-9.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 770px) {
  .examination-neurology-title {
    font-size: 1.4rem;
  }

  .examination-neurology-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* -------- section appointment-neurology --------- */

.container-appointment-neurology {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.appointment-neurology-title {
  font-size: 1.2rem;
  font-family: 'Ysabeau SC', sans-serif;
  padding: 20px 0;
  color: #d4a661;
}

.appointment-neurology p {
  padding: 20px 0;
}

@media (min-width: 770px) {
  .appointment-neurology-title {
    width: 60%;
    font-size: 1.4rem;
    line-height: 1.3;
    font-family: 'Ysabeau SC', sans-serif;
    padding: 20px 0;
    color: #d4a661;
  }

  .appointment-neurology p {
    padding: 10px 0 40px;
    font-size: 1.2rem;
  }
}

/* ================ PAGE neurosurgery ================= */

/* -------- section neurosurgery-main-banner --------- */

.main-banner-neurosurgery .container {
  padding: 0;
  background: linear-gradient(#fff 10px, #f1f1f1 60px);
}

.neurosurgery-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 40px 20px;
}

.neurosurgery-title h1 {
  font-family: 'Ysabeau SC', sans-serif;
  color: #d4a661;
  font-size: 2.5em;
  line-height: 1.1;
  text-shadow: 2px 2px 4px #777;
  text-align: center;
}

.neurosurgery-title span {
  font-size: 1.4em;
  text-align: center;
}

.main-banner-neurosurgery-wrapper {
  width: 100%;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
}

.bnNeurosrgItem:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
}

.bnNeurosrgItem:nth-child(2) {
  grid-column: 4 / 6;
  grid-row: 1 / 2;
}

.bnNeurosrgItem:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.bnNeurosrgItem:nth-child(4) {
  grid-column: 3 / 6;
  grid-row: 2 / 3;
}

.bnNeurosrgItem img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 990px) {
  .neurosurgery-title {
    padding: 80px;
    flex-direction: row;
  }

  .neurosurgery-title h1 {
    font-size: 3em;
    font-weight: bold;
    width: 50%;
    text-align: right;
    padding-right: 15px;
    border-right: 10px solid #777;
  }

  .neurosurgery-title span {
    width: 50%;
    text-align: left;
    padding-top: 17px;
  }

  .main-banner-neurosurgery-wrapper {
    grid-template-columns: 3fr 2fr 3fr;
    grid-template-rows: 1fr;
  }

  .bnNeurosrgItem:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .bnNeurosrgItem:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .bnNeurosrgItem:nth-child(3) {
    display: none;
  }

  .bnNeurosrgItem:nth-child(4) {
    grid-column: 3 /4;
    grid-row: 1 / 2;
  }

}

/* ------ section intro-neurosurgery ------ */

.container-intro-neurosurgery {
  background-color: #f1f1f1;
}

.intro-neurosurgery-text {
  font-size: 1.3em;
  text-align: left;
  padding: 20px 0;
  border-top: 5px solid #777;
  border-bottom: 5px solid #777;
}

@media (min-width: 990px) {
  .container-intro-neurosurgery {
    padding: 60px 0 100px;
  }

  .intro-neurosurgery-text {
    width: 50%;
    margin: 0 auto;
    text-align: justify;
  }
}


/* ------ section neurosurgery-experience ------ */

.neurosurgery-methods-background {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-image: linear-gradient(#f1f1f1, #fff);
}

.container-neuro-experience {
  background-color: #f1f1f1;
}

.neuro-experience .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #cd2122;
  text-shadow: 2px 2px 4px #777;
}

.neuro-experience ul li {
  list-style: square outside;
}

.neuro-experience .whiteboard-cell {
  grid-template-columns: 60px auto;
}

.whiteboard-cell-icon-e66c::before {
  content: "\e66c";
  font-size: 50px;
}

@media (min-width: 770px) {
  .neuro-experience .section-title {
    font-size: 2.6rem;
    padding-bottom: 80px;
  }
}

@media (min-width: 1100px) {
  .neuro-experience .whiteboard-img {
    grid-row: 1/3;
  }

  .container-neuro-experience {
    padding-bottom: 140px;
  }

  .neuro-experience .section-title::before,
  .neuro-experience .section-title::after {
    content: " ";
    width: 110px;
    height: 2px;
    border: 1px solid #d4a661;
  }
}

/* ------ section neurosurgery-methods ------ */

.container-neurosurgery-methods {
  padding: 0 20px 40px;
  background:
    linear-gradient(63deg, #262626 23%, transparent 23%) 7px 0,
    linear-gradient(63deg, transparent 74%, #262626 78%),
    linear-gradient(63deg, transparent 34%, #262626 38%, #262626 58%, transparent 62%),
    #222;
  background-size: 16px 48px;
}

.neurosurgery-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.neurosurgery-methods-title {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 1.8px;
  padding: 40px 0;
}

.neurosurgery-cell-text {
  color: #222;
  font-size: 1.2em;
  font-weight: 500;
}

.neurosurgery-cell h4 {
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 10px;
}

.neurosurgery-cell {
  padding: 15px;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  transition: all 1s ease 0s;
}

.neurosurgery-cell-border {
  border: 2px solid #cd2122;
  height: 100%;
  padding: 10px;
}

.neurosurgery-cell:hover {
  background-color: #cd2122;
}

.neurosurgery-cell:hover .neurosurgery-cell-text,
.neurosurgery-cell:hover .neurosurgery-cell-icon::before {
  color: #fff;
}

.neurosurgery-cell:hover .neurosurgery-cell-border {
  border-color: #fff;
}

.neurosurgery-cell:hover .neurosurgery-cell-icon::before {
  border-bottom: 2px solid #fff;
}

.neurosurgery-cell-icon::before {
  content: "\e69d";
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #cd2122;
  border-bottom: 2px solid #cd2122;
  font-size: 45px;
  padding: 15px;
}

@media (min-width: 770px) {
  .container-neurosurgery-methods {
    padding: 80px 20px 120px;
    clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0 100%);
  }

  .neurosurgery-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .neurosurgery-methods-title {
    font-size: 2rem;
  }
}

@media (min-width: 1100px) {
  .container-neurosurgery-methods {
    padding: 140px 20px 200px;
    clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0 100%);
  }
}

/* ------ section neurosurgery-symptoms ------ */

.container-neuro-symptoms {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}

.neuro-symptoms .section-title {
  font-size: 1.4rem;
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px #777;
}

.neuro-symptoms p {
  text-align: left;
  font-size: 1.1em;
  padding-top: 15px;
}

.neuro-symptoms-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-left: 0;
}

.title-neuro-symptoms {
  font-size: 1.25rem;
  padding: 30px 0;
}

.neuro-symptoms-list li {
  text-align: left;
  font-size: 1.1rem;
  color: #777;
}

.neuro-symptoms-list li::before {
  content: "\f101";
  font-family: FontAwesome;
  color: #cd2122;
  font-size: 18px;
  font-weight: bold;
  padding-right: 10px;
}

@media (min-width: 990px) {
  .container-neuro-symptoms {
    padding-top: 60px;
    padding-bottom: 140px;
  }

  .neuro-symptoms .section-title {
    font-size: 1.6rem;
  }

  .neuro-symptoms-list li {
    font-size: 1.2rem;
    padding: 5px 0;
  }

  .neuro-symptoms p {
    font-size: 1.2rem;
    padding-top: 40px;
  }
}

@media (min-width: 1100px) {
  .container-neuro-symptoms {
    align-items: center;
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .neuro-symptoms .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
  }

  .neuro-symptoms-list {
    width: 80%;
  }

  .neuro-symptoms p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    width: 80%;
    color: #d4a661;
  }

  .neuro-symptoms p::before {
    content: url(assets/svg/triangle-warning.svg);
  }
}

/* ------ section neurosurgery-appointment ------ */

.neuro-appointment-bg {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  background-image: url('assets/img/bg-neurosurgery-appointment.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  h3 {
    padding-left: 20px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
  }
}

.container-section-neuro-appointment {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.form-neurosurgery-appointment {
  background-color: transparent;
  backdrop-filter: blur(5px);

  input,
  textarea {
    color: #fff;
    background-color: transparent;
  }

  .form-check-text,
  input::placeholder,
  textarea::placeholder {
    color: #fff;
  }
}

/* ------ section neurosurgery-explanation ------ */

.container-neuro-explanation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.neuro-explanation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px
}

.neuro-explanation-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  align-items: center;
  padding: 20px 0;
}

.neuro-explanation-title::before {
  display: inline-block;
  content: url(assets/svg/triangle.svg);
}

.neuro-explanation-text {
  font-size: 1.1rem;
  text-align: center;
  color: #333;
}

@media (min-width: 1100px) {
  .container-neuro-explanation {
    flex-direction: row;
    gap: 80px;
    padding: 80px 20px;
    justify-content: center;
    align-items: flex-start;
  }

  .neuro-explanation-title {
    line-height: 1.3;
  }

  .neuro-explanation-item {
    width: clamp(300px, 100%, 350px);
  }
}

/* ------ section neurosurgery-banner ------ */

.container-neurosurgery-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cd2122;
  padding: 20px;

}

.neurosurgery-banner-border {
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px;
  color: #fff;

  .banner-icon {
    margin: 10px;
    animation: flashing 4s infinite;
  }
}

.neurosurgery-banner-text-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.neurosurgery-banner-text {
  text-align: justify;
  padding: 10px 0;
}

.neurosurgery-banner-list {
  border-top: 1px solid #fff;
  margin: 0;
  padding-left: 20px;

  li {
    font-style: italic;
    text-align: left;
    list-style: square;
    padding: 5px 0;
  }
}

@media (min-width: 770px) {
  .container-neurosurgery-banner {
    width: 1400px;
    max-width: 100%;
  }

  .neurosurgery-banner-border {
    flex-direction: row;
    width: 100%;
  }

  .neurosurgery-banner-text {
    padding-top: 0;
    font-size: 1.4rem;
  }

  .neurosurgery-banner-list {
    border: none;
  }
}

/* ------ section neurosurgery-online ------ */

.container-neurosurgery-online {
  padding-top: 30px;
}

.neurosurgery-online-offer {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}

.neurosurgery-online-offer-left {
  h3 {
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: normal;
    font-size: 1.6em;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px #777;
  }
}

.neurosurgery-online-offer-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neurosurgery-online-offer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    padding: 20px;
    border-top: 2px solid #d4a661;
    border-bottom: 2px solid #d4a661;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  p {
    font-size: 1.2rem;
    color: #333;
  }

  a {
    display: inline-block;
    width: 100%;
    padding: 15px 40px;
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    border-width: 4px;
    border-style: solid;
    border-color: #cd2122;
    color: #cd2122;
    --angle: 120deg;
    border-image: conic-gradient(from var(--angle), var(--r7), var(--r6), var(--r5), var(--r4), var(--r3), var(--r2), var(--r1), var(--r8));
    border-image-slice: 1;
    border-image-repeat: stretch;
    animation: borderRotate 3s linear infinite forwards;
    transition: all 0.5s;
  }

  a:hover {
    background-color: #cd2122;
    color: #fff;
  }
}

@keyframes borderRotate {
  to {
    --angle: 480deg
  }
}

@media (min-width: 770px) {
  .container-neurosurgery-online {
    padding-top: 60px;
  }

  .neurosurgery-online-offer-wrapper {
    width: 80%;

    a {
      padding: 15px 80px;
    }
  }
}

@media (min-width: 990px) {
  .container-neurosurgery-online {
    padding-top: 20px;
    /*padding-bottom: 40px;*/
  }

  .neurosurgery-online-offer {
    flex-direction: row;
    padding: 80px 0 40px 0;
  }

  .neurosurgery-online-offer-left {
    width: 50%;
    border-right: 8px solid #d4a661;

    h3 {
      padding: 40px;
      text-align: right;
    }
  }

  .neurosurgery-online-offer-right {
    width: 50%;
  }

  .neurosurgery-online-offer-wrapper {
    img {
      border: none;
    }
  }
}

/* ------ section neurosurgery-consultation ------ */

.neuro-consultation {
  background-image: linear-gradient(#fff, #f1f1f1);

  .section-title {
    color: #d4a661;
  }
}

.neuro-consultation-intro {
  font-size: 1.25rem;
}

.neuro-consultation-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: space-evenly;

}

[class^="neuro-consultation-item-"] {
  display: flex;
  position: relative;
  width: 300px;
  height: 300px;
  padding: 18px;
  align-items: flex-end;
}

[class^="neuro-consultation-item-"]::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  border: 12px solid #cd2122;
  transform: scale(0);
  transition: all 0.8s ease 0s;
}

[class^="neuro-consultation-item-"]:hover::before {
  transform: scale(1);
}

[class^="neuro-consultation-item-"]:hover .neuro-consultation-text {
  transform: scale(1);
  transform: translateY(-100px);
  color: #fff;
}

.neuro-consultation-item-analis {
  background-image: url(assets/img/medical-analis_350.webp);
  background-size: cover;
}

.neuro-consultation-item-examination {
  background-image: url(assets/img/medical-examination_350.webp);
  background-size: cover;
}

.neuro-consultation-item-diagnosis {
  background-image: url(assets/img/medical-diagnosis_350.webp);
  background-size: cover;
}

.neuro-consultation-item-scheme {
  background-image: url(assets/img/medical-scheme_350.webp);
  background-size: cover;
}

.neuro-consultation-text {
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
  transition: all 0.8s ease 0s;
  transform: scale(0.8);
}

@media (min-width: 770px) {
  .neuro-consultation {
    .section-title {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
  }

  .neuro-consultation .section-title::before,
  .neuro-consultation .section-title::after {
    display: inline-block;
    content: " ";
    width: 110px;
    height: 2px;
    border: 1px solid #d4a661;
  }

  .neuro-consultation-intro {
    font-size: 1.4rem;
    padding-bottom: 30px;
    font-style: italic;
  }
}

/* ================ PAGE REHABILITATION ================= */

/* ------------- section main-banner-rehab -------------- */

.main-banner-rehab .container {
  padding: 0;
  background: linear-gradient(#fff 10px, #f1f1f1 60px);
}

.main-banner-rehab-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 40px 20px;
}

.main-banner-rehab-title h1 {
  font-family: 'Ysabeau SC', sans-serif;
  color: #d4a661;
  font-size: 2.5em;
  line-height: 1.1;
  text-shadow: 2px 2px 4px #777;
  text-align: center;
}

.main-banner-rehab-title span {
  font-size: 1.4em;
  text-align: center;
}

.main-banner-rehab-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.bnRehabItem img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 990px) {
  .main-banner-rehab-title {
    padding: 80px;
    flex-direction: row;
  }

  .main-banner-rehab-title h1 {
    font-size: 3em;
    font-weight: bold;
    width: 50%;
    text-align: right;
    padding-right: 15px;
    border-right: 10px solid #777;
  }

  .main-banner-rehab-title span {
    width: 50%;
    text-align: left;
    padding-top: 17px;
  }

  .main-banner-rehab-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

/* ------------- section intro-rehab ------------ */

.container-intro-rehab {
  background-color: #f1f1f1;
}

.intro-rehab-text {
  font-size: 1.3em;
  text-align: left;
  padding: 20px 0;
  border-top: 5px solid #777;
  border-bottom: 5px solid #777;
}

@media (min-width: 990px) {
  .container-intro-rehab {
    padding: 60px 0 100px;
  }

  .intro-rehab-text {
    width: 50%;
    margin: 0 auto;
    text-align: justify;
  }
}

/* ------------- section sistem-rehab ------------ */

.container-sistem-rehab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.sistem-rehab-title {
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px #777;
}

.sistem-rehab-title span {
  color: #555;
  font-size: 1.4rem;
  line-height: 1.5;
}

.sistem-rehab-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sistem-rehab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 40px 20px;
}

.sistem-rehab-item-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  align-items: center;
  padding: 40px 0;
}

.sistem-rehab-item-title::before {
  display: inline-block;
  content: url(assets/svg/triangle.svg);
}

.sistem-rehab-item-text {
  font-size: 1.2rem;
}

@media (min-width: 990px) {
  .sistem-rehab-title {
    font-size: 1.8rem;
  }

  .sistem-rehab-title span {
    font-size: 1.6rem;
  }

  .sistem-rehab-list {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .sistem-rehab-item {
    width: clamp(300px, 100%, 350px);
  }
}

/* ------------- section need-rehab ------------ */

.need-rehab-background {
  background: linear-gradient(#f8f8f8, #fff);
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
}

.container-need-rehab {
  padding: 80px 20px;
  margin: 0 auto;
  background:
    linear-gradient(63deg, #262626 23%, transparent 23%) 7px 0,
    linear-gradient(63deg, transparent 74%, #262626 78%),
    linear-gradient(63deg, transparent 34%, #262626 38%, #262626 58%, transparent 62%),
    #222;
  background-size: 16px 48px;
  clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0 100%);
}

.need-rehab-border {
  padding-bottom: 20px;
}

.need-rehab-title {
  padding: 40px 20px;
  font-size: 1.2em;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.need-rehab p {
  text-align: justify;
  font-size: 1.2em;
  font-weight: 400;
  color: #eee;
  font-style: italic;
}

.need-rehab-list ul {
  padding-left: 20px;
}

.need-rehab-list li {
  color: #eee;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  font-style: italic;
  letter-spacing: 0.7px;
  line-height: 25px;
  padding-bottom: 15px;
}

.need-rehab-list li::before {
  content: "\f0a3";
  font-family: FontAwesome;
  font-size: 13px;
  font-style: normal;
  color: #fff;
  padding-right: 10px;
}

@media (min-width: 770px) {
  .need-rehab-background {
    padding-top: 60px;
  }

  .container-need-rehab {
    padding: 100px 20px;
  }

  .need-rehab-border {
    width: 90%;
    margin: 0 auto;
  }

  .need-rehab-title {
    font-size: 1.4em;
    line-height: 1.4;
    letter-spacing: 1.8px;
  }

  .need-rehab-list ul {
    padding-left: 40px;
  }

  .need-rehab p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.25em;
    padding-top: 20px;
  }

  .need-rehab p::before {
    content: url(assets/svg/triangle-warning.svg);
  }
}

@media (min-width: 990px) {
  .container-need-rehab {
    padding: 150px 0;
  }

  .need-rehab-border {
    width: 70%;
    margin: 0 auto;
  }

  .need-rehab-title {
    font-size: 1.8em;
  }
}

/* ------------- section directions-rehab ------------ */

.container-direct-rehab {
  padding-top: 40px;
}

.direct-rehab-item {
  padding-top: 40px;
}

.direct-rehab-title {
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  color: #cd2122;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px #777;
}

.direct-rehab-title span {
  color: #555;
  font-size: 1.4rem;
  line-height: 1.5;
}

.direct-rehab-item-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4a661;
}

.direct-rehab-item-text {
  font-size: 1.2rem;
  text-align: left;
  padding-top: 10px;
}

@media (min-width: 770px) {
  .container-direct-rehab {
    padding-top: 80px;
  }

  .direct-rehab-item-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .direct-rehab-item-title::before {
    content: url(assets/svg/notes-medical.svg);
    display: flex;
    align-items: center;
  }
}

@media (min-width: 990px) {
  .direct-rehab-list {
    width: 80%;
    margin: 0 auto;
  }
}

/* ------------- section methods-rehab ------------ */

.methods-rehab-title {
  padding-bottom: 40px;
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: bold;
  color: #cd2122;
}

.methods-rehab-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  justify-items: center;
}

.methods-rehab-item {
  display: flex;
  align-items: center;
  position: relative;
  width: clamp(300px, 100%, 400px);
  height: 400px;
  padding: 20px;
  background-size: cover;
  border: 6px solid #d4a661;
}

#mri00 {
  background-image: url(assets/img/logo_200x200.png);
  display: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-color: #f8f8f8;
}

#mri11 {
  background-image: url(assets/img/rehab-meth-11.webp);
}

#mri14 {
  background-image: url(assets/img/rehab-meth-14.webp);
}

#mri15 {
  background-image: url(assets/img/rehab-meth-15.webp);
}

#mri17 {
  background-image: url(assets/img/rehab-meth-17.webp);
}

#mri18 {
  background-image: url(assets/img/rehab-meth-18.webp);
}

.methods-rehab-item-title {
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  transition: all 0.5s ease 0s;
}

.methods-rehab-item-text {
  font-size: 1.2rem;
  text-align: justify;
  transform: scale(0);
  transition: all 0.5s ease 0s;
}


@media (min-width: 990px) {
  .container-methods-rehab {
    padding-bottom: 100px;
  }

  .methods-rehab-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 80px;
  }

  .methods-rehab-title::before,
  .methods-rehab-title::after {
    display: inline-block;
    content: "";
    width: 200px;
    height: 5px;
    border-radius: 3px;
    background-color: #cd2122;
  }

  .methods-rehab-list {
    gap: 0;
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
  }

  .methods-rehab-item {
    border: none;
  }

  #mri00 {
    display: flex;
  }

  .methods-rehab-item::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    border: 6px solid #cd2122;
    transform: scale(0);
    transition: all 0.5s ease 0s;
  }

  .methods-rehab-item:hover>.methods-rehab-item-text {
    color: #fff;
    transform: scale(1);
  }

  .methods-rehab-item:hover>.methods-rehab-item-title {
    transform: translateY(-180px);
    opacity: 0;
  }

  .methods-rehab-item:hover::before {
    transform: scale(1);
  }
}

@media (min-width: 1240px) {
  .methods-rehab-list {

    grid-template-columns: repeat(3, 400px);
  }
}

/* ------------- section appointment-rehab ------------ */

.appointment-rehab {
  background: linear-gradient(#fff, #f1f1f1 30px);
}

.container-appointment-rehab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;

}

.appointment-rehab .section-title {
  font-size: 1.4rem;
  font-family: 'Ysabeau SC', sans-serif;
  padding: 20px 0;
  color: #d4a661;
}

.appointment-rehab p {
  padding: 10px 0;
  font-size: 1.2rem;
}

.appointment-rehab .link-button {
  margin: 40px 0 25px 0;
}

/* =================== PAGE MASSAGE ===================== */

/* ------------- section main-banner-massage ------------ */

.main-banner-massage-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.bnItem img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

#bnImg5,
#bnImg6,
#bnImg7,
#bnImg8,
#bnImg9,
#bnImg10 {
  display: none;
}

@media (min-width: 770px) {

  .main-banner-massage-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }

}

@media (min-width: 1500px) {

  #bnImg5,
  #bnImg6 {
    display: block;
  }

  .main-banner-massage-wrapper {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
  }

}

@media (min-width: 2400px) {

  #bnImg7 {
    display: block;
  }

  .main-banner-massage-wrapper {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
  }

}

@media (min-width: 2800px) {

  #bnImg8 {
    display: block;
  }

  .main-banner-massage-wrapper {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
  }

}

@media (min-width: 3200px) {

  #bnImg9 {
    display: block;
  }

  .main-banner-massage-wrapper {
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: 1fr;
  }

}

@media (min-width: 3600px) {

  #bnImg10 {
    display: block;
  }

  .main-banner-massage-wrapper {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: 1fr;
  }

}

/* ------------- section offer-massage ------------ */

.container-offer-massage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
}

.offer-massage-title {
  font-family: 'Tenor Sans', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.4em;
  letter-spacing: 1px;
  color: #555;
  text-shadow: 2px 2px 4px #777;
}

.offer-massage-title span {
  font-weight: bold;
  line-height: 1.5;
}

.massage-type {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0 0;
}

.massage-type-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.massage-type-name {
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bg4);
}

.massage-type-text {
  align-self: self-start;
  text-align: left;
}

@media (min-width: 600px) {
  .offer-massage-title {
    font-size: 1.6rem;
    padding: 20px 0;
  }
}

@media (min-width: 770px) {
  .container-offer-massage {
    gap: 40px;
  }

  .offer-massage-title {
    font-size: 1.8rem;
  }

  .offer-massage-title span {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
  }
}

@media (min-width: 990px) {
  .container-offer-massage {
    padding-bottom: 60px;
  }

  .offer-massage-title {
    font-size: 2rem;
  }

  .offer-massage-title span {
    font-size: 2.2rem;
  }

  .massage-type-img {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: 35%;
  }

  .massage-type {
    flex-direction: row;
    align-items: flex-start;
  }

  .massage-type:nth-child(2n + 1) {
    flex-direction: row-reverse;

    .massage-type-img {
      justify-content: flex-start;
    }
  }

  .massage-type-container {
    align-items: flex-start;
    /*margin-left: 20px;
    border-left: 5px solid #777;*/
  }

  .massage-type:nth-child(2n+1) .massage-type-container {
    /*margin-right: 20px;
    margin-left: 0;*/
    align-items: flex-end;
    /*border-left: none;
    border-right: 5px solid #777;*/
  }

  .massage-type-name {
    padding-top: 0;
  }

  .massage-type-text {
    text-align: left;
    padding: 0 20px;
  }
}

/* ------------- section about-massage ------------ */

.container-about-massage {
  padding: 0 0 50px 0;
}

.about-massage-title {
  padding: 0 0 20px 0;
  font-size: 1.5em;
  font-weight: bold;
  /*font-family: 'Ysabeau SC', sans-serif;*/
  color: #cd2122;
  text-shadow: 2px 2px 4px #777;
}

.about-massage-title-decor div {
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #fff 10%, #555 50%, #fff 90%);
  margin: 1px;
}

.about-massage-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.about-massage-text {
  text-align: justify;
  padding: 20px;
}

.about-massage-text p {
  font-size: 1.2em;
}

.about-massage-item {
  display: flex;
  flex-direction: column;
  padding: 5px 0 15px 0;
}

.about-massage-item-name {
  text-transform: uppercase;
  text-align: left;
  /*font-family: 'Ysabeau SC', sans-serif;*/
  font-size: 1.2em;
  font-weight: bold;
  color: #cd2122;
  letter-spacing: 0.7px;
  line-height: 26px;

  padding-bottom: 10px;
}

.about-massage-item-text {
  font-size: 1.1em;
  letter-spacing: 0.7px;
  line-height: 25px;
  color: #777777;
  text-align: left;
  border-left: 20px solid #ddd;
  padding-left: 20px;
}

@media (min-width: 770px) {
  .about-massage {
    padding-top: 30px;
  }

  .about-massage-title {
    font-size: 2rem;
  }

  .container-about-massage {
    padding-bottom: 60px
  }

  .about-massage-text {
    padding-top: 40px;
  }
}

@media (min-width: 990px) {
  .about-massage-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1100px) {
  .about-massage-text {
    padding-left: 100px;
    padding-right: 100px;
  }

  .about-massage-wrapper {
    padding-left: 300px;
    padding-right: 300px;
  }
}

/* ------------- section contraindications-massage ------------ */

.container-contraindications-massage {
  padding: 0 20px 20px 20px;
  clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0 100%);

  .article-title {
    border-top: none;
  }

  .list-title {
    text-align: left;
  }
}

@media (min-width: 770px) {

  .container-contraindications-massage {
    padding: 100px 0;
  }

  .contraindications-massage-border {
    width: 90%;
    margin: 0 auto;
  }
}

@media (min-width: 990px) {
  .container-contraindications-massage {
    padding: 150px 0;
  }

  .contraindications-massage-border {
    width: 80%;
    margin: 0 auto;
  }
}

/* ------------- section warning-massage ------------ */

.warning-massage {
  background-color: var(--bg1);
}

.container-warning-massage {
  padding: 70px 20px;
}

.warning-massage-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  /*background-color: #fff;*/
  padding: 20px;
  /*color: var(--bg4);*/
  border: 3px solid var(--rd1);
  border-radius: 10px;
}

.warning-massage-banner-text-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.warning-massage-banner-text-wrapper ul {
  padding: 0;
}

.warning-massage-banner-text-wrapper li {
  list-style: square inside;
}

@media (min-width: 770px) {
  .warning-massage-banner {
    width: 80%;
    margin: 0 auto;
    flex-direction: row;
    border: none;
    /*background-color: transparent;
    color: #cd2122;*/
  }

  .warning-icon {
    align-self: flex-start;
    padding: 5px;
    /*width: 40px;*/
    flex: 0 0 auto;
  }

  .warning-massage-banner-text-wrapper ul {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

@media (min-width: 990px) {
  .container-warning-massage {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .warning-massage-banner-text-wrapper ul,
  .warning-massage-banner-text-wrapper p {
    font-size: 1.2em;
  }
}

/* ------------- section promotion-massage ------------ */

.container-promotion-massage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;

}

.massage-bg {
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

@media (max-width: 800px) and (orientation: portrait) {
  .massage-bg {
    background-image: url(assets/img/zen-garden_800_port.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 800px) and (orientation: landscape) {
  .massage-bg {

    background-image: url(assets/img/zen-garden_800.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 801px) {
  .massage-bg {
    background-image: url(assets/img/zen-garden_1280.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 1200px) {
  .massage-bg {
    background-image: url(assets/img/zen-garden_1920.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 1900px) {
  .massage-bg {
    top: -300px;
    background-image: url(assets/img/zen-garden_2560.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 2500px) {
  .massage-bg {
    background-image: url(assets/img/zen-garden_3840.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.promotion-massage-text {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.4;
  text-align: justify;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.promotion-massage-image {
  display: flex;
  padding: 0 40px;
  align-items: center;
}

@media (min-width: 770px) {
  .container-promotion-massage {
    flex-direction: row;
    justify-content: space-around;
    padding: 200px 20px;
  }

  .promotion-massage-text {
    width: 50%;
  }
}

/* ------------- section faq-massage ------------ */

.container-faq-neuro,
.container-faq-massage {
  padding: 30px 20px 50px 20px;
}

.faq-neuro-rows,
.faq-massage-rows {
  font-size: 1.2rem;
  text-align: left;
}

.faq-neuro-rows summary,
.faq-massage-rows summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 2px solid #d4a661;
  transition: padding 0.5s;
}

.faq-row[open] summary {
  color: var(--bg4);
}

.faq-answer {
  background-color: var(--bg1);
  padding: 10px;
}

@media (min-width: 770px) {

  .container-faq-neuro,
  .container-faq-massage {
    padding: 60px 20px;
  }

  .faq-answer {
    padding: 20px;

    p {
      font-size: 1.2rem;
    }
  }
}

/* ------------- section appointment-massage ------------ */
.container-appointment-massage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  background: linear-gradient(#fff, #f1f1f1 30px);
}

.appointment-massage .section-title {
  font-family: 'Ysabeau SC', sans-serif;
  padding: 20px 0;
  color: #d4a661;
}

.appointment-massage p {
  padding: 10px 0;
  font-size: 1.2rem;
}

.appointment-massage .link-button {
  margin: 20px 0;
}

/* ============ PAGE consultation ========== */

/* ------ section consult-appointment ------ */
.consult-appointment .container {
  background-image: linear-gradient(to top, #ccc, #fff);
}

.consult-appointment .first-half p {
  font-size: 1.2rem;
  color: #555;
}

.consult-appointment .first-half table {
  padding: 20px 0;
}

.consult-appointment .first-half td {
  vertical-align: middle;
}

.consult-appointment td>*::before {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-variant: normal;
  color: #cd2122;
  font-weight: 500;
  font-size: 25px;
  padding-right: 15px;
  vertical-align: middle;
  text-align: center;
}

.consult-appointment .address::before {
  content: "\e6bb";
  width: 40px;
}

.consult-appointment .work-schedule::before {
  content: "\e66b";
}

.consult-appointment .start-price::before {
  content: "\e647";
}

/* ------ section personal-reception ------ */
.personal-reception {
  font-size: 1.1rem;
}

.personal-reception .container {
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

.reception-advantages li {
  display: inline-block;
}

.reception-advantages li::before {
  content: "\f054";
  margin-right: 10px;
  font-family: FontAwesome;
  font-size: 14px;
  color: #cd2122;
}

.personal-reception .second-half {
  text-align: left;
}

.wrapper-reception-content {
  margin-top: 40px;
}

.reception-content {
  padding-left: 15px;
}

.reception-content li {
  padding-left: 30px;
}

.reception-content li::marker {
  content: "\f0a3";
  font-family: FontAwesome;
  font-size: 14px;
  color: #cd2122;
}

.reception-content-title {
  font-size: 1.2rem;
  text-transform: uppercase;
}

@media (min-width: 1100px) {
  .personal-reception .first-half {
    text-align: right;
  }

  .wrapper-reception-content {
    border-left: 2px solid #cd2122;
    padding-left: 40px;
  }
}

/* ------ section needed-tests ------ */
.container-needed-tests {
  padding-top: 40px;
  background-color: #f1f1f1;
  font-size: 1.1rem;
  border: 2px solid #ccc;
}

.needed-tests-border {
  border: 2px solid #333;
  border-radius: 10px;
  padding: 15px;
}

.list-tests {
  display: inline-block;
  padding-left: 0;
  text-align: left;
}

.list-tests li::before {
  content: "\f0c8";
  font-family: FontAwesome;
  font-size: 14px;
  color: #cd2122;
  margin-right: 10px;
}

/* ======= PAGE consultation-online ============= */
.consult-online .container {
  background-image: linear-gradient(to top, #ccc, #fff);
}

.consult-online .second-half {
  justify-content: space-between;
}

.consult-online .second-half p {
  text-align: left;
  font-size: 1.1rem;
}

.container-sending-files {
  background-color: #ccc;
  text-align: left;
}

.container-sending-files p {
  font-size: .9em;
}

.container-sending-files h4 {
  display: inline-block;
  border-bottom: #333 solid 2px;
}

.container-sending-files p {
  padding-top: 15px;
}

.container-sending-files p::before {
  content: "\e647";
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-variant: normal;
  color: #cd2122;
  font-weight: 500;
  font-size: 20px;
  padding-right: 10px;
  vertical-align: middle;
  text-align: center;
}

/* ------ section online-content ------ */
.online-content p,
.online-content li {
  font-size: 1.1rem;
}

.online-content p {
  padding-top: 15px;
}

.online-content .container {
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

.online-content .second-half {
  text-align: left;
}

.wrapper-online-content {
  margin-top: 40px;
}

.online-content-list {
  padding-left: 15px;
}

.online-content-list li {
  padding-left: 30px;
}

.online-content-list li::marker {
  content: "\f0a3";
  font-family: FontAwesome;
  font-size: 14px;
  color: #cd2122;
}

.online-content-title {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.first-half .online-content-title {
  padding: 10px 20px;
  border: 2px solid #cd2122;
  border-radius: 5px;
  margin-top: 25px;
}

@media (min-width: 1100px) {
  .online-content .first-half {
    text-align: right;
    justify-content: space-around;
  }

  .wrapper-online-content {
    border-left: 2px solid #cd2122;
    padding-left: 40px;
  }
}

/* ------ section online-summery ------ */
.container-online-summary {
  padding-top: 40px;
  background-color: #f1f1f1;
  border: 2px solid #ccc;
}

.online-summary-border {
  border: 2px solid #333;
  border-radius: 10px;
  padding: 15px;
}

.online-summary p {
  font-size: 1.1rem;
}

.online-summary .link-button {
  margin: 40px 0;
}

/* ============ PAGE price ============ */

#aestheticsPrice,
#neuroPrice {
  height: 100%;
}

.prices {
  position: relative;
}

#neuroPrice .aestheticsPageTitle {
  background: none;
}

#aestheticsPrice .aestheticsPageTitle .section-title,
#neuroPrice .aestheticsPageTitle .section-title {
  top: 80%;
  color: var(--bg4);
}

.price-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  background-color: #f3f3f3;

  .article-title {
    border-top: none;
  }

  .container-link-button {
    width: 100%;
    text-align: center;
    padding: 0 20px 80px 20px;
  }
}

.price-subcategory-title {
  align-self: center;
  color: var(--rd1);
  padding: 20px 20px 10px 20px;
}

.price-category-add {
  padding: 0 20px 20px 20px;
  color: var(--bg4);
  text-transform: none;
}

#aestheticsPrice .aestheticsPageTitle::after,
#neuroPrice .aestheticsPageTitle::after,
.price-category::after {
  content: "";
  display: block;
  height: 65vh;
  width: 100%;
}

#aestheticsPrice .aestheticsPageTitle::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_0_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(1)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_1_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(2)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_2_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(3)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_3_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(4)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_4_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(5)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_5_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(6)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_6_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(7)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_7_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(8)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_8_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(9)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_9_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(10)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_10_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(11)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_11_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(12)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_12_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(13)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_13_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(14)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_14_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(15)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_15_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(16)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_16_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(17)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_17_800_600.webp") fixed no-repeat center / cover;
}

#aestheticsPrice .price-category:nth-child(18)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_aesth_18_800_600.webp") fixed no-repeat center / cover;
}

#neuroPrice .aestheticsPageTitle::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_neuro_0_800_600.webp") fixed no-repeat top / cover;
}

#neuroPrice .price-category:nth-child(1)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_neuro_1_800_600.webp") fixed no-repeat center / cover;
}

#neuroPrice .price-category:nth-child(2)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_neuro_2_800_600.webp") fixed no-repeat center / cover;
}

#neuroPrice .price-category:nth-child(3)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_neuro_3_800_600.webp") fixed no-repeat center / cover;
}

#neuroPrice .price-category:nth-child(4)::after {
  background: url("../templates/assets/img/video-mask.png") center center,
    url("../templates/assets/img/bg_prices_neuro_4_800_600.webp") fixed no-repeat center / cover;
}

@media (min-width: 1200px) {

  /*#aestheticsPrice .aestheticsPageTitle::after,
#neuroPrice .aestheticsPageTitle::after,
.price-category::after {
  height: 60vh;
}*/

  #aestheticsPrice .aestheticsPageTitle::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_0_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(1)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_1_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(2)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_2_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(3)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_3_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(4)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_4_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(5)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_5_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(6)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_6_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(7)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_7_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(8)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_8_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(9)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_9_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(10)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_10_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(11)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_11_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(12)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_12_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(13)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_13_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-categorie:nth-child(14)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_14_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(15)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_15_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(16)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_16_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(17)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_17_1280_960.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(18)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_18_1280_960.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .aestheticsPageTitle::after {
    background-image: url("../templates/assets/img/video-mask.png"),
      url("../templates/assets/img/bg_prices_neuro_0_1280_960.webp");
    background-position: 50% 30%;
    background-size: auto cover;
    background-repeat: repeat;
    background-attachment: scroll fixed;
  }

  #neuroPrice .price-category:nth-child(1)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_1_1280_960.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .price-category:nth-child(2)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_2_1280_960.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .price-category:nth-child(3)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_3_1280_960.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .price-category:nth-child(4)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_4_1280_960.webp") fixed no-repeat center / cover;
  }
}

@media (min-width: 1900px) {
  #aestheticsPrice .aestheticsPageTitle::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_0_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(1)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_1_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(2)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_2_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(3)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_3_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(4)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_4_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(5)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_5_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(6)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_6_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(7)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_7_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(8)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_8_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(9)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_9_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(10)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_10_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(11)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_11_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(12)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_12_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(13)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_13_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(14)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_14_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(15)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_15_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(16)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_16_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(17)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_17_1920_1440.webp") fixed no-repeat center / cover;
  }

  #aestheticsPrice .price-category:nth-child(18)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_aesth_18_1920_1440.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .aestheticsPageTitle::after {
    background-image: url("../templates/assets/img/video-mask.png"),
      url("../templates/assets/img/bg_prices_neuro_0_1920_1440.webp");
    background-position: 50% 30%;
    background-size: auto cover;
    background-repeat: repeat;
    background-attachment: scroll fixed;
  }

  #neuroPrice .price-category:nth-child(1)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_1_1920_1440.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .price-category:nth-child(2)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_2_1920_1440.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .price-category:nth-child(3)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_3_1920_1440.webp") fixed no-repeat center / cover;
  }

  #neuroPrice .price-category:nth-child(4)::after {
    background: url("../templates/assets/img/video-mask.png") center center,
      url("../templates/assets/img/bg_prices_neuro_4_1920_1440.webp") fixed no-repeat center / cover;
  }
}

.price-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 6px double var(--bg4);
  padding-bottom: 50px;
}

.price-category-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;

}

.price-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .9rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--font1);
}

.price-item-name,
.price-item-remark,
.price-item-cost {
  display: inline-block;
}

.price-item-name {
  text-align: left;
  text-transform: none;
}

.price-item-cost {
  padding-left: 0;
  /*width: 75px;
  flex-shrink: 0;*/
  text-align: right;
}

@media (min-width: 770px) {
  .price-list {
    width: 80%;
  }

  .price-subcategory-title {
    padding: 40px 20px 10px 20px;
  }

  .price-row {
    padding: 20px 0;
    font-size: 1rem;
  }
}

/* ============ PAGE contacts ============ */

.contacts-descr,
.contacts-map {
  background-color: #f3f3f3;
}

.container-contacts-descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 0;
  align-items: flex-start;
  /*background-image: linear-gradient(to top, #f1f1f1, #fff);*/
}

.wrapper-contacts-table {
  padding-top: 10px;
}

.contacts-descr hr {
  border: none;
  height: 1px;
  color: #aaa;
  background-color: #aaa;
}

.contacts-table-icon {
  padding-right: 15px;
}

.contacts-table-icon svg {
  width: 19px;
  height: 19px;
}

[class^="contacts-table-"] td {
  text-align: left;
}

.container-contacts-map {
  padding: 20px;
  background-color: #f3f3f3;
}

@media (min-width: 770px) {
  .container-contacts-descr {
    flex-direction: row;
  }
}

@media (min-width: 990px) {
  .container-contacts-descr {
    padding-top: 20px;
  }
}

/* ============ PAGE privacy ============ */

.main-privacy {
  padding-top: 80px;
}

.container-privacy-section-title {
  padding: 0;
  color: #fff;
  background-color: #555;
  box-shadow: 0 0 10px #aaa;
}

.privacy-main-banner {
  display: flex;
  background-color: #eee;
  padding: 20px 20px 0 20px;
}

.privacy-content {
  background-color: #eee;
  padding: 20px;
}

.container-privacy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 30px 20px;
  background-color: #fff;
  box-shadow: 0 0 10px #aaa;
}

.privacy-content-title {
  font-size: 1.5em;
  padding: 10px 0 5px;
}

.privacy-title-remark {
  font-size: 1.1em;
  align-self: flex-end;
  padding: 5px 20px 10px 20px;
}

.privacy-paragraph-title {
  padding: 10px 0;
}

.privacy-paragraph {
  align-self: start;
  text-align: left;
}

.privacy-paragraph li {
  list-style: square;
}

@media (min-width: 770px) {
  .container-privacy-content {
    padding: 80px 40px;
  }

  .privacy-title-remark {
    padding-bottom: 40px;
  }
}

@media (min-width: 990px) {
  .main-privacy {
    padding-top: 0;
  }
}