* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #fff;
}

.fadein-mask {
  opacity: 0;
  -webkit-mask-image: linear-gradient(to top, black 50%, transparent 50%);
  mask-image: linear-gradient(to top, black 50%, transparent 50%);
  -webkit-mask-size: 100% 200%;
  mask-size: 100% 200%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  transition: opacity 0.5s ease-out, -webkit-mask-position 1.2s ease-in-out, mask-position 1.2s ease-in-out;
}

.fadein-mask.visible {
  opacity: 1;
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;
}

.fadetext {
  color: #000000;
}

.fadetext span {
  color: #0F0F0F;
  transition: color 0.3s linear;
  display: inline-block;
  white-space: pre;
}

.fadetext.visible span {
  color: #00CD58;
}

.container {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.headline-pill {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.09);
  color: #00CD58;
  width: fit-content;
  padding: 1px 35px;
  border-radius: 48px;
  margin: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  background-color: #fff;
}

h1.title, h2.title {
  font-weight: 400;
  font-size: 64px;
  line-height: 110%;
  color: #0F0F0F;
  letter-spacing: -4%;
}

p.desc {
  font-size: 20px;
  line-height: 150%;
  color: #767676;
}

section {
  position: relative;
}

.navpoint {
  position: absolute;
  top: -96px;
  left: 0px;
}

.cta {
  background-color: #00CD58;
  border-radius: 50px;
  text-decoration: none;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 22px;
  transition: 0.24s ease;
  box-shadow: none;
  border: none;
  cursor: pointer;
}
.cta span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cta img {
  width: 0px;
  height: 24px;
  margin-left: 0px;
  transition: 0.24s ease;
}
.cta:hover {
  margin-left: -32px;
}
.cta:hover img {
  width: 24px;
  margin-left: 8px;
}
.cta:active {
  transform: scale(0.96);
}

.cta-second {
  background-color: #fff;
  border-radius: 50px;
  text-decoration: none;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 22px;
  transition: 0.24s ease;
  box-shadow: none;
  border: none;
  cursor: pointer;
  border: 2px solid #004664;
}
.cta-second span {
  font-size: 14px;
  font-weight: 600;
  color: #004664;
}
.cta-second:hover {
  background-color: #004664;
}
.cta-second:hover span {
  color: #fff;
}
.cta-second:active {
  transform: scale(0.96);
}

header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0px;
  transition: box-shadow 0.32s ease;
  transition: padding 0.24s ease;
  z-index: 100;
}
header.active {
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.08);
}
header .navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar ul {
  display: flex;
  gap: 20px;
}
header .navbar ul li {
  list-style: none;
}
header .navbar ul li a {
  text-decoration: none;
  color: #3C3C3D;
  font-size: 14px;
  font-weight: 500;
  transition: 0.16s ease;
  padding: 2px;
}
header .navbar ul li a:hover, header .navbar ul li a.active {
  color: #00CD58;
}
header .navbar .cta.mobile {
  display: none;
}
header .navbar #burger {
  display: none;
}

main {
  padding-top: 96px;
}

section.hero {
  padding-top: 16px;
}
section.hero h1 {
  width: 100%;
  text-align: center;
}
section.hero p.desc {
  text-align: center;
  width: 800px;
  margin: 16px auto 60px;
  max-width: 100%;
}
section.hero .cta.mobile {
  display: none;
}
section.hero .banner {
  width: 100%;
  position: relative;
}
section.hero .banner .bg {
  background: linear-gradient(to top, #007864 0%, #00CD58 100%);
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 362px;
  border-radius: 30px;
}
section.hero .banner .frame {
  width: 907px;
  margin: auto;
  display: block;
  position: relative;
  max-width: 100%;
}
section.hero .banner .frame .frameimg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
section.hero .banner .frame .frameelement {
  display: none;
}
section.hero .banner .frame .swiper-hero {
  overflow: hidden;
  width: 96%;
  margin-left: 2%;
  border-radius: 16px 16px 0px 0px;
}
section.hero .banner .frame .swiper-hero .swiper-slide {
  width: 100%;
  margin: auto;
  display: block;
  margin-bottom: -4px;
}
section.hero .banner .frame .swiper-hero .swiper-slide img {
  height: auto;
  width: 100%;
}
section.hero .banner .frame .swiper-hero .swiper-slide img.mobile {
  display: none;
}
section.hero .banner .frame .swiper-hero .swiper-slide:first-of-type img {
  border-top-left-radius: 16px;
}
section.hero .banner .frame .swiper-hero .swiper-slide:last-of-type img {
  border-top-right-radius: 16px;
}
section.hero .banner .frame .swiper-hero .swiper-pagination {
  position: absolute;
  bottom: 35px;
}
section.hero .banner .frame .swiper-hero .swiper-pagination .swiper-pagination-bullet {
  background: #00CD58;
  opacity: 0.2;
  height: 6px;
  width: 16px;
  border-radius: 16px;
  transition: 0.24s ease;
}
section.hero .banner .frame .swiper-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 80px;
}

section.steps {
  padding: 60px 0px 64px;
}
section.steps .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
}
section.steps .container .box {
  padding-right: 30px;
}
section.steps .container .box span.number {
  font-size: 60px;
  line-height: 90%;
  color: #004663;
  font-weight: 300;
  margin-bottom: 40px;
  display: block;
}
section.steps .container .box h2 {
  font-size: 20px;
  font-weight: 400;
  color: #004664;
  margin-bottom: 20px;
}

section.solution {
  padding: 60px 0px;
}
section.solution .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
section.solution .container .text-box {
  width: 50%;
}
section.solution .container .text-box h2 {
  margin-bottom: 40px;
}
section.solution .container .text-box ul {
  list-style: disc;
  padding-left: 20px;
}
section.solution .container .text-box ul li {
  font-size: 20px;
  line-height: 150%;
  color: #767676;
  margin-bottom: 12px;
  padding: 20px 0px;
  border-bottom: 1px solid rgba(0, 205, 89, 0.2);
}
section.solution .container .text-box ul li:last-child {
  border-bottom: none;
}
section.solution .container .img-box {
  width: 50%;
}
section.solution .container .img-box img {
  width: 100%;
  border-radius: 8px;
}

section.models {
  padding: 60px 0px 100px;
}
section.models .container h2.title {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
section.models .container .switch {
  border: 1px solid rgba(0, 205, 89, 0.5);
  height: 48px;
  border-radius: 48px;
  margin: auto;
  display: block;
  background-color: #fff;
  box-shadow: none;
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 24px;
  position: relative;
  display: flex;
}
section.models .container .switch .btn {
  height: 48px;
  padding: 0px 10px;
  font-size: 20px;
  color: #3C3C3D;
  border-radius: 32px;
  display: inline-block;
  line-height: 48px;
  width: 252px;
  text-align: center;
  position: relative;
  transition: 0.12s;
}
section.models .container .switch .pill {
  background-color: #00CD58;
  width: 252px;
  height: 48px;
  border-radius: 40px;
  position: absolute;
  top: 0px;
  transition: 0.32s ease;
  left: 0px;
}
section.models .container .switch[data-id="1"] .btn:first-of-type {
  color: #fff;
}
section.models .container .switch[data-id="1"] .pill {
  left: 0px;
}
section.models .container .switch[data-id="2"] .btn:last-of-type {
  color: #fff;
}
section.models .container .switch[data-id="2"] .pill {
  left: 252px;
}
section.models .container p.desc {
  text-align: center;
}
section.models .container p.desc[data-id="1"] span:first-of-type {
  display: block;
}
section.models .container p.desc[data-id="1"] span:last-of-type {
  display: none;
}
section.models .container p.desc[data-id="2"] span:first-of-type {
  display: none;
}
section.models .container p.desc[data-id="2"] span:last-of-type {
  display: block;
}
section.models .container .content {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
section.models .container .content .swiper-models {
  overflow: hidden;
  width: calc(50% - 8px);
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: auto;
}
section.models .container .content .swiper-models .swiper-slide {
  position: relative;
}
section.models .container .content .swiper-models .swiper-slide .headline-pill {
  position: absolute;
  top: 20px;
  left: 22px;
}
section.models .container .content .swiper-models .swiper-slide img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  box-shadow: 1px 4px 21px -6px rgba(0, 0, 0, 0.15);
}
section.models .container .content .swiper-models .swiper-slide:first-of-type img {
  border-top-left-radius: 24px;
}
section.models .container .content .swiper-models .swiper-slide:last-of-type img {
  border-top-right-radius: 24px;
}
section.models .container .content .swiper-models .swiper-pagination {
  position: absolute;
  bottom: 35px;
}
section.models .container .content .swiper-models .swiper-pagination .swiper-pagination-bullet {
  background: #00CD58;
  opacity: 0.2;
  height: 6px;
  width: 16px;
  border-radius: 16px;
  transition: 0.24s ease;
}
section.models .container .content .swiper-models .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 80px;
}
section.models .container .content .box {
  width: calc(50% - 8px);
  position: relative;
}
section.models .container .content .box img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 1px 4px 21px -6px rgba(0, 0, 0, 0.15);
}

section.system {
  padding: 60px 0px;
}
section.system .container h2.title {
  text-align: center;
}
section.system .container p.desc {
  text-align: center;
  width: 720px;
  max-width: 100%;
  margin: 24px auto 0px;
}
section.system .container .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}
section.system .container .content .item {
  padding-right: 70px;
  width: calc(33.3333333333% - 13.3333333333px);
}
section.system .container .content .item span.number {
  color: #004663;
  font-size: 60px;
  line-height: 90%;
}
section.system .container .content .item h3.name {
  color: #004664;
  font-size: 20px;
  font-weight: 400;
  margin-top: 38px;
  margin-bottom: 20px;
}
section.system .container .content .item p.info {
  color: #6F6F6F;
  font-size: 15px;
  line-height: 140%;
}

section.features .container .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
section.features .container .item.odd {
  flex-direction: row-reverse;
}
section.features .container .item .box {
  width: calc(50% - 10px);
}
section.features .container .item .box.box-text {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
  gap: 16px;
}
section.features .container .item .box.box-text h2 {
  color: #004663;
  font-size: 60px;
  line-height: 90%;
  font-weight: 400;
}
section.features .container .item .box.box-text p {
  font-size: 20px;
  line-height: 120%;
  color: #004664;
}
section.features .container .item .box.box-text ul {
  font-size: 20px;
  line-height: 150%;
  color: #767676;
  padding-left: 28px;
}
section.features .container .item .box.box-img img {
  width: 100%;
  border-radius: 8px;
}

section.faq {
  padding: 60px 0px;
}
section.faq .container {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
section.faq .container .headline {
  width: 400px;
  position: sticky;
  top: 120px;
}
section.faq .container .headline h2.title {
  margin-bottom: 24px;
}
section.faq .container .content {
  width: calc(100% - 480px);
  margin-top: -10px;
}
section.faq .container .content .item {
  padding-bottom: 30px;
  padding-top: 30px;
  border-bottom: 1px solid rgba(0, 205, 89, 0.2);
  cursor: pointer;
}
section.faq .container .content .item.active .question img {
  transform: rotate(0deg);
}
section.faq .container .content .item:first-of-type {
  padding-top: 10px;
}
section.faq .container .content .item .question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.faq .container .content .item .question h3 {
  font-weight: 400;
  font-size: 20px;
  color: #004664;
}
section.faq .container .content .item .question img {
  transform: rotate(90deg);
  transition: 0.16s ease;
}
section.faq .container .content .item p {
  padding-top: 16px;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  display: none;
  line-height: 24px;
}

section.comparison {
  padding: 65px 0px;
}
section.comparison .container .headline-pill {
  margin: auto;
  display: block;
}
section.comparison .container h2.title {
  text-align: center;
  margin: 24px 0px;
}
section.comparison .container p.desc {
  margin: auto;
  text-align: center;
}
section.comparison .container img.info {
  margin-top: 40px;
  width: 100%;
  pointer-events: none;
}
section.comparison .container img.info.desktop {
  display: block;
}
section.comparison .container img.info.mobile {
  display: none;
}

section.reconomy {
  padding: 60px 0px 68px;
}
section.reconomy .container .headline-pill {
  margin: auto;
  display: block;
}
section.reconomy .container h2.title {
  text-align: center;
  margin: 24px 0px;
}
section.reconomy .container p.desc {
  margin: auto;
  text-align: center;
}
section.reconomy .container .buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

section.form {
  padding: 60px 0px 66px;
}
section.form .container {
  max-width: 717px;
}
section.form .container h2.title {
  text-align: center;
  margin-bottom: 24px;
}
section.form .container p.desc {
  text-align: center;
}
section.form .container form {
  margin-top: 76px;
  background: linear-gradient(to bottom, #FFFFFF 0%, rgba(0, 205, 89, 0.15) 100%);
  border-radius: 8px;
  width: 100%;
  padding: 32px;
  box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.1);
  transition: 0.42s;
}
section.form .container form .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
section.form .container form .fields .field {
  width: calc(50% - 12px);
}
section.form .container form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
section.form .container form .field label {
  font-size: 14px;
  color: #0F0F0F;
  font-weight: 500;
  margin-bottom: 6px;
}
section.form .container form .field input, section.form .container form .field textarea {
  padding: 12px 32px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 205, 89, 0.2);
  font-size: 16px;
  color: #0F0F0F;
  font-weight: 400;
  transition: border-color 0.16s ease;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.05);
}
section.form .container form .field input:focus, section.form .container form .field textarea:focus {
  border-color: #00CD58;
  outline: none;
}
section.form .container form .field textarea {
  resize: vertical;
  height: 127px;
  min-height: 127px;
  max-height: 300px;
}
section.form .container form .consents {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.form .container form .consents .consent {
  display: flex;
}
section.form .container form .consents .consent input {
  width: 20px;
  height: 20px;
  accent-color: #00CD58;
  cursor: pointer;
  display: block;
}
section.form .container form .consents .consent label {
  width: calc(100% - 20px);
  padding-left: 8px;
  font-size: 16px;
  color: #0F0F0F;
}
section.form .container form button.cta {
  width: 100%;
}
section.form .container form button.cta:hover {
  margin-left: 0px;
}
section.form .container form p.thank {
  text-align: center;
  padding: 32px 16px;
  font-weight: 600;
  font-size: 20px;
  color: #004664;
  display: none;
}

footer .container {
  border-top: 1px solid rgba(0, 205, 89, 0.2);
  padding: 40px 0px 72px;
}
footer .container .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .container .top nav {
  gap: 24px;
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
footer .container .top nav ul {
  display: flex;
  gap: 20px;
  margin-left: -2px;
}
footer .container .top nav ul li {
  list-style: none;
}
footer .container .top nav ul li a {
  text-decoration: none;
  color: #3C3C3D;
  font-size: 14px;
  font-weight: 500;
  transition: 0.16s ease;
  padding: 2px;
}
footer .container .top nav ul li a:hover {
  color: #00CD58;
}
footer .container .top .socials {
  margin-top: -2px;
  margin-right: -2px;
  display: flex;
  gap: 20px;
}
footer .container .top .socials a {
  display: block;
  padding: 2px;
}
footer .container .documents {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  margin-left: -2px;
  margin-bottom: 80px;
}
footer .container .documents a {
  text-decoration: none;
  color: #3C3C3D;
  font-size: 14px;
  font-weight: 500;
  transition: 0.16s ease;
  padding: 2px;
}
footer .container .documents a:hover {
  color: #00CD58;
}
footer .container .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .container .info span {
  font-size: 14px;
  color: #3C3C3D;
  font-weight: 500;
}

@media (max-width: 1250px) {
  section.solution .container .img-box img {
    height: auto;
  }
}
@media (max-width: 1050px) {
  header {
    padding: 20px 0px;
    background-color: none !important;
    box-shadow: none !important;
  }
  header.active .navbar nav {
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.08);
  }
  header.open .navbar #burger span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -4px;
  }
  header.open .navbar #burger span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .navbar #burger span:nth-of-type(3) {
    transform: rotate(-45deg);
    margin-top: -4px;
  }
  header.open .navbar nav {
    transform: translateY(0px);
    padding-bottom: 40px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.08);
  }
  header .navbar .cta.mobile {
    display: block;
  }
  header .navbar .cta.desktop {
    display: none;
  }
  header .navbar .logo {
    height: 40px;
    position: relative;
    z-index: 10;
  }
  header .navbar .logo img {
    height: 40px;
  }
  header .navbar #burger {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 3px;
    cursor: pointer;
    position: relative;
  }
  header .navbar #burger span {
    width: 18px;
    height: 2px;
    background-color: #000;
    transition: 0.24s ease;
  }
  header .navbar nav {
    display: flex;
    flex-direction: column;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #fff;
    width: 100%;
    padding-bottom: 80px;
    transform: translateY(calc(-100% + 80px));
    border-radius: 0px 0px 32px 32px;
    transition: 0.48s ease;
    padding-top: 110px;
  }
  header .navbar nav ul {
    flex-direction: column;
    align-items: center;
  }
  header .navbar nav ul li a {
    font-size: 16px;
    font-weight: 500;
  }
  header .navbar nav .cta.mobile {
    display: flex;
    width: fit-content;
    margin: auto;
    margin-top: 24px;
  }
  section.hero .banner .bg {
    width: 110%;
    margin-left: -5%;
  }
}
@media (max-width: 950px) {
  p.desc {
    font-size: 18px;
  }
  h1.title {
    font-size: 60px;
  }
  h2.title {
    font-size: 40px;
  }
  .headline-pill {
    margin-left: 0px;
    margin-right: auto;
  }
  section.hero h1 {
    text-align: left;
  }
  section.hero p.desc {
    text-align: left;
    width: 100%;
  }
  section.hero .banner .bg {
    height: 250px;
  }
  section.steps .container {
    flex-wrap: wrap;
    gap: 50px;
  }
  section.steps .container .box {
    width: 100%;
  }
  section.solution .container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  section.solution .container .text-box {
    width: 100%;
  }
  section.solution .container .img-box {
    width: 100%;
    max-width: 500px;
    margin-left: 0px;
    margin-right: auto;
  }
  section.solution .container .text-box ul li {
    font-size: 18px;
    margin-bottom: 0px;
  }
  section.models {
    padding-bottom: 60px;
  }
  section.models .container h2.title {
    text-align: left;
  }
  section.models .container p.desc {
    text-align: left;
  }
  section.models .container .switch {
    margin-left: 0px;
    margin-right: auto;
  }
  section.system .container h2.title {
    text-align: left;
  }
  section.system .container p.desc {
    text-align: left;
  }
  section.system .container .content {
    flex-wrap: wrap;
    gap: 50px;
  }
  section.system .container .content .item {
    width: 100%;
  }
  section.features {
    padding-top: 22px;
  }
  section.features .container .item {
    width: 100%;
    flex-direction: column-reverse;
  }
  section.features .container .item.odd {
    flex-direction: column-reverse;
  }
  section.features .container .item .box {
    width: 100%;
  }
  section.features .container .item .box img {
    max-width: 500px;
  }
  section.features .container .item .box.box-text {
    padding: 40px 90px 40px 0px;
  }
  section.features .container .item .box.box-text ul {
    font-size: 18px;
  }
  section.comparison {
    padding: 60px 0px 47px;
  }
  section.comparison .container .headline-pill {
    margin-left: 0px;
    margin-right: auto;
  }
  section.comparison .container h2.title {
    text-align: left;
  }
  section.comparison .container p.desc {
    text-align: left;
  }
  section.comparison .container img.info {
    max-width: 380px;
  }
  section.comparison .container img.info.desktop {
    display: none;
  }
  section.comparison .container img.info.mobile {
    display: block;
  }
  section.reconomy {
    padding-bottom: 40px;
  }
  section.reconomy .container .headline-pill {
    margin-left: 0px;
    margin-right: auto;
  }
  section.reconomy .container h2.title {
    text-align: left;
  }
  section.reconomy .container p.desc {
    text-align: left;
  }
  section.reconomy .container .buttons {
    justify-content: flex-start;
  }
  section.faq .container {
    flex-direction: column;
    gap: 50px;
  }
  section.faq .container .headline {
    position: relative;
    width: 100%;
    top: auto;
  }
  section.faq .container .content {
    width: 100%;
  }
  section.faq .container .content .item p {
    font-size: 14px;
    color: #767676;
  }
  section.form .container h2.title {
    text-align: left;
  }
  section.form .container p.desc {
    text-align: left;
  }
  section.form .container form .fields {
    margin-bottom: 24px;
  }
  section.form .container form .fields .field {
    width: 100%;
    margin-bottom: 0px;
  }
  footer .container {
    padding: 40px 0px 20px;
  }
  footer .container .top {
    display: flex;
    flex-direction: column;
  }
  footer .container .top nav {
    margin-bottom: 40px;
  }
  footer .container .top nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .container .top nav ul li a {
    font-size: 18px;
  }
  footer .container .top .socials {
    display: flex;
    justify-content: center;
  }
  footer .container .info {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .cta img {
    width: 24px;
    margin-left: 8px;
  }
  .cta:hover {
    margin-left: 0px;
  }
  section.models .container .switch {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 24px;
    margin-left: 0px;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
  }
  section.models .container .switch .pill {
    width: 100%;
  }
  section.models .container .switch .btn {
    width: 100%;
  }
  section.models .container .switch[data-id="2"] .pill {
    left: 0px;
    top: 48px;
  }
  section.models .container .content {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  section.models .container .content .swiper-models, section.models .container .content .box {
    width: 100%;
    height: calc(100vw - 80px);
    max-width: 700px;
    max-height: 700px;
  }
  section.reconomy .container .buttons {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
    gap: 30px;
  }
  section.reconomy .container .buttons .cta, section.reconomy .container .buttons .cta-second {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 550px) {
  .container {
    width: calc(100% - 32px);
  }
  section.hero p.desc {
    margin-bottom: 16px;
  }
  section.hero .cta.mobile {
    display: flex;
    margin-bottom: 61px;
  }
  section.hero .banner .bg {
    width: 100%;
    margin-left: 0px;
    height: 320px;
  }
  section.hero .banner .frame {
    width: calc(100% - 72px);
  }
  section.hero .banner .frame .frameelement {
    display: block;
    border-radius: 32px 32px 0px 0px;
    width: 100%;
    height: calc(100% + 10px);
    background-color: #0F0F0F;
    position: absolute;
    bottom: 0px;
    left: 0px;
  }
  section.hero .banner .frame .frameimg {
    display: none;
  }
  section.hero .banner .frame .swiper-hero {
    width: calc(100% - 20px);
    margin-left: 10px;
    border-radius: 32px 32px 0px 0px;
  }
  section.hero .banner .frame .swiper-hero .swiper-pagination {
    bottom: 25px;
  }
  section.hero .banner .frame .swiper-hero .swiper-slide img.mobile {
    display: block;
  }
  section.hero .banner .frame .swiper-hero .swiper-slide img.desktop {
    display: none;
  }
  section.steps .container .box {
    padding-right: 0px;
  }
  section.models .container .content .swiper-models, section.models .container .content .box {
    height: calc(100vw - 32px);
  }
  section.system .container .content .item {
    padding-right: 0px;
  }
  section.features .container .item .box.box-text {
    padding: 40px 0px 40px 0px;
  }
}
@media (max-width: 350px) {
  h1.title, h2.title {
    font-size: 50px;
  }
}