:root {
  --neutral-text: #434168;
  --neutral-headline: #141242;
  --light-blue: #aee8e8;
  --yellow-main: #fff6c8;
  --white: white;
  --purple-light: #f5f3fd;
  --purple-main: #5438dc;
  --green: #40b8b8;
  --dark-green: #066;
  --dark-900: #120b29;
  --light-green: #e3f5f5;
  --darker-purple: var(--light-blue);
  --hover-purple: #5b3b3b;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--neutral-text);
  font-family: Plus Jakarta Sans;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 175%;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 120%;
}

h2 {
  color: var(--neutral-headline);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 600;
  line-height: 115%;
}

h3 {
  color: var(--neutral-headline);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 30px;
}

p {
  margin-bottom: 0;
}

.section {
  padding: 7.2rem 2rem;
}

.section.hp-hero {
  background-color: var(--light-blue);
  color: #fff;
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/Frame-1-min.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  max-height: none;
  padding-top: 14rem;
  padding-bottom: 14rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.discounts {
  background-color: var(--yellow-main);
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.section.howto {
  background-color: var(--white);
  padding-top: 4rem;
}

.section.footer {
  background-color: var(--white);
  padding-top: 36px;
  padding-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.section.cta {
  padding-top: 0;
}

.section.features {
  background-color: #d9f1f1;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}

.section.scroll {
  background-color: var(--purple-light);
  padding-top: 0;
  padding-bottom: 0;
}

.section.scroll.hide {
  display: block;
}

.section.scroll.mobile-only {
  display: none;
}

.section.special {
  padding: 0;
}

.section.purple {
  background-color: var(--purple-light);
  padding-top: 7.2rem;
}

.section.large {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.site-container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  display: flex;
}

.site-container.hp {
  grid-column-gap: 8.8rem;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 116.8rem;
  margin-right: 0;
  font-family: Roboto, sans-serif;
  display: flex;
}

.site-container.header {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: static;
}

.site-container.header-container {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.site-container.hp-main {
  display: flex;
  position: relative;
}

.site-container.cta {
  grid-column-gap: 14rem;
  background-color: var(--purple-main);
  border-radius: 1.8rem;
  align-items: center;
  margin-top: -30rem;
  padding: 6.4rem 15rem 6.4rem 0;
  display: flex;
  position: relative;
}

.site-container.site-footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1.25fr;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  place-items: center;
  display: flex;
  position: relative;
}

.site-container.special {
  position: relative;
}

.site-container.features {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.btn-primary {
  background-color: var(--green);
  color: var(--purple-light);
  letter-spacing: .2px;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 1.8rem 4rem;
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
  transition: all .3s;
}

.btn-primary:hover {
  background-color: var(--dark-green);
}

.btn-primary.w--current {
  font-weight: 500;
}

.btn-text {
  background-color: #0000;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 110%;
  text-decoration: underline;
  transition: all .3s;
}

.btn-text:hover {
  color: var(--light-blue);
}

.btns-wrapper {
  grid-column-gap: 3.2rem;
  grid-row-gap: 2.4rem;
  align-items: center;
}

.hp-left {
  grid-row-gap: 4.8rem;
  flex: none;
  max-width: 49rem;
}

.hp-right {
  flex: auto;
  display: block;
}

.hp-img {
  border-radius: 0;
  width: 100%;
}

.hp-title-span {
  z-index: 1;
  display: inline-block;
  position: relative;
}

.hp-hero-circle {
  height: 13.7rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-70%, -50%);
}

.header {
  color: #fff;
  background-color: #fff;
  border-bottom: 1px solid #ffffff24;
  width: 100%;
  padding: 1.6rem 2rem;
  position: static;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link {
  color: var(--neutral-text);
  padding: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  transition: all .3s;
}

.nav-link:hover {
  color: var(--light-blue);
}

.nav-menu {
  grid-column-gap: 0rem;
  align-items: center;
  display: flex;
}

.site-logo {
  height: 4.5rem;
}

.centered-container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  text-align: center;
  align-items: center;
  padding-top: 0;
}

.illustration {
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 0;
  position: static;
  inset: 0% 28% auto 0%;
}

.flex-block {
  justify-content: center;
  align-items: center;
  display: block;
}

.flex-block.above {
  display: flex;
}

.video-wrapper {
  z-index: 1;
  width: 100%;
  max-width: 85rem;
  margin-top: 7rem;
  position: relative;
}

.kolaz-img {
  object-fit: contain;
  height: 40rem;
}

.cta-content {
  grid-row-gap: 2.4rem;
}

.text-white {
  color: #fff;
}

.p-large {
  font-size: 2rem;
  font-weight: 500;
}

.download-badge {
  height: 4.8rem;
}

.flex-block-2 {
  grid-column-gap: 1.2rem;
  margin-top: 2.4rem;
}

.image {
  height: 4.6rem;
  position: absolute;
  top: 6rem;
  right: -2rem;
}

.centered-text {
  text-align: center;
  margin-bottom: 0;
}

.centered-text.h3 {
  padding-bottom: 16px;
}

.feature-img {
  max-width: 400px;
  max-height: none;
  padding-left: 0;
  padding-right: 0;
}

.feature-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  line-height: 175%;
}

.feature-item_icon {
  margin-bottom: 2rem;
}

.feature-content {
  grid-row-gap: 6rem;
  align-self: center;
  max-width: 60rem;
}

.feature-container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
}

.feature-container.v2 {
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
}

.margin-bottom-m {
  color: var(--green);
  text-align: left;
  margin-bottom: .75rem;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.margin-bottom-m.centered {
  text-align: center;
}

.small-container {
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.howto-grid {
  grid-column-gap: 8rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 7rem;
  display: grid;
}

.howto-card {
  z-index: 1;
  position: relative;
}

.howto-card._2nd {
  margin-top: 12rem;
  transform: translate(0);
}

.howto-card_title {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
}

.image-2 {
  z-index: -1;
  position: absolute;
  top: 16px;
  right: 0;
  transform: translate(50%);
}

.image-3 {
  position: absolute;
  right: 0;
  transform: translate(25%, -70%);
}

.cta-container {
  grid-column-gap: 2rem;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 1.8rem;
  flex-flow: row;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: center;
  align-self: auto;
  place-items: stretch center;
  width: 100%;
  max-width: 880px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.flex-block-3 {
  grid-row-gap: 1.6rem;
  background-color: var(--yellow-main);
  text-align: center;
  border-radius: 12px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 50%;
  max-width: none;
  height: auto;
  padding: 40px 32px;
  display: block;
}

.flex-block-3.blue {
  grid-column-gap: 16px;
  grid-row-gap: 1.6rem;
  background-color: var(--light-blue);
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: auto;
  padding: 40px 32px;
  display: block;
}

.image-4 {
  height: 130px;
}

.image-5 {
  z-index: -1;
  position: absolute;
  right: -30px;
}

.cta-wrapper {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.image-6 {
  position: absolute;
  bottom: -6rem;
  left: -4rem;
}

.oblouk {
  object-fit: contain;
  width: 100%;
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
}

.oblouk._2 {
  margin-bottom: -1rem;
  position: static;
}

.oblouk.hero {
  object-fit: cover;
  background-color: #aee8e8;
  height: auto;
  position: static;
}

.oblouk.footer {
  object-fit: cover;
  height: 16rem;
  bottom: -2rem;
  overflow: visible;
}

.footer-link {
  color: var(--neutral-headline);
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
}

.footer-logo {
  height: 37.5px;
}

.video-img-cover {
  object-fit: cover;
  border-radius: 3rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-bg {
  z-index: -1;
  background-color: var(--light-blue);
  border-radius: 3rem;
  width: 100%;
  height: 48rem;
  position: absolute;
  transform: translate(1%, 10%)rotate(-5deg);
}

.image-7 {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-15%, 100%);
}

.scroll-wrapper {
  width: 100%;
  max-width: 1100px;
  height: 325vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50vh;
  position: relative;
}

.sticky-container {
  grid-column-gap: 19rem;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 50%;
  transform: translate(0, -50%);
}

.heading {
  max-width: 36rem;
}

.heading-2 {
  max-width: 37rem;
}

.reason-card {
  grid-column-gap: 2.4rem;
  align-items: flex-start;
  margin-bottom: 3.2rem;
  text-decoration: none;
  display: flex;
}

.reason-card.first {
  margin-top: 4.8rem;
}

.reason-card.last {
  margin-bottom: 0;
}

.reason-card_title {
  color: var(--neutral-headline);
  font-size: 1.8rem;
  font-weight: 600;
}

.reason-card_title.active {
  color: var(--purple-main);
}

.reason-card_text {
  color: var(--neutral-text);
}

.reason-card_icon-wrapper {
  color: var(--purple-main);
  background-color: #fff;
  border: 1px solid #dcdae380;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 6rem;
  min-width: 6rem;
  height: 6rem;
  min-height: 6rem;
  display: flex;
}

.reason-card_icon-wrapper.active {
  background-color: var(--purple-main);
  color: #fff;
}

.reason-card_content {
  grid-row-gap: .8rem;
}

.flex-block-4 {
  max-width: 56rem;
  position: relative;
}

.img-wrapper {
  z-index: 1;
  position: relative;
}

.phone-img {
  object-fit: contain;
  width: 100%;
  height: 49rem;
  position: absolute;
}

.phone-img.img2, .phone-img.img3, .phone-img.img4 {
  opacity: 0;
}

.img-shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.phone-blank {
  width: 25rem;
  height: 49rem;
}

.image-8 {
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.image-9 {
  z-index: -1;
  position: absolute;
  right: 0;
  transform: translate(110%, 70%);
}

.div-block {
  position: relative;
}

.div-block-2 {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.image-10 {
  z-index: 1;
  position: absolute;
  right: 12vw;
}

.langswitcher {
  grid-column-gap: .8rem;
  border-right: 1px solid #726a9045;
  align-items: center;
  padding: .8rem 1.2rem;
  text-decoration: none;
  position: relative;
}

.langswitcher.last {
  border-right-width: 0;
}

.divider {
  background-color: #ffffff54;
  width: 1px;
  height: 32px;
}

.hidden-lang {
  grid-column-gap: .8rem;
  color: #fff;
  background-color: #fff;
  border-radius: .4rem;
  align-items: center;
  width: 100%;
  padding: 1.6rem 0 0;
  text-decoration: none;
  transition: all .3s;
  display: none;
  position: absolute;
  top: 90%;
  left: 0;
}

.hidden-lang-wrapper {
  grid-column-gap: .8rem;
  color: var(--neutral-text);
  border-radius: .4rem;
  align-items: center;
  width: 100%;
  padding: 1.2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: static;
  top: 110%;
  left: 0;
}

.img-wrapper2 {
  z-index: 1;
  display: none;
  position: relative;
}

.mob-img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.mob-img.img2, .mob-img.img3, .mob-img.img4 {
  opacity: 0;
}

.mob-circle {
  z-index: -1;
  height: 10rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.image-11, .image-12, .footer-oblouk {
  display: none;
}

.image-13 {
  color: var(--neutral-text);
}

.blank-video {
  width: 100%;
  height: 48rem;
}

.ytb-video {
  border-radius: 3rem;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-14 {
  z-index: -1;
  position: absolute;
  right: 0;
  transform: translate(100%, 130%);
}

.image-15 {
  z-index: -1;
  position: absolute;
  right: 0;
  transform: translate(70%, 220%);
}

.image-16 {
  z-index: -1;
  position: absolute;
  right: 0;
  transform: translate(120%, 540%);
}

.backtop {
  z-index: 9999;
  cursor: pointer;
  height: 4.8rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.hero-shape-divider {
  background-color: #aee8e800;
  border-bottom: 0 solid #fff;
  position: relative;
}

.scroll-wrapper2 {
  width: 100%;
  max-width: 1100px;
  height: 325vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50vh;
  position: relative;
}

.text-trigger {
  background-color: #b6b6b6;
  height: 900px;
}

.content-trigger {
  background-color: #9f9f9f;
  height: 900px;
  overflow: scroll;
}

.first-anchor {
  z-index: -1;
  position: absolute;
  top: 0%;
}

.second-anchor {
  z-index: -1;
  position: absolute;
  top: 15%;
}

.third-anchor {
  z-index: -1;
  position: absolute;
  top: 25%;
}

.fourth-anchor {
  z-index: -1;
  position: absolute;
  top: 43%;
}

.heading-3 {
  color: var(--white);
  text-align: center;
  font-family: Roboto, sans-serif;
}

.text-block {
  color: var(--neutral-headline);
  font-weight: 400;
  text-decoration: none;
}

.text-block.active {
  color: var(--neutral-headline);
  font-weight: 600;
  text-decoration: none;
}

.text-block-small {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 180%;
}

.text-block-small.centered {
  text-align: center;
}

.text-block-small.left {
  text-align: left;
}

.grid {
  grid-template: ". Area"
  / 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid.cards-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
}

.grid._4-col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.heading-4 {
  text-align: center;
  margin-top: 20px;
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
}

.div-block-3 {
  text-align: left;
}

.discount {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  padding: 0;
  display: flex;
}

.link {
  color: var(--purple-main);
  font-weight: 500;
}

.link.small {
  font-size: 14px;
}

.card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  padding: 40px 0 0;
  display: flex;
}

.paragraph {
  text-align: left;
}

.paragraph.centered {
  text-align: center;
  font-family: Roboto, sans-serif;
}

.line-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #dcdae3;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 40px;
  display: flex;
}

.line-bottom.small {
  padding-top: 8px;
  padding-left: 24px;
  padding-right: 24px;
  display: none;
}

.price {
  color: var(--purple-main);
  font-size: 16px;
  font-weight: 600;
}

.price.bottom {
  margin-bottom: 20px;
}

.card-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.div-block-5 {
  padding-left: 40px;
  padding-right: 40px;
}

.btn-secondary {
  color: var(--dark-900);
  background-color: #fff;
  border-radius: 100px;
  padding: 12px 40px;
  font-weight: 600;
  transition: all .3s;
}

.btn-secondary:hover {
  background-color: var(--dark-900);
  color: var(--white);
}

.btn-secondary.w--current {
  background-color: var(--white);
  color: var(--dark-900);
  border-radius: 100px;
  padding: 14px 40px;
  font-weight: 600;
  transition: all .3s;
}

.sleva {
  text-align: center;
  padding: 24px;
}

.modal-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0%;
}

.close-btn-w {
  z-index: 5;
  float: right;
  background-color: #f5efef;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-top: 2rem;
  margin-right: 2rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.screen-reader-only {
  border: 1px #000;
  border-radius: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  inset: -1px;
  overflow: hidden;
}

.close-btn-line {
  background-color: #4353ff;
  border-radius: 1px;
  width: 1.75rem;
  height: 2px;
  position: absolute;
}

.close-btn-line.is--2nd {
  background-color: var(--neutral-text);
  transform: rotate(45deg);
}

.close-btn-line.is--1st {
  background-color: var(--neutral-text);
  transform: rotate(-45deg);
}

.popup {
  z-index: 25;
  background-color: #29282866;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding: 4rem 2rem;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.popup.scholar {
  display: none;
}

.popup.success {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 2rem;
  display: none;
  inset: 0%;
}

.popup.itic {
  display: none;
}

.popup.iytc {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.popup.fail {
  display: none;
}

.modal-content-w {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 3rem;
  display: flex;
}

.modal-content-w._2 {
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.modal-content-w._3 {
  background-color: #fff;
  justify-content: center;
}

.modal {
  background-color: var(--white);
  border-radius: 0;
  flex: none;
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 400px;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0%;
}

.btn-w {
  color: #fffefa;
  text-align: center;
  background-color: #4353ff;
  border-radius: 2em;
  min-width: 11em;
  padding: .75em 2em .875em;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s;
}

.btn-w:hover {
  background-color: #3e4ceb;
}

.rich-text-block {
  color: var(--neutral-text);
  display: block;
}

.uppercase {
  text-transform: uppercase;
  font-size: 14px;
}

.image-17 {
  min-width: 50%;
  padding-top: 0;
  padding-bottom: 0;
}

.heading-6 {
  text-align: center;
}

.grid-features {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.grid-features._3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-features._2 {
  grid-template-columns: 1fr 1fr;
}

.tabs-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 100%;
  max-width: none;
  display: flex;
}

.tabs-content.narrow {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 600px;
}

.heading-7 {
  color: var(--dark-900);
  font-weight: 600;
}

.bold-text {
  font-family: Roboto, sans-serif;
  font-weight: 600;
}

.tab-link-tab-2 {
  background-color: #ddd0;
  border: 1px solid #dcdae3;
  border-radius: 5px;
}

.tab-link-tab-2.active {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: inline-flex;
}

.tab-link-tab-2.active.w--current {
  border-color: var(--green);
  background-color: var(--light-green);
}

.tab-link-tab-1 {
  background-color: #fff;
  border: 1px solid #dcdae3;
  border-radius: 5px;
}

.tab-link-tab-1.w--current {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #e3f5f5;
  border: 1px solid #40b8b8;
  border-radius: 5px;
  display: inline-flex;
}

.tab-link-tab-1.active {
  background-color: #fff;
  border: 1px solid #dcdae3;
  border-radius: 5px;
}

.text-block-2 {
  color: var(--dark-900);
  font-size: 14px;
  font-weight: 500;
}

.list-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  display: flex;
}

.tab-pane-tab-1 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.tab-pane-tab-1.single {
  padding-top: 0;
}

.list-text {
  margin-bottom: 0;
  padding-top: 4px;
  font-size: 14px;
  font-style: normal;
  line-height: 180%;
}

.div-block-7 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.radiolabel {
  font-size: 14px;
  font-weight: 500;
}

.tab-pane-tab-2 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.tabs-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.text-span {
  color: var(--purple-main);
}

.tabs-content-2 {
  padding-top: 0;
}

.bold-text-2 {
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.div-block-8 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.link-block-2, .link-block-3 {
  text-decoration: none;
}

.subheadline {
  text-align: center;
  max-width: 80%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 180%;
}

.form-block {
  text-align: left;
  max-width: none;
  padding-top: 20px;
}

.image-20 {
  width: 50px;
  max-width: none;
  height: 50px;
  display: block;
}

.image-21 {
  width: 50px;
  height: 50px;
}

.image-22, .image-23 {
  width: 50px;
  min-width: auto;
  height: 50px;
}

.submit-button {
  background-color: var(--green);
  letter-spacing: .2px;
  border-radius: 12px;
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
}

.bold-text-4 {
  color: var(--neutral-headline);
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

.div-block-10 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.text-block-3 {
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.field-label {
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.field-label-2 {
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

.div-block-11 {
  max-width: 100%;
}

.text-field, .text-field-2 {
  margin-bottom: 20px;
}

.form {
  max-width: none;
}

.div-block-12 {
  align-self: center;
}

.link-2, .link-3 {
  color: var(--neutral-headline);
}

.bold-text-5, .bold-text-6, .bold-text-7 {
  font-weight: 500;
}

.klima-logo {
  max-width: 120px;
}

.link-4 {
  color: var(--dark-900);
}

@media screen and (max-width: 991px) {
  .section.hp-hero {
    max-height: none;
    padding-bottom: 8rem;
  }

  .section.scroll {
    padding-top: 8rem;
    padding-bottom: 7.2rem;
    display: block;
  }

  .section.scroll.mobile-only {
    display: block;
  }

  .section.scroll.hide-on-mobile {
    display: none;
  }

  .site-container.hp {
    grid-row-gap: 6rem;
    flex-direction: column;
  }

  .site-container.cta {
    grid-row-gap: 3.4rem;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

  .site-container.site-footer {
    grid-row-gap: 2.4rem;
    flex-wrap: wrap;
  }

  .site-container.features {
    grid-row-gap: 4.8rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .hp-left {
    max-width: 100%;
  }

  .hp-hero-circle {
    display: none;
  }

  .header {
    border: 1px #000;
    padding-bottom: 1.6rem;
  }

  .nav-link {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .nav-menu {
    grid-row-gap: 2rem;
  }

  .site-logo {
    height: 3.6rem;
  }

  .cta-content {
    width: 100%;
    padding: 0 2.4rem;
  }

  .image {
    display: none;
  }

  .feature-img {
    max-height: 50rem;
  }

  .feature-content {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .feature-container {
    flex-direction: column;
    width: 100%;
  }

  .cta-container {
    flex-flow: row;
    padding-left: 0;
  }

  .flex-block-3 {
    max-width: 100%;
    padding-top: 4.8rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .image-4 {
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .oblouk.hero {
    display: block;
  }

  .oblouk.footer {
    object-fit: cover;
  }

  .scroll-wrapper {
    height: auto;
    padding-top: 0;
  }

  .sticky-container {
    text-align: center;
    justify-content: center;
    position: static;
    transform: translate(0);
  }

  .reason-card {
    grid-row-gap: 1.6rem;
    flex-direction: column;
    width: 100%;
  }

  .reason-card_title.active {
    color: var(--neutral-headline);
  }

  .reason-card_icon-wrapper.active {
    color: var(--purple-main);
    background-color: #fff;
  }

  .reason-card_content {
    text-align: left;
  }

  .flex-block-4 {
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .img-wrapper, .image-9, .divider {
    display: none;
  }

  .hidden-lang {
    padding-top: 0;
    display: flex;
    position: static;
  }

  .hidden-lang-wrapper {
    background-color: var(--neutral-headline);
    color: #fff;
  }

  .img-wrapper2 {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .mob-img {
    max-height: 40rem;
  }

  .menu-button {
    padding: 1rem;
  }

  .menu-close {
    height: 2rem;
  }

  .menu-open {
    height: 1.5rem;
  }

  .image-13, .image-14, .image-15, .image-16 {
    display: none;
  }

  .hero-shape-divider {
    display: block;
  }

  .scroll-wrapper2 {
    height: auto;
    padding-top: 0;
  }

  .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    place-content: center;
    align-self: auto;
    place-items: stretch center;
  }

  .grid._4-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start;
    display: grid;
  }
}

@media screen and (max-width: 767px) {
  .section.hp-hero {
    max-height: none;
    padding-top: 12rem;
  }

  .small-container {
    align-items: center;
  }

  .howto-grid {
    grid-row-gap: 3.2rem;
    grid-template-columns: 1fr;
  }

  .howto-card._2nd {
    margin-top: 0;
  }

  .image-2, .image-3 {
    display: none;
  }

  .cta-container {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    place-content: center;
  }

  .flex-block-3 {
    width: 100%;
    max-width: 100%;
    padding: 40px 32px;
  }

  .flex-block-3.blue {
    width: 100%;
    max-width: 100%;
  }

  .video-bg {
    height: 40rem;
  }

  .image-7 {
    height: 8rem;
  }

  .image-10 {
    height: 3.6rem;
  }

  .image-11 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .image-12 {
    display: block;
    position: absolute;
    top: -4rem;
    left: 20%;
  }

  .link-block {
    order: -1;
  }

  .blank-video {
    height: 40rem;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid.cards-grid {
    flex-flow: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    display: flex;
  }

  .heading-5 {
    text-align: center;
  }

  .modal-content-w {
    padding: 2rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .section {
    padding: 8rem 1.2rem;
  }

  .section.hp-hero {
    min-height: 70vh;
    max-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 8rem;
  }

  .section.discounts {
    padding: 8rem 2rem;
  }

  .section.howto {
    padding-top: 8rem;
  }

  .section.footer {
    background-color: var(--purple-light);
    width: 100%;
    padding: 4rem 0 0;
  }

  .section.features {
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
  }

  .section.purple {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .site-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    height: 100%;
  }

  .site-container.hp {
    grid-row-gap: 2rem;
  }

  .site-container.header-container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .site-container.cta {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .site-container.site-footer {
    background-color: var(--purple-light);
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2.8rem;
    display: flex;
  }

  .btn-primary {
    text-align: center;
    flex: 1;
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .btns-wrapper {
    flex-flow: row;
    justify-content: center;
    width: 100%;
  }

  .hp-hero-circle {
    display: none;
  }

  .nav-menu {
    align-self: auto;
    display: flex;
  }

  .centered-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .illustration {
    margin-bottom: 0;
  }

  .flex-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .kolaz-img {
    height: 22rem;
  }

  .cta-content {
    grid-row-gap: 1.6rem;
  }

  .download-badge {
    height: 4.5rem;
  }

  .flex-block-2 {
    grid-row-gap: 1.6rem;
    flex-wrap: wrap;
  }

  .centered-text {
    font-size: 28px;
    line-height: 32px;
  }

  .centered-text.h3 {
    font-size: 21px;
    line-height: 26px;
  }

  .feature-img {
    align-self: auto;
    width: auto;
    max-width: 80%;
    max-height: none;
    display: block;
    overflow: clip;
  }

  .feature-content {
    grid-row-gap: 4rem;
  }

  .feature-container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .margin-bottom-m {
    text-align: left;
    font-size: 20px;
  }

  .margin-bottom-m.centered {
    text-align: left;
    line-height: 28px;
  }

  .small-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .howto-grid {
    margin-top: 4rem;
  }

  .cta-container {
    grid-row-gap: 3.2rem;
    flex-flow: column;
    display: flex;
  }

  .flex-block-3 {
    width: 100%;
    padding: 24px;
  }

  .flex-block-3.blue {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .image-4, .image-4.small {
    height: 200px;
  }

  .oblouk.hero {
    display: block;
  }

  .oblouk.footer {
    object-fit: cover;
    height: 26rem;
    display: none;
  }

  .footer-link {
    text-align: center;
    align-self: center;
  }

  .video-bg {
    border-radius: 1.2rem;
    height: 20rem;
  }

  .image-7 {
    height: 7.2rem;
  }

  .scroll-wrapper {
    padding-top: 0;
  }

  .langswitcher {
    grid-column-gap: 1rem;
    display: flex;
  }

  .hidden-lang {
    background-color: #fff0;
    margin-left: 12px;
  }

  .footer-oblouk {
    background-color: #d0000000;
    width: 100%;
    margin-bottom: -10px;
    display: block;
  }

  .menu-button {
    color: #150dad;
  }

  .menu-open {
    color: var(--dark-900);
  }

  .blank-video {
    height: 20rem;
  }

  .ytb-video {
    border-radius: 1.2rem;
  }

  .hero-shape-divider {
    display: block;
  }

  .scroll-wrapper2 {
    padding-top: 0;
  }

  .html-embed {
    display: none;
  }

  .heading-3 {
    font-size: 3rem;
    line-height: 130%;
  }

  .text-block-small {
    text-align: left;
    max-width: 100%;
  }

  .text-block-small.centered {
    text-align: center;
  }

  .grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    place-items: stretch start;
    display: flex;
  }

  .grid._4-col {
    grid-template-columns: 1fr;
  }

  .heading-4 {
    font-size: 16px;
    line-height: 22px;
  }

  .discount {
    align-items: stretch;
    width: 100%;
  }

  .link {
    display: inline-flex;
  }

  .line-bottom {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    flex-flow: column;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .price {
    padding-bottom: 20px;
  }

  .btn-secondary.w--current {
    padding-left: 32px;
    padding-right: 32px;
  }

  .sleva {
    padding: 0 0 20px;
  }

  .heading-5 {
    text-align: center;
  }

  .close-btn-w {
    background-color: var(--purple-light);
    width: 3rem;
    height: 3rem;
    margin-top: 1.5rem;
    margin-right: 1.5rem;
  }

  .popup {
    padding-top: 8rem;
    padding-left: 0;
    padding-right: 0;
  }

  .popup.scholar, .popup.success {
    padding-top: 4rem;
    padding-left: .8rem;
    padding-right: .8rem;
    display: none;
  }

  .popup.itic {
    margin-right: 0;
    padding-top: 4rem;
    padding-left: .8rem;
    padding-right: .8rem;
    display: none;
  }

  .popup.iytc {
    padding-top: 4rem;
    padding-left: .8rem;
    padding-right: .8rem;
    display: none;
  }

  .modal-content-w {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
    flex-flow: column;
    width: 100%;
    padding: 4rem 1.5rem;
  }

  .modal-content-w._2 {
    flex-flow: column;
    padding-right: 1.5rem;
  }

  .modal-content-w._3 {
    background-color: #fff;
    padding-right: 1.5rem;
  }

  .modal {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .btn-w {
    font-size: .9375rem;
  }

  .image-17 {
    display: block;
  }

  .grid-features, .grid-features._3, .grid-features._2 {
    grid-template-columns: 1fr;
  }

  .tab-link-tab-2.active.w--current, .tab-link-tab-1 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-18, .image-19 {
    display: none;
  }

  .brand {
    padding-left: 0;
  }

  .bold-text-2, .bold-text-3, .div-block-9 {
    display: block;
  }

  .subheadline {
    font-size: 1.6rem;
    font-weight: 600;
  }
}

#w-node-_8385cbba-3e13-b3b7-6097-7c89d233d117-4217438f, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d11f-4217438f, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d121-4217438f, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d127-4217438f, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d137-4217438f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_782bb916-e2f0-8939-c4c1-bc7ae1ba3b7b-4217438f, #w-node-fe37ca9f-8050-608f-0528-03d22ea1982c-4217438f {
  justify-self: start;
}

#w-node-d7213fbb-96aa-618f-98f2-3ba452391e0f-4217438f {
  justify-self: end;
}

#w-node-_8385cbba-3e13-b3b7-6097-7c89d233d117-d8698079, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d11f-d8698079, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d121-d8698079, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d127-d8698079, #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d137-d8698079 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_782bb916-e2f0-8939-c4c1-bc7ae1ba3b7b-d8698079, #w-node-fe37ca9f-8050-608f-0528-03d22ea1982c-d8698079, #w-node-_6cf8a3f9-3778-df8a-3e54-557c58ca5e7f-d8698079 {
  justify-self: start;
}

#w-node-d7213fbb-96aa-618f-98f2-3ba452391e0f-d8698079 {
  justify-self: end;
}

@media screen and (max-width: 479px) {
  #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d111-4217438f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d119-4217438f {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d121-4217438f {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_8385cbba-3e13-b3b7-6097-7c89d233d131-4217438f {
    grid-area: 4 / 1 / 5 / 3;
  }
}


