

/* Start:/css/style.css?175267440932700*/
:root {
--green:#415111;
--dgreen:#34410E;
--orange:#FB8159;
--pastel:#F2E8DF;
--white:#ffffff;
--fontsize:24px;
}

h1, h2, h3, h4 {

}

h2 {
font-size: 3.56rem;
}

* {
font-family: "Raleway", sans-serif;
font-size: var(--fontsize);
color: var(--green);
}

html, body {
max-width: 100%;
overflow-x: hidden;
}

a {
color: var(--green);
text-decoration: none;
transition: 300ms;
}

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

@media (max-width:1680px) {
	:root {
	--fontsize:21px;
	}
}

@media (max-width:1570px) {
	:root {
	--fontsize:19px;
	}
}

@media (max-width:1440px) {
	:root {
	--fontsize:18px;
	}
}

@media (max-width:1280px) {
	:root {
	--fontsize:16px;
	}
}

@media (max-width:1170px) {
	:root {
	--fontsize:14px;
	}
}

.button {
background: var(--orange);
border-radius: 10px;
height: 2.78rem;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
padding: 0 1.67rem;
color: var(--white);
font-size: 0.83rem;
text-transform: uppercase;
cursor: pointer;
transition: 300ms;
}

.button:hover {
color: var(--white);
background: var(--green);
}

.button_i {
background: var(--white);
color: var(--green);
}

.ancor {
top: -5rem;
position: relative;
}

.wrapper {
margin:0 2.22rem;
position: relative;
}

.fs-wrap {
background: var(--green);
padding-bottom: 6.67rem;
padding-top: 0.67rem;
}

.fs-wrap__premia {
background: var(--orange);
}

.header_wrap {
height: 4.3rem;
margin-bottom: 1.67rem;
}

.header {
margin:0 2.22rem;
padding: 0.78rem 1.00rem;
background: var(--dgreen);
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
border-radius: 16px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
position: fixed;
z-index: 4;
width: calc(100% - 6.444rem);
color: var(--white);
}

.fs-wrap__premia .header {
background: #E06747;
}

.header__logo {
max-width: 16.67rem;
font-family: "Unbounded", sans-serif;
color: var(--white);
}

.header__right {
width: calc(100% - 16.67rem);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.header__menu {
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
}

.header__menu-item {
font-size: 0.67rem;
margin: 0 0.56rem;
color: var(--white);
text-transform: uppercase;
}

.header__soc-button {
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
}

.header__soc {
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
margin-right: 1.67rem;
}

.header__soc-item {
margin: 0 0.44rem;
}

.header__soc-item-icon {
fill:var(--white);
transition: 300ms;
}

.header__soc-item-icon:hover {
fill:var(--orange);
}

.header__soc-item-icon-01 {
width: 1.17rem;
height: 1.06rem;
}

.header__soc-item-icon-02 {
width: 1.22rem;
height: 1.00rem;
}

.header__soc-item-icon-03 {
width: 1.22rem;
height: 0.72rem;
}

.header__soc-item-icon-04 {
width: 0.78rem;
height: 1.33rem;
}

.header__mm {
display: none;
}

.fs {
	position: relative;
	padding: 2rem 0 5rem;
}

.fs__stitle {
	text-align: center;
	font-size: 2.4vw;
	padding-top: 1.1rem;
	padding-bottom: 0.5rem;
	color: var(--white);
	opacity: .3;
}

.fs__title {
	text-align: center;
	font-size: 5.33vw;
	line-height: 0.8;
	color: var(--white);
	margin-bottom: 3rem;
}

/* Контейнер для всего блока с картинками */
.fs__container {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3.06rem;
	margin-bottom: 5rem;
}

/* Левые боковые картинки */
/* Базовые стили остаются без изменений */
.fs__side-images-left {
	position: absolute;
	left: -3rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 1;
	
	/* Добавляем анимацию */
	opacity: 0;
	animation: fadeInSlideLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.3s;
}

.fs__side-images-left .fs__side-image {
	width: 12rem;
	height: 15rem;
	border-radius: 20px;
	overflow: hidden;
	
	/* Добавляем анимацию для картинок */
	opacity: 0;
	will-change: transform, opacity;
}

.fs__side-images-left .fs__side-image:first-child {
	transform: translateX(-3rem) rotate(-5deg);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.6s;
}

.fs__side-images-left .fs__side-image:last-child {
	transform: translateX(-1rem) rotate(3deg);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.8s;
	margin-left: 5rem;
}

/* Правые боковые картинки */
.fs__side-images-right {
	position: absolute;
	right: -3rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 1;
	
	/* Добавляем анимацию */
	opacity: 0;
	animation: fadeInSlideRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.5s;
}

.fs__side-images-right .fs__side-image {
	width: 12rem;
	height: 15rem;
	border-radius: 20px;
	overflow: hidden;
	
	/* Добавляем анимацию для картинок */
	opacity: 0;
	will-change: transform, opacity;
}

.fs__side-images-right .fs__side-image:first-child {
	transform: translateX(3rem) rotate(5deg);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.8s;
}

.fs__side-images-right .fs__side-image:last-child {
	transform: translateX(1rem) rotate(-3deg);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 1s;
	right: 5rem;
	position: relative;
}

.fs__side-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Анимации */
@keyframes fadeInSlideLeft {
	0% {
		opacity: 0;
		transform: translateY(-50%) translateX(-40px);
	}
	100% {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	}
}

@keyframes fadeInSlideRight {
	0% {
		opacity: 0;
		transform: translateY(-50%) translateX(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateX(var(--x-offset)) rotate(var(--rotation)) translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateX(var(--x-offset)) rotate(var(--rotation)) translateY(0);
	}
}

/* Переменные для анимации отдельных картинок */
.fs__side-images-left .fs__side-image:first-child {
	--x-offset: -3rem;
	--rotation: -5deg;
}

.fs__side-images-left .fs__side-image:last-child {
	--x-offset: -1rem;
	--rotation: 3deg;
}

.fs__side-images-right .fs__side-image:first-child {
	--x-offset: 3rem;
	--rotation: 5deg;
}

.fs__side-images-right .fs__side-image:last-child {
	--x-offset: 1rem;
	--rotation: -3deg;
}

/* Hover эффект */
.fs__side-image:hover img {
	transform: scale(1.05);
}

/* Центральные карточки */
.fs__items {
	display: flex;
	justify-content: center;
	gap: 3.33rem;
	max-width: 70%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.fs__item {
	background: var(--pastel);
	border-radius: 20px;
	padding: 1.39rem;
	position: relative;
}

.fs__item-date {
	font-size: 1.67rem;
	font-family: "Unbounded", sans-serif;
	color: var(--green);
}

.fs__item-place {
	display: flex;
	align-items: center;
	margin-top: 0.72rem;
	margin-bottom: 1.28rem;
	color: var(--green);
}

.fs__item-place-icon {
	margin-right: 0.56rem;
	width: 1rem;
	height: 1rem;
}

.fs__item-text {
	opacity: .6;
	color: var(--green);
	line-height: 1.4;
}

.fs__item-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 1.83rem;
	gap: 0.88rem;
}

.fs__item-buttons-item {
	flex: 1;
	text-align: center;
}

.themes__title {
padding-bottom: 1.44rem;
}

.themes__list-inner {
display: flex;
width:146vw;
}

.themes__list-item {
position: relative;
width: calc(20vw - 1.11rem);
min-height: 21.11rem;
padding: 1.67rem;
border-radius: 30px;
overflow: hidden;
display: flex;
align-content: space-between;
flex-wrap: wrap;
margin-right: 1.11rem;
}

.themes__list-item-pic {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
top:0;
left: 0;
}

.themes__list-item-pic-bg {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
top:0;
left: 0;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%), url(/css/image.png);
}

.themes__list-item-num {
position: relative;
z-index: 2;
font-size: 5.33rem;
color: var(--white);
font-family: "Unbounded", sans-serif;
width: 100%;
}

.themes__list-item-text {
position: relative;
z-index: 2;
color: var(--white);
width: 100%;
}

.program {
padding-top: 4.72rem;
}

.program__title {
text-align: center;
}

.program__tags {
display: flex;
flex-wrap: wrap;
margin: 0 auto;
max-width: 50rem;
margin-top: 1.67rem;
margin-bottom: 2.50rem;

}

.program__tags-item {
background: var(--green);
border-radius: 4px;
padding: 0.17rem 0.28rem;
display: flex;
align-content: center;
align-items: center;
color: var(--white);
margin-right: 1rem;
}

.program__tags-item-icon {
fill:var(--white);
margin-right: .3rem;
}

.program__tags-item_date {
width: 0.94rem;
height: 1.06rem;
}

.program__tags-item_place {
width: 0.83rem;
height: 1.06rem;
}

.program__tags-item_online {
width:1.06rem;
height:0.83rem;
}

.program__body {
margin: 0 auto;
max-width: 50rem;
}

.program__body-item {

}

.program__body-item-time {
font-size: 1.33rem;
opacity: .4;
}

.program__body-item-body {
margin-top: 1rem;
}

.program__body-item {
margin-bottom: 1.11rem;
}

.program__body-item-body-title, .program__body-item-body-topic-title {
font-size: 1.33rem;
font-family: "Raleway", sans-serif;
font-weight: 400;
}

.program__body-item-body-topic {
padding: 1.11rem 1.67rem;
background: var(--pastel);
border-radius: 20px;
}

.program__body-item-body-topics {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.program__body-item-body-topics .program__body-item-body-topic {
width: calc(33.33% - 4.17rem);
}

.program__body-item-body-topic .program__body-item-body-topic-title {
margin-bottom: 0.56rem;
}

.program__body-item-body-topic-text p {
margin-bottom: 0.56rem;
}

.program__body-item-body-topic-speakers {
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
}

.program__body-item-body-topic-speakers-title {
margin-right: 1.11rem;
}

.program__body-item-body-topic-speakers-item {
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
margin-right: 1.11rem;
max-width: 100%;
margin-bottom: 0.5rem;
margin-top: 0.5rem;
}

.program__body-item-body-topic-speakers-item_has-link {
cursor: pointer;
}

.program__body-item-body-topic-speakers-item-name {
margin-left: 0.56rem;
opacity: .6;
max-width: calc(100% - 2.78rem);
}

.program__body-item-body-topic-speakers-item_has-link .program__body-item-body-topic-speakers-item-name {
text-decoration: underline;
}

.program__body-item-body-topic-speakers-item_has-link:hover .program__body-item-body-topic-speakers-item-name {
text-decoration: none;
}

.program__body-item-body-topic-speakers-item-pic {
width: 2.22rem;
}

.program__body-item-body-topic-speakers-item-pic-src {
width: 2.22rem;
height: 2.22rem;
border-radius: 50%;
}

.speakers {
padding-top: 3.33rem;
padding-bottom: 5rem;
}

.speakers__title {
padding-bottom: 1.39rem;
}

.speakers__list {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.speakers__list-item {
width: calc(25% - 0.83rem);
margin-bottom: 1.11rem;
}

.speakers__list-item_has-bio {
cursor: pointer;
}

.speakers__list-item_has-bio:hover .speakers__list-item-name, .speakers__list-item_has-bio:hover .speakers__list-item-role  {
color: var(--orange);
transition: 300ms;
}

.speakers__list-item-pic-src {
width: 100%;
border-radius: 30px;
}

.speakers__list-item-name {
font-size: 1.33rem;
margin-top: 0.83rem;
margin-bottom: 0.56rem;
}

.speakers__list-item_has-bio .speakers__list-item-name {
text-decoration: underline;
}

.speakers__list-item-role {
opacity: .6;
}

.speaker-detail {
display: none;
max-width: 600px;
padding: 1.67rem;
border-radius: 30px;
background: var(--pastel);
}

.speaker-detail__top {
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
margin-bottom: 1.5rem;
}

.speaker-detail__top-photo {
width: 30%;
margin-right: 2rem;
}

.speaker-detail__top-photo-src {
border-radius: 30px;
max-width: 100%;
}

.speaker-detail__top-info {
width: calc(70% - 2rem);
}

.speaker-detail__top-info-name {
font-size: 1.33rem;
}

.speaker-detail__top-info-role {
opacity: .6;
}

.award-wrap {
background: var(--orange);
margin-bottom: 4rem;
}

.award {
padding-top: 6rem;

}

.award__title {
font-size: 8vw;
line-height: 1;
text-align: center;
color: var(--white);
position: relative;
}

.award__title span {
font-size: 2rem;
color: #740000;
opacity: .4;
display: block;
}

.award__block {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 3.61rem;
padding-bottom: 8.89rem;
}

.award__block-col {
width: 100%;
}

.award__block-col .button {
display: flex;
margin: 2rem auto;
background: #E06747;
max-width: 11.5rem;
}

.award__block-col .button_i {
border:1px solid var(--green);
}

.award__block-col-title {
font-size: 2.22rem;
padding-bottom: 1.83rem;
}

.award__block-col-text {
max-width: 50rem;
color: var(--white);
margin: 0 auto;
}

.award__block-col-text p {
font-size: 1rem;
padding-bottom: 1rem;
color: var(--white);
}


.award__block-col-nom-item-tags {
display: flex;
flex-wrap: wrap;
margin-bottom: .5rem;
}

.award__block-col-nom-item-tags-item {
height: 1.44rem;
background: var(--pastel);
border-radius: 4px;
padding: 0 0.56rem;
display: flex;
align-content: center;
align-items: center;
color: var(--orange);
margin-right: 0.56rem;
margin-bottom: .56rem;
}

.award__blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
	margin-top: 3rem;
}

.award__block-col-nom {
	
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.award__block-col-nom:nth-child(1) { animation-delay: 0.1s; }
.award__block-col-nom:nth-child(2) { animation-delay: 0.2s; }
.award__block-col-nom:nth-child(3) { animation-delay: 0.3s; }
.award__block-col-nom:nth-child(4) { animation-delay: 0.4s; }


.award__block-col-nom:hover {
	transform: translateY(-10px);
}



.award__block-col-nom-image {
	width: 100%;
	height: 260px;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	position: relative;
}

.award__block-col-nom-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.award__block-col-nom:hover .award__block-col-nom-image img {
	transform: scale(1.05);
}

.award__block-col-nom-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--white);
	line-height: 1.3;
	min-height: 3.5rem;
}

.award__block-col-nom-text {
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	
}

.award__block-col-nom-text.truncated {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.award__block-col-nom-text-toggle {
	color: var(--white);
	text-decoration: dashed;
	cursor: pointer;
	margin-top: 0.5rem;
	display: inline-block;
	transition: color 0.3s ease;
	border-bottom: 1px dashed var(--white);
}

.award__block-col-nom-text-toggle {
color: var(--white);
margin-bottom: 2rem;
}

.award__block-col-nom li {
color: rgba(255, 255, 255, 0.8);
list-style: square !important;
margin-top: 0.5rem;
}

.award__block-col-nom-button {
	margin-top: auto;
	background: #E06747;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 1200px) {
	.award__blocks {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.award {

	}
	
	.award__title {
		font-size: 2rem;
	
	}
	
	.award__blocks {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.award__block-col-nom {
	
	}
	
	.award__block-col-nom-title {
		font-size: 1.2rem;
	}
	
	.award__block-col-nom-text {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.award__block-col-nom-image {
		height: 150px;
	}
	
	.button {
		height: 2.5rem;
		font-size: 0.8rem;
		padding: 0 1rem;
	}
}

.award__block-col-pic {
max-width: 20vw;
top: 0rem;
position: absolute;
left: -1rem;
transform: rotate(-15deg);
}

.org__title {
padding-bottom: 1.67rem;
}

.org__list {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.org__list-item {
background: var(--pastel);
padding: 1.67rem;
border-radius: 30px;
width: calc(50% - 3.89rem);
display: flex;
flex-wrap: wrap;
}

.org__list-item-logo {
width: 33%;
}

.org__list-item-logo-src {
min-width: 60%;
}

.org__list-item-text {
width: 67%;
}

.org__list-item-text-title {
font-size: 1.67rem;
}

.org__list-item-text-mail {
color: var(--orange);
display: block;
margin-top: 0.7rem;
}

.org__list-item-text p {
opacity: .6;
padding-top: 1rem;
}

.footer {
border-top: 1px solid rgba(65, 81, 17, 0.2);
display: flex;
flex-wrap: wrap;
padding-top: 1.11rem;
padding-bottom: 1.11rem;
margin-top: 3.33rem;
}

.footer-col {
width: 50%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
font-size: 0.78rem;
}

.footer-col a {
font-size: 0.78rem;
}

.afs {
text-align: center;
padding-top: 1.2rem;
}

.afs__stitle {
font-size: 2.67rem;
line-height: .9;
color: var(--orange);
padding-bottom: .5rem;
}

.fs-wrap__premia .afs__stitle {
color: #740000;
opacity: .4;
}

.afs__title {
font-size: 6.67rem;
line-height: .9;
color: var(--orange);
}

.fs-wrap__premia .afs__title {
color: var(--white);
font-size: 5rem;
line-height: .9;
max-width: 50rem;
margin: 0 auto;
position: relative;
z-index: 3;
}

.afs__pic {
transform: rotate(-15deg);
margin-top: -2rem;
}

.afs__icons {
position: relative;
margin: 0 auto;
width: 1px;
top: -6rem;
}

.afs__icons-item {
font-size: 7.11rem;
position: absolute;
opacity: 0;
transition: transform 1s ease, opacity 1s ease;
}

/* Конечные позиции */
.afs__icons-item:nth-child(1) {
	animation: move-out-1 1s ease forwards;
}

.afs__icons-item:nth-child(2) {
	animation: move-out-2 1.2s ease forwards;
}

.afs__icons-item:nth-child(3) {
	animation: move-out-3 1.4s ease forwards;
}

.afs__icons-item:nth-child(4) {
	animation: move-out-4 1.6s ease forwards;
}

.afs__icons-item:nth-child(5) {
	animation: move-out-5 1s ease forwards;
}

.afs__icons-item:nth-child(6) {
	animation: move-out-6 1.2s ease forwards;
}

.afs__icons-item:nth-child(7) {
	animation: move-out-7 1.4s ease forwards;
}

.afs__icons-item:nth-child(8) {
	animation: move-out-8 1.6s ease forwards;
}

/* Ключевые кадры для анимации */
@keyframes move-out-1 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(-45vw, -8vw);
		opacity: 1;
	}
}

@keyframes move-out-2 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(-34vw, -14vw);
		opacity: 1;
	}
}

@keyframes move-out-3 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(-32vw, -2vw);
		opacity: 1;
	}
}

@keyframes move-out-4 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(-21vw, -8vw);
		opacity: 1;
	}
}

@keyframes move-out-5 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(35vw, -8vw);
		opacity: 1;
	}
}

@keyframes move-out-6 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(24vw, -14vw);
		opacity: 1;
	}
}

@keyframes move-out-7 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(22vw, -2vw);
		opacity: 1;
	}
}

@keyframes move-out-8 {
	0% {
		transform: translate(0%, 0%);
		opacity: 0;
	}
	100% {
		transform: translate(11vw, -8vw);
		opacity: 1;
	}
}

.aabout {
margin-top: 3rem;
margin-bottom: 8.33rem;
}

.aabout__title {
font-size: 3.56rem;
text-align: center;
color: #F2E8DF;
padding-bottom: 1.39rem;
}

.aabout__text {
max-width: 50rem;
margin: 0 auto;
}

.aabout__text p, .aabout__text a {
font-size: 1rem;
text-align: center;
color: var(--white);
}

.aabout__text p {
padding-bottom: 1rem;
}

.aabout__text a {
text-decoration: underline;
}

.aabout__buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.aabout__buttons-item {
border:1px solid var(--white);
color: var(--white);
border-radius: 4px;
display: flex;
align-content: center;
align-items: center;
height: 2.22rem;
padding: 0 0.56rem;
margin: 0 0.56rem;
}

.aabout__buttons-item:hover {
color: var(--white);
background: var(--green);
}

.aabout__buttons-item-icon-01 {
width: 0.94rem;
height: 1.06rem;
margin-right: 0.56rem;
fill:var(--white);
}

.aabout__buttons-item-icon-02 {
width: 0.83rem;
height: 1.06rem;
margin-right: 0.56rem;
fill:var(--white);
}

.anom {
margin-top: -10rem;
}

.anom__title {
font-size: 3.56rem;
color: var(--white);
text-align: center;
margin-top: 10rem;
}

.anom__stitle {
font-size:2rem;
color: #740000;
opacity: .4;
text-align: center;
font-weight: 500;
}

.anom__block:nth-child(1) {
padding-bottom: 1rem;
padding-top: 4.44rem;
}

.anom__block:nth-child(2) {
padding-bottom: 11.11rem;
position: relative;
}

.anom__block:nth-child(3) {
padding-bottom: 11.11rem;
position: relative;
}


.anom__block:nth-child(4) {
padding-bottom: 11.11rem;
position: relative;
}

.anom__block:nth-child(5) {
padding-bottom: 5rem;
position: relative;
}

.anom__block-item {
max-width: 60rem;
display: flex;
align-content: center;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 auto;
}

.anom__block-item-pic {
width: 19.44rem;
height: 19.44rem;
border-radius: 1.67rem;
transform: rotate(-10deg);
background: var(--white);
position: relative;
z-index: 1;
}

.anom__block-item-pic-src {
transform: rotate(15deg);
border-radius: 1.67rem;
width: 19.44rem;
height: 19.44rem;
}

.anom__block-item-pic-icon {
font-size:7.11rem;
position: absolute;
z-index: 3;
right: 3.72rem;
bottom: -5rem;
transform: rotate(10deg);
}

.anom__block-item-text {
width: calc(100% - 30rem);
z-index: 1;
position: relative;
}

.anom__block-item-text_vote {
width: 100%;
}

.anom__block-item-text-tags {
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
margin-bottom: 0.78rem;
}

.anom__block-item-text-tags-item {
background: var(--white);
height: 1.44rem;
color: var(--orange);
padding: 0 0.56rem;
display: flex;
align-content: center;
align-items: center;
border-radius: 0.22rem;
margin-right: 0.56rem;
}

.anom__block-item-text-tags-item_alt {
background: #F2E8DF;
}

.anom__block-item-text-title {
color: var(--green);
font-size: 1.67rem;
}

.anom__block-item-text-val {
color: var(--green);
padding-top: 0.83rem;
padding-bottom: 2.22rem;
}

.anom__block-item-button {
display: inline-flex;
}

.aopen-vote {
margin-top: 6rem;
}

.aopen-vote__title {
font-size: 3.56rem;
text-align: center;
color: var(--orange);
line-height: 1;
padding-bottom: 1.67rem;
}

.anom__list-item {
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
background: var(--pastel);
padding: 1.67rem;
border-radius: 30px;
margin-bottom: .5rem;
}

.anom__list-item-show-text {
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
width: calc(100% - 9.47rem);
}

.anom__list-item-num {
font-size: 1.67rem;
width: 2rem;
}

.anom__list-item-name {
font-size: 1.33rem;
width: 20%;
}

.anom__list-item-descr {
width: calc(60% - 1rem);
margin-left: 0.5rem;
margin-right: 0.5rem;
}

.anom__list-item-link {
text-decoration: underline;
margin-top: 0.5rem;
cursor: pointer;
}

.anom__list-item-link:hover {
text-decoration: none;
}

.anom__list-item-votes {
width: calc(20% - 2.5rem);
background: var(--white);
height: 1.44rem;
color: var(--orange);
padding: 0 0.56rem;
display: flex;
align-content: center;
justify-content: center;
align-items: center;
border-radius: 30px;
margin-right: 0.5rem;
}

.anom__list-item-vote-button {

}

.anom__list-item-full-bio {
background: var(--pastel);
padding: 1.67rem;
border-radius: 30px;
display: none;
max-width: 500px;
}

.anom__list-item-full-bioname {
font-size: 1.67rem;
margin-bottom: 1rem;
}

.aregister {
display: none;
background: var(--pastel) !important;
padding: 1.67rem !important;
border-radius: 30px !important;
}

.bstl-form-title {
text-align: center;
margin-bottom: 1rem;
}

.bstl-form__social-item_yandex {
background: #000000;
margin-bottom: 0.5rem;
}

.bstl-form__social-item_vkontakte {
background: #0976FF;
}

.bstl-form__social-item-text {
color: var(--white);
margin-left: .7rem;
}

.bstl-form__social-footer, .aregister form, .aregister noindex {
display: none;
}

.afaq {
background: var(--orange);
padding-bottom: 6.67rem;
padding-top: 7.22rem;
position: relative;
margin-top: 5rem;
margin-bottom: 6rem;
}


.afaq__title {
font-size: 3.56rem;
text-align: center;
color: var(--white);
line-height: 1;
padding-bottom: 5rem;
}

.faq {
max-width: 60rem;
margin: 0 auto;
}

.faq-item {
background: var(--white);
overflow: hidden;
border-radius: 1.67rem;
padding: 1rem 3.06rem;
margin-bottom: 1.11rem;
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
cursor: pointer;
}

.faq-question span {
font-size: 1.67rem;
font-weight: 600;
color: var(--green);

}

.faq-question:hover {
color: var(--orange);
}

.faq-answer {
display: none; /* Скрыто по умолчанию */
color: var(--green);
}

.faq-toggle {
transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
transform: rotate(45deg); /* Поворот иконки */
}

.faq-toggle__cross {
width: 2.67rem;
height: 2.67rem;
fill:var(--orange);
}

@media (max-width:1680px) {

.afs__icons {
top: -9rem;
}

}

@media (max-width:990px) {
	h2 {
	font-size: 2.2rem;
	}
	
	.header {
	margin-left: 1.43rem;
	margin-right: 1.43rem;
	width: calc(100% - 4.86rem);
	}
	
	.wrapper {
	margin-left: 1.43rem;
	margin-right: 1.43rem;
	}
	
	.header__right {
	position: absolute;
	top:4rem;
	padding: 0.78rem 1.00rem;
	background: var(--white);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
	width: calc(100% - 2rem);
	left: 0rem;
	border-radius: 16px;
	display: none;
	}
	
	.header__right.header__right_visible {
	display: block;
	}
	
	.header__menu {
	width: 100%;
	justify-content: center;
	}
	
	.header__menu-item {
	width: 100%;
	font-size: 1.67rem;
	font-family: "Unbounded", sans-serif;
	text-align: center;
	margin: 1.5rem 0 0 0;
	opacity: 1;
	}
	
	.header__soc-button {
	width: 100%;
	margin-top: 2rem;
	}
	
	.header__soc {
	width: 100%;
	justify-content: center;
	margin-right: 0;
	margin-bottom: 1.5rem;
	}
	
	.header__button {
	width: 100%;
	}
	
	.header__mm {
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 2.57rem;
	}
	
	.header__mm-stripe {
	width: 2.57rem;
	height: 2px;
	background: var(--white);
	margin-bottom: 0.7rem;
	transition: 300ms;
	}
	
	.header__mm_active .header__mm-stripe:nth-child(1) {
	transform: rotate(45deg);
	position: relative;
	top: 0.8rem;
	}
	
	.header__mm_active .header__mm-stripe:nth-child(2) {
	transform: rotate(-45deg);
	}
	
	.header__mm-stripe:nth-child(2) {
	margin-bottom: 0;
	}
	
	.fs__stitle {
	font-size: 2rem;
	}
	
	.fs__side-images-left {
	left: -10rem;
	}
	
	.fs__side-images-right {
	right: -10rem;
	}
	
	.fs__pic-01 {
	top: -4rem;
	z-index: -1;
	}
	
	.fs__items {
	max-width: 100%;
	}
	
	.fs__item {
	width: 100%;
	margin-bottom: 1.7rem;
	}
	
	.fs__item-pic-01, .fs__item-pic-02 {
	display: none;
	}
	
	.themes__list-inner {
	width: 100%;
	flex-wrap: wrap;
	}
	
	.themes__list-item {
	width: 100%;
	margin-bottom: 1.7rem;
	margin-right: 0;
	}
	
	.program {
	padding-top: 2.72rem;
	}
	
	.program__tags {
	margin-bottom: 1.5rem;
	}
	
	.program__tags-item {
	margin-bottom: 1rem;
	}
	
	.program__body-item {
	margin-bottom: 1.61rem;
	}
	
	.program__body-item-time {
	width: 100%;
	text-align: left;
	margin-bottom: 0.5rem;
	}
	
	.program__body-item-body {
	width: 100%;
	}
	
	.speakers__list-item {
	width: calc(50% - 0.83rem);
	}
	
	.award__block {
	padding-bottom: 3.89rem;
	margin-top: 1rem;
	}
	
	.fs__side-images-left .fs__side-image, .fs__side-images-right .fs__side-image {
	width: 10rem;
	height: 10rem;
	}
	
	.award__block-col {
	width: 100%;
	margin-bottom: 2.5rem;
	}
	
	.award__block-col-pic {
	margin-top: 0;
	}
	
	.award__block-col:nth-child(1) {
	order: 2;
	}
	
	.award__block-col:nth-child(2) {
	order: 1;
	}
	
	.award__block-col:nth-child(3) {
	order: 3;
	}
	
	.award__block-col-pic {
	display: none;
	}
	
	.org__list-item {
	width: 100%;
	margin-bottom: 1.7rem;
	}
	
	.footer-col {
	width: 100%;
	margin-bottom: 1rem;
	}
	
	.afs__stitle {
	font-size: 1.67rem;
	}
	
	.afs__title {
	font-size: 3.2rem;
	}
	
	.aabout__title {
	font-size: 2.22rem;
	}
	
	.afs__pic {
	max-width: 90%;
	}
	
	.aabout__buttons-item {
	margin-bottom: 1rem;
	}
	
	.anom__title {
	font-size: 2.22rem;
	margin-top: 6rem;
	color: var(--green);
	}
	
	.anom__stitle {
	font-size: 1.67rem;
	color: var(--green);
	}
	
	.anom__block:nth-child(1) {
	padding-top: 1rem;
	}
	
	.anom__block {
	padding-bottom: 5rem !important;
	}
	
	.anom__block-item-pic {
	width: 100%;
	background: transparent;
	margin-bottom: 2rem;
	}
	
	.anom__list-item-show-text {
	width: 100%;
	justify-content: space-between;
	}
	
	.anom__block-item-text {
	width: 100%;
	}
	
	.aopen-vote__title {
	font-size: 2.2rem;
	}
	
	.anom__list-item-name {
	width: calc(100% - 2rem);
	}
	
	.anom__list-item-descr {
	width: 100%;
	margin: 0;
	margin-top: 1rem;
	}
	
	.anom__list-item-votes {
	width: 8rem;
	margin: 1rem 0;
	}
	
	.afaq {
	padding-bottom: 10rem;
	padding-top: 0;
	}
	
	.afaq__title {
	font-size: 2.2rem;
	color: var(--green);
	padding-bottom: 2rem;
	}
	
	.faq-item {
	padding: 1rem 2.06rem;
	}
	
	.faq-question span {
	font-size: 1.33rem;
	}
}

.support {
	padding: 4rem 2rem;
	position: relative;
	overflow: hidden;
}


.support__container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.support__title {
	font-size: 2.5rem;
	color: var(--green);
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.2s;
}

.support__subtitle {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.4s;
}

.support__logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.6s;
}

.support__logo {
	background: var(--white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.support__logo-src {
max-width: 300px;
}

.support__logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support__logo:hover::before {
	opacity: 1;
}

.support__logo-svg {
	width: 200px;
	height: 120px;
	position: relative;
	z-index: 1;
}

.support__text {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 0.8s;
}

.support__link {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2rem;
	background: var(--blue);
	color: var(--white);
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-weight: 600;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	animation-delay: 1s;
}

.support__link:hover {
	background: var(--red);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(197, 40, 47, 0.3);
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.support {
		padding: 2rem 1rem;
	}
	
	.support__title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	
	.support__subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	
	.support__logo {
		padding: 1.5rem;
	}
	
	.support__logo-svg {
		width: 150px;
		height: 90px;
	}
	
	.support__text {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.support__title {
		font-size: 1.5rem;
	}
	
	.support__logo-svg {
		width: 120px;
		height: 70px;
	}
	
	.support__link {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}
}
/* End */


/* Start:/css/reset.css?17320235593865*/
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
html,
body,
p,
div,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


ul {
  list-style-type: none;
}
    input:not([type=checkbox]):not([type=radio]),
    textarea, 
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

input,
label,
select,
button,
textarea
{
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;
	
	/* Browsers have different default form fonts */
	font-size:14px;
}

/* Remove the stupid outer glow in Webkit */
input:focus
{
	outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week]
{
}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
	width:13px;
	height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
	display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{
	/* Fix IE7 display bug */
	overflow:visible;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{	
	padding:0;
	border:0;
	background:none;
}

/* Textarea
-----------------------------------------------*/

textarea 
{
	/* Move the label to the top */
	vertical-align:top;
	
	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{

}

select[multiple] 
{
	/* Move the label to the top */
	vertical-align:top;
}
/* End */
/* /css/style.css?175267440932700 */
/* /css/reset.css?17320235593865 */
