.container.with-margin {
    margin-bottom: 50px;
  }

  .intro-block {
    display: flex;
  }

  .intro-block__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .intro-block__title {
    font-size: 36px;
    text-transform: uppercase;
  }

  .intro-block__text {
    font-size: 19px !important;
    text-align: justify;
  }

  .abv-landing-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
  }

  .abv-landing-button {
    width: 240px;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all .4s ease-in-out;
    font-weight: 500;
  }

  .abv-landing-button.first {
    color: white !important;
    background-image: linear-gradient(to right, #1A5E91, #00CA9F, #1A5E91, #00CA9F);
    background-size: 300% 100%;
    padding: 15px;
  }

  .abv-landing-button.first:hover {
    background-position: 100% 0;
    transition: all .4s ease-in-out;
    scale: 1.06;
  }

  .abv-landing-button.second {
    padding: 13px;
    border: 2px solid #1A5E91;
    color: #1A5E91;
    background-color: white;
  }

  .abv-landing-button.second:hover {
    scale: 1.06;
    transition: all .4s ease-in-out;
  }

  .prof-landing-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .advantages-block {
    display: flex;
    gap: 40px;
  }

  .advantages-block__part {
    position: relative;
  }

  .advantages-block__title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
  }

  .advantages-block__number {
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    z-index: -1;
    color: #00c89e1c;
    position: absolute;
    left: 75%;
    bottom: 0;
  }

  .about-company-block {
    padding: 20px;
    background-color: #e3f9f4;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .about-company-block__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-company-block__text.middle {
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: center;
    max-width: 500px;
  }

  .about-company-block__text span {
    font-size: 50px !important;
    background: -webkit-linear-gradient(45deg, #186892, #02c59f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
  }

  .features-block {
    display: flex;
    gap: 40px;
  }

  .features-block__left {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 25px;
    justify-content: space-evenly;
  }

  .features-block__description {
    display: flex;
    gap: 12px;
    cursor: pointer;
    align-items: flex-start;
  }

  .features-block__decor {
    width: 4px;
    height: 24px;
    background: #ccc;
    border-radius: 5px;
    transition: height 0.6s ease, background 0.6s ease;
    flex-shrink: 0;
  }

  .features-block__description.active .features-block__decor {
    height: 118px;
    background: linear-gradient(to bottom, #00CA9F, #1A5E91);
  }

  .features-block__description.active {
    align-items: center;
  }

  .features-block__text h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
  }

  .features-block__text p {
    margin: 6px 0 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    max-height: 0;
    overflow: hidden;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
  }

  .features-block__description.active .features-block__text p {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
  }

  .features-block__right {
    position: relative;
    flex: 1;
  }

  .features-block__img {
    opacity: 0;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    cursor: pointer;
  }

  .features-block__img.active {
    opacity: 1;
    position: relative;
    box-shadow: 6px 6px 15px 3px rgba(129, 129, 129, 0.2);
  }

  .formats-block__tabs {
    display: flex;
    gap: 30px;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .formats-block__tab {
    position: relative;
    padding-bottom: 5px;
    font-size: 18px;
    color: #191919;
    text-transform: uppercase;
    font-weight: 600 !important;
  }

  .formats-block__tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, #007aff, #00e0c6);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
  }

  .formats-block__tab.active::after {
    transform: scaleX(1);
  }

  .formats-block__list {
    font-size: 16px;
    color: #444;
    display: none;
  }

  .formats-block__list.active {
    display: block;
  }

  .formats-block__list span {
    font-weight: 500;
  }

  .formats-block__list p {
    margin-bottom: 5px;
  }

  .testimonials-block {
    padding: 45px 0;
    background: #eff5fa;
    margin-bottom: 50px;
  }

  .testimonials-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
  }

  .testimonials-block__unit {
    background: #fff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testimonials-block__image {
    margin-bottom: 5px;
  }

  .testimonials-block__text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

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

  .testimonials-block__customer img {
    width: 40px;
    height: 40px;
  }

  .testimonials-block__customer-info p:nth-child(2n) {
    font-weight: 600;
  }

  .testimonials-block__unit.big {
    grid-column: span 2;
  }

  .table {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .table div {
    display: flex;
    flex-direction: column;
  }

  .professional-edition {
    border: 1px solid lightgrey;
    width: 32% !important;
    border-radius: 5px;
  }

  .professional-edition.one-year {
    box-shadow: 0 0 15px 1px rgba(129, 129, 129, 0.2);
  }

  .upper-part {
    padding: 30px 30px 30px 15px;
  }

  .user-license {
    padding-left: 15px;
  }

  .edition-name {
    font-weight: 600;
    font-size: 20px;
    color: #185075;
    background-color: #d4e6f361;
    padding: 20px 30px;
  }

  .edition-name.one-year {
    background-color: #d4e6f3;
  }

  .license-name {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .license-name.floating {
    margin-top: 0;
  }

  .license-name span {
    font-weight: 100;
    font-size: 14px;
    font-style: italic;
  }

  .wrapper {
    display: grid !important;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out;
  }

  .wrapper.is-open {
    grid-template-rows: 1fr;
  }

  .more-about-license {
    text-align: justify;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 14px !important;
    line-height: 30px !important;
    margin-block-start: 1em;
  }

  .know-more {
    cursor: pointer;
    max-width: 9em;
  }

  .know-more:hover {
    color: #2886c3;
  }

  .know-more:hover svg {
    fill: #2886c3;
  }

  .price-block {
    line-height: 1 !important;
    margin-top: 11px;
  }

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

  .price,
  .currency,
  .upgrade-price {
    font-size: 35px;
  }

  .small-price {
    font-size: 30px;
  }

  .local-currency {
    font-weight: 500;
  }

  .price span {
    font-size: 12px;
    display: none;
  }

  .volume-discount-offer {
    display: inline-block;
    margin: 6px 0 17px;
  }

  .volume-discount-offer span {
    color: #808080;
    font-size: 14px;
  }

  .volume-discount-offer svg {
    opacity: 100%;
  }

  .show-floating {
    cursor: pointer;
    color: #2886c3;
    padding-left: 15px;
  }

  .floating-license {
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    padding-left: 15px;
  }

  .floating-license.partially-opened {
    max-height: 20em;
    padding-top: 30px;
  }

  .floating-license.fully-opened {
    max-height: 36em;
    padding-top: 30px;
  }

  .floating-license.upgrade {
    max-height: none;
  }

  .table-button {
    max-width: 130px;
    margin-bottom: 10px;
    padding: 10px;
    border: 2px solid #1A5E91;
    background-color: ffffff;
    color: #1A5E91 !important;
    border-radius: 5px;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: .3s;
  }

  .table-button:hover {
    scale: 1.06;
    transition: all .4s ease-in-out;
  }

  .table-button.button-user-license {
    margin-bottom: 20px;
  }

  .table-button.one-year {
    background-color: #1A5E91 !important;
    color: #ffffff !important;
  }

  .faq p,
  .faq ul,
  .faq table {
    margin-bottom: 10px;
  }

  .faq-title {
    font-size: 25px !important;
    font-weight: 600 !important;
    margin: 30px 0;
  }
  
  .abv-landing-button.final {
    width: 450px;
  }
  
  
  .trigger {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2332c1f0' fill-opacity='0.17'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 45px 0;
    margin-bottom: 50px;
  }

  .trigger__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .trigger__block-title {
    text-transform: uppercase;
    font-weight: 100;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
    background: -webkit-linear-gradient(45deg, #186892, #02c59f);
    background: -moz-linear-gradient(45deg, #186892, #02c59f);
    background: -o-linear-gradient(45deg, #186892, #02c59f);
    background: linear-gradient(45deg, #186892, #02c59f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .trigger__block-text {
    font-size: 18px !important;
    text-align: center;
    margin: 35px 0;
    font-weight: 600 !important;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  .modal__content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .modal.show .modal__content {
    transform: scale(1);
    opacity: 1;
  }

  .modal__close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
  }

  .modal__close:hover {
    color: #ccc;
  }
  
  #buy-license {
  scroll-margin-top: 110px;
    }

  @media screen and (max-width: 1180px) {
    .intro-block img {
      display: none;
    }

    .intro-block__left {
      gap: 30px
    }

    .intro-block__title {
      margin-bottom: 0;
    }

    .intro-block .abv-landing-buttons {
      margin: 0 auto;
    }

    .type-of-license label {
      display: block;
    }
  }

  @media screen and (max-width: 1140px) {
    .left-side {
      max-width: 90% !important;
    }
  }

  @media screen and (min-width: 1050px) {
    .left-side {
      max-width: 1000px !important;
    }
  }

  @media screen and (max-width: 999px) {
    .testimonials-block__unit {
      grid-column: span 2;
    }
  }

  @media screen and (max-width: 818px) {
    .advantages-block {
      flex-direction: column;
    }
    
    .advantages-block__number {
        display: none;
    }

    .about-company-block {
      flex-direction: column;
      gap: 20px;
    }
    
    .about-company-block__text.middle {
        max-width: unset;
    }
    
    .features-block__right {
        display: none;
    }
  }

  @media screen and (max-width: 750px) {
    label span:first-child {
      display: block;
      margin-top: 5px;
    }
  }

  @media screen and (max-width: 714px) {
    .table {
      flex-direction: column-reverse;
      gap: 50px;
    }

    .professional-edition,
    .enterprise-edition {
      width: unset!important;
    }
  }
 
  @media (max-width: 960px) and (min-width: 714px) {
    .break {
      display: block;
    }
  }

  @media screen and (max-width: 580px) {
    .product_pages_cont {
      overflow-x: visible !important;
    }

    .abv-landing-buttons {
      gap: 20px;
      flex-direction: column-reverse;
    }

    .abv-landing-button {
      width: 280px;
    }
    
  .abv-landing-button.final {
    width: unset;
    }
   }

  @media screen and (max-width: 400px) {
    .type-of-license div {
      font-size: 14px;
    }
  }