/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #000817;
  --color-muted: #606163;
  --color-subtext: #6B7278;
  --color-accent: #F1361D;
  --color-btn-hover: #FF5942;
  --color-bg: #F2F2FC;
  --color-hero-violet: #01143C;
  --color-note: #6B7278;
  --color-heading: #000000;

  --radius-lg: 100px;
  --radius-md: 50px;
  --radius-sm: 8px;

  --container: 1525px;
  --lg-container: 1660px;

  /* Fonts */
  --font-heading: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: 'Proxima Nova', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-label: 'Proxima Nova', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

@charset "UTF-8";

/* Local font faces */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Bold.woff2') format('woff2'),
       url('../fonts/BebasNeue-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
       url('../fonts/BebasNeue-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Book.woff2') format('woff2'),
       url('../fonts/BebasNeue-Book.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/Proxima-Nova-Regular.woff2') format('woff2'),
       url('../fonts/Proxima-Nova-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/Proxima-Nova-Semibold.woff2') format('woff2'),
       url('../fonts/Proxima-Nova-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/Proxima-Nova-Extrabold.woff2') format('woff2'),
       url('../fonts/Proxima-Nova-Extrabold.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

a {
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
text-decoration: none; }
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
        box-sizing: border-box; }


input {
outline: none; }

input[type=submit] {
  border:0;
  outline:none;
-webkit-appearance: none;
border-radius: 0; }

* img {
max-width: 100%; }

html, body { height: 100%; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font: 400 16px/1.5 var(--font-body);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.lg-container {
  width: 100%;
  max-width: var(--lg-container);
  margin: 0 auto;
  padding: 88px 68px 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #00183B;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 72px;
  gap: 24px;
  padding: 0;
}
.header__nav_wrapper{
  width: 100%;
  max-width: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo-image { height: 51px; display: block; }
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*gap: 16px;*/
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu-item{
  position:relative;
}
.header__menu-item:not(:last-child):after{
  content:'';
  width: 4px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius:4px;
  display: block;
  position:absolute;
  top: 11px;
  right: -13px;
}
.header__menu-item:not(:last-child){
  margin-right: 24px;
}
.header__link { color: var(--color-white); text-decoration: none; font-weight: 600; font-family: var(--font-body); }
.header__cta { white-space: nowrap; }

/* Buttons */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 20px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: var(--font-heading);
  -webkit-transition:all .3s;
  -o-transition:all .3s;
  transition:all .3s;
}
.button:hover {
  background-color:var(--color-btn-hover);
}
.hero__button{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 28px;
  line-height: 20px;
  padding: 22px 36px;
  margin: 25px 0 25px -4px;
}
.button--lg { padding: 16px 50px;    font-size: 30px;    line-height: 32px;}
.button--sm { padding: 12px 24px;font-size: 20px; line-height: 20px; }
.button--accent { background: var(--color-accent); }

/* Hero */
.hero{
  background:url(../images/bg_main.jpg) no-repeat, center;
  background-size:cover;
  overflow:hidden;
  position:relative;
  padding-bottom: 50px;
}
.hero__inner {
  max-width: 1200px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 64px 0 0px;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}
.hero__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size:100px; 
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color:var(--color-white);
  max-width:680px;
}
.hero__title span{color:var(--color-accent);}
.hero__meta { margin: 0 0 4px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; font-family: var(--font-heading); color:var(--color-accent); font-size: 31px; line-height:36px; }
.hero__meta span{color:black;}
.hero__subtitle {
  margin: 8px 0 8px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 58px;
  font-family: var(--font-heading);
  line-height: 1.1em;
  max-width: 680px;
  margin-bottom: 85px;
  margin-top: 42px;
  letter-spacing: .03em;}
.hero__end {
  margin: 8px 0 8px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 40px;
  font-family: var(--font-heading);
  line-height: 1.1em;
  max-width: 680px;
  margin-bottom: 85px;
  margin-top: 42px;
  letter-spacing: .03em;}
.hero__desc { margin: 0 0 24px; font-family: var(--font-body); text-transform:uppercase; font-size: 22px; line-height:41px; display: flex; align-items:center; gap:24px; color:white; letter-spacing:.24em;font-weight: 600;}
.hero__desc_skew{transform: skewX(-10deg);display: inline-block; background-color:var(--color-accent); padding:0px 15px; border-radius:var(--radius-sm);}
.hero__desc span {     transform: skewX(10deg);    white-space: nowrap;    display: inline-block;}
.hero__media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; max-width: 666px;  width: 100%; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column;    -webkit-box-align: end;    -ms-flex-align: end;    align-items: flex-end; }
.hero__orgs {display: -ms-grid;display: grid; -ms-grid-columns: auto 24px auto 24px auto; grid-template-columns: auto auto auto; grid-gap: 24px;font-family: var(--font-heading); font-weight: 300;     letter-spacing: .08em;    -webkit-box-align: center;    -ms-flex-align: center;    align-items: center;    line-height: 40px;    margin-top: 32px;  font-size: 20px;}
.hero__image { width: 100%; max-width: 666px; }
@media (max-width: 800px) {
.hero__desc {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 44px;}


}

@media (max-width: 479px) {
.hero__desc {
  font-size: 18px;
  gap: 0px;
  margin-bottom: 32px;
  letter-spacing: .08em;}
  .hero__button {
  font-size: 20px;
  line-height: 20px;
  padding: 16px 36px;
}
.header__logo-image {
  height: 51px;
}
.hero {
  padding-bottom: 0px;
}

}

.main-section__bunner {
position: absolute;
bottom: 30px;
width: 200%;
height: 50px;
left: 0;
background-color: var(--color-hero-violet); }
@media (max-width: 650px) {
  .main-section__bunner {
    height: 50px;
    bottom: 32px; } }
@media (max-width: 450px) {
  .main-section__bunner {
    height: 45px;
    bottom: 24px; } }

.strip {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
height: 100%;
width: 106%;
position: absolute;
left: 0; }

.strip__wrapper {
margin-top: 0;
width: 200%;
height: 100%;
position: absolute;
background-image: url("../images/text-bunner2.svg?4");
background-repeat: repeat no-repeat;
background-size: auto 100%;
background-position: center;
-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
left: 0;
top: 0;
-webkit-animation: bunner 14s linear infinite;
        animation: bunner 14s linear infinite; }
@-webkit-keyframes bunner {
0% {
  left: 0%;
  width: 100%; }
100% {
  left: 0%; } }
@keyframes bunner {
0% {
  left: 0%;
  width: 100%; }
100% {
  left: 0%; } }
/* About */
.about { padding: 80px 0; }
.about__card {
  background: var(--color-bg);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 64px 132px;
}
.about__title { margin: 0 0 12px; font-size: 20px; text-transform: uppercase; letter-spacing: 0.26em; font-family: var(--font-heading); color: var(--color-accent); }
.about__text { margin: 0; max-width: 70ch; font-family: var(--font-heading); font-size: 48px; line-height: 1.15em; margin-top: 24px;   font-weight: 700; letter-spacing: .03em;}

/* Speakers */
.speakers { padding: 80px 0; }
.section-title,.what h2{ margin: 0 0 50px; font-size: 58px; line-height: 76px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--font-heading); color: var(--color-heading); }
.section-title span,.what h2 span{color:var(--color-accent);}
.speakers__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 68px 36px;
}
.speaker-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 330px 24px 1fr;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.speaker-card__photo {
  background-color: var(--color-hero-violet);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  width: 100%;
  height: 330px;
  overflow:hidden;
}
.speaker-card__content { display: -ms-grid; display: grid; -ms-flex-line-pack: start; align-content: start; gap: 8px; position:relative;}
.speaker-card__name { margin: 0; font-size: 48px; line-height: .96; text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--font-heading); color: var(--color-heading); 
  max-width: 290px; font-weight:400;    margin-bottom: 8px;}
.speaker-card__name span{ color:var(--color-accent);}
.speaker-card__role { margin: 0; color: var(--color-black); opacity: 0.9; font-weight: 600; font-family: var(--font-body); min-height:72px;}



@media (min-width:1025px) {
  .role_short {
  max-height: 200px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
}
.text_short_show {
  max-height: none;
  display: block;
  -webkit-line-clamp: inherit;
  -webkit-box-orient: inherit;
  overflow: inherit;
}
.btn_text{
  position:absolute;
  left:0;
  bottom:-32px;
}
.btn_text span.btn_show {
display: block; 
color:var(--color-hero-violet);
cursor:pointer;}

.btn_text span.btn_hide {
display: none; 
color:var(--color-hero-violet);
cursor:pointer;}

.btn_text.full_text span.btn_show {
display: none; 
}

.btn_text.full_text span.btn_hide {
display: block; }
/* Program */
.program__title span{color:var(--color-accent);}
.program {padding-top: 80px;padding-bottom: 80px;}
.program .lg-container{ background: var(--color-bg); border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);position:relative;}
.program .container{ padding: 0;padding-right: 133px;}
.program__timeline { position: relative; margin-top:70px; }
.program__timeline:last-child {margin-top: 0;}
.program__item { display: -ms-grid; display: grid; -ms-grid-columns: 270px 1fr; grid-template-columns: 270px 1fr; gap: 32px; padding: 0px 0; padding-bottom: 0; }
.program__item_btn { display: -ms-grid; display: grid; -ms-grid-columns: 270px 32px 1fr; grid-template-columns: 270px 1fr; gap: 32px; padding: 0px 0; padding-bottom: 0; }
.program__time { font-size: 28px; text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--font-heading); color: var(--color-heading); position:relative;    line-height: .8em;    padding-top: 10px;}
.program__timeline .program__item .program__time:after{display: block;content:'';width: 20px;height: 20px;border-radius:10px;background:var(--color-accent);position:absolute;right:30px; top:12px;}
.program__timeline .program__item:not(:last-child) .program__time:before{display: block;content:'';width: 1px;height: 100%;border-right:2px dashed white; position:absolute;top:0px;    right: 39px;}
.program__time.btn:after{display: none;}
.program__time.btn:before{display: none;}

.program__content{padding-bottom: 70px;}
.program__topic {
  margin: -4px 0 8px;
  font-size: 48px;
  line-height: 52px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 400;}
.program__desc { 
  margin: 24px 0 0 20px;
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 27px; }
ol.program__desc li:not(:last-child){margin-bottom: 8px;}
.program__speaker { display: -ms-grid; display: grid; -ms-grid-columns: 1fr; grid-template-columns:1fr; gap: 42px;  background-color: #E6E8FC; background-image:none; background-repeat:no-repeat; background-position: calc(100% - 50px) center; background-size: 170px;  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md); padding:40px 50px; margin-top: 36px;}
.program__speaker .prog_teg{background-color:#646A91;padding:0 20px; font-family:var(--font-label); font-weight: 600;color:white; white-space:nowrap;text-transform:uppercase; font-size: 15px;line-height: 30px; letter-spacing:.07em;
  width: max-content; display:inline-block;}
.program__speaker-photo {  width: 124px; height: 124px; border-radius: 50%; }
.program__speaker-text span{ margin-bottom: 8px; font-weight: 900; font-family: var(--font-body); display: block;}
.program__speaker-text { margin: 0; font-weight: 600; font-family: var(--font-body);font-size: 20px;line-height: 27px; max-width:570px;}
.program__cta { display: -ms-grid; display: grid; justify-items: start; gap: 12px; margin-top: 24px; }
.program__note { margin: 0; color: var(--color-note); font-weight: 600; }
.program__cta .program__note{margin-top: 40px;}

/* Program timeline rows */
.program__time .program__block{ display:block; margin-top:8px; font-family:var(--font-label); font-weight:600; font-size:15px; line-height:1.2; letter-spacing:.07em; text-transform:uppercase; color:#646A91; }
.program__line{ margin:0; font-weight:400; font-family:var(--font-body); font-size:20px; line-height:27px; }
.program__item .program__content{ padding-bottom:26px; }
.program__item--head{ margin-top:22px; }
.program__item--head .program__content{ padding-top:4px; padding-bottom:10px; }
.program__item--service .program__content{ padding-bottom:22px; }
.program__service{ display:inline-block; background:#E6E8FC; color:var(--color-heading); padding:6px 22px; border-radius:0 var(--radius-md) var(--radius-md) var(--radius-md); font-family:var(--font-label); font-weight:600; font-size:17px; letter-spacing:.03em; }
/* dots: only block heads (accent) + service rows (muted); topics & panels — none */
.program__timeline .program__item:not(.program__item--head):not(.program__item--service) .program__time:after{ display:none; }
.program__timeline .program__item--service .program__time:after{ background:#9CA1C4; }
/* service time — same muted small style as the block range */
.program__item--service .program__time{ padding-top:6px; font-family:var(--font-label); font-weight:600; font-size:15px; line-height:1.2; letter-spacing:.07em; text-transform:uppercase; color:#646A91; }
/* numbered topics, restart per block */
.program__item--head{ counter-reset:topic; }
.program__line{ counter-increment:topic; }
.program__line::before{ content:counter(topic) ". "; color:#646A91; font-weight:400; margin-right:2px; }

/* Registration */
.registration { padding: 80px 0;    color: var(--color-white);  }
.registration .container{
  padding:150px 0;
  border-radius:var(--radius-md);
  border-top-left-radius:0;  
  background:url(../images/bg_main.jpg) no-repeat, center;    
  background-size:cover;    
  background-attachment:fixed;
  overflow:hidden;
  display: flex;
  align-items:center;
  justify-content:center;
}
.registration__inner { display: -ms-grid; display: grid; -ms-grid-columns: 1fr 160px 325px; grid-template-columns: 1fr 325px; gap: 160px;     -webkit-box-align: stretch;     -ms-flex-align: stretch;     align-items: stretch;    max-width: 934px; }
.form__title { margin: 0 0 16px; font-size: 48px; text-transform: uppercase; font-weight: 400; letter-spacing: 0.03em; font-family: var(--font-heading); }
.form__grid { display: -ms-grid; display: grid; -ms-grid-columns: 1fr; grid-template-columns: 1fr; gap:20px; margin-bottom: 12px; }
.field { display: -ms-grid; display: grid; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field__label { color: #BCBCBC; font-weight: 600; font-family: var(--font-body); display: none;}
.field__input { background: transparent; border: 0; border-bottom: 2px solid #D8DADB; color: var(--color-white); padding: 10px 0; outline: none; font-family: var(--font-body); font-size: 20px; }
.checkbox { display: -ms-inline-grid; display: inline-grid; grid-auto-flow: column; gap: 8px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin: 12px 0 20px; }
.checkbox__input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box { width: 16px; height: 16px; border-radius: 4px; background: #E9E6F2; position: relative; }
.checkbox__input:checked + .checkbox__box { background: #928E99; }
.checkbox__label { color: #928E99; font-size: 12px; font-family: var(--font-label); }
form {display: -ms-grid;display: grid; -ms-grid-columns:1fr; grid-template-columns:1fr; grid-gap: 16px; width: 100%;max-width:324px;}
.form__submit { margin-top: 8px; border:0;    font-size: 20px;    line-height: 32px; cursor:pointer;}
label[for=policy] {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 100% !important;
          flex: 0 0 100% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 5px;
  max-width:-webkit-fit-content;
  max-width:-moz-fit-content;
  max-width:fit-content;
  padding: 5px;
}
label[for=policy] input {
  height:16px !important;
  max-width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  -webkit-appearance: auto;
  margin: 0;
  padding: 0;
}
label[for=policy] input.input-error {
  -webkit-appearance: none;
}
label[for=policy] .label {
  font-size: 13px;
  line-height: 1;
  margin-top: 0 !important;
  color: #928E99;
}
label[for=policy] .label a {color: #928E99; text-decoration:underline;}
label[for=policy] .warning {
}
label[for=policy].error {
  border: 2px solid red;
}

.badge { width: 450px; min-height: 622px;  color: var(--color-black); border-radius: var(--radius-md);  overflow:hidden}
.badge__header {height: 120px;background:url(../images/bg_bage.svg?2), no-repeat; background-size:cover;}
.badge__inner { padding: 24px 48px 48px; background: #FFFFFF; height: 503px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column; -webkit-box-pack:justify; -ms-flex-pack:justify; justify-content:space-between; -webkit-box-align:start; -ms-flex-align:start; align-items:flex-start; width: 100%;
  overflow: hidden;}
.badge__logo img { height: 21px; }
.badge__logo { height: 58px;  display: -webkit-box;  display: -ms-flexbox;  display: flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column; -webkit-box-pack:justify; -ms-flex-pack:justify; justify-content:space-between; -webkit-box-align:start; -ms-flex-align:start; align-items:flex-start;}
.badge__role { margin-top: 16px; font-size: 20px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #2F2F30; font-family: var(--font-heading);}
.badge__name { margin: 16px 0;    display: -webkit-box;    display: -ms-flexbox;    display: flex;    -webkit-box-orient: vertical;    -webkit-box-direction: normal;    -ms-flex-direction: column;    flex-direction: column;    overflow:hidden; max-width:320px;}
.badge__name-first { font-size: 54px; font-weight: 700; line-height: 1em; text-transform: uppercase;  font-family: var(--font-heading); color:var(--color-accent);}
.badge__name-last { font-size: 54px; line-height: 1em; text-transform: uppercase;  font-family: var(--font-heading);}
.badge__sep { width: 33px; height: 4px; background: var(--color-accent); margin: 12px 0; }
.badge__meta { font-size: 24px; text-transform: uppercase; font-family: var(--font-heading);line-height: 1em; font-weight: 700; }
.badge__meta_company { font-size: 24px; text-transform: uppercase; font-family: var(--font-heading);line-height: 1em; font-weight: 300; margin-top: 4px;}
.badge__member{height: 270px;  }
.badge__name-first,.badge__name-last {    white-space: nowrap;    overflow: hidden;    -o-text-overflow: ellipsis;    text-overflow: ellipsis;    width: 100%;      max-width: 320px;   }
.badge__meta, .badge__meta_company {    white-space: nowrap;    overflow: hidden;    -o-text-overflow: ellipsis;    text-overflow: ellipsis;    width: 100%;        max-width: 320px;    }

.registration .badge {
  min-height: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.registration .badge__header {
  height: 90px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
}

.registration .badge__inner {
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 24px 48px 34px;
}

/* Organizers */
.organizers { padding: 40px 0; }
.organizers__inner { display: -ms-grid; display: grid; grid-auto-flow: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: start; gap: 24px; }
.organizers__title { font-size: 20px; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-heading); }
.organizers__logos { height: 26px; width: auto; }

/* Footer */
.footer { background:#F2F2F7; color: #6E7073; padding: 32px 0; }
.footer a{  color: #6E7073; text-decoration:underline; }
.footer__inner { display: -ms-grid; display: grid; grid-auto-flow: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 16px; }
.footer__copy { font-size: 12px; font-family: var(--font-body); }
.footer__links { display: -ms-grid; display: grid; grid-auto-flow: column; gap: 16px; }
.footer__link { color: #606163; text-decoration: none; font-size: 12px; font-family: var(--font-body); }

/* Responsive */
@media (max-width: 1700px) {
  .program { padding-left:24px; padding-right:24px;}
}
@media (max-width: 1024px) {
  .speakers__grid { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
  .speaker-card { -ms-grid-columns: 240px 1fr; grid-template-columns: 240px 1fr; }
  .speaker-card__photo { height: 240px; }
  .registration__inner { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
  .badge,
  .registration .badge {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero__inner { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
  .program__item { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
  .speaker-card { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
  .speaker-card__photo { height: 220px; }
}

/*About us*/
.about_us {    padding-top: 80px;    padding-bottom: 80px;}
.about_us__txt {    font-weight: 600;}
.about_us__logo {    margin: 4px 0 29px;}
.about_us__card {    background-color: var(--color-bg); background-attachment: fixed; background-image:url(../images/bg_about_us.png);    background-repeat: no-repeat;    background-position:right top;    border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 64px 98px;    display: -ms-grid;    display: grid;    -ms-grid-columns: 1.3fr .7fr;    grid-template-columns: 1.3fr .7fr;}
.about_us h2 { margin: 0 0 12px; font-size: 20px; text-transform: uppercase; letter-spacing: 0.26em; font-family: var(--font-heading); color: var(--color-accent); }
.about_us__main p { margin: 0;font-family: var(--font-heading); font-size: 48px; line-height: 1.15em; margin-top: 24px;   font-weight: 400; letter-spacing: .03em;max-width:700px;}

.clients {
overflow: hidden;
padding-bottom: 80px;
/* .clients__smallcontainer */
/* .clients__wrapper */
/* .clients__item */ }
.clients .container h2 {
  font-size: 18px;
  font-weight: 300;
  color:#919191;
  letter-spacing:-.03em;
  margin-bottom: 48px;
   }
.clients__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
.clients__item {
  background-color: var(--color-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 110px;
  width: 226px;

  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: var(--radius-sm);
  padding-top: 10px;
  padding-bottom: 10px; }
.clients__item img {
  width: auto;
  max-width: 120px;
  max-height: 80px;
  margin-right: auto;
  margin-left: auto; 
}
body._lock {
  overflow: hidden; }


.pdf{position:absolute;top:94px;right:80px; width: 76px;height: 76px;background-image:none; background-size: 76px;}


@media (max-width: 1580px) {
  .header__inner,section{    padding-right:20px;    padding-left: 20px;}
}


@media (max-width: 1400px) {
  .hero__media {  padding-left:80px;}
  .speaker-card {    -ms-grid-columns: 250px 1fr;    grid-template-columns: 250px 1fr;}
  .speaker-card__photo {
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  max-width: 250px;
  height: 250px;
}
.pdf{position:absolute;top:94px;right:80px; width: 44px;height: 44px;background-image:none; background-size: 44px;}
}


@media (max-width: 1300px) {
  .speaker-card {    -ms-grid-columns: 200px 1fr;    grid-template-columns: 200px 1fr;}
  .speaker-card__photo {
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  max-width: 200px;
  height: 200px;
}
.program__speaker {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap:36px;
  padding: 44px 64px;
  margin-top: 36px;
}
}


@media (max-width: 1200px) {
  .program .container {    padding-right: 0;}
  .section-title{font-size:60px;}
}
@media (max-width:1024px) {
  .form{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient:vertical;
      -webkit-box-direction:normal;
          -ms-flex-direction:column;
              flex-direction:column;
      -webkit-box-pack:center;
          -ms-flex-pack:center;
              justify-content:center;
      -webkit-box-align:center;
          -ms-flex-align:center;
              align-items:center;
  }
  .btn_text{display:none;}
  .speaker-card {    -webkit-box-align: start;    -ms-flex-align: start;    align-items: start;}
}

@media (max-width: 992px) {
  .speakers{padding-top:0;padding-bottom:50px;}
  .section-title{font-size:50px;}
  .header__nav_wrapper{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}
  .header__cta {margin-right:32px;}
  .header__menu {
      display: -ms-grid;
      display: -ms-grid
;
      display: grid
;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      grid-gap: 32px;
      width: 100%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 60%;
      margin-top: 80px;
  }
  .header__menu-item a {
      color: var(--color-accent);
      text-transform:uppercase;
      font-family:var(--font-heading);
      font-size: 5vw;
      line-height: 2em;
      font-weight: 400;
      text-align: center;
      width: 100%;
}
.header__menu-item:not(:last-child):after{
  display: none;
}
.header__menu-item:not(:last-child){
  margin-right: 0;
}
.about__card,.program .lg-container,.about_us__card {
  padding: 48px 66px;
}
.about__text,.speaker-card__name,.about_us__main p {
  font-size: 36px;
}
.about{padding-bottom:0;}
.program__topic {    font-size: 36px;    line-height: 40px;}
.program__speaker {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap:24px;
  padding: 24px 32px;
  margin-top: 20px;
  background-size: 20%;
}
.about_us{padding-top:0;}
  .about_us__card{-ms-grid-columns: 1fr;grid-template-columns: 1fr; grid-gap: 30px;}
  .about_us__logo{display:none;}
.pdf {
      position: absolute;
      top: 52px;
      right: 70px;
      width: 50px;
      height: 50px;
      background-image:none;
      background-size: 50px;
  }
.button--lg {
  padding: 12px 30px;
  font-size: 20px;
  line-height: 24px;
}
.program__speaker .prog_teg {
  padding: 0px 15px;
  font-size: 12px;
  line-height: 24px;
}
}


@media (max-width: 800px) {
.hero { padding-bottom: 0; }
.hero__inner {   -webkit-box-orient: vertical;   -webkit-box-direction: reverse;   -ms-flex-direction: column-reverse;   flex-direction: column-reverse; position:relative;        -webkit-box-align: start;        -ms-flex-align: start;        align-items: flex-start; padding: 25px 0 20px;}
.hero__subtitle {    margin-bottom: 45px;}
.hero__end {    margin-bottom: 45px;}
.hero__button {    margin-bottom: 25px;}
.hero__media {        padding-left: 0;   max-width:360px; width: 100%;        margin-bottom: 45px; }
.hero__orgs{position:absolute;        bottom: 60px;        left: 0;}
  .hero__title {  font-size: 80px;}
  .hero{background-position:20% bottom;}
  .about_us .container{padding:0px;}
  .footer__inner {
  grid-auto-flow: initial;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
      text-align: center;
}
.footer__links {
  grid-auto-flow: inherit;
      text-align: center;
  gap: 4px;
}
}

@media (max-width: 768px) {
  .program__timeline .program__item .program__time:after{display: none;}
.program__timeline .program__item:not(:last-child) .program__time:before{display: none;}
.program__item_btn{-ms-grid-columns:1fr;grid-template-columns:1fr;}
.program__time.btn{display:none;}

/* mobile: collapse empty time on topic/panel rows so the list isn't spaced out */
.program__item:not(.program__item--head):not(.program__item--service) .program__time{display:none;}
.program__item:not(.program__item--head):not(.program__item--service) .program__content{padding-bottom:14px;}
/* let the discussion-panel tag wrap instead of overflowing the card */
.program__speaker .prog_teg{white-space:normal;width:auto;max-width:100%;}

}

@media (max-width: 600px) {
.pdf {
      top: 32px;
      right: 40px;
  }
  .section-title{font-size:44px;        line-height: 1.1em;}
.about__card,.program .lg-container,.about_us__card {
  
      padding: 30px 30px;
}
.speaker-card__role {
  min-height: auto;
}
.speaker-card {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  }
.about__text,.speaker-card__name,.about_us__main p {
  font-size: 28px;
}    
.program__topic {
      font-size: 28px;
      line-height: 31px;
  }
.about__title,.about_us__main h2{font-size:18px; margin-bottom:0;}
.about__card,.program .lg-container,.about_us__card {
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
}
.program__timeline {    margin-top: 30px;}    
.section-title {
      max-width: 200px;
  }

.program__cta .program__note {
  line-height: 18px;
  font-size: 14px;
}
.program {
  padding-top: 50px;
}
}


@media (max-width: 579px) {    
  .program__cta .program__note { margin-top: 0px; }
  .pdf {
      top: 32px;
      right: 10px;
  }
  .program__speaker{padding:0;background:transparent;gap: 12px;}   
  .program__speaker-text {    font-size: 16px;    line-height: 20px;}
  .header__cta {display:none;}
  .hero__title {  font-size: 14vw;}    
  .hero__subtitle { font-size: 8vw;    }
  .hero__end { font-size: 6vw;    }
  .program__cta {    margin-top: 0;}
  .speakers{padding-bottom:0;        padding-top: 50px;}
  .program__desc {    font-size: 18px;    line-height: 25px;}
  .program__line {    font-size: 18px;    line-height: 25px;}
  .program__content {    padding-bottom: 30px;}
  .program{padding-bottom:0;}
  .about_us{padding-top:50px;}
  .about_us__card {    background-size: 380px;}
  .hero__orgs {display: none;} 
  .header__inner {    height: 50px;}
  .menu-icon {        top: 0px;    }

}

.w-form-done, .w-form-fail {
display: none; }
h2.thank_you {  font-size: 58px; line-height:1.1em;}
@media (max-width: 479px) {
h2.thank_you {  font-size: 40px; line-height:1.1em;}
}


.devider{width: 100%;height: 1px;background-color:#f2f2fc;}
.speakers__title,.what h2 {margin-left: 64px;}




/*Что вы получите*/
.what {
  padding: 80px 0;
/* .what__smallcontainer */
/* .what__wrapper */
/* .what__item */
/* .what__item_about */
/* .what__item_header */
/* .what__txt */ }
.what__smallcontainer h2 {
  margin-bottom: 60px; }
.what__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(10, 1fr);
  -ms-grid-rows: 1fr 40px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 40px; }
.what__wrapper > *:nth-child(1) {
-ms-grid-row: 1;
-ms-grid-column: 1; }
.what__wrapper > *:nth-child(2) {
-ms-grid-row: 1;
-ms-grid-column: 3; }
.what__wrapper > *:nth-child(3) {
-ms-grid-row: 1;
-ms-grid-column: 5; }
.what__wrapper > *:nth-child(4) {
-ms-grid-row: 1;
-ms-grid-column: 7; }
.what__wrapper > *:nth-child(5) {
-ms-grid-row: 1;
-ms-grid-column: 9; }
.what__wrapper > *:nth-child(6) {
-ms-grid-row: 1;
-ms-grid-column: 11; }
.what__wrapper > *:nth-child(7) {
-ms-grid-row: 1;
-ms-grid-column: 13; }
.what__wrapper > *:nth-child(8) {
-ms-grid-row: 1;
-ms-grid-column: 15; }
.what__wrapper > *:nth-child(9) {
-ms-grid-row: 1;
-ms-grid-column: 17; }
.what__wrapper > *:nth-child(10) {
-ms-grid-row: 1;
-ms-grid-column: 19; }
.what__wrapper > *:nth-child(11) {
-ms-grid-row: 3;
-ms-grid-column: 1; }
.what__wrapper > *:nth-child(12) {
-ms-grid-row: 3;
-ms-grid-column: 3; }
.what__wrapper > *:nth-child(13) {
-ms-grid-row: 3;
-ms-grid-column: 5; }
.what__wrapper > *:nth-child(14) {
-ms-grid-row: 3;
-ms-grid-column: 7; }
.what__wrapper > *:nth-child(15) {
-ms-grid-row: 3;
-ms-grid-column: 9; }
.what__wrapper > *:nth-child(16) {
-ms-grid-row: 3;
-ms-grid-column: 11; }
.what__wrapper > *:nth-child(17) {
-ms-grid-row: 3;
-ms-grid-column: 13; }
.what__wrapper > *:nth-child(18) {
-ms-grid-row: 3;
-ms-grid-column: 15; }
.what__wrapper > *:nth-child(19) {
-ms-grid-row: 3;
-ms-grid-column: 17; }
.what__wrapper > *:nth-child(20) {
-ms-grid-row: 3;
-ms-grid-column: 19; }
  @media (max-width: 1100px) {
    .what__wrapper {
      grid-gap: 20px; } }
  @media (max-width: 992px) {
    .what__wrapper {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      -ms-grid-rows: auto;
      grid-template-rows: auto; }
    .what__wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; } }
.what__item {
  border-radius: var(--radius-md);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 64px;
  min-height: 480px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 1200px) {
      .what__item {
  padding: 40px 44px;
  }
  .what__item_header {
  font-size: 38px;
  line-height: 40px;
  }
  .what .what_1 {
  background-position: 40%;}
  }
  @media (max-width: 779px) {
    .what__item {
      min-height: auto; } }
  @media (max-width: 479px) {
    .what__item {
      padding: 20px;
      padding-bottom: 40px; } }
.what__item .button.button--md {
  position: relative;
  z-index: 1;
  max-width: 240px;
  display: none; }
  @media (max-width: 992px) {
    .what__item .btn_std {
      display: block; } }
  @media (max-width: 779px) {
    .what__item .btn_std {
      margin-top: 32px; } }
.what__item:hover .button.button--md {
  display: flex; }
.what__item:after {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  content: '';
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(16, 16, 17, 0.5); }
  @media (max-width: 479px) {
    .what__item:after {
      background-color: transparent;
      opacity: 1;
      display: block; } }
.what__item:hover:after {
  display: block;
  opacity: 1; }
.what__item.what_2:hover .what__item_about {
  color: white; }
.what .what_1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-column: 1 / 7;
  background-image:none; 
  border-top-left-radius:0;

}
  @media (max-width: 992px) {
  .what__item{
  min-height: 320px;}
    .what .what_1 {
      grid-row: auto;
      grid-column: auto;
      background-position: right top;
      background-size: contain;
      background-color: #000630; } }
  @media (max-width: 600px) {
    .what .what_1 {
      background-size: cover; } }
  @media (max-width: 479px) {
    .what .what_1 {
      background-image: none;
      padding-top: 260px; } }
@media (max-width: 479px) {
  .what .what_1:after {
    content: '';
    display: block;
    height: 230px;
    background-image:none;
    background-size: 150%;
    background-position: right top;
    background-repeat: no-repeat; } }
.what .what_2 {
  border-top-right-radius:0;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 7;
  -ms-grid-column-span: 4;
  grid-column: 7 / 11;
  background-image:none; 
  background-position: calc(100% + 80px) center;}
.what .what_2 .what__txt{ max-width: 300px; }


  @media (max-width: 1100px) {
    .what .what_2 {
      background-position: center; } }
  @media (max-width: 992px) {
    .what .what_2 {
      grid-row: auto;
      grid-column: auto;
      background-position: right top;
      background-size: contain;
      background-color: #e5e0df; } }
  @media (max-width: 600px) {
    .what .what_2 {
      background-size: cover; } }
  @media (max-width: 479px) {
    .what .what_2 {
      background-image: none;
      padding-top: 260px; } }
@media (max-width: 479px) {
  .what .what_2:after {
    content: '';
    display: block;
    height: 230px;
    background-image:none;
    background-size: 110%;
    background-position: right top;
    background-repeat: no-repeat; } }
.what .what_3 {
  border-bottom-left-radius:0;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
  background-image:none; }
  @media (max-width: 992px) {
    .what .what_3 {
      grid-row: auto;
      grid-column: auto;
      background-position: right top;
      background-size: contain;
      background-color: #000630; } }
  @media (max-width: 600px) {
    .what .what_3 {
      background-size: cover; } }
  @media (max-width: 479px) {
    .what .what_3 {
      background-image: none;
      padding-top: 260px; } }
@media (max-width: 479px) {
  .what .what_3:after {
    content: '';
    display: block;
    height: 230px;
    background-image:none;
    background-size: 160%;
    background-position: right center;
    background-repeat: no-repeat; } }
.what .what_4 {
  border-bottom-right-radius:0;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 5;
  -ms-grid-column-span: 6;
  grid-column: 5 / 11;
  background-image:none; }
  @media (max-width: 992px) {
    .what .what_4 {
      grid-row: auto;
      grid-column: auto;
      background-position: right top;
      background-size: contain;
      background-color: #000630; } }
  @media (max-width: 600px) {
    .what .what_4 {
      background-size: cover; } }
  @media (max-width: 479px) {
    .what .what_4 {
      background-image: none;
      padding-top: 260px; } }
@media (max-width: 479px) {
  .what .what_4:after {
    content: '';
    display: block;
    height: 230px;
    background-image:none;
    background-size: 150%;
    background-position: right top;
    background-repeat: no-repeat; } }
.what__item_about {
  max-width: 370px;
  color: white;
  display: table-caption;
  position: relative;
  z-index: 1; }
.what_2 .what__item_about {
  color: var(--color-text); }
.what__item_header {
  font-size: 48px;
  line-height: 48px;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: .03em; }
  @media (max-width: 479px) {
    .what__item_header {
      font-size: 20px;
      line-height: 24px; } }
.what__txt {
  line-height: 1.5em; }

/*конец Что вы получите*/
/*место*/
.place {
background-image:none;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 80vh;
/* .place__container */
/* .place__wrapper */ }
@media (max-width: 1200px) {
  .place {
    background-position: center; } }
@media (max-width: 479px) {
  .place {
    background-attachment: inherit; } }
.place__wrapper {
  width: 100%;
  max-width: 500px;
  padding: 56px 64px;
  background-color: white; 
  border-radius:var(--radius-md);
  border-top-left-radius:0;
}
  @media (max-width: 769px) {
    .place__wrapper {
      padding: 36px 30px;
      max-width: 400px; } }
.place__wrapper h2 {
  margin-bottom: 28px; }
.place h2 {
  margin: 0 0 12px;
  line-height: 1.1em;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-family: var(--font-heading);
  color: var(--color-accent);
}
.place__wrapper p{
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 40px;
  letter-spacing:.03em;
  margin-bottom: 62px;
}
.place__container.container{
  padding-top: 100px;
  padding-left: 14px;
}
.button.map.button--md{
  padding-left: 50px;
  border:2px solid var(--color-accent);
  background-color:white;
  color:var(--color-text);
  white-space: nowrap;

background-image:none;
background-position: 16px center;
background-repeat: no-repeat;
background-size: 24px;
}
.button.map.button--md:hover{
  border:2px solid var(--color-accent);
  background-color:var(--color-accent);
  color:white;

background-image:none;
}
/*конец Место*/
.popup_3free {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 9999;
display: none;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-color: rgba(245, 246, 255, 0.8);
}
.icn_close {
position: absolute;
left: auto;
  top: -12px;
  right: -12px;
bottom: auto;
margin-top: 12px;
margin-right: 12px;
cursor: pointer;
}

.icn_close:hover {
opacity: 0.4;
}

.pp_block_right {
position: relative;
width: 100%;
max-width: 422px;
padding: 45px 50px;
}
.pp_block_right.map {
max-width: 680px;
min-height: 460px;
z-index: 999;
  background: white;
  border-radius:var(--radius-md);
  border-top-left-radius:0;
}
.close_area-2 {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
display: block;
}


.txt_speaker_about.link_about a{
  text-transform: uppercase;
  color: #f1361d;
  border-bottom:1px dashed #f1361d;
  font-size: 13px;
  margin-top: 8px;
  letter-spacing:.03em;
  white-space: nowrap;
  display: inline-block;

}
.modal{
  padding:30px 40px;
  border-radius: var(--radius-md);
  border-top-right-radius: 0;
  max-width: 600px;
  padding: 40px 50px;
}
.blocker {
  display: flex;
  align-items: center;
  justify-content: center;
}



.arrow-beauty {
  display: inline-block;
  max-width: 100%;
}


.arrow-beauty__box {
  position: relative;
  background: linear-gradient(135deg, #f1361e 0%, #d42a12 100%);
  border-radius: 20px;
  padding: 20px 32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.arrow-beauty__text {
  color: white;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: 380px;
}


.arrow-beauty__box::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 19px;
  border-color: transparent transparent transparent #d42a12;
  filter: drop-shadow(1px 0 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
  .registration .arrow-beauty {
    display: block;
    width: 100%;
  }

  .registration .arrow-beauty__box::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    border-width: 19px 15px 0 15px;
    border-color: #d42a12 transparent transparent transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  }
}








@media (max-width:1600px) {
 .registration {  
  padding-left:40px;
  padding-right:40px;
}
}
@media (max-width:1200px) {
  .speaker-card__name {  
  font-size: 38px;}
}
@media (max-width:992px) {
  .speakers__title, .what h2 {    margin-left: 0;
  font-size: 50px;
      line-height: 1.05em;
}
  .what__item_header {
  font-size: 35px;
  line-height: 43px;
  margin-bottom: 11px;
}
.registration .container {
  padding: 50px 20px;
}
}
@media (max-width:479px) {
 .registration {  
  padding-left:20px;
  padding-right:20px;
}
.pp_block_right.map {
  background: transparent;
  min-height: 420px;
}
.pp_block_right {
  padding: 10px 10px;
}
.icn_close {
  top: -42px;
  right: -5px;
}
.place__wrapper p {
  margin-bottom: 20px;
}
.form__title {
  font-size: 38px;
}
.modal {
  border-radius: var(--radius-sm);
  border-top-right-radius: 0;
  padding: 20px 30px;
}
}
