@charset "UTF-8";
/* Variables */
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
  direction: rtl;
}

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #b91f1f;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 60px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.section-subtitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-primary {
  color: #b91f1f;
}

.text-secondary {
  color: #4CAF50;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
}

.btn--primary {
  background-color: #b91f1f;
  color: #f8f8f8;
}

.btn--primary:hover {
  background-color: #8d1818;
  color: #f8f8f8;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #b91f1f;
  color: #b91f1f;
}

.btn--outline:hover {
  background-color: #b91f1f;
  color: #f8f8f8;
}

.btn--full {
  width: 100%;
}

.btn--blue {
  background: #0033C4;
  color: #fff;
}

.btn--disabled {
  pointer-events: none;
  opacity: 0.8;
}

/* Header */
.header {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  top: 0;
  z-index: 100;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  max-height: 50px;
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.navigation__item a {
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.navigation__item a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #b91f1f;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation__item a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.lang-switcher {
  position: relative;
}

.lang-switcher__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 500;
}

.lang-switcher__current .arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 60px 0;
}

.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.hero__upper-content {
  text-align: center;
  margin-bottom: 30px;
}

.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero__video {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
}

.hero__title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.3;
  max-width: 750px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form */
.form {
  padding: 20px;
  background-color: #F5A2A2;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group input[type="text"],
.form__group input[type="email"],
.form__group input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__group input[type="text"]:focus,
.form__group input[type="email"]:focus,
.form__group input[type="tel"]:focus {
  outline: none;
  border-color: #b91f1f;
}

.form__group--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__group--phone .phone-prefix {
  padding: 12px 15px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 20px 0 0 20px;
  border-right: none;
}

.form__group--phone input[type="tel"] {
  border-radius: 0 20px 20px 0;
}

.form__group--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.form__group--checkbox input[type="checkbox"] {
  margin-top: 4px;
}

.form__group--checkbox label {
  font-size: 14px;
  color: #666;
}

.form__min {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  color: #333;
}

.form .error-message {
  color: #b91f1f;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form--footer {
  max-width: 500px;
  margin: 0 auto;
}

/* Founder Section */
.founder {
  background-color: #fff;
}

.founder__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.founder__photo {
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
}

.founder__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.founder__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.founder__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.founder__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.founder__position {
  font-size: 18px;
  color: #b91f1f;
}

.founder__text {
  font-size: 16px;
  line-height: 1.6;
}

/* Steps Section */
.steps {
  background-color: #f8f8f8;
}

.steps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.steps__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.steps__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.steps__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.steps__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.steps__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.steps__text {
  font-size: 16px;
  color: #666;
  text-align: right;
}

.steps__cta {
  text-align: center;
}

/* Plans Section */
.plans {
  background-color: #fff;
}

.plans__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.plan {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 350px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #32BB00;
  background: #F1FFEE;
}

.plan:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.plan--pro {
  border-color: #666;
  background: #DFE3E6;
}

.plan--expert {
  border-color: #4CAF50;
}

.plan__header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.plan__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan__availability {
  font-size: 24px;
  color: #f8f8f8;
  margin-bottom: 20px;
  padding: 20px;
  background: #32BB00;
  border: 1px solid #333;
  border-radius: 20px;
}

.plan__availability--soldout {
  color: #f8f8f8;
  background: #b91f1f;
}

.plan__price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.plan__content {
  padding: 20px;
}

.plan__content-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.plan__features li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.plan__features li:before {
  content: '✓';
  color: #4CAF50;
  margin-left: 10px;
  font-weight: 700;
}

.plan__features li:last-child {
  border-bottom: none;
}

/* Profits Table */
.profits {
  background-color: #f8f8f8;
}

.profits__table-wrapper {
  overflow-x: auto;
  max-height: 800px;
  overflow-y: auto;
}

.profits__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.profits__table th, .profits__table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.profits__table th {
  background-color: #b91f1f;
  color: #f8f8f8;
  font-weight: 700;
}

.profits__table tr {
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.profits__table tr.new-trade {
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease forwards;
          animation: fadeIn 0.5s ease forwards;
}

.profits__table tr.highlight {
  background-color: rgba(185, 31, 31, 0.1);
}

.profits__table tr:nth-child(even) {
  background-color: #f1f1f1;
}

.profits__table tr:hover {
  background-color: #e9e9e9;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* Calculator Section */
.calculator {
  background-color: #fff;
  /* Кружок (ползунок) */
}

.calculator__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.calculator__plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 350px;
}

.calculator__plan {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: #b91f1f;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.calculator__plan:hover {
  border-color: #b91f1f;
}

.calculator__plan[data-plan="pro"] {
  pointer-events: none;
  background: #DFE3E6;
}

.calculator__plan--active {
  border-color: #b91f1f;
  background-color: #4caf50;
}

.calculator__plan-title {
  color: #f8f8f8;
  font-size: 18px;
  font-weight: 700;
}

.calculator__plan-price {
  font-size: 24px;
  font-weight: 700;
  color: #f8f8f8;
}

.calculator__result {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  max-width: 350px;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #b91f1f;
  text-align: center;
}

.calculator__result-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.calculator__result-amount {
  font-size: 36px;
  font-weight: 700;
  color: #b91f1f;
  margin-bottom: 30px;
}

.calculator__result-label {
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.calculator__slider-container {
  width: 100%;
  margin-top: 15px;
}

.calculator__slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #ccc;
  outline: none;
  -webkit-appearance: none;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b91f1f;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.calculator__slider::-webkit-slider-thumb:hover {
  background: #8d1818;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.calculator__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b91f1f;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.calculator__slider::-moz-range-thumb:hover {
  background: #8d1818;
  transform: scale(1.1);
}

.calculator__slider-value {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}

.calculator #monthsSlider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(0%, red), color-stop(0%, #ddd), to(#ddd));
  background: linear-gradient(to right, red 0%, red 0%, #ddd 0%, #ddd 100%);
  outline: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.calculator #monthsSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid red;
  cursor: pointer;
}

.calculator #monthsSlider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid red;
  cursor: pointer;
}

.calculator #monthsSlider {
  direction: rtl;
  /* підхоплює правосторонній напрямок */
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f8f8;
}

.testimonials__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.testimonial {
  padding: 10px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-bottom: 2px solid #333;
}

.testimonial__avatar {
  width: 100%;
  max-width: 120px;
  border-radius: 10px;
}

.testimonial__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial__text {
  font-style: italic;
  color: #666;
}

.testimonial__text:before, .testimonial__text:after {
  content: '"';
  font-size: 24px;
  color: #b91f1f;
}

/* Features Section */
.features {
  background-color: #fff;
}

.features__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.features__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features__description {
  font-size: 16px;
  line-height: 1.6;
}

.certificate {
  background-color: #b91f1f;
  padding: 60px 0;
}

.certificate__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.certificate__image img {
  width: 100%;
  max-width: 650px;
}

/* Registration Section */
.registration {
  background-color: #f8f8f8;
}

.registration__wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #ffeaea;
  border-radius: 20px;
  padding: 10px;
}

.registration__logo {
  margin-bottom: 30px;
}

.registration__logo img {
  max-height: 60px;
}

.registration__title {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  border-top: 1px solid #333;
  padding: 30px 0;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__copyright {
  font-size: 14px;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__link {
  font-size: 14px;
}

.footer__link:hover {
  color: #ccc;
}

.footer__brand {
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__content {
    text-align: center;
  }
  .hero__form {
    width: 100%;
    max-width: 500px;
  }
  .features__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cookie-banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cookie-banner__content .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .navigation__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    row-gap: 2px;
  }
  .founder__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .founder__photo {
    max-width: 100%;
  }
  .steps__item {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
  .hero__title {
    font-size: 28px;
  }
  .steps__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .plan {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .calculator__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .calculator__plans, .calculator__result {
    max-width: 100%;
  }
  .testimonial {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
/*# sourceMappingURL=style.css.map */