/*
Theme Name: Profiart
Theme URI: https://wordpress.org/themes/twentytwenty/
Author: Profiart
Author URI: https://wordpress.org/
Description: Profiart theme
Version: 1.0.0
Text Domain: profiart
*/
/* ------------------------------------------------
 * Colors
 * ------------------------------------------------
 */
/* ------------------------------------------------
 * Media queries
 * ------------------------------------------------
 */
/* ------------------------------------------------
 * CSS variables
 * ------------------------------------------------
 */
html {
  scroll-behavior: smooth;
}

/* 
 * @include mq(320, 640);  * mq between 320px and 640px
 * @include mq(640);  * mq min-width 640px
 * @include mq($min: 640);  * also mq min-width 640px
 * @include mq($max: 640);  * mq max-width 640px
 */
.Container {
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 90%;
  max-width: 1280px;
}
@media only screen and (min-width: 768px) {
  .Container {
    width: 90%;
  }
}
@media only screen and (min-width: 861px) {
  .Container {
    width: 90%;
  }
}
@media only screen and (min-width: 1025px) {
  .Container {
    width: 90%;
  }
}

.container--small {
  max-width: 1000px;
}
.container--wide {
  max-width: 1520px;
}
.container--positionUnset {
  position: unset;
}

/* ------------------------------------------------
 * CSS variables handle
 * ------------------------------------------------
 */
:root {
  --moduleSpace: 40px;
}
@media only screen and (min-width: 768px) {
  :root {
    --moduleSpace: 80px;
  }
}
@media only screen and (min-width: 1025px) {
  :root {
    --moduleSpace: 120px;
  }
}

@font-face {
  font-family: "Now";
  src: url("./css/Now-Light.eot");
  src: url("./css/Now-Light.eot?#iefix") format("embedded-opentype"), url("./css/Now-Light.woff2") format("woff2"), url("./css/Now-Light.woff") format("woff"), url("./css/Now-Light.ttf") format("truetype"), url("./css/Now-Light.svg#Now-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Now";
  src: url("./css/Now-Thin.eot");
  src: url("./css/Now-Thin.eot?#iefix") format("embedded-opentype"), url("./css/Now-Thin.woff2") format("woff2"), url("./css/Now-Thin.woff") format("woff"), url("./css/Now-Thin.ttf") format("truetype"), url("./css/Now-Thin.svg#Now-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "now.medium";
  src: url(./css/now.medium.eot);
  src: url(./css/now.medium.eot?#iefix) format("embedded-opentype"), url(./css/now.medium.otf) format("otf"), url(./css/now.medium.ttf) format("truetype"), url(./css/now.medium.woff) format("woff"), url(./css/now.medium.woff2) format("woff2");
}
@font-face {
  font-family: "now.regular";
  src: url(./css/now.regular.eot);
  src: url(./css/now.regular.eot?#iefix) format("embedded-opentype"), url(./css/now.regular.otf) format("otf"), url(./css/now.regular.ttf) format("truetype"), url(./css/now.regular.woff) format("woff"), url(./css/now.regular.woff2) format("woff2");
}
h1.Title {
  font-family: "Now", sans-serif;
  font-size: 24px !important;
  font-style: normal;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.48px !important;
  text-transform: uppercase;
}
@media only screen and (min-width: 861px) {
  h1.Title {
    font-size: 32px !important;
    letter-spacing: 0.96px !important;
  }
}

.ScrollAnimation {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.ScrollAnimation--visible {
  opacity: 1;
  transform: translateY(0);
}
.ScrollAnimation--delay-1 {
  transition-delay: 0.1s;
}
.ScrollAnimation--delay-2 {
  transition-delay: 0.2s;
}
.ScrollAnimation--delay-3 {
  transition-delay: 0.3s;
}
.ScrollAnimation--delay-4 {
  transition-delay: 0.4s;
}
.ScrollAnimation--delay-5 {
  transition-delay: 0.5s;
}
.ScrollAnimation--fromLeft {
  transform: translateX(-60px);
}
.ScrollAnimation--fromLeft.ScrollAnimation--visible {
  transform: translateX(0);
}
.ScrollAnimation--fromRight {
  transform: translateX(60px);
}
.ScrollAnimation--fromRight.ScrollAnimation--visible {
  transform: translateX(0);
}
.ScrollAnimation--fromLeftMargin {
  transform: translateX(50%);
}
@media only screen and (min-width: 861px) {
  .ScrollAnimation--fromLeftMargin {
    transform: translateX(100%);
  }
}
.ScrollAnimation--fromLeftMargin.ScrollAnimation--visible {
  transform: translateX(0);
}

.Button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 24px;
  font-family: "articulat-cf", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: normal !important;
  letter-spacing: 0.39px !important;
  text-decoration: none !important;
  color: #3B3A39 !important;
  border: 1px solid #000;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
  transition: color 0.3s;
}
.Button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000;
  transition: width 0.3s ease;
  z-index: -1;
}
.Button::after {
  content: "";
  display: block;
  background: url("./assets/images/arrow-right.svg") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: background 0.3s;
}
.Button:hover {
  color: #fff !important;
}
.Button:hover::before {
  width: 100%;
}
.Button:hover::after {
  background: url("./assets/images/arrow-right-white.svg") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 861px) {
  .Button {
    padding: 13px 40px;
    font-size: 14px !important;
    letter-spacing: 0.42px !important;
  }
  .Button::after {
    width: 24px;
    height: 24px;
  }
}
.Button--black {
  color: #fff !important;
  border-color: #fff;
}
.Button--black::before {
  background-color: #fff;
}
.Button--black::after {
  background: url("./assets/images/arrow-right-white.svg") no-repeat;
  background-size: contain;
}
.Button--black:hover {
  color: #000 !important;
}
.Button--black:hover::after {
  background: url("./assets/images/arrow-right.svg") no-repeat;
  background-size: contain;
}

.Accordion__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.Accordion__item {
  position: relative;
  padding: 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}
.Accordion__item:not(:first-child) {
  margin-top: 4px;
}
@media only screen and (min-width: 861px) {
  .Accordion__item {
    padding: 24px;
  }
  .Accordion__item:not(:first-child) {
    margin-top: 0;
  }
}
.Accordion__item--open {
  background-color: #F7F7F6;
}
.Accordion__title {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 32px 0 0;
  box-sizing: border-box;
  font-family: "articulat-cf", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
@media only screen and (min-width: 861px) {
  .Accordion__title {
    padding: 0 48px 0 0;
    font-size: 22px;
  }
}
.Accordion__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border-radius: 8px;
}
@media only screen and (min-width: 861px) {
  .Accordion__icon {
    top: 16px;
    width: 36px;
    height: 36px;
  }
}
.Accordion__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  width: 12px;
  background-color: #000;
  transition: 0.3s;
}
@media only screen and (min-width: 861px) {
  .Accordion__icon::after {
    width: 17px;
  }
}
.Accordion__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 2px;
  background-color: #000;
  opacity: 1;
  transition: 0.3s;
}
@media only screen and (min-width: 861px) {
  .Accordion__icon::before {
    height: 17px;
  }
}
.Accordion__item--open .Accordion__icon::before {
  opacity: 0;
}
.Accordion__wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.Accordion__item--open .Accordion__wrapper {
  opacity: 1;
}
.Accordion__content {
  padding-top: 16px;
  padding-right: 32px;
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
}
@media only screen and (min-width: 861px) {
  .Accordion__content {
    padding-top: 24px;
    padding-right: 48px;
    font-size: 18px;
  }
}

.Form br {
  display: none;
}
.Form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
@media only screen and (min-width: 861px) {
  .Form .wpcf7-acceptance .wpcf7-list-item {
    margin-top: 4px;
  }
}
.Form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: 12px;
}
.Form .wpcf7-acceptance .wpcf7-list-item input {
  display: grid;
  place-content: center;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  width: 21px;
  height: 21px;
  min-width: 21px;
  min-height: 21px;
  border: 1px solid #000;
  border-radius: 3px;
}
.Form .wpcf7-acceptance .wpcf7-list-item input::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background: url("./assets/images/checkbox.svg") no-repeat;
  background-size: contain;
  border-radius: 3px;
}
.Form .wpcf7-acceptance .wpcf7-list-item input:checked::before {
  transform: scale(1);
}
.Form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  font-family: "articulat-cf", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #3B3A39;
}
@media only screen and (min-width: 861px) {
  .Form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.Form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
  font-weight: 700;
  text-decoration: underline;
  color: #3B3A39;
}
.Form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a:hover {
  color: #3B3A39;
}
.Form .wpcf7-not-valid-tip {
  font-family: "articulat-cf", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  color: #E90000;
  margin-top: 4px;
}
.Form__field:not(:first-child) {
  margin-top: 16px;
}
@media only screen and (min-width: 861px) {
  .Form__field:not(:first-child) {
    margin-top: 20px;
  }
}
.Form__field--input {
  position: relative;
}
.Form__field--input.active-label label {
  top: 11px;
  font-family: "articulat-cf", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #757575;
}
@media only screen and (min-width: 861px) {
  .Form__field--input.active-label label {
    font-size: 12px;
  }
}
.Form__field--input input {
  font-family: "articulat-cf", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 21px 16px 13px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}
.Form__field--input input:focus-visible {
  border-color: #000;
}
@media only screen and (min-width: 861px) {
  .Form__field--input input {
    font-size: 16px;
    padding: 24px 16px 14px;
  }
}
.Form__field--input label {
  font-family: "articulat-cf", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  position: absolute;
  top: 18px;
  left: 16.5px;
  transition: 0.3s;
  z-index: 1;
}
@media only screen and (min-width: 861px) {
  .Form__field--input label {
    font-size: 16px;
    top: 19px;
    left: 18px;
  }
}
.Form__field--select {
  position: relative;
  height: fit-content;
}
.Form__field--select::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("./assets/images/arrow-select.svg") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 861px) {
  .Form__field--select::after {
    width: 24px;
    height: 24px;
  }
}
.Form__starRequired {
  color: #E90000;
}
.Form__caption {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-family: "articulat-cf", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
  text-align: center;
  color: #3B3A39;
}
@media only screen and (min-width: 861px) {
  .Form__caption {
    font-size: 16px;
  }
}
.Form__submit {
  margin-top: 38px;
  width: 100%;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #000 !important;
  cursor: pointer;
}
@media only screen and (min-width: 861px) {
  .Form__submit {
    margin-top: 40px;
  }
}

.Header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.Header__logo {
  display: block;
  margin: auto;
  width: 97px;
  height: 17px;
  background: url("./images/logo.svg") no-repeat;
  background-size: contain;
}
.Header__texts {
  margin-top: 16px;
}
.Header__title {
  font-family: "Now", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.9px;
}
.Header__text {
  margin-top: 8px;
  font-family: "articulat-cf", sans-serif !important;
  font-size: 10px;
  font-style: normal;
  font-weight: 800 !important;
  line-height: normal;
  letter-spacing: 0.3px !important;
  text-align: center;
}
.Header--hide {
  display: none;
}

.Footer {
  padding: 32px 0;
  border-top: 1px solid #E1DEDE;
}
@media only screen and (min-width: 861px) {
  .Footer {
    padding: 40px 0;
  }
}
.Footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Footer__logo {
  display: block;
  width: 91px;
  height: 16px;
  background: url("./images/logo.svg") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 861px) {
  .Footer__logo {
    width: 170px;
    height: 30px;
  }
}
.Footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.Footer__link {
  font-family: "articulat-cf", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
  color: #3B3A39;
  text-decoration: none;
}
@media only screen and (min-width: 861px) {
  .Footer__link {
    font-size: 15px;
    letter-spacing: 0.45px;
  }
}

@media only screen and (min-width: 861px) {
  .NewsletterJoin {
    margin-top: 42px;
  }
}
.NewsletterJoin__imageWrapper {
  position: relative;
  margin: auto;
  width: 211px;
  height: 303px;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__imageWrapper {
    width: 334px;
    height: 482px;
  }
}
.NewsletterJoin__imageText {
  position: absolute;
  padding: 8px 10px;
  height: fit-content;
  font-family: "articulat-cf", sans-serif !important;
  font-size: 10px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 1.15;
  color: #fff !important;
  background-color: #000;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.NewsletterJoin__imageText:first-of-type {
  top: 0;
  bottom: 0;
  left: -66px;
  margin: auto;
  width: 107px;
  border-radius: 10px 10px 0 10px;
}
.NewsletterJoin__imageText:nth-of-type(2) {
  top: 30px;
  right: -61px;
  width: 109px;
  border-radius: 10px 10px 10px 0;
}
.NewsletterJoin__imageText:nth-of-type(3) {
  bottom: 90px;
  right: -56px;
  width: 149px;
  border-radius: 10px 10px 10px 0;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__imageText {
    padding: 14px 20px 16px 20px;
    font-size: 14px !important;
  }
  .NewsletterJoin__imageText:first-of-type {
    top: 130px;
    bottom: unset;
    left: -258px;
    width: fit-content;
  }
  .NewsletterJoin__imageText:nth-of-type(2) {
    top: 70px;
    right: -190px;
    width: fit-content;
  }
  .NewsletterJoin__imageText:nth-of-type(3) {
    bottom: 100px;
    right: -316px;
    width: fit-content;
  }
}
.NewsletterJoin__join {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: 267px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__join {
    flex-direction: row;
    gap: 18px;
    top: unset;
    left: unset;
    right: 262px;
    bottom: 97px;
  }
}
.NewsletterJoin__joinImages {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__joinImages {
    order: 2;
  }
}
.NewsletterJoin__joinImage {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;
}
.NewsletterJoin__joinImage:not(:first-child) {
  margin-left: -20px;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__joinImage {
    width: 60px;
    height: 60px;
  }
}
.NewsletterJoin__joinTitle {
  font-family: "articulat-cf", sans-serif !important;
  font-size: 11px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__joinTitle {
    font-size: 15px !important;
    text-align: right;
  }
}
.NewsletterJoin__joinText {
  font-family: "articulat-cf", sans-serif !important;
  font-size: 10px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__joinText {
    font-size: 14px !important;
    text-align: right;
  }
}
.NewsletterJoin__text {
  margin-top: 80px;
  font-family: "articulat-cf", sans-serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 1.35 !important;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__text {
    font-size: 34px !important;
  }
}
.NewsletterJoin__text p {
  margin: 0 !important;
}
.NewsletterJoin__text strong {
  font-weight: 600 !important;
}
.NewsletterJoin__button {
  margin-top: 16px;
  width: 100%;
}
@media only screen and (min-width: 861px) {
  .NewsletterJoin__button {
    margin: 40px auto 0;
    width: fit-content;
  }
}

.NewsletterTextImage {
  margin-top: 40px;
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage {
    margin-top: 200px;
    padding-bottom: 120px;
    border-bottom: 1px solid #E1DEDE;
  }
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__wrapper {
    display: flex;
  }
}
.NewsletterTextImage__image {
  margin: 0 -5.5%;
  width: 111%;
  height: 302px;
  object-fit: cover;
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__image {
    margin: auto auto 80px;
    width: 755px;
    height: 607px;
    order: 2;
  }
}
.NewsletterTextImage__content {
  position: relative;
  margin-top: -60px;
  padding: 40px 16px;
  background-color: #fff;
  border-bottom: 1px solid #E1DEDE;
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__content {
    margin-top: auto;
    margin-right: -16%;
    padding: 0;
    height: fit-content;
    border-bottom: none;
  }
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__contentTexts {
    padding: 40px;
  }
}
.NewsletterTextImage__text {
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__text {
    margin-top: 40px;
  }
}
.NewsletterTextImage__text p {
  margin: 0 !important;
  font-family: "articulat-cf", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}
.NewsletterTextImage__text p:not(:first-child) {
  margin-top: 16px !important;
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__text p {
    font-size: 20px !important;
  }
}
.NewsletterTextImage__text strong {
  font-weight: 700 !important;
}
.NewsletterTextImage__button {
  margin-top: 29px;
  width: 100%;
}
@media only screen and (min-width: 861px) {
  .NewsletterTextImage__button {
    width: fit-content;
  }
}

.NewsletterTopics {
  padding: 40px 0;
}
@media only screen and (min-width: 861px) {
  .NewsletterTopics {
    padding: 120px 0;
  }
}
.NewsletterTopics__title {
  text-align: center;
}
.NewsletterTopics__topics {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterTopics__topics {
    margin-top: 40px;
  }
}
.NewsletterTopics__topicsItem {
  display: flex;
  padding: 12px 8px;
  align-items: center;
  gap: 4px;
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #E1DEDE;
  border-radius: 2px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.NewsletterTopics__topicsItem:not(:first-child) {
  margin-top: 8px;
}
.NewsletterTopics__topicsItem::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background: url("./assets/images/star.svg") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 861px) {
  .NewsletterTopics__topicsItem {
    padding: 22px 32px;
    gap: 16px;
    font-size: 18px;
  }
  .NewsletterTopics__topicsItem:not(:first-child) {
    margin-top: 16px;
  }
}
.NewsletterTopics__topicsItem--hide {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 8px;
  border-width: 0;
  margin: 0;
}
.NewsletterTopics__topicsItem--hide:not(:first-child) {
  margin: 0;
}
@media only screen and (min-width: 861px) {
  .NewsletterTopics__topicsItem--hide {
    padding: 0 32px;
  }
}
.NewsletterTopics__topicsItem--showing {
  opacity: 0;
  transform: translateY(20px);
}
.NewsletterTopics__button {
  margin: 24px auto 0;
  width: 100%;
}
.NewsletterTopics__button::after {
  transform: rotate(90deg);
}
.NewsletterTopics__button:hover .NewsletterTopics__buttonIcon {
  background: url("./assets/images/arrow-right-white.svg") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 861px) {
  .NewsletterTopics__button {
    margin: 64px auto 0;
    width: fit-content;
  }
}
.NewsletterTopics__buttonIcon {
  display: block;
  background: url("./assets/images/arrow-right.svg") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  transition: background 0.3s;
}
@media only screen and (min-width: 861px) {
  .NewsletterTopics__buttonIcon {
    width: 24px;
    height: 24px;
  }
}

.NewsletterLook {
  padding: 40px 0;
  background-color: #F7F7F6;
}
@media only screen and (min-width: 861px) {
  .NewsletterLook {
    padding: 120px 0;
  }
}
.NewsletterLook__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterLook__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
}
.NewsletterLook__title {
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .NewsletterLook__title {
    text-align: left;
  }
}
.NewsletterLook__content {
  padding: 24px 16px;
  background-color: #fff;
}
@media only screen and (min-width: 861px) {
  .NewsletterLook__content {
    padding: 40px;
  }
}
.NewsletterLook__contentText {
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}
@media only screen and (min-width: 861px) {
  .NewsletterLook__contentText {
    font-size: 18px;
  }
}
.NewsletterLook__contentText p {
  margin: 0 !important;
}
.NewsletterLook__contentText strong {
  font-weight: 600;
}
.NewsletterLook__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterLook__buttons {
    flex-direction: row;
    margin-top: 40px;
    gap: 40px;
  }
}
.NewsletterLook__button {
  width: fit-content;
}

.NewsletterQuestions {
  padding: 40px 0;
  border-top: 1px solid #E1DEDE;
  border-bottom: 1px solid #E1DEDE;
}
@media only screen and (min-width: 861px) {
  .NewsletterQuestions {
    padding: 120px 0;
  }
}
.NewsletterQuestions__accordion {
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterQuestions__accordion {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 861px) {
  .NewsletterQuestions__title {
    text-align: center;
  }
}

.NewsletterSubscriptions {
  padding: 40px 0;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions {
    padding: 120px 0;
  }
}
.NewsletterSubscriptions__title {
  text-align: center;
}
.NewsletterSubscriptions__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__items {
    flex-direction: row;
    justify-content: center;
    gap: 83px;
    margin-top: 80px;
  }
}
.NewsletterSubscriptions__item {
  padding: 32px 24px;
  border: 1px solid #000;
  border-radius: 15px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__item {
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    width: 480px;
  }
}
.NewsletterSubscriptions__itemTag {
  margin: 0 auto;
  padding: 8px 16px;
  width: fit-content;
  font-family: "articulat-cf", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 4px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemTag {
    font-size: 13px;
    letter-spacing: 0.65px;
  }
}
.NewsletterSubscriptions__itemTitle {
  margin-top: 16px;
  font-family: "Now", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemTitle {
    margin-top: 24px;
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}
.NewsletterSubscriptions__itemPriceWrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E1DEDE;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemPriceWrapper {
    margin-top: 24px;
    padding-bottom: 24px;
  }
}
.NewsletterSubscriptions__itemPrice {
  display: flex;
  align-items: end;
  gap: 8px;
}
.NewsletterSubscriptions__itemPriceMain {
  font-family: "articulat-cf", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.78px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemPriceMain {
    font-size: 35px;
    letter-spacing: 1.05px;
  }
}
.NewsletterSubscriptions__itemPricePeriod {
  font-family: "articulat-cf", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemPricePeriod {
    font-size: 17px;
    letter-spacing: 0.51px;
  }
}
.NewsletterSubscriptions__itemPriceRegular {
  font-family: "Now", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.3px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemPriceRegular {
    font-size: 13px;
    letter-spacing: 0.39px;
  }
}
.NewsletterSubscriptions__itemPriceRegular span {
  text-decoration: line-through;
}
.NewsletterSubscriptions__itemList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.NewsletterSubscriptions__itemListItem {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "articulat-cf", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
.NewsletterSubscriptions__itemListItem::before {
  content: "";
  display: block;
  background: url("./assets/images/ok.svg") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemListItem {
    gap: 8px;
    font-size: 16px;
  }
  .NewsletterSubscriptions__itemListItem::before {
    width: 24px;
    height: 24px;
  }
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemBottom {
    margin-top: auto;
  }
}
.NewsletterSubscriptions__itemButton {
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemButton {
    margin-top: 40px;
  }
}
.NewsletterSubscriptions__itemCaption {
  margin-top: 16px;
  font-family: "articulat-cf", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__itemCaption {
    height: 53px;
    font-size: 13px;
  }
}
.NewsletterSubscriptions__item--secondary {
  padding: 32px 24px;
  background-color: #000;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__item--secondary {
    margin: 0;
    padding: 40px;
    border-radius: 15px;
  }
}
.NewsletterSubscriptions__item--secondary .NewsletterSubscriptions__itemTag {
  background-color: #fff;
}
.NewsletterSubscriptions__item--secondary .NewsletterSubscriptions__itemTitle {
  color: #fff;
}
.NewsletterSubscriptions__item--secondary .NewsletterSubscriptions__itemPriceWrapper {
  color: #fff !important;
  border-color: #fff;
}
.NewsletterSubscriptions__item--secondary .NewsletterSubscriptions__itemListItem {
  color: #fff;
}
.NewsletterSubscriptions__item--secondary .NewsletterSubscriptions__itemListItem::before {
  background: url("./assets/images/ok-white.svg") no-repeat;
  background-size: contain;
}
.NewsletterSubscriptions__item--secondary .NewsletterSubscriptions__itemCaption {
  color: #fff;
}
.NewsletterSubscriptions__payment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__payment {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
  }
}
.NewsletterSubscriptions__paymentText {
  font-family: "articulat-cf", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.39px;
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__paymentText {
    font-size: 15px;
    letter-spacing: 0.45px;
    text-align: left;
  }
}
.NewsletterSubscriptions__paymentImage {
  width: auto;
  height: 14px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions__paymentImage {
    height: 18px;
  }
}
.NewsletterSubscriptions--secondary .NewsletterSubscriptions__item--secondary {
  margin-left: 0;
  margin-right: 0;
  padding: 32px 24px;
  border-radius: 15px;
}
@media only screen and (min-width: 861px) {
  .NewsletterSubscriptions--secondary .NewsletterSubscriptions__item--secondary {
    padding: 40px;
  }
}
.NewsletterSubscriptions--secondary .NewsletterSubscriptions__itemPriceWrapper {
  padding-bottom: 0;
  border: none;
}
.NewsletterSubscriptions--secondary .NewsletterSubscriptions__itemList {
  display: none;
}
.NewsletterSubscriptions--secondary .NewsletterSubscriptions__payment {
  display: none;
}

.archiwum-content {
  padding-top: 10rem;
}
.archiwum-content .archive-files-list {
  margin-top: 8rem;
}
.archiwum-content .archive-files-list .archive-file-item:not(:first-child) {
  margin-top: 2rem;
}
.archiwum-content .archive-files-list .archive-file-item a {
  bottom: 0;
  font-size: 3rem !important;
  background-color: white;
  padding: 4rem;
  border: 1px solid #3b3a39;
  width: fit-content;
  max-width: 80%;
  display: flex;
  justify-content: left;
  text-align: left;
  line-height: 1.2;
  color: black !important;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 3px;
}

.MarketingNewsHeader {
  color: #3B3A39;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader {
    background-color: #F7F7F6;
  }
}
.MarketingNewsHeader__top {
  padding-bottom: 40px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__top {
    padding: 120px 0;
    border-bottom: 1px solid #E1DEDE;
  }
}
.MarketingNewsHeader__image {
  margin: 0 -5.5%;
  width: 111%;
  height: auto;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__image {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 357px;
  }
}
.MarketingNewsHeader__title {
  margin-top: 40px;
  font-family: "Times New Roman", sans-serif;
  font-size: 33px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.33px;
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__title {
    margin-top: 56px;
    font-size: 50px;
    letter-spacing: 0.5px;
  }
}
.MarketingNewsHeader__subtitle {
  margin-top: 8px;
  font-family: "Now", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.21px;
  text-align: center;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__subtitle {
    margin-top: 24px;
    font-size: 40px;
    letter-spacing: 0.4px;
  }
}
.MarketingNewsHeader__text {
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__text {
    margin-top: 56px;
  }
}
.MarketingNewsHeader__text h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "articulat-cf", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
}
.MarketingNewsHeader__text h3:not(:first-child) {
  margin-top: 16px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__text h3 {
    font-size: 34px;
  }
}
.MarketingNewsHeader__text h3 strong {
  font-weight: 700;
}
.MarketingNewsHeader__text p {
  margin-bottom: 0;
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}
.MarketingNewsHeader__text p:not(:first-child) {
  margin-top: 16px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__text p {
    font-size: 20px;
  }
  .MarketingNewsHeader__text p:not(:first-child) {
    margin-top: 24px;
  }
}
.MarketingNewsHeader__button {
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__button {
    margin: 40px auto 0;
    width: fit-content;
  }
}
.MarketingNewsHeader__texts {
  padding: 40px 0;
  background-color: #F7F7F6;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__texts {
    padding: 120px 0;
  }
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsInner {
    display: flex;
    gap: 64px;
  }
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsWrapper {
    width: 50%;
  }
}
.MarketingNewsHeader__textsTitle {
  font-family: "Now", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsTitle {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}
.MarketingNewsHeader__textsText {
  margin-top: 24px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsText {
    margin-top: 40px;
  }
}
.MarketingNewsHeader__textsText p {
  margin-bottom: 0;
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}
.MarketingNewsHeader__textsText p:not(:first-child) {
  margin-top: 16px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsText p {
    font-size: 20px;
  }
}
.MarketingNewsHeader__textsList {
  margin-top: 40px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsList {
    margin-top: 0;
    width: 50%;
  }
}
.MarketingNewsHeader__textsListTitle {
  font-family: "articulat-cf", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsListTitle {
    font-size: 20px;
  }
}
.MarketingNewsHeader__textsListContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsListContent {
    gap: 16px;
    margin-top: 24px;
  }
}
.MarketingNewsHeader__textsListItem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 8px;
  background-color: #fff;
  border-radius: 4px;
}
.MarketingNewsHeader__textsListItem::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("./assets/images/ok-green.svg") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsListItem {
    gap: 24px;
    padding: 16px 40px 16px 24px;
  }
}
.MarketingNewsHeader__textsListItemTitle {
  font-family: "articulat-cf", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsListItemTitle {
    font-size: 20px;
  }
}
.MarketingNewsHeader__textsListItemText {
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsHeader__textsListItemText {
    margin-top: 4px;
    font-size: 18px;
  }
}

.MarketingNewsForm {
  padding: 40px 0;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm {
    padding: 120px 0 80px;
  }
}
.MarketingNewsForm__wrapper {
  display: block;
  margin: 0 auto;
  max-width: 562px;
}
.MarketingNewsForm__title {
  font-family: "articulat-cf", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #3B3A39;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__title {
    font-size: 34px;
  }
}
.MarketingNewsForm__form {
  margin: 24px auto 0;
  max-width: 460px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__form {
    margin: 40px auto 0;
  }
}
.MarketingNewsForm__join {
  margin-top: 48px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__join {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
  }
}
.MarketingNewsForm__joinImages {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__joinImages {
    margin-top: 20px;
    order: 2;
  }
}
.MarketingNewsForm__joinImage {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;
}
.MarketingNewsForm__joinImage:not(:first-child) {
  margin-left: -15px;
}
.MarketingNewsForm__joinTexts {
  margin-top: 20px;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__joinTexts {
    order: 1;
    margin-top: 0;
  }
}
.MarketingNewsForm__joinTitle {
  font-family: "articulat-cf", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #3B3A39;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__joinTitle {
    font-size: 17px;
  }
}
.MarketingNewsForm__joinSubtitle {
  margin-top: 4px;
  font-family: "articulat-cf", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #3B3A39;
}
@media only screen and (min-width: 861px) {
  .MarketingNewsForm__joinSubtitle {
    font-size: 16px;
  }
}

.page-template-marketing-news-template {
  margin: 0;
}

/*# sourceMappingURL=new-styles.css.map */
