@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
:root {
  --base_black: #333333;
}

@font-face {
  font-family: "Exo2";
  src: url(../fonts/Exo2-Regular.woff2) format(woff2), url(../fonts/Exo2-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-stretch: semi-extended;
  font-variant: normal;
}
@font-face {
  font-family: "Exo2";
  src: url(../fonts/Exo2-Bold.woff2) format(woff2), url(../fonts/Exo2-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-stretch: semi-extended;
  font-variant: normal;
}
:root {
  font-family: "Exo2";
}

*,
::after,
::before {
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

html {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  flex: 1;
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
  box-shadow: none;
  border-style: none;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

summary {
  display: list-item;
}

h1,
h2,
h3,
h4,
h5,
figure,
p,
ol,
ul {
  margin: 0;
}

ol,
ul {
  list-style: none;
  padding-inline: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  font-weight: inherit;
}

img {
  display: block;
  max-inline-size: 100%;
}

.article__text ol,
.article__text ul {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.article__text ul {
  list-style: inherit;
  padding-left: 1.5625rem;
}
.article__text ol {
  list-style: decimal;
  padding-left: 1.5625rem;
}
footer {
  background-color: pink;
}
@media (max-width: 1350px) {
  footer {
    background-color: aqua;
  }
}

header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background-color: pink;
}
@media (max-width: 1350px) {
  header {
    background-color: aqua;
  }
}
header nav {
  display: flex;
  gap: 1.25rem;
}
header ul {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal[data-active=true] {
  height: auto;
  visibility: visible;
  pointer-events: all;
}
.modal__overlay {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
.modal__inner {
  position: relative;
  z-index: 12;
  padding: 0.625rem;
  background-color: yellow;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.modal__header {
  display: flex;
  justify-content: end;
}

.delivery {
  box-sizing: border-box;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f6f7;
}
.delivery-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.delivery-head-title {
  color: rgb(10, 16, 21);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .delivery-head-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .delivery-head-title {
    margin-bottom: 16px;
  }
}
.delivery-head-desc {
  color: rgb(10, 16, 21);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .delivery-head-desc {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .delivery-head-desc {
    margin-bottom: 16px;
  }
}
.delivery-var {
  margin-bottom: 50px;
}
@media (max-width: 1350px) {
  .delivery-var {
    margin-bottom: 60px;
  }
}
@media (max-width: 786px) {
  .delivery-var {
    margin-bottom: 42px;
  }
}
.delivery-var-title {
  color: rgb(10, 16, 21);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .delivery-var-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .delivery-var-title {
    margin-bottom: 16px;
  }
}
.delivery-var-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
@media (max-width: 1702px) {
  .delivery-var-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 786px) {
  .delivery-var-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1702px) {
  .delivery-var-grid .delgrid-center {
    grid-column: 1/span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 786px) {
  .delivery-var-grid .delgrid-center {
    grid-column: 1;
    max-width: 100%;
    margin: initial;
  }
}
.delivery-var-grid .delgrid {
  background-color: rgb(255, 255, 255);
  height: 356px;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 42px 40px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1350px) {
  .delivery-var-grid .delgrid {
    height: 280px;
  }
}
@media (max-width: 786px) {
  .delivery-var-grid .delgrid {
    height: 260px;
  }
}
.delivery-var-grid .delgrid-title {
  color: rgb(0, 0, 0);
  font-size: 22px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: auto;
  text-align: center;
}
@media (max-width: 1350px) {
  .delivery-var-grid .delgrid-title {
    font-size: 18px;
  }
}
.delivery-var-grid .delgrid img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100px;
}
@media (max-width: 1350px) {
  .delivery-var-grid .delgrid img {
    width: 75px;
  }
}
.delivery-var-grid .delgrid ul {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  list-style-type: disc;
  color: rgb(0, 0, 0);
  margin-top: 36px;
}
@media (max-width: 1702px) {
  .delivery-var-grid .delgrid ul {
    margin-top: 20px;
  }
}
@media (max-width: 786px) {
  .delivery-var-grid .delgrid ul {
    margin-right: auto;
  }
}
.delivery-var-grid .delgridsm {
  height: 300px;
}
.delivery-var-grid .delgridsm img {
  margin-bottom: 24px;
}
@media (max-width: 1350px) {
  .delivery-var-grid .delgridsm {
    height: 280px;
  }
}
@media (max-width: 786px) {
  .delivery-var-grid .delgridsm {
    height: 260px;
  }
}
.delivery-var-grid .delgridred {
  background-color: rgb(212, 15, 20);
  padding: 70px 50px !important;
}
@media (max-width: 1350px) {
  .delivery-var-grid .delgridred {
    padding: 20px 20px !important;
  }
}
@media (max-width: 786px) {
  .delivery-var-grid .delgridred {
    height: 260px;
  }
}
.delivery-var-grid .delgridred .delgrid-title {
  color: rgb(255, 255, 255);
  font-size: 20px;
  text-align: left;
}

.simple_page._max_width {
  max-width: unset !important;
  padding: unset;
  padding-top: 286px;
  margin: unset;
}
.sp_content {
  max-width: unset !important;
}

.logo-print {
  box-sizing: border-box;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow-x: hidden;
}
.logo-print_s-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  display: block;
  color: rgb(10, 16, 21);
}

.pogo-print-form {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  color: rgb(10, 16, 21);
}
@media (max-width: 1200px) {
  .pogo-print-form {
    grid-template-columns: 1fr;
  }
}
.pogo-print-form img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pogo-print-form__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.pogo-print-form__body {
  padding: 48px 70px;
  display: grid;
  gap: 20px;
  align-items: flex-start;
  font-weight: 300;
}
@media (max-width: 1702px) {
  .pogo-print-form__body {
    padding: 25px 40px 0px 40px;
  }
  .pogo-print-form__body {
    gap: 0px;
  }
  .pogo-print-form__body input {
    padding: 10px 24px;
  }
  .pogo-print-form picture {
    max-height: 350px;
  }
}
@media (max-width: 786px) {
  .pogo-print-form__body {
    padding: 30px 17px;
    margin-left: -17px;
    margin-right: -17px;
  }
}
.pogo-print-form__body input {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 24px;
  border-radius: 0;
  border: 1px solid rgb(218, 218, 218);
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: rgb(99, 110, 121);
  box-shadow: 0px 2px 2px 0px rgba(30, 49, 66, 0.0542);
}
.pogo-print-form__body button {
  color: white !important;
  background-color: rgb(196, 0, 12) !important;
  font-size: 14px !important;
  text-transform: uppercase;
}
@media (max-width: 1702px) {
  .pogo-print-form__body input {
    padding: 10px 24px;
  }
}
.pogo-print-promt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 50px;
  gap: 40px;
}
@media (max-width: 786px) {
  .pogo-print-promt {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.pogo-print-promt__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: calc(25% - 40px);
  color: rgb(10, 16, 21);
}
@media (max-width: 1200px) {
  .pogo-print-promt__item {
    width: calc(50% - 40px);
  }
}
@media (max-width: 786px) {
  .pogo-print-promt__item {
    gap: 10px;
  }
}
.pogo-print-promt__item svg {
  width: 159px;
  height: 159px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 786px) {
  .pogo-print-promt__item svg {
    width: 125px;
    height: 125px;
  }
}
.pogo-print-promt__item span {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .pogo-print-promt__item span {
    font-size: 16px;
  }
}

.logo-print-desc {
  margin-top: 50px;
  margin-bottom: 50px;
  color: rgb(30, 40, 50);
  font-weight: 300;
}

.logo-print-catalog {
  margin-top: 80px;
}
@media (max-width: 786px) {
  .logo-print-catalog {
    margin-top: 50px;
  }
}
.logo-print-catalog__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  margin-top: 60px;
}
.logo-print-catalog__item {
  display: grid;
  justify-content: center;
  text-decoration: none;
  width: calc(20% - 20px);
}
.logo-print-catalog__item:hover span {
  color: rgb(196, 0, 12);
}
@media (max-width: 1350px) {
  .logo-print-catalog__item {
    width: calc(20% - 20px);
  }
  .logo-print-catalog__item svg {
    margin-bottom: 16px;
  }
  .logo-print-catalog__item svg {
    max-width: 80px;
  }
}
@media (max-width: 786px) {
  .logo-print-catalog__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 480px) {
  .logo-print-catalog__item {
    width: calc(50% - 20px);
  }
}
.logo-print-catalog__item[href]:hover span {
  color: rgb(196, 0, 12);
}
.logo-print-catalog__item svg {
  max-width: 90px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  display: block;
}
@media (max-width: 480px) {
  .logo-print-catalog__item svg {
    max-height: 70px;
    max-width: 100%;
  }
}
.logo-print-catalog__item span {
  margin-top: auto;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  color: rgb(10, 16, 21);
}
@media (max-width: 480px) {
  .logo-print-catalog__item span {
    font-size: 16px;
  }
}

.logo-print-gallery {
  margin-top: 80px;
}
@media (max-width: 786px) {
  .logo-print-gallery {
    margin-top: 50px;
  }
}
.logo-print-gallery__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.logo-print-gallery__item {
  text-decoration: none;
  padding: 30px 23px;
  border: 1px solid rgb(92, 108, 122);
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  width: calc(25% - 28px);
}
.logo-print-gallery__item:hover span {
  color: rgb(196, 0, 12);
}
@media (max-width: 1350px) {
  .logo-print-gallery__item {
    /*width: calc(33.3333333333% - 28px);*/
  }
}
@media (max-width: 786px) {
  .logo-print-gallery__item {
    width: calc(50% - 28px);
  }
}
@media (max-width: 480px) {
  .logo-print-gallery__item {
    width: 100%;
  }
}
.logo-print-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: auto;
}
.logo-print-gallery__item span {
  color: rgb(0, 0, 0);
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  padding-top: 36px;
}

.logo-print-price {
  margin-top: 80px;
}
@media (max-width: 786px) {
  .logo-print-price {
    margin-top: 50px;
  }
}
.logo-print-price table {
  border-spacing: 0;
  width: 100%;
}
.logo-print-price table td,
.logo-print-price table th {
  border: 1px solid rgb(185, 185, 185);
  padding: 12px;
  text-align: center;
}
.logo-print-price table th {
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.06);
}
@media (max-width: 786px) {
  .logo-print-price table {
    min-width: 768px;
  }
  .logo-print-price .twrap {
    margin-left: -17px;
    margin-right: -17px;
    padding-left: 17px;
    padding-right: 17px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
}

.logo-print-partfolio {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 786px) {
  .logo-print-partfolio {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.logo-print-partfolio__full {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border: 2px solid rgb(196, 0, 12);
  background-color: rgb(196, 0, 12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 231px;
  height: 59px;
  text-decoration: none;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.logo-print-partfolio__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1200px) {
  .logo-print-partfolio__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 786px) {
  .logo-print-partfolio__list {
    grid-template-columns: 1fr;
  }
}
.logo-print-partfolio__item {
  padding: 30px;
  background-color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1350px) {
  .logo-print-partfolio__item {
    padding: 24px;
  }
}
.logo-print-partfolio__item:hover span {
  color: rgb(196, 0, 12);
}
.logo-print-partfolio__item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.logo-print-partfolio__item span {
  display: block;
  text-align: center;
  font-weight: 600;
  margin-top: auto;
  color: rgb(0, 0, 0);
}

.logo-print-feadback {
  background-color: rgb(252, 194, 196);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 786px) {
  .logo-print-feadback {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.logo-print-feadback__body {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1702px) {
  .logo-print-feadback__body {
    grid-template-columns: 1fr;
  }
}
.logo-print-feadback__title {
  font-size: 32px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 570px) {
  .logo-print-feadback__title {
    margin-bottom: 10px;
  }
}
.logo-print-feadback__desc {
  font-size: 24px;
  font-weight: 600;
  display: block;
}
@media (max-width: 480px) {
  .logo-print-feadback__desc {
    font-size: 20px;
  }
}
.logo-print-feadback__rigth {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 55px;
}
@media (max-width: 1702px) {
  .logo-print-feadback__rigth {
    margin-top: 0;
  }
}
@media (max-width: 570px) {
  .logo-print-feadback__rigth {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.logo-print-feadback__rigth input {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 24px;
  border-radius: 0;
  border: 1px solid rgb(218, 218, 218);
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: rgb(99, 110, 121);
  box-shadow: 0px 2px 2px 0px rgba(30, 49, 66, 0.0542);
}
.logo-print-feadback__rigth button {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border: 2px solid rgb(196, 0, 12);
  background-color: rgb(196, 0, 12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 231px;
  height: 62px;
  text-decoration: none;
}
@media (max-width: 570px) {
  .logo-print-feadback__rigth button {
    width: 100%;
  }
}
.logo-print-feadback__rigth .reviews-head-form-bottom__left {
  grid-column: 1/3;
}
@media (max-width: 570px) {
  .logo-print-feadback__rigth .reviews-head-form-bottom__left {
    grid-column: 1;
  }
}

.logo-print .reviews {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.reviews {
  box-sizing: border-box;
  padding-top: 80px;
  padding-bottom: 80px;
}
.reviews-head {
  display: flex;
  flex-direction: column;
}
.reviews-head-title {
  color: rgb(10, 16, 21);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .reviews-head-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .reviews-head-title {
    margin-bottom: 16px;
  }
}
.reviews-head-desc {
  color: rgb(10, 16, 21);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .reviews-head-desc {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .reviews-head-desc {
    margin-bottom: 16px;
  }
}
.reviews-head-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}
@media (max-width: 1350px) {
  .reviews-head-form {
    gap: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 786px) {
  .reviews-head-form {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.reviews-head-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 24px;
  border-radius: 0;
  border: 1px solid rgb(218, 218, 218);
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: rgb(99, 110, 121);
  box-shadow: 0px 2px 2px 0px rgba(30, 49, 66, 0.0542);
}
.reviews-head-form textarea {
  width: 100%;
  min-height: 144px;
  box-sizing: border-box;
  padding: 20px 24px;
  border-radius: 0;
  border: 1px solid rgb(218, 218, 218);
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: rgb(99, 110, 121);
  box-shadow: 0px 2px 2px 0px rgba(30, 49, 66, 0.0542);
  resize: none;
}
.reviews-head-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
@media (max-width: 786px) {
  .reviews-head-form__head {
    flex-direction: column;
    gap: 16px;
  }
}
.reviews-head-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 786px) {
  .reviews-head-form-bottom {
    flex-direction: column;
  }
}
.reviews-head-form-bottom__left .custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  cursor: pointer;
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: rgba(30, 49, 66, 0.4012);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.reviews-head-form-bottom__left .custom-checkbox input {
  display: none;
}
.reviews-head-form-bottom__left .custom-checkbox .checkmark {
  width: 20px;
  transform: translateY(10px);
  height: 20px;
  border: 2px solid #000;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.2s ease;
  flex-shrink: 0;
}
@media (max-width: 1702px) {
  .reviews-head-form-bottom__left .custom-checkbox .checkmark {
    transform: translateY(0px);
  }
}
@media (max-width: 868px) {
  .reviews-head-form-bottom__left .custom-checkbox .checkmark {
    transform: translateY(10px);
  }
}
.reviews-head-form-bottom__left .custom-checkbox .checkmark .check-icon {
  display: none;
}
.reviews-head-form-bottom__left .custom-checkbox input:checked + .checkmark .check-icon {
  display: block;
}
.reviews-head-form-bottom__left .custom-checkbox .text {
  line-height: 1.4;
}
.reviews-head-form-bottom__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
@media (max-width: 786px) {
  .reviews-head-form-bottom__right {
    flex-direction: column;
    gap: 16px;
  }
}
.reviews-head-form-bottom__right button {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border: 2px solid rgb(196, 0, 12);
  background-color: transparent;
  color: rgb(10, 16, 21);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 231px;
  height: 59px;
}
.reviews-posts {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (max-width: 1350px) {
  .reviews-posts {
    margin-bottom: 30px;
  }
}
@media (max-width: 786px) {
  .reviews-posts {
    margin-bottom: 24px;
  }
}
.reviews-posts-title {
  color: rgb(10, 16, 21);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .reviews-posts-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .reviews-posts-title {
    margin-bottom: 16px;
  }
}
.reviews-posts-boxes {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.reviews-posts-boxes .revElem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 786px) {
  .reviews-posts-boxes .revElem {
    flex-direction: column;
    position: relative;
  }
}
.reviews-posts-boxes .revElem img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100px;
}
.reviews-posts-boxes .revElem-right {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  position: relative;
}
@media (max-width: 1702px) {
  .reviews-posts-boxes .revElem-right {
    max-width: 700px;
  }
}
@media (max-width: 1350px) {
  .reviews-posts-boxes .revElem-right {
    max-width: 100%;
    margin-left: 80px;
  }
}
@media (max-width: 786px) {
  .reviews-posts-boxes .revElem-right {
    margin-left: 0px;
    position: static;
  }
}
.reviews-posts-boxes .revElem-right h1,
.reviews-posts-boxes .revElem-right h2,
.reviews-posts-boxes .revElem-right h3,
.reviews-posts-boxes .revElem-right h4 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: rgb(10, 16, 21);
}
.reviews-posts-boxes .revElem-right p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: rgb(10, 16, 21);
}
.reviews-posts-boxes .revElem-right-stars {
  position: absolute;
  top: 0;
  right: 0;
}
.reviews-cards {
  display: flex;
  flex-direction: column;
}
.reviews-cards-title {
  color: rgb(10, 16, 21);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1350px) {
  .reviews-cards-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 786px) {
  .reviews-cards-title {
    margin-bottom: 16px;
  }
}
.reviews-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1702px) {
  .reviews-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 786px) {
  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }
}
.reviews-cards-grid .rev-card {
  padding: 24px 24px 32px 24px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews-cards-grid .rev-card img {
  width: 100%;
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews-cards-grid .rev-card p {
  font-weight: 600;
  font-size: 16px;
  color: rgb(30, 40, 50);
}
.reviews .revLink {
  color: rgb(212, 15, 20);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-left: auto;
  margin-top: 50px;
}
@media (max-width: 786px) {
  .reviews .revLink {
    display: none;
  }
}

* {
  font-family: "Onest", sans-serif;
}

.span {
  background-color: red;
  padding: 20px;
  width: 100%;
  container-type: inline-size;
}
.span p {
  font-size: 22px;
}
@container (width >= 400px) {
  .span p {
    font-size: 42px;
  }
}

.container {
  padding-left: 240px;
  padding-right: 240px;
  box-sizing: border-box;
}
@media (max-width: 1350px) {
  .container {
    padding-left: 31px;
    padding-right: 31px;
  }
}
@media (max-width: 786px) {
  .container {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.container-gray {
  background-color: #f7f9fa;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 1350px) {
  .breadcrumbs {
    margin-bottom: 30px;
  }
}
@media (max-width: 786px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}
.breadcrumbs-prev {
  font-size: 13px;
  font-weight: 500;
  line-height: 12px;
  color: rgb(116, 125, 134);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.breadcrumbs-icon {
  width: 4px;
  height: 6px;
  flex: 0 0 4px 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.breadcrumbs-last {
  font-size: 13px;
  font-weight: 500;
  line-height: 12px;
  color: rgb(10, 16, 21);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

.stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.stars .star {
  width: 23px;
  height: 22px;
  cursor: pointer;
}
.stars .star path {
  fill: #fcc2c4;
  stroke: #c4000c;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.2s;
}
.stars .star.active path {
  fill: #c4000c;
}

.logo-print.custom {
  padding-top: 0;
}
.simple_page .logo-print.custom h1 {
  margin-top: 0;
}
.logo-print.custom .reviews-posts {
  padding-bottom: 0;
  margin-bottom: 0;
}
footer.o-footer {
  margin-top: 0;
}

@media (max-width: 1702px) {
  .pogo-print-promt {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pogo-print-promt__item {
    gap: 10px;
  }
  .pogo-print-promt__item svg {
    width: 130px;
    height: 130px;
  }
}