@charset "UTF-8";
:root {
  margin-top: 0 !important;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

body {
  overflow-x: hidden;
  background-color: white;
}

*:focus {
  outline: none;
  border: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Mulish";
}
body .technical-name {
  display: none;
}
body.logged-in .technical-name {
  display: flex;
}

.l-wrapper {
  padding: 0 80px;
  max-width: 1680px;
  margin: 0 auto;
}
@media (max-width: 1239px) {
  .l-wrapper {
    padding: 0 15px;
  }
}

.t-title {
  font-size: 80px;
  font-family: "Mulish";
}
@media (max-width: 1239px) {
  .t-title {
    font-size: 40px;
    line-height: 1;
  }
}

.t-subtitle {
  font-size: 25px;
  font-family: "Mulish";
  color: #5a5a5a;
  font-weight: 300;
}

.t-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.13;
  letter-spacing: 0.96px;
}

.basic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  text-align: center;
  font-family: "Mulish";
  background-color: #70bf54;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.basic-button .text {
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: 0.96px;
  color: #fff;
}
.basic-button:hover {
  background-color: #f58220;
}
.basic-button--outline {
  padding: 13px 30px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
}
.basic-button--outline .text {
  color: #5a5a5a;
}
.basic-button--outline:hover {
  background-color: #5a5a5a;
}
.basic-button--outline:hover .text {
  color: #fff;
}

h2 {
  font-size: 80px;
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 3.2px;
  text-align: left;
}

h3 {
  font-size: 62px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 2.48px;
  text-align: right;
  color: #fff;
}

h4 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.46;
  letter-spacing: 0.52px;
}

.header-font {
  font-family: "Mulish";
}

.decorative-font {
  font-family: "Mulish";
}

.content-font {
  font-family: "Mulish";
}

@media (max-width: 1239px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-top {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.logged-in .site-top {
  top: 32px;
}
.site-top.is-scrolled, .page-simple-text .site-top {
  box-shadow: 0px 10px 15px -20px rgb(66, 68, 90);
  background-color: #fff;
  transition: background-color 0.3s;
}
.site-top__top {
  height: 40px;
  background-color: #5a5a5a;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
}
.site-top__bottom {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 30px;
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.site-top__center {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 60px;
}
.site-top__left {
  margin-left: 50px;
}
.site-top__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.site-top__logo {
  height: 55px;
  position: relative;
}
.site-top__logo a {
  height: 100%;
  width: -webkit-fit-content;
  width: fit-content;
}
.site-top__logo img {
  height: 45px;
}
.site-top__logo .logo-img-static {
  opacity: 1;
}
.site-top__logo .logo-img-scrolled {
  opacity: 0;
  display: none;
}
.site-top__navigation {
  margin-left: 60px;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-top__navigation .menu {
  position: relative;
}
.site-top__navigation .menu li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: color 0.3s;
}
.site-top__navigation .menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #ffe538;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 10;
  width: 200px;
  border: 1px solid #000;
}
.site-top__navigation .menu li ul.sub-menu:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -12px;
  border-right: 12px solid transparent;
  border-bottom: 5px solid #000;
  border-left: 12px solid transparent;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}
.site-top__navigation .menu li ul.sub-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}
.site-top__navigation .menu li ul.sub-menu li {
  padding: 13px 15px;
  text-align: center;
  transition: background-color 0.3s;
}
.site-top__navigation .menu li ul.sub-menu li:hover {
  background-color: #005b41;
}
.site-top__navigation .menu li ul.sub-menu li:hover a {
  color: #fff;
}
.site-top__navigation .menu li ul.sub-menu li a {
  color: #5a5a5a;
  text-decoration: none;
  font-size: 16px;
}
.site-top__navigation .menu li:hover ul {
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
}
.site-top__navigation .menu li:hover ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateX(-50%);
}
.site-top__navigation .menu li:hover ul li:last-child::after {
  content: none;
}
.site-top__navigation .menu a {
  text-decoration: none;
  color: #5a5a5a;
  font-weight: 300;
}
.site-top__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin-right: 15px;
}
.site-top__contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.84px;
  text-align: right;
  color: #fff;
}
.site-top__contact-item a {
  color: #fff;
  transition: color 0.2s;
}
.site-top__contact-item a:hover {
  color: #f58220;
}
.site-top__contact-ico {
  margin-right: 10px;
  position: relative;
  width: 24px;
  display: flex;
  align-items: center;
}
.site-top__contact-ico img {
  width: 100%;
}
.site-top__socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-top__socials-item {
  align-items: center;
  width: 25px;
  display: flex;
}
.site-top__socials-item img {
  width: 100%;
}
.site-top .menu-desktop-container {
  font-family: "Mulish";
  font-size: 25px;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-top .menu-desktop-container ul.menu {
  display: flex;
  gap: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-top .menu-desktop-container ul.menu .menu-toggle {
  display: none;
}
.site-top .menu-desktop-container ul li {
  text-decoration: none;
  list-style-type: none;
  align-items: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: background-color 0.2s;
}
.site-top .menu-desktop-container ul li.current_page_item a::before {
  transform: scaleX(1);
}
.site-top .menu-desktop-container ul li:hover {
  cursor: pointer;
}
.site-top .menu-desktop-container a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0.96px;
  text-align: right;
  color: #231f20;
}
.site-top .menu-desktop-container a:hover {
  color: #f58220;
}

.mobile-nav {
  display: none;
}

@media (max-width: 1600px) {
  .site-top .menu-desktop-container a {
    font-size: 14px;
  }
}
@media (max-width: 1239px) {
  .site-top {
    display: none;
  }
  .mobile-nav {
    display: flex;
    position: relative;
    height: 60px;
  }
  .mobile-nav a {
    display: block;
    height: 100%;
  }
  .mobile-nav__header {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    background-color: #fff;
    width: 100%;
    z-index: 100;
  }
  .mobile-nav a.mobile-nav__button {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    font-size: 14px;
    background-color: #70bf54;
    letter-spacing: 1px;
    color: #fff;
  }
  .mobile-nav__logo {
    height: 100%;
    width: 80px;
    padding: 10px;
    padding: 20px 10px 0 0;
  }
  .mobile-nav__logo img {
    height: 75%;
  }
  .mobile-nav__hamburger-hld {
    position: fixed;
    top: 7px;
    right: 0;
    padding: 40px;
    z-index: 101;
    display: block;
  }
  .mobile-nav__hamburger {
    width: 35px;
    height: 30px;
    position: absolute;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    margin-bottom: 20px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    display: flex;
  }
  .mobile-nav__hamburger:hover {
    cursor: pointer;
  }
  .mobile-nav__hamburger::after, .mobile-nav__hamburger::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: #5a5a5a;
    transition: transform 0.3s;
  }
  .mobile-nav__hamburger::after {
    top: 0;
  }
  .mobile-nav__hamburger::before {
    bottom: 0;
  }
  .mobile-nav__hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #5a5a5a;
    transition: opacity 0.2s;
  }
  .mobile-nav__hamburger.is-clicked > .mobile-nav__hamburger-line {
    opacity: 0;
  }
  .mobile-nav__hamburger.is-clicked::after {
    transform: translateY(13px) rotate(-45deg);
  }
  .mobile-nav__hamburger.is-clicked::before {
    transform: translateY(-5px) rotate(45deg);
  }
  .mobile-nav__navitagion {
    position: fixed;
    z-index: 100;
    top: 70px;
    right: -65vw;
    width: 65vw;
    height: calc(100% - 70px);
    background-color: #fff;
  }
  .mobile-nav__navitagion .menu-desktop-container {
    margin-top: 50px;
  }
  .mobile-nav__navitagion .menu-desktop-container ul {
    text-decoration: none;
    margin-left: 50px;
    list-style-type: none;
  }
  .mobile-nav__navitagion .menu-desktop-container ul li {
    margin-bottom: 18px;
  }
  .mobile-nav__navitagion .menu-desktop-container ul li .menu-toggle {
    display: inline;
  }
  .mobile-nav__navitagion .menu-desktop-container ul li .menu-toggle .icon {
    display: inline-block;
    transform: rotate(90deg);
  }
  .mobile-nav__navitagion .menu-desktop-container ul li.expanded .menu-toggle .icon {
    transform: rotate(-90deg);
  }
  .mobile-nav__navitagion .menu-desktop-container ul li a {
    font-family: "Mulish";
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #5a5a5a;
    text-transform: uppercase;
  }
  .mobile-nav__navitagion .menu-desktop-container ul li.current_page_item a {
    color: #ffe538;
  }
  .mobile-nav__navitagion .menu-desktop-container .menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    margin-left: 0;
    margin-top: 5px;
  }
  .mobile-nav__navitagion .menu-desktop-container .menu .sub-menu li {
    margin-bottom: 10px;
  }
  .mobile-nav__navitagion .menu-desktop-container .menu .sub-menu li a {
    text-transform: none;
    font-size: 14px;
  }
  .mobile-nav__navitagion .menu-desktop-container .menu-item.expanded > .sub-menu {
    max-height: 300px;
    opacity: 1;
  }
  .mobile-nav__navitagion .menu-desktop-container .menu .sub-menu.open {
    display: block;
  }
  .mobile-nav__navitagion .menu-desktop-container .menu-item-has-children.expanded > a {
    font-weight: 400;
  }
  .mobile-nav__navitagion.is-active {
    transform: translateX(-65vw);
    transition: transform 0.3s;
    box-shadow: -65px 50px 106px 1px rgba(90, 90, 90, 0.3);
  }
}
@media (max-width: 767px) {
  .mobile-nav__header {
    height: 70px;
    box-shadow: 0px 10px 15px -20px rgb(66, 68, 90);
  }
  .mobile-nav__hamburger {
    margin-bottom: 0;
    height: 20px;
  }
  .mobile-nav__hamburger-hld {
    padding: 30px 40px;
  }
  .mobile-nav__logo {
    height: 55px;
    margin-left: 15px;
  }
  .mobile-nav__footer {
    position: absolute;
    right: 0;
    bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 20px 20px 20px;
    background-color: #70bf54;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav__footer .text {
    font-size: 14px;
    color: #fff;
  }
  .mobile-nav__footer .link--olx {
    height: 24px;
  }
  .mobile-nav__footer .link {
    display: inline-block;
  }
  .mobile-nav__footer .link .icon {
    height: 30px;
  }
  .mobile-nav__footer .link .icon img {
    width: auto;
    height: 100%;
  }
  .mobile-nav__footer-socials {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
  }
}
.footer {
  width: 100%;
}
.footer__top {
  background-color: #5a5a5a;
  padding: 80px 0;
}
@media (max-width: 1239px) {
  .footer__top {
    padding: 30px 0 30px;
  }
}
.footer__wrapper {
  padding: 0 130px;
}
@media (max-width: 1239px) {
  .footer__wrapper {
    padding: 0 15px;
  }
}
.footer__wrapper--top {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1239px) {
  .footer__wrapper--top {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__wrapper--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 1239px) {
  .footer__wrapper--bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer__col {
  position: relative;
  width: -webkit-max-content;
  width: max-content;
}
.footer__col--sygnet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
@media (max-width: 1239px) {
  .footer__col--sygnet {
    grid-column: 1/-1;
    margin-right: unset;
  }
}
@media (max-width: 1239px) {
  .footer__col--info {
    grid-column: 1/-1;
  }
}
.footer__sygnet {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  height: 100%;
}
@media (max-width: 1239px) {
  .footer__sygnet {
    max-width: 200px;
  }
}
@media (max-width: 1239px) {
  .footer__data-and-company {
    display: flex;
    flex-direction: column;
  }
}
.footer__company-name {
  position: relative;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.46;
  letter-spacing: 0.52px;
  color: #fff;
  margin-bottom: 40px;
}
.footer__company-name::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .footer__company-name::before {
    content: none;
  }
}
.footer__data-columns {
  display: flex;
  gap: 100px;
}
@media (max-width: 1239px) {
  .footer__data-columns {
    flex-direction: column;
    gap: 15px;
  }
}
.footer__data-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  width: -webkit-fit-content;
  width: fit-content;
}
.footer__data-group:last-child {
  margin-bottom: 0;
}
.footer__data-group--ows {
  margin-top: 12px;
}
.footer__label {
  margin: 0 0 4px;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.96px;
}
.footer__text {
  margin: 0;
  display: inline-block;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.96px;
  text-decoration: none;
}
.footer__text--link {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.footer__text--link:hover {
  color: #70bf54;
}
.footer__link {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.96px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #70bf54;
}
.footer__link--ows {
  font-weight: 600;
}
.footer__social-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.footer__social-link:hover .footer__social-name {
  color: #f58220;
}
.footer__social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__social-name {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.96px;
  transition: color 0.2s ease;
}
.footer__bottom {
  background-color: #231f20;
  padding: 18px 0;
}
.footer__copy {
  margin: 0;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .footer__copy {
    white-space: normal;
  }
}
.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu-list li a {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.56px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__menu-list li a:hover {
  color: #70bf54;
}
.footer__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.footer__lang-sep {
  color: #fff;
  font-size: 14px;
  opacity: 0.5;
}
.footer__lang-link {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.footer__lang-link--active {
  opacity: 1;
  font-weight: 600;
}
.footer__lang-link:hover {
  opacity: 1;
}

@font-face {
  font-family: "Mulish";
  src: url("../assets/fonts/Mulish-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../assets/fonts/Mulish-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../assets/fonts/Mulish-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../assets/fonts/Mulish-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.l-section--banner {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.l-wrapper--banner {
  padding: 0 130px;
}
@media (max-width: 1239px) {
  .l-wrapper--banner {
    padding: 0 15px;
  }
}

.banner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 200px 0 0 0;
}
@media (max-width: 1023px) {
  .banner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
}
.banner__col {
  flex: 1;
}
.banner__col--content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  max-width: 340px;
}
@media (max-width: 1023px) {
  .banner__col--content {
    align-items: flex-start;
  }
}
@media (max-width: 1500px) {
  .banner__col--content {
    align-items: flex-start;
  }
}
.banner__col--media {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1500px) {
  .banner__col--media {
    max-width: 900px;
  }
}
.banner__title {
  font-family: "Mulish";
  font-size: 43px;
  line-height: 1.16;
  letter-spacing: 0.86px;
  text-align: right;
  color: #231f20;
  margin: 0;
  font-weight: 300;
}
.banner__title strong,
.banner__title b {
  font-weight: 600;
}
@media (max-width: 1023px) {
  .banner__title {
    font-size: 28px;
    text-align: left;
  }
}
@media (max-width: 1500px) {
  .banner__title {
    font-size: 38px;
  }
}
.banner__subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 1.32px;
  text-align: right;
  color: #5a5a5a;
}
@media (max-width: 1023px) {
  .banner__subtitle {
    font-size: 16px;
    text-align: left;
  }
}
@media (max-width: 1500px) {
  .banner__subtitle {
    font-size: 21px;
  }
}
.banner__cta {
  align-self: flex-end;
}
@media (max-width: 1239px) {
  .banner__cta {
    align-self: flex-start;
  }
}
.banner__secondary-cta {
  align-self: flex-start;
}
@media (max-width: 1239px) {
  .banner__secondary-cta {
    align-self: flex-end;
  }
}
.banner__list-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 1.32px;
  text-align: left;
  color: #5a5a5a;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1239px) {
  .banner__list-text {
    font-size: 16px;
    text-align: right;
    margin-top: 25px;
  }
}
@media (max-width: 1500px) {
  .banner__list-text {
    font-size: 17px;
  }
}
.banner__media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 510px;
}
@media (max-width: 1239px) {
  .banner__media-wrap {
    display: none;
  }
}
.banner__video, .banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner__image--desktop {
  display: block;
}
@media (max-width: 1023px) {
  .banner__image--desktop {
    display: none;
  }
}
.banner__image--mobile {
  display: none;
}
@media (max-width: 1023px) {
  .banner__image--mobile {
    display: block;
  }
}
.banner__video-btn-wrap {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 2;
}
.banner__video-btn {
  position: relative;
  left: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #5a5a5a;
  color: #fff;
  font-family: "Mulish";
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px 0 0 4px;
  transition: background-color 0.3s ease;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
}
.banner__video-btn:hover {
  background-color: #000;
}
.banner__video-btn-arrow {
  font-size: 16px;
  color: #70bf54;
}
.banner__circle-signet {
  width: 230px;
  height: 230px;
  box-shadow: 0.6px 0.8px 19px 0 rgba(1, 1, 1, 0.13);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  bottom: -150px;
  right: -50px;
}
.banner__circle-signet img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.banner__icons {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 767px) {
  .banner__icons {
    gap: 25px;
  }
}
.banner__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.banner__icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
@media (max-width: 1500px) {
  .banner__icon-img {
    width: 40px;
    height: 40px;
  }
}
.banner__icon-text {
  font-size: 15px;
  line-height: 1.4;
  color: #5a5a5a;
}
.banner__icon-text strong,
.banner__icon-text b {
  font-weight: 700;
}

.l-section--banner-no-photo {
  position: relative;
  overflow: hidden;
  background-color: #5a5a5a;
  padding-top: 150px;
}
@media (max-width: 1023px) {
  .l-section--banner-no-photo {
    padding-top: 0;
  }
}

.banner__signet {
  position: absolute;
  left: 130px;
  bottom: -60px;
  z-index: 0;
  width: 380px;
  max-width: 40%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .banner__signet {
    width: 90vw;
    left: 15px;
    bottom: -140px;
    max-width: unset;
  }
}

.banner--no-photo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 140px 0 60px;
}
@media (max-width: 1239px) {
  .banner--no-photo {
    padding: 80px 0 60px;
  }
}
@media (max-width: 1023px) {
  .banner--no-photo {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 35px 0 60px;
  }
}
.banner--no-photo .banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #dddedd;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .banner--no-photo .banner__breadcrumb {
    font-size: 14px;
    letter-spacing: 0.84px;
    margin-bottom: 12px;
  }
}
.banner--no-photo .banner__breadcrumb a {
  color: #dddedd;
  text-decoration: none;
}
.banner--no-photo .banner__breadcrumb a:hover {
  text-decoration: underline;
}
.banner--no-photo .banner__title--no-photo {
  font-family: "Mulish";
  font-size: 43px;
  line-height: 1.16;
  letter-spacing: 0.86px;
  text-align: left;
  color: #fff;
  margin: 0;
  font-weight: 300;
}
.banner--no-photo .banner__title--no-photo strong,
.banner--no-photo .banner__title--no-photo b {
  font-weight: 600;
}
@media (max-width: 1023px) {
  .banner--no-photo .banner__title--no-photo {
    font-size: 28px;
  }
}
@media (max-width: 1500px) {
  .banner--no-photo .banner__title--no-photo {
    font-size: 38px;
  }
}
.banner--no-photo .banner__col--description {
  position: relative;
}
.banner--no-photo .banner__col--description::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130px;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .banner--no-photo .banner__col--description::before {
    display: none;
  }
}
.banner--no-photo .banner__subtitle--no-photo {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 1.32px;
  text-align: left;
  color: #dddedd;
}
@media (max-width: 1023px) {
  .banner--no-photo .banner__subtitle--no-photo {
    font-size: 16px;
  }
}
@media (max-width: 1500px) {
  .banner--no-photo .banner__subtitle--no-photo {
    font-size: 21px;
  }
}
.banner--no-photo .banner__cta--no-photo {
  margin-top: 32px;
}

.l-section--photo-text-right {
  margin: 110px 0;
  position: relative;
  z-index: 10;
  background-color: #fff;
}

.l-wrapper--photo-text-right {
  padding: 0 130px;
}

.photo-text-right {
  display: flex;
}
.photo-text-right__photo-hld {
  position: relative;
  width: 50%;
}
.photo-text-right__content-hld {
  width: 50%;
  display: flex;
  align-items: center;
  margin-left: 150px;
}
.photo-text-right__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-weight: 400;
}
.photo-text-right__header h2 {
  margin-bottom: 10px;
  font-size: 54px;
  line-height: 1.1;
}
@media (max-width: 1241px) {
  .photo-text-right__header h2 {
    font-size: 40px;
  }
}
.photo-text-right__text {
  margin: 30px 0 30px 0;
}
.photo-text-right__text p {
  margin-bottom: 15px;
}
.photo-text-right__photo--is-relative {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 45%;
}
@media (min-width: 1500px) {
  .photo-text-right__photo--is-relative {
    bottom: -100px;
  }
}
.photo-text-right__photo-inner {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 100%;
}
.photo-text-right__photo--is-relative .photo-text-right__photo-inner {
  padding-top: 110%;
}
.photo-text-right__photo--is-relative .photo-text-right__photo-inner::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: #70bf54;
}
@media (max-width: 1023px) {
  .photo-text-right__photo--is-relative .photo-text-right__photo-inner::before {
    top: -14px;
    right: -14px;
  }
}
.photo-text-right__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.photo-text-right__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-text-right__highlights {
  margin-top: 70px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
}
.photo-text-right__highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.photo-text-right__highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-text-right__highlight-icon img {
  width: 100%;
  height: auto;
}
.photo-text-right__highlight-text {
  font-size: 16px;
  color: #5a5a5a;
}

@media (max-width: 1239px) {
  .l-section--photo-text-right {
    margin: 0;
  }
  .l-wrapper--photo-text-right {
    padding: 0 15px;
  }
}
@media (max-width: 1023px) {
  .photo-text-right {
    flex-direction: column-reverse;
  }
  .photo-text-right__photo-hld, .photo-text-right__content-hld {
    width: 100%;
    margin: 0;
  }
  .photo-text-right__content-hld {
    justify-content: center;
    text-align: center;
    margin: 50px 0;
  }
  .photo-text-right__content {
    margin: 0 auto;
    align-items: center;
  }
  .photo-text-right__photo--is-relative {
    position: static;
    margin-top: 15px;
    width: 100%;
  }
  .photo-text-right__header {
    margin: 0 auto 20px auto;
  }
  .photo-text-right__text {
    max-width: unset;
  }
  .photo-text-right__photo-inner {
    padding-top: 100%;
  }
}
@media (max-width: 767px) {
  .photo-text-right__highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .photo-text-right__highlight-item {
    min-width: 200px;
  }
}
.l-section--photo-text-left {
  margin: 100px 0 0 0;
  position: relative;
  background-color: #fff;
}

.l-wrapper--photo-text-left {
  margin: 0 auto;
  padding: 100px 80px;
}

.photo-text-left {
  display: flex;
  flex-direction: row;
}
.photo-text-left__photo-hld {
  position: relative;
  width: 50%;
}
.photo-text-left__content-hld {
  width: 50%;
  display: flex;
  align-items: center;
  margin-right: 150px;
  position: relative;
}
.photo-text-left__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.photo-text-left__header-hld {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
@media (max-width: 1500px) {
  .photo-text-left__header-hld {
    margin-bottom: 20px;
  }
}
.photo-text-left__header {
  color: #231f20;
}
.photo-text-left__header h2 {
  margin-bottom: 10px;
  font-size: 55px;
  line-height: 1.1;
}
@media (max-width: 1241px) {
  .photo-text-left__header h2 {
    font-size: 40px;
  }
}
.photo-text-left__text {
  max-width: 600px;
  color: #5a5a5a;
}
.photo-text-left__button {
  margin-top: 20px;
}
.photo-text-left__photo {
  position: relative;
}
.photo-text-left__photo-inner {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 70%;
}
.photo-text-left__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
}
.photo-text-left__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1239px) {
  .l-section--photo-text-left {
    margin: 70px 0;
  }
  .l-wrapper--photo-text-left {
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .photo-text-left {
    flex-direction: column;
  }
  .photo-text-left__photo-hld, .photo-text-left__content-hld {
    width: 100%;
    margin: 0;
  }
  .photo-text-left__content-hld {
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .photo-text-left__content {
    margin: 0 auto;
    align-items: center;
  }
  .photo-text-left__header {
    margin: 0 auto 20px auto;
  }
  .photo-text-left__text {
    max-width: unset;
  }
  .photo-text-left__photo-inner {
    padding-top: 72%;
  }
}
@media (max-width: 767px) {
  .l-section--photo-text-left {
    margin: 40px 0;
  }
  .l-wrapper--photo-text-left {
    padding: 0 15px;
  }
}
.l-section--content-accordions {
  margin: 115px 0 100px;
}

.l-wrapper--content-accordions {
  padding: 0 80px;
}

.content-accordions-item {
  border: 1px solid #5a5a5a;
  margin-bottom: 25px;
}
.content-accordions-item__title-box {
  display: flex;
  flex-direction: row;
  position: relative;
  cursor: pointer;
  padding: 15px 0 15px 40px;
  border-bottom: solid 1px #5a5a5a;
  font-family: "Mulish";
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  line-height: 1.82;
  letter-spacing: -0.44px;
  text-align: left;
  transition: background-color 0.3s;
  background-color: #5a5a5a;
}
.content-accordions-item__icon-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
}
.content-accordions-item__icon-box--editor-mode {
  cursor: pointer;
}
.content-accordions-item__icon {
  width: 20px;
  height: auto;
  transition: transform 0.2s;
}
.content-accordions-item.is-active-accordion .content-accordions-item__icon {
  transform: scale(1, -1);
}
.content-accordions-item__text-box {
  height: 0;
  overflow: hidden;
}
.content-accordions-item__text-box-inner {
  padding: 19px 30px 19px 40px;
  font-family: "Mulish";
  font-weight: 300;
  line-height: 1.7;
  color: #231f20;
}
.content-accordions-item__text-box-inner p {
  margin-bottom: 15px;
}
.content-accordions-item__text-box-inner p strong {
  font-weight: 700;
}

.content-accordions__title {
  font-size: 50px;
  margin-bottom: 14px;
  color: #231f20;
}
.content-accordions__subheader {
  margin-bottom: 45px;
  color: #5a5a5a;
  font-weight: 400;
}
.content-accordions__item {
  margin-top: 0;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1023px) {
  .l-wrapper--content-accordions {
    padding: 0 15px;
  }
  .content-accordions__title {
    font-size: 38px;
  }
  .content-accordions__subheader {
    font-size: 22px;
  }
  .content-accordions-item__text-box-inner {
    padding: 19px 0 19px 10px;
  }
  .content-accordions-item__title-box {
    padding: 10px 45px 10px 15px;
    font-size: 18px;
  }
  .content-accordions-item__text-box-inner {
    padding: 19px 15px 19px 15px;
    font-size: 15px;
  }
}
.l-section--gallery-mosaic {
  margin: 50px 0 100px 0;
}

.l-wrapper--gallery-mosaic {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 80px;
}

.gallery-mosaic {
  margin: -10px;
  margin-top: 150px;
  display: flex;
  flex-wrap: wrap;
}
.gallery-mosaic__filters {
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
  background-color: #fff;
  z-index: 10;
  padding: 20px 20px;
  justify-content: center;
  box-shadow: 0px 10px 15px -20px rgb(66, 68, 90);
}
.gallery-mosaic__filters .filter-btn {
  background: none;
  border: 1px solid #5a5a5a;
  color: #5a5a5a;
  padding: 8px 16px;
  font-size: 14px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.gallery-mosaic__filters .filter-btn.active, .gallery-mosaic__filters .filter-btn:hover {
  background-color: #70bf54;
  color: #fff;
  border-color: #70bf54;
}
.gallery-mosaic__item {
  box-sizing: border-box;
  flex: 1 1 calc(33.333% - 20px);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  visibility: visible;
  position: relative;
}
.gallery-mosaic__item.hiding {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.gallery-mosaic__item.hidden {
  display: none;
}
.gallery-mosaic__item.showing {
  display: block;
  opacity: 0;
  transform: scale(0.8);
}
.gallery-mosaic__item.visible {
  opacity: 1;
  transform: scale(1);
}
.gallery-mosaic__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.gallery-mosaic__item:hover::before {
  opacity: 1;
}
.gallery-mosaic__item:hover::after {
  opacity: 0.2;
}
.gallery-mosaic__item::before {
  content: "+";
  font-weight: 300;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-mosaic__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #70bf54;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.gallery-mosaic__item-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-mosaic__item:hover .gallery-mosaic__item-image {
  transform: scale(1.05);
}

@media (max-width: 1023px) {
  .l-wrapper--gallery-mosaic {
    padding: 0 30px;
  }
  .gallery-mosaic__filters {
    display: none;
  }
  .gallery-mosaic__item {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .gallery-mosaic__item {
    flex: 1 1 100%;
  }
}
.l-section--mosaic-photos {
  margin: 100px 0;
}

.l-wrapper--mosaic-photos {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 80px;
}

.mosaic-photos__header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mosaic-photos__header h2 {
  font-size: 55px;
}
@media (max-width: 1239px) {
  .mosaic-photos__header h2 {
    font-size: 40px;
  }
}
.mosaic-photos__gallery-hld {
  width: 100%;
  display: block;
}
.mosaic-photos__item {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.mosaic-photos__item.hiding {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.mosaic-photos__item.hidden {
  display: none;
}
.mosaic-photos__item.showing {
  display: block;
  opacity: 0;
  transform: scale(0.8);
}
.mosaic-photos__item.visible {
  opacity: 1;
  transform: scale(1);
}
.mosaic-photos__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.mosaic-photos__item:hover::before {
  opacity: 1;
}
.mosaic-photos__item:hover::after {
  opacity: 0.2;
}
.mosaic-photos__item::before {
  content: "+";
  font-weight: 300;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mosaic-photos__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffe538;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.mosaic-photos__item-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.mosaic-photos__item:hover .mosaic-photos__item-image {
  transform: scale(1.05);
}

@media (max-width: 1023px) {
  .l-wrapper--mosaic-photos {
    padding: 0 30px;
  }
  .mosaic-photos__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .mosaic-photos__item {
    margin-bottom: 15px;
  }
}
.l-section--highlighters-with-icons {
  margin: 0 auto 50px auto;
}
.l-section--highlighters-with-icons.l-section--no-margin {
  margin: 0;
}
.l-section--highlighters-with-icons.l-section--has-primary-bg {
  background-color: #000;
}
.l-section--highlighters-with-icons.l-section--has-primary-bg .highlighters-with-icons__header, .l-section--highlighters-with-icons.l-section--has-primary-bg .highlighters-with-icons__item-header, .l-section--highlighters-with-icons.l-section--has-primary-bg .highlighters-with-icons__item-text, .l-section--highlighters-with-icons.l-section--has-primary-bg .highlighters-with-icons__text {
  color: #fff;
}

.l-wrapper--highlighters-with-icons {
  padding: 0 40px;
}

.highlighters-with-icons__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  max-width: 1250px;
  margin: 0 auto 80px auto;
}
@media (max-width: 1239px) {
  .highlighters-with-icons__content {
    gap: 10px;
  }
}
.highlighters-with-icons__header {
  color: #231f20;
  font-weight: 500;
}
.highlighters-with-icons__items-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 75px;
}
.highlighters-with-icons__text {
  text-align: center;
  color: #5a5a5a;
}
.highlighters-with-icons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.highlighters-with-icons__item-icon {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.highlighters-with-icons__item-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.highlighters-with-icons__item-header {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 500;
  color: #231f20;
  text-align: center;
  line-height: 1.25;
}
.highlighters-with-icons__item-text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  min-height: 100px;
  line-height: 1.5;
  color: #5a5a5a;
}

@media (max-width: 1239px) {
  .l-section--highlighters-with-icons {
    margin: 80px 0;
  }
  .highlighters-with-icons__items-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlighters-with-icons__content {
    display: flex;
    flex-direction: column;
    margin: 0 auto 40px auto;
  }
  .highlighters-with-icons__text, .highlighters-with-icons__header {
    max-width: unset;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .l-section--highlighters-with-icons {
    margin: 60px 0;
  }
}
@media (max-width: 767px) {
  .l-wrapper--highlighters-with-icons {
    padding: 0 15px;
  }
  .highlighters-with-icons__items-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .highlighters-with-icons__item-header {
    font-size: 20px;
  }
  .highlighters-with-icons__content-hld {
    margin-bottom: 40px;
  }
  .highlighters-with-icons__item-icon {
    margin-bottom: 5px;
  }
}
.l-section--text-highlighters {
  margin: 100px 0;
}

.text-highlighters__content-hld {
  text-align: left;
  margin: 0 0 60px;
}
.text-highlighters__header {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.72px;
  font-weight: 500;
  text-align: left;
  color: #231f20;
}
.text-highlighters__text {
  margin-top: 20px;
  color: #5a5a5a;
}
.text-highlighters__text strong,
.text-highlighters__text b {
  color: #f58220;
  font-weight: 800;
}
.text-highlighters__items-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 50px;
}
.text-highlighters__item {
  position: relative;
}
.text-highlighters__item-accent {
  display: block;
  width: 28px;
  height: 7px;
  margin-bottom: 18px;
  background-color: #70bf54;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.text-highlighters__item-header {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.44px;
  color: #231f20;
  text-align: left;
}
.text-highlighters__item-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.96px;
  color: #5a5a5a;
  text-align: left;
}

@media (max-width: 1239px) {
  .l-section--text-highlighters {
    margin: 80px 0;
  }
  .text-highlighters__content-hld {
    margin-bottom: 50px;
  }
  .text-highlighters__header {
    font-size: 30px;
  }
  .text-highlighters__items-container {
    column-gap: 40px;
    row-gap: 40px;
  }
}
@media (max-width: 1023px) {
  .l-section--text-highlighters {
    margin: 60px 0;
  }
  .text-highlighters__items-container {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
}
@media (max-width: 767px) {
  .text-highlighters__content-hld {
    margin-bottom: 36px;
  }
}
.l-section--contact-form {
  background-color: #fff;
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 90px;
  padding: 80px 0;
}
@media (max-width: 1239px) {
  .contact-form {
    gap: 60px;
  }
}
@media (max-width: 1023px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 0;
  }
}
.contact-form__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-form__heading {
  margin: 0 0 22px;
  color: #5a5a5a;
  font-family: "Mulish", sans-serif;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 1.44px;
}
@media (max-width: 1239px) {
  .contact-form__heading {
    text-align: left;
  }
}
.contact-form__intro {
  max-width: 580px;
  margin-bottom: 28px;
  color: #5a5a5a;
}
.contact-form__intro p {
  margin: 0 0 14px;
}
.contact-form__intro p:last-child {
  margin-bottom: 0;
}
.contact-form__intro h4 {
  margin-top: 20px;
}
.contact-form__box {
  width: 100%;
  max-width: 580px;
  margin-top: 28px;
  padding: 50px;
  background-color: #5a5a5a;
}
@media (max-width: 767px) {
  .contact-form__box {
    padding: 32px 24px;
  }
}
.contact-form__box-text {
  margin-bottom: 35px;
  color: #fff;
}
.contact-form__box-text h1,
.contact-form__box-text h2,
.contact-form__box-text h3,
.contact-form__box-text h4,
.contact-form__box-text h5,
.contact-form__box-text h6 {
  margin: 0 0 25px;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 1.32px;
}
.contact-form__box-text p {
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
  font-weight: 300;
}
.contact-form__box-text p:last-child {
  margin-bottom: 0;
}
.contact-form__box-phone {
  display: flex;
  color: #fff;
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-form__box-phone {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.contact-form__box-phone-label {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .contact-form__box-phone-label {
    margin-top: 0;
  }
}
.contact-form__box-phone-number {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 1.32px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.contact-form__box-phone:hover .contact-form__box-phone-number {
  color: #70bf54;
}
.contact-form__box-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.84px;
}
.contact-form__box-divider::before, .contact-form__box-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.contact-form__box-button {
  display: flex;
}
.contact-form__box-button .basic-button {
  width: 100%;
  justify-content: center;
  background-color: #dddedd;
  color: #231f20;
}
.contact-form__box-button .basic-button:hover {
  background-color: #f58220;
  color: #fff;
}
.contact-form__form {
  width: 100%;
}
.contact-form__form .wpforms-container {
  margin: 0;
}
.contact-form__form .wpforms-form {
  margin: 0;
}
.contact-form__form .wpforms-field-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  column-gap: 40px !important;
  row-gap: 24px !important;
}
@media (max-width: 1023px) {
  .contact-form__form .wpforms-field-container {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }
}
.contact-form__form .wpforms-field {
  padding: 0;
  margin: 0;
}
.contact-form__form .wpforms-field-label,
.contact-form__form .wpforms-field-label.wpforms-label-hide,
.contact-form__form legend.wpforms-field-label {
  display: none !important;
}
.contact-form__form #wpforms-8-field_1-container,
.contact-form__form #wpforms-8-field_6-container,
.contact-form__form #wpforms-8-field_3-container,
.contact-form__form #wpforms-8-field_4-container,
.contact-form__form #wpforms-8-field_8-container,
.contact-form__form #wpforms-8-field_9-container {
  grid-column: 1/-1 !important;
}
.contact-form__form #wpforms-8-field_7-container {
  grid-column: 1/2 !important;
}
@media (max-width: 1023px) {
  .contact-form__form #wpforms-8-field_7-container {
    grid-column: 1/-1 !important;
  }
}
.contact-form__form #wpforms-8-field_2-container {
  grid-column: 2/3 !important;
}
@media (max-width: 1023px) {
  .contact-form__form #wpforms-8-field_2-container {
    grid-column: 1/-1 !important;
  }
}
.contact-form__form #wpforms-8-field_4 {
  min-height: 150px !important;
  resize: vertical;
}
.contact-form__form #wpforms-8-field_2_suggestion {
  display: none;
}
.contact-form__form .wpforms-field input[type=text],
.contact-form__form .wpforms-field input[type=email],
.contact-form__form .wpforms-field input[type=tel],
.contact-form__form .wpforms-field input[type=url],
.contact-form__form .wpforms-field input[type=number],
.contact-form__form .wpforms-field textarea,
.contact-form__form .wpforms-field select {
  width: 100%;
  max-width: 100%;
  min-height: 42px !important;
  padding: 8px 10px 12px;
  color: #5a5a5a;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.72px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #5a5a5a;
  border-radius: 0;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease;
}
@media (max-width: 767px) {
  .contact-form__form .wpforms-field input[type=text],
  .contact-form__form .wpforms-field input[type=email],
  .contact-form__form .wpforms-field input[type=tel],
  .contact-form__form .wpforms-field input[type=url],
  .contact-form__form .wpforms-field input[type=number],
  .contact-form__form .wpforms-field textarea,
  .contact-form__form .wpforms-field select {
    padding-left: 0;
  }
}
.contact-form__form .wpforms-field input[type=text]:focus,
.contact-form__form .wpforms-field input[type=email]:focus,
.contact-form__form .wpforms-field input[type=tel]:focus,
.contact-form__form .wpforms-field input[type=url]:focus,
.contact-form__form .wpforms-field input[type=number]:focus,
.contact-form__form .wpforms-field textarea:focus,
.contact-form__form .wpforms-field select:focus {
  border-bottom-color: #70bf54;
}
.contact-form__form .wpforms-field input[type=text]::placeholder,
.contact-form__form .wpforms-field input[type=email]::placeholder,
.contact-form__form .wpforms-field input[type=tel]::placeholder,
.contact-form__form .wpforms-field input[type=url]::placeholder,
.contact-form__form .wpforms-field input[type=number]::placeholder,
.contact-form__form .wpforms-field textarea::placeholder,
.contact-form__form .wpforms-field select::placeholder {
  color: #5a5a5a;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
  letter-spacing: 0.72px;
  opacity: 1;
}
.contact-form__form .wpforms-field textarea {
  display: block;
  min-height: 150px !important;
}
.contact-form__form .wpforms-field-select select {
  -webkit-appearance: none;
          appearance: none;
}
.contact-form__form .wpforms-field-checkbox {
  grid-column: 1/-1;
  margin-top: 10px;
}
.contact-form__form .wpforms-field-checkbox fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-form__form .wpforms-field-checkbox ul,
.contact-form__form ul#wpforms-8-field_8,
.contact-form__form ul#wpforms-8-field_9 {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-form__form .wpforms-field-checkbox li,
.contact-form__form ul#wpforms-8-field_8 > li,
.contact-form__form ul#wpforms-8-field_9 > li {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  column-gap: 16px;
  margin: 0;
}
.contact-form__form .wpforms-container-full input[type=checkbox],
.contact-form__form input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px !important;
  min-height: 20px !important;
  margin: 2px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}
.contact-form__form .wpforms-container-full input[type=checkbox]::before,
.contact-form__form input[type=checkbox]::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #5a5a5a;
  border-radius: 2px;
  background: transparent;
  box-sizing: border-box;
}
.contact-form__form div.wpforms-container-full input[type=checkbox]:checked::after,
.contact-form__form .contact-form__form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  border-left: 0 !important;
  border-top: 0 !important;
  background-color: transparent !important;
  opacity: 1;
  transform: rotate(45deg) scale(1) !important;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}
.contact-form__form .wpforms-container-full input[type=checkbox]:checked::before,
.contact-form__form input[type=checkbox]:checked::before {
  background-color: #70bf54;
  border-color: #70bf54;
}
.contact-form__form .wpforms-container-full input[type=checkbox]:checked::after,
.contact-form__form input[type=checkbox]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.contact-form__form .wpforms-field-checkbox .wpforms-field-label-inline {
  color: #5a5a5a;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.45px;
  cursor: pointer;
}
.contact-form__form .wpforms-submit-container {
  display: flex;
  justify-content: flex-end;
  grid-column: 1/-1;
  margin-top: 26px;
  padding: 0;
}
@media (max-width: 767px) {
  .contact-form__form .wpforms-submit-container {
    justify-content: flex-start;
  }
}
.contact-form__form .wpforms-submit {
  min-width: 240px;
  min-height: 62px;
  padding: 18px 32px;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.72px;
  background-color: #70bf54;
  border: 0;
  border-radius: 18px 0 18px 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-form__form .wpforms-submit:hover, .contact-form__form .wpforms-submit:focus-visible {
  color: #fff;
  background-color: #ffe538;
}
.contact-form__form .wpforms-error {
  color: #70bf54;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.contact-form__form label.wpforms-error {
  display: block;
  margin-top: 6px;
}

.wpforms-form .wpforms-submit-container button#wpforms-submit-8.wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px 30px;
  min-width: unset;
  min-height: unset;
  text-align: center;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: 0.96px;
  color: #fff;
  background-color: #70bf54;
  border: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: none !important;
  outline: none !important;
}
.wpforms-form .wpforms-submit-container button#wpforms-submit-8.wpforms-submit:hover, .wpforms-form .wpforms-submit-container button#wpforms-submit-8.wpforms-submit:focus-visible {
  background-color: #f58220;
  color: #fff;
}
.wpforms-form .wpforms-submit-container button#wpforms-submit-8.wpforms-submit[data-alt-text].wpforms-submit-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul li input + label {
  -webkit-padding-start: 0 !important;
          padding-inline-start: 0 !important;
}

#wpforms-8-field_8-container {
  margin: 35px 0 0 0 !important;
}

#wpforms-8-field_9-container {
  margin: 0 0 35px 0 !important;
}

.contact-form__form .wpforms-container-full .wpforms-field input:focus,
.contact-form__form .wpforms-container-full .wpforms-field textarea:focus,
.contact-form__form .wpforms-container-full .wpforms-field select:focus,
.contact-form__form div.wpforms-container-full .wpforms-field input:focus,
.contact-form__form div.wpforms-container-full .wpforms-field textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  border-bottom-color: #70bf54 !important;
}
.contact-form__form .wpforms-container .wpforms-field,
.contact-form__form .wp-core-ui div.wpforms-container .wpforms-field {
  padding: 0 !important;
}

.l-section--basic-text {
  margin: 110px 0;
}
.page-simple-text .l-section--basic-text {
  margin: 110px 0 110px 0;
}

.l-wrapper--basic-text {
  padding: 0 157px 0 137px;
}

.basic-text__page-title {
  text-align: center;
}
.basic-text__container {
  color: #231f20;
  font-size: 16px;
  font-weight: 300;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
.basic-text__container > * + * {
  margin-top: 28px;
}
.basic-text__container h2,
.basic-text__container h3,
.basic-text__container h4,
.basic-text__container h5,
.basic-text__container h6 {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-weight: 500;
  text-align: left;
}
.basic-text__container h2 {
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.72px;
}
.basic-text__container h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.56px;
}
.basic-text__container h4,
.basic-text__container h5,
.basic-text__container h6 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0.44px;
}
.basic-text__container h2 + *,
.basic-text__container h3 + *,
.basic-text__container h4 + *,
.basic-text__container h5 + *,
.basic-text__container h6 + * {
  margin-top: 32px;
}
.basic-text__container p {
  margin: 0;
}
.basic-text__container a {
  color: #70bf54;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.basic-text__container a:hover {
  color: #f58220;
}
.basic-text__container img {
  display: block;
  max-width: 100%;
  height: auto;
}
.basic-text__container ul,
.basic-text__container ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.basic-text__container ul li {
  position: relative;
  padding-left: 26px;
}
.basic-text__container ul li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #70bf54;
}
.basic-text__container ol {
  counter-reset: basic-text-ol;
}
.basic-text__container ol li {
  position: relative;
  padding-left: 30px;
  counter-increment: basic-text-ol;
}
.basic-text__container ol li::before {
  content: counter(basic-text-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #70bf54;
  font-weight: 700;
}
.basic-text__container blockquote {
  margin: 0;
  padding: 30px 40px;
  background-color: #dddedd;
  border-left: 4px solid #70bf54;
  color: #231f20;
  font-family: "Mulish";
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
}
.basic-text__container blockquote p {
  margin: 0;
}
.basic-text__container blockquote p:not(:last-child) {
  margin-bottom: 12px;
}
.basic-text__container blockquote cite {
  display: block;
  margin-top: 16px;
  color: #5a5a5a;
  font-family: "Mulish";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.basic-text__container table {
  width: 100%;
  border-collapse: collapse;
}
.basic-text__container th,
.basic-text__container td {
  padding: 14px 20px;
  border: 1px solid #c8c8c8;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.basic-text__container th {
  background-color: #231f20;
  color: #fff;
  font-weight: 700;
}
.basic-text__container tbody tr:nth-child(even) {
  background-color: #dddedd;
}

@media (max-width: 1239px) {
  .l-section--basic-text {
    margin: 70px 0;
  }
  .l-wrapper--basic-text {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .l-section--basic-text {
    margin: 40px 0;
  }
  .page-simple-text .l-section--basic-text {
    margin: 35px 0 50px 0;
  }
  .l-wrapper--basic-text {
    padding: 0 15px;
  }
}
.l-section--right-column-text {
  margin-top: 80px;
  background-color: #5a5a5a;
  color: #fff;
  z-index: -1;
}

.l-wrapper--right-column-text {
  position: relative;
  padding: 0 130px;
}
@media screen and (max-width: 1239px) {
  .l-wrapper--right-column-text {
    padding: 0 15px;
  }
}

.right-column-text {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.right-column-text__inner {
  padding-top: 120%;
  position: fixed;
  top: 140px;
  z-index: -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
  align-items: center;
  min-height: 620px;
  padding: 80px 0;
}
@media (max-width: 1239px) {
  .right-column-text__inner {
    position: unset;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 50px 0 0 0;
  }
}
.right-column-text__left {
  position: relative;
}
@media screen and (max-width: 1239px) {
  .right-column-text__right {
    position: relative;
    top: -80px;
  }
}
.right-column-text__logo {
  display: block;
  width: min(100%, 540px);
  height: auto;
  opacity: 0.55;
}
.right-column-text__title {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 360px;
  margin: 0;
  color: #c8c8c8;
  font-weight: 400;
}
@media screen and (max-width: 1239px) {
  .right-column-text__title {
    font-size: 90px;
  }
}
.right-column-text__right {
  position: relative;
  max-width: 560px;
}
.right-column-text__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120px;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (max-width: 1239px) {
  .right-column-text__right::before {
    content: none;
  }
}
.right-column-text__content {
  color: #fff;
}
.right-column-text__content p {
  margin-top: 0;
}
.right-column-text__content p:last-child {
  margin-bottom: 0;
}
.right-column-text__content strong,
.right-column-text__content b {
  color: #fff;
}
.right-column-text__content a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media screen and (max-width: 1239px) {
  .right-column-text {
    min-height: auto;
  }
  .right-column-text::before {
    position: absolute;
  }
  .right-column-text__logo {
    max-width: 320px;
  }
  .right-column-text__right {
    max-width: none;
  }
  .right-column-text__right::before {
    left: 0;
  }
}
.l-section--photo-text-repeater {
  position: relative;
  padding: 90px 0;
  background-color: #fff;
  z-index: 10;
}
@media (max-width: 1239px) {
  .l-section--photo-text-repeater {
    padding: 0;
    margin: 50px 0;
  }
}

.l-wrapper--photo-text-repeater {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 130px;
}
@media (max-width: 1239px) {
  .l-wrapper--photo-text-repeater {
    padding: 0 15px;
  }
}

.photo-text-repeater {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.photo-text-repeater__item {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 100px;
  align-items: center;
}
.photo-text-repeater__item--image-right .photo-text-repeater__image-hld {
  order: 2;
}
.photo-text-repeater__item--image-right .photo-text-repeater__content-hld {
  order: 1;
}
.photo-text-repeater__item--image-left .photo-text-repeater__image-hld {
  order: 1;
}
.photo-text-repeater__item--image-left .photo-text-repeater__content-hld {
  order: 2;
}
.photo-text-repeater__image-hld {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 1239px) {
  .photo-text-repeater__image-hld {
    aspect-ratio: 1/1.15;
  }
}
.photo-text-repeater__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-text-repeater__content-hld {
  width: 100%;
}
.photo-text-repeater__content h2 {
  margin: 0 0 32px;
  font-size: 43px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: 0.86px;
  text-align: left;
  color: #231f20;
}
.photo-text-repeater__content ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.photo-text-repeater__content li {
  position: relative;
  padding-left: 54px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.52px;
  color: #5a5a5a;
}
.photo-text-repeater__content li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 28px;
  height: 7px;
  background-color: #70bf54;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.photo-text-repeater__content li p {
  margin-top: 12px;
}
.photo-text-repeater__content p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
  text-align: left;
  color: #5a5a5a;
}
.photo-text-repeater__content p:last-child {
  margin-bottom: 0;
}
.photo-text-repeater__content strong,
.photo-text-repeater__content b {
  font-weight: 600;
  color: #231f20;
}
.photo-text-repeater__content a {
  color: #70bf54;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.photo-text-repeater__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 45px;
}
@media screen and (max-width: 1239px) {
  .photo-text-repeater__buttons .button {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    text-align: center;
  }
}

@media screen and (max-width: 1239px) {
  .photo-text-repeater {
    gap: 64px;
  }
  .photo-text-repeater__item {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .photo-text-repeater__item--image-right .photo-text-repeater__image-hld, .photo-text-repeater__item--image-left .photo-text-repeater__image-hld {
    order: 1;
  }
  .photo-text-repeater__item--image-right .photo-text-repeater__content-hld, .photo-text-repeater__item--image-left .photo-text-repeater__content-hld {
    order: 2;
  }
  .photo-text-repeater__content h2 {
    font-size: 34px;
  }
  .photo-text-repeater__content li {
    padding-left: 44px;
    font-size: 22px;
  }
  .photo-text-repeater__content li::before {
    top: 13px;
  }
}
.l-section--logo-carousel-text {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background-color: #fff;
  color: #5a5a5a;
  z-index: 10;
}

.l-wrapper--logo-carousel-text {
  padding: 0 130px;
}
@media (max-width: 1239px) {
  .l-wrapper--logo-carousel-text {
    padding: 0 15px;
  }
}

.logo-carousel-text {
  position: relative;
}
.logo-carousel-text__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.logo-carousel-text__marquee:hover .logo-carousel-text__track {
  animation-play-state: paused;
}
.logo-carousel-text__marquee--left .logo-carousel-text__track {
  animation-name: logo-carousel-text-left;
}
.logo-carousel-text__marquee--right .logo-carousel-text__track {
  animation-name: logo-carousel-text-right;
}
.logo-carousel-text__track {
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform;
  animation-duration: var(--logo-carousel-text-duration, 42s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.logo-carousel-text__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 80px;
  padding-right: 80px;
}
.logo-carousel-text__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  height: 100px;
}
@media screen and (max-width: 1239px) {
  .logo-carousel-text__logo {
    width: 155px;
    height: 130px;
  }
}
.logo-carousel-text__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-carousel-text__content-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
  align-items: center;
  min-height: 520px;
}
.logo-carousel-text__left {
  position: relative;
}
.logo-carousel-text__title {
  max-width: 420px;
  color: #5a5a5a;
}
@media (max-width: 1239px) {
  .logo-carousel-text__title {
    font-size: 90px;
  }
  .logo-carousel-text__title::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 43px;
    background-color: #70bf54;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
}
.logo-carousel-text__title h1,
.logo-carousel-text__title h2,
.logo-carousel-text__title h3,
.logo-carousel-text__title h4,
.logo-carousel-text__title h5,
.logo-carousel-text__title h6,
.logo-carousel-text__title p {
  margin: 0;
  color: inherit;
}
.logo-carousel-text__right {
  position: relative;
  max-width: 760px;
  padding-top: 8px;
}
@media (max-width: 1239px) {
  .logo-carousel-text__right {
    padding-top: 0;
  }
}
.logo-carousel-text__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -86px;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .logo-carousel-text__right::before {
    content: none;
  }
}
.logo-carousel-text__content {
  color: #5a5a5a;
}
.logo-carousel-text__content p {
  margin-top: 0;
}
.logo-carousel-text__content p:last-child {
  margin-bottom: 0;
}
.logo-carousel-text__content strong,
.logo-carousel-text__content b {
  color: #5a5a5a;
}
.logo-carousel-text__content a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes logo-carousel-text-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes logo-carousel-text-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 1239px) {
  .l-wrapper--logo-carousel-text {
    padding: 0 15px;
  }
  .logo-carousel-text__content-section {
    gap: 56px;
  }
  .logo-carousel-text__group {
    gap: 64px;
    padding-right: 64px;
  }
}
@media screen and (max-width: 1023px) {
  .l-section--logo-carousel-text {
    padding: 64px 0;
  }
  .logo-carousel-text__content-section {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 72px 0;
  }
  .logo-carousel-text__group {
    gap: 48px;
    padding-right: 48px;
  }
}
@media screen and (max-width: 767px) {
  .logo-carousel-text__content-section {
    gap: 32px;
    padding: 56px 0;
  }
  .logo-carousel-text__group {
    gap: 36px;
    padding-right: 36px;
  }
}
.l-section--video-slider {
  position: relative;
  padding: 90px 0;
  background-color: #fff;
  z-index: 10;
}
@media (max-width: 1239px) {
  .l-section--video-slider {
    padding: 50px 0;
  }
}

.l-wrapper--video-slider {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 130px;
}
@media (max-width: 1239px) {
  .l-wrapper--video-slider {
    padding: 0 15px;
  }
}

.video-slider {
  position: relative;
}
.video-slider__header {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 500;
  color: #231f20;
}
.video-slider__main {
  width: 100%;
  overflow: hidden;
}
.video-slider__video-hld {
  position: relative;
  width: 100%;
  aspect-ratio: 2.65/1;
  overflow: hidden;
  background-color: #000;
}
.video-slider__video-hld::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.28);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.video-slider__main-slide.is-playing .video-slider__video-hld::before {
  opacity: 0;
}
.video-slider__main-slide.is-playing .video-slider__play {
  opacity: 0;
  pointer-events: none;
}
.video-slider__main-slide.is-playing .video-slider__poster {
  opacity: 0;
  pointer-events: none;
}
.video-slider__main-slide.is-playing .video-slider__iframe {
  opacity: 1;
  pointer-events: auto;
}
.video-slider__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.video-slider__iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-slider__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slider__play {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.video-slider__play img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}
.video-slider__play:hover {
  transform: translate(-50%, -50%) scale(0.92);
}
.video-slider__bottom {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 24px;
}
.video-slider__buttons {
  display: flex;
  gap: 20px;
  flex: 0 0 auto;
  align-self: flex-end;
}
.video-slider__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  align-self: flex-start;
}
.video-slider__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  width: unset !important;
}
.video-slider__pagination .swiper-pagination-bullet {
  display: none;
  width: 8px;
  height: 8px;
  margin: 0;
  border: 1px solid #5a5a5a;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.video-slider__pagination .swiper-pagination-bullet.is-visible {
  display: block;
}
.video-slider__pagination .swiper-pagination-bullet-active {
  width: 28px;
  height: 7px;
  border: 0;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #70bf54;
}
.video-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 47px;
  height: 47px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #5a5a5a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.video-slider__arrow span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.video-slider__arrow:hover {
  background-color: #70bf54;
  transform: translateY(-2px);
}
.video-slider__arrow.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.video-slider__thumbs {
  width: 100%;
  height: 145px;
  overflow: hidden;
  min-width: 0;
}
.video-slider__thumb {
  height: 100%;
  cursor: default;
  pointer-events: none;
}
.video-slider__thumb-video-hld {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 245/145;
  overflow: hidden;
  background-color: #000;
}
.video-slider__thumb-video-hld::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.video-slider__thumb-play {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 2;
  width: 50px;
  height: 50px;
  padding: 18px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}
.video-slider__thumb-play img {
  display: block;
  width: 15px;
  object-fit: contain;
}

@media screen and (max-width: 1239px) {
  .video-slider__bottom {
    gap: 22px;
  }
  .video-slider__play {
    width: 84px;
    height: 84px;
  }
}
@media screen and (max-width: 1023px) {
  .video-slider__video-hld {
    aspect-ratio: 1.65/1;
  }
  .video-slider__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }
  .video-slider__buttons {
    order: 3;
    justify-content: center;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1239px) {
  .video-slider__buttons {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
  .video-slider__buttons .button {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .video-slider__controls {
    order: 2;
    justify-content: center;
  }
  .video-slider__thumbs {
    order: 1;
    max-width: 520px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .video-slider__video-hld {
    aspect-ratio: 1.35/1;
  }
  .video-slider__play {
    width: 68px;
    height: 68px;
  }
  .video-slider__buttons {
    flex-direction: column;
    align-items: center;
  }
  .video-slider__controls {
    flex-wrap: wrap;
  }
  .video-slider__arrow {
    width: 42px;
    height: 42px;
  }
  .video-slider__thumb-play {
    width: 52px;
    height: 52px;
    padding: 15px;
  }
}
.l-section--product-tiles {
  background-color: #dddedd;
  padding: 60px 0;
}

.product-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .product-tiles__grid {
    grid-template-columns: 1fr;
  }
}
.product-tiles__tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  text-decoration: none;
}
@media (max-width: 1239px) {
  .product-tiles__tile {
    aspect-ratio: 1/1;
  }
}
.product-tiles__tile:hover .product-tiles__tile-image {
  transform: scale(1.05);
  transition: transform 0.5s;
}
.product-tiles__tile:hover .product-tiles__tile-btn {
  background-color: #fff;
  color: #5a5a5a;
}
.product-tiles__tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-tiles__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 28px 24px;
  gap: 16px;
}
.product-tiles__tile-title {
  font-weight: 300;
}
@media (max-width: 1239px) {
  .product-tiles__tile-title {
    font-size: 40px;
  }
}
.product-tiles__tile-btn {
  border: 1.5px solid #fff;
  color: #fff;
}
.product-tiles__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .product-tiles__footer {
    justify-content: center;
  }
}

.l-section--cards-with-images {
  padding: 80px 0;
}

.cards-with-images__head {
  margin-bottom: 60px;
}
.cards-with-images__header {
  font-family: "Mulish";
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #231f20;
  margin: 0 0 50px;
}
.cards-with-images__list {
  display: flex;
  flex-direction: column;
}
.cards-with-images__card {
  position: relative;
  min-height: 260px;
  background-color: #231f20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cards-with-images__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 43px solid #70bf54;
  border-left: 43px solid transparent;
  pointer-events: none;
}
.cards-with-images__card-bg {
  position: absolute;
  inset: 0;
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  z-index: 0;
}
.cards-with-images__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cards-with-images__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.cards-with-images__card:hover .cards-with-images__card-bg {
  transform: translateY(0);
}
.cards-with-images__card.is-active .cards-with-images__card-bg {
  transform: translateY(0);
}
.cards-with-images__card.is-active .cards-with-images__card-arrow-wrap {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cards-with-images__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 60px 80px;
  min-height: 260px;
}
@media (max-width: 1239px) {
  .cards-with-images__card-content {
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    min-height: unset;
    align-items: flex-start;
  }
}
.cards-with-images__card-left {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1239px) {
  .cards-with-images__card-left {
    gap: 25px;
  }
}
.cards-with-images__card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: "Mulish";
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cards-with-images__card-number {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}
.cards-with-images__card-title {
  font-weight: 400;
  color: #fff;
  max-width: 450px;
  text-align: left;
}
@media (max-width: 1239px) {
  .cards-with-images__card-title {
    font-size: 30px;
  }
}
.cards-with-images__card-text {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: right;
  color: #dddedd;
  max-width: 390px;
}
@media (max-width: 1023px) {
  .cards-with-images__card-text {
    font-size: 18px;
    text-align: left;
  }
}
@media (max-width: 1239px) {
  .cards-with-images__card-text {
    font-size: 16px;
  }
}
.cards-with-images__card-arrow-wrap {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 0.35s ease 0.2s;
  opacity: 0;
  padding-bottom: 16px;
}
.cards-with-images__card-arrow {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.cards-with-images__card:hover .cards-with-images__card-arrow-wrap {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cards-with-images__card--last {
  background-color: #70bf54;
  border-bottom: none;
  transition: background-color 0.3s ease;
}
.cards-with-images__card--last:hover {
  background-color: rgb(95.68, 177.84, 66.56);
}
.cards-with-images__card--last .cards-with-images__card-title {
  color: #fff;
  min-width: 400px;
}
.cards-with-images__card--last .cards-with-images__card-text {
  color: #fff;
  text-align: left;
  font-size: 43px;
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0.86px;
}
@media (max-width: 1239px) {
  .cards-with-images__card--last .cards-with-images__card-text {
    font-size: 30px;
  }
}
.cards-with-images__card--last .cards-with-images__card-text ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cards-with-images__card--last .cards-with-images__card-text ul li {
  position: relative;
  padding-left: 24px;
}
.cards-with-images__card--last .cards-with-images__card-text ul li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.l-section--accordions-with-header {
  background-color: #dddedd;
}

.accordions-with-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .accordions-with-header {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
  }
}
.accordions-with-header__left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.accordions-with-header__left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.accordions-with-header__heading {
  color: #231f20;
  font-weight: 400;
}
.accordions-with-header__intro {
  color: #5a5a5a;
  max-width: 375px;
}
.accordions-with-header__sygnet {
  width: 240px;
  height: auto;
  margin-top: auto;
  opacity: 0.5;
}
@media (max-width: 1239px) {
  .accordions-with-header__sygnet {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.35;
  }
}
.accordions-with-header__right {
  display: flex;
  flex-direction: column;
}
.accordions-with-header__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.accordions-with-header__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.accordions-with-header__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background-color: #5a5a5a;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
.is-active .accordions-with-header__trigger {
  background-color: #c8c8c8;
}
.accordions-with-header__trigger:focus-visible {
  outline: 2px solid #ffe538;
  outline-offset: -2px;
}
.accordions-with-header__trigger-text {
  font-family: "Mulish";
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 1.32px;
  text-align: left;
  color: #fff;
}
.is-active .accordions-with-header__trigger-text {
  color: #5a5a5a;
}
.accordions-with-header__arrow {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.is-active .accordions-with-header__arrow {
  transform: rotate(180deg);
}
.accordions-with-header__panel {
  height: 0;
  overflow: hidden;
  background-color: #dddedd;
  transition: height 0.35s ease;
  will-change: height;
}
.accordions-with-header__content {
  padding: 20px 20px 24px;
  color: #5a5a5a;
}
@media (prefers-reduced-motion: reduce) {
  .accordions-with-header__panel {
    transition: none;
  }
  .accordions-with-header__arrow {
    transition: none;
  }
}

.l-section--contact-map-info {
  padding: 180px 0 0 0;
}
@media (max-width: 1023px) {
  .l-section--contact-map-info {
    padding: 120px 0 90px 0;
  }
}

.contact-map-info {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 1023px) {
  .contact-map-info {
    gap: 48px;
  }
}
.contact-map-info__header {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .contact-map-info__header {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}
.contact-map-info__title {
  flex-basis: 40%;
  position: relative;
  font-family: "Mulish";
  font-size: 80px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 3.2px;
  color: #231f20;
  margin: 0;
}
.contact-map-info__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .contact-map-info__title::before {
    content: none;
  }
}
@media (max-width: 1239px) {
  .contact-map-info__title {
    font-size: 52px;
  }
}
@media (max-width: 1023px) {
  .contact-map-info__title {
    font-size: 36px;
    letter-spacing: 1.6px;
  }
}
.contact-map-info__intro {
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.86px;
  color: #231f20;
  margin-left: 100px;
  max-width: 600px;
  padding-right: 45px;
}
.contact-map-info__intro strong,
.contact-map-info__intro b {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .contact-map-info__intro {
    font-size: 20px;
    padding-right: 0;
    margin-left: 0;
  }
}
.contact-map-info__banner {
  width: 100%;
}
.contact-map-info__banner-image {
  display: block;
  width: 100%;
  aspect-ratio: 21/6;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .contact-map-info__banner-image {
    aspect-ratio: 16/9;
  }
}
.contact-map-info__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1023px) {
  .contact-map-info__body {
    display: flex;
    flex-direction: column;
  }
}
.contact-map-info__group-content {
  font-family: "Mulish";
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.96px;
  color: #5a5a5a;
}
.contact-map-info__group-content p {
  margin: 0;
}
.contact-map-info__group-content a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.contact-map-info__group-content a:hover {
  color: #005b41;
}
.contact-map-info__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-map-info__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-map-info__group-label {
  font-family: "Mulish";
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 1.32px;
  color: #231f20;
  margin: 0 0 6px;
}
.contact-map-info__group-value {
  display: block;
  font-family: "Mulish";
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.96px;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-map-info__group-value:hover {
  color: #005b41;
}
.contact-map-info__map {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 400px;
}
@media (max-width: 1023px) {
  .contact-map-info__map {
    min-height: 280px;
  }
}
.contact-map-info__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.l-section--departments-tiles {
  padding: 180px 0 90px 0;
  background-color: #dddedd;
  z-index: -1;
  margin-top: -100px;
}
@media (max-width: 1239px) {
  .l-section--departments-tiles {
    padding: 70px 0;
  }
}
@media (max-width: 1023px) {
  .l-section--departments-tiles {
    padding: 50px 0;
  }
}

.departments-tiles__header {
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
  text-align: left;
  color: #231f20;
  margin: 0 0 58px;
}
@media (max-width: 1239px) {
  .departments-tiles__header {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .departments-tiles__header {
    font-size: 30px;
    letter-spacing: 0.4px;
    margin-bottom: 28px;
  }
}
.departments-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}
@media (max-width: 1239px) {
  .departments-tiles__grid {
    gap: 28px;
  }
}
@media (max-width: 1023px) {
  .departments-tiles__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.departments-tiles__tile {
  padding: 48px 56px;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1239px) {
  .departments-tiles__tile {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .departments-tiles__tile {
    padding: 30px 24px;
  }
}
.departments-tiles__tile-title {
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 600;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: left;
  color: #231f20;
  margin: 0 0 2px;
}
@media (max-width: 1023px) {
  .departments-tiles__tile-title {
    font-size: 23px;
  }
}
.departments-tiles__person {
  font-family: "Mulish";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.96px;
  color: #5a5a5a;
  margin: 0 0 24px;
}
.departments-tiles__contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 767px) {
  .departments-tiles__contact {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.departments-tiles__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.departments-tiles__label {
  font-family: "Mulish";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.96px;
  text-align: left;
  color: #70bf54;
  margin: 0;
}
.departments-tiles__value {
  display: block;
  font-family: "Mulish";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.96px;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.departments-tiles__value:hover {
  color: #70bf54;
}

.machine-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: solid 2px #c8c8c8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.machine-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.machine-card__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 52px;
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .machine-card__row {
    gap: 28px;
    padding: 32px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .machine-card__row {
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 20px;
  }
}
.machine-card__image-hld {
  position: relative;
  flex: 0 0 280px;
  aspect-ratio: 1/1;
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .machine-card__image-hld {
    flex-basis: 220px;
    height: 70%;
  }
}
@media (max-width: 767px) {
  .machine-card__image-hld {
    flex-basis: auto;
    width: 100%;
    max-width: 240px;
  }
}
.machine-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.machine-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.machine-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 24px;
}
@media (max-width: 767px) {
  .machine-card__header {
    flex-direction: column;
    gap: 8px;
  }
}
.machine-card__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.machine-card__category {
  display: block;
  color: #231f20;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
.machine-card__model-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .machine-card__model-row {
    margin-top: 6px;
  }
}
.machine-card__model {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
}
@media (max-width: 767px) {
  .machine-card__model {
    font-size: 32px;
  }
}
.machine-card__badge {
  flex-shrink: 0;
  background-color: #dfeadf;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.84px;
  color: #231f20;
  white-space: nowrap;
}
.machine-card__producer {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  color: #231f20;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: 0.96px;
  margin-top: 6px;
  white-space: nowrap;
}
.machine-card__producer::before {
  content: "";
  flex-shrink: 0;
  width: 27px;
  height: 8px;
  background-color: #70bf54;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 767px) {
  .machine-card__producer {
    margin-top: 0;
  }
}
.machine-card__facts {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 16px 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .machine-card__facts {
    gap: 16px 30px;
  }
}
@media (max-width: 767px) {
  .machine-card__facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}
.machine-card__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.machine-card__fact-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.84px;
  color: #5a5a5a;
}
.machine-card__fact-value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.96px;
  color: #231f20;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.machine-card__actions {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .machine-card__actions {
    flex-direction: column;
  }
}

.machines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  min-width: 0;
  transition: opacity 0.3s ease;
}
.machines-grid.is-fading {
  opacity: 0.3;
}
@media (max-width: 1023px) {
  .machines-grid {
    gap: 24px;
  }
}

.machines__loading,
.machines__empty {
  grid-column: 1/-1;
  padding: 60px 0;
  color: #5a5a5a;
  font-size: 18px;
  text-align: center;
}

.l-section--machine-advisor {
  background-color: #dddedd;
  padding: 56px 0;
}
@media (max-width: 1239px) {
  .l-section--machine-advisor {
    padding: 40px 0;
  }
}

.machine-advisor {
  position: relative;
  overflow: hidden;
  background-color: #5a5a5a;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 60px 64px;
}
.machine-advisor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .machine-advisor::after {
    content: none;
  }
}
@media (max-width: 1023px) {
  .machine-advisor {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
}
.machine-advisor__col--heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.machine-advisor__eyebrow {
  color: #c8c8c8;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .machine-advisor__eyebrow {
    font-size: 14px;
    letter-spacing: 0.3px;
    text-align: center;
  }
}
.machine-advisor__title {
  margin: 0;
  color: #fff;
  font-family: "Mulish";
  font-size: 62px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: 2.48px;
  text-align: left;
  max-width: 450px;
}
@media (max-width: 767px) {
  .machine-advisor__title {
    font-size: 30px;
    letter-spacing: 1.2px;
    text-align: center;
    max-width: none;
  }
}
.machine-advisor__col--body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 100px;
}
@media (max-width: 767px) {
  .machine-advisor__col--body {
    align-items: center;
    gap: 24px;
  }
}
.machine-advisor__text {
  color: #dddedd;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: right;
  max-width: 435px;
}
@media (max-width: 1023px) {
  .machine-advisor__text {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .machine-advisor__text {
    font-size: 16px;
    text-align: center;
    max-width: none;
  }
}
.machine-advisor__text p {
  margin: 0 0 12px;
}
.machine-advisor__text p:last-child {
  margin-bottom: 0;
}

.l-section--special-offers {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  .l-section--special-offers {
    padding: 44px 0;
  }
}

.special-offers__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 48px;
}
@media (max-width: 767px) {
  .special-offers__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
}
.special-offers__head-text {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}
.special-offers__header {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
  text-align: left;
}
@media (max-width: 767px) {
  .special-offers__header {
    font-size: 30px;
  }
}
.special-offers__intro {
  margin-top: 16px;
  color: #5a5a5a;
  font-size: 18px;
  line-height: 1.6;
}
.special-offers__intro p {
  margin: 0 0 10px;
}
.special-offers__intro p:last-child {
  margin-bottom: 0;
}
.special-offers__button {
  flex-shrink: 0;
}
.special-offers__slider-hld {
  position: relative;
}
.special-offers__slider {
  overflow: visible;
}
.special-offers__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 40px;
}
.special-offers__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  width: -webkit-min-content !important;
  width: min-content !important;
}
.special-offers__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 2px solid #5a5a5a;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.special-offers__pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 10px;
  border: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #70bf54;
}
.special-offers__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 55px;
  height: 55px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #5a5a5a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.special-offers__arrow span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.special-offers__arrow:hover {
  background-color: #70bf54;
  transform: translateY(-2px);
}
.special-offers__arrow.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.special-offer-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}
.special-offer-tile:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.special-offer-tile:hover .special-offer-tile__btn {
  background-color: #f58220;
}
.special-offer-tile__image-hld {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
}
.special-offer-tile__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background-color: #dfeadf;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 2.13;
  letter-spacing: 0.84px;
  color: #231f20;
}
.special-offer-tile__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.special-offer-tile__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
}
.special-offer-tile__title {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.52px;
  text-align: left;
}
.special-offer-tile__model {
  color: #6d6e71;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.84px;
}
.special-offer-tile__producer {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #231f20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.84px;
}
.special-offer-tile__producer::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 6px;
  background-color: #70bf54;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.special-offer-tile__desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.84px;
}
.special-offer-tile__desc li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.special-offer-tile__desc-label {
  color: #6d6e71;
  font-weight: 400;
}
.special-offer-tile__desc-value {
  color: #231f20;
  font-weight: 600;
}
.special-offer-tile__btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
  transition: opacity 0.3s ease;
}
.blog-grid.is-fading {
  opacity: 0.3;
}
@media (max-width: 1239px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.blog-grid__empty {
  grid-column: 1/-1;
  padding: 60px 0;
  color: #5a5a5a;
  font-size: 18px;
  text-align: center;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.blog-card__image-hld {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 250px;
  overflow: hidden;
}
.blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
}
.blog-card__image.lazyloaded {
  transition: transform 0.7s ease, opacity 400ms;
}
.blog-card:hover .blog-card__image {
  transform: scale(1.08);
}
.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.blog-card__category {
  color: #70bf54;
  font-family: "Mulish";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card__category {
  color: #f58220;
}
.blog-card__date, .blog-card__author {
  color: #6d6e71;
  font-family: "Mulish";
  font-size: 13px;
  letter-spacing: 0.78px;
}
.blog-card__meta > *:not(:first-child) {
  position: relative;
  padding-left: 12px;
}
.blog-card__meta > *:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #6d6e71;
  transform: translateY(-50%);
}
.blog-card__title {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.52px;
  text-align: left;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card__title {
  color: #70bf54;
}
.blog-card__excerpt {
  margin: 0;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.6px;
}
.blog-card__btn {
  align-self: flex-start;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}
.blog-card:hover .blog-card__btn {
  background-color: #f58220;
}

.l-section--archive-header {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background-color: #5a5a5a;
  padding-top: 150px;
}
@media (max-width: 1023px) {
  .l-section--archive-header {
    padding-top: 0;
  }
}

.archive-header__signet {
  position: absolute;
  left: 130px;
  bottom: -60px;
  z-index: 0;
  width: 380px;
  max-width: 40%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .archive-header__signet {
    width: 90vw;
    left: 15px;
    bottom: -140px;
    max-width: unset;
  }
}

.archive-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 140px 0 60px;
}
@media (max-width: 1239px) {
  .archive-header {
    padding: 80px 0 60px;
  }
}
@media (max-width: 1023px) {
  .archive-header {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 35px 0 60px;
  }
}
.archive-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #dddedd;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .archive-header__breadcrumb {
    font-size: 14px;
    letter-spacing: 0.84px;
    margin-bottom: 12px;
  }
}
.archive-header__breadcrumb a {
  color: #dddedd;
  text-decoration: none;
  color: #dddedd;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .archive-header__breadcrumb a {
    font-size: 14px;
    letter-spacing: 0.84px;
  }
}
.archive-header__breadcrumb a:hover {
  color: #70bf54;
}
.archive-header__title {
  margin: 0;
  color: #fff;
  font-family: "Mulish";
  font-size: 62px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 2.48px;
}
@media (max-width: 767px) {
  .archive-header__title {
    font-size: 36px;
    letter-spacing: 1.44px;
    line-height: 1.2;
  }
}
.archive-header__col--description {
  position: relative;
  color: #dddedd;
  font-size: 26px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.46;
  letter-spacing: 0.52px;
}
@media (max-width: 767px) {
  .archive-header__col--description {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.3px;
  }
}
.archive-header__col--description::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130px;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .archive-header__col--description::before {
    content: none;
  }
}
.archive-header__col--description p {
  margin: 0;
}
.archive-header::after {
  content: none;
}
@media (max-width: 767px) {
  .archive-header::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    width: 18px;
    height: 18px;
    background-color: #70bf54;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 0);
  }
}

.machines-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  z-index: 90;
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid #dddedd;
}
@media (max-width: 1239px) {
  .machines-nav {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .machines-nav {
    position: static;
  }
}
.machines-nav__categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .machines-nav__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .machines-nav__categories {
    grid-template-columns: 1fr;
  }
}
.machines-nav__cat-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 140px;
  padding: 0;
  overflow: hidden;
  background-color: #231f20;
  border: 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .machines-nav__cat-tile {
    height: 64px;
    transition: height 0.35s ease;
  }
}
@media (max-width: 767px) {
  .machines-nav__cat-tile--active {
    height: 150px;
  }
}
.machines-nav__cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #231f20;
  transition: opacity 0.35s ease;
}
.machines-nav__cat-tile:hover::before, .machines-nav__cat-tile--active::before {
  opacity: 0;
}
.machines-nav__cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.machines-nav__cat-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .machines-nav__cat-tile-overlay {
    align-items: center;
    padding: 12px 20px;
  }
}
.machines-nav__cat-tile-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 0);
  transition: opacity 0.35s ease;
}
@media (max-width: 767px) {
  .machines-nav__cat-tile-overlay::before {
    width: 26px;
    height: 26px;
  }
}
.machines-nav__cat-tile:hover .machines-nav__cat-tile-overlay::before, .machines-nav__cat-tile--active .machines-nav__cat-tile-overlay::before {
  opacity: 0;
}
@media (max-width: 767px) {
  .machines-nav__cat-tile:hover .machines-nav__cat-tile-overlay, .machines-nav__cat-tile--active .machines-nav__cat-tile-overlay {
    align-items: flex-end;
    padding: 14px 20px 16px;
  }
}
.machines-nav__cat-tile-name {
  color: #fff;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.52px;
  text-align: left;
}
@media (max-width: 767px) {
  .machines-nav__cat-tile-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.36px;
  }
}
.machines-nav__cat-tile--all.machines-nav__cat-tile--active, .machines-nav__cat-tile--all:hover {
  background-color: #f58220;
}

.machines-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
@media (max-width: 767px) {
  .machines-utility__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.machines-utility__count {
  color: #5a5a5a;
  font-family: "Mulish";
  font-size: 14px;
}

.l-section--machines-grid {
  background: #fff;
}

@media (min-width: 1240px) and (max-width: 1599px) {
  .l-wrapper--machines-grid {
    padding: 0 40px;
  }
}

.machines-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  padding: 40px 0;
}
@media (min-width: 1240px) and (max-width: 1599px) {
  .machines-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
  }
}
@media (max-width: 1023px) {
  .machines-layout {
    grid-template-columns: 1fr;
  }
}

.machines-sidebar {
  position: -webkit-sticky;
  position: sticky;
  min-width: 0;
  top: 360px;
}
@media (max-width: 1239px) {
  .machines-sidebar {
    top: 300px;
  }
}
@media (max-width: 1023px) {
  .machines-sidebar {
    position: static;
  }
}
.page-special-offers .machines-sidebar {
  top: 205px;
}
.machines-sidebar__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.machines-sidebar__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  min-width: 0;
  background: #dddedd;
}
.machines-sidebar__info-title {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: break-word;
  text-align: left;
}
.machines-sidebar__info-text {
  margin: 0;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.machines-sidebar__info-cta {
  align-self: flex-start;
  margin-top: 8px;
}

.machines-nav__subcategories,
.machines-nav__subsubcategories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.machines-nav__subsubcategories {
  padding-left: 16px;
}

.machines-nav__subcat,
.machines-nav__subsubcat {
  width: 100%;
  padding: 14px 24px;
  background: #dddedd;
  border: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.9px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.machines-nav__subcat--active, .machines-nav__subcat:hover,
.machines-nav__subsubcat--active,
.machines-nav__subsubcat:hover {
  background: #70bf54;
  color: #fff;
}

.machines-nav__subsubcat {
  padding: 11px 20px;
  font-size: 14px;
}

.l-section--machine-breadcrumb {
  padding-top: 170px;
  background-color: #eaeaea;
}
@media (max-width: 1239px) {
  .l-section--machine-breadcrumb {
    padding-top: 30px;
  }
}

.machine-breadcrumb {
  padding: 28px 0;
}
.machine-breadcrumb__path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #5a5a5a;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
.machine-breadcrumb__path a {
  color: #5a5a5a;
  text-decoration: none;
}
.machine-breadcrumb__path a:hover {
  color: #70bf54;
}
.machine-breadcrumb__path span:last-child {
  font-weight: 700;
}

.l-section--machine-hero {
  background-color: #fff;
}

.machine-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 70px;
  padding: 50px 0 80px;
}
@media (max-width: 1023px) {
  .machine-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0 56px;
  }
}
@media (max-width: 767px) {
  .machine-hero {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .machine-hero__gallery {
    display: contents;
  }
}
@media (max-width: 767px) {
  .machine-hero__info {
    order: 1;
  }
}
.machine-hero__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #231f20;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
.machine-hero__title {
  margin: 0 0 4px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 62px;
  font-weight: 500;
  line-height: 1.13;
}
.machine-hero__producer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
.machine-hero__producer::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 7px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #70bf54;
}
.machine-hero__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 15px 31px 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.machine-hero__badge--available {
  padding: 5px 31px 5px;
  background-color: #dfeadf;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0.96px;
  color: #231f20;
}
.machine-hero__intro {
  margin-bottom: 28px;
  color: #5a5a5a;
}
.machine-hero__intro p {
  margin: 0 0 10px;
}
.machine-hero__intro p:last-child {
  margin-bottom: 0;
}
.machine-hero__attrs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .machine-hero__attrs {
    grid-template-columns: 1fr;
  }
}
.machine-hero__attr-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #eaeaea;
  border-radius: 4px;
}
.machine-hero__attr-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6d6e71;
  font-size: 16px;
  letter-spacing: 0.96px;
}
.machine-hero__attr-label::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #70bf54;
}
.machine-hero__attr-value {
  color: #5a5a5a;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: 1.32px;
  text-align: left;
}
.machine-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .machine-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .machine-hero__cta-btn {
    width: 100%;
  }
}
.machine-hero__cta-note {
  flex-basis: 100%;
  color: #5a5a5a;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
  text-align: left;
  font-weight: 300;
}

.machine-gallery {
  position: relative;
}
@media (max-width: 767px) {
  .machine-gallery {
    display: contents;
  }
}
.machine-gallery__main-hld {
  position: relative;
}
@media (max-width: 767px) {
  .machine-gallery__main-hld {
    display: contents;
  }
}
.machine-gallery__main {
  position: relative;
  aspect-ratio: 1.3/1;
  overflow: hidden;
  background: #fff;
  border: 2px solid #c8c8c8;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .machine-gallery__main {
    order: 2;
  }
}
.machine-gallery__slide {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.machine-gallery__slide.is-active {
  display: flex;
}
.machine-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.machine-gallery__yt-btn {
  position: absolute;
  top: 24px;
  left: -25px;
  z-index: 2;
  background-color: #231f20;
}
.machine-gallery__yt-btn:hover {
  background-color: #70bf54;
}
@media (max-width: 767px) {
  .machine-gallery__yt-btn {
    position: static;
    order: 5;
    width: 100%;
  }
}
.machine-gallery__bottom {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .machine-gallery__bottom {
    display: contents;
  }
}
.machine-gallery__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .machine-gallery__controls {
    order: 4;
    justify-self: center;
  }
}
.machine-gallery__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
}
.machine-gallery__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid #5a5a5a;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.machine-gallery__dot.is-active {
  width: 20px;
  height: 10px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-color: #70bf54;
  background-color: #70bf54;
}
.machine-gallery__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 55px;
  height: 55px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #5a5a5a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.machine-gallery__arrow span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.machine-gallery__arrow:hover {
  background-color: #70bf54;
  transform: translateY(-2px);
}
.machine-gallery__thumbs {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  gap: 20px;
}
@media (max-width: 767px) {
  .machine-gallery__thumbs {
    order: 3;
    width: 100%;
  }
}
.machine-gallery__thumb {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1.3/1;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 2px solid #c8c8c8;
  border-radius: 4px;
  cursor: pointer;
}
.machine-gallery__thumb[hidden] {
  display: none;
}
.machine-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  pointer-events: none;
}

.machine-yt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
}
.machine-yt-modal__inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.machine-yt-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.machine-yt-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.l-section--machine-spec {
  background: #fff;
}

.machine-spec {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .machine-spec {
    padding: 44px 0;
  }
}
.machine-spec__heading {
  margin: 0 0 30px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
}
.machine-spec__table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.machine-spec__section-row {
  padding: 20px 50px 22px;
  background: #5a5a5a;
  border-radius: 4px;
}
.machine-spec__section-row span {
  color: #fff;
  font-family: "Mulish";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
}
.machine-spec__row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .machine-spec__row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.machine-spec__param-name, .machine-spec__param-value {
  padding: 16px 24px;
  background: #e5e4e4;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #231f20;
}
@media (max-width: 767px) {
  .machine-spec__param-name, .machine-spec__param-value {
    padding: 14px 16px;
    font-size: 14px;
  }
}
.machine-spec__param-name {
  text-align: right;
}
@media (max-width: 767px) {
  .machine-spec__param-name {
    text-align: left;
  }
}
.machine-spec__param-value {
  text-align: left;
}
.machine-spec__row--alt .machine-spec__param-name, .machine-spec__row--alt .machine-spec__param-value {
  background: #fff;
}

.l-section--machine-usage {
  background: #fff;
}

.machine-usage {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .machine-usage {
    padding: 44px 0;
  }
}
.machine-usage__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
@media (max-width: 1023px) {
  .machine-usage__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}
.machine-usage__heading {
  margin: 0 0 20px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
}
.machine-usage__text {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
.machine-usage__text p {
  margin: 0 0 10px;
}
.machine-usage__text p:last-child {
  margin-bottom: 0;
}
.machine-usage__col--image {
  z-index: 1;
  aspect-ratio: 1/1;
  min-height: 510px;
}
@media (max-width: 1023px) {
  .machine-usage__col--image {
    min-height: 0;
  }
}
.machine-usage__col--image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.machine-usage__list-box {
  margin-top: 36px;
  padding: 48px 50px;
  background: #eaeaea;
  border-radius: 4px;
  position: relative;
  top: -80px;
  z-index: 0;
}
@media (max-width: 1023px) {
  .machine-usage__list-box {
    padding: 32px;
    top: 0;
  }
}
.machine-usage__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.machine-usage__list li {
  position: relative;
  padding-left: 22px;
  color: #231f20;
  font-size: 16px;
  font-weight: 600;
}
.machine-usage__list li:not(:last-child) {
  margin-bottom: 14px;
}
.machine-usage__list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #70bf54;
}

.l-section--machine-cases {
  background: #5a5a5a;
}

.machine-cases {
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .machine-cases {
    padding: 44px 0;
  }
}
.machine-cases__heading {
  color: #fff;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.86px;
  max-width: 415px;
  position: relative;
  left: 730px;
  top: 90px;
}
@media (max-width: 1023px) {
  .machine-cases__heading {
    left: 0;
    top: 0;
    margin-bottom: 24px;
  }
}
.machine-cases__slider {
  overflow: visible;
}
.machine-cases__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  justify-content: flex-end;
  position: relative;
  top: -55px;
}
@media (max-width: 1023px) {
  .machine-cases__controls {
    top: 0;
    margin-top: 24px;
  }
}
.machine-cases__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  width: unset !important;
}
.machine-cases__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.machine-cases__pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 10px;
  border: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #70bf54;
}
.machine-cases__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 55px;
  height: 55px;
  padding: 0;
  background: #5a5a5a;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.machine-cases__arrow span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.machine-cases__arrow:hover {
  background-color: #70bf54;
  transform: translateY(-2px);
}
.machine-cases__arrow.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.machine-cases .basic-button--outline {
  border-color: #fff;
}
.machine-cases .basic-button--outline .text {
  color: #fff;
}
.machine-cases .basic-button--outline:hover {
  background-color: #fff;
}
.machine-cases .basic-button--outline:hover .text {
  color: #231f20;
}

.machine-case {
  display: flex;
  align-items: center;
  gap: 96px;
}
@media (max-width: 1023px) {
  .machine-case {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.machine-case__image-hld {
  flex: 0 0 640px;
  width: 640px;
  height: 494px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .machine-case__image-hld {
    flex-basis: auto;
    width: 100%;
    height: 320px;
  }
}
.machine-case__image-hld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.machine-case__content {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .machine-case__content {
    margin-top: 0;
  }
}
.machine-case__eyebrow {
  margin-bottom: 15px;
  color: #c8c8c8;
  font-size: 14px;
  font-weight: 300;
  line-height: 2.43;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}
.machine-case__title {
  margin: 0 0 24px;
  color: #fff;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: left;
}
.machine-case__desc {
  margin-bottom: 40px;
  color: #fff;
}
@media (max-width: 1023px) {
  .machine-case__desc {
    margin-bottom: 24px;
  }
}
.machine-case__desc p {
  margin: 0;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
.machine-case__links {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .machine-case__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .machine-case__link {
    width: 100%;
  }
}

.l-section--machine-related {
  background: #fff;
}

.machine-related {
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .machine-related {
    padding: 44px 0;
  }
}
.machine-related__heading {
  margin: 0 0 41px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
}
.machine-related__slider {
  overflow: visible;
}
.machine-related__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .machine-related__bottom {
    flex-wrap: wrap;
  }
}
.machine-related__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.machine-related__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  width: -webkit-min-content !important;
  width: min-content !important;
}
.machine-related__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 2px solid #5a5a5a;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.machine-related__pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 10px;
  border: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #70bf54;
}
.machine-related__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 55px;
  height: 55px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #5a5a5a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.machine-related__arrow span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.machine-related__arrow:hover {
  background-color: #70bf54;
  transform: translateY(-2px);
}
.machine-related__arrow.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.machine-mini-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
}
.machine-mini-card__row {
  display: flex;
  flex: 1 1 auto;
  gap: 24px;
}
@media (max-width: 767px) {
  .machine-mini-card__row {
    flex-direction: column;
  }
}
.machine-mini-card__image-hld {
  flex: 0 0 110px;
  width: 110px;
  height: 140px;
}
@media (max-width: 767px) {
  .machine-mini-card__image-hld {
    flex-basis: auto;
    width: 100%;
    height: 200px;
  }
}
.machine-mini-card__image-hld img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.machine-mini-card__content {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}
.machine-mini-card__model {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 26px;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0.52px;
  text-align: left;
}
.machine-mini-card__attrs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.84px;
}
.machine-mini-card__attrs li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.machine-mini-card__attr-label {
  color: #6d6e71;
  font-weight: 400;
}
.machine-mini-card__attr-value {
  color: #231f20;
  font-weight: 600;
}
.machine-mini-card__btn {
  width: 100%;
  justify-content: center;
}

.blog-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 170px;
  z-index: 90;
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid #dddedd;
}
@media (max-width: 1239px) {
  .blog-nav {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .blog-nav {
    position: static;
  }
}
.blog-nav__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 767px) {
  .blog-nav__categories {
    gap: 10px;
  }
}
.blog-nav__cat {
  padding: 15px 32px;
  background: #dddedd;
  border: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 16px;
  font-weight: bold;
  line-height: 1.63;
  letter-spacing: 0.96px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
@media (max-width: 767px) {
  .blog-nav__cat {
    padding: 12px 20px;
    font-size: 14px;
    letter-spacing: 0.84px;
  }
}
.blog-nav__cat--active, .blog-nav__cat:hover {
  background: #70bf54;
  color: #fff;
}

.blog-listing__utility {
  padding: 14px 0;
}

.blog-listing__count {
  color: #5a5a5a;
  font-family: "Mulish";
  font-size: 14px;
}

.l-section--blog-grid {
  background: #fff;
}

.l-section--blog-single-hero {
  position: relative;
  overflow: hidden;
  background-color: #5a5a5a;
  padding-top: 150px;
}
@media (max-width: 1023px) {
  .l-section--blog-single-hero {
    padding-top: 0;
  }
}

.blog-single-hero__signet {
  position: absolute;
  left: 130px;
  bottom: -60px;
  z-index: 0;
  width: 380px;
  max-width: 40%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .blog-single-hero__signet {
    width: 90vw;
    left: 15px;
    bottom: -140px;
    max-width: unset;
  }
}

.blog-single-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
  padding: 140px 0 60px;
}
@media (max-width: 1239px) {
  .blog-single-hero {
    padding: 80px 0 60px;
  }
}
@media (max-width: 1023px) {
  .blog-single-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 35px 0 60px;
  }
}
.blog-single-hero__breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #dddedd;
  font-size: 16px;
  line-height: 2.13;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .blog-single-hero__breadcrumb {
    font-size: 14px;
    letter-spacing: 0.84px;
    margin-bottom: 12px;
  }
}
.blog-single-hero__breadcrumb > *:not(:last-child) {
  flex-shrink: 0;
}
.blog-single-hero__breadcrumb a {
  color: #dddedd;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-single-hero__breadcrumb a:hover {
  color: #70bf54;
}
.blog-single-hero__breadcrumb span:last-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blog-single-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Mulish";
  font-size: 62px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 2.48px;
}
@media (max-width: 767px) {
  .blog-single-hero__title {
    font-size: 36px;
    letter-spacing: 1.44px;
    line-height: 1.2;
  }
}
.blog-single-hero__col--description {
  position: relative;
  color: #dddedd;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.52px;
}
@media (max-width: 767px) {
  .blog-single-hero__col--description {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.3px;
  }
}
.blog-single-hero__col--description::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130px;
  width: 43px;
  height: 43px;
  background-color: #70bf54;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1239px) {
  .blog-single-hero__col--description::before {
    content: none;
  }
}
.blog-single-hero__col--description p {
  margin: 0;
}
.blog-single-hero::after {
  content: none;
}
@media (max-width: 767px) {
  .blog-single-hero::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    width: 18px;
    height: 18px;
    background-color: #70bf54;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 0);
  }
}

.blog-single-body__image-hld {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 4px;
  max-height: 300px;
}

.blog-single-body__image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  max-height: 300px;
}

.l-section--blog-single-body {
  background: #fff;
  padding: 48px 0 80px;
}

.blog-single-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 60px;
}
@media (max-width: 1023px) {
  .blog-single-body {
    grid-template-columns: 1fr;
  }
}
.blog-single-body__main {
  min-width: 0;
}
.blog-single-body__sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 190px;
}
@media (max-width: 1239px) {
  .blog-single-body__sidebar {
    top: 130px;
  }
}
@media (max-width: 1023px) {
  .blog-single-body__sidebar {
    position: static;
  }
}

.blog-single__content {
  color: #231f20;
}
.blog-single__content > * + * {
  margin-top: 28px;
}
.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4,
.blog-single__content h5,
.blog-single__content h6 {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-weight: 500;
  text-align: left;
}
.blog-single__content h2 {
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.72px;
}
.blog-single__content h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.56px;
}
.blog-single__content h4 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0.44px;
}
.blog-single__content > * + h2 {
  margin-top: 72px;
}
.blog-single__content > * + h3 {
  margin-top: 56px;
}
.blog-single__content > * + h4 {
  margin-top: 44px;
}
.blog-single__content h2 + *,
.blog-single__content h3 + *,
.blog-single__content h4 + *,
.blog-single__content h5 + *,
.blog-single__content h6 + * {
  margin-top: 18px;
}
.blog-single__content p {
  margin: 0;
}
.blog-single__content a {
  color: #70bf54;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.blog-single__content a:hover {
  color: #f58220;
}
.blog-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
}
.blog-single__content ul,
.blog-single__content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-single__content ul li {
  position: relative;
  padding-left: 26px;
}
.blog-single__content ul li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #70bf54;
}
.blog-single__content ol {
  counter-reset: blog-ol;
}
.blog-single__content ol li {
  position: relative;
  padding-left: 30px;
  counter-increment: blog-ol;
}
.blog-single__content ol li::before {
  content: counter(blog-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #70bf54;
  font-weight: 700;
}
.blog-single__content blockquote {
  margin: 0;
  padding: 30px 40px;
  background-color: #dddedd;
  border-left: 4px solid #70bf54;
  color: #231f20;
  font-family: "Mulish";
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
}
.blog-single__content blockquote p {
  margin: 0;
}
.blog-single__content blockquote p:not(:last-child) {
  margin-bottom: 12px;
}
.blog-single__content blockquote cite {
  display: block;
  margin-top: 16px;
  color: #5a5a5a;
  font-family: "Mulish";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.blog-single__content table {
  width: 100%;
  border-collapse: collapse;
}
.blog-single__content th,
.blog-single__content td {
  padding: 14px 20px;
  border: 1px solid #c8c8c8;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.blog-single__content th {
  background-color: #231f20;
  color: #fff;
  font-weight: 700;
}
.blog-single__content tbody tr:nth-child(even) {
  background-color: #dddedd;
}

.blog-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #dddedd;
}

.blog-single__tag {
  padding: 8px 18px;
  background-color: #dddedd;
  border-radius: 20px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.blog-single__tag:hover {
  background-color: #70bf54;
  color: #fff;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-sidebar__title {
  margin: 0;
  color: #231f20;
  font-family: "Mulish";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}
.blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-sidebar__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.blog-sidebar__item-image-hld {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
}
.blog-sidebar__item-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
}
.blog-sidebar__item-image.lazyloaded {
  transition: transform 0.3s ease, opacity 400ms;
}
.blog-sidebar__item:hover .blog-sidebar__item-image {
  transform: scale(1.08);
}
.blog-sidebar__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.blog-sidebar__item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-sidebar__item-date, .blog-sidebar__item-author {
  color: #6d6e71;
  font-size: 12px;
  letter-spacing: 0.72px;
}
.blog-sidebar__item-meta > *:not(:first-child) {
  position: relative;
  padding-left: 10px;
}
.blog-sidebar__item-meta > *:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #6d6e71;
  transform: translateY(-50%);
}
.blog-sidebar__item-title {
  color: #231f20;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.45px;
  transition: color 0.2s ease;
}
.blog-sidebar__item:hover .blog-sidebar__item-title {
  color: #70bf54;
}
.blog-sidebar__all {
  width: 100%;
  justify-content: center;
}

.l-section--blog-related {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 1023px) {
  .l-section--blog-related {
    padding: 44px 0;
  }
}

.blog-related__heading {
  margin: 0 0 41px;
  color: #231f20;
  font-family: "Mulish";
  font-size: 43px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.86px;
  text-align: left;
}
.blog-related__slider {
  overflow: visible;
}
.blog-related__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 40px;
}
.blog-related__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  width: -webkit-min-content !important;
  width: min-content !important;
}
.blog-related__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 2px solid #5a5a5a;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.blog-related__pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 10px;
  border: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #70bf54;
}
.blog-related__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 55px;
  height: 55px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #5a5a5a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.blog-related__arrow span {
  display: block;
  font-size: 18px;
  line-height: 1;
}
.blog-related__arrow:hover {
  background-color: #70bf54;
  transform: translateY(-2px);
}
.blog-related__arrow.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.blog-mini-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-mini-card__image-hld {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-mini-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}
.blog-mini-card__image.lazyloaded {
  transition: transform 0.4s ease, opacity 400ms;
}
.blog-mini-card:hover .blog-mini-card__image {
  transform: scale(1.05);
}
.blog-mini-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-mini-card__category {
  color: #70bf54;
  font-family: "Mulish";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.78px;
  text-transform: uppercase;
}
.blog-mini-card__title {
  color: #231f20;
  font-family: "Mulish";
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.44px;
  transition: color 0.2s ease;
}
.blog-mini-card:hover .blog-mini-card__title {
  color: #70bf54;
}
.blog-mini-card__excerpt {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.6px;
}/*# sourceMappingURL=style.css.map */