:root {
  --spacing-5xl: 128px;
  --spacing-4xl: 64px;
  --spacing-3xl: 56px;
  --spacing-2xl: 48px;
  --spacing-xl: 40px;
  --spacing-l: 32px;
  --spacing-m: 24px;
  --spacing-s: 20px;
  --spacing-xs: 16px;
  --spacing-2xs: 12px;
  --spacing-3xs: 8px;
  --spacing-4xs: 4px;
  --primary-white-color: #FFFFFF;
  --primary-black-color: #000000;
  --primary-blue-color: #004C97;
  --primary-green-color: #009CA6;
  --primary-gray-300-color: #4D4D4D;
  --primary-gray-400-color: #666666;
  --primary-gray-450-color: #949599;
  --primary-gray-500-color: #B3B3B3;
  --primary-gray-900-color: #E6E6E6;
  --primary-gray-950-color: #F2F2F2;
  --primary-gray-1000-color: #F9F9F9;
  --primary-gray-1100-color: #EFEFEF;
  --secondary-blue-color: #1E3765;
  --secondary-light-blue-color: #B9D9EB;
  --secondary-dark-blue-color: #0E2550;
  --secondary-gold-color: #EBAC00;
  --secondary-ruby-color: #960051;
  --secondary-ruby-color-hover: #610034;
  --tertiary-pale-pink: #EAD3E2;
  --border-radius-xs: 5px;
  --border-radius-s: 10px;
  --border-radius-m: 15px;
  --border-radius-l: 20px;
  --border-radius-xl: 25px;
  --border-radius-2xl: 30px;
  --c-icon-light: #F6EDD3;
  --c-icon-medium: #FEEDA2;
  --c-icon-dark: #EBAC00;
  --shadow-small: 0 2px 20px 4px rgba(30, 55, 101, 0.15);
  --bezier-custom: cubic-bezier(0.47, 0, 0.745, 0.715);
}

.section__text-wrapper {
  color: var(--primary-gray-300-color);
  font-size: 18px;
  line-height: 1.5;
}
.section__text-wrapper.column-2 {
  display: block !important;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: var(--spacing-l);
  column-gap: var(--spacing-l);
}
@media (max-width: 575px) {
  .section__text-wrapper.column-2 {
    -moz-columns: 1;
    columns: 1;
  }
}
.section__text-wrapper.column-2 * {
  margin: 0 0 30px 0 !important;
  white-space: normal;
}
.section__text-wrapper h1,
.section__text-wrapper h2,
.section__text-wrapper h3,
.section__text-wrapper h4,
.section__text-wrapper h5,
.section__text-wrapper h6 {
  margin: 0 0;
  font-weight: 700;
  color: var(--secondary-blue-color);
}
.section__text-wrapper p {
  margin: 0 0;
}
.section__text-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0;
}
.section__text-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0;
}
.section__text-wrapper p + h2,
.section__text-wrapper p + h3,
.section__text-wrapper p + h4,
.section__text-wrapper p + h5,
.section__text-wrapper p + h6 {
  margin-top: 15px;
}
.section__text-wrapper *:first-child {
  margin-top: 0;
}
.section__text-wrapper *:last-child {
  margin-bottom: 0;
}
.section__text-wrapper h1 {
  font-size: 50px;
  line-height: 52px;
}
.section__text-wrapper h2 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
  font-weight: 400 !important;
}
.section__text-wrapper h3 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 700 !important;
}
.section__text-wrapper h4 {
  font-size: 22px;
  line-height: 27px;
  font-weight: 400 !important;
}
.section__text-wrapper h5 {
  font-size: 20px;
  line-height: 24px;
}
.section__text-wrapper h6 {
  font-size: 20px;
  line-height: 24px;
}
.section__text-wrapper p,
.section__text-wrapper a,
.section__text-wrapper li,
.section__text-wrapper strong,
.section__text-wrapper em,
.section__text-wrapper del,
.section__text-wrapper code,
.section__text-wrapper pre {
  line-height: 1.5;
}
.section__text-wrapper p,
.section__text-wrapper a,
.section__text-wrapper li,
.section__text-wrapper del,
.section__text-wrapper code,
.section__text-wrapper pre {
  font-weight: 400;
  margin: 30px 0;
}
.section__text-wrapper a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.section__text-wrapper img {
  border-radius: var(--border-radius-xs);
  padding: 4px 16px;
}
.section__text-wrapper img.alignleft {
  float: left;
  padding-left: 0;
}
.section__text-wrapper img.alignright {
  float: right;
  padding-right: 0;
}
.section__text-wrapper img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.section__text-wrapper img.alignnone {
  float: none;
}
.section__text-wrapper .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  background-color: var(--secondary-ruby-color);
  color: var(--primary-white-color);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-decoration: none;
  transition: 0.3s ease;
  border: 2px solid var(--secondary-ruby-color);
}
.section__text-wrapper .btn-primary:hover {
  filter: brightness(0.85);
  transition: 0.3s ease;
  cursor: pointer;
}
.section__text-wrapper .btn-primary + .btn-primary {
  margin-left: 10px;
}