:root {
  --primary: #009399;
  --text: #242424;
  --danger: red;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v11-latin-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v11-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v11-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/dm-serif-display-v15-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}
body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

h2 {
  font-weight: 400;
  font-size: 29px;
}
@media (min-width: 780px) {
  h2 {
    font-size: 31px;
  }
}

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

.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.text-danger {
  color: var(--danger);
}

.flex-none {
  flex: none;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-auto {
  flex-grow: auto;
}
.flex-shrink-1 {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-shrink-auto {
  flex-shrink: auto;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}

.bg-gray {
  background-color: #F5F7F9;
}
.bg-white {
  background-color: #fff;
}
.bg-primary {
  background-color: var(--primary);
}

.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: 0.25rem !important;
}
.rounded-2 {
  border-radius: 0.5rem !important;
}
.rounded-3 {
  border-radius: 0.75rem !important;
}
.rounded-4 {
  border-radius: 1rem !important;
}
.rounded-5 {
  border-radius: 1.25rem !important;
}
.rounded-6 {
  border-radius: 1.5rem !important;
}

.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 0.75rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-5 {
  gap: 1.25rem !important;
}
.gap-6 {
  gap: 1.5rem !important;
}

.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem !important;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem !important;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem !important;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem !important;
}
.px-0 {
  padding-left: 0;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem !important;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem !important;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem !important;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem !important;
}

.w-100 {
  width: 100% !important;
}

.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 0.75rem !important;
}
.m-4 {
  margin: 1rem !important;
}
.m-5 {
  margin: 1.25rem !important;
}
.m-6 {
  margin: 1.5rem !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.25rem !important;
}
.mb-5 {
  margin-bottom: 1.5rem !important;
}
.mb-6 {
  margin-bottom: 2rem !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.25rem !important;
}
.mt-5 {
  margin-top: 1.5rem !important;
}
.mt-6 {
  margin-top: 2rem !important;
}
.mx-0 {
  margin-left: 0;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem !important;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem !important;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem !important;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem !important;
}

.row {
  display: flex;
}

.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}

.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}

.btn {
  width: auto;
  font-size: 17px;
  height: auto;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  text-shadow: none;
  padding: 16px 32px;
  box-sizing: border-box;
  margin: 10px;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
}
.btn-rounded {
  border-radius: 50px;
}
.btn-primary {
  box-shadow: 0 1px 1px #eeeeee;
  background: rgb(0, 147, 153);
  border-width: 1px;
  border-color: #009399;
  border-style: solid;
  color: #ffffff;
}
.btn-primary:hover {
  box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.15);
  background-color: #009399 !important;
}

.main {
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-xl {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.icon {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.quiz li {
  position: relative;
  list-style: none;
  padding-left: 1.5rem;
  font-size: 18px;
}
.quiz li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 14px;
  flex: none;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' fill='%2373A942' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}
.quiz p {
  font-size: 18px;
}
.quiz-wrap {
  padding: 30px 0;
  width: 100%;
}
@media (min-width: 780px) {
  .quiz-wrap {
    padding: 50px 0;
  }
}
.quiz-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quiz-content__body.narrow {
  width: 100%;
  max-width: 500px;
}
.quiz-content__body.grid {
  display: grid;
  gap: 1rem;
}
.quiz-content__body.grid .options-list {
  flex-wrap: wrap;
  flex-direction: unset;
}
.quiz-content__body.grid .option-item {
  flex: 1 1 40%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.quiz-content__body.grid .option-label {
  justify-content: center;
}
@media (min-width: 780px) {
  .quiz-content__body.grid {
    grid-template-columns: 50% 50%;
  }
}
.quiz-content__body.age {
  max-width: 100%;
  width: 100%;
}
.quiz-content__body.age .options-list {
  display: flex;
  flex-direction: unset;
  justify-content: center;
  flex-wrap: wrap;
}
.quiz-content__body.age .option-item {
  max-width: 150px;
  width: 100%;
}
.quiz-content__body.age .option-item label {
  padding: 0;
  padding-bottom: 1rem;
  flex-direction: column;
}
.quiz-content__body.age .option-item label img {
  max-width: 100%;
  height: auto;
  width: unset;
}
.quiz-content__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  bottom: 0;
  padding: 0 0 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 16px 16px rgba(255, 255, 255, 0.8);
  gap: 1rem;
}
.quiz-content__footer .btn-primary {
  padding: 16px 32px !important;
  min-width: 100px;
  flex: 0 1 200px;
}
.quiz-content__footer .btn-secondary {
  font-size: 12px;
  font-weight: 300;
  color: #8C9096;
  border: 1px solid #f5f7f9;
  background-color: #f5f7f9;
}
.quiz-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  background-color: rgba(0, 147, 153, 0.15);
}
.quiz-info::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' fill='%23009399' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'%3E%3C/path%3E%3C/svg%3E");
  height: 1.5rem;
  width: 1.5rem;
}
.quiz-info__title {
  font-size: 19px;
  font-weight: 600;
}

.empty {
  display: none;
}

small {
  font-size: 14px;
}

.option-title {
  font-size: 19px;
}
.option-text {
  font-size: 14px;
  color: #8c919c;
  font-weight: 300;
  line-height: 18px;
}
.option-item {
  position: relative;
}
.option-item input {
  height: 1px;
  width: 1px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.option-item input:checked ~ label {
  border-color: var(--progress-active-bg-color);
  box-shadow: 0 0 0 1px var(--border-color-active);
  color: #fff;
  background-color: var(--primary);
}
.option-item input:checked ~ label .option-text {
  color: inherit !important;
}
.options-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.option-label {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  margin: 1px;
  border-radius: 6px;
  border: 1px solid rgb(230, 235, 245);
}
.option-label:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.input-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: row-reverse;
  font-size: 45px;
  margin-bottom: 2rem;
  border-bottom: 1px solid #000;
  font-weight: 600;
  width: 180px;
}
.input-container label {
  padding-right: 0.5rem;
}
.input-container input {
  outline: none;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: inherit;
  font-size: inherit;
  flex: 1;
  min-width: 0;
  text-align: center;
  width: 1%;
  display: block;
}

.grafic-goal {
  position: relative;
}
.grafic-goal span {
  position: absolute;
  background-color: #fff;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.5);
}
.grafic-goal span:nth-of-type(1) {
  top: 50%;
  left: 24%;
  transform: translateX(-50%);
}
.grafic-goal span:nth-of-type(2) {
  top: 70%;
  left: 60%;
  transform: translateX(-50%);
}

.preloader {
  position: fixed;
  background-color: #fff;
  z-index: 1111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.preloader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.preloader-icon {
  display: block;
  height: 100px;
  width: 100px;
  border-radius: 100px;
  border: 10px solid var(--primary);
  border-color: var(--primary) var(--primary) var(--primary) transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.res {
  padding: 30px 0;
}
@media (min-width: 780px) {
  .res {
    padding: 50px 0;
  }
}

.section {
  position: relative;
}
.section-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.section-top svg {
  position: relative;
  display: block;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  height: 120px;
}
.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 16px;
}
@media (min-width: 780px) {
  .section-subtitle {
    font-size: 18px;
  }
}
.section-title {
  font-family: "DM Serif Display";
  font-size: 29px;
}
@media (min-width: 780px) {
  .section-title {
    font-size: 39px;
  }
}
.section-title span {
  position: relative;
}
.section-title span:before {
  content: " ";
  z-index: -1;
  display: block;
  position: absolute;
  top: 20%;
  left: -1px;
  transform: rotate(2deg);
  margin-right: -3px;
  margin-left: -3px;
  border-radius: 20% 25% 20% 24%;
  background: rgb(171, 211, 209);
  background: linear-gradient(100deg, rgba(171, 211, 209, 0.7021402311) 0%, rgba(171, 211, 209, 0.2007396709) 100%);
  padding: 10px 3px 3px 10px;
  width: 100%;
  height: 50%;
}

.cta {
  padding: 20px;
  background-color: #EBEFF7;
  border-radius: 6px;
}
.cta-row {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 780px) {
  .cta-row {
    flex-direction: row;
  }
}
@media (min-width: 780px) {
  .cta-row .cta-content {
    flex: 0 1 300px;
  }
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  background: linear-gradient(50deg, rgb(247, 138, 98) 0%, rgb(255, 182, 93) 100%);
  color: #fff;
  gap: 1rem;
  font-weight: 600;
  transition: transform 0.35s ease;
  font-size: 18px;
  padding: 12px 16px;
}
@media (min-width: 780px) {
  .cta-btn {
    transform: scale(0.9);
    padding: 15px 30px;
    font-size: 23px;
  }
}
.cta-btn:hover {
  transform: scale(1);
}
.cta-btn__content {
  display: flex;
  flex-direction: column;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.cta-btn__content span {
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 780px) {
  .cta-btn__content span {
    font-size: 16px;
  }
}
.cta-btn svg {
  flex: none;
  height: 35px;
  width: 35px;
  fill: currentColor;
}
.cta-content {
  font-size: 16px;
}
.cta-title {
  color: #6b7e99;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cta-text {
  color: #6b7e99;
  font-size: 13px;
}
.cta-price {
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 0.5rem;
}
.cta-price__current {
  font-size: 38px;
}
.cta-price__old {
  font-size: 16px;
  color: #ba302f;
}

.shadow {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 25px 20px -20px;
}

.card {
  border-radius: 0.5rem;
  border: 2px solid var(--primary);
}
.card-head {
  padding: 0.5rem;
  background-color: rgba(0, 162, 181, 0.13);
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
}
.card-body {
  padding: 0.5rem;
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
}
.card-body-title {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
  font-size: 18px;
}
.card-body-title::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' fill='%2300A2B5' viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 22px;
  width: 22px;
}
.card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 14px;
  padding-left: 2rem;
}
.card-body ul span {
  font-size: 13px;
  color: rgb(111, 129, 156);
}
.card-body ul li {
  display: flex;
  gap: 0.4rem;
  position: relative;
}
.card-body ul li::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' fill='%236B7E99' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  height: 12px;
  width: 12px;
  flex: none;
  margin-top: 0.3em;
}
.card-body ul li div {
  display: flex;
  flex-direction: column;
}

.advantages-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}
.advantages-info img {
  max-height: 50px;
}
.advantages .cta-price__current {
  font-size: 32px;
}
.advantages .cta-price__old {
  font-size: 16px;
}
.advantages-title {
  font-size: 31px;
  line-height: 1;
}
@media (min-width: 780px) {
  .advantages-title {
    font-size: 49px;
  }
}
.advantages-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 16px;
}
@media (min-width: 780px) {
  .advantages-subtitle {
    font-size: 21px;
  }
}
.advantages-row {
  gap: 1rem;
  row-gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 780px) {
  .advantages-row {
    flex-wrap: nowrap;
  }
}
.advantages-col {
  width: 100%;
}
@media (min-width: 780px) {
  .advantages-col {
    width: 50%;
  }
}
.advantages-col:nth-child(1) {
  order: 1;
}
@media (min-width: 780px) {
  .advantages-col:nth-child(1) {
    order: unset;
  }
}
.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}
.advantages-list li {
  font-size: 18px;
  display: flex;
  gap: 1rem;
  font-weight: 300;
}
.advantages-list li b {
  font-weight: 600;
}
.advantages-list li svg {
  margin-top: 0.2em;
  height: 22px;
  width: 22px;
  flex: none;
  fill: var(--primary);
}

.clients {
  background-color: #F5F7F9;
  position: relative;
  padding: 120px 0;
}
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
@media (min-width: 780px) {
  .clients-list {
    margin: 50px 0;
  }
}
.client-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 0.8em;
}
.client-text {
  font-size: 16px;
}
.client-item {
  flex: 1 1 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
@media (min-width: 780px) {
  .client-item {
    flex: 1 1 45%;
  }
}
@media (min-width: 980px) {
  .client-item {
    flex: 1 1 30%;
  }
}
.client-item img {
  border-radius: 0.3rem;
}
.client-item-body {
  padding: 1rem 0.8rem;
}
.client-item-footer {
  margin-top: auto;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.client-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 12px;
  color: #6B7E99;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
}
.client-progress:nth-child(1) {
  color: #000;
  background-color: #D3E8EB;
  padding: 10px 5px 10px 5px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.client-progress span {
  color: #000;
  font-size: 11px;
}
.client-progress svg {
  height: 20px;
  width: 20px;
  fill: currentColor;
}

.about {
  position: relative;
  padding-top: 120px;
  background-image: url(../images/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .section-top {
  z-index: 1;
  transform: rotateY(180deg);
}
.about .container {
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2901960784) 0% 0%, #FFFFFF 100%);
}
.about-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 780px) {
  .about-row {
    gap: 40px;
    flex-direction: row;
  }
}
.about-title {
  font-size: 28px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 780px) {
  .about-title {
    font-size: 32px;
  }
}
.about-title span {
  font-weight: 500;
  font-size: 18px;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  margin-bottom: 30px;
}
@media (min-width: 780px) {
  .about-content {
    margin-bottom: 80px;
    font-size: 18px;
  }
}

.footer {
  background-color: #232529;
  color: #8c919c;
  padding: 50px 0;
  font-size: 13px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
}
@media (min-width: 780px) {
  .footer-row {
    justify-content: unset;
    text-align: unset;
  }
}
@media (min-width: 980px) {
  .footer-row {
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 780px) {
  .footer-content {
    max-width: 50%;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 0.5rem;
  justify-content: center;
}
.footer a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.secure {
  padding-top: 120px;
  padding-bottom: 40px;
}
.secure-title {
  font-size: 20px;
}

.header {
  position: relative;
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 25px 20px -20px;
  z-index: 2;
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-content {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  align-items: flex-end;
}
.header a {
  text-decoration: none;
  color: #8C9096;
}
.header a:hover {
  color: #000;
}

.payment {
  background-color: #F5F7F9;
  padding: 60px 0;
}
@media (min-width: 780px) {
  .payment {
    padding: 120px 0;
  }
}
.payment-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 780px) {
  .payment-row {
    grid-template-columns: 60% 1fr;
  }
}
.payment-table-head {
  display: flex;
  margin: 0 -3px;
}
.payment-table-head__item {
  padding: 1rem 1rem 0 1rem;
  width: 10%;
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 0px !important;
  margin: 0 2px !important;
}
.payment-table-head__item.active {
  opacity: 1;
  width: 90%;
  display: block;
  border-color: rgb(206, 217, 224);
  border-style: solid;
  border-width: 0px;
  border-left: 1px solid #eef0f3 !important;
  border-top: 1px solid #eef0f3 !important;
  border-right: 1px solid #eef0f3 !important;
}
.payment-table-head__item:not(.active) {
  cursor: pointer;
}
.payment-table-head__item small {
  font-size: 11px;
  color: #b2bdd1;
}
.payment-table-head__item b {
  font-size: 1.2rem;
}
.payment-table-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.payment-table-content__item {
  display: none;
}
.payment-table-content__item.active {
  display: block;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 12px;
}
.form-input {
  outline: none;
  font-size: 16px;
  font-family: inherit;
  border-radius: 3px;
  padding: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #e6ebf5;
  color: #1D1D1F;
  background-color: rgb(255, 255, 255);
}
.form-btn {
  text-decoration: none;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-evenly;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-transform: none;
  color: #1D1D1F;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #A0791B;
  background: linear-gradient(0deg, rgb(244, 182, 32) 0%, rgb(250, 215, 133) 100%) !important;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1), inset 0 2px 0px rgba(255, 255, 255, 0.5) !important;
}

.err-message {
  border-radius: 4px;
  border-width: 0;
  background-color: rgba(209, 101, 79, 0.1019607843);
  color: #d1654f;
  margin: 0 0 10px;
  line-height: 1.5em;
  padding: 8px 8px 8px 10px;
  font-size: 12px;
}