@font-face {
    font-family: "Unbounded";
    src: url("../fonts/Unbounded-Regular.woff2") format("woff2"), url("../fonts/Unbounded-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent !important;
}
  
*::after,
*::before {
    box-sizing: border-box;
}
  
html {
    height: 100%;
    font-size: 16px;
}
  
body {
    height: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1.125rem;
    line-height: normal;
    background: #FFFFFF;
    color: #333333;
}
body:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.25s ease-in-out, z-index 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
  
a,
.as_link {
    text-decoration: underline;
}
  a img,
.as_link img {
    border: none;
}
  
.as_link {
    cursor: pointer;
}
  
img {
    display: block;
    max-width: 100%;
    height: auto;
}
  
svg {
    display: block;
}
  
ul {
    list-style-position: outside;
    margin-left: 1.8rem;
}
  
ol {
    list-style-position: outside;
    margin-left: 1.8rem;
}
  
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
  
button {
    color: inherit;
    background: none;
    padding: 0;
    border: none;
    outline: none;
    font-size: inherit;
    cursor: pointer;
}
  
.nowrap {
    white-space: nowrap;
}
  
.container {
    width: 1328px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 8px;
}
  
.text_center {
    text-align: center;
}

.bg_light_grey{
    background-color: #F5F6F7;
}

.bg_light_grey .header,
.bg_light_grey .header_inner{
    background-color: #F5F6F7;
}
  
.close_cross {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}
.close_cross::before, .close_cross::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background-color: #333333;
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.1s ease-in-out;
}
.close_cross::before {
    transform: rotate(45deg);
}
.close_cross::after {
    transform: rotate(-45deg);
}
@media (hover: hover) {
  .close_cross:hover::before, .close_cross:hover::after {
      background-color: #FF1313;
  }
}
.close_cross:active::before, .close_cross:active::after {
    background-color: #FF1313;
}
  
.app {
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
  
.main {
    width: 100%;
    height: 100%;
    flex-grow: 1;
}
  
.d_none {
    display: none !important;
}
  
.section_title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    line-height: normal;
    margin-bottom: 32px;
    text-align: center;
}
  
.c_red {
    color: #FF1313;
}
  
.modal-dialog {
    height: auto;
    min-height: calc(100% - 3.5rem);
    margin: 50px auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}
  
.modal-dialog--form {
    width: 100%;
    max-width: 455px;
}
  
.modal-dialog--success {
    width: 100%;
    max-width: 416px;
}
  
.modal-dialog--find-city {
    width: 100%;
    max-width: 455px;
}
  
.modal-content {
    border-radius: 0;
    border: none;
    background: none;
    box-shadow: none;
    padding-bottom: 50px;
}
  
.modal-header {
    padding: 0;
    border: none;
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: -5px;
    margin-top: -50px;
    height: 100px;
}
  
.modal-body {
    padding: 24px;
    min-height: 320px;
    background-color: #FFFFFF;
    border-radius: 40px;
    margin-top: -50px;
}
  
.modal-close.close_cross::before, .modal-close.close_cross::after {
    background-color: #FFFFFF;
}
  
.modal-body--success {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}
  
.modal-body--find-city {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}
  
.success_txt__title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 28px;
}
  
.success_txt__descr {
    font-size: 1rem;
}
  
.find_city__title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 28px;
}
  
.find_city__descr {
    font-size: 1rem;
}
  
.tab_content {
    display: none;
}
.tab_content._active {
    display: block;
}
  
@media (max-width: 576px) {
  .section {
      margin-top: 40px !important;
  }
  .section_title {
      font-size: 1.5rem;
      margin-bottom: 16px;
      text-align: left;
  }
}
.form_header {
    text-align: center;
    margin-bottom: 16px;
}
  
.form_title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 30px;
}
  
.form_register_info {
    font-size: 1.125rem;
    margin-top: 4px;
}
  
.label_placeholder {
    font-size: 0.8125rem;
    margin-bottom: 4px;
    display: block;
}
  
  input,
  select,
  textarea {
    width: 100%;
    height: 48px;
    display: block;
    background-color: #F2F5FA;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #F2F5FA;
    font-size: 1rem;
    color: #333333;
}
  input::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #777777;
    opacity: 0;
}
  input::-moz-placeholder,
  select::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #777777;
    opacity: 0;
}
  input:-ms-input-placeholder,
  select:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #777777;
    opacity: 0;
}
  input:-moz-placeholder,
  select:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #777777;
    opacity: 0;
}
  input._error,
  select._error,
  textarea._error {
    border-color: #FF1313;
}
  
.form_row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
}
.form_row:not(:first-child) {
    margin-top: 8px;
}
.form_row .form_col {
    width: 100%;
    margin-top: 0 !important;
}
  
.form_col {
    flex-grow: 1;
    width: 100%;
}
.form_col:not(:first-child) {
    margin-top: 8px;
}
.form_col.form_col__agree {
    margin-top: 16px;
}
.form_col.error input,
.form_col.error select,
.form_col.error textarea {
    border-color: #FF1313;
}
  
  label.error {
    font-size: 0.75rem;
    color: #FF1313;
    display: block;
}
  
.form_agree {
    font-size: 0.875rem;
}
  
.form__btn_wrap {
    margin-top: 24px;
}
.form__btn_wrap .btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px 24px 12px;
    min-height: 42px;
}
  
.form__url {
    margin-top: 20px;
    text-align: right;
}
.form__url span {
    border-bottom: 1px dashed;
    cursor: pointer;
    color: #757575;
    line-height: 12px;
    display: inline-block;
    font-size: 0.75rem;
}
@media (hover: hover) {
  .form__url span:hover {
      color: #333333;
  }
}
.form__url span:active {
    color: #333333;
}
.form__url a {
    font-size: 0.875rem;
    display: none;
}
.form__url._show a {
    display: inline-block;
}
  
  textarea {
    padding: 16px;
    max-width: 100%;
    min-width: 100%;
}
  
  select:has(option:checked:disabled) {
    font-weight: 400;
    color: #333333;
}
  
  select[multiple] {
    height: auto;
    padding: 8px;
    overflow: hidden;
}
  select[multiple] option {
    padding: 2px 8px;
}
  select[multiple] option:checked {
    background: #FBDB00;
    font-weight: 500;
}
  
.select_wrap {
    position: relative;
    background: #FFFFFF;
}
.select_wrap:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/icon__chevron_down__grey.svg") no-repeat center;
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: background 0.1s;
}
.select_wrap select {
    background: none;
    padding-right: 48px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.select_wrap select::-ms-expand {
    display: none;
}
@media (hover: hover) {
  .select_wrap:hover:after {
      background: url("../images/icon__chevron_down__red.svg") no-repeat center;
  }
}
.select_wrap:active:after {
    background: url("../images/icon__chevron_down__red.svg") no-repeat center;
}
  
.radio_title {
    margin-bottom: 8px;
}
  
.form_label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
    position: relative;
}
.form_label + .form_label {
    margin-top: 8px;
}
.form_label input {
    width: 16px;
    height: 16px;
    opacity: 0;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}
.form_label input[type=radio] + .input_txt::before {
    border-radius: 100%;
}
.form_label input[type=checkbox] + .input_txt::before {
    border-radius: 4px;
}
@media (hover: hover) {
  .form_label input:hover + .input_txt:before {
      border-color: #333333;
  }
}
.form_label input:active + .input_txt:before {
    border-color: #333333;
}
.form_label input:checked + .input_txt:before {
    background-repeat: no-repeat;
    background-position: center center;
}
.form_label input:checked[type=radio] + .input_txt:before {
    border-color: #FACC15;
    background-color: #FACC15;
}
.form_label input:checked[type=radio] + .input_txt:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 16px;
    background-color: #FFFFFF;
    position: absolute;
    top: 6px;
    left: 6px;
}
.form_label input:checked[type=checkbox] + .input_txt:before {
    border-color: #FACC15;
    background-color: #FACC15;
    background-image: url("../images/icon__check_black.svg");
}
.form_label .input_txt {
    flex-grow: 1;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    -moz-column-gap: 8px;
         column-gap: 8px;
    font-size: 0.75rem;
}
.form_label .input_txt:before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    display: block;
    position: relative;
    border: 1px solid #646770;
}
  
.file_label {
    display: block;
    position: relative;
}
@media (hover: hover) {
  .file_label:hover svg {
      stroke: #FF1313;
      fill: #FF1313;
  }
}
.file_label:active svg {
    stroke: #FF1313;
    fill: #FF1313;
}
.file_label input[type=file] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    display: block;
    z-index: 2;
    cursor: pointer;
}
.file_label .file_btn {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 22px;
    letter-spacing: 0.01em;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.file_label svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: #F5F6F7;
    fill: #F5F6F7;
}
.file_label .btn_added {
    display: none;
}
.file_label .btn_txt,
.file_label .btn_added {
    padding-top: 3px;
}
.file_label._added .btn_txt {
    display: none;
}
.file_label._added .btn_added {
    display: block;
}
.file_label.file_select .file_btn {
    border: 1px solid #F2F5FA;
    border-radius: 8px;
    padding: 12px 16px;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
.file_label.file_select._hover .file_btn {
    border: 1px solid #F5F6F7;
}
.file_label.file_select._hover svg {
    stroke: #FF1313;
    fill: #FF1313;
}
  
.input_container {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    position: relative;
}
.input_container input[type=text] {
    padding-right: 50px;
}
.input_container .input_date {
    opacity: 0.1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.input_container .btn_date {
    width: 44px;
    height: 49px;
    margin-left: -44px;
    align-self: center;
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 2;
}
  
.label_row {
    display: flex;
    align-items: center;
    -moz-column-gap: 12px;
         column-gap: 12px;
}
  
.form_success {
    width: 100%;
    height: calc(100% - 4px);
    background: url("../images/form_success.png") no-repeat right 35px top 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 64px;
    border-radius: 8px 8px 24px 24px;
    position: absolute;
    left: 0;
    top: 4px;
    background-color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, z-index 0.2s ease-in-out;
}
.form_success._show {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
  
@media (max-width: 576px) {
  .label_placeholder {
      display: none;
  }
    input,
    select,
    textarea {
      width: 100%;
      height: 48px;
      display: block;
      background-color: #F2F5FA;
      padding: 0 16px;
      border-radius: 8px;
      border: 1px solid #F2F5FA;
      font-size: 1rem;
      color: #333333;
  }
    input::-webkit-input-placeholder,
    select::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
      color: #777777;
      opacity: 1;
  }
    input::-moz-placeholder,
    select::-moz-placeholder,
    textarea::-moz-placeholder {
      color: #777777;
      opacity: 1;
  }
    input:-ms-input-placeholder,
    select:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
      color: #777777;
      opacity: 1;
  }
    input:-moz-placeholder,
    select:-moz-placeholder,
    textarea:-moz-placeholder {
      color: #777777;
      opacity: 1;
  }
    input:focus::-webkit-input-placeholder,
    select:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder {
      opacity: 0;
  }
    input:focus::-moz-placeholder,
    select:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder {
      opacity: 0;
  }
    input:focus:-ms-input-placeholder,
    select:focus:-ms-input-placeholder,
    textarea:focus:-ms-input-placeholder {
      opacity: 0;
  }
    input:focus:-moz-placeholder,
    select:focus:-moz-placeholder,
    textarea:focus:-moz-placeholder {
      opacity: 0;
  }
    input._error,
    select._error,
    textarea._error {
      border-color: #FF1313;
  }
  .form_row {
      flex-direction: column;
  }
}
.btn {
    width: auto;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    font-size: 1.25rem;
    padding: 13px 32px 17px;
    text-align: center;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}
  
  a.btn {
    text-decoration: none;
}
  
.btn_red {
    background-color: #FF1313;
    color: #FFFFFF;
}
@media (hover: hover) {
  .btn_red:hover:not(:disabled) {
      background-color: #D20A11;
      color: #FFFFFF;
  }
}
.btn_red:active:not(:disabled) {
    background-color: #D20A11;
    color: #FFFFFF;
}
  
  body:has(.promo_section) .header .container {
    width: 1312px;
}
  
.header {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #FFFFFF;
}
.header .container {
    width: 1092px;
}
.header .logo_company {
    width: 64px;
}
  
.header_inner {
    width: 100%;
    background-color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0px;
    z-index: 10;
    box-shadow: -1px 21px 38px -28px rgba(0, 0, 0, 0);
    transition: box-shadow 0.15s ease-in-out, background-color 0.25s ease-in-out;
}
.header_inner._sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: -1px 21px 38px -28px rgba(0, 0, 0, 0.75);
}
.header_inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.25s ease-in-out, z-index 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
  
  body._menu .header {
    z-index: 16;
}
  body._menu .header_inner::after {
    opacity: 0.75;
    visibility: visible;
    z-index: 5;
}
  
.header_row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding: 0 24px;
}
  
.site_nav {
    font-size: 1rem;
    justify-self: flex-end;
    margin-left: auto;
}
.site_nav ul {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 40px;
         column-gap: 40px;
}
.site_nav span,
.site_nav a {
    text-decoration: none;
    color: #333333;
    cursor: pointer;
}
@media (hover: hover) {
  .site_nav span:hover,
  .site_nav a:hover {
      text-decoration: underline;
  }
}
.site_nav span:active,
.site_nav a:active {
    text-decoration: underline;
}
.site_nav .site_nav__item_cross,
.site_nav .site_nav__item_close,
.site_nav .site_nav__item_reg {
    display: none;
}
  
.site_title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
}
  
.header_date {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    justify-self: flex-end;
    margin-left: auto;
}
  
.site_menu {
    display: none;
}
  
@media (max-width: 1024px) {
  .header._show .site_nav {
      right: 0;
  }
  .site_menu {
      display: flex;
      align-self: flex-end;
      margin-left: auto;
  }
  .site_nav {
      display: block !important;
      height: 100%;
      width: calc(100% - 16px);
      background-color: #FFFFFF;
      border-radius: 28px 0 0 28px;
      padding: 8px;
      margin: 0;
      position: fixed;
      right: -100%;
      top: 0;
      z-index: 20;
      transition: right 0.25s ease-in-out;
  }
  .site_nav ul {
      height: 100%;
      flex-direction: column;
      align-items: flex-start;
  }
  .site_nav li {
      width: 100%;
      padding: 0 4px;
  }
  .site_nav span,
  .site_nav a {
      display: block;
      padding: 8px 16px;
  }
  .site_nav .site_nav__item_cross,
  .site_nav .site_nav__item_close,
  .site_nav .site_nav__item_reg {
      display: flex;
  }
  .site_nav .site_nav__item_close {
      margin-top: auto;
      margin-bottom: 24px;
      justify-content: center;
  }
  .site_nav .site_nav__item_close .close {
      color: #757575;
      font-size: 0.875rem;
      line-height: 19px;
  }
}
@media (max-width: 1024px) and (hover: hover) {
  .site_nav .site_nav__item_close .close:hover {
      text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .site_nav .site_nav__item_close .close:active {
      text-decoration: underline;
  }
  .site_nav .site_nav__item_reg {
      justify-content: center;
  }
  .site_nav .site_nav__item_reg .btn {
      width: 100%;
      max-width: 400px;
      font-size: 1rem;
      padding: 10px 24px 12px;
      min-height: 42px;
  }
  .site_nav .site_nav__item_cross {
      padding: 8px;
      margin-bottom: 8px;
      justify-content: flex-end;
  }
  .site_nav .site_nav__item_link {
      display: none;
  }
  .header_date,
  .site_title {
      display: none;
  }
}
@media (max-width: 768px) {
  .header {
      height: 48px;
  }
  .header .logo_company {
      width: 48px;
      height: 24px;
  }
  .header_inner {
      padding: 12px 0;
  }
  .header_inner._sticky {
      box-shadow: 0 0 38px -12px rgba(0, 0, 0, 0.75);
  }
}
.footer {
    width: 100%;
    flex-shrink: 0;
    background-color: #333333;
    padding: 20px 0;
    color: #999999;
    font-size: 0.875rem;
    line-height: 19px;
    margin-top: 64px;
}
.footer .footer_row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer .logo_company {
    position: relative;
    top: 3px;
}
.footer .logo_company svg {
    width: 64px;
    height: 31px;
    fill: #999999;
}
  
.footer_copyright {
    font-family: "Roboto", Helvetica, sans-serif;
    margin: 0 20px;
}
  
.social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
    margin-left: auto;
}
  
.social_title {
    font-family: "Roboto", Helvetica, sans-serif;
}
  
.social_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
  
.contacts {
    font-family: "Roboto", Helvetica, sans-serif;
    text-align: right;
    margin-left: 64px;
}
.contacts a {
    color: #999999;
    text-decoration: none;
}
@media (hover: hover) {
  .contacts a:hover {
      color: #FFFFFF;
      text-decoration: underline;
  }
}
.contacts a:active {
    color: #FFFFFF;
    text-decoration: underline;
}
  
@media (max-width: 768px) {
  .footer_row {
      flex-wrap: wrap;
  }
  .social {
      width: 100%;
      margin: 16px 0;
  }
  .contacts {
      margin-left: 0;
      text-align: left;
  }
}
@media (max-width: 576px) {
  .footer .footer_row {
      justify-content: center;
  }
  .social {
      justify-content: center;
  }
  .contacts {
      width: 100%;
      text-align: center;
  }
}
.promo_section .container {
    width: 1312px;
}
  
.promo {
    height: 464px;
    background: url("../images/promo_bg.svg") no-repeat;
    border-radius: 32px;
    padding-top: 96px;
    padding-left: 160px;
}
  
.promo_row {
    position: relative;
}
.promo_row::after {
    content: "";
    display: block;
    width: 95px;
    height: 87px;
    background: url("../images/lattice.svg") no-repeat;
    position: absolute;
    left: -70px;
    top: 75px;
    z-index: 1;
}
  
.promo_start {
    height: 58px;
    background-color: #FBDB00;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.25rem;
    line-height: 26px;
    position: relative;
    bottom: 12px;
    margin-right: 20px;
    margin-left: 64px;
}
  
.promo_time {
    padding-left: 8px;
    border-left: 2px solid #ffffff;
    margin-left: 8px;
}
  
.promo_title {
    margin: 0;
    display: inline;
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    line-height: 76px;
    position: relative;
    z-index: 2;
}
.promo_title span {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    line-height: 76px;
}
  
.promo_online__wrap {
    display: inline-block;
    margin-left: 20px;
    position: relative;
    bottom: 13px;
}
  
.promo_online {
    padding: 14px 32px 15px;
    border: 1px solid #333333;
    border-radius: 60px;
    font-size: 1.25rem;
}
  
.promo_arrrow {
    display: inline-block;
    width: 104px;
    height: 58px;
    border: 1px solid #333333;
    border-radius: 60px;
    background: url("../images/promo_arrow.svg") no-repeat center;
    margin-top: 20px;
    margin-left: 355px;
}
.promo_count__wrap{
    position: relative;
    top: -20px;
    margin-left: 128px;
    display: inline-block;
}
.promo_count{
    height: 58px;
    padding: 14px 32px 15px;
    border: 1px solid #333333;
    border-radius: 60px;
    font-size: 1.25rem;
}
.members_count{
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    color: #FF1313;
    font-size: 1.25rem;
}  
.promo_btns {
    width: 372px;
    height: 58px;
    display: inline-block;
    position: relative;
    margin-top: 20px;
}
.promo_btns .btn {
    position: absolute;
    left: 0;
    top: 0;
}
  
@media (max-width: 1280px) {
  .promo {
      padding-left: 115px;
  }
}
@media (max-width: 1240px) {
  .promo {
      padding-left: 90px;
  }
}
@media (max-width: 1200px) {
  .promo {
      padding-left: 0;
  }
  .promo_row {
      width: 878px;
      margin: 0 auto;
      padding-left: 70px;
  }
  .promo_row::after {
      left: 0;
      top: 75px;
  }
  .promo_online__wrap {
      margin-left: 224px;
      margin-top: 20px;
      bottom: 22px;
  }
  .promo_arrrow {
      margin-left: 0;
  }
  .promo_count__wrap{
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .promo {
      height: auto;
      background-size: cover;
      background-position: center;
      padding-bottom: 96px;
  }
  .promo_row {
      width: 100%;
      padding: 0;
      margin: 0;
      text-align: center;
  }
  .promo_row:after {
      display: none;
  }
  .promo_start {
      width: 306px;
      display: flex;
      margin: 0 auto 20px;
      position: static;
  }
  .promo_title {
      width: 750px;
      display: block;
      text-align: center;
      margin: 0 auto;
  }
  .promo_title span {
      position: relative;
      z-index: 2;
  }
  .promo_title::after {
      content: "";
      display: block;
      width: 95px;
      height: 87px;
      background: url("../images/lattice.svg") no-repeat;
      position: absolute;
      left: -64px;
      bottom: -4px;
      z-index: 1;
  }
  .promo_online__wrap {
      width: 100%;
      margin: 20px 0 0;
      position: static;
  }
  .promo_online {
      display: inline-block;
  }
  .promo_arrrow {
      margin-top: 30px;
  }
  .promo_btns {
      margin-top: 30px;
  }
  .promo_count__wrap{
    margin: 30px 132px 0;
    top: 0;
  }
}
@media (max-width: 992px) {
  .promo_title {
      width: 450px;
  }
}
@media (max-width: 768px) {
  .promo_title::after {
      left: -45px;
  }
  .promo_count__wrap{
    margin-left: 64px;
    margin-right: 64px;
  }
}
@media (max-width: 576px) {
  .promo {
      padding: 56px 8px 8px;
  }
  .promo_start {
      width: 219px;
      height: 37px;
      padding: 9px 16px;
      margin: 0 auto 8px 8px;
      font-size: 0.875rem;
  }
  .promo_title {
      width: 100%;
      line-height: normal;
      font-size: 2.25rem;
      text-align: left;
      margin: 0 0 0 8px;
  }
  .promo_title::after {
      width: 53px;
      height: 49px;
      background-size: cover;
      top: 42px;
      left: 0px;
  }
  .promo_title span {
      display: block;
      font-size: 2.25rem;
      line-height: normal;
  }  
  .promo_title > span span {
      padding-left: 38px;
  }
  .promo_online__wrap {
      margin-top: 12px;
      display: flex;
      justify-content: flex-end;
  }
  .promo_online {
      font-size: 0.875rem;
      margin-right: 8px;
      padding: 8px 16px;
  }
  .promo_count__wrap{
    margin-left: 0;
    margin-right: auto;
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
  }
  .promo_count{
    font-size: 0.875rem;
    padding: 8px 16px;
    height: auto;
  }
  .members_count{
    font-size: 0.875rem;
  }
  .promo_arrrow {
      display: none;
  }
  .promo_btns {
      width: 100%;
      margin-top: 56px;
  }
  .promo_btns .btn {
      width: 100%;
      font-size: 1rem;
      height: 53px;
      padding-left: 0;
      padding-right: 0;
  }
}
.program_section {
    margin-top: 48px;
}
.program_section .container {
    width: 1312px;
}
  
.program_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
}
  
.program_item {
    width: 100%;
    max-width: 426px;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}
  
.program_tag {
    background: url("../images/lattice_white.svg") no-repeat left 16px center;
    padding: 16px 24px 16px 56px;
    background-color: #FBDB00;
    border-radius: 32px;
    display: inline-flex;
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 2;
}
  
@media (max-width: 576px) {
  .program_tag {
      font-size: 1rem;
      padding: 12px 20px 12px 40px;
      background-size: 19%;
      background-position: left 10px center;
  }
  .program_item {
      width: 304px;
      height: 138px;
  }
  .program_img img {
      max-height: 100%;
  }
}
.format_section {
    margin-top: 80px;
}
.format_section .container {
    width: 1092px;
}
.format_section h3 {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.75rem;
    line-height: normal;
}
  
.format_row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}
  
.format_descr {
    background-color: #F5F6F7;
    padding: 24px 40px 40px;
    border-radius: 40px;
    flex-grow: 1;
}
.format_descr > * {
    margin-bottom: 16px;
}
.format_descr > *:first-child {
    margin-top: 0 !important;
}
.format_descr > *:last-child {
    margin-bottom: 0;
}
.format_descr p + ul {
    margin-top: -16px;
}
.format_descr h3 {
    margin-top: 24px;
}
  
.format_target {
    width: 400px;
    background-color: #FBDB00;
    padding: 32px 40px 40px;
    border-radius: 32px;
    flex-shrink: 0;
}
.format_target h3 {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}
.format_target ul li {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: normal;
    margin-bottom: 20px;
}
.format_target ul li:last-child {
    margin-bottom: 0;
}
  
.format_btns {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
  
@media (max-width: 992px) {
  .format_row {
      flex-direction: column;
  }
  .format_target {
      width: 100%;
  }
  .format_target h3 {
      text-align: left;
  }
  .format_target h3 br {
      display: none;
  }
}
@media (max-width: 576px) {
  .format_section h3 {
      font-size: 1.25rem;
  }
  .format_descr {
      padding: 20px;
      font-size: 0.875rem;
  }
  .format_descr h3 {
      margin-bottom: 8px;
  }
  .format_target {
      padding: 16px 8px;
  }
  .format_target h3 {
      font-size: 19px;
      color: #333333;
      margin-bottom: 16px;
      padding-left: 16px;
  }
  .format_target ul li {
      font-size: 1rem;
      margin-bottom: 16px;
  }
  .format_btns {
      margin-top: 0;
  }
  .format_btns .btn {
      max-width: none;
      width: 100%;
      font-size: 1rem;
      padding-left: 0;
      padding-right: 0;
  }
}
.speakers_section {
    margin-top: 56px;
}
  
.speakers_row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 12px;
}
  
.speakers_item {
    max-width: none;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}
@media (hover: hover) {
  .speakers_item:hover .speakers_position__inner {
      -webkit-line-clamp: 40 !important;
  }
}
.speakers_item:active .speakers_position__inner {
    -webkit-line-clamp: 40 !important;
}
  
.speakers_img {
    background: url("../images/speaker_bg.svg") no-repeat;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
  
.speakers_info {
    width: calc(100% - 16px);
    transition: height 0.2s ease-in-out;
    padding: 8px 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: auto;
    z-index: -1;
}
.speakers_info._calc {
    height: 91px;
    z-index: 2;
    overflow: hidden;
}
.speakers_info._calc .speakers_position__inner {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.speakers_info._hover .speakers_position__inner {
    -webkit-line-clamp: 40 !important;
}
.speakers_info::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
}
  
.speakers_info__hide {
    padding: 8px 12px;
}
  
.speakers_name {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    line-height: 26px;
    position: relative;
    z-index: 2;
}
  
.speakers_position {
    margin-top: 4px;
    font-size: 0.875rem;
    line-height: 19px;
    position: relative;
    z-index: 2;
}
  
.speakers_position__hide {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.swiper-wrapper{
    gap: 8px;
    flex-wrap: wrap;
}
  
.speakers_slider .swiper-slide{
    width: calc(20%  - 8px);
}
  
@media (max-width: 1024px) {
  .speakers_slider .swiper-slide {
      width: 256px;
  }
  .swiper-wrapper{
    flex-wrap: nowrap;
    gap: 0;
  }
}
@media (max-width: 576px) {
  .speakers_slider .swiper-slide {
      width: 212px;
  }
  .speakers_name {
      font-size: 1rem;
  }
  .speakers_img {
      border-radius: 16px;
  }
}
.schedule_section {
    margin-top: 64px;
}
  
.schedule_row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #F5F6F7;
    border-radius: 32px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 8px;
}
  
.schedule_title {
    width: 357px;
    flex-shrink: 0;
    padding: 8px 16px;
}
.schedule_title .section_title {
    margin-bottom: 0;
    text-align: left;
}
  
.schedule_item {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 16px 24px;
    margin-bottom: 2px;
}
  
.schedule_name {
    font-size: 1.125rem;
}
  
.schedule_author {
    font-size: 0.875rem;
    line-height: 19px;
    margin-top: 4px;
    color: #757575;
}
  
.schedule_btns {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}
  
@media (max-width: 1024px) {
  .schedule_btns {
      margin-top: 48px;
  }
  .schedule_row {
      flex-direction: column;
  }
  .schedule_title {
      width: 100%;
      margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .schedule_title {
      padding-bottom: 0;
  }
  .schedule_item {
      padding: 16px;
  }
  .schedule_name {
      font-size: 0.875rem;
  }
  .schedule_author {
      font-size: 0.8125rem;
  }
  .schedule_btns {
      margin-top: 24px;
  }
  .schedule_btns .btn {
      max-width: none;
      width: 100%;
      font-size: 1rem;
      padding-left: 0;
      padding-right: 0;
  }
}
.faq_section {
    margin-top: 64px;
}
  
.faq_row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #F5F6F7;
    border-radius: 32px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 8px;
}
  
.faq_title {
    width: 442px;
    flex-shrink: 0;
    padding: 8px 16px;
}
.faq_title .section_title {
    margin-bottom: 0;
    text-align: right;
}
  
.faq_item {
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}
.faq_item._show {
    background-color: #FFFFFF;
}
.faq_item._show .question::before {
    transform: rotate(90deg);
    opacity: 0;
}
.faq_item._show .question::after {
    transform: rotate(180deg);
}
@media (hover: hover) {
  .faq_item:hover {
      border-color: #333333;
  }
}
.faq_item:active {
    border-color: #333333;
}
  
.question {
    padding: 16px 64px 16px 16px;
    position: relative;
}
.question::before, .question::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background-color: #000000;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.question::after {
    transform: rotate(90deg);
}
  
.answer {
    height: 0;
    overflow: hidden;
    transition: height 0.15s ease-in-out;
}
  
.answer_inner {
    padding: 0 64px 16px 16px;
    font-size: 0.875rem;
    line-height: 19px;
}
  
@media (max-width: 1024px) {
  .faq_row {
      flex-direction: column-reverse;
  }
  .faq_title {
      width: 100%;
      margin-bottom: 16px;
  }
  .faq_title .section_title {
      text-align: left;
  }
}
@media (max-width: 576px) {
  .faq_title {
      margin-bottom: 0;
  }
  .question {
      font-size: 1rem;
  }
}
.cities_section .container {
    width: 1092px;
}
  
.reg_promo {
    height: 176px;
    background: url("../images/registration_bg.png") no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 32px;
}
  
.reg_title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 2.5rem;
}
  
.reg_descr {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 2px;
}
  
.cities_box {
    margin-top: 40px;
}
  
.partners_title {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}
  
.partners_box {
    background-color: #F5F6F7;
    padding: 8px 8px 16px;
    border-radius: 32px;
    position: relative;
}
  
.partners_search {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 32px;
         column-gap: 32px;
}
.partners_search > button {
    color: #757575;
    font-size: 1rem;
    line-height: normal;
    cursor: pointer;
}
@media (hover: hover) {
  .partners_search > button:hover {
      text-decoration: underline;
  }
}
.partners_search > button:active {
    text-decoration: underline;
}
.partners_search > button._active {
    font-weight: bold;
    color: #333333;
}
.partners_search .btn_find {
    margin-left: auto;
}
.partners_search .search_delimiter {
    display: none;
}
  
.cities {
    -moz-column-count: 6;
         column-count: 6;
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 24px 16px 0;
}
  
.letter_block {
    line-height: 21px;
    margin-bottom: 20px;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    page-break-inside: avoid;
}
  
.letter {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 21px;
    color: #FF1313;
    margin-bottom: 4px;
}
  
.cities_list {
    margin: 0;
    list-style: none;
}
  
.city {
    font-size: 0.875rem;
    line-height: 21px;
    text-decoration: underline;
    cursor: pointer;
}
@media (hover: hover) {
  .city:hover {
      text-decoration: none;
  }
}
.city:active {
    text-decoration: none;
}
  
.partners_section {
    margin-top: 8px;
    display: none;
}
.partners_section .container {
    width: 1092px;
}
.partners_section._show {
    display: block;
}
  
.partners_box {
    background-color: #F5F6F7;
    padding: 8px;
    border-radius: 32px;
    position: relative;
}
.partners_box > .close_cross {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}
.partners_box > .close_bottom {
    display: none;
}
  
.partners_header {
    padding: 16px 24px;
}
  
.partners_city {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 40px;
}
  
.partners_info {
    font-size: 1rem;
    line-height: 21px;
}
  
.partners_list {
    flex-direction: column;
    gap: 8px;
    display: none;
}
.partners_list._show {
    display: flex;
}
.partners_list:not(:last-child) {
    margin-bottom: 8px;
}
  
.partners_item__wrap {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 16px 24px;
}
  
.partners_item {
    display: flex;
    align-items: center;
}
.partners_item .btn {
    font-size: 1rem;
    padding: 10px 24px 12px;
    min-height: 42px;
}

.partner_start{
    margin-right: 8px;
}

.partner_main{
    margin-right: 24px;
}
  
.partner_name {
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    align-self: start;
}
  
.partner_info {
    font-size: 0.875rem;
    line-height: 19px;
    color: #757575;
    margin-top: 4px;
}
  
.partner__btn_wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
    margin-left: auto;
}
  
.partner_link {
    font-size: 0.875rem;
    line-height: 19px;
    color: #757575;
    text-decoration: none;
}
@media (hover: hover) {
  .partner_link:hover {
      text-decoration: underline;
      color: #333333;
  }
}
.partner_link:active {
    text-decoration: underline;
    color: #333333;
}
  
.map {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 8px;
}
  
.map_loading__wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #ffffff;
    display: none;
}
  
.map_loading__wrap.showed {
    display: block;
}
@keyframes rotating {
    from {
      transform: rotate(0deg);
  }
    to {
      transform: rotate(360deg);
  }
}
.map_loading {
    animation: rotating 0.8s linear infinite;
    background: transparent;
    border-radius: 100%;
    border: 6px solid hsla(0, 0%, 39%, 0.5);
    border-top-color: #fff;
    height: 60px;
    left: 50%;
    margin: -30px 0 0 -30px;
    opacity: 0.6;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 60px;
    z-index: 99999;
}
  
.yandex_balloon {
    width: 100%;
    max-width: 370px;
    min-width: 320px;
}
  
.yandex_balloon__partner_name {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    padding-right: 10px;
}
  
.yandex_balloon__partner_info {
    font-size: 12px;
    line-height: 21px;
    color: #777777;
}
  
.yandex_balloon .partner__btn_wrap {
    margin-top: 25px;
}
  
.yandex_balloon .btn,
.yandex_balloon a.btn,
.yandex_balloon button.btn {
    padding-left: 10px;
    padding-right: 10px;
}
  
@media (max-width: 1024px) {
  .partners_item {
      flex-wrap: wrap;
      align-items: flex-start;
  }
  .partner_start {
      margin-left: -8px;
      margin-top: -6px;
  }
  .partner_main{
      width: calc(100% - 56px);
      margin-right: 0;
  }
  .partner__btn_wrap {
      width: 100%;
      flex-direction: column;
      row-gap: 20px;
      margin-top: 16px;
  }
  .partner__btn_wrap .btn {
      width: 100%;
      max-width: 400px;
  }
}
@media (max-width: 992px) {
  .cities {
      -moz-column-count: 5;
           column-count: 5;
  }
}
@media (max-width: 768px) {
  .cities {
      -moz-column-count: 4;
           column-count: 4;
  }
  .partners_search {
      justify-content: center;
      -moz-column-gap: 0;
           column-gap: 0;
      padding-top: 8px;
      padding-bottom: 8px;
  }
  .partners_search > button {
      font-size: 0.875rem;
      width: 100%;
      padding-top: 8px;
      padding-bottom: 8px;
  }
  .partners_search .btn_find {
      position: absolute;
      margin: auto;
      bottom: -48px;
      left: 0;
      right: 0;
  }
  .partners_search .search_delimiter {
      display: block;
      width: 1px;
      height: 22px;
      background-color: #D9DDE0;
      flex-shrink: 0;
  }
  .partners_box {
      margin-bottom: 44px;
  }
}
@media (max-width: 576px) {
  .reg_promo {
      height: 148px;
  }
  .reg_title {
      font-size: 1.5rem;
  }
  .reg_descr {
      font-size: 0.875rem;
      margin-top: 4px;
  }
  .cities_box {
      margin-top: 24px;
  }
  .partners_title {
      font-size: 1rem;
      margin-bottom: 16px;
  }
  .cities {
      -moz-column-count: 3;
           column-count: 3;
      padding-top: 16px;
  }
  .partners_search > button span {
      display: none;
  }
  .partners_search > button::before {
      content: attr(data-mobile);
      display: inline;
      text-indent: 0;
  }
  .cities_section._hide {
      display: none;
  }
  .partners_section {
      margin-top: 0;
  }
  .partners_box > .close_bottom {
      display: block;
      font-size: 0.875rem;
      color: #757575;
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      bottom: -40px;
  }
}
@media (max-width: 576px) and (hover: hover) {
  .partners_box > .close_bottom:hover {
      text-decoration: underline;
  }
}
@media (max-width: 576px) {
  .partners_box > .close_bottom:active {
      text-decoration: underline;
  }
  .partners_city {
      font-size: 1.5rem;
      padding-right: 32px;
  }
  .partners_info {
      font-size: 0.875rem;
  }
  .partner_name {
      font-size: 1.125rem;
  }
}
@media (max-width: 400px) {
  .cities {
      -moz-column-count: 2;
           column-count: 2;
  }
}

.section_agree{
    padding-top: 48px;
    font-size: 18px;
}

.section_agree .container{
    width: calc(1076px + 8px * 2);
}

.section_agree .container > h2{
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 32px;
}

.agree_content{
    background-color: #F5F6F7;
    padding: 24px 24px 32px;
    border-radius: 40px;
}

.agree_content > *{
    margin-bottom: 16px;
}

.agree_content > *:last-child{
    margin-bottom: 0;
}

table {
    width: 100%;
    font-size: 16px;
    border-collapse: collapse; 
    border-top:1px solid #333333;
    border-left:1px solid #333333;
} 

table th,
table td{
    border-right:1px solid #333333;
    border-bottom:1px solid #333333;
    padding:8px 16px;
}

.table_wrap{
    max-width: 100%;
    overflow: auto;
    padding-bottom: 16px;
}
@media (max-width: 576px) {
    .section_agree{
        padding-top: 24px;
    }

    .section_agree .container > h2 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .agree_content{
        padding: 20px;
        font-size: 0.875rem;
        border-radius: 40px;
    }

    table{
        font-size: 14px;
    }
}
.SmartCaptcha-Shield.SmartCaptcha-Shield_position_bottom {
    bottom: 64px;
}

.records{
    max-width: 856px;
    margin: 0 auto;
}

.records_video {
    height: 482px;
    border-radius: 24px;
    background: #ffffff url('../images/records_bg.png') no-repeat;
    background-size: contain;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding-left: 94px;
    padding-top: 136px;
    margin-bottom: 32px;
}

.records_video .logo{
    margin-bottom: 8px;
}

.records_video h1{
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 56px;
    margin: 0 0 4px 0;
}

.records_video p{
    font-size: 20px;
    line-height: normal;
    margin: 0;
}

.records_video:has(iframe) {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25% !important;
}

.records_video:has(iframe) iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.records_tabs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: auto;
    margin-bottom: 24px;
}

.records_tabs .tabs {
    height: 64px;
    background-color: #ffffff;
    border-radius: 64px;
    padding: 8px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.records_tabs .tab{
    width: 196px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 48px;
    font-family: "Unbounded", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: normal;
    color: #333333;
    text-decoration: none;
}

.records_tabs .tab:not(._active){
    cursor: pointer;
}

@media (hover: hover) {
  .records_tabs .tab:not(._active):hover{
    text-decoration: underline;
}
}
.records_tabs .tab:not(._active):active{
    text-decoration: underline;
}

.records_tabs .tab._active{
    background-color: #FBDB00;
}

.records_item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 16px;
    row-gap: 8px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 16px;
}

.records_item:not(:last-child) {
    margin-bottom: 2px;
}

.records_play {
    background-color: #F2F5FA;
    width: 64px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

@media (hover: hover) {
  .records_play:hover {
    background-color: #e9e9e9;
    }
}
.records_play:active {
    background-color: #e9e9e9;
}

.records_info {
    width: 100%;
    font-family: "Roboto", Helvetica, sans-serif;
}

.records_title {
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 21px;
}

.records_author {
    font-family: "Roboto", Helvetica, sans-serif;
    font-size: 0.875rem;
    line-height: 19px;
    color: #807E79;
    margin-top: 4px;
}

.records_download {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-decoration: underline;
    color: #999999;
}

.records_download a{
    color: #999999;
}

.records_download a:hover{
    color: #333333;
}

@media (max-width: 768px) {
  .records_video {
    height: 380px;
    padding-left: 64px;
  }
}

@media (max-width: 576px) {
  .records_video {
    height: 171px;
    padding-left: 24px;
    padding-top: 36px;
    background: #ffffff url('../images/records_bg_sm.png') no-repeat center;
    margin-bottom: 16px;
  }

  .records_video .logo{
    display: none;
  }

  .records_video h1{
    font-size: 1.375rem;
    line-height: 28px;
    max-width: 200px;
  }

  .records_video p{
    font-size: 0.875rem;
    max-width: 200px;
  }

  .records_tabs{
    margin-bottom: 16px;
  }

  .records_tabs .tabs {
    height: 48px;
    padding: 6px;
  }

  .records_tabs .tab {
    width: 146px;
    height: 36px;
    font-size: 0.875rem;
  }

  .records_item {
    flex-direction: column;
  }
}

.tab_content{
    display: none;
}

.tab_content._active{
    display: block;
}

[data-tip] {
    position: relative;
}

.tip_outer{
    width: auto;
    max-width: 263px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out, visibility 0.15s ease-in-out, z-index 0.15s ease-in-out;
}

.tip_outer._show{
    opacity: 1;
    visibility: visible;
    z-index: 999999;
    transform: translateY(-10px);
}

.tip_inner{
    background-color: #ffffff;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 18px;
    border-radius: 8px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.2);
}