@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
main {
  overflow: hidden;
}

.ss-header {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #3A8453;
  padding: 15px 0;
}
.ss-header .ss-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ss-header .ss-header-container .ss-logo-header {
  width: 20%;
}
.ss-header .ss-header-container .ss-menu-header {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ss-header .ss-header-container .ss-menu-header .ss-navigation {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}
.ss-header .ss-header-container .ss-menu-header .ss-navigation li + li {
  margin-left: 36px;
}
.ss-header .ss-header-container .ss-menu-header .ss-navigation li a {
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #fffbeb;
}
.ss-header .ss-header-container .ss-request-header {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.ss-header .ss-header-container .ss-request-header a {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  color: #3A8453;
  background: #fffbeb;
  border-radius: 24px;
  border: 2px solid #fffbeb;
  padding: 12px 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ss-header .ss-header-container .ss-request-header a:hover {
  color: #fffbeb;
  background: #3A8453;
}

.ss-header--mobile {
  display: none;
}

.ss-menu-mobile--open {
  display: none;
}

@media only screen and (max-width: 950px) {
  .ss-header {
    display: none;
  }
  .ss-header--mobile {
    background: #3A8453;
    display: block;
    padding: 15px 0;
  }
  .ss-header--mobile .ss-header-container--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ss-menu-mobile--open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background: #3A8453;
    z-index: 15;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container {
    padding: 15px 25px;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-button-menu--close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 120px;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-button-menu--close .ss-header-logo a img {
    height: 34px;
    width: auto;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-button-menu--close button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fffbeb;
    height: 40px;
    width: 40px;
    border-radius: 8px;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-menu-nav {
    margin-bottom: 120px;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-menu-nav ul li {
    margin-bottom: 21px;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-menu-nav ul li a {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    color: #fffbeb;
  }
  .ss-menu-mobile--open .ss-menu-mobile-container .ss-request-header a {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 36px;
    color: #3A8453;
    background: #fffbeb;
    border-radius: 24px;
    border: 2px solid #fffbeb;
    padding: 12px 24px;
  }
  .ss-header-open-menu--active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.cr-section-intro {
  background: #fffbeb url("../img/intro-bg.svg") no-repeat 0%;
  background-size: cover;
}
.cr-section-intro .cr-section-intro-bg {
  height: 95vh;
  padding-top: 150px;
}
.cr-section-intro .cr-section-intro-bg .cr-intro-title {
  max-width: 580px;
}
.cr-section-intro .cr-section-intro-bg .cr-intro-title h1 {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 26px;
  color: #fffbeb;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.cr-section-intro .cr-section-intro-bg .cr-intro-subtitle {
  max-width: 620px;
}
.cr-section-intro .cr-section-intro-bg .cr-intro-subtitle p {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 46px;
  color: #fffbeb;
}
.cr-section-intro .cr-section-intro-bg .cr-button-cta a {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 36px;
  color: #fffbeb;
  border-radius: 24px;
  border: 2px solid #fffbeb;
  padding: 12px 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cr-section-intro .cr-section-intro-bg .cr-button-cta a:hover {
  color: #3A8453;
  background: #fffbeb;
}
.cr-section-intro .cr-section-intro-bg .cr-intro-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cr-section-intro .cr-section-intro-bg .cr-intro-img img {
  max-height: 460px;
}

.cr-small-contact {
  padding: 38px 0;
  background: #3A8453;
}
.cr-small-contact .cr-small-contact-title {
  margin: 0 auto;
}
.cr-small-contact .cr-small-contact-title p {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #fffbeb;
}
.cr-small-contact .cr-small-form .wpcf7 form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.cr-small-contact .cr-small-form .wpcf7 form p label {
  line-height: 1;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input {
  border-radius: 24px;
  background: #fffbeb;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 240px;
  padding: 8px 16px;
  border: none;
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222222;
  margin-right: 16px;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::-webkit-input-placeholder {
  color: #3A8453;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::-moz-placeholder {
  color: #3A8453;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input:-ms-input-placeholder {
  color: #3A8453;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::-ms-input-placeholder {
  color: #3A8453;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::placeholder {
  color: #3A8453;
}
.cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cr-small-contact .cr-small-form .wpcf7 form p input[type=submit] {
  border-radius: 24px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 24px;
  height: 39px;
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #3A8453;
  background: #fffbeb;
  border: 2px solid #fffbeb;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.cr-small-contact .cr-small-form .wpcf7 form p input[type=submit]:hover {
  background: #3A8453;
  color: #fffbeb;
}
.cr-small-contact .cr-small-form .wpcf7 form p .wpcf7-spinner {
  display: none;
}
.cr-small-contact .cr-small-form .wpcf7 form .wpcf7-response-output {
  border-radius: 16px;
  background: #fffbeb;
  border-color: #fffbeb;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "DM Sans";
  color: #3A8453;
  margin: 0 auto;
  width: 25%;
  font-size: 14px;
  padding: 8px 12px;
}

.cr-section-steps {
  background: #fffbeb;
  padding: 120px 0 120px;
}
.cr-section-steps .cr-steps-title h2 {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
  color: #3A8453;
  text-transform: uppercase;
}
.cr-section-steps .cr-step {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cr-section-steps .cr-step .cr-img {
  margin-bottom: 16px;
}
.cr-section-steps .cr-step .cr-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 8px;
  color: #3A8453;
  text-transform: uppercase;
}
.cr-section-steps .cr-step .cr-description {
  max-width: 275px;
}
.cr-section-steps .cr-step .cr-description p {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 0;
  color: #616161;
}

.cr-section-about {
  background: #3A8453;
  padding: 120px 0;
}
.cr-section-about .cr-about-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
  color: #fffbeb;
  text-transform: uppercase;
}
.cr-section-about .cr-about-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cr-section-about .cr-about-img img {
  max-width: 550px;
  height: auto;
  border-radius: 30px;
}
.cr-section-about #text-block {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fffbeb;
  max-width: 500px;
}
.cr-section-about #text-block #more-text {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.6s ease, opacity 0.4s ease;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fffbeb;
}
.cr-section-about #text-block #more-text.open {
  max-height: 2000px; /* достатньо для всього тексту */
  opacity: 1;
}
.cr-section-about #text-block .ss-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}
.cr-section-about #text-block .ss-buttons button {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: dotted;
  color: #fffbeb;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.cr-section-about #text-block .ss-buttons button:hover {
  opacity: 0.6;
}

.cr-section-why {
  padding: 120px 0 60px;
  background: #fff;
}
.cr-section-why .cr-why-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
  color: #3A8453;
  text-transform: uppercase;
}
.cr-section-why .cr-step {
  padding: 24px;
  border-radius: 20px;
  background: #fffbeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 26px;
}
.cr-section-why .cr-step .cr-img {
  margin-bottom: 16px;
}
.cr-section-why .cr-step .cr-img img {
  height: 100px;
  width: auto;
}
.cr-section-why .cr-step .cr-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 8px;
  color: #3A8453;
  text-transform: uppercase;
}
.cr-section-why .cr-step .cr-description {
  max-width: 275px;
}
.cr-section-why .cr-step .cr-description p {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 0;
  color: #616161;
}

.cr-section-faq {
  padding: 60px 0;
  background: #fff;
}
.cr-section-faq .cr-faq-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 48px;
  color: #3A8453;
  text-transform: uppercase;
}
.cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card {
  background: #fffbeb;
  border: 1px solid #FEF4C9;
  border-radius: 24px;
}
.cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .ea-header {
  position: relative;
}
.cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .ea-header a {
  max-width: 450px;
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 0px;
  color: #3A8453;
}
.cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .ea-header a .ea-expand-icon {
  position: absolute;
  right: 20px;
  top: 30%;
  font-size: 20px;
  color: #3A8453;
}
.cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .sp-collapse {
  border-radius: 30px;
  overflow: hidden;
}
.cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .sp-collapse .ea-body p {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 16px;
  color: #616161;
}

.cr-section-seo-text {
  padding: 40px 0 120px;
  background: #fffbeb;
}
.cr-section-seo-text .cr-seo-container {
  padding: 40px;
  border-radius: 30px;
  background: #3A8453;
  overflow: scroll;
  max-height: 600px;
}
.cr-section-seo-text .cr-seo-container h2, .cr-section-seo-text .cr-seo-container h3, .cr-section-seo-text .cr-seo-container h4, .cr-section-seo-text .cr-seo-container h5, .cr-section-seo-text .cr-seo-container h6 {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
  color: #fffbeb;
}
.cr-section-seo-text .cr-seo-container p {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 21px;
  color: #fffbeb;
}
.cr-section-seo-text .cr-seo-container ul li {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 8px;
  color: #fffbeb;
}
.cr-section-seo-text .cr-seo-container ol li {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 8px;
  color: #fffbeb;
}

.cr-section-contact {
  padding: 60px 0;
  background: #3A8453;
}
.cr-section-contact .cr-contact-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
  color: #fffbeb;
  text-transform: uppercase;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label {
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #fffbeb;
  width: 48%;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input {
  border-radius: 24px;
  background: #fffbeb;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 16px;
  border: none;
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222222;
  margin-top: 8px;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::-webkit-input-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::-moz-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input:-ms-input-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::-ms-input-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label {
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #fffbeb;
  width: 100%;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea {
  border-radius: 24px;
  background: #fffbeb;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 16px;
  border: none;
  height: 100px;
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #222222;
  margin-top: 8px;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::placeholder {
  color: #3A8453;
}
.cr-section-contact .cr-contact-form .wpcf7 form input[type=submit] {
  border-radius: 24px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 24px;
  height: 39px;
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #3A8453;
  background: #fffbeb;
  border: 2px solid #fffbeb;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.cr-section-contact .cr-contact-form .wpcf7 form input[type=submit]:hover {
  background: #3A8453;
  color: #fffbeb;
}
.cr-section-contact .cr-contact-form .wpcf7 form .wpcf7-spinner {
  display: none;
}
.cr-section-contact .cr-contact-form .wpcf7 form .wpcf7-response-output {
  border-radius: 16px;
  background: #fffbeb;
  border-color: #fffbeb;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "DM Sans";
  color: #3A8453;
  margin: 0 auto;
  width: 25%;
  font-size: 14px;
  padding: 8px 12px;
}

.cr-section-review {
  background: #fffbeb;
  padding: 60px 0;
}
.cr-section-review .cr-review-title {
  font-family: "Archivo Black";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 36px;
  color: #3A8453;
  text-transform: uppercase;
}
.cr-section-review .cr-review-card {
  padding: 30px 40px;
  border-radius: 30px;
  border: 3px solid #3A8453;
  min-height: 300px;
}
.cr-section-review .cr-review-card .cr-slide-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.cr-section-review .cr-review-card .cr-slide-title .cr-slide-name {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  color: #3A8453;
  margin-left: 12px;
}
.cr-section-review .cr-review-card .cr-slide-description {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  color: #3A8453;
}

@media only screen and (max-width: 950px) {
  .cr-section-intro {
    background: #fffbeb;
  }
  .cr-section-intro .cr-section-intro-bg {
    height: 90vh;
    padding-top: 30px;
  }
  .cr-section-intro .cr-section-intro-bg .cr-intro-title {
    max-width: 580px;
  }
  .cr-section-intro .cr-section-intro-bg .cr-intro-title h1 {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 26px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-intro .cr-section-intro-bg .cr-intro-subtitle {
    max-width: 620px;
  }
  .cr-section-intro .cr-section-intro-bg .cr-intro-subtitle p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 46px;
    color: #616161;
  }
  .cr-section-intro .cr-section-intro-bg .cr-button-cta a {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 36px;
    color: #fffbeb;
    background: #3A8453;
    border-radius: 24px;
    border: 2px solid #3A8453;
    padding: 12px 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .cr-section-intro .cr-section-intro-bg .cr-button-cta a:hover {
    color: #fffbeb;
    background: #3A8453;
  }
  .cr-section-intro .cr-section-intro-bg .cr-intro-img {
    position: absolute;
    bottom: 35px;
  }
  .cr-section-intro .cr-section-intro-bg .cr-intro-img img {
    max-height: 520px;
  }
  .cr-small-contact {
    padding: 38px 0;
    background: #3A8453;
  }
  .cr-small-contact .cr-small-contact-title {
    margin: 0 auto;
  }
  .cr-small-contact .cr-small-contact-title p {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #fffbeb;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label {
    line-height: 1;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input {
    border-radius: 24px;
    background: #fffbeb;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    padding: 8px 16px;
    border: none;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #222222;
    margin-right: 0;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::-webkit-input-placeholder {
    color: #3A8453;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::-moz-placeholder {
    color: #3A8453;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input:-ms-input-placeholder {
    color: #3A8453;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::-ms-input-placeholder {
    color: #3A8453;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p label .wpcf7-form-control-wrap input::placeholder {
    color: #3A8453;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p input[type=submit] {
    border-radius: 24px;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 8px 24px;
    height: 39px;
    width: 100%;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #fffbeb;
    background: transparent;
    border: 2px solid #fffbeb;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p input[type=submit]:hover {
    background: #fffbeb;
    color: #3A8453;
  }
  .cr-small-contact .cr-small-form .wpcf7 form p .wpcf7-spinner {
    display: none;
  }
  .cr-small-contact .cr-small-form .wpcf7 form .wpcf7-response-output {
    border-radius: 16px;
    background: #fffbeb;
    border-color: #fffbeb;
    padding: 16px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: "DM Sans";
    color: #3A8453;
  }
  .cr-section-steps {
    background: #fffbeb;
    padding: 45px 0 45px;
  }
  .cr-section-steps .cr-steps-title h2 {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 36px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-steps .cr-step {
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cr-section-steps .cr-step .cr-img {
    margin-bottom: 16px;
  }
  .cr-section-steps .cr-step .cr-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 8px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-steps .cr-step .cr-description {
    max-width: 275px;
  }
  .cr-section-steps .cr-step .cr-description p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
    color: #616161;
  }
  .cr-section-about {
    background: #3A8453;
    padding: 45px 0;
  }
  .cr-section-about .cr-about-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 36px;
    color: #fffbeb;
    text-transform: uppercase;
  }
  .cr-section-about .cr-about-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 16px;
  }
  .cr-section-about .cr-about-img img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }
  .cr-section-about #text-block {
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #fffbeb;
    max-width: 500px;
  }
  .cr-section-about #text-block #more-text {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.6s ease, opacity 0.4s ease;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #fffbeb;
  }
  .cr-section-about #text-block #more-text.open {
    max-height: 2000px; /* достатньо для всього тексту */
    opacity: 1;
  }
  .cr-section-about #text-block .ss-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 24px;
  }
  .cr-section-about #text-block .ss-buttons button {
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: dotted;
    color: #fffbeb;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  .cr-section-about #text-block .ss-buttons button:hover {
    opacity: 0.6;
  }
  .cr-section-why {
    padding: 45px 0 20px;
    background: #fff;
  }
  .cr-section-why .cr-why-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 36px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-why .cr-step {
    padding: 24px;
    border-radius: 20px;
    background: #fffbeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 26px;
  }
  .cr-section-why .cr-step .cr-img {
    margin-bottom: 16px;
  }
  .cr-section-why .cr-step .cr-img img {
    height: 100px;
    width: auto;
  }
  .cr-section-why .cr-step .cr-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 8px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-why .cr-step .cr-description {
    max-width: 275px;
  }
  .cr-section-why .cr-step .cr-description p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
    color: #616161;
  }
  .cr-section-faq {
    padding: 45px 0 45px;
    background: #fff;
  }
  .cr-section-faq .cr-faq-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 48px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card {
    background: #fffbeb;
    border: 1px solid #FEF4C9;
    border-radius: 24px;
  }
  .cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .ea-header {
    position: relative;
  }
  .cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .ea-header a {
    max-width: 300px;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 0px;
    color: #3A8453;
  }
  .cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .ea-header a .ea-expand-icon {
    position: absolute;
    right: 20px;
    top: 30%;
    font-size: 20px;
    color: #3A8453;
  }
  .cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .sp-collapse {
    border-radius: 30px;
    overflow: hidden;
  }
  .cr-section-faq #sp_easy_accordion-1753806882 #sp-ea-56 .ea-card .sp-collapse .ea-body p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 16px;
    color: #616161;
  }
  .cr-section-contact {
    padding: 45px 0;
    background: #3A8453;
  }
  .cr-section-contact .cr-contact-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 36px;
    color: #fffbeb;
    text-transform: uppercase;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label {
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #fffbeb;
    width: 100%;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input {
    border-radius: 24px;
    background: #fffbeb;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 8px 16px;
    border: none;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #222222;
    margin-top: 8px;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::-webkit-input-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::-moz-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input:-ms-input-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::-ms-input-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .cr-1-row p label .wpcf7-form-control-wrap input::placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label {
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #fffbeb;
    width: 100%;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea {
    border-radius: 24px;
    background: #fffbeb;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 8px 16px;
    border: none;
    height: 100px;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #222222;
    margin-top: 8px;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::-moz-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form p label .wpcf7-form-control-wrap textarea::placeholder {
    color: #3A8453;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form input[type=submit] {
    border-radius: 24px;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 8px 24px;
    height: 39px;
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #3A8453;
    background: #fffbeb;
    border: 2px solid #fffbeb;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form input[type=submit]:hover {
    background: #3A8453;
    color: #fffbeb;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .wpcf7-spinner {
    display: none;
  }
  .cr-section-contact .cr-contact-form .wpcf7 form .wpcf7-response-output {
    border-radius: 16px;
    background: #fffbeb;
    border-color: #fffbeb;
    padding: 16px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: "DM Sans";
    color: #3A8453;
  }
  .cr-section-seo-text {
    padding: 0px 0 40px;
    background: #fffbeb;
  }
  .cr-section-seo-text .cr-seo-container {
    padding: 26px 36px;
    border-radius: 30px;
    background: #3A8453;
    overflow: scroll;
    max-height: 600px;
  }
  .cr-section-seo-text .cr-seo-container h2, .cr-section-seo-text .cr-seo-container h3, .cr-section-seo-text .cr-seo-container h4, .cr-section-seo-text .cr-seo-container h5, .cr-section-seo-text .cr-seo-container h6 {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 36px;
    color: #fffbeb;
  }
  .cr-section-seo-text .cr-seo-container p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 21px;
    color: #fffbeb;
  }
  .cr-section-seo-text .cr-seo-container ul li {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 8px;
    color: #fffbeb;
  }
  .cr-section-seo-text .cr-seo-container ol li {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 8px;
    color: #fffbeb;
  }
  .cr-section-review {
    background: #fffbeb;
    padding: 45px 0;
  }
  .cr-section-review .cr-review-title {
    font-family: "Archivo Black";
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 36px;
    color: #3A8453;
    text-transform: uppercase;
  }
  .cr-section-review .cr-review-card {
    padding: 20px 30px;
    border-radius: 30px;
    border: 3px solid #3A8453;
    min-height: 300px;
    margin-bottom: 16px;
  }
  .cr-section-review .cr-review-card .cr-slide-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 16px;
  }
  .cr-section-review .cr-review-card .cr-slide-title .cr-slide-name {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    color: #3A8453;
    margin-left: 12px;
  }
  .cr-section-review .cr-review-card .cr-slide-description {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    color: #3A8453;
  }
}
.cr-footer {
  padding: 40px 0;
  background: #3A8453;
}
.cr-footer .cr-footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #fffbeb;
  padding: 0px 0 30px;
}
.cr-footer .cr-footer-container .cr-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cr-footer .cr-footer-container .cr-footer-nav ul li a {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  color: #fffbeb;
}
.cr-footer .cr-footer-container .cr-footer-nav ul li + li {
  margin-left: 12px;
}
.cr-footer .cr-footer-copyright {
  padding: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cr-footer .cr-footer-copyright .cr-copyright-text {
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  color: #fffbeb;
}
.cr-footer .cr-footer-copyright a {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  color: #fffbeb;
  text-decoration: underline;
}

@media only screen and (max-width: 950px) {
  .cr-footer {
    padding: 40px 0;
    background: #3A8453;
  }
  .cr-footer .cr-footer-container {
    display: block;
    border-bottom: 2px solid #fffbeb;
    padding: 0px 0 30px;
  }
  .cr-footer .cr-footer-container .cr-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    margin-top: 8px;
  }
  .cr-footer .cr-footer-container .cr-footer-nav ul li a {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    color: #fffbeb;
  }
  .cr-footer .cr-footer-container .cr-footer-nav ul li + li {
    margin-left: 0;
  }
  .cr-footer .cr-footer-copyright {
    padding: 30px 0 0;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cr-footer .cr-footer-copyright .cr-copyright-text {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    color: #fffbeb;
  }
  .cr-footer .cr-footer-copyright a {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
    color: #fffbeb;
    text-decoration: underline;
  }
}