.smaller {
  --fz: var(--fz-smaller);
  --field: var(--field-smaller);
  font-size: var(--fz);
}

.small {
  --fz: var(--fz-small);
  --field: var(--field-small);
  font-size: var(--fz);
}

.larger {
  --fz: var(--fz-larger);
  --field: var(--field-larger);
  font-size: var(--fz);
}

.large {
  --fz: var(--fz-large);
  --field: var(--field-large);
  font-size: var(--fz);
}

.light {
  color: var(--text);
  --text: #000;
  --text-grey: #6e6e73;
  --text-grey-light: #a2a2aa;
}

.counter-check {
  background-color: var(--bg-opacity);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

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

hr {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

.tac {
  text-align: center;
  margin-bottom: 2rem;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--red);
}

html {
  font-size: var(--rem);
  scroll-behavior: smooth;
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.container {
  margin: 0 auto;
  width: var(--container);
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body ::-webkit-scrollbar {
  width: 6px;
}

body ::-webkit-scrollbar-track {
  background: var(--grey-bg);
  border-radius: 3px;
}

body ::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

body,
input,
textarea,
button,
select {
  font-size: var(--fz);
  font-family: var(--font);
  color: var(--text);
  line-height: var(--line-height);
  font-weight: 400;
}

.font-medium {
  font-weight: 700;
}

.section__title {
  padding-bottom: var(--field);
}

.section__title .content.fw-300 {
  font-weight: 300;
}

.section__title h3 {
  font-weight: 700;
}

.section__title p {
  margin-top: 2rem;
  font-size: var(--fz-larger);
  font-weight: 300;
  line-height: 1.25;
  max-width: 60%;
}

@media screen and (max-width: 768px) {
  .section__title p {
    max-width: 100%;
  }
}

.mt3 {
  margin-top: 3rem;
}

.margin > *:not(:last-child):not(.no-margin) {
  --margin: 3rem;
  margin-bottom: var(--margin);
}

.margin > *:not(:last-child):not(.no-margin).small-margin {
  --margin: 2rem;
}

.margin > *:not(:last-child):not(.no-margin).large-margin {
  --margin: 4rem;
}

.margin__smaller > *:not(:last-child):not(.no-margin) {
  --margin: 2rem;
  margin-bottom: var(--margin);
}

.margin__smaller > *:not(:last-child):not(.no-margin).small-margin {
  --margin: 1rem;
}

.margin__smaller > *:not(:last-child):not(.no-margin).large-margin {
  --margin: 3rem;
}

.margin__small > *:not(:last-child):not(.no-margin) {
  --margin: 1rem;
  margin-bottom: var(--margin);
}

.margin__small > *:not(:last-child):not(.no-margin).small-margin {
  --margin: 0.5rem;
}

.margin__small > *:not(:last-child):not(.no-margin).large-margin {
  --margin: 1.5rem;
}

.margin__larger > *:not(:last-child):not(.no-margin) {
  --margin: 5rem;
  margin-bottom: var(--margin);
}

.margin__larger > *:not(:last-child):not(.no-margin).small-margin {
  --margin: 4rem;
}

.margin__larger > *:not(:last-child):not(.no-margin).large-margin {
  --margin: 6rem;
}

.margin__large > *:not(:last-child):not(.no-margin) {
  --margin: 7rem;
  margin-bottom: var(--margin);
}

.margin__large > *:not(:last-child):not(.no-margin).small-margin {
  --margin: 6rem;
}

.margin__large > *:not(:last-child):not(.no-margin).large-margin {
  --margin: 8rem;
}

.styledLink {
  color: var(--theme);
  text-decoration: none;
  position: relative;
  z-index: 1;
  border-radius: var(--rad-small);
  cursor: pointer;
  transition: 0.2s;
  padding: 3px;
  margin: -3px;
}

.styledLink:hover {
  color: var(--theme-dark);
}

.styledLink:active,
.styledLink:focus {
  background: var(--theme-opacity);
  box-shadow: 0 0 0 4px var(--theme-focus);
}

h1,
.h1 {
  line-height: 1.3;
  font-weight: 700;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.3;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
blockquote,
ol {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

.subtitle {
  font-weight: 500;
}

h1,
.h1 {
  --title-size: var(--h1);
  font-size: var(--title-size);
}

h1.smaller,
.h1.smaller {
  --title-size: calc(var(--h1) * 0.9);
}

h1.small,
.h1.small {
  --title-size: calc(var(--h1) * 0.8);
}

h1.larger,
.h1.larger {
  --title-size: calc(var(--h1) * 1.1);
}

h1.large,
.h1.large {
  --title-size: calc(var(--h1) * 1.2);
}

h2,
.h2 {
  --title-size: var(--h2);
  font-size: var(--title-size);
}

h2.smaller,
.h2.smaller {
  --title-size: calc(var(--h2) * 0.9);
}

h2.small,
.h2.small {
  --title-size: calc(var(--h2) * 0.8);
}

h2.larger,
.h2.larger {
  --title-size: calc(var(--h2) * 1.1);
}

h2.large,
.h2.large {
  --title-size: calc(var(--h2) * 1.2);
}

h3,
.h3 {
  --title-size: var(--h3);
  font-size: var(--title-size);
}

h3.smaller,
.h3.smaller {
  --title-size: calc(var(--h3) * 0.9);
}

h3.small,
.h3.small {
  --title-size: calc(var(--h3) * 0.8);
}

h3.larger,
.h3.larger {
  --title-size: calc(var(--h3) * 1.1);
}

h3.large,
.h3.large {
  --title-size: calc(var(--h3) * 1.2);
}

h4,
.h4 {
  --title-size: var(--h4);
  font-size: var(--title-size);
}

h4.smaller,
.h4.smaller {
  --title-size: calc(var(--h4) * 0.9);
}

h4.small,
.h4.small {
  --title-size: calc(var(--h4) * 0.8);
}

h4.larger,
.h4.larger {
  --title-size: calc(var(--h4) * 1.1);
}

h4.large,
.h4.large {
  --title-size: calc(var(--h4) * 1.2);
}

h5,
.h5 {
  --title-size: var(--h5);
  font-size: var(--title-size);
}

h5.smaller,
.h5.smaller {
  --title-size: calc(var(--h5) * 0.9);
}

h5.small,
.h5.small {
  --title-size: calc(var(--h5) * 0.8);
}

h5.larger,
.h5.larger {
  --title-size: calc(var(--h5) * 1.1);
}

h5.large,
.h5.large {
  --title-size: calc(var(--h5) * 1.2);
}

h6,
.h6 {
  --title-size: var(--h6);
  font-size: var(--title-size);
}

h6.smaller,
.h6.smaller {
  --title-size: calc(var(--h6) * 0.9);
}

h6.small,
.h6.small {
  --title-size: calc(var(--h6) * 0.8);
}

h6.larger,
.h6.larger {
  --title-size: calc(var(--h6) * 1.1);
}

h6.large,
.h6.large {
  --title-size: calc(var(--h6) * 1.2);
}

.sectionPadding {
  --padding: calc(var(--field) * 2);
}

@media screen and (max-width: 768px) {
  .sectionPadding {
    --padding: calc(var(--field) * 1.25);
  }
}

.sectionPadding:not(.bottom):not(.top) {
  padding: var(--padding) 0;
}

.sectionPadding.top {
  padding-top: var(--padding);
}

.sectionPadding.bottom {
  padding-bottom: var(--padding);
}

.sectionPadding__smaller {
  --padding: calc(var(--field-smaller) * 1.5);
}

.sectionPadding__smaller:not(.bottom):not(.top) {
  padding: var(--padding) 0;
}

.sectionPadding__smaller.top {
  padding-top: var(--padding);
}

.sectionPadding__smaller.bottom {
  padding-bottom: var(--padding);
}

.sectionPadding__small {
  --padding: calc(var(--field-small) * 1.5);
}

.sectionPadding__small:not(.bottom):not(.top) {
  padding: var(--padding) 0;
}

.sectionPadding__small.top {
  padding-top: var(--padding);
}

.sectionPadding__small.bottom {
  padding-bottom: var(--padding);
}

.sectionPadding__larger {
  --padding: calc(var(--field-larger) * 1.5);
}

.sectionPadding__larger:not(.bottom):not(.top) {
  padding: var(--padding) 0;
}

.sectionPadding__larger.top {
  padding-top: var(--padding);
}

.sectionPadding__larger.bottom {
  padding-bottom: var(--padding);
}

.sectionPadding__large {
  --padding: calc(var(--field-large) * 1.5);
}

.sectionPadding__large:not(.bottom):not(.top) {
  padding: var(--padding) 0;
}

.sectionPadding__large.top {
  padding-top: var(--padding);
}

.sectionPadding__large.bottom {
  padding-bottom: var(--padding);
}

body section.register button.b24-form-btn {
  background: var(--theme);
  color: #fff;
  padding: 0 4rem;
}

body section.register button.b24-form-btn:hover {
  color: #fff;
  background-color: var(--theme-dark);
}

.sub-title {
  width: -moz-fit-content;
  width: fit-content;
  height: 3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  font-size: var(--fz-small);
}

.sub-title.dashed {
  border: 1px solid var(--text);
}

.bold {
  font-weight: 700;
}

.uc-them-dark .uc-registration-controll button,
.uc-them-dark .uc-registration-repeated-body button,
.uc-them-dark .uc-registration input[type="submit"],
.uc-them-dark .uc-registration input[type="button"] {
  color: #fff !important;
  background-color: var(--red) !important;
}

.uc-them-dark .uc-registration-controll button:hover,
.uc-them-dark .uc-registration-repeated-body button:hover,
.uc-them-dark .uc-registration input[type="submit"]:hover,
.uc-them-dark .uc-registration input[type="button"]:hover {
  color: #fff !important;
  background-color: var(--red-dark) !important;
}

.btn,
button.b24-form-btn {
  padding: 0;
  line-height: 1;
  background: var(--theme);
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  border-radius: 1.8rem;
  border: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  outline: none;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.btn span,
button.b24-form-btn span {
  height: var(--field);
  display: flex;
  font-weight: 400;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s;
}

.btn span:hover img,
button.b24-form-btn span:hover img {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.btn span img,
button.b24-form-btn span img {
  padding-left: 1rem;
  transition: 0.3s;
  width: 3rem;
}

.btn span.text,
button.b24-form-btn span.text {
  padding: 0 calc(var(--field) * 0.4);
  font-weight: 500;
}

.btn span.text .beforeIcon,
.btn span.text .afterIcon,
button.b24-form-btn span.text .beforeIcon,
button.b24-form-btn span.text .afterIcon {
  font-size: 1.1em;
}

.btn span.text .beforeIcon:before,
.btn span.text .afterIcon:before,
button.b24-form-btn span.text .beforeIcon:before,
button.b24-form-btn span.text .afterIcon:before {
  font-weight: 500;
}

.btn span.text .beforeIcon,
button.b24-form-btn span.text .beforeIcon {
  margin-right: 0.3em;
}

.btn span.text .afterIcon,
button.b24-form-btn span.text .afterIcon {
  margin-left: 0.3em;
}

.btn span.icon,
button.b24-form-btn span.icon {
  width: var(--field);
  font-size: 1.6em;
}

.btn:after,
button.b24-form-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
  transition: 0.2s;
}

.btn:before,
button.b24-form-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  transition: 0.4s;
  z-index: 1;
}

.btn:hover:before,
.btn:hover button.b24-form-btn:before,
button.b24-form-btn:hover:before,
button.b24-form-btn:hover button.b24-form-btn:before {
  height: 100%;
}

.btn:active span,
button.b24-form-btn:active span {
  transform: scale(0.95);
}

.btn.bg.dark,
button.b24-form-btn.bg.dark {
  background-color: #2b2d33;
  border-color: #2b2d33;
}

.btn.primary,
button.b24-form-btn.primary {
  background: var(--theme);
  border-color: var(--theme);
  color: #fff;
}

.btn.primary:before,
button.b24-form-btn.primary:before {
  background: var(--theme-dark);
}

.btn.primary:hover,
button.b24-form-btn.primary:hover {
  border-color: var(--theme-dark) !important;
}

.btn.bg,
button.b24-form-btn.bg {
  background: var(--bg);
  border-color: var(--bg);
}

.btn.bg:before,
button.b24-form-btn.bg:before {
  background: var(--border);
}

.btn.bg:hover,
button.b24-form-btn.bg:hover {
  color: #fff;
  border-color: var(--border) !important;
}

.btn.outline,
button.b24-form-btn.outline {
  background: var(--field-bg);
  border: none;
}

.btn.outline:before,
button.b24-form-btn.outline:before {
  background: var(--grey-bg);
}

.btn.outline:after,
button.b24-form-btn.outline:after {
  border-color: var(--field-border);
}

.btn.outlineTheme,
button.b24-form-btn.outlineTheme {
  background: var(--field-bg);
  color: var(--theme);
}

.btn.outlineTheme:before,
button.b24-form-btn.outlineTheme:before {
  background: var(--grey-bg);
}

.btn.outlineTheme:after,
button.b24-form-btn.outlineTheme:after {
  border-color: var(--field-border);
}

.btn.ghost,
button.b24-form-btn.ghost {
  color: var(--theme);
}

.btn.ghost:before,
button.b24-form-btn.ghost:before {
  background: var(--theme-opacity);
}

.btn.opacity,
button.b24-form-btn.opacity {
  color: var(--theme);
  background: var(--theme-opacity);
}

.btn.opacity:before,
button.b24-form-btn.opacity:before {
  background: var(--theme-opacity);
}

.btn.grey,
button.b24-form-btn.grey {
  background: var(--grey-bg);
}

.btn.grey:before,
button.b24-form-btn.grey:before {
  background: var(--border);
}

.btn.bordered,
button.b24-form-btn.bordered {
  color: var(--theme);
}

.btn.bordered:after,
button.b24-form-btn.bordered:after {
  border: 2px solid var(--text);
}

.btn.bordered:before,
button.b24-form-btn.bordered:before {
  background: var(--grey-bg);
}

.btn.dashed,
button.b24-form-btn.dashed {
  color: var(--theme);
}

.btn.dashed:after,
button.b24-form-btn.dashed:after {
  border: 2px dashed var(--border);
}

.btn.dashed:before,
button.b24-form-btn.dashed:before {
  background: var(--grey-bg);
}

.btn:disabled,
button.b24-form-btn:disabled {
  background: var(--border);
  color: var(--text-grey) !important;
  pointer-events: none;
}

.btn:disabled:before,
button.b24-form-btn:disabled:before {
  height: 0;
}

.btn.small,
button.b24-form-btn.small {
  --fz: var(--fz-small);
  --field: var(--field-small);
  border-radius: 0.7rem;
}

.btn.small span.text,
button.b24-form-btn.small span.text {
  font-weight: 300;
}

.btn.smaller,
button.b24-form-btn.smaller {
  --fz: var(--fz-smaller);
  --field: var(--field-smaller);
}

.btn.large,
button.b24-form-btn.large {
  --fz: var(--fz-large);
  --field: var(--field-large);
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn.larger,
button.b24-form-btn.larger {
  --fz: var(--fz-larger);
  --field: var(--field-larger);
}

.btn.full,
button.b24-form-btn.full {
  width: 100%;
  justify-content: center;
}

@keyframes spinner {
  from {
    transform: none;
  }

  to {
    transform: rotate(360deg);
  }
}

.btn .spinner,
button.b24-form-btn .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn .spinner:before,
button.b24-form-btn .spinner:before {
  content: "";
  animation: spinner 0.5s infinite linear;
  display: block;
  border-radius: 100%;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid var(--text-grey-light);
  border-right: 2px solid var(--text);
}

.btn.loading .text,
.btn.loading .icon,
button.b24-form-btn.loading .text,
button.b24-form-btn.loading .icon {
  opacity: 0;
}

body .slick-list {
  overflow: hidden;
}

body .slick-list .slick-track {
  display: flex;
}

.wrapper {
  display: flex;
  align-items: baseline;
  font-size: var(--fz-smaller);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.wrapper label {
  cursor: pointer;
}

.wrapper .checkbox {
  flex-shrink: 0;
}

.wrapper .checkbox input {
  display: none;
}

.wrapper .checkbox label {
  width: var(--checkbox);
  height: var(--checkbox);
  border: 1px solid var(--field-border);
  border-radius: var(--rad-small);
  overflow: hidden;
  display: block;
  transition: 0.2s;
  cursor: pointer;
  background: var(--field-bg);
}

.wrapper .checkbox label:before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transform: translateY(-100%);
  transition: 0.3s;
  color: #fff;
}

.wrapper .checkbox input:checked + label {
  background: var(--theme);
  border-color: rgba(0, 0, 0, 0);
}

.wrapper .checkbox input:checked + label:before {
  transform: none;
}

.wrapper .checkbox input:checked:active + label {
  background: var(--theme-dark);
}

.wrapper .checkbox.error label {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 0 0 5px var(--red-focus);
}

.wrapper .checkbox.error input:checked + label {
  background: var(--red);
}

.wrapper .checkbox.error input:checked:active + label {
  background: var(--red-dark);
}

.wrapper .label {
  margin-left: 1rem;
}

.wrapper {
  position: relative;
  width: 100%;
}

.b24-form-control-string .b24-form-control,
.b24-form-control-list .b24-form-control,
.b24-form-control-text .b24-form-control,
.b24-form-control-select .field-item {
  border-radius: 4px;
  border: none !important;
  height: var(--field);
  border-bottom: 1px solid var(--theme-opacity) !important;
  background: rgba(0, 0, 0, 0) !important;
}

.label {
  font-size: var(--fz-smaller);
  margin-bottom: 0.5rem;
  display: block;
  color: var(--text-grey);
}

.label .mark {
  color: var(--red);
  margin-left: 0.2em;
}

.program .section__title img {
  margin-left: auto;
}

.program .section__title p {
  max-width: 100% !important;
}

body input:not([type="checkbox"]) {
  width: 100%;
  height: var(--field);
  font-size: var(--fz);
  border: 1px solid var(--field-border);
  border-radius: var(--rad);
  padding: 0 1.5rem;
  outline: none;
  transition: 0.3s;
  background: none;
  color: var(--text);
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--field-bg);
}

body input:not([type="checkbox"])::-moz-placeholder {
  color: var(--text-grey-light);
}

body input:not([type="checkbox"])::placeholder {
  color: var(--text-grey-light);
}

body input:not([type="checkbox"]):hover {
  background: var(--grey-bg);
}

body input:not([type="checkbox"]):focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 1px var(--theme), 0 0 0 5px var(--theme-focus);
}

body input:not([type="checkbox"]).small {
  --fz: var(--fz-small);
  --field: var(--field-small);
}

body input:not([type="checkbox"]).smaller {
  --fz: var(--fz-smaller);
  --field: var(--field-smaller);
}

body input:not([type="checkbox"]).large {
  --fz: var(--fz-large);
  --field: var(--field-large);
}

body input:not([type="checkbox"]).larger {
  --fz: var(--fz-larger);
  --field: var(--field-larger);
}

body input:not([type="checkbox"]).error {
  border-color: var(--theme);
  --theme: var(--red);
  --theme-focus: var(--red-focus);
}

body input:not([type="checkbox"]).center {
  text-align: center;
}

.icon,
.afterIcon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--fz) * 1.2);
  padding: 0 1.5rem;
  pointer-events: none;
  color: var(--text-grey-light);
}

.icon.afterIcon,
.afterIcon.afterIcon {
  left: auto;
  right: 0;
}

.icon + .input {
  padding-left: 4.5rem;
}

.afterIcon + .input {
  padding-right: 4.5rem;
}

.description {
  margin-top: 0.8rem;
  font-size: var(--fz-small);
  color: var(--text-grey);
  line-height: 1.3;
}

.description:before {
  margin-right: 0.3em;
  transform: translateY(10%);
  display: inline-block;
}

.errorMessage {
  margin-top: 0.6rem;
  font-size: var(--fz-small);
  color: var(--red);
  line-height: 1.3;
}

.errorMessage:before {
  margin-right: 0.3em;
  transform: translateY(10%);
  display: inline-block;
}

.sliderWrapper .inputs {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.sliderWrapper .inputs > *:not(.inputsSep) {
  width: 0;
  flex-grow: 1;
}

.sliderWrapper .inputs .inputsSep {
  margin: 0 0.4rem;
}

.sliderWrapper .labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  font-size: var(--fz-smaller);
  color: var(--text-grey);
  margin-top: 1rem;
}

.accordion {
  max-width: 65%;
  margin: 0 auto;
}

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

.accordion-item {
  border-bottom: 1px solid #d7dae2;
}

.accordion-item-header {
  height: 7rem;
  transition: 0.3s;
  display: flex;
  font-size: 1.65rem;
  font-weight: 700;
  align-items: center;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

@media (max-width: 767px) {
  .accordion-item-header {
    padding-right: 4rem;
  }
}

.accordion-item-header .trigger {
  position: absolute;
  right: 0;
  top: 2rem;
  height: 3rem;
  width: 3rem;
}

.accordion-item-header .trigger img {
  height: 3.5rem;
  width: 3.5rem;
}

@media (max-width: 767px) {
  .accordion-item-header .trigger img {
    width: 3rem;
    height: 2rem;
  }
}

.accordion-item-header.active .trigger {
  transform: rotate(180deg);
  transform-origin: center;
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion-item-body-content {
  color: #555a65;
  max-width: 80%;
  padding-bottom: 3rem;
  font-size: 1.35rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .accordion-item-body-content {
    max-width: 90%;
  }
}

section.main {
  width: 100%;
}

.about__inner {
  display: flex;
  align-items: center;
}

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

.about__inner .ab__image {
  width: 45%;
  margin-right: 6rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about__inner .ab__image {
    width: 100%;
    order: 2;
    margin-right: 0;
  }
}

.about__inner .ab__image img {
  width: 100%;
}

.about__inner .ab__text {
  flex-grow: 1;
  text-align: left !important;
}

.about__inner .ab__text h4 {
  line-height: 1;
}

.about__inner .ab__text p {

line-height: 1.5;
max-width: 70%;

   }

   .about__inner .ab__text p b {
    font-weight: 600;
   }

@media (max-width: 767px) {
  .about__inner .ab__text {
    order: 1;
    margin-bottom: 3rem;
  }
}

.about__benefits {
  background-color: #f9fafb;
  border-radius: var(--rad);
  position: relative;
}

.about__benefits h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.about__benefits::after {
  content: "";
  background-image: url(./images/fs-after.png);
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.about__benefits::before {
  content: "";
  background-image: url(./images/fs-after.png);
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.about__benefits .benefits__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 4rem !important;
  position: relative;
}

.about__benefits .benefits__items > * {
  width: calc(100% / var(--third) - 4rem);
  margin-right: 4rem;
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1.4;
}

.about__benefits .benefits__items > * img {
  width: 10rem;
  height: 10rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.about__benefits .benefits__items > *:not(:last-child) {
  margin-right: 4rem;
}

section.last h3 {
  text-align: center;
  margin-bottom: 2rem;
}

section.last p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 6rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1F1F1F;
}

section.last .tabs {
  display: flex;

  margin-bottom: 3rem;
width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 2rem;
  height: 4.25rem;padding: 4px;
}

@media (max-width: 767px) {
  section.last .tabs {
    max-width: 100%;
  }
  section.main .main__content .content {
    padding-bottom: 3rem !important;
  }


  .about__inner .ab__text p {
    max-width: 100%;
  }
  section.main .main__content .content h1 {
    font-size: 3rem;
  }
}

section.last .tabs button.active {
    background-color: #E50914;
    color: #fff;
}

section.last .tabs button {
background-color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  transition:0.3s ;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.5rem;
  border-radius: 2rem;
}


section.last .tab-content {
  display: none;
}

section.last .tab-content.active {
  display: block;
}

section.last .table-wrapper {
  overflow-x: auto;

}


section.last .pad {
    padding: 0 1.5rem;
}


tbody tr {
    font-weight: 300;
}

tr>*:nth-child(3) {
font-weight: 500;
}

tr>*:nth-child(2) {
    width: 20%;
    text-align: center !important;
}
section.last .rad {
    border-radius: 1.25rem;
    overflow: hidden;
 
    border: 1px solid #E5E5E5 !important;
}

section.last table {
    
width: 100%;
  border-collapse: collapse;
  border-radius: 1.25rem;


}
section.last table tbody>*:not(:last-child) {
    border-bottom: 1px solid #e9e6e6;
}

section.last table tr td:last-child {
  width: 12%;
}

@media (max-width: 767px) {
  section.last table {
    max-width: 100%;
  }

  section.last table tr td:last-child {
    width: 18%;
  }
  
  section.last table tr td:nth-child(1) {
    width: 10%;
  }

  section.last table tr td:nth-child(2) {
    width: 15%;
  }

  section.last table tr td:nth-child(3) {
    width: 30%;
  }
}


table {
    background-color: #fff;
}
section.last {
    background-color: #F5F5F5;
}

section.last thead {
  background-color: #e5ebff;
}

section.last thead tr {
  background-color: #1F1F1F !important;
  color: #fff;
}
thead tr>*:nth-child(3){
    padding-left: 6rem !important;
}
section.last th,
section.last td {
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
line-height: 1.5;
  text-align: left;
}

.bottom-text {
    text-align: center;
line-height: 1.5;
color: #1F1F1F;
    margin: 0 auto;
    padding-top: 4rem;
}



tbody tr {
    color: #3A3A3C !important;
}
@media (max-width: 767px) {
  section.last th,
  section.last td {
    font-size: 1rem;
    padding: 1.4rem 1rem;
  }
}

section.last tr:nth-child(even) {
  /* background-color: #ffe6e6; */
}

section.last tr:nth-child(odd) {
  /* background-color: #fff; */
}

@media (max-width: 600px) {
  section.last table {
    font-size: 0.9rem;
  }

  section.last th,
  section.last td {
    padding: 0.8rem;
  }
}

section.spikers p {
  text-align: center;
  margin-bottom: 6rem !important;
  font-size: 1.65rem;
  line-height: 1.4;
}

section.spikers .spikers__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

section.spikers .spikers__content > * {
  width: calc(100% / var(--card) - 5rem);
  margin-right: 5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.spikers .spikers__content > * {
    margin-right: 2rem;
    width: calc(100% / var(--card) - 2rem);
    margin-bottom: 2rem;
  }
}

section.spikers .spikers__content > * img {

  width: 12rem;
  height: 12rem;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  section.spikers .spikers__content > * img {
    width: 7rem;
    height: 7rem;
  }
}

section.spikers .spikers__content > * .title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

section.spikers .spikers__content > * .desc {
  color: #777777;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 300;
}

.b24-window-close {
  background-color: var(--theme-light) !important;
}

.b24-form-sign {
  display: none !important;
}

body .b24-form-wrapper.b24-form-border-bottom {
  border-bottom: none !important;
}

body .b24-window-overlay {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

body .b24-window-panel-pos-center {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto !important;
}

body .b24-window-panel {
  height: 60vh;
}

.price-comparison {
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .price-comparison {
    max-width: 100%;
    overflow-x: auto;
  }
}

.price-comparison__row {
  display: flex;
  padding: 1.8rem 0 1.8rem 2rem;
  background-color: #faf8f8;
  border-radius: 1.5rem;
}

@media (max-width: 767px) {
  .price-comparison__row {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.price-comparison__cell--crossed {
  position: relative;
  display: inline-block;
  color: #333;
}

.price-comparison__cell--crossed::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.5rem;
  height: 2px;
  background-color: var(--text);
  transform: translateX(-50%) rotate(-15deg);
  transform-origin: center;
}

.price-comparison__cell {
  text-align: center;
}

.price-comparison__cell:nth-child(1) {
  text-align: left;
  font-weight: 600;
}

.price-comparison__cell:first-child {
  flex: 0 0 50%;
  text-align: left;
}

@media (max-width: 767px) {
  .price-comparison__cell:first-child {
    flex: 0 0 20rem;
  }
}

.price-comparison__cell:nth-child(2),
.price-comparison__cell:nth-child(3) {
  flex: 0 0 25%;
}

@media (max-width: 767px) {
  .price-comparison__cell:nth-child(2),
  .price-comparison__cell:nth-child(3) {
    flex: 0 0 25rem;
  }
}

.price-comparison__row--title {
  background-color: #111;
  color: #fff;
  font-weight: bold;
}

.price-comparison__row:nth-child(odd):not(.price-comparison__row--title):not(
    .price-comparison__row--new
  ) {
  background-color: #ededed;
}

.price-comparison__row--old {
  background-color: #cfcfcf !important;
}

.price-comparison__row--new {
  background-color: var(--red);
  color: #fff;
  font-weight: bold;
}

.about__title {
  text-align: center;
  margin-bottom: 4rem;
}

.about__title h5 {
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about__title .text {
  font-size: 1.8rem;
}

.price-comparison__row--actions {
  justify-content: space-around;
  padding: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  width: calc(100% + 0.5rem);
}

.price-comparison__row--actions .btn {
  border-radius: 1.5rem;
  flex-grow: 1;
  width: calc(100% - 0.5rem);
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .price-comparison__row--actions .price-comparison__cell:nth-child(2),
  .price-comparison__row--actions .price-comparison__cell:nth-child(3) {
    flex: 0 0 26.25rem;
  }
}

.order .uc-registration-input label {
  color: #000 !important;
}

.about {
  position: relative;
}

.about ul {
  list-style-type: disc;
  margin-top: 2rem;
}

.about ul li {
  color: #8c919b;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1.75rem;
}

section.partners {
  text-align: center;
}

section.partners h3 {
  margin-bottom: 3rem;
  font-size: var(--h4);
}

section.partners .first__item img {
  height: 12rem;
  -o-object-fit: contain;
  object-fit: contain;
}

section.partners .partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--padding);
}

@media screen and (max-width: 768px) {
  section.partners .partners__item {
    flex-direction: column;
  }
}

section.partners .partners__item img {
  width: 25%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

section.partners .partners__item img:not(:last-child) {
  margin-right: var(--padding);
}

@media screen and (max-width: 768px) {
  section.partners .partners__item img:not(:last-child) {
    margin-bottom: 4rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  section.partners .partners__item img {
    height: 7rem;
    width: auto;
  }

  section.partners .partners__item img:last-child {
    height: 6rem;
  }
}

.about__right-img {
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 40%;
  z-index: -1;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.prize {
  position: relative;
  z-index: 20;
}

.prize .content {
  padding-top: 3rem;
}

@media (max-width: 767px) {
  .prize .content {
    margin-bottom: 2rem;
    text-align: center;
  }
}

.section__title {
  display: flex;
}

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

.section__title .section__title-text {
  width: 35%;
  flex-shrink: 0;
  margin-right: 3rem;
}

@media (max-width: 767px) {
  .section__title .section__title-text {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.section__title .section__title-text .sub-title {
  margin-bottom: 3.25rem;
}

.section__title svg {
  margin-left: auto;
}

@media (max-width: 767px) {
  .section__title svg {
    margin-top: -2rem;
  }
}

.section__title h3 {
  width: 45%;
  flex-shrink: 0;
  line-height: 1.2;
}

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

.section__title h3 span {
  color: var(--text-grey);
}

.about__content {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1rem);
}

.about__content > * {
  height: 6rem;
  border-radius: 5px;
  padding: 0 2rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .about__content > * {
    font-size: 1.65rem;
    font-weight: 600;
  }
}

.about__content > *:not(:last-child) {
  width: calc(50% - 1rem);
  margin-right: 1rem;
  margin-bottom: 1rem;
  background-color: #ececec;
}

@media (max-width: 767px) {
  .about__content > *:not(:last-child) {
    width: calc(100% - 1rem);
  }
}

.about__content > *:last-child {
  width: calc(100% - 1rem);
  color: #fff;
  background: radial-gradient(
    143.01% 258.31% at 100% -69.84%,
    #e31724 3.28%,
    #ffadb3 38.44%,
    #e31724 68.7%,
    #e41d2a 100%
  );
}

.conference-benefits {
  background-color: var(--border);
}

.conference-benefits__tag {
  font-size: 1.4rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid #000;
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  margin-bottom: 2rem;
}

.conference-benefits__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #212121;
}

.conference-benefits__title--light {
  font-weight: 500;
  color: #8a8f98;
}

.conference-benefits__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% + 1.5rem);
  margin-bottom: -1.5rem;
}

.conference-benefits__card {
  background: var(--bg-opacity);
  padding: 2.5rem;
  border-radius: 1.2rem;
  width: calc(100% / var(--card) - 1.5rem);
  margin-right: 1.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 18rem;
  box-shadow: var(--shadow);
}

.conference-benefits__card--highlighted {
  background: radial-gradient(
    220.01% 240.31% at 100% -60.84%,
    #e31724 2.28%,
    #ffadb3 38.44%,
    #e31724 55.7%,
    #e41d2a 100%
  );
}

.conference-benefits__text {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.conference-benefits__text--white {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .conference-benefits__text {
    font-size: 1.4rem;
  }
}

.conference-benefits .btn {
  margin-left: auto;
}

section.actual h3 {
  margin-bottom: 6rem;
}

section.actual .actual__content {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 4rem);
  margin-bottom: -2rem;
}

section.actual .actual__content > * {
  width: calc(100% / var(--card) - 4rem);
  margin-right: 4rem;
  margin-bottom: 2rem;
}

section.actual .actual__content > * svg {
  width: 4.5rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  section.actual .actual__content > * svg {
    margin-bottom: 1rem;
  }
}

section.actual .actual__content > * .title {
  font-size: 1.5rem;
}

section.programm {
  position: relative;
}

section.programm .bottom__content {
  position: relative;
}

section.programm .bottom__content h6 {
  max-width: 50%;
  line-height: 1.2;
  margin-bottom: 3rem;
}

section.programm .bottom__content .btn {
  display: flex;
  align-items: center;
}

section.programm .bottom__content .btn:hover svg {
  margin-left: 0;
}

section.programm .bottom__content .btn svg {
  margin-left: 0.5rem;
  width: 1.75rem;
  height: 1.5rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

section.programm .tabs {
  display: flex;
  margin-bottom: 4rem;
  width: calc(100% + 1rem);
}

.last__section {
  position: relative;
}

.last__section h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: var(--h1);
}

.last__section .last__block {
  max-width: 65%;
  margin: 0 auto;
  padding-top: 4rem;
}

@media screen and (max-width: 1299px) {
  .last__section .last__block {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .last__section .last__block {
    max-width: 100%;
  }
}

.last__section .last__block .content {
  text-align: left;
}

.last__section .last__block .image {
  position: absolute;
  z-index: -1;
  bottom: -3px;
  right: calc((100vw - var(--container)) / 1.35);
  width: 25%;
}

@media screen and (max-width: 1299px) {
  .last__section .last__block .image {
    display: none;
  }
}

.last__section h4 {
  max-width: 100%;
  font-size: var(--h5);
}

@media screen and (max-width: 1299px) {
  .last__section h4 {
    text-align: center;
  }

  .last__section h4 br {
    display: none;
  }
}

@media screen and (max-width: 1299px) {
  .last__section h4 {
    max-width: 100%;
    font-size: 1.75rem;
  }
}

.last__section .btn {
  margin-top: 3rem;
}

@media screen and (max-width: 1299px) {
  .last__section .btn {
    margin: 3rem auto 0 auto;
  }
}

.last__section .btn span {
  color: var(--red);
}

body section.programm {
  padding-top: 2rem !important;
}

@media (max-width: 767px) {
  .programm {
    padding-bottom: var(--field) !important;
  }
}

.programm .section-title {
  display: none;
}

.order {
  z-index: 22;
  position: relative;
}

.order .uc-registration-wrapper {
  margin: 0;
  padding: 0;
  max-width: 40%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .order .uc-registration-wrapper {
    max-width: 100%;
  }
}

section.order {
  margin-bottom: 6rem !important;
}

.uc-them-dark {
  color: var(--text) !important;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.card {
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  padding: 3rem 4rem;
  flex: 1 1 18rem;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.card.highlight {
  background-color: #f9fafb;
}

.price h3 {
  margin-bottom: 4rem;
  line-height: 1.3;
  text-align: center;
}

.card h5 {
  margin-bottom: 3rem;
  text-align: left;
  line-height: 1.3;
  font-size: 2rem;
}

.highlight-text {
  color: #dc2626;
}

.price-btn {
  display: inline-block;
  padding: 1.4rem 1.5rem;
  font-weight: 600;
  border-radius: var(--rad);
  color: #fff;
  width: 100%;
  font-size: 1.55rem;
  margin-top: auto;
}

.price-btn.red {
  background-color: #dc2626;
}

.price-btn.dark {
  background-color: #111827;
}

.card ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 1.2rem;
  margin-top: auto;
}

.card ul li {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    width: 100%;
  }
}

section.order {
  width: calc(var(--container) + 10rem);
  margin: 0 auto;
}

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

@media (max-width: 767px) {
  section.order .order__content {
    padding: 3rem var(--section-p);
  }
}

section.order h3 {
  line-height: 1.2;
}

section.order .text {
  margin-right: 10rem;
  padding-top: 2rem;
}

section.order .text p {
  font-size: 1.65rem;
  line-height: 1.4;
  margin-top: 2rem;
}

section.order .form {
  width: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  section.order .form {
    width: 100%;
    margin-top: 3rem;
  }
}

.order__content {
  padding: var(--field-large);
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.order__content .section__title p {
  max-width: 60%;
}

@media screen and (max-width: 768px) {
  .order__content {
    flex-direction: column;
    padding-bottom: var(--field-large);
  }
}

.order__content .section__title {
  padding-top: var(--field-large);
}

.order__content .section__title p {
  max-width: 100% !important;
}

@media screen and (max-width: 768px) {
  .order__content {
    padding: 0;
  }
}

.order__title {
  flex-direction: column;
}

.order__title h3 {
  font-size: var(--h1);
}

section.programm .tabs .tab-button {
  transition: 0.5s;
}

section.programm .tabs .tab-button:hover {
  background-color: var(--red-light);
  border-color: var(--red-light);
  color: #fff;
}

section.programm .tab__content {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  section.programm .tab__content {
    max-width: 100%;
  }
}

section.programm .tab__content .tab-panel {
  transform: translateY(-30px);
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

section.programm .tab__content .tab-panel.active {
  height: 100%;
  opacity: 1;
  transform: translateY(0);
}

.program__content {
  color: #232323;
}

.tabs {
  display: flex;

  justify-content: center;
  margin-bottom: var(--field-large);
}

@media screen and (max-width: 768px) {
  .tabs {
    justify-content: flex-start;
  }
}

.tab-button {
  padding: 1.25rem 2rem;
  border-radius: 2.25rem;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #6e7179;
  cursor: pointer;
  color: #6e7179;
  font-weight: 400;
  font-size: 1.65rem;
}

.tab-button.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.top-title h5 {
  font-weight: 500;
  margin-bottom: var(--field-large);
  font-size: 2.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  max-width: 40%;
}

@media screen and (max-width: 768px) {
  .top-title h5 {
    margin-bottom: 2rem;
    font-size: 2rem;
    margin-left: 0;
    max-width: 100%;
  }
}

.prize__content {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .prize__content {
    flex-direction: column;
    max-width: 100%;
  }
}

.prize__content .image {
  width: 45%;
  flex-shrink: 0;
  z-index: -1;
  margin-bottom: -3px;
}

@media (max-width: 767px) {
  .prize__content .image {
    width: 90%;
    margin-left: auto;
    z-index: -1;
    margin-top: 2rem;
    margin-bottom: -3px;
    margin-right: auto;
  }
}

.prize__content .content p {
  line-height: 1.4;
  margin: 2rem 0 3rem;
}

.prize__content .content .btn {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .prize__content .content .btn {
    padding-left: 4rem;
    padding-right: 3rem;
    margin: 0 auto;
  }
}

.tab-panel {
  position: relative;
}

section.programm {
  background-color: var(--border);
}

section.programm {
  background-color: var(--border);
}

section.programm .spiker {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--rad);
  padding: 2.4rem 6rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

section.programm .spiker:nth-child(even) {
  background-color: #e7e7e7;
}

section.programm .spiker::after {
  content: "";
  border-left: 1px solid #4d4d4d;
  position: absolute;
  left: calc(3rem + 2.5px);
  bottom: auto;
  top: 3rem;
  height: calc(100% + 2rem);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  section.programm .spiker {
    flex-direction: column;
  }
}

section.programm .spiker::before {
  content: "";
  position: absolute;
  left: 3rem;
  top: 2.9rem;
  width: 6px;
  z-index: 2;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

section.programm .left-block {
  display: flex;
  align-items: flex-start;
  width: 58%;
  margin-right: 2rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  section.programm .left-block {
    margin-bottom: 2rem;
    flex-direction: column;
    width: 100%;
  }
}

section.programm .left-block .time {
  font-size: 1.45rem;
  width: 20%;
  flex-shrink: 0;
  display: none;
}

@media screen and (max-width: 768px) {
  section.programm .left-block .time {
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--bg-opacity);
    border-radius: 2rem;
    padding: 0.7rem 1.25rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
  }
}

section.programm .left-block .md-text {
  font-weight: 600;
}

section.programm .right-block {
  display: flex;
  align-items: flex-start;
}

section.programm .right-block .inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

section.programm .right-block .image {
  display: none;
}

section.programm .right-block .image img {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

section.programm .right-block .text .name {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

section.programm .right-block .text p {
  color: #373737;
  margin: 0;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.4;
}

section.programm .spiker:last-child {
  background: #4d4d4d;
  color: #fff;
}

section.programm .spiker:last-child::after {
  content: none;
}

@media screen and (max-width: 768px) {
  section.programm .spiker:last-child .left-block .time {
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--bg-opacity);
    color: #373737;
  }
}

section.programm .spiker:last-child .text p,
section.programm .spiker:last-child .name,
section.programm .spiker:last-child .time,
section.programm .spiker:last-child .md-text {
  color: #fff;
}

section.programm .spiker:last-child::before {
  background: #fff;
}

span.theme {
  color: var(--theme);
}

h3.tac {
  text-align: center;
  padding-bottom: 4rem;
}

ul {
  font-size: 1.5rem;
}

ul > *:not(:last-child) {
  margin-bottom: 1rem;
}

header ul > *:not(:last-child) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  section.order {
    padding-bottom: var(--field);
  }
}

section.info .info__content > *:first-child {
  margin-bottom: var(--field);
}

section.info .info__content .info__block > * {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 3rem;
}

section.info .info__content .info__block > * > *:not(:last-child) {
  margin-right: var(--field);
}

section.info .info__content .info__block > * img {
  height: var(--field);
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.3s;
}

section.info .info__content .info__block > * img:hover {
  transform: scale(0.9);
}

@media screen and (max-width: 768px) {
  section.info .info__content .info__block > * img {
    height: var(--field-small);
  }
}

ul.styled {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: 0.3s;
}

ul.styled.show {
  height: auto;
  opacity: 1;
  overflow: visible;
}

ul.styled {
  list-style-type: disc;
  padding-left: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

ul.styled li::marker {
  color: var(--theme);
  font-size: 15px;
}

.inner span.name {
  font-style: italic;
  font-size: 2rem;
  margin: 1rem 0 -1rem 0;
  display: flex;
}

section.tabs .tab__content .profiles > * .profile__regalia {
  max-width: 100% !important;
}

.more {
  margin: 2rem 0 1.4rem;
  font-size: 1.5rem;
}

section.tabs .tabs__items {
  min-height: 100vh !important;
}

@media (max-width: 767px) {
  section.tabs .tabs__items {
    min-height: 150rem;
  }

  .more {
    margin-left: auto;
    margin-right: auto;
  }

  .inner span.name {
    text-align: center;
    justify-content: center;
  }
}

section.register .register__content .register__info {
  margin-top: 3rem;
}

.section__title .section__title-text .sub-title.sub-title-sm {
  display: none;
}

@media (max-width: 767px) {
  section.register .register__content .register__info {
    margin-top: 0;
  }

  .section__title svg {
    display: none;
  }

  .section__title .section__title-text {
    order: 2;
    margin-top: 2rem;
    margin-bottom: 0 !important;
  }

  .section__title .section__title-text .sub-title {
    display: none;
  }

  .section__title .section__title-text .sub-title.sub-title-sm {
    display: block;
    margin-bottom: 2rem;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("./fonts/icomoon.eot");
  src: url("./fonts/icomoon.eot") format("embedded-opentype"),
    url("./fonts/icomoon.ttf") format("truetype"),
    url("./fonts/icomoon.woff") format("woff"),
    url("./fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-clock:before {
  content: "î¤€";
}

.icon-after:before {
  content: "î¤";
}

.icon-balance:before {
  content: "î¤‚";
}

.icon-before:before {
  content: "î¤„";
}

.icon-calendar:before {
  content: "î¤…";
}

.icon-cart:before {
  content: "î¤†";
}

.icon-facebook:before {
  content: "î¤Š";
}

.icon-instagram1:before {
  content: "î¤‹";
}

.icon-map:before {
  content: "î¤Œ";
}

.icon-pattern:before {
  content: "î¤";
}

.icon-quote:before {
  content: "î¤Ž";
}

.icon-valute:before {
  content: "î¤";
}

.icon-instagram:before {
  content: "î¤‡";
}

.icon-telegram:before {
  content: "î¤ˆ";
}

.icon-vk:before {
  content: "î¤‰";
}

.header {
  height: var(--header);
}

.header__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
}

.header__nav-list {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-item {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  transition: 0.3s;
}

.header__nav-item a:hover {
  border-bottom: 2px solid var(--red);
  color: var(--text) !important;
}

.header__nav-item a.theme {
  color: var(--red);
}
