* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --padding: clamp(
    20px,
    20px + (88 - 20) * ((100vw - 320px) / (1920 - 320)),
    88px
  );
  --container-width: 100%;
  --accent-color: rgba(219, 9, 91, 1);
  accent-color: hsla(359, 72%, 62%, 1);

  --fw-title: custom_125972, Impact, "Arial Black", "Helvetica Condensed", Arial,
    sans-serif;
}

html {
  box-sizing: border-box;
  height: -webkit-fill-available;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  font-family: var(--fontFamily);
  font-size: var(--font-size);
  line-height: 26px;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  min-width: $bodyMinWidth + px;

  scroll-padding-top: 100px;
  @media (max-width: map-get($breakpoints, "tablet_small")-1px) {
    scroll-padding-top: 73px;
  }
}

body {
  text-rendering: optimizeSpeed;
  position: relative;
  //text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;

  &.show-menu {
    overflow-y: hidden;
    height: 100%;
  }
  &.lock {
    overflow: hidden;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}

body,
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 100vh;
  position: relative;
}
.wrapper {
  height: 100%;
}
.main {
  flex: 1;
}

.container {
  padding: 0 var(--padding);
  width: 100%;
  margin: auto;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@font-face {
  font-weight: 700;
  font-family: "custom_125972";
  font-style: normal;
  src: url("https://c-p.rmcdn1.net/custom-fonts/font-4a837f59-65b8-44d8-886f-023804bb8d49.ttf")
    format("truetype");
}

@font-face {
  font-weight: 400;
  font-family: "custom_125980";
  font-style: normal;
  src: url("https://c-p.rmcdn1.net/custom-fonts/font-f218d41e-ce71-48c7-a2b3-dc8a278b70c7.ttf")
    format("truetype");
}
@font-face {
  font-weight: 300;
  font-family: "custom_125980";
  font-style: normal;
  src: url("https://c-p.rmcdn1.net/custom-fonts/font-5b1e4343-c2f6-4265-a14f-64267809b12b.otf")
    format("opentype");
}
@font-face {
  font-weight: 700;
  font-family: "custom_125980";
  font-style: normal;
  src: url("https://c-p.rmcdn1.net/custom-fonts/font-f52bae35-9185-40f2-b3db-099d41f3919d.otf")
    format("opentype");
}

.dnone {
  display: none;
}

.grid {
  display: grid;
  grid-template-columns:
    minmax(var(--padding), 1fr)
    minmax(0, calc(30 * var(--container-width) / 100))
    minmax(0, calc(10 * var(--container-width) / 100))
    minmax(0, calc(60 * var(--container-width) / 100))
    minmax(var(--padding), 1fr);
}

.fs h1 {
  line-height: 1;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: clamp(
    95px,
    95px + (295 - 95) * ((100vw - 320px) / (1920 - 320)),
    295px
  );
  color: var(--accent-color);
  text-transform: uppercase;
  white-space: normal;
}
.fs h2 {
  margin-bottom: 62px;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: clamp(
    25px,
    25px + (61 - 25) * ((100vw - 320px) / (1920 - 320)),
    61px
  );
  line-height: 0.32;
  font-style: normal;
  color: var(--accent-color);
  text-transform: uppercase;
  white-space: normal;
}
.editor-styles-wrapper .fs h1 {
  font-size: 100px;
}
.editor-styles-wrapper .fs h2 {
  font-size: 40px;
  margin-bottom: 50px;
}
.fs .fs__item h2 {
  margin-bottom: 0;
}

.fs {
  position: relative;
}
.fs__wrapper {
  display: grid;
  grid-template-columns:
    minmax(var(--padding), 1fr)
    minmax(0, calc(27 * var(--container-width) / 100))
    minmax(0, calc(20 * var(--container-width) / 100))
    minmax(0, calc(53 * var(--container-width) / 100))
    minmax(var(--padding), 1fr);
}
.fs__content {
  grid-area: 1 / 2 / 2 / 4;
  text-align: right;
  padding-top: 100px;
}
.fs__media {
  grid-area: 1 / 3 / 3 / -1;
  height: 100dvh;
  min-height: 800px;
  overflow: hidden;
  z-index: -1;
}
.fs__items {
  grid-area: 2 / 2 / 3 / 5;
  margin-bottom: 105px;
  align-items: stretch;
  align-self: end;
}
.fs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fs__dates:has(p:nth-child(4)) {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.fs__item:has(p:nth-child(4)) {
  max-width: 300px;
}

.wp-block-button {
  text-align: center;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 35px;
  align-items: center;
  justify-content: center;
}
.btn,
.wp-block-button__link.wp-element-button {
  border-radius: 10px;
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  border-width: 0px;
  border-color: rgb(0, 0, 0);
  font-family: custom_125980;
  font-weight: 700;
  font-style: normal;
  color: rgb(255, 255, 255);
  font-size: clamp(
    13px,
    13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)),
    30px
  );
  letter-spacing: 0px;
  padding: 28px 67px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}
.btn:hover,
.wp-block-button__link.wp-element-button:hover {
  background-color: rgba(219, 9, 91, 0.8);
}
.wp-block-button__link.wp-element-button {
  width: auto;
}
.btn2 {
  border-radius: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  font-family: custom_125980;
  font-weight: 700;
  font-style: normal;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  text-decoration: none;
  font-size: clamp(
    13px,
    13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)),
    30px
  );
  letter-spacing: 0px;
  padding: 26px 63px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}
.btn2:hover {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}
.editor-styles-wrapper .btn,
.editor-styles-wrapper .btn2 {
  font-size: 30px;
  padding: 10px 20px;
}
.fs__items {
  display: flex;
  gap: 20px
    clamp(110px, 110px + (150 - 110) * ((100vw - 768px) / (1920 - 768)), 150px);
  margin-top: 50px;
  flex-wrap: wrap;
}
.fs__item {
  max-width: 230px;
  width: 100%;
  border: 1px solid var(--accent-color);
  background-color: #ffffff;
  border-radius: 4px;
  padding: 26px 20px;
  flex: 1;
  height: fit-content;
}
.fs__item h2 {
  font-size: 54px;
  line-height: 20px;
  padding-bottom: 20px;
}
.fs__item span {
  line-height: 1.3;
  font-family: custom_125980;
  font-weight: 400;
  font-size: 26px;
  font-style: normal;
  color: rgba(0, 0, 0, 1);
  text-align: justify;
  white-space: normal;
}
.fs__item p {
  line-height: 25px;
  font-family: custom_125980;
  font-weight: 300;
  font-size: 20px;
  color: rgba(0, 0, 0, 1);
  text-align: justify;
  white-space: nowrap;
  flex: 1;
}
.fs__item p strong {
  line-height: 0.9;
  font-family: var(--fw-title);
  font-weight: 700;
  color: var(--accent-color);
}
.editor-styles-wrapper .fs__item h2 {
  font-size: 30px;
}
.editor-styles-wrapper .fs__item span {
  font-size: 20px;
}
.editor-styles-wrapper .fs__item p {
  font-size: 18px;
}
.direction {
  padding-top: 122px;
  padding-bottom: 72px;
}
.direction__wrapper {
  position: relative;
}
.direction h2,
.styleh2 {
  line-height: 0.9;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: clamp(
    106px,
    106px + (200 - 106) * ((100vw - 360px) / (1920 - 360)),
    200px
  );
  text-transform: uppercase;
  white-space: normal;
  color: var(--accent-color);
}
.wp-admin .direction h2,
.wp-admin .styleh2 {
  font-size: 100px;
}

.direction span,
.styledates {
  line-height: 0.83;
  font-family: var(--fw-title);
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
  font-size: clamp(
    27px,
    27px + (61 - 27) * ((100vw - 320px) / (1920 - 320)),
    61px
  );
}
.direction span strong {
  font-size: 20px;
}
.direction .date,
.text-rotation {
  font-size: clamp(
    13px,
    13px + (24 - 13) * ((100vw - 320px) / (1920 - 320)),
    24px
  );
  line-height: 1.5;
  font-family: custom_125980;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  background-color: #ffffff;
  display: inline-block;
  text-align: center;
  transform: rotate(6deg);
  padding: 10px 30px;
  position: absolute;
  left: 50px;
  top: 0;
}
.direction__grid {
  display: grid;
  /*grid-template-columns:
    clamp(300px, 300px + (360 - 300) * ((100vw - 768px) / (1920 - 768)), 360px)
    1fr;*/
  grid-template-columns:
    clamp(300px, 300px + (500 - 300) * ((100vw - 768px) / (1920 - 768)), 500px)
    1fr;
  gap: 20px;
}
.wp-admin .direction__grid {
  grid-template-columns: 350px 1fr;
}
.direction__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
  height: max-content;
}
.direction .styledates {
  align-self: auto;
}
.direction__media {
  --w354: clamp(
    160px,
    160px + (354 - 160) * ((100vw - 768px) / (1920 - 768)),
    354px
  );
  --w190: clamp(
    60px,
    60px + (190 - 60) * ((100vw - 768px) / (1920 - 768)),
    190px
  );
  --w278: clamp(
    60px,
    60px + (278 - 60) * ((100vw - 768px) / (1920 - 768)),
    278px
  );
  --h310: clamp(
    200px,
    200px + (310 - 200) * ((100vw - 768px) / (1920 - 768)),
    310px
  );
  --h198: clamp(
    90px,
    90px + (198 - 90) * ((100vw - 768px) / (1920 - 768)),
    198px
  );
  display: grid;
  grid-template-columns: var(--w354) var(--w190) var(--w190) var(--w278);
  grid-template-rows: var(--h310) var(--h198);
  gap: clamp(10px, 10px + (20 - 10) * ((100vw - 768px) / (1920 - 768)), 20px);
  justify-self: end;
}
.wp-admin .direction__media {
  --w354: 160px;
  --w190: 100px;
  --w278: 120px;
  --h310: 200px;
  --h198: 90px;
}
.direction__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.direction__media img:nth-child(1),
.direction__media .grid-direction-images__media-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.direction__media img:nth-child(2),
.direction__media .grid-direction-images__media-item:nth-child(2) {
  grid-column: 2/-1;
  grid-row: 1;
}
.direction__media img:nth-child(3),
.direction__media .grid-direction-images__media-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.direction__media img:nth-child(4),
.direction__media .grid-direction-images__media-item:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}
.direction__media img:nth-child(5),
.direction__media .grid-direction-images__media-item:nth-child(5) {
  grid-column: 4;
  grid-row: 2;
}

.grid-four {
  padding-bottom: 60px;
}
.grid-four__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.grid-four__item {
  border-radius: 6px;
  overflow: hidden;
  background-color: rgb(219, 9, 91);
  color: #ffffff;
  aspect-ratio: 393/467;
}
.grid-four__item-bg .grid-four__figure {
  position: relative;
}
.grid-four__item-bg .grid-four__figure:before {
  content: "";
  display: block;
  background-color: rgb(0 0 0 / 52%);
  position: absolute;
  inset: 0;
}
.grid-four__item-text.grid-four__item-bg .grid-four__figure:before {
  display: none;
}
.grid-four__item-bg .grid-four__caption {
  position: relative;
  z-index: 1;
}
.grid-four__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 393/467;
}
.grid-four__caption {
  font-size: clamp(
    15px,
    15px + (30 - 15) * ((100vw - 320px) / (1920 - 320)),
    30px
  );
  font-style: normal;
  font-weight: 700;
  font-family: custom_125980;
  line-height: 1.3;
  justify-self: start;
  align-self: end;
  margin: 26px 36px;
  word-break: break-word;
}

.wp-admin .grid-four__caption {
  margin: 10px;
  font-size: 16px;
}
.wp-admin .container {
  padding-left: 0;
  padding-right: 0;
}
.wp-admin .grid-four__wrapper {
  gap: 10px;
}
.wp-admin .grid-four__wrapper figure {
  margin: 0;
}

.grid-four__caption2 {
  line-height: 1.31;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: clamp(
    40px,
    40px + (61 - 40) * ((100vw - 320px) / (1920 - 320)),
    61px
  );
  text-align: center;
  align-self: center;
  justify-self: center;
  margin: 20px;
}
.grid-four__caption3 {
  line-height: 1.31;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: clamp(
    40px,
    40px + (61 - 40) * ((100vw - 320px) / (1920 - 320)),
    61px
  );
  text-align: center;
  align-self: center;
}
.grid-four__caption4,
.grid-four__caption5 {
  line-height: 1.31;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: clamp(
    20px,
    20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)),
    40px
  );
  text-align: center;
  align-self: center;
}

.grid-four__captions-in {
  line-height: 1.31;
  font-family: var(--fw-title);
  font-weight: 700;
  text-align: center;
  align-self: center;
}
.grid-four__captions-small {
  font-size: clamp(
    20px,
    20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)),
    40px
  );
}
.grid-four__captions-big {
  font-size: clamp(
    40px,
    40px + (61 - 40) * ((100vw - 320px) / (1920 - 320)),
    61px
  );
}
.wp-admin .grid-four__captions-big,
.wp-admin .grid-four__caption2,
.wp-admin .grid-four__caption3 {
  font-size: 20px;
}
.wp-admin .grid-four__captions-small,
.wp-admin .grid-four__caption4,
.wp-admin .grid-four__caption5 {
  font-size: 18px;
}

.grid-four__captions {
  margin: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.grid-four__captions .grid-four__caption2 {
  margin: 0;
}
.grid-four__caption2 span {
  display: block;
  text-align: right;

  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  font-style: normal;
  font-family: var(--fw-title);
  font-size: 34px;
  line-height: 0.8;
}
.grid-four__figure {
  display: grid;
  height: 100%;
}
.grid-four__figure img {
  grid-area: 1/1;
}
.grid-four__caption,
.grid-four__caption2,
.grid-four__captions {
  grid-area: 1/1;
}
.grid-four .buttons {
  margin-top: clamp(
    46px,
    46px + (116 - 46) * ((100vw - 320px) / (1920 - 320)),
    116px
  );
}

.grid-direction-images__content {
  position: relative;
}

.faq {
  max-width: 1050px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 120px var(--padding);
  counter-reset: section;
}
.faq .styleh2 {
  font-size: clamp(
    55px,
    55px + (150 - 55) * ((100vw - 320px) / (1920 - 320)),
    150px
  );
  text-align: center;
  margin-bottom: 128px;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq__question {
  color: rgba(0, 0, 0, 1);
  font-size: clamp(
    20px,
    20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)),
    40px
  );
  font-family: var(--fw-title);
  font-weight: 700;
  border: 1px solid rgb(166, 166, 166);
  border-radius: 4px;
  line-height: 1;
  text-transform: uppercase;
  counter-increment: section;
  display: flex;
  align-items: center;

  padding: 18px 60px;
}
.faq__answer {
  border: 1px solid rgb(166, 166, 166);
  border-radius: 4px;
  color: rgba(0, 0, 0, 1);
  font-size: 23px;
  line-height: 1.52;
  padding-left: 75px;
  padding-right: 183px;
  padding-top: 35px;
  padding-bottom: 43px;
  font-family: custom_125980;
  font-weight: 400;
  margin-top: 5px;
}
.faq__question:before {
  content: counter(section) ". ";
  margin-right: 10px;
}
details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}
.plus {
  --plus-size: clamp(
    40px,
    40px + (67 - 40) * ((100vw - 320px) / (1920 - 320)),
    67px
  );
  content: "";
  background: url(../img/plus.png) center no-repeat;
  background-size: 100%;
  width: var(--plus-size);
  height: var(--plus-size);
  flex: 0 0 var(--plus-size);
  border-radius: 50%;
  display: block;
  cursor: pointer;
  margin-left: auto;
}

.order-form {
  padding-top: 120px;
  padding-bottom: 120px;
}
.order-form__wrapper {
  display: grid;
  grid-template-columns:
    minmax(var(--padding), 1fr)
    minmax(0, calc(40 * var(--container-width) / 100))
    minmax(0, calc(60 * var(--container-width) / 100))
    minmax(var(--padding), 1fr);
  scroll-margin-top: -50px;
}
.order-form__form {
  grid-column: 2/3;
  padding-right: 115px;
  z-index: 1;
}
.order-form__media {
  grid-column: 3/-1;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
}
.order-form__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1011 / 1052;
}
.order-form__title {
  color: rgba(219, 9, 91, 1);
  font-size: 130px;
  line-height: 1;
  font-family: var(--fw-title);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 38px;
  min-width: 700px;
}
.order-form__submit {
  display: grid;
  padding-left: 24px;
}
.order-form__submit label {
  display: block;
  margin-bottom: 20px;
}
.order-form__submit select:user-invalid,
.order-form__submit input:user-invalid,
.order-form__submit textarea:user-invalid {
  border: 1px solid var(--accent-color);
}
.order-form__submit select,
.order-form__submit input,
.order-form__submit textarea {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  color: rgb(0, 0, 0);
  font-size: 23px;
  text-align: left;
  direction: ltr;
  line-height: 1.2;
  padding: 20px;

  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  border: 1px solid rgb(166, 166, 166);
  outline: none;
  width: 100%;
}

.video-block {
  background-color: var(--accent-color);
  padding-top: 92px;
  padding-bottom: 120px;
}
.video-block__wrapper {
  max-width: 1340px;
  width: 100%;
  padding: 0 var(--padding);
  margin: auto;
}
.video-block iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}
.video-block__video {
  margin-bottom: 20px;
}
.video-block__suptitle {
  font-weight: 700;
  font-size: 30px;
  font-style: italic;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  line-height: 1;
  font-family: custom_125980;
  text-align: center;
}
.video-block__title {
  font-size: 170px;
  color: rgba(255, 255, 255, 1);
  line-height: 0.9;
  font-family: var(--fw-title);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.instagram-profile {
  padding-top: 120px;
  padding-bottom: 120px;
}
.instagram-profile__block {
  display: grid;
  grid-template-columns:
    minmax(var(--padding), 1fr)
    minmax(0, calc(40 * var(--container-width) / 100))
    minmax(0, calc(60 * var(--container-width) / 100))
    minmax(var(--padding), 1fr);
  margin-bottom: 100px;
}
.instagram-profile__content {
  grid-column: 3/4;
}
.instagram-profile__content h2 {
  color: rgba(219, 9, 91, 1);
  line-height: 1;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: 170px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.instagram-profile__info {
  line-height: 71px;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: 52px;
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.instagram-profile__content p {
  line-height: 36px;
  font-family: custom_125980;
  font-weight: 400;
  font-size: 24px;
  max-width: 420px;
  margin-bottom: 50px;
}
.instagram-profile__content .btn {
  display: inline-flex;
}
.instagram-posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
}
.instagram-posts li {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 540/673;
  flex: 1;
}
.instagram-posts a {
  display: block;
}
.instagram-posts img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 540/673;
}

.static-text {
  text-align: center;
  background-color: rgb(219, 9, 91);
  padding-top: 370px;
  padding-bottom: 300px;
}
.wp-admin .static-text {
  padding-top: 10px;
  padding-bottom: 10px;
}
.static-text__title {
  color: rgba(255, 255, 255, 1);
  line-height: 150px;
  font-family: var(--fw-title);
  font-weight: 700;
  font-size: 130px;
  text-transform: uppercase;
}
.wp-admin .static-text__title {
  font-size: 100px;
  line-height: 1.4;
}
.static-text__buttons {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 50px;
}
.wp-admin .static-text__buttons {
  margin-top: 30px;
}
.static-text__buttons .btn2 {
  background-color: transparent;
}

.error404,
.page-template-thank-page {
  background-color: var(--accent-color);
  text-align: center;
  color: #ffffff;
}
.page404-code,
.thank__title {
  font-size: 200px;
  font-family: var(--fw-title);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.thank__title {
  margin-bottom: 50px;
}
.error404 .page-title,
.thank__text {
  font-size: 48px;
  font-family: var(--fw-title);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 48px;
}
.page404__block {
  padding: 100px 0;
}
.thank__container {
  max-width: 800px;
  margin: auto;
}
.error404 .header,
.page-template-thank-page .header {
  display: none;
}

.header {
  padding-top: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
.menu__list a {
  text-decoration: none;
  padding-bottom: 1px;
  font-family: custom_125980;
  font-weight: 400;
  font-size: 26px;

  color: rgba(0, 0, 0, 1);
}
.menu__list a:hover,
.menu__list .current-menu-item a {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.wrapper {
  position: relative;
}
section + figure,
section + h2 + figure {
  text-align: center;
  padding-left: var(--padding);
  padding-right: var(--padding);
  margin-bottom: 60px;
}
section + figure img,
section + h2 + figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 431/163;
  border-radius: 6px;
  max-height: 500px;
}
h2.wp-block-heading {
  font-family: var(--fw-title);
  line-height: 150px;
  font-size: clamp(
    55px,
    55px + (150 - 55) * ((100vw - 320px) / (1920 - 320)),
    150px
  );
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
}

.footer {
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-family: custom_125980;
  font-weight: 400;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__branding {
  font-size: 54px;
  line-height: 1;
  font-family: var(--fw-title);
  font-weight: 700;
  text-transform: uppercase;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
.footer a:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__links li:not(:last-of-type) {
  margin-bottom: 5px;
}
.footer__links a {
  transition: color 0.3s ease-in-out;
}
.footer__links a:hover {
  color: #000000;
}
.footer__links a:hover:after {
  width: 0;
}
.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  align-items: center;
  justify-content: center;
}
.footer-menu__list li {
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
.footer-menu__list li:hover {
  opacity: 0.8;
}
.footer-menu__list li:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}
.footer-menu__list li:hover:after {
  width: 100%;
}
.footer-menu__list a:after,
.foter__social a:after {
  display: none;
}
.foter__social img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
}
.foter__social a {
  transition: opacity 0.3s ease-in-out;
}
.foter__social a:hover {
  opacity: 0.8;
}
.foter__social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
.footer__contacts p {
  line-height: 1.5;
  margin-bottom: 30px;
}
.footer__contacts .footer__branding {
  display: none;
}

.review {
  padding-top: clamp(
    40px,
    40px + (80 - 40) * ((100vw - 320px) / (1920 - 320)),
    80px
  );
  padding-bottom: clamp(
    40px,
    40px + (80 - 40) * ((100vw - 320px) / (1920 - 320)),
    80px
  );
}
.review__title {
  font-size: clamp(
    55px,
    55px + (150 - 55) * ((100vw - 320px) / (1920 - 320)),
    150px
  );
  text-align: center;
  line-height: 0.9;
  font-family: var(--fw-title);
  font-weight: 700;
  color: var(--accent-color);
}
.review__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.review__arrows {
  display: flex;
  gap: 30px;
  align-items: center;
}
.review__prev,
.review__next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.review__prev svg,
.review__next svg {
  width: 30px;
}
.review__prev:hover,
.review__next:hover {
  background-color: var(--accent-color);
}

.privacy-policy main,
.page-id-335 main {
  font-family: "custom_125980", sans-serif;
  font-size: 22px;
  line-height: 36px;
  color: #333;
  padding: 40px 80px;
}

.page-id-335 main {
  padding-top: 100px;
}

/* Стилі тільки для сторінки Політики конфіденційності 
.page-id-3 {
  font-family: 'custom_125980', sans-serif;
  font-size: 22px;
  line-height: 36px;
  color: #333;
  padding: 40px;
}
*/
.page-id-3 header,
.page-id-3 footer {
  width: 100%;
  display: block;
  position: relative;
}
