@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/site/templates/fonts/poppins-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/site/templates/fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/site/templates/fonts/poppins-600.woff2') format('woff2');
}

img {
  border-style: none;
  vertical-align: top;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 16px);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 12px;
  border: 1px solid var(--disabled-bg-color);
}

.tooltip, #tooltip{
	position: relative;
}

.tooltip:hover span svg path, .tooltip:hover span svg circle{
	stroke: var(--title-color);
}

.tooltip .tooltip-text , #tooltip .tooltip-text,  .pricing-tip.tooltip-text{
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
    background-color: var(--title-color);
    color: white;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 0.75rem;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
    z-index: 4;
	white-space: nowrap;
}

.pricing-tip.tooltip-text{
  padding: 3px 12px;
}

.table-feature__cell.tooltip .tooltip-text{
  display: none;
  bottom: calc(100% - 5px);
  left: calc(25% + 38px);
  width: 320px;
  white-space: wrap;
  text-align: left;
}

.form.tooltip .tooltip-text{
  display: none;
  bottom: calc(100% + 9px);
  left: 9px;
  width: fit-content;
  max-width: 300px;
  white-space: wrap;
  text-align: left;
}

.form.tooltip:hover{
    cursor: pointer;
}

.form.tooltip:hover svg path{
  fill: var(--title-color);
  stroke: transparent;
}

.form.tooltip:hover .tooltip-text{
  display: block;
}

.side.tooltip .tooltip-text{
  display: none;
  bottom: calc(100% - 40px);
  left: 170px;
  min-width: 290px;
  max-width: 300px;
  white-space: wrap;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.side.tooltip:hover{
    cursor: pointer;
}

.side.tooltip:hover svg path{
  fill: var(--title-color);
  stroke: transparent;
}

.side.tooltip:hover .tooltip-text{
  display: block;
}

.side.tooltip .tooltip-text::before {
  content: "";
  width: 8px;
  margin-top: -4px;
  margin-left: -4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
  background-color: inherit;
  display: block;
  height: 8px;
}

@media (max-width: 1360px) {
  .side.tooltip .tooltip-text{
    bottom: calc(100% + 9px);
    left: 9px;
    max-width: 100%;
  }

  .side.tooltip .tooltip-text::before{
    top: 100%;
    left: 50%;
  }
}

@media (max-width: 767px) {
  .side.tooltip .tooltip-text{
    bottom: calc(100% - 40px);
    left: 170px;
    max-width: 100%;
  }

  .side.tooltip .tooltip-text::before{
    top: 50%;
    left: 0;
  }
}
@media (min-width: 466px) and (max-width: 1178px) {
  .form__label:first-child .form.tooltip .tooltip-text {
    bottom: calc(100% - 40px);
    left: 40%;
    width: fit-content;
    max-width: 300px;
  }
  .form__label:first-child .form.tooltip .tooltip-text::before{
    top: 50%;
    left: 0;
  }
}

@media (max-width: 465px){
  .side.tooltip .tooltip-text{
    bottom: calc(100% + 9px);
    left: 9px;
    max-width: 100%;
  }

  .side.tooltip .tooltip-text::before{
    top: 100%;
    left: 50%;
  }
  .form.tooltip .tooltip-text{
    max-width: calc((100vw - 2rem) / 2);
    width: calc((100vw - 2rem) / 2);
  }
}

@media (max-width: 340px){
  .form.tooltip .tooltip-text{
    max-width: calc((100vw - 2rem) / 2);
    width: calc((100vw - 2rem) / 2);
    left: -20px;
  }
  .form.tooltip .tooltip-text::before{
    top: 100%;
    left: 69%;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .table-feature__cell.tooltip .tooltip-text{
    bottom: calc(100% - 15px);
    left: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .table-feature__cell.tooltip .tooltip-text{
    bottom: calc(100% - 15px);
    left: calc(100% - 15px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
.table-feature__cell.tooltip .tooltip-text{
  bottom: calc(100% - 15px);
  left: calc(100% + 20px);
}

.table-feature__cell.tooltip .tooltip-text::before {
  left: 15%;
}

}

@media (max-width: 767px){

  .table-feature__cell.tooltip:hover .tooltip-text{
    display: none !important;
  }

  .table-feature__btn.tooltip .tooltip-text{
    width: 320px;
    white-space: wrap;
    text-align: left;
    left: calc(20% + 50px);
  }

  .table-feature__btn.tooltip .tooltip-text::before{
    left: 15%;
  }
  
}

@media (max-width: 450px){
  .table-feature__btn.tooltip .tooltip-text{
    left: 50%;
  }
}

.table-feature__cell.tooltip:hover .tooltip-text{
  display: block;
}

.tooltip .tooltip-text::before, .pricing-tip.tooltip-text::before{
  content: "";
  width: 8px;
  margin-top: -4px;
  margin-left: -4px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: rotate(45deg);
  background-color: inherit;
  display: block;
  height: 8px;
}

.tooltip:hover .tooltip-text,
.tooltip:focus .tooltip-text {
  visibility: visible;
}

.text-decoration-dotted{
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #91A2B6;
  text-decoration-thickness: 5.5%;
} 

.tooltip-text:hover svg path{
	stroke: var(--green-dark);
}

.mainscreen__wrap{
  z-index: 2;
}

.border-1{
  border: 1px solid #E7EAF0;
}

.radius-1{
  border-radius: 1rem;
}

.mt-custom--40px{
  margin-top: 2.5rem;
}

.pt-custom--40px{
  margin-top: 2.5rem;
}

.mt-custom--42px{
margin-top: 2.625rem;
}

.inner-padding-1-2rem{
  padding: 0 2rem 2rem 2rem;
}

.item-header{
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
}

.diff-gap{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.diff-column-1{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.banner__button{
  margin-top: 2rem;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(var(--g6-mobile), 2vw, var(--g6-desktop));
}

.grid-3 img, .big_img img{
  border-radius: 1rem;
}
.big_img img, #grid-column-item-1 img, #grid-column-item-2 img{
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .grid-3 {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 426px) and (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
  #grid-column-item-1{
    grid-column: 1/2;
  }
  #grid-column-item-2{
    grid-column: 2/3;
  }
  #grid-column-item-3{
    grid-column: 1/3;
  }
}
@media (max-width: 425px){
  .grid-3 {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

.grid-column-stretch{
  align-items: stretch;
}

.case-review{
  display: flex;
  background-color: #F5F7FC;
  border-radius: 1rem;
  justify-content: space-between;
}

.case-review-inner{
  background-color: #F5F7FC;
  border-radius: 1rem;
  width: 68%;
}

.case-review-text{
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: clamp(1.125rem,2vw,1.25rem);
  line-height: clamp(28px, 3vw ,31px);
}

.case_inner-review{
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 34px;
  color: var(--title-color);
}

.case-review-image{
  overflow: hidden;
  width: 32%;
}

.case-review.blog .case-review-text{
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-review.blog .case_inner-review{
  font-weight: 500;
  font-size: clamp(1.125rem,2vw,1.25rem);
  line-height: clamp(28px, 3vw ,31px);
  color: var(--title-color);
}

.case-others{
  display: flex;
  justify-content: space-between;
  padding: clamp(1.5rem,3vw,2.5rem);
  align-items: center;
  flex-wrap: wrap;
}

.case-others-items{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 812px;
}

.case-others img{
  border-radius: unset;
  height: 26px;
}

@media (min-width: 1023px) and (max-width: 1280px){
  .case-others-items{
    max-width: calc(100vw - 450px);
  }
}
@media (min-width: 768px) and (max-width: 1023px){
  .case-others-items{
    max-width: 100%;
  }
  .case-others{
    flex-direction: column;
    gap: 2.5rem;
  }

  .solution-flex-header{
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767px){
.case-others-items{
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-row-gap: 20px;
  }

  .case-others-item:nth-of-type(1), .case-others-item:nth-of-type(4)
  {
    text-align: start;
  }

  .case-others-item:nth-of-type(2), .case-others-item:nth-of-type(5)
  {
    text-align: center;
  }

  .case-others-item:nth-of-type(3), .case-others-item:nth-of-type(6)
  {
    text-align: end;
  }

  .case-others{
    justify-content: center;
    gap: clamp(1.5rem,3vw,2.5rem);
  }

  .case-review {
    flex-direction: column;
  }

  .case-review-inner, .case-review-image {
    width: 100% !important;
  }

  .solution-flex-header{
    flex-direction: column;
    gap: 1rem;
  }

  .case-others img{
    height: 22px;
    object-fit: contain;
  }
}

@media (max-width: 576px){
  /* .case-others{
    padding: 24px 32.25px !important;
    gap: 24px;
  } */

  .results-case{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2 ÑÑ‚Ð¾Ð»Ð±Ñ†Ð° */
    grid-template-rows: repeat(2, 1fr); /* 2 ÑÑ‚Ñ€Ð¾ÐºÐ¸ */
    gap: 1rem !important; 
  }

  .case-others-items{
    flex-direction: column;
    gap: 1.25rem !important;
  }

  .case-others-items .row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem !important;
  }

  .solution-all-link{
    align-items: unset;
    /* align-self: center; */
  }
  /* .solution-header-title{
    text-align: center;
  } */
  
}

@media (max-width: 375px){
  .case-review {
    flex-direction: column;
  }
  .case-review-inner{
    width: 100% !important;
  }
  .case-review-image{
    width: 100% !important;
  }
  .result-case-item{
    width: 45%;
  }
  /* .case-review-text{
    padding: 1.5rem !important;
  } */
  .results-case{
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem !important;
    flex: 1 1 calc(50% - 2rem);
    box-sizing: border-box;
  }
  .company_block div:first-child{
    max-width: 125px;
  }
  .company_block div:last-child{
    max-width: 154px;
  }
}


.case-review-image img{
  width: 100%; /* Ð Ð°ÑÑ‚ÑÐ³Ð¸Ð²Ð°ÐµÐ¼ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ Ð¿Ð¾ ÑˆÐ¸Ñ€Ð¸Ð½Ðµ ÐºÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€Ð° */
  height: 100%; /* Ð Ð°ÑÑ‚ÑÐ³Ð¸Ð²Ð°ÐµÐ¼ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ Ð¿Ð¾ Ð²Ñ‹ÑÐ¾Ñ‚Ðµ ÐºÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€Ð° */
  object-fit: cover; /* ÐžÐ±Ñ€ÐµÐ·Ð°ÐµÐ¼ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ, ÑÐ¾Ñ…Ñ€Ð°Ð½ÑÑ Ð¿Ñ€Ð¾Ð¿Ð¾Ñ€Ñ†Ð¸Ð¸ */
  object-position: center; /* Ð¦ÐµÐ½Ñ‚Ñ€Ð¸Ñ€ÑƒÐµÐ¼ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ */
}

.company_icon img{
  border-radius: 8px;
}

.company_block{
  display: flex;
  gap: clamp(12px,2vw,20px);
  align-items: center;
}

.company_director_name{
  font-weight: 500;
  font-size: clamp(14px,2vw,16px);
  line-height: clamp(20px, 3vw ,26px);
  color: var(--title-color);
}
.company_director_status{
  font-weight: 400;
  font-size: clamp(12px,2vw,14px);
  line-height: clamp(18px, 3vw, 20px);
  color: var(--secondary-color);
}

.case_inner-card{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-review.blog .case_inner-card{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-review.blog .result-case-link-span{
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.blog-block.green-tip{
  padding: clamp(1.5rem,2vw,2rem);
  background: #3CA95514;
  border-radius: 1rem;
}

.mainscreen--grey .blog-block.green-tip{
  background: #42B55B14;
  border: 1px solid #42B55B52;
}

.green-tip--title{
  background: var(--green);
  color: white;
  padding: 4px 12px;
  width: fit-content;
  border-radius: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
}

.blog-block.green-tip .text--block, .blog-block.green-tip .text--block ul li, .blog-block.green-tip .text--block ol li{
    font-weight: 400 !important;
    font-size: clamp(16px, 2vw,18px) !important;
    line-height: clamp(26px, 3vw , 28px) !important;
    color: var(--title-color)
}

.blog-block.green-tip .text--block p:first-child{
  margin: 0 0 1rem 0;
}
.blog-block.green-tip .text--block p:last-child{
  margin: 0;
}

.pre-blog{
  white-space: normal;
  font-size: clamp(16px, 2vw , 18px);
  line-height: clamp(26px, 3vw , 28px);
  font-weight: 400;
  padding: clamp(1.5rem, 2vw , 2rem) 1.5rem clamp(1.5rem, 2vw ,2rem) clamp(1.5rem, 2vw,2.5rem);
  background-color: var(--light-bg);
  border-radius: clamp(12px, 2vw, 20px);
  color: var(--title-color);
  border-left: 4px solid var(--green);
  margin: 2rem 0;
}

.pre-blog .text--block ul li, .pre-blog .text--block ol li{
  font-size: clamp(16px, 2vw , 18px);
  line-height: clamp(26px, 3vw , 28px);
  font-weight: 400;
  color: var(--title-color);
}

.mainscreen--grey .pre-blog{
  background-color: var(--darker-bg);
}

.pre-blog .text--block{
  width: calc(100% + 4px)
}

.pre-blog .text--block strong{
  font-weight: 500;
}

.pre-blog .text--block p:first-child, .pre-blog ul:first-child, .pre-blog ol:first-child{
  margin: 0 0 1rem 0;
}

.pre-blog .text--block p:last-child, .pre-blog ul:last-child, .pre-blog ol:last-child{
  margin: 0;
}

.blog .blog__columns .max-width-large-not-centered ul:not(.table-of-contents__list) li:before{
  width: 6px;
  height: 6px;
  background: var(--green);
}

.blog .blog__columns .max-width-large-not-centered ul:not(.table-of-contents__list) li{
  font-size: clamp(16px, 2vw , 18px);
  line-height: clamp(26px, 3vw , 28px);
  font-weight: 400;
  color: var(--text-color);
}

.blog .blog__columns .max-width-large-not-centered ol:not(.table-of-contents__list) li{
  font-size: clamp(16px, 2vw , 18px);
  line-height: clamp(26px, 3vw , 28px);
  font-weight: 400;
  color: var(--text-color);
}

.blog .blog__columns .max-width-large-not-centered table tr:nth-child(odd){
  background: #F5F7FC8F;
}

.blog .blog__columns .max-width-large-not-centered table tr:first-of-type{
  background: #F5F7FC;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
}

.blog .blog__columns .max-width-large-not-centered table tr:first-of-type p{
  margin: 0 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--title-color) !important;
}

.blog .blog__columns .max-width-large-not-centered  table tr td, th{
  border-right: none;
  border-left: none;
  border-bottom: none;
}

.blog .blog__columns .max-width-large-not-centered  table tr td.align_center{
  text-align: center;
}

.blog .blog__columns .max-width-large-not-centered  table tr td.align_left{
  text-align: left;
}

.blog .blog__columns .max-width-large-not-centered  table tr td.align_right{
  text-align: right;
}

.blog .blog__columns .max-width-large-not-centered  table tr:not(:first-of-type) td:not(:first-of-type){
  padding: 0.75rem;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}

.blog .blog__columns .max-width-large-not-centered  table tr:not(:first-of-type) td:not(:first-of-type) p{
  margin: 0 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--text-color) !important;
}

.blog .blog__columns .max-width-large-not-centered  table tr:not(:first-of-type) td:first-child, th:first-child{
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
   color: var(--text-color);
}

.blog .blog__columns .max-width-large-not-centered table tr:not(:first-of-type) td:first-child p, th:first-child p{
  margin: 0 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--text-color) !important;
}

.blog .blog__columns .max-width-large-not-centered table tr:first-child td, th{
  border-top: none;
  vertical-align: middle;
}

.blog .blog__columns .max-width-large-not-centered .table-overflow{
  max-width: calc(100vw - 370px);
}
@media (max-width: 991px) {
  .blog .blog__columns .max-width-large-not-centered .table-overflow{
    max-width: 100%;
  }
}

.results-case{
  display: flex;
  gap: 2rem;
}

.result-case-item-name{
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  color: var(--title-color);
}

.result-case-item-caption{
  font-weight: 400;
  line-height: 18px;
  font-size: 12px;
}

.result-case-link{
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.result-case-link-span{
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.solution-flex-header{
  display: flex;
  justify-content: space-between;
}

.solution-flex-header :first-child, .center_title{
  max-width: 642px;
}

.solution-all-link{
  display: flex;
  align-items: end;
}

.solution-all-link-item{
  font-weight: 500;
  font-size: 1rem;
  line-height: 26px;
  color: var(--title-color);
}

.solution-flex, .get-started-flex{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .solution-flex, .get-started-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem) !important;
  }
}

@media (max-width: 575px) {
  .solution-flex, .get-started-flex {
    grid-template-columns: 1fr;
  }
  .solution-flex-item, .get-started-flex-item{
    width: 100% !important;
  }
}

.solution-flex-item, .get-started-flex-item{
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: none;
  box-shadow: inset 0 0 0 1px var(--disabled-bg-color);
}

.solution-flex-text, .get-started-flex-text{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.solution-flex-inner-text, .get-started-flex-inner-text{
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
}

.solution-flex-text.large--gap{
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.solution-flex-inner-text-title, .get-started-flex-inner-text-title{
  color: var(--title-color);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 28px;
}

.solution-flex-inner-text-info, .get-started-flex-inner-text-info{
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: var(--text-color);
  height: 100px;
}

.solution-flex-button, .get-started-flex-button{
  display: flex;
  justify-content: end;
}

.solution-flex-item:hover .solution-flex-button div svg path,  .get-started-flex-item:hover .get-started-flex-button div svg path{
  fill: var(--green-dark);
}

.solution-flex-item:hover, .get-started-flex-item:hover{
  box-shadow: 0px 4px 16px 0px rgba(122, 133, 147, 0.18);
}

.solution-flex-item.border-1:hover, .get-started-flex-item.border-1:hover{
  border-color: transparent;
}

.get-started-flex-item.border-1:hover{
  border: 1px solid transparent;
}

.solution-flex-item:hover .card__title, .get-started-flex-item:hover .card__title{
  color: var(--green-dark);
}

.get-started-flex img{
  border-radius: unset;
}

.form--app-container{
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.form.form--popup{
  max-width: 480px;
  border-radius: 20px;
  border: 1px solid var(--disabled-bg-color);
  padding: clamp(2rem, 4vw, 3rem);
}

.form__privacy.check .check__text{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #55555A;
}

@media (max-width: 1024px) {
  .form--app{
    padding: 1.25rem !important;
  }
  .price_block{
    padding: 1.25rem !important;
  }
}

.form--app-priceblock{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (max-width: 1211px){
  .form--app-items-list{
    grid-template-columns: repeat(3, 216px) !important;
  }
}

.price_block_item_app{
  white-space: nowrap;
}

@media (max-width: 1161px){
  .price_block_item_app{
    white-space: normal;
  }
  .form--app-items-list{
    grid-template-columns: repeat(3, 200px) !important;
  }
}

@media (max-width: 992px) {
  .solution-flex-item, .get-started-flex-item{
    padding: 1rem !important;
  }
  .inner-padding-1-2rem{
    padding: 0 1rem 1rem 1rem !important;
  }
  .price-footer-line.mobile{
    display: block !important;
  }
  .price-footer-line.desktop{
    display: none !important;
  }
  .form--app-container{
    flex-wrap: wrap;
    gap: 0.75rem !important;
  }
  .form--app-price_sum{
    flex-direction: row !important;
    align-items: unset !important;
  }
  .form--app-price_sum div.price_block{
    width: 50%;
  }
  .form--app{
    width: 100%;
    padding-bottom: 3rem !important;
  }
  .form--app-items-list{
    grid-template-columns: repeat(5, 232px) !important;
    overflow: hidden;
    overflow-x: scroll;
  }
}

@media (max-width: 768px){
  .form--app-items-list{
    grid-template-columns: repeat(5, 165px) !important;
  }
  .form--app{
    padding: 1rem !important;
  }

  .price_block.light, .price_block_top{
    gap: 1rem !important;
  }
  .form--app-item{
    padding: 0.75rem !important;
  }

}

@media (max-width: 680px){
  .form--app-price_sum{
    flex-direction: column !important;
    align-items: unset !important;
  }
  .form--app-price_sum div.price_block{
    width: 100%;
  }
  .price_block.light, .price_block_top{
    gap: 0.75rem !important;
  }
}


.form--app-price_sum{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}
.price_block{
  padding: 2rem;
}
.price_block.light{
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.price_block.dark{
  background: url("/site/templates/img/mainpage/form/bg_kalk.jpg") center/cover no-repeat;
}

.price_flowlu_header{
  display: flex;
  justify-content: space-between;
}

.blue_badge{
  background-color: #5278FF;
  padding: 0.125rem 0.5rem;
  border-radius: 20px;
  color: var(--white);
font-weight: 600;
font-size: 12px;
line-height: 16px;

}

.price_block_header{
  background-color: #F5F7FC;
  border-radius: 32px;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 18px;
  color: var(--title-color);
}

.price_block_header_app{
  display: flex;
}

.price_block_item_info{
  font-size: 0.75rem;
  line-height: 18px;
  font-weight: 400;
}

.price_block_item_info.es, .price_block_item_info.pt{
  min-width: 160px;
}

.price_block_item{
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.price_block_item .blog-h1{
  margin: 0;
}

.secondary-text{
  color: var(--secondary-color);
}

/* .price_block_item_total_price{
font-weight: 500;
font-size: 2.75rem;
line-height: 58px;
color: var(--title-color);
} */

.price_block.dark .flowlu_full_price, .price_block.dark .white_color{
  color: var(--white);
}

.price_block_top{
  display: flex;
  flex-direction: column;
  gap: 1.40625rem;
  padding-bottom: 20.5px;
  border-bottom: 1px solid #FFFFFF29;
}

.price_block_bottom{
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price_diff_info{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  max-width: 280px;
}

.price_buttons{
  display: flex;
  gap: 12.5px;
  align-items: center;
}

.price_buttons a{
  white-space: nowrap;
}

.link_features{
  display: flex;
  align-items: center;
  gap: 12px;
}

.link_features:hover svg path{
  fill: var(--green-dark);
}

.link_features span{
font-weight: 500;
font-size: 14px;
line-height: 20px;
padding-left: 17px;
}

.reg_price_btn{
 padding: 9px 27px !important;
 width: 50%;
}




.form--app{
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.form--app-header{
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  color: var(--title-color);
}

.form--app-items-container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form--app-items-list{
  display: grid;
  grid-template-columns: repeat(3, 232px);
  gap: 0.5rem;
}

.form--app-item{
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 8px;
}

.form--app-item.active-app{
  border-color: var(--green);
}

.form--app-item-price-list{
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.form--app-item-price{
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  color: var(--title-color);
}

.form--app-item-user{
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 24px;
  color: var(--secondary-color);
}

.form--app-item-icon img{
  border-radius: unset;
}

.form--app-item:hover{
  box-shadow: 0px 4px 16px 0px #7A85932E;
  border: 1px solid transparent;
}
.form--app-item.active-app:hover{
  border: 1px solid var(--green);
  box-shadow: none;
}
.form--app-item.active-app:hover .form--app-item-checkbock{
  border: 1px solid transparent;
}

.form--app-item:hover .form--app-item-checkbock{
  border: 1px solid var(--title-color);
}

.form--app-item-title{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form--app-item-checkbock{
  width: 24px;
  height: 24px;
  border: 1px solid #E7EAF0;
  border-radius: 4px;
}

.form--app-item-checkbock.active-app-checkbox{
  border: 1px solid transparent;
  background: url('/site/templates/img/check.svg') center center no-repeat, var(--green);
}

.form--app-item.active-app:hover .form--app-item-checkbock.active-app-checkbox:hover{
  border: 1px solid transparent;
  background: url('/site/templates/img/check.svg') center center no-repeat, var(--green-dark);
}

.progress-line{
  position: relative;
}

.app-user-list{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pointer-events-none {
  pointer-events: none;
}

.price-footer-line {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--secondary-color);
  padding-top: 1rem;
}

.price-footer-line.mobile {
  padding: unset !important;
  display: none;
}

.app-user-pointers {
  -webkit-appearance: none;
  width: 100%;
  height: 20px;
  border: 1px solid #E7EAF0;
  border-radius: 12px;
  outline: none;
  margin: 0;
}

.app-user-pointers[data-target="1"] {
  background: rgba(255, 255, 255, 1);
}

.app-user-pointers[data-target="2"] {
  background: linear-gradient(90deg, rgba(217, 240, 222, 1) 0%, rgba(217, 240, 222, 1) 25%, rgba(255, 255, 255, 1) 25%);
}

.app-user-pointers[data-target="3"] {
  background: linear-gradient(90deg, rgba(217, 240, 222, 1) 0%, rgba(217, 240, 222, 1) 50%, rgba(255, 255, 255, 1) 50%);
}

.app-user-pointers[data-target="4"] {
  background: linear-gradient(90deg, rgba(217, 240, 222, 1) 0%, rgba(217, 240, 222, 1) 75%, rgba(255, 255, 255, 1) 75%);
}

.app-user-pointers[data-target="5"] {
  background: rgba(217, 240, 222, 1);
}

.app-user-pointers::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 6px solid var(--green);
  background: #fff;
  cursor: grab;
  position: relative;
  z-index: 2;
}

.app-user-pointers::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: grab;
  position: relative;
  z-index: 2;
}

.app-user-pointers::-webkit-slider-thumb:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.app-user-pointers::-moz-range-thumb:active {
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.pointers-marks {
  position: absolute;
  width: 100%;
  top: calc(50% - 17px);
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  box-sizing: border-box;
}

.pointers-marks .mark {
  width: 8px;
  height: 8px;
  background: #91A2B6;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}


.pointers-marks .mark.active {
  background: #4CAF50;
}

.pointers-marks .mark:hover,
.mark.active:hover {
  cursor: pointer;
  background: #1E803F;
}

.pointers-marks .slider::-webkit-slider-thumb:hover {
  border-color: #1E803F;
}

.pointers-marks .slider::-moz-range-thumb:hover {
  border-color: #1E803F;
}

.pointers-marks .mark.hidden {
  background: transparent;
}
.pointers-marks .mark.hidden:hover {
  cursor: default;
}

.pointers-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.pointer-label {
  text-align: center;
  width: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #91A2B6;
}


.user-app-counter-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.app-user-count {
  display: flex;
}

.t-25{
  position: relative;
  left: -5px;
}

.t-50{
position: relative;
left: -15px;
}

.app-user-count div{
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 18px;
  color: var(--text-color);
}

.app-user-pointer:hover div{
  background: var(--green-dark);
}

.app-user-pointer.active-end:hover{
  background: var(--green-dark);
}

.app-user-pointer.active-end:hover div{
  background: var(--white);
}

.table-wrap table.table {
  border: 0;
  min-width: 700px;
  width: 100%;
}



table.table {
  border-collapse: collapse;
  text-align: left;
  border: 1px solid var(--disabled-bg-color);
}

td,
th {
  border: 1px solid var(--disabled-bg-color);
  padding: 0.5rem 1rem;
  vertical-align: top;
}

th {
  background-color: var(--light-bg);
}

th:first-child,
td:first-child {
  border-left: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  border-top: 0;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.table-feature__cell--caption .label{
  display: inline-block;
  margin-left: 0.25rem;
}

.table-feature__cell .label{
  padding: 0.125rem 0.5rem;
}

.label,
.font-green {
  background-color: var(--blue);
  border-radius: 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  line-height: var(--text-micro-line-height);
  padding: 0.125rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label.label--orange {
  background-color: var(--orange);
}

.label.label--popular{
  background-color: var(--orange);
  font-size: 0.6875rem;
}

.label.label--soon{
  background-color: var(--blue);
  font-size: 0.6875rem;
}

.label.label--new{
  background-color: var(--lilac);
  font-size: 0.6875rem;
}

.label.label--hit{
  background-color: var(--orange);
  font-size: 0.6875rem;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags.tags--centered {
  justify-content: center;
}

.tags__link {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  background-color: var(--light-bg);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;

  &[hidden] {
    display: none;
  }
}

.tags__link.white{
  background-color: var(--white);
}

.tags__link.tags__link--active {
  background-color: var(--green-secondary);
  color: var(--green);
}

@media (any-hover: hover) {

  a.tags__link:hover,
  button.tags__link:hover {
    background-color: var(--green-dark);
    color: var(--white);
  }
}

/* Accordion */
.accordion {
  border-radius: 12px;
  border: 1px solid var(--disabled-bg-color);
  overflow: hidden;
}

.accordion__item:not(:last-of-type) {
  border-bottom: 1px solid var(--disabled-bg-color);
}

.accordion__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2rem);
  text-align: left;
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .accordion__button:hover {
    color: var(--green-dark);
  }

  .accordion__button:hover svg path {
    stroke: var(--green-dark);
  }
}

.accordion__button svg path {
  stroke: var(--title-color);
}

.accordion__button.accordion__button--open svg {
  transform: rotate(180deg);
}

.accordion__button svg {
  transform: rotate(0);
  width: 16px;
  flex: 0 0 16px;
  margin-left: 2rem;
  transition: transform 0.3s ease;
  margin-top: 0.65rem;
}

.accordion__button svg path {
  stroke: var(--text-color);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__wrap {
  padding: 0 clamp(var(--g11-mobile), 7vw, var(--g11-desktop)) clamp(1rem, 2vw, 1.75rem) clamp(1rem, 3vw, 2rem);
}

.accordion__wrap p:first-of-type {
  margin-top: 0;
}

.accordion__wrap p:last-of-type {
  margin-bottom: 0;
}

/* Banner */
.banner {
  background: url('/img/flowlu/banner_frame.svg') 100% bottom / 45% auto no-repeat, url('/img/flowlu/banner_bg.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  gap: 2rem;
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
  border-radius: clamp(12px, 1.5vw, 16px);
  overflow: hidden;
}

.banner.green{
  background: url('/img/flowlu/banner_frame_green.svg') 100% bottom / 45% auto no-repeat, url('/img/flowlu/banner_bg_green.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  gap: 2rem;
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
  border-radius: clamp(12px, 1.5vw, 16px);
  overflow: hidden;
}

.banner.green.banner_text-to_image{
  background: url('/img/flowlu/banner_bg_green.jpg') center/cover no-repeat !important;
}

.banner.banner_text-to_image {
  background: url('/img/flowlu/banner_bg.jpg') center/cover no-repeat;
}

.border-bottom-1{
  border-bottom: 1px solid #E7EAF0;
}

@media (max-width: 575px) {
  .banner.banner--custom {
    background: var(--blue-dark) !important;
  }
}

.banner.banner--reviews {
  background: url('/img/flowlu/artwork.svg') 100% bottom / 45% auto no-repeat, var(--blue-dark);
}

.banner.banner--reviews .banner__col:first-of-type {
  flex: 1 1 60%;
}

.banner.banner--reviews .banner__col:last-of-type {
  flex: 1 1 40%;
}

.banner.banner--large {
  background: var(--blue-dark);
  position: relative;
}

.banner.banner--light {
  background: url('/site/templates/img/mobile/banner_mobilapp_light.jpg') center / cover no-repeat;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner.banner--medium {
  background: var(--blue-dark);
  position: relative;
}

.banner.banner--promo {
  background: url('/img/flowlu/percent.svg') 60% bottom / 36% auto no-repeat, radial-gradient(100% 90.02% at -9.13% 55.86%, var(--gradient-orange) 0%, rgba(255, 175, 81, 0.00) 98.03%), var(--gradient-sunny);
}

.banner.banner--promo:not(.blog){
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner.banner--lead-magnet {
  gap: var(--g6-desktop);
  background: url('/img/flowlu/lead-magnit.png') 780px 0 / contain no-repeat, var(--cyan);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner.pricing {
  gap: var(--g6-desktop);
  background: url('/img/flowlu/desctop_Plan.jpg') 100% 0 / cover no-repeat;
  padding: 0;
}

.banner.pricing .banner__col:first-of-type{
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner.pricing .banner__col:last-of-type{
  display: flex;
  flex: 1 1 50%;
  align-items: end;
}

.banner.pricing.light{
  background: url('/img/flowlu/bg_pricing_light.jpg') 100% 0 / cover no-repeat;
} 

.banner.pricing.light .banner__caption{
  color: var(--title-color);
}

.banner.pricing.light .banner__text{
  color: var(--text-color);
}

.old-price {
  font-weight: 400;
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-color);
}

.monthly--active .old-price {
  display: none;
}

.link__title{
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
}

.banner.banner--pricing {
  gap: var(--g6-desktop);
  background: url('/img/flowlu/pricing-banner.png') 750px 0 / contain no-repeat, url('/img/flowlu/desctop_lid_compare.jpg') 100% 0 / cover no-repeat;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner.banner--promo .banner__text {
  color: var(--white);
}

.banner.banner--large .banner__col:first-of-type {
  flex: 1 1 21%;
  min-width: 272px;
}

.banner.banner--large.mobile{
  padding: 0;
}

@media (max-width: 991px) {
  .banner.banner--large.mobile {
    gap: 0 !important;
  }
}

@media (max-width: 767px) {
  .banner.banner--large.mobile{
    flex-direction: column;
    text-align: center;
    justify-content: center;
    .banner__buttons{
      margin-top: 1.5rem;
      justify-content: center;
    }
  }
  .banner.banner--large .banner__image{
    position: relative;
    bottom: 0;
    right: -20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.banner.banner--large.mobile .banner__col:first-of-type{
  flex: 1 1 50%;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner.pricing .banner__col:last-of-type img{
  object-fit: contain;
  object-position: bottom;
}


.banner_text-to_image{
  gap: var(--g6-desktop) !important;
  padding: 0 !important;
}

.banner_text-to_image .banner__col:first-of-type{
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.banner_text-to_image .banner__col:last-of-type{
  display: flex;
  flex: 1 1 50%;
  align-items: end;
}

.banner_text-to_image .banner__col:last-of-type img{
  object-fit: contain;
  object-position: bottom;
}

.banner_text-to_image.blog .banner__col:first-of-type{
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 2vw, 2rem);
}
.banner_text-to_image.blog .banner__col:first-of-type h3{
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  white-space: nowrap;
  margin-bottom: 0;
}
.banner_text-to_image.blog .banner__col:first-of-type:has(> .banner__text) h3 {
  margin-bottom: 0.5rem;
}

.banner_text-to_image.blog .banner__col:first-of-type .banner__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.banner_text-to_image.blog .banner__col:first-of-type a{
  margin-top: 20px;
  width: max-content;
}

.banner.banner--promo.blog {
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 2vw, 2rem);
}

.banner.banner--promo.blog .h4{
  font-size: 24px;
}

.banner.banner--lead-magnet.blog {
  gap: var(--g6-desktop);
  background: url('/img/flowlu/lead-magnit.png') 525px 0 / contain no-repeat, var(--cyan);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 2vw, 2rem);
}

.banner.banner--lead-magnet.blog .banner__wrap, .banner.banner--lead-magnet.blog form,
.banner.banner--lead-magnet.blog .banner__agreement
{
  max-width: 479px;
}

.banner.banner--lead-magnet.blog .banner__wrap .h4{
  font-size: 24px;
}

.banner.banner--lead-magnet.blog .banner__wrap .text-regular{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.banner.banner--lead-magnet.blog form .btn{
  width: max-content;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .banner.banner--promo {
    flex-direction: column;
    align-items: flex-start;
  }
  .banner.pricing{
    flex-direction: column;
    gap: 0;
    background: url('/img/flowlu/desctop_Plan.jpg') center / cover no-repeat;
  }
  .banner.pricing .banner__col{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .banner_text-to_image{
    flex-direction: column;
    gap: 0;
  }
  .banner_text-to_image .banner__col{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .banner_text-to_image .banner__col:last-child{
    align-items: center;
  }

    .banner.banner--lead-magnet.blog{
      background: var(--cyan);
    }

  .banner.banner--lead-magnet.blog .banner__wrap, .banner.banner--lead-magnet.blog form,
  .banner.banner--lead-magnet.blog .banner__agreement
  {
    max-width: 100%;
  }

  .banner.banner--lead-magnet.blog .banner__wrap{
    text-align: center;
  }
}

@media (max-width: 575px) {
  .banner {
    gap: 1rem;
    background: url('/img/flowlu/banner_bg.jpg') center/cover no-repeat;
    flex-direction: column;
    align-items: flex-start;
  }

  .banner.banner--large {
    padding-bottom: 0;
    gap: 2rem;
  }

  .banner.banner--large .banner__col:first-of-type {
    min-width: auto;
  }

  .banner_text-to_image{
    gap: 0 !important;
  }
  .banner_text-to_image .banner__col:first-of-type a,
  .banner.banner--lead-magnet.blog form .btn{
    width: 100% !important;
  }

  .banner.banner--lead-magnet.blog .banner__wrap{
    text-align: left;
  }

  .banner_text-to_image.blog .banner__col:first-of-type h3{
    white-space: normal;
  }
}

.banner__wrap {
  max-width: 666px;
}

.banner__form-wrap {
  max-width: 440px;
}

.banner__form {
  display: flex;
  align-items: flex-start;
  gap: var(--g2);
}

@media (max-width: 425px) {
  .banner__form {
    flex-direction: column;
  }

  .banner__form>* {
    min-height: 50px;
  }
}

.banner h1,
.banner h2,
.banner h3,
.banner h4,
.banner h5 {
  color: var(--white);
}

@media (max-width: 425px) {
  .banner .btn {
    width: 100%;
  }
}

.banner__col {
  flex: 1 1 50%;
}

.banner__col>*:first-child {
  margin-top: 0;
  padding-top: 0;
}

.banner__col:last-of-type {
  text-align: right;
}

@media (max-width: 575px) {
  .banner__col {
    text-align: center;
    width: 100%;
  }

  .banner__col:last-of-type {
    text-align: center;
  }
}

.banner__caption {
  margin-bottom: 0.5rem;
}

@media (max-width: 575px) {
  .banner__caption {
    margin-bottom: 0.5rem;
  }
}

.banner__text {
  color: var(--blue-light);
}

.banner--light .banner__text{
  color: var(--text-color);
}

.banner__text p {
  margin-bottom: 0;
}

.banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

@media (any-hover: hover) {
  .banner__link:hover svg path {
    stroke: var(--green-dark);
  }
}

.banner__link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.banner__link svg path {
  stroke: var(--green);
}

.banner__qr {
  display: flex;
  gap: 1.75rem;
}

.banner__qr img {
  width: 128px;
  flex: 0 0 128px;
  border-radius: 0;
}

@media (max-width: 991px) {
  .banner__qr {
    gap: 1rem;
  }

  .banner__qr img {
    width: 100px;
    flex: 0 0 100px;
  }
}

@media (max-width: 767px) {
  .banner__qr {
    display: none;
  }
}

.banner__buttons {
  display: none;
}

@media (max-width: 767px) {
  .banner__buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 575px) {
  .banner__buttons {
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 425px) {
  .banner__btn {
    width: 100%;
  }
}

.banner__image {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 53.58%;
}

.banner__image.banner__image--small {
  right: 15%;
  width: 43%;
}

.banner__image img {
  border-radius: 0;
}

@media (max-width: 991px) {
  .banner__image {
    right: -10%;
    width: 68%;
  }

  .banner__image.banner__image--small {
    right: 5%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .banner__image {
    right: -19%;
    width: 70%;
  }

  .banner__image.banner__image--small {
    right: -10%;
    width: 60%;
  }
}

@media (max-width: 575px) {

  .banner__image,
  .banner__image.banner__image--small {
    position: relative;
    right: 0;
    width: calc(100% + 3rem);
    margin: 0 -1.5rem;
  }

  .banner__image.banner__image--small {
    bottom: -2rem;
  }
}

.banner__promo {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

@media (max-width: 575px) {
  .banner__promo {
    justify-content: center;
  }
}

@media (max-width: 425px) {
  .banner__promo {
    flex-direction: column;
  }
}

.banner__code {
  padding: 0.75rem 1.25rem;
  font-size: var(--text-regular);
  line-height: var(--text-regular-line-height);
  background-color: var(--white);
  color: var(--title-color);
  border: 1px solid var(--white);
  font-weight: 500;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid */
.columns {
  columns: 2 280px;
  column-gap: 1.5rem;
}

.columns a {
  color: var(--text-color);
}

.columns__item {
  break-inside: avoid;
}

.columns__item:first-of-type h1,
.columns__item:first-of-type h2,
.columns__item:first-of-type h3,
.columns__item:first-of-type h4,
.columns__item:first-of-type h5 {
  margin-top: 0;
  padding-top: 0;
}

.form {
  width: 100%;
  min-width: 0;
  position: relative;
}

.form._sending .form__spinner {
  opacity: 1;
  visibility: visible;
}

.form__spinner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-color: var(--overlay-color);
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: inherit;
}

.form.form--white {
  color: var(--title-color);
  background-color: var(--white);
}

.form.form--white .form__title {
  color: var(--title-color);
}

.form.form--full {
  max-width: 500px;
  border-radius: 20px;
  border: 1px solid var(--disabled-bg-color);
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
}

@media (max-width: 767px) {
  .form.form--full {
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  .form.form--full {
    border-radius: 0;
    height: 100dvh;
    overflow: auto;
  }
}

.form.form-register {
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 58px;
  transition: max-height 0.25s ease-in-out;
  .form_input__register{
    padding: 15px 20px;
  }
}

.form.form-register.no-margins{
  margin: 0;
}

.form.form-register.show_check{
  max-height: 130px;
}
.form.form-register .form-grid{
  display: grid;
  grid-template-columns: minmax(200px,325px) 1fr;
  gap: 1rem;
}


.form.form-register .checkbox {
  min-width:24px;
  min-height:24px;
  border:1px solid #e7eaf0;
  border-radius:4px;
  background: var(--white);
}

.form.form-register .checkbox.error-checkbox{
  border: 1px solid var(--orange-dark);
}

.form.form-register .checkbox--title{
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--secondary-color);
  text-align: left;
}

.form.form-register .checkbox-flex{
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.form.form-register .checkbox-flex.pt,
.form.form-register .checkbox-flex.es{
  align-items: start;
}

.form.form-register .checkbox-flex:hover{
    cursor: pointer;
}
.form.form-register .checkbox:hover {
  border: 1px solid var(--title-color);
}

.form.form-register .checkbox.active-checkbox {
  border:1px solid transparent;
  background:url('/site/templates/img/check.svg') center center no-repeat,var(--green)
}
.form.form-register .checkbox.active-checkbox:hover {
  border:1px solid transparent;
  background:url('/site/templates/img/check.svg') center center no-repeat,var(--green-dark)
}

@media (max-width: 520px) {
  .form.form-register{
    max-width: 100%;
    max-height: 128px;
  }
  .form.form-register .form-grid{
    grid-template-columns: 100%;
  }

  .form.form-register.show_check{
    max-height: 170px;
  }

  .form.form-register .checkbox-flex{
    align-items: start;
  }
}

.form.form--width-100 {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 0;
}

.popup {
  .form--full {
    border-color: var(--overlay-color);
  }
}

.form.form--flex {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

@media (max-width: 991px) {
  .form.form--flex {
    gap: 0.5rem;
  }

  .form.form--flex .form__input {
    padding: 0.6875rem 1.25rem;
  }
}

.form__input {
  display: block;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid var(--disabled-bg-color);
  padding: clamp(0.5rem, 1.5vw, 0.9375rem) clamp(1rem, 1.5vw, 1.1875rem);
  font-size: var(--text-regular);
  line-height: var(--text-regular-line-height);
  color: var(--text-color);
  width: 100%;
  background-color: transparent;
}

input.form__input._error {
  border: 1px solid var(--orange-dark);
}

input.form__input._error::placeholder {
  color: var(--orange-dark);
}

textarea.form__input {
  resize: none;
  min-height: 108px;
}

.form__input.form__footer{
  background: transparent;
  border-color: #323b62;
  color: var(--secondary-color);
}
.form__input.form__footer:hover{
  border-color: rgba(255, 255, 255, 0.48);
}

.form__input.form__footer:valid{
  color: var(--white);
}
.form__input.form__footer:focus{
  background: var(--white);
  border-color: #323b62;
  color: var(--text-color);
}

.form__input.form__footer::placeholder{
  color: var(--secondary-color);
}

input.form__input.form__footer._error {
  border: 1px solid var(--orange-dark);
  background: var(--white);
  color: var(--text-color);
}

input.form__input.form__footer._error::placeholder{
  color: var(--secondary-color);
}

.form__group {
  display: flex;
  gap: 1rem;
}

.form__group>* {
  flex: 1 1 50%;
}

@media (max-width: 1199px) {
  .form__group {
    flex-direction: column;
    gap: 0;
  }
}

.form__label {
  display: block;
  margin-bottom: 1rem;
}

.form__label span {
  display: block;
}

.form__label span em {
  color: var(--orange-dark);
}

.form__input.form__input--small {
  padding: clamp(0.5rem, 1.5vw, 0.6875rem) clamp(1rem, 1.5vw, 1.1875rem);
}

.form__input.form__input--dark {
  color: var(--white);
  border: 1px solid var(--border-color-on-blue);
}

.form__input::placeholder {
  color: var(--secondary-color);
}

.form__input.form__input--dark:hover {
  border: 1px solid var(--white);
}

.form__input.form__input--white {
  background-color: var(--white);
}

.form__input:hover {
  border-color: var(--text-color);
}

@media (any-hover: hover) {
  .form__button-search:hover svg path {
    stroke: none;
  }
}

.form__button-search svg {
  display: none;
}

@media (max-width: 991px) {
  .form__button-search.btn.btn--large {
    padding: 0;
    flex: 0 0 48px;
  }

  .form__button-search span {
    display: none;
  }

  .form__button-search svg {
    display: block;
  }

  .form__button-search svg path {
    stroke: none;
    fill: var(--white);
  }
}

.custom-select {
  position: relative;
}

.custom-select__select {
  appearance: none;
  display: block;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid var(--disabled-bg-color);
  padding: clamp(0.5rem, 1.5vw, 0.9375rem) 2.5rem clamp(0.5rem, 1.5vw, 0.9375rem) clamp(1rem, 1.5vw, 1.1875rem);
  font-size: var(--text-regular);
  line-height: var(--text-regular-line-height);
  color: var(--text-color);
  width: 100%;
  background-color: transparent;
}

select:invalid {
  color: var(--secondary-color);

  option {
    color: var(--text-color);
  }
}

.custom-select__arrow {
  content: '';
  position: absolute;
  right: clamp(1rem, 1.5vw, 1.1875rem);
  top: 50%;
  width: 11px;
  height: 7px;
  transform: translateY(-50%);
  background: url('/img/flowlu/select-arrow.svg') center / cover no-repeat;
}

.custom-select__select:hover {
  border-color: var(--text-color);
}

.custom-select__select.custom-select__select--small {
  padding: clamp(0.5rem, 1.5vw, 0.6875rem) 2.5rem clamp(0.5rem, 1.5vw, 0.6875rem) clamp(1rem, 1.5vw, 1.1875rem);
}

.form__btn--block {
  display: block;
  width: 100%;
}

/* Search */
.search-result {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media (max-width: 575px) {
  .search-result {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.search-result span {
  font-weight: 500;
  color: var(--secondary-color);
}

/* languages */
.languages {
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
  width: 30%;
  font-size: 80%;
}

.languages li {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0 10px;
  border-left: 1px solid #ccc;
}

.languages a {
  display: inline;
}

.languages li:first-child {
  border: none;
  padding-left: 0;
}

.languages li.current a {
  font-weight: bold;
}

form.search {
  float: right;
  margin: 0;
  width: 30%;
  padding-bottom: 1em;
}

form.search input {
  margin: 0;
  padding: 0.25em 0.5em;
  border: 1px solid #ccc;
  width: 100%;
}

/* footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
}

.footer a {
  color: inherit;
}

.footer ul li {
  padding-left: 0;
}

.footer ul li::before {
  display: none;
}

.top-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 2rem;
  column-gap: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--border-color-on-blue);
}

.top-footer__item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 220px;
}

.top-footer__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.flex-footer-form{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
}

.top-footer__img {
  max-width: 100%;
  border-radius: 0;
}

.footer__middle {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.footer__col-head {
  display: flex;
}

.footer__col-head .footer__caption {
  flex: 1 1 auto;
  padding-bottom: 0.75rem;
}

.footer__arrow {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.footer__arrow svg {
  transform: rotateZ(0deg);
  transition: transform 0.3s ease;
  width: 14px;
  flex: 0 0 14px;
}

.footer__arrow.footer__arrow--turn svg {
  transform: rotateZ(180deg);
}

.footer__arrow svg path {
  stroke: var(--white);
}

.footer__list {
  margin: 0;
}

.footer__list .footer__link {
  color: var(--secondary-color);
}

.footer__item:not(:last-of-type) .footer__caption {
  display: block;
  margin-bottom: 1rem;
}

.contact-footer {
  flex: 0 0 275px;
}

.contact-footer__label {
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

@media (max-width: 991px) {
  .contact-footer {
    text-align: center;
  }

  .contact-footer__label {
    text-align: center;
  }
}

.contact-footer__btn {
  width: 100%;
}

@media (max-width: 991px) {
  .contact-footer__btn {
    display: flex;
    max-width: 275px;
    margin: 0 auto;
  }
}

.contact-footer__form {
  display: flex;
  gap: 0.5rem;
}

.contact-footer__subscribe {
  color: var(--secondary-color);
  margin-top: 0.75rem;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials.socials--share {
  padding: 0 0.75rem 0 0.25rem;
}

.socials.socials--share.socials--no-padding {
  padding: 0;
}

@media (max-width: 991px) {
  .socials.socials--share {
    margin-top: 0;
    justify-content: flex-start;
  }
}

.socials.socials--share .socials__item {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background-color: var(--light-bg);
}

.socials.socials--share svg {
  width: 16px;
  flex: 0 0 16px;
}

.socials.socials--share svg path {
  fill: var(--text-color);
}

@media (any-hover: hover) {
  .socials.socials--share .socials__item:hover {
    background-color: var(--green-dark);
  }

  .socials.socials--share .socials__item:hover svg path {
    fill: var(--white);
  }
}

.socials__item {
  gap: 0.5rem;
  border-radius: 50%;
  background-color: var(--border-color-on-blue);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (any-hover: hover) {
  .socials__item:hover {
    background-color: var(--green-dark);
  }
}

.socials__img {
  width: 16px;
  flex: 0 0 16px;
  border-radius: 0;
}

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.bottom-footer {
  background-color: var(--lighter-blue);
}

.bottom-footer__text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bottom-footer__faint {
  color: var(--secondary-color);
}

.bottom-footer__download {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 991px) {
  .top-footer {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .footer__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-footer__item {
    flex: 1 1 50%;
  }

  .footer__middle {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }

  .socials {
    justify-content: center;
    margin-top: 1rem;
  }

  .contact-footer {
    flex: none;
  }

  .contact-footer__subscribe {
    text-align: center;
  }

  .bottom-footer__text {
    text-align: center;
    justify-content: center;
  }

  .bottom-footer__download {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .footer__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 425px) {
  .footer__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__col.footer__col--captions {
    margin-top: 0.5rem;
  }

  .footer__col:not(.footer__col--captions) .footer__list .footer__item:last-of-type {
    padding-bottom: 0.5rem;
  }

  .footer__col-head {
    align-items: center;
  }

  .footer__col-head .footer__caption {
    padding-bottom: 0;
  }

  .footer__col-head+.footer__list {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  @media (any-hover: hover) {
    .footer__col-head:hover .footer__arrow svg path {
      stroke: var(--green-dark);
    }
  }

  .footer__arrow {
    display: flex;
  }
}

/* Awards */
.awards-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0 2rem;
}

@media (max-width: 1199px) {
  .awards-wrap {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .awards-wrap {
    padding: 0 1rem;
  }
}

.awards-wrap::-webkit-scrollbar {
  display: none;
}

.awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.25rem);
  position: static;
  width: min-content !important;
  margin: 0 auto;
}

.awards.awards--big {
  flex-wrap: wrap;
  width: 100% !important;
  margin-top: clamp(var(--g9-mobile), 5vw, var(--g9-desktop));
  gap: clamp(1rem, 2vw, 2rem) clamp(1.25rem, 3vw, 3rem);
}

.awards.awards--big .awards__item {
  flex: 0 0 108px;
  width: 108px;
}

.awards__item {
  flex: 0 0 90px;
  width: 90px;
}

.awards__item img {
  border-radius: 0;
}

@media (max-width: 991px) {
  .awards__item {
    flex: 0 0 66px;
    width: 66px;
  }

  .awards.awards--big .awards__item {
    flex: 0 0 88px;
    width: 88px;
  }
}

@media (max-width: 575px) {
  .awards.awards--big .awards__item {
    flex: 0 0 60px;
    width: 60px;
  }
}

/* Mainscreen */
.mainscreen {
  background-color: var(--dark-blue);
  color: var(--white);
}

.mainscreen.green{
  background-color: var(--darker-green);
}

.mainscreen.light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(103, 136, 255, 0.00735151) 15.74%, rgba(103, 136, 255, 0.1) 100%);
  color: var(--text-color);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.figures {
  object-fit: cover;
  object-position: 0 -10px;
  filter: blur(40px);
  opacity: 0.2;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mainscreen.mainscreen--grey {
  background-color: var(--light-bg);
  color: var(--text-color);
}

.mainscreen h1, .mainscreen h2, .mainscreen h3, .mainscreen h4, .mainscreen h5, .mainscreen .h1, .mainscreen .h2, .mainscreen .h3,
.mainscreen .h4, .mainscreen .h5 {
  color: var(--white);
}

.mainscreen h1 {
  margin-top: 0;
}

.mainscreen.mainscreen--grey h1, .mainscreen.mainscreen--grey h2, .mainscreen.mainscreen--grey h3, .mainscreen.mainscreen--grey h4,
.mainscreen.mainscreen--grey h5, .mainscreen.mainscreen--grey .h1, .mainscreen.mainscreen--grey .h2, .mainscreen.mainscreen--grey .h3,
.mainscreen.mainscreen--grey .h4, .mainscreen.mainscreen--grey .h5 {
  color: var(--title-color);
}

.mainscreen.light h1, .mainscreen.light h2, .mainscreen.light h3, .mainscreen.light h4, .mainscreen.light h5, .mainscreen.light .h1,
.mainscreen.light .h2, .mainscreen.light .h3, .mainscreen.light .h4, .mainscreen.light .h5 {
  color: var(--title-color);
}

.mainscreen__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.mainscreen__body.mainscreen__body--align-top {
  align-items: flex-start;
}

@media (max-width: 767px) {
  .mainscreen__body {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .mainscreen__body.mainscreen__body--align-top {
    flex-direction: column;
  }
}

.mainscreen__info {
  flex: 0 0 49%;
}

.mainscreen__info.mainscreen__info--reviews {
  flex: 1 1 auto;
}

@media (min-width: 768px) {
  .mainscreen__info--max-width-400 {
    flex: none;
    max-width: 400px;
  }
}

.mainscreen__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 425px) {
  .mainscreen__btn {
    width: 100%;
  }
}

.mainscreen__image {
  max-width: 551px;
}

.mainscreen__svg {
  flex: 0 0 351px;
}

.mainscreen__svg svg {
  width: 351px;
}

@media (max-width: 767px) {
  .mainscreen__image {
    display: none;
  }

  .mainscreen__svg {
    flex: none;
  }

  .mainscreen__svg svg {
    width: 100%;
    display: inline-block;
  }
}

.mainscreen__image img {
  border-radius: 16px;
}

.mainscreen__qr {
  display: flex;
  gap: 1.75rem;
}

.mainscreen__qr img {
  width: 128px;
  flex: 0 0 128px;
  border-radius: 0;
}

@media (max-width: 991px) {
  .mainscreen__qr {
    gap: 1rem;
  }

  .mainscreen__qr img {
    width: 100px;
    flex: 0 0 100px;
  }
}

@media (max-width: 767px) {
  .mainscreen__qr {
    display: none;
  }
}

.mainscreen__buttons-mobile {
  display: none;
}

@media (max-width: 767px) {
  .mainscreen__buttons-mobile {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 575px) {
  .mainscreen__buttons-mobile {
    flex-wrap: wrap;
  }
}

@media (max-width: 425px) {
  .mainscreen__btn-mobile {
    width: 100%;
  }
}

/* Rates */
.rates-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0 2rem;
}

@media (max-width: 1199px) {
  .rates-wrap {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .rates-wrap {
    padding: 0 1rem;
  }
}

.rates-wrap::-webkit-scrollbar {
  display: none;
}

.rates {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  position: static;
  width: min-content !important;
  margin: 0 auto;
}

.mainscreen.light .rates__item {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 1.5rem 2.25rem 1.25rem 2.25rem;
  background-color: var(--white);
  color: var(--white);
}

.rates__item {
  border: 1px solid var(--border-color-on-blue);
  border-radius: 12px;
  padding: 1.5rem 2.25rem 1.25rem 2.25rem;
}

@media (any-hover: hover) {
  .mainscreen.light .rates__item:hover {
    box-shadow: 0px 4px 16px 0px rgba(122, 133, 147, 0.18);
  }

  .rates__item:hover {
    background-color: var(--lighter-blue);
    border-color: var(--lighter-blue);
  }
  
}

.rates__icon {
  width: 144px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.rates__icon img {
  border-radius: 0;
}

.rates__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  line-height: 1.5;
  font-weight: 500;
}

.mainscreen.light .rates__bottom {
  color: var(--text-color);
}

.rates__bottom svg {
  width: 16px;
  flex: 0 0 16px;
  margin-right: 0.5rem;
}

.rates__bottom svg path {
  fill: var(--orange-light);
}

.rates__bottom span {
  opacity: 0.5;
  font-weight: 400;
  margin-left: 0.25rem;
}

/* Teasers */
.teasers {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.teasers.teasers--items-auto-width .teasers__item {
  max-width: none;
}

.teasers.teasers--icon-on-the-left .teasers__item {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.teasers.teasers--icon-on-the-left .teasers__icon {
  flex: 0 0 40px;
}

.teasers.teasers--2-cols {
  flex-wrap: wrap;
}

.teasers.teasers--2-cols .teasers__item {
  flex: 1 1 45%;
}

@media (max-width: 991px) {
  .teasers {
    flex-wrap: wrap;
  }

  .teasers.teasers--3-cols {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  .teasers.teasers--3-cols {
    flex-direction: column;
  }
}

.teasers.teasers--align-left .teasers__item {
  text-align: left;
  padding: 0 clamp(1rem, 2vw, 1.5rem) 0 0;
}

.teasers.teasers--3-cols .teasers__item {
  text-align: left;
  display: flex;
  gap: 1rem;
  flex: 1 1 33.333%;
  padding: 0 clamp(1rem, 2vw, 2rem) 0 0;
  max-width: none;
}

@media (max-width: 991px) {
  .teasers.teasers--3-cols .teasers__item {
    min-width: auto;
  }
}

.teasers.teasers--3-cols .teasers__icon {
  width: 40px;
  flex: 0 0 40px;
}

.teasers__item {
  text-align: center;
  flex: 1 1 25%;
  padding: 0 0.75rem;
  max-width: 300px;
}

@media (max-width: 991px) {
  .teasers__item {
    min-width: 280px;
  }
}

.teasers__icon {
  display: inline-block;
  width: 80px;
}

.teasers__icon img {
  border-radius: 0;
}

/* Block */
.block.block--grey {
  background-color: var(--light-bg);
}

.block.block--oveflow-hidden {
  overflow: hidden;
}

.block.offset-top-80{
  padding-top:5rem;
}

.block__decor {
  background: url('/img/flowlu//decor-star01.svg') 5% top / 68px 68px no-repeat,
    url('/img/flowlu//decor-star01.svg') 95% top / 68px 68px no-repeat,
    url('/img/flowlu//decor-star02.svg') 0% 60px / 35px 35px no-repeat,
    url('/img/flowlu//decor-star02.svg') 100% 60px / 35px 35px no-repeat;
}

.block__row {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

@media (max-width: 991px) {
  .block__row {
    flex-direction: column;
  }
}

.block__row.block__row--right-col-big .block__col:first-of-type {
  flex: 0 0 34%;
}

.block__row.block__row--right-col-big .block__col:last-of-type {
  flex: 0 0 57.5%;
}

.block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 425px) {
  .block__buttons {
    flex-direction: column;
  }
}

/* scroller */
.scroller {
  mask: linear-gradient(90deg, transparent 5%, white 30%, white 70%, transparent 95%);
}

.scroller__list {
  width: max-content;
  will-change: transform;
  animation: scroll 40s linear infinite;
}

.scroller__item {
  width: 148px;
  height: 148px;
  flex: 0 0 148px;

  img {
    max-height: 100%;
  }
}

@keyframes scroll {
  to {
    transform: translate3d(calc(-50% - (var(--gap) / 2)), 0, 0);
  }
}

/* Prefooter */
.prefooter {
  text-align: center;
  background-color: var(--dark-bg);
  border-bottom: 1px solid var(--border-color-on-blue);
}

.prefooter .h1, .prefooter .h2, .prefooter .h3, .prefooter .h4, .prefooter .h5, .prefooter h1, .prefooter h2, .prefooter h3, .prefooter h4, .prefooter h5 {
  color: var(--white);
}

.prefooter__img {
  width: 64px;
  border-radius: 0;
}

.prefooter__buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Blog */

.blog-ai-assistant{
  padding:  24px 24px 24px 28px;
  background: #F5F7FC;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.blog-ai-assistant--title{
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #303030;
}

.blog-ai-assistant--buttons{
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.blog-ai-assistant--buttons .btn{
  padding: 0.5625rem 1rem;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.blog-ai-assistant--buttons .btn svg path{
  stroke: none;
}

.blog-ai-assistant--buttons .btn--chatgpt{
  background: #303030;
  border-color: #303030;
}

.blog-ai-assistant--buttons .btn--perplexity{
  background: #21808D;
  border-color: #21808D;
}

.blog-ai-assistant--buttons .btn--claude{
  background: #D97757;
  border-color: #D97757;
}

@media (min-width: 992px) and (max-width: 1100px) {
  .blog-ai-assistant{
    flex-direction: column;
    gap: 1.25rem;
  }

  .blog-ai-assistant--buttons{
    width: 100%;
    justify-content: space-between;
  }

  .blog-ai-assistant--buttons .btn{
    width: calc(100%/3);
  }
}

@media (max-width: 767px){
  .blog-ai-assistant{
    flex-direction: column;
    gap: 1.25rem;
    padding: 24px;
  }

  .blog-ai-assistant--buttons{
    flex-direction: column;
    width: 100%;
  }

  .blog-ai-assistant--buttons .btn{
    width: 100%;
  }

}

.blog__columns {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .blog__columns {
    flex-direction: column-reverse;
    gap: initial;
  }

  .blog__columns--normal-adapt {
    flex-direction: column;
  }
}

.blog__col.blog__col--aside-width {
  flex: 0 0 276px;
}

@media (max-width: 991px) {
  .blog__col.blog__col--aside-width {
    flex: none;
    align-self: flex-start;
    width: 100%;
  }
}

.blog__col>*:last-child {
  margin-bottom: 0;
}

.blog__image {
  border-radius: 20px;
  overflow: hidden;
}

.blog__topbar {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 48px;
}

@media (max-width: 767px) {
  .blog__topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog__publish {
  margin-right: clamp(1rem, 2.5vw, 2.25rem);
}

.blog__read {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 76px;
}

@media (max-width: 767px) {

  .blog__publish,
  .blog__read {
    margin-right: 76px;
  }
}

.blog__read svg {
  width: 16px;
  flex: 0 0 16px;
}

.blog__read svg path {
  fill: var(--text-color);
}

/* Authors */
.authors {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 1rem;
}

@media (max-width: 767px) {
  .authors {
    margin-right: 0;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
}

.authors__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  overflow: hidden;
}

.authors__name {
  margin-bottom: 0.125rem;
  color: var(--title-color);
}

.authors__position {
  color: var(--secondary-color);
}

.authors__review-website {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 32px;
  height: 32px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 2px 16px 0px rgba(122, 133, 147, 0.35);
}

.authors__review-website img {
  width: 21px;
  flex: 0 0 21px;
}

@media (any-hover: hover) {
  a.authors[href]:hover .authors__name {
    color: var(--green-dark);
  }

  .authors:has(a[href]):hover .authors__name {
    color: var(--green-dark);
  }
}

/* Share */
.share {
  position: absolute;
  z-index: 1;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 16px transparent;
  border-radius: 32px;
  padding: 0.5rem;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
  .share {
    top: -0.5rem;
    transform: translateY(0%);
  }
}

.share.share--expanded {
  background-color: var(--white);
  box-shadow: 0px 4px 16px var(--shadow-cards-color);
}

.share.share--expanded .share__btn {
  background-color: var(--green);
  border-color: var(--green);
}

.share.share--expanded .share__btn svg path {
  fill: var(--white);
}

@media (any-hover: hover) {
  .share.share--expanded .share__btn:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
  }
}

.share__body {
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s ease;
}

.share__btn {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.share__btn svg {
  width: 16px;
  flex: 0 0 16px;
}

.share__btn svg path {
  fill: var(--text-color);
}

@media (any-hover: hover) {
  .share__btn:hover {
    border-color: var(--green-dark);
    background-color: var(--green-dark);
  }

  .share__btn:hover svg path {
    fill: var(--white);
  }
}

.share__close {
  display: none;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cards.cards--two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cards.cards--two-cols .cards__item {
  max-width: none;
}

@media (max-width: 767px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .cards.cards--two-cols {
    grid-template-columns: 1fr;
  }
}

.cards__item {
  border: 1px solid var(--disabled-bg-color);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
}

.cards__image {
  flex: 0 0 80px;
  width: 80px;
}

@media (max-width: 767px) {
  .cards__image {
    flex: 0 0 60px;
    width: 60px;
  }
}

.cards__image img {
  border-radius: 0;
}

.cards__item.cards__item--icon {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 575px) {
  .cards__item.cards__item--icon {
    flex-direction: column;
  }
}

.cards__info {
  display: flex;
  flex-direction: column;
}

@media (any-hover: hover) {
  .cards__item:hover {
    border-color: transparent;
    box-shadow: 0px 4px 16px var(--shadow-cards-color);
  }

  .cards__item:hover .cards__title {
    color: var(--green-dark);
  }

  .cards__item:hover svg path {
    fill: var(--green-dark);
  }
}

.cards__item svg {
  width: 16px;
  align-self: flex-end;
}

.cards__item svg path {
  fill: var(--text-color);
}

.cards__title {
  color: var(--title-color);
}

.cards__text {
  flex: 1 1 auto;
  color: var(--text-color);
}

.cards__icon {
  position: relative;
  height: 28px;
  width: 100%;
}

.cards__icon img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
}

.cards__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}

/* Faq */
.faq__top {
  display: flex;
  align-items: flex-start;
  gap: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
}

@media (max-width: 575px) {
  .faq__top {
    flex-direction: column;
    gap: 1rem;
  }
}

.faq__btn {
  white-space: nowrap;
}

.faq--two-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(3rem, 7vw, 6.375rem);
}

.faq--two-columns .faq__top {
  flex-direction: column;
  width: calc(100%/3);
  gap: unset;
}

.faq--two-columns .faq__accordion {
  width: calc(100%/3*2);
}

.faq--two-columns .faq__text {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.faq--two-columns .h2 {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .faq--two-columns {
    flex-direction: column;
    gap: unset;
  }

  .faq--two-columns .faq__top,
  .faq--two-columns .faq__accordion {
    width: auto;
  }

  .faq--two-columns .faq__text {
    margin-bottom: 1rem;
  }
}

/* Subscribe */
.subscribe {
  background-color: var(--cyan);
  border-radius: 20px;
  padding: clamp(var(--g8-mobile), 3vw, var(--g8-desktop)) clamp(1.5rem, 5vw, var(--g9-desktop));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.subscribe.blog{
  background: url('/site/templates/img/subscribe--light.png') 100% 0 / cover no-repeat;
  border-radius: 16px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.subscribe.blog .h4{
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
}

.caption--footer{
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #55555A;
}

.text-subscribe, .form-subscribe{
  flex: 1 1 50%;
}

.form-subscribe .footer-subscribe{
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 18px;
}

@media (max-width: 425px) {
  .subscribe__btn {
    width: 100%;
  }

  .subscribe.blog{
    gap: 1.5rem;
  }

  .subscribe__caption{
    text-align: left;
  }
}

.aside--table-of-contents, .m--table-of-contents{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
}

.button--table-of-contents, .mobile--table-of-contents{
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  background: #F5F7FC;
  border-radius: 12px;
  width: 100%;
  align-items: center;
  color: var(--title-color);
}

.button--table-of-contents:hover,
.mobile--table-of-contents:hover{
  color: var(--green) !important;
}

.button--table-of-contents:hover svg path,
.mobile--table-of-contents:hover svg path
{
  stroke: var(--green);
}


.button--table-of-contents.active svg,
.mobile--table-of-contents.active svg
{
  transform: rotate(180deg);
}

.aside--table-of-contents li,
.m--table-of-contents li{
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  padding-left: 2rem;
}

.aside--table-of-contents li:hover a,
.m--table-of-contents li:hover a{
  color: var(--green);
}

.aside--table-of-contents li::before,
.m--table-of-contents li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 1rem;
  right:0;
  background-color: var(--text-color);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.aside--table-of-contents li:hover::before,
.m--table-of-contents li:hover::before{
  background: var(--green);
}

.aside--table-of-contents li a.observe-link--active
{
  color: var(--green);
}

.aside--table-of-contents .aside-bar__item:has(> .observe-link--active)::before{
  background: var(--green);
}

@media (max-width: 991px) {
  .table-of-contents {
    display: block;
  }

  .table-of-contents .aside-banner{
    display: block;
    text-align: center;
    padding: 1.5rem;
  }

  .table-of-contents .aside-banner div.text-small{
    color: #c1c8f0;
  }

  .table-of-contents__item a {
    border-bottom: 1px dashed #ddd;
  }

  .aside-bar .table-of-contents {
    display: none;
  }
}

@media (max-width: 375px) {
  .table-of-contents .aside-banner a{
      width: 100%;
  }
}

.subscribe--blue {
  background: url('/site/templates/img/subscribe-blue.svg') 60% bottom / 18% auto no-repeat, var(--blue-dark);
}

.subscribe.subscribe--long {
  gap: clamp(var(--g11-mobile), 7vw, var(--g11-desktop));
}

.subscribe.subscribe--long .subscribe__caption, .subscribe.subscribe--long .subscribe__form {
  flex: 1 1 50%;
}

@media (max-width: 991px) {
  .subscribe {
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
  .subscribe {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .subscribe.subscribe--long {
    gap: 1rem;
  }
}

.subscribe__caption {
  margin: 0;
  max-width: 370px;
}

@media (max-width: 767px) {
  .subscribe__caption {
    text-align: center;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 425px) {
  .subscribe__btn {
    width: 100%;
  }
}

.subscribe__form {
  flex: 0 0 309px;
}

@media (max-width: 767px) {
  .subscribe__form {
    flex: none;
  }
}

/* Related */
.related {
  border-top: 1px solid var(--disabled-bg-color);
}

/* Card */
.card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

@media (any-hover: hover) {
  .card:not(.benefits__card):hover {
    box-shadow: 0px 4px 16px var(--shadow-cards-color);

    .card__info {
      border-color: transparent;
    }
  }

  .card:hover .card__title {
    color: var(--green-dark);
  }

  .card:hover .card__arrow svg path {
    fill: var(--green-dark);
  }
}

.card__image {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(62% + 1px);
  border-radius: 12px 12px 0 0;
}

.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.card__info {
  border: 1px solid var(--disabled-bg-color);
  border-top: 0;
  padding: 1rem clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  border-radius: 0 0 12px 12px;
  height: 100%;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.card__read {
  color: var(--secondary-color);
}

.card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card__arrow {
  width: 16px;
  flex: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-left: auto;
}

.card__arrow svg {
  width: 16px;
  flex: 0 0 16px;
}

.card__arrow svg path {
  fill: var(--text-color);
}

.card__bottom {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  justify-content: space-between;
}

.card__logo {
  width: 200px;
  flex: 0 0 200px;
  height: 28px;
}

.card__logo img {
  border-radius: 0;
  object-fit: contain;
  max-height: 100%;
}

/* Solutions */
.cards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cards-list--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .cards-list {
    grid-template-columns: 1fr;
  }
}

.solutions__frame {
  display: flex;
  justify-content: center;
}

.solutions__short {
  position: relative;
  width: 30%;
  padding-bottom: 53.4%;
  overflow: hidden;
  border-radius: 12px;
}

.solutions__short iframe {
  position: absolute;
  top: 0;
  left: 0%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Reviews */
.reviews {
  background-color: var(--light-bg);
}

.review-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 767px) {
  .review-cards {
    grid-template-columns: 1fr;
  }
}

/* Slider */
/* .slider.slider--testimonials {
  overflow: visible;
} */

.slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--g8-mobile), 3vw, var(--g8-desktop));
}

@media (max-width: 767px) {
  .slider__top {
    gap: 1rem;
  }
}

.slider__text {
  max-width: 642px;
}

@media (max-width: 767px) {
  .slider__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.slider__view-all {
  margin-left: auto;
}

@media (max-width: 767px) {
  .slider__view-all {
    margin: 0;
  }
}

.slider__buttons {
  display: flex;
  gap: 0.75rem;
}

.slider__btn {
  position: static;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.slider__btn.swiper-button-lock {
  display: none;
}

@media (any-hover: hover) {
  .slider__btn:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
  }

  .slider__btn:hover svg path {
    fill: var(--white);
  }
}

.slider__btn:after {
  display: none;
}

.slider__btn svg {
  width: 16px;
  flex: 0 0 16px;
}

.slider__btn svg path {
  fill: var(--text-color);
}

.slide-card {
  position: relative;
  padding-bottom: 38.6%;
  min-height: 400px;
  width: auto;
  overflow: hidden;
}

@media (any-hover: hover) {

  .slide-card:hover .slide-card__nameplate,
  .slide-card:hover .slide-card__btn {
    transform: translate3d(0, 0, 0);
  }
}

.slide-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.slide-card__image img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-card__nameplate {
  position: absolute;
  left: 1.5rem;
  bottom: 4.25rem;
  right: 1.5rem;
  border-radius: 8px;
  background-color: var(--white);
  padding: 0.75rem 1.25rem;
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translate3d(0, 2.75rem, 0);
}

.slide-card__name {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.slide-card__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;

  path {
    fill: var(--title-color);
  }
}

.slide-card__position {
  margin-top: 0.125rem;
  color: var(--secondary-color);
}

.slide-card__btn {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  border-radius: 30px;
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translate3d(0, 4rem, 0);
  font-weight: 400;
}

/* slider benefits*/
.slider--benefits .slider {
  margin: 0;
}

.benefits__card .card__info {
  border: 1px solid var(--disabled-bg-color);
  padding: clamp(1rem, 3vw, 2.5rem);
  border-radius: 12px;
  justify-content: space-between;
  gap: 0.75rem;
}

.benefits__card .card__text {
  -webkit-line-clamp: initial;
}

.benefits__card .card__text,
.benefits__card .card__title,
.benefits__card .card__number {
  z-index: 1;
}

.benefits__card .card__counter {
  margin-top: auto;
}

.benefits__card .card__number {
  margin-top: 20px;
  background-color: var(--light-bg);
  width: 40px;
  height: 40px;
  border-radius: 60px;
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 30px;
  padding: 5px 8px 5px 8px;
  text-align: center;
}

.benefits__card img {
  /* position: absolute; */
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.benefits__card--image_only .card__info {
  border: none;
}

.slider--benefits .slider__buttons {
  margin-left: auto;
}

@media (max-width: 767px) {
  .slider--benefits .swiper-slide {
    height: auto;
    align-self: stretch;
  }

  .slider--benefits .slider__cover {
    margin-top: 16px;
  }

  .slider--benefits .slider__buttons {
    margin-left: inherit;
  }
}

@media (min-width: 768px) {
  .slider--benefits .slider__container {
    display: flex;
    flex-direction: row;
  }

  .slider--benefits .slider__cover {
    flex-basis: calc(100%/2);
    margin-right: 16px;
    order: 1;
  }

  .slider--benefits .w-cover-image .slider {
    flex-basis: calc(100%/2);
    order: 2;
  }
}

@media (min-width: 992px) {
  .slider--benefits .slider__cover {
    margin-right: 24px;
  }

  .slider--benefits .slider__cover {
    flex-basis: calc(100%/3);
  }

  .slider--benefits .w-cover-image .slider {
    flex-basis: calc(100%/3*2);
  }
}

/* Popup */
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: var(--overlay-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup.popup--ratio .popup__frame {
  height: 44vh;
  width: 78vh;
}

.popup.popup--image .popup__body {
  padding: 1rem;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}

@media (max-width: 425px) {
  .popup__body {
    padding: 0;
  }
}

.popup__close {
  width: 38px;
  height: 38px;
  position: fixed;
  z-index: 30;
  right: 1rem;
  top: 1rem;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (any-hover: hover) {
  .popup__close:hover svg path {
    stroke: var(--title-color);
  }
}

.popup__close svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.popup__close svg path {
  stroke: var(--secondary-color);
}

.popup__frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 78vh;
  width: 44vh;
}

.popup__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.popup__picture {
  max-width: 90vw;
}

.popup__picture img {
  border-radius: 0;
  max-height: 90vh;
}

/* Reviews */
.review-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 12px;
  padding: clamp(var(--g9-mobile), 5vw, var(--g9-desktop));
  height: unset;
}

.custom-sliderss-padding{
  padding: 0 10px;
}

@media (any-hover: hover) {
  .review-card:hover {
    box-shadow: 0px 4px 16px var(--shadow-cards-color);
  }

  .review-card.border-1:hover {
    border: 1px solid transparent;
  }
  

  .review-card:hover .review-card__arrow svg path {
    fill: var(--green-dark);
  }
}

.review-card__title {
  padding-left: 2.25rem;
  background: url('/img/flowlu/quote.svg') left 5px / 20px auto no-repeat;
}

@media (max-width: 575px) {
  .review-card__title {
    padding-left: 1.5rem;
    background: url('/img/flowlu/quote.svg') left 5px / 16px auto no-repeat;
  }
}

.review-card__text {
  flex: 1 1 auto;
}

.review-card__more {
  color: var(--green);
}

.review-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.review-card__authors {
  margin: 0;
}

.review-card__authors .authors__avatar {
  overflow: visible;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  position: relative;
}

.review-card__authors .authors__avatar>img {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .review-card__authors {
    gap: 1rem;
  }
}

.review-card__arrow {
  flex: 0 0 9px;
}

.review-card__arrow svg {
  width: 9px;
}

.review-card__arrow svg path {
  fill: var(--text-color);
}

/* Slider-main */
.slider-main {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--white);
  z-index: 4;
}

.slider-main.grey-appearance {
  background-color: var(--light-bg);
}

.slider-main.grey-appearance .slider-main__arrow {
  border-color: var(--text-color);
}

.slider-main.grey-appearance .slider-main__arrow svg path {
  fill: var(--text-color);
}

.slider-main.grey-appearance .slider-main__text {
  color: var(--text-color);
}

@media (any-hover: hover) {
  .slider-main.grey-appearance .slider-main__arrow:hover {
    border-color: var(--green-dark);
  }

  .slider-main.grey-appearance .slider-main__arrow:hover svg path {
    fill: var(--white);
  }
}

.slider-main__slide {
  display: flex;
  padding: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
  gap: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
}

@media (max-width: 767px) {
  .slider-main__slide {
    flex-direction: column-reverse;
  }
}

@media (max-width: 575px) {
  .slider-main__slide {
    padding: 1.5rem;
    gap: 2rem;
  }
}

.slider-main__info {
  max-width: 448px;
  margin-bottom: 5rem;
}

@media (max-width: 767px) {
  .slider-main__info {
    max-width: none;
    margin-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .slider-main__info {
    margin-bottom: 0;
  }
}

.slider-main__text {
  color: var(--text-color);
}

.slider-main__buttons {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 575px) {
  .slider-main__buttons {
    gap: 1rem;
    flex-direction: column;
  }
}

.slider-main__image {
  max-width: 536px;
}

.slider-main__image.popup-link {
  cursor: zoom-in;
}

@media (max-width: 767px) {
  .slider-main__image {
    align-self: center;
  }
}

.slider-main__image img {
  border-radius: 0;
}

.slider-main-tags {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0 2rem;
}

.slider-main-tags.grey-appearance .swiper-pagination-bullet {
  color: var(--text-color) !important;
  background-color: var(--light-bg) !important;
}

.slider-main-tags.grey-appearance .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--green) !important;
}

@media (max-width: 1199px) {
  .slider-main-tags {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .slider-main-tags {
    padding: 0 1rem;
  }
}

.slider-main-tags::-webkit-scrollbar {
  display: none;
}

.slider-main-tags-list {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  position: static;
  width: min-content !important;
}

.slider-main-tags-list .swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 0;
  padding: 0.5rem 1rem;
  color: var(--secondary-color);
  background-color: var(--lighter-blue) !important;
  border-radius: 32px !important;
  font-weight: 500;
  font-size: var(--text-small) !important;
  line-height: var(--text-small-line-height) !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  white-space: nowrap;
}

.slider-main-tags-list .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--green-secondary) !important;
  color: var(--green);
}

.slider-main-tags .btn {
  white-space: nowrap;
}

.slider-main__arrows {
  position: absolute;
  bottom: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
  left: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
  z-index: 50;
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .slider-main__arrows {
    display: none;
  }
}

.slider-main__arrow {
  position: static;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  border: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (any-hover: hover) {
  .slider-main__arrow:hover {
    border-color: var(--green-dark);
    background-color: var(--green-dark);
  }

  .slider-main__arrow:hover svg path {
    fill: var(--white);
  }
}

.slider-main__arrow svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.slider-main__arrow svg path {
  fill: var(--text-color);
}

.slider-main__arrow::after {
  display: none;
}

/* Conclusion */
.conclusion {
  border-radius: 20px;
  padding: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
  background: var(--light-bg);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(3rem, 7vw, 7.375rem);
}

.conclusion.conclusion--white {
  background-color: var(--white);
}

.conclusion img {
  width: 76px;
  flex: 0 0 76px;
}

@media (max-width: 575px) {
  .conclusion {
    gap: 1rem;
    padding: 2rem 1.5rem;
    font-size: var(--text-small);
    line-height: 1.75;
    flex-direction: column-reverse;
  }

  .conclusion img {
    width: 48px;
    flex: 0 0 48px;
    align-self: flex-start;
  }
}

/* Plans & Pane */
.panes-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0 2rem;
}

@media (max-width: 1199px) {
  .panes-wrap {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .panes-wrap {
    padding: 0 1rem;
  }
}

.panes-wrap::-webkit-scrollbar {
  display: none;
}

.plans__panes {
  display: flex;
  gap: 0.75rem;
  margin: clamp(var(--g8-mobile), 3vw, var(--g8-desktop)) auto 0 auto;
  position: static;
  width: min-content !important;
}
.pane:not(.pane-cluster-item):hover, .plans__pane:not(.pane-cluster-item):hover, .pane.pane--hit:not(.pane-cluster-item):hover{
  box-shadow: 0px 4px 16px 0px rgba(122, 133, 147, 0.18);
  border-color: transparent;
}

.plans__panes.no-gap{
  gap: 0;
}


@media (max-width: 575px) {
  .plans__panes {
    flex-direction: column;
    width: 100% !important;
  }
  .plans__panes.no-gap{
    gap: clamp(1rem, 2vw, 1.25rem);
  }

}

.pane {
  padding: clamp(1.5rem, 2vw, 1.75rem);
  border-radius: 12px;
  border: 1px solid var(--disabled-bg-color);
  max-width: 225.5px;
  min-width: 225px;
}

.pane.pane_small-padding{
  padding: clamp(1.25rem, 2vw, 1.5rem);
}

.pane.pane-cluster-item{
  border-radius: 0;
  border-right: none;
  max-width: 294.75px;
  min-width: 294.75px;
}

.pane.pane-cluster-item:first-of-type{
  border-radius: 12px 0 0 12px;
  border-right: none;
}

.pane.pane-cluster-item:last-of-type{
  border-radius: 0 12px 12px 0;
  border-left: none;
  border-right: 1px solid var(--disabled-bg-color);
}

.pane.pane-cluster-item.pane--hit:last-of-type{
  border-left: 1px solid var(--green-light);
}

@media (max-width: 575px) {
  .pane {
    max-width: none;
    width: 100%;
  }

  .pane.pane-cluster-item{
    border-radius: 12px;
    border-right: 1px solid var(--disabled-bg-color);
    max-width: none;
    width: 100%;
  }
  .pane.pane-cluster-item:first-of-type{
    border-radius: 12px;
    border-right: 1px solid var(--disabled-bg-color);
  }

  .pane.pane-cluster-item:last-of-type{
    border-radius: 12px;
    border-left: 1px solid var(--disabled-bg-color);
  }
}

.pane.pane--hit {
  border-color: var(--green-light);
  border-width: 2px;
}

.pane.pane-cluster-item.pane--hit{
  border-color: var(--green-light);
  border-width: 1px;
  border-right: 1px solid var(--green-light);;
}

.pane__title {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.pane__title .label{
  position: absolute;
  top: calc(10% - clamp(35px,2vw,40px));
}

.pane.pane-cluster-item .pane__title .label{
  position: relative;
  top: 0;
}

.pane.pane-cluster-item .pane__get.description, .pane.pane-cluster-item .pane__get.description p{
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  margin: 0;
}

.price-tables__head-item .label:not(.compare-label){
  position: absolute;
  top: calc(10% + 55px);
}

@media (max-width: 575px) {
  .pane__bill {
    margin-bottom: 0.75rem;
  }
}

.pane__bill-month {
  display: none;
}

.pane__price.custom #month{
  display: none;
}

@media (max-width: 575px) {
  .pane__price {
    margin-top: 0.75rem;
  }
}

.pane__actual-price {
  font-weight: 500;
}

.pane.pane-cluster-item .pane__actual-price{
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
}

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

.pane__btn {
  width: 100%;
}

.pane__hide {
  display: none;
}

@media (max-width: 575px) {
  .pane__hide {
    display: flex;
    width: 100%;
    margin: 1.5rem 0 0 0;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
  }

  .pane__hide.pane__hide--mt-12 {
    margin-top: 0.75rem;
  }

  .pane__hide.pane__hide--open svg {
    transform: rotateZ(0);
  }

  .pane__hide svg {
    width: 16px;
    flex: 0 0 16px;
    transform: rotateZ(180deg);
  }

  .pane__hide svg path {
    fill: var(--text-color);
  }
}

.pane__list .pane__dasclaimer {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.75rem;
}

.pane__list .pane__dasclaimer.small_dasclaimer_title{
  font-size: var(--text-micro);
  line-height: var(--text-micro-line-height);
}

.pane__list .pane__dasclaimer:before {
  content: none;
}

.pane__list {
  margin-top: clamp(0.75rem, 2vw, 1.75rem);
}

.pane__list.small{
  margin-top: clamp(1.25rem, 2vw, 1.5rem); 
}

.pane__list.pane__list--mt-12 {
  margin-top: 0.75rem;
}

.pane__list.pane__list--mt-24 {
  margin-top: clamp(var(--g6-mobile), 2vw, var(--g6-desktop));
}

.pane.pane-cluster-item .pane__list{
  margin-top: clamp(0.75rem, 2vw, 1rem); 
}

.pane.pane-cluster-item .pane__list .pane__dasclaimer.small_dasclaimer_title{
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #91A2B6;
  border-bottom: 1px solid #E7EAF0;
}

@media (max-width: 575px) {
  .pane__list {
    display: none;
  }

  .pane__list.pane__list--expand {
    display: block;
  }
}

.pane__list li {
  padding-left: 21px;
}

.pane__list.cluster-list {
  margin: 1rem 0 0 0;
}

.pane__list:not(.cluster-list) li:before {
  top: 0;
  width: 9px;
  height: 16px;
  background: url('/img/flowlu/tick.svg') top left / cover no-repeat;
}

.pane__list.cluster-list li.cluster-flex-list,
.pane__list.cluster-list li.cluster-flex-link{
  padding: 0;
}


li.cluster-flex-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.cluster-list-desc p{
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  color: #55555A;
}

.cluster-flex-item.big{
  min-height: 74px;
  max-height: 74px;
}

.cluster-flex-item.small{
  min-height: 56px;
  max-height: 56px;
}

.cluster-flex-item-title{
  display: flex;
  gap: 6px;
  align-items: center;
  max-height: 18px;
  margin-bottom: 2px;
}

.cluster-flex-item-title-text{
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #303030;
}


.pane__list.cluster-list li::before{
  content: none;
}

.plans__no-card {
  display: flex;
  justify-content: center;
}

.plans__no-card span {
  background: url('/img/flowlu//no-credit.svg') 24px center / 16px 16px no-repeat;
  border-radius: 12px;
  padding: 0.75rem 1.5rem 0.75rem 3.25rem;
}

@media (max-width: 575px) {
  .plans__no-card span {
    background: url('/img/flowlu//no-credit.svg') 16px center / 16px 16px no-repeat;
    padding: 0.75rem 1.25rem 0.75rem 2.75rem;
    background-color: #F5F7FC;
  }

  .cluster-flex-item.big{
    min-height: 100%;
    max-height: none;
  }

  .cluster-flex-item.small{
    min-height: 100%;
    max-height: none;
  }

  .pane.pane-cluster-item .pane__list .pane__dasclaimer.small_dasclaimer_title{
    border: none;
    padding: 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .plans__panes {
    flex-wrap: wrap;
    flex-direction: row;
    width: initial !important;
  }

  .plans__panes .plans__pane {
    flex-basis: calc(100% / 2 - 0.75rem);
    max-width: initial;
    min-width: 225px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .plans__panes:not(.pane-cluster-pane) {
    flex-wrap: wrap;
    flex-direction: row;
    width: initial !important;
  }

  .plans__panes .plans__pane:not(.pane-cluster-item) {
    flex-basis: calc(100% / 3 - 0.75rem);
    max-width: initial;
    min-width: 225px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .plans__panes .plans__pane.pane-cluster-item {
    flex-basis: calc(100% / 4 - 0.75rem);
    max-width: initial;
    min-width: calc(100vw / 4 - 0.75rem);
  }
  .cluster-flex-item.big{
    min-height: 92px;
    max-height: 92px;
  }
}
@media (min-width: 1148px) and (max-width: 1200px){
  .pane.pane-cluster-item .pane__get.description{
    height: 72px;
  }
}
@media (min-width: 576px) and (max-width: 700px){
  .pane.pane-cluster-item .pane__get.description{
    height: 72px;
  }
}
@media (min-width: 800px) and (max-width: 1024px){
  .plans__panes .plans__pane.pane-cluster-item {
    border-radius: 12px;
    border-right: 1px solid var(--disabled-bg-color);
    flex-basis: calc(100% / 2 - 0.75rem);
    max-width: initial;
    min-width: calc(100vw / 2 - 2rem);
  }
}
@media (min-width: 576px) and (max-width: 800px){
  .plans__panes .plans__pane.pane-cluster-item {
    border-radius: 12px;
    border-right: 1px solid var(--disabled-bg-color);
    flex-basis: calc(100% / 2 - 0.75rem);
    max-width: initial;
    min-width: calc(100vw / 2 - 1.5rem);
  }
}


@media (min-width: 576px) and (max-width: 1024px){
  .plans__panes.pane-cluster-pane{
    flex-wrap: wrap;
    flex-direction: row;
    width: initial !important;
  }

  .plans__panes.no-gap{
    gap: 1rem;
  }


  .plans__panes .plans__pane.pane-cluster-item.pane--hit{
    border-right: 1px solid var(--green-light);
  }

  .pane.pane-cluster-item:last-of-type{
    border-radius: 12px;
    border-left: 1px solid var(--disabled-bg-color);
  }

}

/* price-tables */
.price-tables {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .price-tables {
    padding: 0;
  }
}

.price-tables__scroll-wrap {
  position: sticky;
  top: 60px;
  z-index: 3;
}

@media (max-width: 767px) {
  .price-tables__scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    height: 100%;
  }

  .price-tables__scroll-wrap::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
} 

.price-tables__head {
  display: grid;
  justify-content: space-between;
  /* align-items: center; */
  grid-template-columns: 25% 15% 15% 15% 15% 15%;
  background-color: var(--white);
  align-items: end;
}

.price-tables__head.grid-items-4{
  grid-template-columns: 25% 18% 18% 18% 18%;
  align-items: center;
}

@media (max-width: 1199px) {
  .price-tables__head {
    grid-template-columns: 20% 16% 16% 16% 16% 16%;
  }
}

@media (max-width: 767px) {
  .price-tables__head {
    min-width: 900px;
  }
}

.price-tables__head-item {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem 0.75rem 1rem;
}

@media (max-width: 1199px) {
  .price-tables__head-item {
    padding: 0.5rem 0.25rem 0.75rem 0.25rem;
  }
}

.price-tables__head-item.price-tables__head-item--first {
  align-items: flex-start;
  white-space: normal;
  padding: 0 1rem 0.375rem 0;
}

@media (max-width: 1199px) {
  .price-tables__head-item.price-tables__head-item--first {
    font-size: clamp(var(--text-medium-mobile), 2vw, var(--text-medium-desktop));
    line-height: var(--text-medium-line-height);
    padding: 0 1rem 0.375rem 1rem;
  }
}

.price-tables__head-item-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-direction: column-reverse;
}

.price-tables__btn {
  width: 100%;
}

/* table-feature */
.table-feature {
  transition: margin-bottom 0.3s ease;
}

.table-feature.table-feature--open {
  margin-bottom: 1.5rem;
}

.table-feature {
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .table-feature {
    margin-bottom: 0;
  }

  /* .price-tables__head{
    align-items: end;
  } */
  /* .price-tables__head-item-wrap {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-direction: column-reverse;
  } */
}

.table-feature:last-of-type {
  margin-bottom: 0;
}

.table-feature__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: var(--light-bg);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  transition: border-radius 0.3s ease;
  text-align: left;
}

@media (any-hover: hover) {
  .table-feature__btn:hover span {
    color: var(--green-dark);
  }

  .table-feature__btn:hover svg path {
    fill: var(--green-dark);
  }
}

@media (max-width: 1199px) {
  .table-feature__btn {
    padding: 1rem;
  }
}

/* @media (max-width: 991px) {
  .table-feature__btn {
    border-radius: 0;
  }
} */

.table-feature__btn.table-feature__btn--open {
  border-radius: 12px 12px 0 0;
}

/* @media (max-width: 991px) {
  .table-feature__btn.table-feature__btn--open {
    border-radius: 0;
  }
} */

.table-feature__btn.table-feature__btn--open svg {
  transform: rotateZ(0);
}

.table-feature__btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transform: rotateZ(-180deg);
  transition: transform 0.3s ease;
}

.table-feature__btn svg path {
  fill: var(--text-color);
}

.table-feature__btn.table-feature__btn--open+.table-feature__body {
  border-color: var(--disabled-bg-color);
  overflow: visible;
}

.table-feature__body {
  border: 1px solid transparent;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, border-color 0.3s ease;
}

.table-feature__body.solo{
  display: grid;
  justify-content: space-between;
  grid-template-columns: 50% 50%;
  gap: clamp(2.5rem, 3vw, 3rem);
}

.table-feature__body.solo .solo-item:first-of-type{
  padding: clamp(1rem, 2vw, 1.25rem) 0 clamp(2.5rem, 3vw, 3rem) clamp(2.5rem, 3vw, 3rem);
}

.table-feature__body.solo .solo-item:last-of-type{
padding: clamp(1rem, 2vw, 1.25rem) clamp(5.5rem, 6vw, 6rem) clamp(2.5rem, 3vw, 3rem) 0;
}

.table-feature__body.solo .table-feature__row
{
  grid-template-columns: 60% 40%;
}

.table-feature__body.solo .table-feature__row .table-feature__cell{
    padding: 1rem 0;
}

.table-feature__body.solo .table-feature__row .table-feature__cell:first-child{
    justify-content: start;
}

.table-feature__body.solo .table-feature__row .table-feature__cell:last-child
{
    justify-content: end;
}

.table-feature__row.grid-items-4{
  grid-template-columns: 25% 18% 18% 18% 18%;
}

@media (max-width: 767px) {
  .table-feature__body {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .table-feature__body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .table-feature__btn.table-feature__btn--open+.table-feature__body {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
}

.table-feature__row {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 25% 15% 15% 15% 15% 15%;
}

.table-feature__row:not(:last-of-type) {
  border-bottom: 1px solid var(--disabled-bg-color);
}

.table-feature__body.solo .table-feature__row{
  border-bottom: 1px solid var(--disabled-bg-color);
}

@media (max-width: 1199px) {
  .table-feature__cell.table-feature__cell--caption {
    display: -webkit-box !important;
    -webkit-box-orient: unset !important;
    word-break: break-word !important;
  }
  .table-feature__row {
    grid-template-columns: 20% 16% 16% 16% 16% 16%;
  }
}

@media (max-width: 767px) {
  .table-feature__body.solo .table-feature__row .table-feature__cell {
    padding: 0.75rem 1rem;
  }
  .table-feature__row {
    min-width: 900px;
  }
.table-feature__body.solo .solo-item:last-of-type .table-feature__row:last-of-type {
    border-bottom: none;
  }

  .table-feature__body.solo .table-feature__row:not(:last-of-type) {
    border-bottom: 1px solid var(--disabled-bg-color);
  }

  .table-feature__body.solo{
    grid-template-columns: 100%;
    gap: 0;
  }


  .table-feature__body.solo .table-feature__row{
    min-width: 100%;
  }
  
}

.table-feature__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
}

@media (max-width: 1199px) {
  .table-feature__cell {
    padding: 0.75rem 1rem;
  }
}

.table-feature__cell.table-feature__cell--caption {
  /* justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.125rem 0.5rem; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.table-feature__cell.table-feature__cell--caption .font-green {
  display: inline-block;
  top: 0;
}

.table-feature__icon--true {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url('/img/flowlu/true_dark.svg') center / cover no-repeat;
}

.table-feature__icon--false {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url('/img/flowlu/false.svg') center / cover no-repeat;
}

/* Case */
.case {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.case.case--grey {
  background-color: var(--light-bg);
}

.case.case--block {
  padding: clamp(var(--g9-mobile), 5vw, var(--g9-desktop));
  border-radius: 20px;
}

.compare--list{
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.compare--list.opened--compare{
  overflow: visible;
  max-height: 100%;
}

.compare--button svg{
  transform: rotate(0deg);
}

.compare--button.closed svg{
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .case.case--block {
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
  .case {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.case__stats {
  margin-top: clamp(1rem, 2vw, 1.75rem);
  columns: 4 100px;
  column-gap: clamp(2rem, 3vw, 3rem);
  column-rule: 1px solid var(--disabled-bg-color);
}

@media (max-width: 991px) {
  .case__stats {
    columns: 2 100px;
  }
}

@media (max-width: 767px) {
  .case__stats {
    columns: 4 100px;
  }
}

@media (max-width: 575px) {
  .case__stats {
    columns: 2 100px;
  }
}

.case__stat-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.case__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 575px) {
  .case__bottom {
    flex-direction: column;
  }
}

.case__logo {
  position: relative;
  height: 28px;
  width: 50%;
}

@media (max-width: 575px) {
  .case__logo {
    width: 100%;
  }
}

.case__logo img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 575px) {
  .case__link {
    align-self: flex-start;
  }
}

.case__image {
  flex: 0 0 32.32%;
}

.case__image img {
  border-radius: 0;
}

/* Pagination MarkupPagerNav */
.MarkupPagerNav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.125rem;
  margin: clamp(var(--g9-mobile), 5vw, var(--g9-desktop)) 0 0 0;
}

@media (max-width: 575px) {
  .MarkupPagerNav {
    gap: 0;
  }
}

.MarkupPagerNav li {
  border-radius: 8px;
  overflow: hidden;
}

@media (any-hover: hover) {
  .MarkupPagerNav li:hover:not(.MarkupPagerNavOn) {
    background-color: var(--breadcrumbs-hover);
  }

  .MarkupPagerNav li:hover a {
    color: var(--text-color);
  }

  .MarkupPagerNav .MarkupPagerNavOn:hover a {
    color: var(--white);
  }

  .MarkupPagerNav li.MarkupPagerNavSeparator:hover {
    background-color: transparent;
  }
}

.MarkupPagerNav li::before {
  display: none;
}

.MarkupPagerNav li:nth-of-type(n) {
  margin: 0;
  padding: 0;
}

.MarkupPagerNav li a {
  color: var(--text-color);
  font-weight: 500;
  font-size: var(--text-regular);
  line-height: var(--text-regular-line-height);
  padding: 0.75rem 1.25rem;
  height: 48px;
  width: 48px;
  position: relative;
  display: block;
}

.MarkupPagerNav li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
  .MarkupPagerNav li a {
    padding: 0.25rem 0.75rem;
    min-height: 34px;
    min-width: 34px;
  }
}

.MarkupPagerNavOn {
  background-color: var(--green);
}

.MarkupPagerNav .MarkupPagerNavOn a {
  color: var(--white);
}

.MarkupPagerNavPrevious span,
.MarkupPagerNavNext span {
  display: none;
}

.MarkupPagerNavNext {
  background: url('/img/flowlu/pagination-next-arrow.svg') center / 16px 16px no-repeat;
}

.MarkupPagerNavPrevious {
  background: url('/img/flowlu/pagination-prev-arrow.svg') center / 16px 16px no-repeat;
}

/* Big-picture */

.big-picture__row {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 767px) {
  .big-picture__row {
    flex-direction: column;
  }
}

.big-picture__col {
  flex: 1 1 50%;
}

.big-picture__col>ul {
  margin: 0;
}

.big-picture__col>ul li {
  list-style: none;
  padding: 0;
}

.big-picture__col>ul li:before {
  display: none;
}

.big-picture__inner-item {
  display: flex;
  gap: 1rem;
}

.big-picture__inner-item:not(:last-of-type) {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.big-picture__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.big-picture__icon svg {
  width: 24px;
}

.big-picture__icon svg path {
  fill: var(--title-color);
}

.big-picture__image {
  display: inline-block;
}

.big-picture__image.popup-link {
  cursor: zoom-in;
}

.big-picture__image.border-pic img {
  border: none;
  box-shadow: 0 0 0 1px #E7EAF0;
}

.big-picture__image.video{
  border-radius: clamp(12px, 2vw, 16px);
  border: 1px solid var(--disabled-bg-color);
  overflow: visible;
  transform: translateZ(0);
}

.big-picture__image video{
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: top;
  border-radius: clamp(12px, 2vw, 16px);
}
.big-picture__subtitle {
  color: var(--title-color);
}

/* rep-block */
.rep-block__item {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.rep-block__item.rep-block__item--transparent-image .rep-block__image {
  /* flex: 0 0 54.76%; */
  flex: 0 0 fit-content;
  max-width: 644px;
  max-height: 466px;
}

.rep-block__item.rep-block__item--transparent-image .rep-block__image img {
  border-radius: 0;
  border: 0;
}

@media (max-width: 1280px) {
  .rep-block__item.rep-block__item--transparent-image .rep-block__image {
    flex: 0 0 50%;
  }
}

.rep-block__item:not(:last-of-type) {
  margin-bottom: clamp(var(--g11-mobile), 8vw, var(--g11-desktop));
}

.rep-block__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .rep-block__item {
    flex-direction: column;
  }

  .rep-block__item:nth-of-type(even) {
    flex-direction: column;
  }
}

.rep-block__image {
  flex: 0 0 63.6%;
  display: inline-block;
  width: 100%;
}

.rep-block__image.popup-link {
  cursor: zoom-in;
}

.rep-block__image img {
  border: 1px solid var(--disabled-bg-color);
  width: 100%;
}

.rep-block__text ul {
  margin: 0;
}

/* address-cards */
.address-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.address-cards__item {
  flex: 1 1 33.333%;
  padding: clamp(var(--g8-mobile), 3vw, var(--g8-desktop));
  border-radius: 12px;
  border: 1px solid var(--border-color-on-blue);
  position: relative;
  min-width: 250px;
}

.address-cards__icon {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  display: inline-block;
  width: 32px;
  height: 32px;
}

.address-cards__title {
  color: var(--blue-light);
  padding-right: 2rem;
}

.address-cards__link {
  color: var(--white);
}

/* banner-list */
.banner-list {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 991px) {
  .banner-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.banner-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--blue-dark);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem) 0 clamp(1rem, 2vw, 2rem);
}

@media (max-width: 991px) {
  .banner-list__item {
    max-width: 500px;
  }
}

.banner-list__btn {
  margin-bottom: auto;
}

.banner-list__img {
  border-radius: 0;
  display: block;
}

/* get */
.get {
  display: flex;
  gap: 3rem;
}

@media (max-width: 767px) {
  .get {
    flex-direction: column;
    gap: 2rem;
  }
}

.get__col:first-of-type {
  max-width: 350px;
  min-width: 280px;
}

.get__col:last-of-type {
  max-width: 778px;
}

.get__sticky-block {
  position: sticky;
  top: 90px;
}

.cards-get {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 991px) {
  .cards-get {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cards-get {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .cards-get {
    grid-template-columns: 1fr;
  }
}

.cards-get__item {
  background-color: var(--light-bg);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 270px;
}

@media (max-width: 991px) {
  .cards-get__item {
    min-height: 220px;
  }
}

@media (max-width: 575px) {
  .cards-get__item {
    min-height: auto;
  }
}

.cards-get__icon {
  margin-top: auto;
}

.cards-get__icon img {
  border-radius: 0;
}

/* integration */
.integration {
  display: grid;
  grid-template-columns: minmax(220px, 276px) 1fr;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .integration {
    grid-template-columns: 1fr;
  }
}

.integration__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

.integration__link.observe-link--active {
  color: var(--green);
}

@media (max-width: 991px) {
  .integration__link.observe-link--active {
    color: inherit;
  }
}

.integration__panel:not(:last-of-type) {
  margin-bottom: clamp(var(--g9-mobile), 5vw, var(--g9-desktop));
}

/* hollow-cards */
.hollow-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hollow-cards__item {
  padding: 1.5rem clamp(2rem, 3vw, 3rem);
  border-radius: 12px;
  border: 1px solid var(--border-color-on-blue);
}

.hollow-cards__title {
  font-weight: 600;
  color: var(--green-light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
}

/* breadcrumbs */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs.breadcrumbs--padding-top {
  padding-top: clamp(5rem, 10vw, 5.5rem);
}

.breadcrumbs__link {
  display: flex;
  align-items: center;
}

.breadcrumbs__link:not(:last-child):after {
  content: '';
  background: url('/img/flowlu/breadcrumbs.svg') center / cover no-repeat;
  width: 4px;
  height: 6px;
  display: inline-block;
  margin: 0 0.625rem;
}

@media (min-width: 768px) and (max-width: 991px){
  .blog-aside .blog-aside__text{
    word-break: break-all;
  }
}

/* blog-aside */
@media (min-width: 768px) {
  .blog-aside {
    flex: 0 0 23.4%;
  }
}

.blog-aside__icon {
  max-width: 150px;
  display: inline-block;
}

.blog-aside__icon img {
  border-radius: 0;
}

.blog-aside__feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (any-hover: hover) {
  .blog-aside__feature-item:hover .blog-aside__feature-text {
    color: var(--green-dark);
  }
}

.blog-aside__feature-item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.blog-aside__feature-icon {
  width: 24px;
  flex: 0 0 24px;
}

.blog-aside__feature-icon img {
  border-radius: 0;
}

.case-studies-wrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
}

@media (max-width: 768px) {
  .case-studies-wrapper {
    flex-direction: column;
  }
}

/* answer */
.answer {
  position: fixed;
  z-index: 300;
  max-width: max-content;
  width: 100%;
  top: 58px;
  left: 50%;
  transform: translate3d(-50%, -300px, 0);
  transition: transform 0.5s cubic-bezier(.36, 1.71, .47, 1.05);
  margin: 0 1rem;
  box-shadow: 0px 12px 12px var(--shadow-cards-color);
  border-radius: 8px;
  overflow: hidden;
}

.answer__wrap {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.answer.answer--active {
  transform: translate3d(-50%, 50px, 0);
}

.answer--clipboard .answer__wrap,
.answer--success .answer__wrap {
  background-color: var(--success);
}

.answer--fail .answer__wrap {
  background-color: var(--fail);
}

.answer__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

/* alphabet */
.alphabet {
  background-color: var(--dark-bg);
  color: var(--white);
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 64px;
  scroll-behavior: smooth;
}

.alphabet::-webkit-scrollbar {
  width: 0;
}

.alphabet__list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1208px;
  min-width: 1170px;
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1.5rem) 0;
}

.alphabet__link {
  text-transform: uppercase;
  background-color: var(--lighter-blue);
  color: var(--secondary-color);
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alphabet__link.alphabet__link--active {
  background-color: var(--green);
  color: var(--white);
}

.alphabet__link:first-of-type {
  margin-left: 1rem;
}

.alphabet__link:last-of-type {
  margin-right: 1rem;
}

@media (any-hover: hover) {
  .alphabet__list .alphabet__link:hover {
    color: var(--white);
    background-color: var(--green-dark);
  }
}

/* glossary-block */
.glossary-block:not(:first-of-type) {
  margin-top: clamp(var(--g10-mobile), 6vw, var(--g10-desktop));
}

.glossary-block__letter {
  color: var(--disabled-bg-color);
}

.glossary-block__link {
  display: block;
}

@media (any-hover: hover) {
  .glossary-block__link:hover .glossary-block__title {
    color: var(--green-dark);
  }

  .glossary-block__link:hover .glossary-block__title svg path {
    fill: var(--green-dark);
  }
}

.glossary-block__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.glossary-block__title svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.glossary-block__title svg path {
  fill: var(--secondary-color);
}

/* guides */
.guides {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 991px) {
  .guides {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .guides {
    grid-template-columns: 1fr;
  }
}

.guides__item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.25rem);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 2rem);
  border: 1px solid var(--disabled-bg-color);
}

@media (any-hover: hover) {
  .guides__item:hover {
    box-shadow: 0px 4px 16px var(--shadow-cards-color);
    background-color: var(--white);
  }

  .guides__item:hover .giudes__title {
    color: var(--green-dark);
  }

  .guides__item:hover .giudes__icon svg path {
    fill: var(--green-dark);
  }
}

.giudes__image {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
}

@media (max-width: 991px) {
  .giudes__image {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }
}

@media (max-width: 767px) {
  .giudes__image {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }
}

.giudes__icon {
  width: 9px;
  flex: 0 0 9px;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.giudes__icon svg path {
  fill: var(--text-color);
}

/* sticky-block */
.aside-bar {
  position: sticky;
  top: 90px;
}

@media (min-width: 992px) {
  .aside-bar__list .aside-bar__item .observe-link--active {
    color: var(--green);
  }
}

.aside-bar__card {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  border: 1px solid var(--disabled-bg-color);
}

@media (max-width: 991px) {
  .aside-bar__card .btn {
    width: 100%;
  }
}

.table-of-contents {
  display: none;
}

.aside-bar .table-of-contents {
  display: block;
}

@media (max-width: 991px) {
  .table-of-contents {
    display: block;
  }

  .table-of-contents__item a {
    border-bottom: 1px dashed #ddd;
  }

  .aside-bar .table-of-contents {
    display: none;
  }
}

/* author */
.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author__avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

/* other-reviews */
.other-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 991px) {
  .other-reviews {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .other-reviews {
    grid-template-columns: 1fr;
  }
}

.other-reviews__item {
  border: 1px solid var(--disabled-bg-color);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

@media (any-hover: hover) {
  .other-reviews__item:hover {
    box-shadow: 0px 4px 16px var(--shadow-cards-color);
    border-color: transparent;
  }

  .other-reviews__item:hover .other-reviews__arrow svg path {
    fill: var(--green-dark);
  }
}

.other-reviews__title {
  flex: 1 1 auto;
}

.other-reviews__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.other-reviews__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.other-reviews__avatar {
  position: relative;
  flex: 0 0 68px;
}

.other-reviews__avatar>img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.other-reviews__review-website {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 16px var(--shadow-review-color);
}

.other-reviews__review-website img {
  flex: 0 0 20px;
}

.other-reviews__arrow {
  width: 9px;
  flex: 0 0 9px;
  align-self: flex-end;
}

.other-reviews__arrow svg {
  fill: var(--text-color);
}

/* articles-block */
.articles-block__link {
  white-space: nowrap;
}

@media (any-hover: hover) {
  .articles-block__link:hover svg path {
    fill: var(--green-dark);
  }
}

.articles-block__link svg {
  width: 7px;
}

.articles-block__link svg path {
  fill: var(--green);
}

@media (any-hover: hover) {
  .articles-block__item:hover .articles-block__caption {
    color: var(--green-dark);
  }
}

.articles-block__image {
  flex: 0 0 104px;
  min-height: 65px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.articles-block__image img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.articles-block__category {
  color: var(--green);
}

/* rating stars*/
.small-rating {
  .rating__stars {
    div {
      width: 12px;
      height: 12px;
      margin-bottom: 2px;
      background-size: 12px;

      &.star--half {
        background-position: 0 -12px;
      }

      &.star--empty {
        background-position: 0 -24px;
      }
    }
  }
}

.rating {
  display: flex;
  flex-direction: row;
  gap: 8px;
  color: var(--title-color);
  font-weight: 500;
  justify-content: center;
}

footer .rating{
  color: var(--white);
}

@media (max-width: 349px) {
  .rating {
    flex-direction: column;
    align-items: center;
  }
}

.rating__stars {
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: center;
}

.rating .votes {
  color: var(--secondary-color);
  font-weight: 400;
}

.rating__stars>div {
  width: 16px;
  height: 16px;
  background-image: url("../img/stars.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  overflow: hidden;
  margin-bottom: 4px;
}

.rating__stars>div.star--half {
  background-position: 0 -16px;
}

.rating__stars>div.star--empty {
  background-position: 0 -32px;
}

.rating__footer {
  margin-top: 2rem;
}

/* scroll-top */
.scroll-top {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 90px;
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  background-color: var(--white);
  box-shadow: 0px 4px 16px 0px var(--shadow-cards-color);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

  path {
    fill: var(--title-color);
  }
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

@media (any-hover: hover) {
  .scroll-top:hover {
    background-color: var(--green-dark);

    path {
      fill: var(--white);
    }
  }
}

/* slider-tabs */
.slider-tabs {
  display: flex;
  gap: 4px;
}

.slider-tabs__item {
  counter-increment: item;
  flex: 0 0 72px;
  border: 1px solid var(--light-bg);
  transition:
    flex 0.3s ease,
    border-color 0.3s ease;
}

.slider-tabs__item._active {
  flex: 1 1 100%;
  border-color: var(--disabled-bg-color);

  .slider-tabs__btn {
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      background-color 0.3s ease;
  }

  .slider-tabs__wrap {
    opacity: 1;
    visibility: visible;
  }
}

.slider-tabs__btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 3vw, 40px) 16px;
  background-color: var(--light-bg);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease 0.3s,
    visibility 0.3s ease 0.3s,
    background-color 0.3s ease;
}

@media (any-hover: hover) {
  .slider-tabs__item:not(._active):hover {
    border-color: var(--disabled-bg-color);
  }

  .slider-tabs__item:not(._active):hover .slider-tabs__btn {
    background-color: var(--disabled-bg-color);
  }
}

.slider-tabs__btn:before {
  content: counter(item);
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  font-size: clamp(var(--text-medium-mobile), 2vw, var(--text-medium-desktop));
  background-color: var(--green);
  color: var(--white);
  display: grid;
  place-content: center;
  border-radius: 50%;
  margin-bottom: clamp(16px, 3vw, 40px);
}

.slider-tabs__btn span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.slider-tabs__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.slider-tabs__info:before {
  content: counter(item);
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  font-size: clamp(var(--text-medium-mobile), 2vw, var(--text-medium-desktop));
  background-color: var(--light-bg);
  color: var(--secondary-color);
  display: grid;
  place-content: center;
  border-radius: 50%;
  margin-bottom: clamp(16px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.05s ease,
    visibility 0.05s ease;
}

@media (min-width: 768px) {
  .slider-tabs__scrollable {
    max-height: 340px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.05s ease,
      visibility 0.05s ease;
  }

  .slider-tabs__scrollable::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .slider-tabs__scrollable::-webkit-scrollbar-thumb {
    background: var(--disabled-bg-color);
    border-radius: 100vw;
  }

  .slider-tabs__scrollable::-webkit-scrollbar-track {
    background: transparent;
  }

  .slider-tabs__item._active .slider-tabs__scrollable,
  .slider-tabs__item._active .slider-tabs__info:before {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.3s ease 0.3s,
      visibility 0.3s ease 0.3s;
  }

  .slider-tabs__btn span {
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
  }
}

@supports not selector(::-webkit-scrollbar) {
  @media (min-width: 768px) {
    .slider-tabs__scrollable {
      scrollbar-color: var(--disabled-bg-color) transparent;
      scrollbar-width: thin;
    }
  }
}

@media (max-width: 767px) {
  .slider-tabs {
    display: grid;

    .slider-tabs__item {
      overflow: hidden;
      display: grid;
      grid-template-rows: 64px;
    }
  }

  .slider-tabs__item._active {
    grid-template-rows: 1fr;
  }

  button.slider-tabs__btn {
    flex-direction: row;
    justify-content: start;
    text-align: left;
    gap: 16px;
    height: 64px;
  }

  .slider-tabs__btn:before {
    margin-bottom: 0;
  }

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

  .slider-tabs__info:before {
    opacity: 1;
    visibility: visible;
  }

  .slider-tabs__image {
    aspect-ratio: 340 / 192;

    img {
      border-radius: 0 0 12px 12px;
    }
  }
}

/* tips */
.tips {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
}

.tips__image {
  aspect-ratio: 678 / 381;
}

@media (min-width: 768px) {
  .tips__list {
    flex: 0 0 clamp(350px, 45vw, 450px);
  }
}

@media (max-width: 767px) {
  .tips {
    flex-direction: column;
  }
}

/* tip */
.tip {
  counter-increment: tip;
}

.tip._active {
  .tip__wrap {
    grid-template-rows: 1fr;
  }

  .tip__btn {
    padding-bottom: 0;
    color: var(--green);

    svg {
      transform: rotateX(180deg);

      path {
        fill: var(--green);
      }
    }
  }

  .tip__btn::before {
    color: var(--white);
    background-color: var(--green);
  }
}

.tip:not(:first-of-type) .tip__btn {
  padding-top: clamp(16px, 2vw, 20px);
}

.tip__btn {
  will-change: padding-bottom;
  transition:
    padding-bottom .3s ease,
    color .3s ease;
  padding-bottom: clamp(16px, 2vw, 20px);
}

@media (any-hover: hover) {
  .tip__btn:hover {
    color: var(--green-dark);

    path {
      fill: var(--green-dark);
    }
  }
}

.tip__btn::before {
  content: counter(tip);
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background-color: var(--light-bg);
  color: var(--text-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-weight: 500;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.tip__btn span {
  position: relative;
  top: 4px;
}

.tip__btn svg {
  width: 12px;
  flex: 0 0 12px;
  height: 8px;
  position: relative;
  top: 12px;
  transition: transform 0.3s ease;
}

.tip__btn path {
  fill: var(--text-color);
  transition: fill 0.3s ease;
}

.tip__wrap {
  padding: 0 28px 0 44px;
  display: grid;
  transition: grid-template-rows .3s ease;
  overflow: hidden;
  grid-template-rows: 0fr;
}

/* page-nav */
.page-nav {

  svg {
    position: relative;
    top: 2px;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;

    path {
      fill: var(--title-color);
    }
  }
}

/* filter */
.filter__selected {
  display: none;
}

.filter__options {
  margin-top: 16px;
}

.filter__wrap {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
}

.filter__link--active {
  color: var(--green);

  span {
    color: var(--green);
  }
}

@media (any-hover: hover) {
  .filter__link:hover span {
    color: var(--green-dark);
  }
}

@media (max-width: 991px) {
  .filter {
    position: relative;
  }

  .filter._open {
    .filter__options {
      grid-template-rows: 1fr;
    }

    .filter__wrap {
      padding: 8px;
      box-shadow: 0px 4px 16px 0px var(--shadow-cards-color);
    }
  }

  .filter__selected {
    display: flex;

    span {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }
  }

  .filter__icon {
    width: 11px;
    flex: 0 0 11px;
    transition: transform 0.3s ease;
  }

  .filter__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition:
      grid-template-rows 0.3s ease;
  }

  .filter__wrap {
    align-items: stretch;
    gap: 0;
    padding: 0 8px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0px 4px 16px 0px transparent;
    will-change: padding;
    transition:
      padding 0.3s ease,
      box-shadow 0.3s ease;
  }

  .filter__link {
    padding: 8px 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .filter__link--active {
    background: url('/site/templates/img/template-filter-tick.svg') calc(100% - 16px) 50% no-repeat, var(--light-bg);
    border-radius: 8px;
    padding-right: 32px;

    span {
      color: var(--title-color);
    }

    span.secondary-color {
      color: var(--secondary-color);
    }

    .filter__icon {
      transform: rotateZ(180deg);
    }
  }
}

/* template-slider */
.template-slider .swiper-slide {
  aspect-ratio: 712 / 443;
}

/* thumb-slider */
.thumb-slider .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 0.3s ease;
}

.thumb-slider .swiper-slide-thumb-active::before {
  border-color: var(--green);
}

.fancybox-image {
  border-radius: 0;
}

.play-video-icon {
  --size: 68px;
  --darken-rate: 40%;

  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: color-mix(in oklab, var(--title-color) var(--darken-rate), transparent);
  transition: background-color 0.3s ease;

  svg {
    position: relative;
    left: 2px;
  }
}

.play-video-icon--32 {
  --size: 32px;
}

@media (any-hover: hover) {
  .swiper-slide:hover .play-video-icon {
    --darken-rate: 60%;
  }

  .thumb-slider .swiper-slide:hover::before {
    border-color: var(--green-dark);
  }
}

.aside-banner {
  background: url('/site/templates/img/aside-banner.jpg') center / cover no-repeat;
}

@media (max-width: 991px) {
  .aside-banner {
    display: none;
  }
}


.blog-banner {
  background: url('/site/templates/img/blog-banner.jpg') center / cover no-repeat;
}

.content>*:first-child {
  margin-top: 0;
}

/* social-sprite */
.social-sprite {
  --dimensions: 16px;
  --counter: 0;
  --step: calc(var(--dimensions) * -1.75);

  width: var(--dimensions);
  height: var(--dimensions);
  flex: 0 0 var(--dimensions);
  background: url('/site/templates/img/socials.svg') calc(var(--counter) * var(--step)) 0 / auto var(--dimensions) no-repeat;
}

.social-sprite--linkedin {
  --counter: 0;
}

.social-sprite--facebook {
  --counter: 1;
}

.social-sprite--x {
  --counter: 2;
}

.social-sprite--youtube {
  --counter: 3;
}

.social-sprite--instagram {
  --counter: 4;
}

.social-sprite--whatsapp {
  --counter: 5;
}

.social-sprite--viber {
  --counter: 6;
}

.social-sprite--telegram {
  --counter: 7;
}

.social-sprite--skype {
  --counter: 8;
}

.social-sprite--tiktok {
  --counter: 9;
}

.social-sprite--reddit {
  --counter: 10;
}

.social-sprite--snapchat {
  --counter: 11;
}

.social-sprite--wechat {
  --counter: 12;
}

.social-sprite--discord {
  --counter: 13;
}

.social-sprite--facebook-messenger {
  --counter: 14;
}

/* hydro-tab */
.hydro-tab-pane {
  display: none;

  &._active {
    display: block;
  }
}


/* main-thumb-slider */
.main-thumb-slider {

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 170px;
    z-index: 2;
    pointer-events: none;
  }

  &::before {
    left: 0;
    top: 20px;
    background: linear-gradient(180deg, #f0f7f600, rgba(231, 234, 240, 0) 38.72%),
    linear-gradient(55deg, #f7fafc 12%, #f0f7f600 38.72%);
  }

  &::after {
    right: 0;
    top: 30px;
    background-color: #FE7A50;
    background: linear-gradient(180deg, #f0f7f600, rgba(231, 234, 240, 0) 38.72%),
    linear-gradient(330deg, #eef1ff 20%, #f0f7f600 35%);
  }


  .swiper-slide {
    transition: color 0.3s ease;
    width: auto;

    .icon {
      transition: background-color 0.3s ease;
    }

    .swiper-name{
      font-size: 0.875rem;
    }

    .main-thumb-slider__mask {
      transition: background-color 0.3s ease;
      background-color: var(--secondary-color);
      width: 24px;
      height: 24px;
    }

    &.swiper-slide-thumb-active {
      color: var(--green);

      .icon {
        background-color: var(--green-secondary);
      }

      .main-thumb-slider__mask {
        background-color: var(--green);
      }
    }

    @media (any-hover: hover) {
      &:hover {
        color: var(--green);
      }
      &:hover .main-thumb-slider__mask{
        background-color: var(--green);
      }
    }
  }
}

/* filter-form */
.filter-form {
  &._waiting {
    pointer-events: none;
  }
}

.filter-form__reset[hidden] {
  display: none;
}

@media (max-width: 575px) {
  .filter-form__reset {
    align-self: start;
    margin-top: 8px;
  }
}

/* filter-item */
.filter-item {
  &._position-right {
    .filter-item__body {
      right: 0;
    }
  }

  &._open {
    .filter-item__btn {
      svg {
        transform: scaleY(-1);
      }
    }

    .filter-item__body {
      pointer-events: all;
      grid-template-rows: 1fr;
      padding-block: clamp(12px, 2vw, 16px);
    }

    .filter-item__shrinker {
      padding-block: 4px;
    }
  }

  &._chosen {
    .filter-item__top {
      background-color: var(--green);
      border-color: var(--green);

      @media (any-hover: hover) {
        &:hover {
          background-color: var(--green-dark);
          border-color: var(--green-dark);
        }
      }
    }

    .filter-item__btn {
      color: var(--white);
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;

      svg {
        stroke: var(--white);
      }
    }
  }
}

@media (max-width: 575px) {
  .filter-item {
    width: 100%;
  }
}

.filter-item__top {
  transition:
    border-color var(--animation-duration) ease,
    background-color var(--animation-duration) ease;

  @media (any-hover: hover) {
    &:hover {
      border-color: var(--text-color);
    }
  }
}

.filter-item__btn {
  padding: 7px 10px;
  border-radius: inherit;
  transition: color var(--animation-duration) ease;

  svg {
    stroke: var(--text-color);
    transition:
      stroke var(--animation-duration) ease,
      transform var(--animation-duration) ease;
  }

  &:has(.filter-item__count:empty)+.filter-item__reset {
    display: none;
  }
}

.filter-item__reset {
  border-left: 1px solid color-mix(in oklab, var(--disabled-bg-color) 24%, transparent);
  padding-inline: 10px;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.filter-item__body {
  top: calc(100% + 4px);
  width: clamp(280px, 30vw, 300px);
  padding: 0 clamp(6px, 2vw, 8px) 0 clamp(12px, 2vw, 16px);
  transition:
    grid-template-rows var(--animation-duration) ease,
    padding-block var(--animation-duration) ease;
  display: grid;
  grid-template-rows: 0fr;
  pointer-events: none;
}

@media (max-width: 575px) {
  .filter-item__body {
    width: 100%;
  }
}

.filter-item__shrinker {
  max-height: 300px;
  padding-right: clamp(6px, 2vw, 8px);
  padding-block: 0;
  transition: padding-block var(--animation-duration) ease;
}

/* checkbox */
.check {
  --size: 24px;
  cursor: pointer;
  position: relative;
  margin-left: 4px;
}

.check--medium {
  --size: 26px;
}

.check--large {
  --size: 28px;
}

.check:has(:disabled) {
  cursor: not-allowed;
}

.check:has(:checked)::before {
  background-color: var(--green);
  border-color: var(--green);
}

.check:has(:checked)::after {
  opacity: 1;
}

.check:has(:focus-visible)::before {
  outline: var(--outline);
}

.check:has(:disabled)::before {
  background-color: var(--light-bg);
  border-color: var(--light-bg);
}

.check:has(:disabled) .check__text {
  color: var(--secondary-color);
}

@media (any-hover: hover) {
  .check:not(:has(:disabled, :checked)):hover:before {
    border-color: var(--secondary-color);
  }

  .check:has(:checked):not(:has(:disabled)):hover:before {
    background-color: var(--input-hover);
    border-color: var(--input-hover);
  }
}

.card__text.webkit-line-clamp-unset{
  -webkit-line-clamp: unset;
}

.check::before {
  content: '';
  width: var(--size);
  flex: 0 0 var(--size);
  aspect-ratio: 1;
  border-radius: 17%;
  background-color: var(--white);
  border: 1px solid var(--disabled-bg-color);
  transition:
    background-color var(--animation-duration) ease,
    border-color var(--animation-duration) ease;
}

.check::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  translate: 50% 50%;
  height: calc(var(--size) / 2);
  width: calc(var(--size) / 2);
  background: url('/site/templates/img/check.svg') center / cover no-repeat;
  opacity: 0;
  transition: opacity var(--animation-duration) ease;
}

.check__box {
  appearance: none;
  position: absolute;
}

/* experts */
.experts-content {
  &._loading {
    aspect-ratio: 2 / 1;
    overflow: hidden;

    .spinner {
      opacity: 1;
      visibility: visible;
    }
  }
}

.experts-list:has(.expert) {
  border: 1px solid var(--disabled-bg-color);
}

.expert {
  gap: clamp(48px, 6vw, 80px);

  &:not(:last-of-type) {
    border-bottom: 1px solid var(--disabled-bg-color);
  }
}

.expert__info {
  gap: clamp(16px, 3vw, 32px);
}

.expert__right {
  max-width: 160px;
}

@media (max-width: 767px) {
  .expert {
    gap: 16px;
  }

  .expert {
    .expert__right {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      max-width: none;
    }

    .btn {
      width: fit-content;
    }
  }
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

.partnership {
  --accent-color: transparent;

  background-color: color-mix(in oklab, var(--accent-color) 12%, transparent);
  gap: clamp(20px, 5vw, 80px);
}

.partnership--referral {
  --accent-color: #5278FF;
}

.partnership--partner {
  --accent-color: #FE7A50;
}

.partnership.dark_bg {
  background: url('/site/templates/img/bg_solo.jpg') 0 100% / cover no-repeat;
  color: var(--white);
}

.partnership.dark_bg .partnership__info .h3{
  color: var(--white);
}

.partnership-block-title-mt{
  margin-top: clamp(var(--g3), 2vw, var(--g4));
}

.partnership-mt {
  margin-top: clamp(var(--g6-mobile), 3vw, var(--g7-desktop));
}

.partnership__list {
  li {
    padding-left: 20px;

    &:not(:last-of-type) {
      margin-bottom: 0;
    }

    &:before {
      top: 5px;
      width: 10px;
      height: 10px;
      mask-image: url("/site/img/flowlu/tick.svg");
      mask-repeat: no-repeat;
      mask-size: 10px 10px;
      mask-position: center;
      background-color: var(--accent-color);
    }
  }
}

.partnership.dark_bg .partnership__list{
  li {
    &:before {
        background-color: var(--white);
      }
  }
}

.partnership__board {
  min-width: 180px;
}

.partnership__pane {
  background-color: var(--white);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(0.75rem, 2vw, 1rem) clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
}

@media (max-width: 575px) {
  .partnership__discount {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-top: 8px;
  }

  .partnership__number {
    line-height: 1;
  }
}

.chip__checkbox {
  appearance: none;
  position: absolute;
  inset: 0;

  &:checked+.chip__button {
    background-color: var(--green-secondary);
    color: var(--green);
  }
}

.cookie_window{
  position: fixed;
  background: #FFFFFF;
  max-width: 594px;
  box-shadow: 0px 4px 16px 0px rgba(122, 133, 147, 0.18);
  padding: clamp(1rem, 2vw, 1.5rem);
  left: 20px;
  bottom: 20px;
  border-radius: 16px;
  z-index: 9999999;
}

.cookie_wrapper{
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  align-items: start;
}
.cookie_text{
  flex: 1 1 70%;
}
.cookie_text p{
  font-weight: 400;
  font-size: clamp(12px, 2vw, 15px);
  line-height: clamp(18px, 3vw, 24px);
  margin: 0;
  color: rgba(48, 48, 48, 1);
}

@media (max-width: 640px){
  .cookie_window{
    --max-width-cookie: calc(100vw - 32px);
    left: calc((100vw - var(--max-width-cookie)) / 2);
    bottom: calc((100vw - var(--max-width-cookie)) / 2);
    max-width: var(--max-width-cookie);
  }
}
@media (max-width: 342px){
  .cookie_text{
    flex: 1 1 60%;
  }
}

.banner_pic{
  background: url('/img/flowlu/banner_bg.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem,2vw,2rem);
  border-radius: clamp(12px, 1.5vw, 16px);
  overflow: hidden;
  width: 100%;
  .banner_pic-text{
    padding: clamp(1.5rem,3vw,3rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(1rem,3vw,2rem);
    font-size: clamp(1rem,2vw,1.125rem);
    line-height:  clamp(26px,2vw,28px);
  }
  .banner__caption{
    color: var(--white);
  }
  .banner_pic-image{
      display: flex;
      align-items: flex-end;
  }
  svg path{
    stroke: transparent !important;
  }
}

.banner_pic.green{
  background: url('/img/flowlu/banner_bg_green.jpg') center/cover no-repeat;
}

@media (max-width: 991px){
  .banner_pic.blue{
    gap: 0;
    .banner_pic-text{
      flex: 0 0 368px;
      justify-content: start;
      max-height: 100%
    }
  } 
  .banner_pic.green{
    gap: 0;
    .banner_pic-text{
      flex: 0 0 368px;
      justify-content: start;
      max-height: 100%
    }
  } 
}

@media (max-width: 767px){
  .banner_pic{
    .banner_pic-image{
      justify-content: center;
      align-items: center;
    }
  }
  .banner_pic.blue,
  .banner_pic.green{
    flex-direction: column;
    justify-content: center;
    gap: 0;
    .banner_pic-text{
      flex: 0 0 fit-content;
      justify-content: center;
      align-items: center;
      text-align: center;
      max-height: 100%;
    }
  } 

}

@media (max-width: 575px){
  .banner_pic-text-bottom,
  .banner_pic-text-bottom a{
    width: 100%;
  }
}