html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --title-size: 1.75rem;
}
@media (min-width: 768px) {
  :root {
    --title-size: 2.25rem;
  }
}

@font-face {
  font-family: "now";
  src: url("../fonts/now-black.woff2") format("woff2"), url("../fonts/now-black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "now";
  src: url("../fonts/now-bold.woff2") format("woff2"), url("../fonts/now-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "now";
  src: url("../fonts/now-light.woff2") format("woff2"), url("../fonts/now-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "now";
  src: url("../fonts/now-medium.woff2") format("woff2"), url("../fonts/now-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "now";
  src: url("../fonts/now-regular.woff2") format("woff2"), url("../fonts/now-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "now";
  src: url("../fonts/now-thin.woff2") format("woff2"), url("../fonts/now-thin.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "dm_serif_textitalic";
  src: url("../fonts/dmseriftext-italic.woff2") format("woff2"), url("../fonts/dmseriftext-italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  outline: none !important;
  box-sizing: border-box;
  line-height: 1.5;
}

html {
  font-size: 14px;
  font-family: "now", sans-serif;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #fff;
  background: #1D3F35;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  z-index: 1;
  position: relative;
  flex: 1;
  overflow: hidden;
}

::-moz-selection {
  color: #fff;
  background: #1D3F35;
}

::selection {
  color: #fff;
  background: #1D3F35;
}

button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  font-size: 1.1em;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.2rem;
  }
}

strong,
b {
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 0.5625rem 3rem 0.5625rem 3.25rem;
  border-radius: 0.5rem;
  color: #fff;
  background: #1D3F35;
  transition: 0.2s;
  text-align: center;
  border: 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: inherit;
  user-select: none;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.btn:hover {
  color: #fff;
  background: #67a776;
}
.btn:focus {
  color: #fff;
  background: #dd855f;
}
.btn--no-icon {
  padding: 0.5625rem 3.125rem;
}
.btn--secondary {
  background: #67a776;
}
.btn--secondary:hover {
  background: #1D3F35;
}
.btn--white {
  background: #fff;
  color: #000;
}
.btn__icon {
  height: 0.75rem;
  display: inline-block;
  margin-left: 0.625rem;
}

.container, .opinions__container {
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.container--l {
  max-width: 67rem;
}
.container--m {
  max-width: 57rem;
}
.container--s {
  max-width: 47rem;
}

.wp-text {
  line-height: 1.25;
}
.wp-text h2, .wp-text h3, .wp-text h4, .wp-text h5, .wp-text h6 {
  padding: 1em 0 0.25em;
}
.wp-text ul {
  list-style: disc;
}
.wp-text p + p {
  margin-top: 1em;
}
.wp-text p + ul {
  margin-bottom: 1em;
}
.wp-text li {
  margin-left: 2em;
}
.wp-text img {
  max-width: 100%;
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #000;
  z-index: 999;
  transition: 0.2s;
  background: #fff;
  display: flex;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .topnav {
    top: 0.375rem;
    left: 0.375rem;
    width: calc( 100% - .75rem );
    border-radius: 0.5rem;
  }
  .topnav--front {
    background: none;
    color: #fff;
  }
  .topnav--scrolled-down {
    transform: translateY(-5rem);
    transition: all 0.3s ease-in-out;
  }
  .topnav--scrolled-up {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
  }
}
.topnav__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
.topnav__logo {
  pointer-events: all;
  padding: 1rem;
  transition: 0.2s;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .topnav__logo {
    margin: 0;
    padding: 0.5625rem 1rem;
  }
}
@media (min-width: 1400px) {
  .topnav__logo {
    margin-left: 2rem;
  }
}
.topnav__logo__img {
  height: 2.5rem;
  display: block;
  transition: 0.2s;
}
@media (min-width: 1200px) {
  .topnav__logo__img {
    height: 3.5rem;
  }
}
.topnav__logo__img--front {
  display: none;
}
@media (min-width: 1200px) {
  .topnav__logo__img--front {
    display: block;
    height: 5.125rem;
  }
  .topnav__logo__img--front.topnav__logo__img--scroll {
    filter: brightness(0);
  }
}
.topnav__logo__img--normal {
  display: block;
}
@media (min-width: 1200px) {
  .topnav__logo__img--hide {
    display: none;
  }
}
.topnav__menu {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  padding: 3rem 2rem 1rem 2rem;
  z-index: -1;
  transform: translateX(-105%);
  transition: 0.2s;
  pointer-events: all;
}
.topnav__menu:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 200vw;
  height: 100%;
  background: #000;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.topnav__menu--active {
  transform: translateX(0);
  z-index: 2;
}
.topnav__menu--active:after {
  opacity: 0.65;
}
@media (min-width: 1200px) {
  .topnav__menu {
    position: static;
    flex-direction: row;
    margin-left: auto;
    background: none;
    width: unset;
    max-width: unset;
    height: unset;
    padding: 0;
    box-shadow: none;
    transform: translateX(0%);
    gap: 0.5rem;
    z-index: 0;
  }
  .topnav__menu--front {
    margin-top: -0.5rem;
  }
  .topnav__menu--front .topnav__chevron {
    filter: brightness(1);
  }
}
.topnav__menu__single--btn {
  margin: 1rem;
}
@media (min-width: 1200px) {
  .topnav__menu__single--btn {
    margin: 1.1875rem 1rem 0 1.3125rem;
  }
}
@media (min-width: 1400px) {
  .topnav__menu__single--btn {
    margin-right: 2.9375rem;
  }
}
@media (min-width: 1200px) {
  .topnav__menu__single {
    position: relative;
  }
  .topnav__menu__single:hover .topnav__submenu {
    transform: scale(1) translateY(100%);
  }
  .topnav__menu__single--btn-front {
    transition: 0.2s;
    margin-top: 2.375rem;
  }
}
.topnav__menu__link {
  display: inline-block;
  padding: 0.75rem;
  transition: 0.2s;
  position: relative;
  width: 100%;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.topnav__menu__link:hover {
  color: #dd855f;
}
@media (min-width: 1200px) {
  .topnav__menu__link {
    padding: 0 0.75rem;
    width: unset;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.topnav__menu__link--active {
  color: #67a776;
}
.topnav__menu__link--btn {
  background: #1D3F35;
  color: #fff;
  border-radius: 0.5rem;
  text-align: center;
}
.topnav__menu__link--btn:hover {
  color: #fff;
  background: #67a776;
}
@media (min-width: 1200px) {
  .topnav__menu__link--btn {
    height: 2.25rem;
    padding: 0 1.75rem;
  }
}
.topnav__submenu {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .topnav__submenu {
    position: absolute;
    left: 0;
    bottom: 0.0625rem;
    transform: scale(0) translateY(100%);
    transform-origin: 0 100%;
    transition: 0.2s;
    white-space: nowrap;
    border-bottom-left-radius: 1.3125rem;
    border-bottom-right-radius: 1.3125rem;
    background: #fff;
    padding: 1rem 0;
  }
  .topnav__submenu:after {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: -0.5rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.375rem 0.5rem 0.375rem;
    border-color: transparent transparent #c1c1c1 transparent;
  }
}
.topnav__submenu__link {
  padding: 0.5rem 1rem;
  display: block;
  color: #000;
  transition: 0.2s;
}
.topnav__submenu__link:hover {
  color: #dd855f;
}
.topnav__chevron {
  display: none;
}
@media (min-width: 1200px) {
  .topnav__chevron {
    display: block;
    margin-left: 0.375rem;
    filter: brightness(0);
    transition: 0.2s;
  }
}
.topnav__close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 1rem;
}
@media (min-width: 1200px) {
  .topnav__close {
    display: none;
  }
}
.topnav__close__icon {
  height: 1.25rem;
}
.topnav__trigger {
  border: 0;
  background: none;
  padding: 1.5rem 1rem 1rem;
  cursor: pointer;
  pointer-events: all;
  position: absolute;
  left: 0.5rem;
  top: 0;
}
@media (min-width: 1200px) {
  .topnav__trigger {
    display: none;
  }
}

.menu-icon {
  height: 1.5rem;
}

.footer {
  background: url(../img/photos/stopka.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 99;
}
.footer__top {
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .footer__top {
    height: 20rem;
  }
}
@media (min-width: 1200px) {
  .footer__top {
    height: 25rem;
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  .footer__top {
    height: 30.8125rem;
    font-size: 3.75rem;
    align-items: flex-end;
    padding-bottom: 7rem;
  }
}
.footer__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer__action {
    flex-direction: row;
    gap: 1.75rem;
  }
}
@media (min-width: 1400px) {
  .footer__action {
    align-items: unset;
  }
}
.footer__action__icon {
  width: 3rem;
  height: 3rem;
  display: block;
}
@media (min-width: 992px) {
  .footer__action__icon {
    width: 4.6875rem;
    height: 4.6875rem;
    gap: 2.75rem;
  }
}
@media (min-width: 1400px) {
  .footer__action__icon {
    width: 6.6875rem;
    height: 6.6875rem;
  }
}
.footer__middle {
  background: #fff;
  color: #000;
  padding: 4rem 0;
}
@media (min-width: 1200px) {
  .footer__middle {
    padding: 6.875rem 0 7rem;
  }
}
.footer__container {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
  }
}
.footer__logo {
  margin-right: auto;
}
.footer__logo__img {
  height: 4rem;
  width: auto;
  display: block;
}
@media (min-width: 1800px) {
  .footer__logo__img {
    height: 7rem;
  }
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .footer__main {
    padding-top: 0;
    gap: 0;
    flex-direction: row;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  padding-right: 9.5rem;
  gap: 0.25rem;
  font-weight: 500;
}
.footer__menu__link {
  width: fit-content;
}
.footer__menu__link--active {
  color: #67a776;
}
.footer__menu__link:hover {
  color: #dd855f;
}
.footer__contact {
  position: relative;
  padding-right: 2.875rem;
  line-height: 1.3;
}
.footer__socials {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .footer__socials {
    padding-top: 0;
    position: absolute;
    bottom: 0.125rem;
    right: 0;
  }
}
.footer__social__icon {
  width: 1.8125rem;
  height: 1.8125rem;
  display: block;
}
.footer__bottom {
  padding: 0.3125rem 0 4rem;
}
@media (min-width: 1400px) {
  .footer__bottom {
    padding-bottom: 7.125rem;
  }
}

.page-title {
  font-weight: 500;
  font-size: var(--title-size);
  margin: 0 auto;
  display: block;
  width: fit-content;
  background: #fff;
  color: #000;
  padding: 0 1.75rem;
  line-height: 1.2;
  border-radius: 3rem;
  margin-top: 8rem;
}
@media (min-width: 1200px) {
  .page-title {
    margin-top: 8rem;
  }
}
@media (min-width: 1400px) {
  .page-title {
    margin-top: 8rem;
  }
}
@media (min-width: 1800px) {
  .page-title {
    margin-top: 8.375rem;
  }
}
.page-title--no-margin {
  margin-top: 0;
}

.page-text {
  max-width: 58rem;
  width: 100%;
  margin: 0 auto;
  padding: 3.125rem 1rem 0;
  text-align: center;
  line-height: 1.25;
}
.page-text--normal {
  text-align: left;
}
.page-text__important {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 1.125rem;
}

.normal-page {
  padding-bottom: 5rem;
}
@media (min-width: 1800px) {
  .normal-page {
    padding-bottom: 10rem;
  }
}

.voucher-page {
  background: #f2ede5;
  color: #000;
}

.vouchers {
  display: flex;
  justify-content: center;
  padding: 5.375rem 1rem 5.9375rem;
  gap: 2rem;
  flex-wrap: wrap;
  font-weight: 500;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vouchers:after {
  content: "";
  position: absolute;
  background: url(../img/blobs/voucher-1.svg) no-repeat center center;
  background-size: cover;
  width: 80.6875rem;
  height: 39rem;
  top: 2.75rem;
  left: calc( 50% - 42.4375rem );
  z-index: -1;
  pointer-events: none;
}
.vouchers__single {
  width: 100%;
  max-width: 29.875rem;
  border-radius: 1.3125rem;
  overflow: hidden;
  background: #fff;
  padding-bottom: 2rem;
}
.vouchers__photo {
  width: 100%;
  position: relative;
}
.vouchers__photo:after {
  content: "";
  display: block;
  padding-bottom: 81.380753%;
}
.vouchers__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vouchers__title {
  font-size: 1.25rem;
  padding: 2rem 1.25rem 1rem;
  line-height: 1.2;
}

.interested {
  padding: 0 1rem 4rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .interested {
    padding-bottom: 6rem;
  }
}
.interested--vouchers:after {
  content: "";
  position: absolute;
  background: url(../img/blobs/voucher-2.svg) no-repeat center center;
  background-size: cover;
  width: 72rem;
  height: 59.625rem;
  top: 10.75rem;
  left: calc( 50% - 29.75rem);
  z-index: -1;
  pointer-events: none;
}
.interested--about {
  color: #000;
}
.interested__box {
  background: #fff;
  width: 100%;
  max-width: 46.5rem;
  margin: 0 auto;
  border-radius: 1.3125rem;
  text-align: center;
  padding: 4rem 1rem;
}
@media (min-width: 460px) {
  .interested__box {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1400px) {
  .interested__box {
    padding: 6.1875rem 5rem 6.375rem;
  }
}
.interested__title {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 2.875rem;
}

.offer-page {
  background: #e9d9c0;
  color: #000;
}

.offers {
  padding: 4rem 1rem;
  width: 100%;
  margin: 0 auto;
  max-width: 77rem;
  position: relative;
}
@media (min-width: 1200px) {
  .offers {
    padding: 4.875rem 1rem 6.25rem;
  }
}
@media (min-width: 1800px) {
  .offers {
    padding: 4.875rem 1rem 16.25rem;
  }
}
.offers__bg {
  position: absolute;
  display: block;
  z-index: -1;
}
.offers__bg--offer1 {
  top: 1.3125rem;
  left: -7.75rem;
  width: 30.3125rem;
}
.offers__bg--offer2 {
  top: -0.5625rem;
  right: -3.75rem;
  width: 28.125rem;
}
.offers__bg--offer3 {
  width: 43.8125rem;
  bottom: 11.5625rem;
  left: calc( 50% - 13.8125rem );
}
.offers__bg--help1 {
  top: 5.8125rem;
  left: -10.1875rem;
  width: 44.6875rem;
}
.offers__bg--help2 {
  top: -0.875rem;
  right: -10.875rem;
  width: 31.25rem;
}
.offers__bg--help3 {
  bottom: 17.1875rem;
  right: 1.6875rem;
  width: 38.1875rem;
}
.offers__list {
  gap: 1rem;
  column-count: 1;
}
@media (min-width: 768px) {
  .offers__list {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .offers__list {
    column-count: 3;
  }
}
@media (min-width: 1200px) {
  .offers__list {
    column-count: 4;
  }
}
.offers__list--help-range {
  column-count: 1;
}
@media (min-width: 768px) {
  .offers__list--help-range {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .offers__list--help-range {
    column-count: 3;
  }
}
.offers__single {
  background: #fff;
  border-radius: 1.3125rem;
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  text-align: center;
  padding: 2rem 1.6875rem 2.1875rem;
}
.offers__icon {
  height: 2.6875rem;
  display: block;
  margin: 0 auto;
}
.offers__title {
  font-weight: 500;
  font-size: 1.25rem;
  padding: 0.625rem 0;
}
.offers__text {
  line-height: 1.25;
}
.offers__points {
  text-align: left;
  padding-left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offers__points li {
  position: relative;
}
.offers__points li:before {
  content: "";
  position: absolute;
  background: #000;
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 50%;
  left: -0.75rem;
  top: 0.6875rem;
}

.help-range-page {
  background: #e9d9c0;
  color: #000;
}

.email {
  color: #67a776;
  text-decoration: underline;
  font-weight: 500;
}
.email--yellow {
  color: #edd88e;
}

.pricing-page__blob {
  position: absolute;
  z-index: -1;
  top: -4.6875rem;
  right: -29.625rem;
  width: 68.375rem;
  pointer-events: none;
}

.pricing {
  width: 100%;
  margin: 0 auto;
  max-width: 77rem;
  padding: 4rem 1rem;
  position: relative;
}
@media (min-width: 1200px) {
  .pricing {
    padding: 6rem 1rem;
  }
}
@media (min-width: 1800px) {
  .pricing {
    padding: 7.625rem 1rem 16.0625rem;
  }
}
.pricing__blob {
  position: absolute;
  z-index: -1;
  top: calc( 50% - 22.0625rem);
  left: -35.5625rem;
  width: 53.5rem;
  pointer-events: none;
}
.pricing__single {
  background: #fff;
  color: #000;
  border-radius: 1.3125rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.pricing__title {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0 1rem 2rem;
  width: 100%;
	   hyphens: manual !important;
}
@media (min-width: 992px) {
  .pricing__title {
    text-align: left;
    padding: 0 1rem;
    width: 100%;
  }
}
.pricing__subtitle {
  font-weight: 400;
  font-size: 1rem;
  padding-top: 0.5rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .pricing__subtitle {
    transform: translateY(0.875rem);
    max-width: 20ch;
    margin: 0 auto;
  }
}
.pricing__single {
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
@media (min-width: 1200px) {
  .pricing__single {
    padding: 3.9375rem 0 4.25rem;
  }
}
.pricing__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .pricing__list {
    width: 76%;
  }
}
.pricing__list--info {
  display: none;
}
@media (min-width: 992px) {
  .pricing__list--info {
    display: flex;
    font-weight: 500;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
    padding: 0 0 0.3125rem;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
    .pricing .pricing__list > .pricing__service {
        grid-template-columns: 1fr;
    }
}
.pricing__service {
  display: flex;
  flex-wrap: wrap;
}
.pricing__service:not(:last-child) {
  position: relative;
}
.pricing__service:not(:last-child):after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: -1.1875rem;
  width: calc( 100% - 2rem );
  height: 0.0625rem;
  background: #e7e7e7;
}
@media (min-width: 992px) {
  .pricing__service:not(:last-child):after {
    width: calc( 100% - 3.8125rem );
  }
}
.pricing__name {
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .pricing__name {
    width: 100%;
  }
}
.pricing__time {
  padding: 0.5rem 1rem;
  width: 100%;
}
.pricing__time--multiline {
  width: 50%;
}
.pricing__time:not(.pricing__time--multiline)::before {
  content: "Czas: ";
  opacity: 0.75;
}
@media (min-width: 768px) {
  .pricing__time {
    padding: 0 1rem;
    width: 22.5%;
  }
  .pricing__time::before {
    display: none;
  }
}
.pricing__amount {
  padding: 0 1rem;
  width: 100%;
}
.pricing__amount--multiline {
  width: 50%;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .pricing__amount--multiline {
    padding: 0 1rem;
  }
}
.pricing__amount:not(.pricing__amount--multiline)::before {
  content: "Cena: ";
  opacity: 0.75;
}
@media (min-width: 768px) {
  .pricing__amount {
    width: 21.5%;
  }
  .pricing__amount::before {
    display: none;
  }
}
.pricing__law {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding-top: 1rem;
  line-height: 1.2;
}

.message {
  background: #67a776;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 1.3125rem;
}

.contact {
  padding: 6.5rem 1rem 4rem;
}
@media (min-width: 992px) {
  .contact {
    background: url(../img/photos/contact.jpg) no-repeat center center;
    background-size: cover;
    padding: 14.0625rem 1rem 9.125rem;
  }
}
.contact__box {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  color: #000;
  background: #e9d9c0;
  border-radius: 1.3125rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .contact__box {
    flex-direction: row;
  }
}
.contact__start {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .contact__start {
    padding: 4rem 2rem;
  }
}
@media (min-width: 992px) {
  .contact__start {
    width: 50.7%;
    padding: 6.4375rem 3.125rem 5rem;
  }
}
.contact__see {
  font-size: 2rem;
  font-weight: 500;
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .contact__see {
    font-size: 2.75rem;
  }
}
@media (min-width: 1400px) {
  .contact__see {
    font-size: 3.75rem;
  }
}
.contact__end {
  background: #fff;
  border-radius: 1.3125rem;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .contact__end {
    padding: 4rem 2rem;
  }
}
@media (min-width: 992px) {
  .contact__end {
    width: 49.3%;
    padding: 5.5rem 3.125rem 5rem;
  }
}
.contact__title {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.19;
}
.contact__text {
  padding: 3.25rem 0 4.375rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__input, .contact__textarea {
  border-radius: 0.5625rem;
  border: 0.0625rem solid #c1c1c1;
  padding: 0.6875rem 0.8125rem;
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: #c1c1c1;
}
.contact__textarea {
  resize: vertical;
  height: 3rem;
}
.contact__action {
  display: flex;
  justify-content: flex-end;
  padding-top: 3.75rem;
}

.contact-data {
  width: 100%;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-data {
    width: 58%;
  }
  .contact-data--right {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .contact-data {
    padding-bottom: 3.875rem;
  }
}
.contact-data__content {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  line-height: 1.1875;
}
.contact-data__name {
  padding-bottom: 1.125rem;
}

.route {
  padding: 0 1rem;
}
.route__box {
  width: 100%;
  max-width: 75rem;
  color: #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 1.3125rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .route__box {
    margin: -5rem auto 0;
    flex-direction: row;
  }
}
.route__map {
  position: relative;
  min-height: 25rem;
}
@media (min-width: 992px) {
  .route__map {
    width: 50.7%;
    min-height: unset;
  }
}
.route__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.route__content {
  padding: 4rem 1rem;
}
@media (min-width: 992px) {
  .route__content {
    width: 49.3%;
    padding: 8.125rem 4rem 7.625rem;
  }
}
.route__title {
  font-size: 1.25rem;
  padding-bottom: 0.9375rem;
}
.route__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  line-height: 1.25;
}

.contact-movie {
  background: url(../img/photos/contact-movie.jpg) no-repeat center center;
  background-size: cover;
  display: block;
  width: 100%;
  max-width: 75rem;
  border-radius: 1.3125rem;
  position: relative;
  margin: 4rem auto;
  margin: 4rem auto;
}
@media (min-width: 992px) {
  .contact-movie {
    margin-bottom: 8rem;
  }
}
@media (min-width: 1800px) {
  .contact-movie {
    margin: 3.625rem auto 11.5rem;
  }
}
.contact-movie:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.contact-movie__icon {
  display: block;
  width: 4rem;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 1400px) {
  .contact-movie__icon {
    width: 7.5rem;
  }
}

.intro {
  background: url(../img/photos/front1.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  .intro {
    min-height: 100vh;
    padding-top: 10rem;
  }
}
.intro__content {
  width: 100%;
  max-width: 77rem;
  margin: 10rem auto 4rem;
  padding: 0 1rem;
}
@media (min-width: 1200px) {
  .intro__content {
    margin: 1rem auto 9.6875rem;
  }
}
.intro__title {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .intro__title {
    font-size: 3rem;
  }
}
@media (min-width: 1400px) {
  .intro__title {
    font-size: 4rem;
  }
}
@media (min-width: 1800px) {
  .intro__title {
    font-size: 5rem;
  }
}
.intro__text {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 2.75rem 0 2.5rem;
  max-width: 36.875rem;
}

.front-how {
  background: #f2ede5;
  color: #000;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .front-how {
    padding: 6rem 0;
  }
}
@media (min-width: 1800px) {
  .front-how {
    padding: 12.125rem 0 3.75rem;
  }
}
.front-how__blob {
  position: absolute;
  z-index: 0;
  top: 19.625rem;
  left: calc( 50% - 17.25rem);
  width: 56.0625rem;
  pointer-events: none;
}
.front-how__container {
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media (min-width: 1800px) {
  .front-how__container {
    margin: 0 auto 9.6875rem;
  }
}
.front-how__title {
  font-size: var(--title-size);
}
.front-how__maintext {
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: 500;
  padding-top: 2.5rem;
}
@media (min-width: 992px) {
  .front-how__maintext {
    max-width: 50%;
  }
}
.front-how__extratext {
  line-height: 1.25;
  padding-top: 2.5rem;
}
@media (min-width: 992px) {
  .front-how__extratext {
    max-width: 49.3%;
    margin-left: auto;
    padding-top: 0;
  }
}
.front-how__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 5.3125rem;
}
.front-how__after {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.4375rem;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .front-how__after {
    flex-direction: row;
    gap: 5rem;
  }
}
.front-how__after-text {
  font-size: var(--title-size);
  font-weight: 500;
}

.how-single {
  background: #fff;
  border-radius: 1.3125rem;
  display: block;
  text-align: center;
  padding: 2rem 1.6875rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .how-single {
    width: calc( 50% - .5rem );
  }
}
@media (min-width: 1200px) {
  .how-single {
    width: calc( 25% - .75rem );
  }
}
.how-single__icon {
  height: 2.6875rem;
  display: block;
  margin: 0 auto;
}
.how-single__title {
  font-weight: 500;
  font-size: 1.25rem;
  padding: 0.625rem 0;
}
.how-single__text {
  line-height: 1.25;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.how-single__action {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 0.375rem;
}

.front-who {
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .front-who {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: unset;
  }
}
@media (min-width: 1200px) {
  .front-who {
    padding: 6rem 1rem;
  }
}
@media (min-width: 1400px) {
  .front-who {
    padding: 8rem 1rem;
  }
}
@media (min-width: 1800px) {
  .front-who {
    padding: 15.75rem 1rem 16.0625rem;
  }
}
.front-who:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 15.5625rem;
  left: calc( 50% - 21.75rem );
  width: 43.5rem;
  height: 43.5rem;
  border-radius: 50%;
  background: #67a776;
}
@media (min-width: 992px) {
  .front-who__main {
    width: 49.3%;
  }
}
.front-who__title {
  font-size: var(--title-size);
}
.front-who__maintext {
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: 500;
  padding-top: 2.5rem;
}
.front-who__extratext {
  line-height: 1.25;
  padding: 1.125rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.front-who__photo {
  position: relative;
  border-radius: 1.3125rem;
  overflow: hidden;
  max-width: 30.75rem;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .front-who__photo {
    max-width: unset;
    margin: 0;
  }
}
.front-who__photo:after {
  content: "";
  display: block;
  padding-bottom: 76.52027%;
}
.front-who__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-who__action {
  position: absolute;
  bottom: 4.875rem;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
}
.front-who__list {
  padding: 3.5rem 1rem 0 3rem;
}
@media (min-width: 992px) {
  .front-who__list {
    width: 50.7%;
  }
}

.who-point {
  width: 100%;
  max-width: 30.75rem;
  text-align: center;
  padding-bottom: 3.1875rem;
}
.who-point__icon {
  background: #c99a6d;
  border-radius: 50%;
  width: 5.8125rem;
  height: 5.8125rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.who-point__icon--n2 {
  background: #dd855f;
}
.who-point__icon--n3 {
  background: #9a8c76;
}
.who-point__icon--n4 {
  background: #c99a6d;
}
.who-point__icon--n5 {
  background: #e05a21;
}
.who-point__icon--n6 {
  background: #9a8c76;
}
.who-point__img {
  display: block;
}
.who-point__img--n1 {
  width: 4.75rem;
}
.who-point__img--n2 {
  width: 3.875rem;
}
.who-point__img--n3 {
  width: 4.875rem;
}
.who-point__title {
  font-size: 1.25rem;
  padding: 0.8125rem 0 0.375rem;
}
.who-point__text {
  line-height: 1.25;
}

.front-find {
  padding: 4rem 1rem;
  background: url(../img/photos/front3.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .front-find {
    height: 100vh;
  }
}
.front-find__box {
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 46.5rem;
  margin: 0 auto;
  border-radius: 1.3125rem;
  text-align: center;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .front-find__box {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1200px) {
  .front-find__box {
    padding: 4.875rem 4.625rem 5.125rem;
  }
}
.front-find__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
}
.front-find__maintext {
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: 500;
  padding-top: 2.125rem;
}
.front-find__extratext {
  line-height: 1.25;
  padding: 0.5rem 0 2.125rem;
}

.front-gallup {
  background: #c99a6d;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .front-gallup {
    padding: 6rem 0;
  }
}
@media (min-width: 1800px) {
  .front-gallup {
    padding: 9.8125rem 0 16.0625rem;
  }
}
.front-gallup__blob {
  position: absolute;
  z-index: 0;
  top: 17.5rem;
  left: calc( 50% - 11.25rem);
  width: 53.5rem;
  pointer-events: none;
}
.front-gallup__container {
  padding: 0 1rem;
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 992px) {
  .front-gallup__container {
    flex-direction: row;
    gap: 0;
  }
}
.front-gallup__main {
  color: #000;
}
@media (min-width: 992px) {
  .front-gallup__main {
    width: 49.3%;
  }
}
.front-gallup__title {
  font-size: var(--title-size);
  line-height: 1.194444;
  padding-bottom: 2.875rem;
}
.front-gallup__maintext {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
  gap: 2.75rem;
  padding-bottom: 2rem;
}
.front-gallup__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 1.25rem;
  padding-bottom: 2.875rem;
}
.front-gallup__list {
  text-align: left;
  padding: 0 0 0.75rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.front-gallup__list li {
  position: relative;
}
.front-gallup__list li:before {
  content: "";
  position: absolute;
  background: #000;
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 50%;
  left: -1.125rem;
  top: 0.6875rem;
}
.front-gallup__extra {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0 0 1rem;
}
@media (min-width: 992px) {
  .front-gallup__extra {
    width: 50.7%;
  }
}
.front-gallup__icon {
  display: block;
  height: 3.5rem;
  margin: 0 auto;
}
.front-gallup__quote {
  font-size: var(--title-size);
  line-height: 1.194444;
  font-weight: 500;
  max-width: 17ch;
  padding: 2.5rem 0 0.9375rem;
}
.front-gallup__author {
  font-size: 1.25rem;
}

.front-opinions {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 1200px) {
  .front-opinions {
    padding: 6rem 0;
  }
}
@media (min-width: 1800px) {
  .front-opinions {
    padding: 10rem 0 12.125rem;
  }
}
.front-opinions__bg {
  display: none;
}
@media (min-width: 768px) {
  .front-opinions__bg {
    display: block;
    height: 54.375rem;
    width: 54.375rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
  }
}
.front-opinions__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-opinions__container {
  width: 100%;
}
@media (min-width: 768px) {
  .front-opinions__container {
    position: absolute;
    top: 6.625rem;
    left: 0;
  }
}
@media (min-width: 1400px) {
  .front-opinions__container {
    top: 14.625rem;
  }
}
.front-opinions__top {
  padding: 0 1rem 2rem;
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .front-opinions__top {
    padding: 0 1rem;
    flex-direction: row;
    align-items: unset;
  }
}
.front-opinions__title {
  font-size: var(--title-size);
}
.front-opinions__actions {
  display: flex;
  gap: 0.8125rem;
  padding-top: 0.6875rem;
}
.front-opinions__action {
  width: 1.9375rem;
  height: 1.9375rem;
  display: block;
  cursor: pointer;
}
.front-opinions__action--right {
  transform: scaleX(-100%);
}

.opinions {
  width: 100%;
}
@media (min-width: 768px) {
  .opinions {
    position: absolute;
    top: 11.75rem;
    left: 0;
  }
}
@media (min-width: 1400px) {
  .opinions {
    top: 19.75rem;
  }
}
.opinions__wrapper {
  overflow: hidden;
}
.opinions .tns-ovh {
  overflow: visible;
}
@media (min-width: 768px) {
  .opinions .tns-item:nth-child(even) {
    margin-top: 18.75rem;
  }
  .opinions .tns-item:nth-child(even) .opinions__content:after {
    transform: scaleX(-100%);
    left: unset;
    right: 3.0625rem;
  }
}
.opinions__single {
  padding-bottom: 3.25rem;
}
@media (min-width: 768px) {
  .opinions__single {
    width: 33.75rem;
  }
}
.opinions__info {
  padding: 0 3.125rem 0.4375rem;
}
.opinions__content {
  height: 13.8125rem;
  width: 100%;
  background: #fff;
  color: #000;
  border-radius: 1.3125rem;
  padding: 1rem 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  position: relative;
}
.opinions__content:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.25rem 3.25rem 0 0;
  border-color: #fff transparent transparent transparent;
  left: 3.0625rem;
  bottom: -3.25rem;
}
.opinions__trigger {
  font-weight: 500;
  width: fit-content;
  text-decoration: underline;
  margin: 1rem auto 0 0;
}

.modal {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  padding-top: 3.25rem;
  backdrop-filter: blur(0.625rem);
  background: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px) {
  .modal {
    padding-top: 18.4375rem;
  }
}
.modal--active {
  display: flex;
}
.modal__before {
  color: #fff;
  position: absolute;
  left: 9.375rem;
  top: -2.0625rem;
}
.modal__container {
  background: #fff;
  color: #000;
  max-width: 75rem;
  height: fit-content;
  border-radius: 1.3125rem;
  position: relative;
}
.modal__top {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}
.modal__close {
  cursor: pointer;
}
.modal__icon {
  height: 2.625rem;
  width: 2.625rem;
  display: block;
}
.modal__content {
  line-height: 1.25;
  padding: 2.1875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 1200px) {
  .modal__content {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1800px) {
  .modal__content {
    padding: 2.1875rem 9.5rem 7.0625rem;
  }
}

.about-intro {
  background: #edd88e;
  color: #000;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .about-intro {
    padding-bottom: 6rem;
  }
}
@media (min-width: 1800px) {
  .about-intro {
    padding-bottom: 26.25rem;
    height: unset;
  }
}
.about-intro__container {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.about-intro__blob {
  position: absolute;
  z-index: -1;
  top: 15.0625rem;
  left: -5.5rem;
  width: 56.125rem;
  pointer-events: none;
}
.about-intro__title {
  width: fit-content;
  margin-left: -1.75rem;
}
.about-intro__maintext {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.1944444;
  padding-top: 4rem;
  max-width: 36ch;
}
.about-intro__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  margin-left: auto;
  max-width: 37rem;
  padding-top: 2.9375rem;
  gap: 1.25rem;
}

.stands-out {
  background: #dd855f;
  color: #000;
}
.stands-out__container {
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .stands-out__container {
    padding: 6rem 1rem;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (min-width: 1800px) {
  .stands-out__container {
    padding: 14.875rem 1rem 16.0625rem;
  }
}
.stands-out__container:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc( 50% - 19.25rem );
  left: calc( 50% - 21.75rem );
  width: 43.5rem;
  height: 43.5rem;
  border-radius: 50%;
  background: #f2ede5;
}
@media (min-width: 992px) {
  .stands-out__main {
    width: 49.3%;
  }
}
.stands-out__photo {
  position: relative;
  border-radius: 1.3125rem;
  overflow: hidden;
  margin-top: 0.5625rem;
  height: calc( 100% - .9375rem );
}
.stands-out__photo:after {
  content: "";
  display: block;
  padding-bottom: 76.52027%;
}
.stands-out__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stands-out__title {
  text-align: center;
  font-size: var(--title-size);
  max-width: 30.75rem;
  padding-bottom: 2.8125rem;
}
.stands-out__list {
  padding: 0 1rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .stands-out__list {
    display: block;
    width: 50.7%;
  }
}

.team {
  padding: 4rem 1rem;
}
@media (min-width: 992px) {
  .team {
    padding: 6rem 1rem;
  }
}
@media (min-width: 1800px) {
  .team {
    padding: 15.625rem 1rem 8.25rem;
  }
}
.team__top {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3.625rem;
}
.team__title {
  font-weight: 500;
  font-size: var(--title-size);
  margin: 0 auto;
  display: block;
  width: fit-content;
  background: #fff;
  color: #000;
  padding: 0 1.75rem;
  line-height: 1.2;
  border-radius: 3rem;
}
.team__maintext {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 3.125rem 0 1.125rem;
}
.team__text {
  line-height: 1.25;
}
.team__list {
  width: 100%;
  max-width: 75.125rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 4rem;
  position: relative;
}
@media (min-width: 1400px) {
  .team__list {
    padding-top: 7.25rem;
  }
}
.team__blob {
  position: absolute;
  z-index: -1;
  top: 4.625rem;
  right: 9.8125rem;
  width: 59.6875rem;
  pointer-events: none;
}
.team__after {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 4rem;
}
@media (min-width: 460px) {
  .team__after {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .team__after {
    padding-top: 5.375rem;
  }
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 500;
  gap: 0.75rem;
}
.tabs__btn {
  border-radius: 0.5rem;
  padding: 0.375rem 1.75rem;
}
.tabs__btn--active {
  background: #67a776;
}

.short-person {
  width: 100%;
  max-width: 24.375rem;
  text-align: center;
  color: #000;
  border-radius: 1.3125rem;
  overflow: hidden;
}
.short-person--hide {
  display: none;
}
.short-person__photo {
  position: relative;
}
.short-person__photo:after {
  content: "";
  display: block;
  padding-bottom: 71.979434%;
}
.short-person__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.short-person__name {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.25rem 1rem 0.125rem;
  background: #fff;
}
.short-person__jobs {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem 2rem;
  justify-content: center;
  gap: 0.25rem 0.75rem;
  height: 100%;
  background: #fff;
}

.about-interested {
  position: relative;
}
@media (min-width: 1800px) {
  .about-interested {
    padding-bottom: 6.25rem;
  }
}
.about-interested:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: calc( 100% - 8rem );
  background: #f2ede5;
}
@media (min-width: 1800px) {
  .about-interested:after {
    height: 25rem;
  }
}

.offer-intro {
  background: url(../img/graphics/offer-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 8rem 1rem 4rem;
}
@media (min-width: 1200px) {
  .offer-intro {
    padding: 8rem 1rem 6rem;
  }
}
@media (min-width: 1800px) {
  .offer-intro {
    padding: 8.375rem 1rem 16rem;
    min-height: 100vh;
  }
}

.offer-box {
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  border-radius: 1.3125rem;
  margin-top: 4rem;
  text-align: center;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .offer-box {
    padding: 4rem 2rem;
  }
}
@media (min-width: 992px) {
  .offer-box {
    padding: 4.75rem 3.75rem 5.125rem;
  }
}
@media (min-width: 1200px) {
  .offer-box {
    margin-top: 6rem;
  }
}
.offer-box__title {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.1944444;
}
.offer-box__maintext {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 2.875rem 0 1.125rem;
}
.offer-box__text {
  line-height: 1.25;
}

.offer-main {
  background: #f2ede5;
  color: #000;
  padding: 0 1rem;
  position: relative;
}
.offer-main__blob1 {
  position: absolute;
  top: 6.25rem;
  left: -20.75rem;
  width: 62.5rem;
  pointer-events: none;
}
.offer-main__blob2 {
  position: absolute;
  top: 10.3125rem;
  right: -26.8125rem;
  width: 64.875rem;
  pointer-events: none;
}

.offer-infos {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1200px) {
  .offer-infos {
    padding: 6rem 0 4rem;
    gap: 6rem;
  }
}
@media (min-width: 1800px) {
  .offer-infos {
    padding: 10.375rem 0 6.25rem;
    gap: 8rem;
  }
}

.offer-info {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .offer-info {
    flex-direction: row;
  }
  .offer-info--reverse {
    flex-direction: row-reverse;
  }
}
.offer-info__extra {
  padding: 0 5.25rem 0 4.75rem;
}
@media (min-width: 1200px) {
  .offer-info__extra {
    width: 50%;
  }
}
.offer-info__photo {
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .offer-info__photo {
    max-width: unset;
    margin: 0;
  }
}
.offer-info__photo:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.offer-info__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.3125rem;
}
.offer-info__main {
  padding: 1rem 0 0 0.5rem;
}
@media (min-width: 1200px) {
  .offer-info__main {
    width: 50%;
  }
}
.offer-info__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  padding-bottom: 1.875rem;
}
@media (min-width: 1200px) {
  .offer-info__title {
    padding-bottom: 2.875rem;
  }
}
.offer-info__text {
  line-height: 1.25;
  padding-bottom: 2.625rem;
}

.offer-focus {
  text-align: center;
  width: 100%;
  max-width: 37rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 0 4rem;
}
@media (min-width: 1200px) {
  .offer-focus {
    padding: 0 0 6rem;
  }
}
@media (min-width: 1800px) {
  .offer-focus {
    padding: 0 0 8.375rem;
  }
}
.offer-focus__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  padding-bottom: 2.875rem;
}
.offer-focus__text {
  line-height: 1.25;
}

@media (min-width: 1400px) {
  .offer-interested {
    padding-bottom: 2.25rem;
  }
}

.single-person-page {
  background: #f2ede5;
  color: #000;
  padding: 0 1rem;
}
.single-person-page__blob1 {
  position: absolute;
  top: 4.875rem;
  right: -22.0625rem;
  width: 65.25rem;
  z-index: -1;
  pointer-events: none;
}
.single-person-page__blob2 {
  position: absolute;
  bottom: -9.5625rem;
  left: -11.375rem;
  width: 50.9375rem;
  z-index: -1;
  pointer-events: none;
}

.person-top {
  border-radius: 1.3125rem;
  width: 100%;
  max-width: 75rem;
  margin: 10rem auto 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .person-top {
    flex-direction: row-reverse;
    background: #e9d9c0;
  }
}
@media (min-width: 1800px) {
  .person-top {
    margin: 19.25rem auto 0;
  }
}
@media (min-width: 1200px) {
  .person-top__extra {
    padding: 2.125rem 3.3125rem;
    width: 50%;
  }
}
.person-top__photo {
  position: relative;
  height: 100%;
  max-width: 20rem;
  margin: -2rem auto 0;
}
@media (min-width: 1200px) {
  .person-top__photo {
    max-width: unset;
    margin: 0;
  }
}
.person-top__photo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
@media (min-width: 1200px) {
  .person-top__photo:after {
    display: none;
  }
}
.person-top__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.3125rem;
}
.person-top__main {
  background: #fff;
  border-radius: 1.3125rem;
  padding: 4rem 1rem 2.5rem;
}
@media (min-width: 768px) {
  .person-top__main {
    padding: 4rem 3.625rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .person-top__main {
    width: 50%;
  }
}
.person-top__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  padding-bottom: 2.875rem;
  padding-bottom: 0.8125rem;
}
.person-top__jobs {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 1.25rem;
  gap: 0.875rem;
  padding-bottom: 2.0625rem;
}
.person-top__subtitle {
  font-size: 1rem;
  padding-bottom: 0.9375rem;
}
.person-top__text {
  line-height: 1.25;
  padding-bottom: 1.875rem;
}

.person-info {
  width: 100%;
  max-width: 68.25rem;
  margin: 4rem auto 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .person-info {
    gap: 6.625rem;
    margin: 4.75rem auto 0;
  }
}
.person-info__col {
  width: 100%;
}
@media (min-width: 992px) {
  .person-info__col {
    width: calc( 50% - 3.3125rem );
  }
}
.person-info__single {
  padding-bottom: 1.875rem;
}
.person-info__title {
  font-size: 1rem;
  padding-bottom: 0.9375rem;
}
.person-info__text {
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.person-calendar {
  width: 100%;
  max-width: 40rem;
  margin: 3rem auto 4rem;
}
@media (min-width: 1200px) {
  .person-calendar {
    margin: 4rem auto 6rem;
  }
}
@media (min-width: 1800px) {
  .person-calendar {
    margin: 4rem auto 9rem;
  }
}
.person-calendar__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  padding-bottom: 3.125rem;
  text-align: center;
}
.person-calendar__content {
  background: #1D3F35;
  color: #fff;
  border-radius: 1.3125rem;
  padding: 2rem 1rem 3rem;
}
@media (min-width: 768px) {
  .person-calendar__content {
    padding: 2rem 2rem 3rem;
  }
}
@media (min-width: 1200px) {
  .person-calendar__content {
    padding: 3rem;
  }
}
@media (min-width: 1800px) {
  .person-calendar__content {
    padding: 4rem;
  }
}
.person-calendar__single {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.5);
}
.person-calendar__single:first-child {
  border: 0;
}
.person-calendar__action {
  text-align: center;
  padding-top: 2rem;
}

.person-others {
  background: #1D3F35;
  color: #fff;
  padding: 4rem 1rem;
}
@media (min-width: 1200px) {
  .person-others {
    padding: 6rem 1rem;
  }
}
@media (min-width: 1800px) {
  .person-others {
    padding: 7.8125rem 1rem 8.4375rem;
  }
}
.person-others__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  text-align: center;
}
.person-others__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3rem 0 4rem;
  gap: 1rem;
}
@media (min-width: 1800px) {
  .person-others__list {
    padding: 6.375rem 0 8.4375rem;
  }
}
.person-others__action {
  text-align: center;
  padding-bottom: 1.1875rem;
}

.gallup-page {
  background: #f2ede5;
}

.gallup-intro {
  background: #67a776;
  color: #000;
}
@media (min-width: 992px) {
  .gallup-intro {
    padding-bottom: 7.375rem;
  }
}
.gallup-intro__container {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.gallup-intro__blob {
  position: absolute;
  z-index: -1;
  top: 14.1875rem;
  left: -7.9375rem;
  width: 68.375rem;
  pointer-events: none;
}
.gallup-intro__title {
  width: fit-content;
  margin-left: -1.75rem;
}
.gallup-intro__maintext {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.1944444;
  padding-top: 4rem;
}
@media (min-width: 992px) {
  .gallup-intro__maintext {
    max-width: 36ch;
  }
}
.gallup-intro__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  margin-left: auto;
  padding-top: 2.8125rem;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .gallup-intro__text {
    max-width: 37rem;
  }
}
.gallup-intro__extra {
  width: 100%;
  margin-left: auto;
  padding-top: 2.875rem;
}
@media (min-width: 992px) {
  .gallup-intro__extra {
    max-width: 37rem;
  }
}
.gallup-intro__subtitle {
  font-size: var(--title-size);
  line-height: 1.1944444;
}

.gallup-when {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 10rem 0 0;
  position: relative;
  z-index: 2;
  gap: 4rem;
}
@media (min-width: 992px) {
  .gallup-when {
    align-items: center;
    padding: 10rem 1rem 6.25rem;
  }
}
@media (min-width: 1200px) {
  .gallup-when {
    flex-direction: row;
    align-items: unset;
    gap: 0;
  }
}
.gallup-when__start {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .gallup-when__start {
    width: 50%;
    padding: 0;
  }
}
.gallup-when__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
}
.gallup-when__subtitle {
  font-size: 1.25rem;
  padding: 2.625rem 0 1.25rem;
}
.gallup-when__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.gallup-when__end {
  position: relative;
  background: #e9d9c0;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .gallup-when__end {
    width: 50%;
    background: none;
    padding: 0;
  }
}
.gallup-when__cloud-text {
  padding: 4rem 0;
}
@media (min-width: 992px) {
  .gallup-when__cloud-text {
    padding: 1.9375rem 0 0 8.3125rem;
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .gallup-when__cloud-text {
    padding-top: 3.9375rem;
  }
}
@media (min-width: 1800px) {
  .gallup-when__cloud-text {
    padding-left: 12.3125rem;
  }
}
.gallup-when__important {
  font-size: var(--title-size);
  line-height: 1.1944444;
  font-weight: 500;
  margin-right: -1.25rem;
  padding-bottom: 0.75rem;
}
.gallup-when__cloud {
  display: none;
}
@media (min-width: 992px) {
  .gallup-when__cloud {
    display: block;
    width: 57.5625rem;
    position: absolute;
    z-index: 0;
    left: 2.5625rem;
    top: -3.375rem;
  }
}

.gallup-strong {
  background: #f2ede5;
  color: #000;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1800px) {
  .gallup-strong {
    padding: 15.25rem 1rem 4.5625rem;
  }
}
.gallup-strong__blob1 {
  position: absolute;
  top: 9.125rem;
  right: -35.4375rem;
  width: 74.25rem;
  pointer-events: none;
}
.gallup-strong__blob2 {
  position: absolute;
  bottom: -13.25rem;
  left: -3.5rem;
  width: 53.5625rem;
  pointer-events: none;
}
.gallup-strong__main {
  padding-top: 4rem;
  max-width: 37rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (min-width: 1800px) {
  .gallup-strong__main {
    padding-top: 5.75rem;
  }
}
.gallup-strong__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
}
.gallup-strong__text {
  line-height: 1.25;
  padding-top: 2.8125rem;
}

.equation {
  font-size: 1.75rem;
  line-height: 1.25;
  text-align: center;
  position: relative;
}
@media (min-width: 460px) {
  .equation {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .equation {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .equation {
    font-size: 3.5rem;
  }
}
@media (min-width: 1800px) {
  .equation {
    font-size: 4.875rem;
  }
}
.equation__resul {
  font-family: "dm_serif_textitalic";
  color: #dd855f;
}
.equation__multiplier {
  color: #67a776;
  font-family: "dm_serif_textitalic";
}

.gallup-infos {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 4rem;
  position: relative;
}
@media (min-width: 992px) {
  .gallup-infos {
    padding-top: 6rem;
  }
}
@media (min-width: 1800px) {
  .gallup-infos {
    padding-top: 11.9375rem;
  }
}

.gallup-info {
  display: flex;
  padding-bottom: 2rem;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .gallup-info {
    padding-bottom: 4.1875rem;
    flex-direction: row;
    gap: 0;
  }
  .gallup-info--reverse {
    flex-direction: row-reverse;
  }
}
.gallup-info__main {
  padding: 2.6875rem 0.5rem 0 0;
}
@media (min-width: 992px) {
  .gallup-info__main {
    width: 50%;
  }
  .gallup-info__main--reverse {
    padding: 7.8125rem 0 0 0.625rem;
  }
}
.gallup-info__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  font-weight: 500;
}
.gallup-info__text {
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2.875rem;
}
.gallup-info__extra {
  position: relative;
  display: flex;
  gap: 2rem;
}
@media (min-width: 992px) {
  .gallup-info__extra {
    display: block;
    width: 50%;
  }
}
.gallup-info__photo {
  position: relative;
  border-radius: 1.3125rem;
  overflow: hidden;
  width: calc( 50% - 1rem );
}
@media (min-width: 992px) {
  .gallup-info__photo {
    width: 100%;
    max-width: 19.4375rem;
  }
  .gallup-info__photo--n1 {
    margin-left: 4.5625rem;
  }
  .gallup-info__photo--n2 {
    margin: -4.3125rem 0 0 14.0625rem;
  }
  .gallup-info__photo--n3 {
    margin: 0 4.4375rem 0 auto;
  }
  .gallup-info__photo--n4 {
    margin: -4.25rem 0 0 4.0625rem;
  }
}
.gallup-info__photo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.gallup-info__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallup-how {
  background: #edd88e;
  color: #000;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .gallup-how:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 3.3125rem;
    right: -20.9375rem;
    width: 60.8125rem;
    height: 60.8125rem;
    border-radius: 50%;
    background: #f2ede5;
  }
}
.gallup-how__container {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0 0;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 1;
  gap: 4rem;
}
@media (min-width: 1200px) {
  .gallup-how__container {
    padding: 12.125rem 1rem 12.3125rem;
    gap: 0;
    flex-direction: row;
  }
}
.gallup-how__start {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem;
  background: #67a776;
}
@media (min-width: 1200px) {
  .gallup-how__start {
    padding: 12.9375rem 9.6875rem 0 0;
    width: 50%;
    background: none;
  }
  .gallup-how__start:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0.9375rem;
    left: -6.875rem;
    width: 41.375rem;
    height: 41.375rem;
    border-radius: 50%;
    background: #f2ede5;
  }
}
.gallup-how__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
}
.gallup-how__text {
  padding-top: 2.875rem;
  line-height: 1.25;
}
.gallup-how__end {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
@media (min-width: 1200px) {
  .gallup-how__end {
    padding: 0 2.5rem 0 4.125rem;
    width: 50%;
  }
}
.gallup-how__arrow-right {
  display: none;
}
@media (min-width: 1200px) {
  .gallup-how__arrow-right {
    display: block;
    position: absolute;
    height: 8.1875rem;
    right: 2.4375rem;
    top: 15.0625rem;
  }
}
.gallup-how__arrow-left {
  display: none;
}
@media (min-width: 1200px) {
  .gallup-how__arrow-left {
    display: block;
    position: absolute;
    height: 8.1875rem;
    left: 2.875rem;
    top: 27.5625rem;
  }
}
.gallup-how__single {
  background: #fff;
  margin: 2rem auto 0;
  height: 9.75rem;
  width: 100%;
  max-width: 24.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 1.3125rem;
  padding: 0 3.375rem;
  line-height: 1.25;
}
@media (min-width: 1200px) {
  .gallup-how__single {
    margin: 2.8125rem 0 0 2.8125rem;
  }
}

.gallup-looks {
  background: #f2ede5;
  color: #000;
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 1800px) {
  .gallup-looks {
    padding: 9.125rem 0 9.25rem;
  }
}
.gallup-looks__blob1 {
  position: absolute;
  top: -20.9375rem;
  right: 6.9375rem;
  width: 54.3215rem;
  pointer-events: none;
}
.gallup-looks__blob2 {
  position: absolute;
  bottom: -31.0625rem;
  left: 6.8125rem;
  width: 55.875rem;
  pointer-events: none;
}
.gallup-looks__container {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.gallup-looks__top {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .gallup-looks__top {
    flex-direction: row;
  }
}
.gallup-looks__main {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .gallup-looks__main {
    width: 49.2%;
  }
}
.gallup-looks__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  padding: 1.8125rem 0 2.875rem;
}
.gallup-looks__maintext {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}
.gallup-looks__photo {
  height: 50vw;
  position: relative;
  border-radius: 1.3125rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .gallup-looks__photo {
    width: 47.25%;
    height: unset;
  }
}
.gallup-looks__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallup-looks__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.8125rem;
}
.gallup-looks__col {
  width: 100%;
}
@media (min-width: 992px) {
  .gallup-looks__col {
    max-width: 23.125rem;
  }
}
.gallup-looks__number {
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  width: fit-content;
  background: #fff;
  color: #000;
  padding: 0.625rem 1.125rem;
  line-height: 1.2;
  border-radius: 3rem;
  margin-left: -1.125rem;
}
.gallup-looks__subtitle {
  font-size: 1.25rem;
  padding: 0.9375rem 0 1.25rem;
  line-height: 1.2;
}
.gallup-looks__text {
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gallup-data {
  background: #67a776;
  color: #000;
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
  text-align: center;
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .gallup-data {
    border-top-left-radius: 8rem;
    border-top-right-radius: 8rem;
    padding: 6rem 0 4rem;
  }
}
@media (min-width: 1800px) {
  .gallup-data {
    border-top-left-radius: 13.375rem;
    border-top-right-radius: 13.375rem;
    padding: 10.75rem 0 12rem;
  }
}
.gallup-data__container {
  max-width: 77rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.gallup-data__title {
  font-size: var(--title-size);
  line-height: 1.1944444;
  margin: 0 auto;
  width: 100%;
  max-width: 32ch;
  padding-bottom: 3rem;
}
@media (min-width: 1800px) {
  .gallup-data__title {
    padding-bottom: 5.3125rem;
  }
}
.gallup-data__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.375rem;
}
@media (min-width: 1800px) {
  .gallup-data__list {
    gap: 2.25rem 3.375rem;
  }
}
.gallup-data__single {
  width: 100%;
  max-width: 22.75rem;
  padding-bottom: 0;
}
.gallup-data__subtitle {
  width: 100%;
  font-size: var(--title-size);
  line-height: 1.1944444;
  font-weight: 500;
  padding: 3.25rem 0 1.5rem;
}
.gallup-data__number {
  color: #fff;
  font-family: "dm_serif_textitalic";
  font-size: 3rem;
  padding-bottom: 0.75rem;
}
.gallup-data__info {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}
.gallup-data__bottom {
  font-size: var(--title-size);
  line-height: 1.1944444;
  font-weight: 500;
  padding: 4rem 0 0;
}
@media (min-width: 992px) {
  .gallup-data__bottom {
    padding: 6rem 0 0;
  }
}
@media (min-width: 1800px) {
  .gallup-data__bottom {
    padding: 11.1875rem 0 0;
  }
}
.gallup-data__line {
  padding-bottom: 1.125rem;
}
.gallup-data__current {
  position: relative;
  padding: 0 2.875rem;
  z-index: 1;
  white-space: nowrap;
}
.gallup-data__current:after {
  content: "";
  background: #fff;
  position: absolute;
  z-index: -1;
  width: calc( 100% - 2.25rem );
  height: calc( 100% - .625rem );
  border-radius: 3rem;
  left: 0.8125rem;
  top: 0.3125rem;
}
.gallup-data__action {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
  color: #fff;
  padding-top: 7.375rem;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallup-data__action {
    flex-direction: row;
    gap: 1.75rem;
  }
}
@media (min-width: 1400px) {
  .gallup-data__action {
    align-items: unset;
    font-size: 3.75rem;
  }
}
.gallup-data__icon {
  width: 3rem;
  height: 3rem;
  display: block;
}
@media (min-width: 992px) {
  .gallup-data__icon {
    width: 4.6875rem;
    height: 4.6875rem;
    gap: 2.75rem;
  }
}
@media (min-width: 1400px) {
  .gallup-data__icon {
    width: 6.6875rem;
    height: 6.6875rem;
  }
}

.single-offer-page .ebook_menu_separator {
  display: block;
  width: 100%;
  height: 96px;
}
@media (max-width: 1199px) {
  .single-offer-page .ebook_menu_separator {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .single-offer-page .ebook_menu_separator {
    height: 64px;
  }
}
@media (max-width: 767px) {
  .single-offer-page .ebook_menu_separator {
    height: 48px;
  }
}
.single-offer-page .ebook_content {
  background-color: #c99a6d;
}
.single-offer-page .ebook_content_inside {
  padding: 80px 24px;
  box-sizing: border-box;
  margin: auto;
  max-width: 75rem;
}
@media (max-width: 1199px) {
  .single-offer-page .ebook_content_inside {
    padding: 64px 24px;
  }
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content_inside {
    padding: 56px 24px;
  }
}
@media (max-width: 767px) {
  .single-offer-page .ebook_content_inside {
    padding: 48px 24px;
  }
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content_kolumny {
    padding-top: 96px;
  }
}
.single-offer-page .ebook_content_kolumny .ebook_content_inside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content_kolumny .ebook_content_inside {
    flex-direction: column-reverse;
  }
}
.single-offer-page .ebook_content_kolumny .ebook_content_inside div#mailerlite-form_1 {
  margin: 24px 0 0 0;
  max-width: unset;
}
.single-offer-page .ebook_content_left {
  width: 30%;
  display: block;
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content_left {
    width: 100%;
    margin-top: 48px;
  }
}
.single-offer-page .ebook_content_left img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.3125rem;
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content_left img {
    max-width: 800px;
    margin: auto;
  }
}
.single-offer-page .ebook_content_right {
  width: 70%;
  padding-left: 48px;
  display: block;
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content_right {
    width: 100%;
    padding-left: 0;
  }
}
.single-offer-page .ebook_content h2, .single-offer-page .ebook_content h1 {
  margin-bottom: 24px;
  text-align: center;
}
.single-offer-page .ebook_content p, .single-offer-page .ebook_content li {
  line-height: 2;
}
.single-offer-page .ebook_content div#mailerlite-form_1 {
  display: block;
  text-align: center;
  margin: 24px auto 0 auto;
  max-width: 500px;
}
.single-offer-page .ebook_content div#mailerlite-form_1 .mailerlite-form {
  background-color: #e9d9c0;
  border-radius: 0.5rem;
  text-align: center;
  padding: 24px 64px;
  display: inline-block;
}
@media (max-width: 991px) {
  .single-offer-page .ebook_content div#mailerlite-form_1 .mailerlite-form {
    padding: 24px;
  }
}
.single-offer-page .ebook_content div#mailerlite-form_1 .mailerlite-form .mailerlite-form-description {
  display: none;
}
.single-offer-page .ebook_content div#mailerlite-form_1 .mailerlite-form input:not([type=checkbox]) {
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: none;
  padding: 0 24px;
}
.single-offer-page .ebook_content div#mailerlite-form_1 .mailerlite-form button.mailerlite-subscribe-submit {
  background: #1D3F35;
  border-radius: 0.5rem;
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  padding: 12px 24px;
  cursor: pointer;
}
.single-offer-page .ebook_content div#mailerlite-form_1 .mailerlite-form button.mailerlite-subscribe-submit:hover {
  background-color: #e05a21;
}
.single-offer-page .ebook_content .ml-privacy-wrap label {
  padding-left: 36px;
  color: #000;
  position: relative;
  margin: 12px 0 24px 0;
  display: block;
  text-align: left;
}
.single-offer-page .ebook_content .ml-privacy-wrap label span {
  display: block;
  width: 100%;
  font-size: 11px;
}
.single-offer-page .ebook_content .ml-privacy-wrap label span a {
  color: #1D3F35;
  transition: 300ms;
}
.single-offer-page .ebook_content .ml-privacy-wrap label span a:hover {
  opacity: 0.5;
}
.single-offer-page .ebook_content .ml-privacy-wrap label input {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #1D3F35;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.single-offer-page .ebook_content .ml-privacy-wrap label input:checked {
  background-color: #1D3F35;
  border-color: #1D3F35;
}
.single-offer-page .offer-main.ebook_moduly .offer-info {
  align-items: center;
}
@media (max-width: 1199px) {
  .single-offer-page .offer-main.ebook_moduly .offer-info--reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1199px) {
  .single-offer-page .offer-main.ebook_moduly .offer-info__photo {
    max-width: 790px;
  }
}
@media (max-width: 1199px) {
  .single-offer-page .offer-main.ebook_moduly .offer-info__photo::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .single-offer-page .offer-main.ebook_moduly .offer-info__img {
    position: relative;
  }
}
.single-offer-page .offer-main.ebook_moduly .offer-info__text h2 {
  margin-bottom: 24px;
  text-align: center;
}
.single-offer-page .offer-main.ebook_moduly .offer-info__text p, .single-offer-page .offer-main.ebook_moduly .offer-info__text li {
  line-height: 2;
}
.single-offer-page .offer-main.ebook_moduly .offer-info__text_center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.single-offer-page .offer-main.ebook_moduly .offer-info__text_cta {
  background: #1D3F35;
  border-radius: 0.5rem;
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  padding: 12px 24px;
  display: inline-block;
  color: white;
  cursor: pointer;
  margin-top: 24px;
}
.single-offer-page .offer-main.ebook_moduly .offer-info__text_cta:hover {
  background-color: #e05a21;
}

/* tylko na ofertach */
.single-offer-page .offer-main { position: relative; }

.single-offer-page .offer-main__blob1,
.single-offer-page .offer-main__blob2,
.single-offer-page .offer-main__blob3,
.single-offer-page .offer-main__blob4,
.single-offer-page .offer-main__blob5 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* treść nad blobami */
.single-offer-page .offer-infos,
.single-offer-page .offer-focus,
.single-offer-page .offer-interested {
  position: relative;
  z-index: 2;
}

/* okruszki + tytuł wewnątrz intro */
.single-offer-page .offer-intro__inner .breadcrumb{
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
}
.single-offer-page .offer-intro__inner .page-title{
  position: relative;
  z-index: 2;
  margin-top: 0;
}

/* Główna rama tylko dla tej podstrony */
main.sport-page {
  /* wyłącz rozciąganie flexowe z motywu */
  flex: 0 1 auto;           /* albo: flex: initial; / flex: none; */

  /* kolumna treści */
  width: 100%;
  max-width: 1200px;        /* dopasuj do motywu (np. 1160/1280) */
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;

  /* nie tnij dekoracji */
  overflow: visible;
}

/* Spójne kontenery sekcyjne (opcjonalnie, ale polecam) */
.sport-page [class*="__container"] {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

/* Jeśli bloby mają wychodzić poza sekcję, zadbaj o stacking i brak cięcia */
.sport-strong,
.sport-intro2,
.sport-strong2,
.sport-strong3,
.sport-strong4,
.sport-looks,
.sport-team {
  position: relative;
  overflow: visible;
}

/* Okruszki pod tytułem na podstronie sportowej */
.sport-intro .breadcrumbpodstrona {
  position: static !important;   /* zdejmujemy absolute z motywu */
  display: block;
  margin-top: 30px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: inherit;
  overflow: visible;
  text-align: center;            /* >>> WYŚRODKOWANIE <<< */
}

.sport-intro__title {
  /* jeśli tytuł i okruszki mają się łamać w kolumnie */
  display: block;
}

/* 1A. Układ 2 kolumny: grafika ←→ treść (sekcja Korzyści) */
.sport-strong {
  display: grid;
  gap: 24px;
  align-items: center;
  margin: 12px 0;
  position: relative;
}
@media (min-width: 992px) {
  .sport-strong {
    grid-template-columns: 1fr 1fr;
  }
}
.sport-strong__blob1 {
  position: static !important;   /* unieważnia wcześniejsze absolute */
  width: 100%;
  height: auto;
  max-width: 560px;
  justify-self: center;
}

/* 1B. Lista korzyści w 1→2→3 kolumnach, z ikoną nad tekstem */
.benefits {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
  .benefits { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.benefit {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
}
.benefit__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #E7B04A;         /* możesz podmienić na brand */
  display: inline-block;
  margin-bottom: 6px;
}

div.sport-intro-box {
	font-size: var(--title-size);
    font-weight: 500;
    line-height: 1.1944444;
    padding-top: 4rem;
}

/* Wspólna baza sekcji z obrazem i treścią */
.sport-intro2,
.sport-strong2,
.sport-strong3,
.sport-strong4 {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 992px) {
  .sport-intro2,
  .sport-strong2,
  .sport-strong4 {
    grid-template-columns: 1fr 1fr;
  }

  /* .sport-intro2 – obraz LEWO, tekst PRAWO (domyślnie) */
  .sport-intro2 .sport-intro__container { grid-column: 2; }
  .sport-intro2 img { grid-column: 1; width: 100%; height: auto; }

  /* .sport-strong2 – tekst LEWO, obraz PRAWO */
  .sport-strong2__main { grid-column: 1; }
  .sport-strong2 img { grid-column: 2; width: 100%; height: auto; }
	
  /* .sport-strong3 to sam tekst – trzymamy 1 kolumnę; tylko zawężamy szerokość tekstu */
  .sport-strong3__main { max-width: 65ch; }

  /* .sport-strong4 – obraz LEWO, opis PRAWO */
  .sport-strong4 .offer-info { grid-column: 1 / -1; } /* blok już ma własny układ */
  .sport-strong4 .sport-photo img { width: 100%; height: auto; display: block; }
}

/* szerokość treści blokowej */
.entry-content, .block-editor-block-list__layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Kolumny zawsze jako flex */
.wp-block-columns.is-layout-flex {
  display: flex !important;
  align-items: stretch;
  gap: var(--wp--style--block-gap, 20px);
  flex-wrap: nowrap;          /* jedna linia na desktopie */
}

/* Równe szerokości kolumn */
.wp-block-columns.is-layout-flex > .wp-block-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

/* Responsywność */
@media (max-width: 900px) {
  .wp-block-columns.is-layout-flex {
    flex-wrap: wrap;
  }
  .wp-block-columns.is-layout-flex > .wp-block-column {
    flex: 1 1 100%;
  }
}

.wp-block-heading {
	margin: 15px 0;
}

/* kontener */
.blog-single__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* układ: treść + sidebar */
.blog-single__layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
@media (max-width: 992px) { .blog-single__layout { grid-template-columns: 1fr; } }

/* breadcrumbs pod tytułem */
.blog-single__breadcrumbs { margin-top: 8px; font-size: .9rem; }

/* stały wymiar grafiki – fallback, gdyby ktoś nie zarejestrował blog-featured */
.blog-single__thumb { margin: 0 0 24px; }
.blog-single__thumb img { width: 100%; height: auto; }
.blog-single__thumb:not(:has(img[width][height])) img {
  aspect-ratio: 1200 / 630;      /* utrzymuje proporcje, jeśli brak rozmiaru */
  object-fit: cover;
}

/* nawigacja na dole */
.blog-single__nav { margin-top: 48px; display: flex; justify-content: space-between; }

/* nazwy klas są unikalne dla bloga — brak kolizji z resztą motywu */

/* ===== CTA wspólne (desktop + mobile) ===== */
.menu_zielony > a{
  display:inline-block;
  background:#1e4f3e;
  color:#fff !important;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  text-align:center;
  text-decoration:none;
  transition:background-color .2s ease;
}
.menu_zielony > a:hover,
.menu_zielony > a:focus{ background:#174032; }

/* ===== MOBILE MENU (UPROSZCZONE, BEZ KOLIZJI) ===== */

/* Baza: ukryj */
.mobile-menu{ display:none; }

@media (max-width: 992px) {
  /* chowamy desktopowe UL */
  .topnav__menu{ display:none; }

  /* panel mobilny */
  .header, .topnav__container{ position:relative; }
  .mobile-menu{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; z-index:9999;
    padding:12px 14px;
    border-radius:0 0 12px 12px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
  }
  .mobile-menu.is-open{ display:block; }

  /* lista */
  .mobile-menu__list,
  .mobile-menu__list ul{ list-style:none; margin:0; padding:0; }
  .mobile-menu__list > li.menu-item{ border-bottom:1px solid rgba(0,0,0,.06); }
  .mobile-menu__list > li.menu-item:last-child{ border-bottom:0; }

  /* link = cały wiersz */
  .mobile-menu__list a{
    position:relative;
    display:block;
    width:100%;
    box-sizing:border-box;
    padding:14px 16px;
    text-decoration:none;
    color:#1d1d1b;
    font-weight:600;
    border-radius:8px;
  }
  .mobile-menu__list a:hover,
  .mobile-menu__list a:focus{ background:rgba(0,0,0,.04); outline:0; }

  /* podmenu */
  .mobile-menu__list li.menu-item-has-children > ul{
    display:none;
    padding-left:10px; margin-left:8px;
    border-left:2px solid rgba(0,0,0,.06);
  }
  .mobile-menu__list li.menu-item-has-children.is-open > ul{ display:block; }

  /* strzałka */
  .mobile-menu__list li.menu-item-has-children > a{ padding-right:40px; }
  .mobile-menu__list li.menu-item-has-children > a::after{
    content:"▾";
    position:absolute; right:16px; top:50%;
    transform:translateY(-50%); transition:transform .2s ease;
    color:currentColor; font-size:16px; line-height:1;
  }
  .mobile-menu__list li.menu-item-has-children.is-open > a::after{
    transform:translateY(-50%) rotate(180deg);
  }

  /* CTA w mobile */
  .mobile-menu__list .menu_zielony{ border-bottom:0; }
  .mobile-menu__list .menu_zielony > a,
  .mobile-menu__list .menu_zielony > a:hover,
  .mobile-menu__list .menu_zielony > a:focus,
  .mobile-menu__list .menu_zielony.is-open > a{
    background:#1e4f3e !important;
    color:#fff !important;
    margin:8px 0 12px;
  }
}

/* Desktop: ukryj CTA z listy (masz osobny przycisk w headerze) */
@media (min-width: 993px){
  .topnav__menu .menu_zielony{ display:none; }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: static;
  width: auto; height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
}