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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Regular.eot);
    src: local('Proxima Nova Regular'),local('ProximaNova-Regular'),url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Regular.woff) format('woff'),url(../fonts/ProximaNova-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Bold.eot);
    src: local('Proxima Nova Bold'),local('ProximaNova-Bold'),url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Bold.woff) format('woff'),url(../fonts/ProximaNova-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Semibold.eot);
    src: local('Proxima Nova Semibold'),local('ProximaNova-Semibold'),url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Semibold.woff) format('woff'),url(../fonts/ProximaNova-Semibold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Inter';
    src: local("Inter"), url(../fonts/Inter_18pt-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Inter';
    src: local("Inter"), url(../fonts/Inter_18pt-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Inter';
    src: local("Inter"), url(../fonts/Inter_18pt-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Inter';
    src: local("Inter"), url(../fonts/Inter_18pt-Bold.ttf) format('truetype');
    font-weight:700;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Inter';
    src: local("Inter"), url(../fonts/Inter_18pt-Black.ttf) format('truetype');
    font-weight:800;
    font-style: normal;
    font-display: swap
}

body {
    font-family: "Inter",sans-serif;
    line-height: 1.3;
    margin: 0;
}

section {
}
section .container {
    width: 100%;
    max-width: 1220px;
    padding: 50px 15px;
    margin: 0 auto;
}
h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}
label[for=policy] {
    flex: 0 0 100% !important;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 5px;
    max-width:fit-content;
    padding: 5px;
}
label[for=policy] input {
    height: 22px !important;
    max-width: 22px;
    flex: 0 0 22px;
    -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;
}
label[for=policy] .label a {color: #000;}
label[for=policy] .warning {
}
label[for=policy].error {
    border: 2px solid red;
}
.header {
    background: #222222;
}
.header .container {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 10px;
    align-items: center;
    max-width: none;
}

.hero {
    background: #e7f0ff;
}
.hero .container {
    background: url(../img/hero_bg.png) no-repeat;
    background-position-x: calc(50% + 300px);
    background-position-y: 170px;
}
.hero .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero .head .logo {}
.hero .head .logo img {}
.hero .head .menu {}
.hero .head .menu a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    margin-left: 20px;
}
.hero .head .toggle_menu {
	display:none;
	width: 40px;
	height: 30px;
	position: relative;
	cursor: pointer;
}
.hero .head .toggle_menu span {
    display: block;
    position: absolute;
    width: 40px;
    height: 4px;
    background: #222;
    transition: all 0.2s;
}
.hero .head .toggle_menu span::before {
	content:'';
	display: block;
	position: relative;
	width: 40px;
	height: 4px;
	background: #222;
	transition: all 0.2s;
}
.hero .head .toggle_menu span::after {
	content:'';
	display: block;
	position: absolute;
	width: 40px;
	height: 4px;
	background: #222;
	transition: all 0.2s;
}

.hero .wrap {
    margin-top: 125px;
    max-width: 590px;
}
.hero .wrap h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}
.hero .wrap h1 span {
    color: #0B6EFD;
    position:relative;
    display: inline-block;
    margin-left: 60px;
}
.hero .wrap h1 span::before {
    content:'';
    display: block;
    position: absolute;
    width: 37px;
    height: 37px;
    background: url(../img/arr.svg) center no-repeat;
    top: 10px;
    left: -50px;
}
.hero .wrap p {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 32px;
}
.hero .wrap .date {
    font-weight: 500;
    font-size: 22px;
}
.hero .forma_wrap {
    background: #fff;
    padding: 40px 30px;
    border-radius: 11px;
}
.hero .forma_wrap form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 18px;
    gap: 10px;
}
.hero .forma_wrap form label {
    flex: 0 0 calc(25% - 5px);
    position: relative;
}
.hero .forma_wrap form label input {
    border-radius: 8px;
    height: 55px;
    border: 1px solid #222;
    padding-left: 15px;
    width: 100%;
}
.hero .forma_wrap form label input.error {
	border:1px solid red;
}
.hero .forma_wrap form label .warning {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 0 7px;
    position: absolute;
    bottom: -5px;
    right: 0;
	border-radius:3px;
}
.hero .forma_wrap form .btn {
    flex: 0 0 23%;
    background: #0B6EFD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 55px;
    cursor: pointer;
    font-size: 18px;
}
.hero .forma_wrap form .notice {
    flex: 0 0 100%;
    color: #7D7D7D;
    font-size: 12px;
    text-align: right;
    margin-top: 10px;
}
.hero .forma_wrap form .notice a {
    color: #7D7D7D;
}
.hero .forma_wrap div.success {}
.hero .forma_wrap div.success p {
	margin-bottom:15px;
}
.hero .forma_wrap div.success .btn {
	width:fit-content;
    background: #0B6EFD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 55px;
    cursor: pointer;
	text-decoration:none;
	padding:0 20px;
	margin:0 auto;
}
.hero .forma_wrap div.error {}

.program {}
.program .container {}
.program h2 {
}
.program .wrap {
    background: #e7f0ff;
    padding: 20px 50px 50px 50px;
    border-radius: 11px;
    position: relative;
}
.program .wrap::before {
    content:'';
    display: block;
    width: 26px;
    height: 322px;
    background: #0B6EFD;
    position: absolute;
    opacity: 53%;
    left: -13px;
    top: 120px;
}
.program .wrap::after {
    content:'';
    display: block;
    width: 26px;
    height: 463px;
    background: #0B6EFD;
    position: absolute;
    opacity: 53%;
    right: -13px;
    bottom: 222px;
}
.program .line {
    display: flex;
    margin-top: 30px;
}
.program .line .time {
    font-size: 32px;
    flex: 0 0 270px;
}
.program .line .text {
    font-size: 24px;
    font-weight: 700;
    padding: 8px 0 30px;
    border-bottom: 5px solid #fff;
    flex: 0 0 calc(100% - 270px);
}
.program .line .text.not_bold {
    font-weight: 400;
}
.program .line:last-child .text {
    border-bottom:0;
}

.for_who {
    background: url(../img/fh_bg.png) no-repeat, #E7F1FF;
    background-position: right top;
}
.for_who .container {}
.for_who h2 {}
.for_who .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}
.for_who p {
    background: #E7F1FF;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444444;
    padding: 12px 26px;
    font-size: 24px;
    text-align: center;
}

.toreg {
    background: url(../img/bg_p.png) center top no-repeat;
}
.toreg .container {
    display: flex;
    justify-content: center;
    max-width: 880px;
    align-items: center;
}
.toreg .container .text {
    flex: 0 0 60%;
}
.toreg .container .text p {
    text-align: center;
    max-width: 370px;
    margin: 0 auto;
    font-size: 19px;
}
.toreg .forma_wrap {
    flex: 0 0 40%;
}
.toreg .forma_wrap form {
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
}
.toreg .forma_wrap form label {
    flex: 0 0 100%;
    position:relative;
    margin: 10px 0;
}
.toreg .forma_wrap form label input {
    border:1px solid #444444;
    width:100%;
    height:50px;
    border-radius:8px;
    padding-left: 10px;
}
.toreg .forma_wrap form label input.error {
	border:1px solid red;
}
.toreg .forma_wrap form label .warning {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 0 7px;
    position: absolute;
    bottom: 4px;
    right: 0;
    border-radius:3px;
}
.toreg .forma_wrap form .btn {
    flex: 0 0 100%;
    background: #0B6EFD;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}
.toreg .forma_wrap form .notice {
    flex: 0 0 100%;
    color: #7D7D7D;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    line-height: 1;
}
.toreg .forma_wrap form .notice a {
    color: #7D7D7D;
}
.toreg .forma_wrap div.success {
	text-align: center;
}
.toreg .forma_wrap div.success p {
	margin-bottom:15px;
}
.toreg .forma_wrap div.success .btn {
	width:fit-content;
    background: #0B6EFD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 55px;
    cursor: pointer;
	text-decoration:none;
	padding:0 20px;
	margin:0 auto;
}
.toreg .forma_wrap div.error {}

.speakers {}
.speakers .container {}
.speakers h2 {}
.speakers .gallery {
    margin-bottom: 50px;
}
.speakers .item {
    width: calc(25% - 15px);
    margin-right: 15px;
    text-align: center;
}
.speakers .item .img {
    height: 280px;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
}
.speakers .item p.name {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 15px 0;
}
.speakers .item p.job {
    font-size: 14px;
    padding: 15px;
}

.place {
    background: url(../img/map.png?4) center top no-repeat;
    position:relative;
}
.place::after {
    content:'';
    position: absolute;
    top: 200px;
    left: calc(50% + 110px);
    display: block;
    width: 55px;
    height: 80px;
    background: url(../img/geo.svg) center no-repeat;
}
.place .container {}
.place .wrap {
    background: #0B6EFD;
    color: #fff;
    max-width: 488px;
    padding-top: 40px;
}
.place h2 {
    text-align: left;
    padding: 0 45px;
}
.place p.hotel {
    font-size: 32px;
    padding: 0 45px;
}
.place p.adress {
    font-size: 18px;
    padding: 0 45px;
}
.place .img {
    height: 294px;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    margin-top: 35px;
}

.footer {background: #222222;color: #fff;}
.footer .container {
    display: flex;
    justify-content: space-between;
}
.footer .row {
}
.footer .row img {}
.footer .row p {
    display: flex;
    gap: 15px;
}
.footer .row a {
    display: flex;
    align-items: center;
    color: #fff;
}
.footer .row .soc a {
    color:#0B6EFD;
}
.footer .row a img {
    display: inline-block;
    margin-right: 5px;
}
@media all and (max-width:1070px) {
    .hero .forma_wrap {}
    .hero .forma_wrap form {}
    .hero .forma_wrap form label {
    flex: 0 0 calc(50% - 5px);
    margin-bottom: 10px;
}
    .hero .forma_wrap form label input {}
    .hero .forma_wrap form label .warning {}
    .hero .forma_wrap form .btn {
    flex: 0 0 calc(50% - 5px);
}
    .hero .forma_wrap form .notice {
    margin: 0;
}
    .hero .forma_wrap form .notice a {}
    .hero .forma_wrap div.success {}
    .hero .forma_wrap div.error {}

    .for_who p {
    font-size: 20px;
}
    
    .footer {}
    .footer .container {
        flex-wrap:wrap;
        gap: 35px;
    }
    .footer .row {
        flex:0 0 100%;
        text-align: center;
    }
    .footer .row img {
    margin: 0 auto;
}
    .footer .row p {
    justify-content: center;
}
    .footer .row a {}
    .footer .row a img {}
}
@media all and (max-width:850px) {
    h2 {
        font-size: 24px;
    }
    .for_who p {
        font-size:16px;
    }
	.speakers {}
	.speakers .container {}
	.speakers h2 {}
	.speakers .gallery {}
	.speakers .item {
    width: calc(50% - 15px);
}
	.speakers .item .img {}
	.speakers .item p.name {}
	.speakers .item p.job {}
    .place {}
    .place .container {}
    .place .wrap {
    max-width: 380px;
}
    .place h2 {}
    .place p.hotel {
    font-size: 24px;
}
    .place p.adress {}
    .place .img {}
}
@media all and (max-width:728px) {
    .hero .container {
    background: url(../img/hero_bg.png) no-repeat, #e7f0ffd9;
    background-position-x: center;
    background-position-y: center;
    background-blend-mode: overlay;
    padding: 10px 15px 50px 15px;
    }
    .hero .head .menu {
        display:none;
    }
    .hero .head .menu.open {
    display: flex;
    position: fixed;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 1;
    left: 0;
    top: 0;
    flex-wrap: wrap;
    align-content: center;
    gap: 25px;
    padding: 70px 0 50px;
    box-shadow: 0 0 20px #0000006b;
}
    .hero .head .menu.open a {
    flex: 0 0 100%;
    text-align: center;
    font-size: 18px;
    margin: 0;
}
    .hero .head .toggle_menu {
    	display:block;
    }
    .hero .head .toggle_menu span {
    top: 12px;
	}
    .hero .head .toggle_menu span::before {
    top: -10px;
	}
    .hero .head .toggle_menu span::after {
    top: 10px;
	}
	.hero .head .toggle_menu.open {
    z-index: 100;
    position: fixed;
    right: 15px;
    top: 20px;
}
    .hero .head .toggle_menu.open span {transform: rotate(45deg);}
    .hero .head .toggle_menu.open span::before {transform: rotate(-90deg);top: 0;}
    .hero .head .toggle_menu.open span::after {
    opacity: 0;
}
    .program {}
    .program .container {}
    .program h2 {}
    .program .wrap {
    padding: 1px 25px 25px 25px;
}
    .program .line {
    margin-top: 15px;
}
    .program .line .time {
    font-size: 22px;
    flex: 0 0 180px;
}
    .program .line .text {
    font-size: 20px;
    padding: 4px 0 15px;
    flex: 0 0 calc(100% - 180px);
}
    .program .line .text.not_bold {}
    .toreg {
    background-size: cover;
}
    .toreg .container {
    flex-wrap: wrap;
}
    .toreg .container .text {
    flex: 0 0 100%;
    margin-bottom: 30px;
}
    .toreg .forma_wrap {
    flex: 0 0 100%;
    max-width: 360px;
}
    .toreg .forma_wrap form {}
    .toreg .forma_wrap form label {}
    .toreg .forma_wrap form label input {}
    .toreg .forma_wrap form label .warning {}
    .toreg .forma_wrap form .btn {}
    .toreg .forma_wrap form .notice {}
    .toreg .forma_wrap form .notice a {}
    .toreg .forma_wrap div.success {}
    .toreg .forma_wrap div.error {} 
}
@media all and (max-width:600px) {
    section {}
    section .container {
}
    h2 {}
    
    .header {
    display: none;
}
    .header .container {
    flex-wrap: wrap;
    gap: 15px;
}
    .header .container img {}
    
    .hero {}
    .hero .container {}
    .hero .head {}
    .hero .head .logo {}
    .hero .head .logo img {}
    .hero .head .menu {}
    .hero .head .toggle_menu {}
    .hero .head .toggle_menu span {}
    .hero .head .toggle_menu span::before {}
    .hero .head .toggle_menu span::after {}
    
    .hero .wrap {
    margin-top: 50px;
}
    .hero .wrap h1 {
    font-size: 32px;
    margin-bottom: 20px;
}
    .hero .wrap h1 span {
    font-size: 40px;
    }
    .hero .wrap h1 span::before {
    top: 5px;
}
    .hero .wrap p {
    font-size: 24px;
    margin-bottom: 20px;
}
    .hero .wrap p.date {}
    .hero .forma_wrap {
    padding: 20px;
}
    .hero .forma_wrap form {}
    .hero .forma_wrap form label {
    flex: 0 0 100%;
}
    .hero .forma_wrap form label input {}
    .hero .forma_wrap form label .warning {}
    .hero .forma_wrap form .btn {
    flex: 0 0 100%;
}
    .hero .forma_wrap form .notice {
    text-align: center;
    margin-top: 10px;
}
    .hero .forma_wrap form .notice a {}
    .hero .forma_wrap div.success {}
    .hero .forma_wrap div.error {}
    
    .program {}
    .program .container {}
    .program h2 {}
    .program .wrap {
    padding: 5px 15px 15px 15px;
    }
    .program .wrap::before {
    width: 16px;
    left: -8px;
}
    .program .wrap::after {
    width: 16px;
    right: -8px;
}
    .program .line {
    flex-wrap: wrap;
}
    .program .line .time {
    flex: 0 0 100%;
}
    .program .line .text {
    flex: 0 0 100%;
    font-size: 16px;
}
    .program .line .text.not_bold {}
    
    .for_who {}
    .for_who .container {}
    .for_who h2 {}
    .for_who .wrap {}
    .for_who p {
    flex: 0 0 100%;
    border-radius: 8px;
}
    
    .toreg {}
    .toreg .container {}
    .toreg .container .text {}
    .toreg .forma_wrap {}
    .toreg .forma_wrap form {}
    .toreg .forma_wrap form label {}
    .toreg .forma_wrap form label input {}
    .toreg .forma_wrap form label .warning {}
    .toreg .forma_wrap form .btn {}
    .toreg .forma_wrap form .notice {}
    .toreg .forma_wrap form .notice a {}
    .toreg .forma_wrap div.success {}
    .toreg .forma_wrap div.error {}
    
    .speakers {}
    .speakers .container {}
    .speakers h2 {}
    .speakers .gallery {}
    .speakers .item {
    width: 100%;
}
    .speakers .item .img {
    max-width: 320px;
    margin: 0 auto;
}
    .speakers .item p.name {}
    .speakers .item p.job {}
    
    .place {
    padding-bottom: 300px;
    background: url(../img/map.png) no-repeat;
    background-position-y: 225%;
    background-position-x: calc(50% - 125px);
    }
    .place::after {
    left: calc(50% - 14px);
    top: 72%;
}
    .place .container {
    padding: 0;
}
    .place .wrap {
    max-width: none;
}
    .place h2 {
    padding: 0 15px;
    font-size: 24px;
    margin-bottom: 15px;
}
    .place p.hotel {
    padding: 0 15px;
}
    .place p.adress {
    padding: 0 15px;
}
    .place .img {}
    
    .footer {}
    .footer .container {}
    .footer .row {
    text-align: left;
}
    .footer .row img {
    margin: 0;
}
    .footer .row p {
    flex-wrap: wrap;
    justify-content: left;
    gap: 0;
}
    .footer .row a {
    flex: 0 0 100%;
    justify-content: left;
}
    .footer .row a img {}
}

.no_autorize_popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000009c;
    z-index: 100000;
    align-items: center;
    justify-content: center;
}
.no_autorize_popup .container {
    max-width: 600px;
	position: relative;
}
.no_autorize_popup .container iframe {
	min-height:480px;
	border-radius: 6px;
}
.no_autorize_popup .container .popup_wrap {
	border-radius: 6px;
	padding: 50px;
	background: #e9f0f9;
}
.no_autorize_popup .container .popup_wrap h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}
.no_autorize_popup .container .popup_wrap p {
    font-size: 18px;
    margin-bottom: 10px;
}
.no_autorize_popup .container .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.no_autorize_popup .container .buttons button {}
.no_autorize_popup .container .buttons .btn {
    display: flex;
    background: #12A730;
    height: 50px;
    width: fit-content;
    color: #fff;
    border: 0;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.no_autorize_popup .no_autorize_popup_close {
    position: absolute;
    width: 25px;
    height: 25px;
    top: -30px;
    right: 0;
    cursor: pointer;
}
.no_autorize_popup .no_autorize_popup_close span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 11px;
}
.no_autorize_popup .no_autorize_popup_close span:nth-child(1) {
    transform: rotate(-45deg);
}
.no_autorize_popup .no_autorize_popup_close span:nth-child(2) {
    transform: rotate(45deg);
}