@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

/* ============ ШРИФТЫ ============ */
@font-face {
  font-family: 'Mont';
  src: url("../fonts/Mont-Heavy.eot?iefix") format("embedded-opentype"),
       url("../fonts/Mont-Heavy.woff2") format("woff2"),
       url("../fonts/Mont-Heavy.woff") format("woff"),
       url("../fonts/Mont-Heavy.ttf") format("truetype");
  font-weight: 900;
}

/* ============ СБРОС И БАЗОВЫЕ СТИЛИ ============ */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  border: none;
}

html, body {
  width: 100%;
  height: 100%;
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img, svg {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active, button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: 'Manrope', sans-serif;
  color: #000000;
  margin: 0;
  font-weight: 400;
}

.container {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ============ ОСНОВНЫЕ БЛОКИ ============ */
main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.content {
  background: rgba(255, 255, 255, 0.95);
  padding: 0 0 40px 0;
  position: relative;
  z-index: 1;
}

.inner-page {
  padding: 160px 0 50px;
}

.body__background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  background-size: cover;
}

.body__bg {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  display: none;
}

/* ============ ОБЩИЕ ЗАГОЛОВКИ И ТЕКСТ ============ */
.title {
  font-size: 36px;
  line-height: 130%;
  margin-top: 20px;
  font-weight: 400;
  color: #03789F;
  text-align: left;
}

.page-title {
  font-size: 36px;
  line-height: 110%;
  margin-top: 20px;
  font-weight: 400;
  color: #03789F;
  text-align: center;
}

.subtitle {
  font-weight: 600;
  color: #03789F;
  text-align: center;
}

/* ============ КНОПКИ ============ */
.btn, .contentbtn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #03789F;
  color: #FFFFFF;
  border-radius: 45px;
  transition: 0.2s linear;
  margin-top: 15px;
  font-size: 16px;
  line-height: 90%;
  padding: 18px 30px;
  text-decoration: none !important;
  text-align: center;
  border: 1px solid #03789F;
  cursor: pointer;
}

.btn:hover, .contentbtn:hover {
  background: #10B7F0;
  border-color: #10B7F0;
}

.btn-center {
  display: flex;
  justify-content: center;
}

.btn-order {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #03789F;
  color: #fff;
  border-radius: 20px;
  padding: 0 20px;
  border: 1px solid #03789F;
  transition: 0.2s linear;
  margin-top: 15px;
  font-size: 110%;
}

.btn-order:hover {
  background: #fff;
  color: #03789F;
}

.btn-file {
  padding: 20px 60px 20px 30px;
  display: inline-block !important;
  text-decoration: none !important;
  background: #03789F;
  position: relative;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  line-height: 80%;
  border: 1px solid #03789F;
}

.btn-file:after {
  content: '';
  width: 19px;
  height: 24px;
  background: url(../img/file.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.btn-link {
  padding: 20px 70px 20px 30px;
  display: inline-block !important;
  text-decoration: none !important;
  background: #03789F;
  position: relative;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  line-height: 80%;
  border: 1px solid #03789F;
}

.btn-link:after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/link.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

/* ============ ТЕКСТОВЫЕ БЛОКИ ============ */
.content__text, .contenttext {
  font-size: 24px;
  line-height: 140%;
  margin-top: 40px;
  text-align: justify;
}

.content__text p, .contenttext p {
  font-size: 24px;
  line-height: 160%;
  margin-top: 20px;
  text-align: justify;
}

.content__text a, .contenttext a {
  display: block;
  margin-top: 20px;
  text-decoration: underline;
}

.content__text p a, .contenttext p a {
  display: inline;
}

.content__text a:hover, .contenttext a:hover {
  text-decoration: none;
}

.content__text hr, .contenttext hr {
  height: 3px;
  background: #DBDBDB;
  opacity: 0.8;
  margin-top: 20px;
}

.content__text li, .contenttext li {
  font-size: 22px;
  line-height: 140%;
  font-family: 'Roboto', sans-serif;
  position: relative;
  padding-left: 20px;
}

.content__text ul, .contenttext ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content__text ol, .contenttext ol {
  padding-left: 30px;
  margin-top: 30px;
}

.content__text ol li, .contenttext ol li {
  padding-left: 0;
}

.content__text ul li:before, .contenttext ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #03789F;
  position: absolute;
  left: 0;
  top: 10px;
}

.content__text ul.tick li, .contenttext ul.tick li {
  padding-left: 40px;
}

.content__text ul.tick li:before, .contenttext ul.tick li:before {
  width: 30px;
  height: 30px;
  background: url(../img/tick.svg) no-repeat;
  background-size: contain;
  top: 0;
  border-radius: 0;
}

.content__text ul.tick-err li:before, .contenttext ul.tick-err li:before {
  background: url(../img/tick-err.svg) no-repeat;
  background-size: contain;
}

/* ============ СПЕЦИАЛЬНЫЕ СТИЛИ ПРИГЛАШЕНИЯ ============ */
.invitation-section {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: box-shadow 0.3s ease;
}

.invitation-section:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.invitation-section .title {
  text-align: center;
  margin-top: 0;
  padding-bottom: 42px;
}

.invitation-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0088cc;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.invitation-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.invitation-image-wrapper {
  background: linear-gradient(135deg, #007ba7 0%, #004d73 100%);
  border-radius: 20px;
  border: 1px solid #aaa29b;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.invitation-scroll-container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 8px;
}

.invitation-scroll-container::-webkit-scrollbar {
  width: 8px;
}

.invitation-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.invitation-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.invitation-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.invitation-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.invitation-button-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.invitation-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
  white-space: nowrap;
  flex-direction: column;
  text-align: center;
}

.invitation-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 136, 204, 0.4);
  background: linear-gradient(135deg, #0098dd 0%, #0075aa 100%);
}

.invitation-download-btn:active {
  transform: translateY(-1px);
}

.download-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============ ОРГАНИЗАТОРЫ ============ */
.orgs {
  padding: 40px 0;
}

.orgs__inner {
  width: 100%;
  border-radius: 30px;
  padding: 0;
  margin: 0 auto;
}

.orgs__list {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.orgslist {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.orgs__item {
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.orgsitem {
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.orgs .title {
  text-align: center;
  margin-top: 0;
}

.orgs__item-icon {
  width: 90px;
  height: 90px;
    flex-shrink: 0;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orgsitem-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orgs__item-icon img {
  width: 100%;
  object-fit: contain;
}

.orgsitem-icon img {
  width: 100%;
  object-fit: contain;
}

.orgs__item-text {
  font-size: 20px;
  line-height: 110%;
  color: #000;
}

.orgsitem-text {
  font-size: 20px;
  line-height: 110%;
  color: #000;
}

/* ============ О КОНГРЕССЕ ============ */
.about {
  padding: 20px 0 80px;
}

.aboutinner {
  background: #F2F0EF;
  padding: 60px;
  border-radius: 50px;
  display: flex;
  gap: 28px 20px;
  flex-wrap: wrap;
  font-size: 24px;
  line-height: 140%;
}

.about__img {
  width: calc(50% - 10px);
  margin-top: -102px;
}

.aboutimg {
  width: calc(50% - 10px);
  margin-top: -102px;
}

.about__item {
  width: calc(50% - 10px);
  margin-top: 10px;
}

.aboutitem {
  width: calc(50% - 10px);
  margin-top: 10px;
}

/* ============ СТАТИСТИКА ============ */
.stats {
  padding-bottom: 40px;
}

.stats__text, .statstext {
  font-size: 36px;
  line-height: 130%;
  color: #03789F;
}

.stats__list, .statslist {
  margin-top: 50px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stats__item, .statsitem {
  background: rgba(190, 182, 174, 0.2);
  border-radius: 50px;
  padding: 50px;
  width: calc(25% - 9px);
  text-align: center;
}

.stats__item span, .statsitem span {
  font-family: 'Mont';
  font-size: 64px;
  line-height: 60%;
}

.stats__item p, .statsitem p {
  font-size: 24px;
  line-height: 130%;
}

.counter-item {
  width: calc(25% - 9px);
  text-align: center;
}

.counter-number {
  font-family: 'Mont';
  font-size: 64px;
  line-height: 60%;
}

/* ============ ГОСТИ И ВИДЕО ============ */
.guest {
  padding: 40px 0;
}

.guest__inner, .guestinner {
  display: flex;
  gap: 24px;
}

.guest__text, .guesttext {
  width: calc(50% - 12px);
  font-size: 24px;
  line-height: 140%;
  text-align: justify;
}

.guest__img, .guestimg {
  width: calc(50% - 12px);
}

.guest__img img, .guestimg img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.video {
  margin-top: 30px;
  width: 100%;
}

.video iframe {
  aspect-ratio: 16/9;
  border-radius: 50px;
}

/* ============ КОНТАКТЫ ============ */
.contacts__list, .contactslist {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.contacts__item, .contactsitem {
  width: calc(50% - 15px);
  border-radius: 20px;
  transition: box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.contacts__item-text, .contactsitem-text {
  flex-grow: 1;
}

.contacts__item-name, .contactsitem-name {
  font-size: 24px;
  line-height: 140%;
  font-weight: 700;
  color: #000;
}

.contacts__item-job, .contactsitem-job {
  font-weight: 400;
  font-size: 20px;
  color: #03789F;
}

.contacts__item-link, .contactsitem-link {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 10px;
}

.contacts__item-link img, .contactsitem-link img {
  width: 24px;
  object-fit: contain;
}

.contacts__item-desc, .contactsitem-desc {
  margin-top: 5px;
}

.contacts__item-line, .contactsitem-line {
  margin: 10px 0;
  width: 40%;
  height: 1px;
  background: #8BCCFF;
}

.contacts__item-footer, .contactsitem-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts__item-link p, .contactsitem-link p {
  line-height: 140%;
  font-size: 24px;
  font-weight: 400;
}

.contacts-list-one {
  justify-content: flex-start;
}

/* ============ БРОНИРОВАНИЕ ============ */
.booking {
  margin: 50px 0;
}

.booking__hotel, .bookinghotel {
  margin-top: 50px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.booking__item, .bookingitem {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.booking__item-img, .bookingitem-img {
  width: 450px;
  max-width: 100%;
  flex-shrink: 0;
}

.booking__item-img img, .bookingitem-img img {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #fff;
}

.booking__item-info, .bookingitem-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
}

.booking__item-info h2, .bookingitem-info h2 {
  font-size: clamp(22px, 5vw, 32px);
}

.star-block {
  margin-top: 10px;
}

.star-block img {
  width: 30px;
}

.mesto, .mesto {
  font-weight: 600;
  margin-top: 20px;
}

.hotel-text {
  margin-top: 10px;
  line-height: 140%;
}

.hotel-target {
  margin-top: 10px;
}

.hotel-target a {
  text-decoration: underline;
}

.booking-hotel-table {
  margin-top: 20px;
}

.booking-hotel-table tr:hover td {
  background: transparent !important;
}

.booking-hotel-dark, .bookinghotel-dark {
  background: #739c4a;
  color: #fff;
}

.booking-hotel-dark .booking__item-info h2, .bookinghotel-dark .bookingitem-info h2 {
  color: #fff;
}

.booking__item-img i, .bookingitem-img i {
  text-align: center;
  display: block;
  margin-top: 5px;
}

.contact-details {
  margin-top: 30px;
}

.tel, .mail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.mail a, .tel a {
  display: inline-block;
  margin-top: 0;
}

.content-text-sm p {
  font-size: 16px;
}

/* ============ ТАБЛИЦА ЦЕНА ============ */
.price table {
  border-spacing: 0;
  border-collapse: collapse;
  z-index: 1;
  position: relative;
  width: 100%;
}

.price table th {
  color: #6debfa;
  font-size: clamp(18px, 2.5vw, 22px);
  padding: 10px;
  white-space: nowrap;
  text-align: left;
}

table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.th-left {
  padding: 10px;
  width: calc(40% - 8px);
}

.th-center {
  margin-left: 10px;
  width: calc(20% - 8px);
  text-align: center;
}

.price table td {
  padding: 10px;
  font-size: 1.5rem;
  vertical-align: middle;
  transition: 0.2s linear;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  text-align: left;
}

.price table td strong {
  font-weight: 400;
}

.price table tr:hover td {
  background: rgba(0, 0, 0, 0.3);
}

.td-left {
  width: calc(40% - 8px);
}

.td-center {
  margin-left: 10px;
  text-align: center;
  width: calc(20% - 8px);
  white-space: nowrap;
}

.table-wrapper {
  width: 100%;
  max-width: 100%;
}

.table1 {
  max-width: 100%;
  min-width: 0 !important;
}

.table1 .btn-order {
  font-size: clamp(18px, 2.5vw, 22px);
}

.undertable-text {
  margin-top: 20px;
  text-align: right;
  margin-right: 10px;
  font-size: 1.6rem;
  color: #231f20;
}

.tr-last {
  border-bottom: 0;
}

.only-mob {
  display: none;
}

/* ============ МЕСТО ПРОВЕДЕНИЯ ============ */
.place {
  margin-top: 60px;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.place__img {
  width: 40%;
  border-radius: 50px;
}

.place__text {
  width: calc(60% - 50px);
  color: #03789F;
  font-size: 24px;
  line-height: 140%;
  font-weight: 700;
}

.venue {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.venue__map {
  width: 40%;
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
}

.venue__info {
  width: calc(60% - 50px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.venue__info p {
  font-size: 24px;
  line-height: 140%;
}

.venue__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.venue__btn {
  background: #8BCCFF;
  border-radius: 30px;
  padding: 13px 27px;
  text-align: center;
  font-size: 19px;
  line-height: 120%;
  color: #fff;
  display: block;
  transition: 0.2s linear;
  border: 1px solid #8BCCFF;
}

.venue__btn:hover {
  opacity: 0.8;
}

.venue__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.venue__link {
  font-size: 24px;
  line-height: 140%;
  border-bottom: 3px solid #8BCCFF;
  position: relative;
  transition: 0.2s linear;
}

.venue__link:before {
  content: '';
  height: 100%;
  width: 0;
  background: #8BCCFF;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s linear;
  z-index: -1;
}

.venue__link:hover:before {
  width: 100%;
}

.venue__link:hover {
  color: #fff;
}

/* ============ УСЛОВИЯ ============ */
.conditions {
  margin-top: 70px;
  padding: 50px 44px;
  border-radius: 50px;
  background: #F2F0EF;
}

.cond__list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.condlist {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.cond__item {
  width: calc(33% - 14px);
  padding: 40px;
  border-radius: 50px;
  border: 1px solid #B7B7B7;
  box-shadow: rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  color: #000;
}

.conditem {
  width: calc(33% - 14px);
  padding: 40px;
  border-radius: 50px;
  border: 1px solid #B7B7B7;
  box-shadow: rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  color: #000;
}

.cond__item-body, .conditem-body {
  flex-grow: 1;
}

.cond__item-title, .conditem-title {
  font-size: 24px;
  line-height: 140%;
  color: #000;
  font-weight: 500;
  color: #03789F;
  margin-bottom: 24px;
  min-height: 100px;
}

.cond__item-title b, .conditem-title b {
  display: block;
  text-transform: uppercase;
}

.cond__item-desc, .conditem-desc {
  margin-top: 10px;
}

.cond__item-footer, .conditem-footer {
  flex-shrink: 0;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #DBDBDB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #03789F;
  min-height: 162px;
}

.cond__item-footer div, .conditem-footer div {
  font-size: 18px;
}

.cond__item-more, .conditem-more {
  font-weight: 500;
  text-decoration: underline !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}

.cond__item-more:hover, .conditem-more:hover {
  text-decoration: none !important;
}

.cond__item-more small, .conditem-more small {
  font-size: 18px;
  font-weight: 700;
}

.cond__item p, .conditem p {
  font-size: 18px;
}

.cond__item-more b, .conditem-more b {
  font-size: 40px;
}

.cond__item-date, .conditem-date {
  font-weight: 600;
}

p.cond__item-about, .cond__item-about,
p.conditem-about, .conditem-about {
  color: #000;
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-top: 10px;
}

.cond__item-ul, .conditem-ul {
  margin-left: 0;
  color: #000;
  list-style-type: disc;
  padding-left: 30px;
}

.cond__item-ul li, .conditem-ul li {
  font-size: 18px;
  line-height: 130%;
  margin-top: 10px;
  list-style-type: disc;
}

/* ============ КОМАНДА/КОМИТЕТ ============ */
.comm__list, .commlist {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.comm__item, .commitem {
  width: calc(25% - 9px);
}

.comm__item-img, .commitem-img {
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}

.comm__item-img img, .commitem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comm__item-info, .commitem-info {
  border-radius: 0 50px 0 0;
  background: #fff;
  padding: 20px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
}

.comm__item-name, .commitem-name {
  color: #5D514D;
  font-size: 24px;
  line-height: 140%;
  font-weight: 700;
}

.comm__item-text, .commitem-text {
  margin-top: 10px;
  color: #5D514D;
  font-size: 16px;
  line-height: 150%;
  overflow: hidden;
  max-height: 72px;
  transition: 0.2s linear;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.active .comm__item-text:first-letter,
.comm__item-text:first-letter,
.active .commitem-text:first-letter,
.commitem-text:first-letter {
  text-transform: uppercase;
}

.active .comm__item-text,
.active .commitem-text {
  -webkit-line-clamp: none;
  line-clamp: none;
}

/* ============ НОВОСТИ ============ */
.news__list, .newslist {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.news__item, .newsitem {
  width: calc(50% - 10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  display: flex;
  flex-direction: column;
}

.news__item-body, .newsitem-body {
  flex-grow: 1;
}

.news__item-title, .newsitem-title {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #03789F;
}

.news__item-desc, .newsitem-desc {
  margin-top: 10px;
}

.news__item-footer, .newsitem-footer {
  flex-shrink: 0;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid #03789F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.news__item-more, .newsitem-more {
  text-decoration: underline !important;
}

.news__item-more:hover, .newsitem-more:hover {
  text-decoration: none !important;
}

.news__item-date, .newsitem-date {
  font-weight: 600;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.drop {
  padding-left: 35px;
  position: relative;
}

.drop:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url(../img/drop.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 12px;
}

.text {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 24px;
  line-height: 140%;
  text-align: justify;
}

.text-center a,
.text-center p {
  text-align: center;
}

.logo-center {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.content__img {
  display: flex;
  justify-content: center;
  max-width: 100%;
  object-fit: contain;
  margin: 20px auto;
}

.aspect16x9 {
  width: 1000px;
  max-width: 100%;
  margin: 20px auto 0;
}

.aspect16x9 iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

/* ============ ПОДПИСКА ============ */
.subscribe, subscribe {
  padding: 40px 0 80px;
}

.inner-page .subscribe {
  background: transparent;
}

subscribe {
  padding: 50px;
  border-radius: 50px;
  background: rgba(190, 182, 174, 0.2);
}

.subscribe-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

subscribe .title {
  font-size: 28px;
  text-transform: none;
  color: #4E4A47;
  font-weight: 700;
}

.subs-subtitle {
  text-align: right;
  font-size: 16px;
  color: #4E4A47;
  width: 60%;
}

.subs-form {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 47px;
}

.subs-form .inp {
  width: calc(25% - 15px);
}

.show-topics,
.subs-form .inp input {
  border-radius: 30px;
  background: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  height: 50px;
  font-size: 18px;
  color: #958B84;
  border: 1px solid #BDB6B1;
}

.checkbox-soglashenie {
  width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.checkbox-soglashenie.active {
  opacity: 1;
  max-height: none;
  overflow: visible;
}

.checkbox-soglashenie label {
  align-items: flex-start !important;
  font-size: 12px;
}

.checkbox-soglashenie label:before {
  margin-top: 5px;
}

subscribe input.err {
  border: 1px solid red !important;
}

subscribe input.err::placeholder {
  color: red !important;
}

.subscribe-form-item-btn {
  background: #958B84;
  color: #fff;
  font-size: 19px;
  border: 1px solid #958B84;
  border-radius: 30px;
  padding: 0 20px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s linear;
}

.subscribe-form-item-btn:hover {
  opacity: 0.8;
}

.checkbox {
  position: relative;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #000;
}

.checkbox-label p {
  color: #4E4A47;
}

.custom-checkbox label:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid #adb5bd;
  border-radius: 2px;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 60%;
}

.custom-checkbox.checkbox-20 label:before {
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.custom-checkbox:checked label:before {
  border-color: #fff;
  background-color: #6c9ee8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.subscribe .err label:before {
  border: 1px solid red;
}

.alert-warning {
  display: none;
  padding: 5px 10px;
  color: red;
  border-radius: 2px;
  background-color: #fff3cd;
  border: 1px solid red;
  margin-top: 10px;
}

.alert-warning.active {
  display: block;
}

.modal-list {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-150%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s linear;
  z-index: -2;
}

.modal-list.active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2000;
}

.modal-list-window {
  width: 500px;
  max-width: 95vw;
  max-height: 80vh;
  padding: 20px;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid #d4e5b3;
  transform: translateY(-150%) scale(0);
  transition: 0.2s linear;
}

.modal-list.active .modal-list-window {
  transform: translateY(0) scale(1);
}

.modal-list-title {
  font-size: 22px;
  color: #2F3939;
  padding-bottom: 10px;
}

.subscribe-form-item-list {
  height: 520px;
  max-height: 60vh;
  width: 100%;
  overflow: auto;
}

.subscribe-form-item-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 2px;
}

.subscribe-form-item-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.subscribe-form-item-list::-webkit-scrollbar-thumb {
  background: #958B84;
  border-radius: 2px;
}

.subscribe-form-item-list::-webkit-scrollbar-thumb:hover {
  background: #958B84;
}

.modal-list::btn {
  background-color: #3B4444;
  border-radius: 30px;
  color: #ffffff;
  border: none;
  display: block;
  width: 200px;
  line-height: 50px;
  margin: 10px auto 0;
  text-align: center;
  cursor: pointer;
}

.soc-block {
  align-items: center;
  margin-top: 0;
  display: flex;
}

.soc-block .soc-text-pre {
  color: #4E4A47;
  font-size: 0.9em;
}

.soc-block .soc-text-post {
  color: #fff;
  font-size: 0.9em;
  text-align: right;
}

.soc-block .soc {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  color: #fff;
  margin-top: 10px;
}

.soc-block .soc a {
  color: #fff;
  font-size: 35px;
}

.soc-block .soc a:hover {
  color: #ffe7d4;
}

subscribe form {
  margin-top: 47px;
}

subscribe .corners {
  padding-bottom: 10px;
}

/* ============ FOOTER ============ */
footer {
  background: #D9D9D9;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer__menu, .footermenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer__links, .footerlinks {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer__links a, .footerlinks a {
  font-size: 16px;
  color: #73787C;
}

.footer__title, .footer-title {
  font-size: 22px;
  font-family: 'Adrianna';
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__copy, .footer-copy {
  font-size: 13px;
  color: #a7b4c2;
}

.map-img {
  border-radius: 20px;
  border: 1px solid #999999;
  margin: 20px 0;
}

.map {
  border-radius: 20px;
  border: 1px solid #999999;
  width: 100%;
  overflow: hidden;
}

/* ============ СПОНСОРЫ ============ */
.sponsors-container {
  width: 100%;
  gap: 2px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sponsors-container a {
  display: flex;
  width: calc(20% - 2px);
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: 0.2s linear;
}

.sponsors-container img {
  transition: 0.2s linear;
}

.sponsors-container a:hover img {
  transform: scale(1.05);
}

.nmic {
  width: 100%;
}

.nmic img {
  width: 100%;
  object-fit: contain;
  margin-top: 30px;
}

/* ============ ПРОГРАММА ============ */
.program__day, .programday {
  margin-top: 40px;
  color: #03789F;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.program__text, .programtext {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
}

.program__text span, .programtext span {
  color: #03789F;
}

.program__list, .programlist {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.program__item, .programitem {
  background: #F2F0EF;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  font-size: 20px;
  line-height: 140%;
  color: #000505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.program__item-place, .programitem-place {
  color: #5D514D;
  font-weight: 700;
}

.program__item-time, .programitem-time {
  color: #03789F;
}

.program__item--lg {
  width: 100%;
}

.program__item--sm {
  width: calc(50% - 10px);
  padding: 32px 10px;
}

.program__item--avg {
  width: calc(33% - 11px);
}

.program__item1 {
  background: rgba(3, 120, 159, 0.2);
}

.program__item2 {
  background: rgba(93, 81, 77, 0.2);
}

.program__item3 {
  background: rgba(3, 120, 159, 0.2);
}

.program__btn, .programbtn {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

/* ============ АНИМАЦИИ ============ */
.animate-fadeInUp {
  --animate-duration: 0.5s;
}

.wow {
  visibility: hidden;
}

/* ============ МЕДИА QUERIES ============ */
@media screen and (max-width: 1200px) {
  .news__item-title, .newsitem-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 1100px) {
  .subscribe-top {
    flex-direction: column;
    align-items: center;
  }
  
  .subs-subtitle {
    text-align: center;
    width: 100%;
  }
  
  .subs-form {
    margin-top: 20px;
  }
  
  .comm__item, .commitem {
    width: calc(33% - 8px);
  }
  
  .inner-page {
    padding: 100px 0 50px;
  }
}

@media screen and (max-width: 1000px) {
  .price table td,
  .price table th {
    padding: 10px 5px;
  }
  
  .inner {
    padding: 100px 0 50px;
  }
  
  .stats__item, .statsitem {
    width: calc(50% - 12px);
  }
  
  .guest__inner, .guestinner {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .guest__text, .guesttext {
    width: 100%;
  }
  
  .guest__img, .guestimg {
    width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .video iframe {
    border-radius: 24px;
  }
  
  .poster-block {
    flex-wrap: wrap;
  }
  
  .booking__item, .bookingitem {
    flex-direction: column;
  }
  
  .orgs__item, .orgsitem {
    width: 100%;
  }
  
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero__block {
    width: 100%;
  }
  
  .comm__item, .commitem {
    width: calc(50% - 12px);
  }
  
  .sponsors-container a {
    width: calc(25% - 2px);
  }
  
  .program__item--avg {
    width: calc(50% - 10px);
  }
  
  .place {
    position: relative;
    gap: 20px;
  }
  
  .place__img {
    width: 100%;
    order: 1;
    border-radius: 24px;
    aspect-ratio: 16/10;
    object-fit: cover;
  }
  
  .place__text {
    order: 0;
    width: 100%;
  }
  
  .venue__info {
    width: 100%;
    order: 0;
  }
  
  .venue__map {
    width: 100%;
    order: 1;
  }
}

@media screen and (max-width: 800px) {
  .price table {
    min-width: 1000px;
    max-width: auto;
  }
  
  .inner {
    padding: 60px 0 50px;
  }
  
  .text-img {
    display: none;
  }
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  .price-logo {
    display: none;
  }
  
  .cond__item, .conditem {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 768px) {
  .invitation-body {
    grid-template-columns: 1fr;
  }
  
  .invitation-section {
    padding: 40px 24px;
  }
  
  .invitation-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .invitation-image-wrapper {
    height: 400px;
  }
  
  .invitation-button-wrapper {
    justify-content: stretch;
  }
  
  .invitation-download-btn {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    padding: 16px 28px;
  }
  
  .subs-form .inp {
    width: calc(50% - 10px);
  }
  
  .show-topics,
  .subs-form .inp input {
    font-size: 20px;
    height: 50px;
    border-radius: 20px;
  }
  
  subscribe .title {
    font-size: 22px;
  }
  
  .subs-subtitle {
    font-size: 20px;
  }
  
  .soc-block {
    flex-direction: column;
  }
  
  .soc-block .soc {
    margin-top: 25px;
    justify-content: space-around;
  }
}

@media screen and (max-width: 700px) {
  .news__item, .newsitem {
    width: 100%;
  }
  
  .buttons {
    align-items: center;
  }
  
  .hero__title {
    font-size: 24px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .about__inner, .aboutinner {
    font-size: 18px;
  }
  
  .hero__block {
    padding: 20px;
  }
  
  .about__item, .aboutitem,
  .about__img, .aboutimg,
  .focus__item {
    width: 100%;
  }
  
  .about__inner, .aboutinner {
    padding: 20px;
  }
  
  .inner-page {
    padding: 80px 0 50px !important;
  }
  
  .contacts__item, .contactsitem {
    width: 100%;
  }
  
  .content__text, .contenttext,
  .content__text p, .contenttext p {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 650px) {
  .subs-form .inp {
    width: 100%;
  }
  
  subscribe {
    padding: 25px 0;
  }
  
  subscribe form {
    margin-top: 0;
  }
  
  subscribe {
    padding: 20px 10px;
  }
  
  .sponsors-container a {
    width: calc(33% - 2px);
  }
  
  .program__item--avg,
  .program__item--sm {
    width: 100%;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .program__day {
    font-size: 24px;
  }
  
  .contacts__item-name, .contactsitem-name,
  .contacts__item-link p, .contactsitem-link p,
  .place__text,
  .focus__item-text {
    font-size: 20px;
  }
  
  .comm__item, .commitem {
    width: 100%;
  }
  
  .comm__item-img, .commitem-img {
    border-radius: 24px 24px 0 0;
  }
  
  .comm__item-info, .commitem-info {
    border-radius: 0 24px 0 0;
    padding: 10px;
  }
  
  .cond__item, .conditem {
    width: 100%;
  }
  
  .target {
    padding: 0 0 50px;
  }
  
  .target__inner {
    padding: 20px;
    border-radius: 20px;
  }
  
  .target__item {
    font-size: 18px;
    padding-top: 20px;
  }
  
  .target__item-lg {
    font-size: 20px;
  }
  
  .target__list {
    gap: 20px;
    margin-top: 20px;
  }
  
  .target__title {
    font-size: 22px;
  }
  
  .target__under {
    font-size: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 600px) {
  .stats__item, .statsitem {
    width: 100%;
  }
  
  .table1 .btn-order {
    padding: 10px;
  }
  
  .booking {
    margin: 30px 0;
  }
  
  .inner-container {
    max-width: 100%;
    border-radius: 0;
    background: transparent;
  }
  
  .inner-contact {
    padding: 20px;
  }
  
  .table1 tr {
    display: flex;
    flex-direction: column;
  }
  
  .table1 th {
    font-weight: 400;
    display: none;
  }
  
  .only-mob {
    display: block;
  }
  
  .booking__item-img, .bookingitem-img {
    width: 100%;
  }
  
  .orgs__item-icon, .orgsitem-icon {
    width: 100px;
    height: 100px;
  }
  
  .invitation-section {
    padding: 30px 16px;
  }
  
  .invitation-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .invitation-image-wrapper {
    height: 350px;
  }
  
  .invitation-download-btn {
    font-size: 14px;
    padding: 14px 22px;
  }
}

@media screen and (max-width: 550px) {
  .page-title {
    font-size: 30px;
  }
  
  .content__text, .contenttext,
  .content__text p, .contenttext p {
    font-size: 22px !important;
  }
  
  .drop:before {
    top: 6px;
  }
}

@media screen and (max-width: 500px) {
  .sponsors-container a {
    width: calc(50% - 2px);
  }
  
  .program__item {
    padding: 10px;
  }
  
  .contacts__item-job, .contactsitem-job,
  .contacts__item-link p, .contactsitem-link p {
    font-size: 18px;
  }
  
  .subs {
    position: relative;
    overflow: visible;
  }
  
  .subs__label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2px 6px;
    background: #2F3939;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    font-size: 11px;
    transform: translateY(100%);
  }
  
  .subs:hover .subs__label {
    opacity: 1;
  }
  
  .target__inner {
    padding: 10px;
    border-radius: 10px;
  }
  
  .target__item {
    font-size: 16px;
    padding-top: 10px;
  }
  
  .target__list {
    gap: 10px;
  }
  
  .target__title {
    font-size: 18px;
  }
  
  .target__under {
    font-size: 16px;
  }
  
  .orgs__item-icon, .orgsitem-icon {
    width: 80px;
    height: 80px;
  }
  
  .orgs__inner, .orgsinner {
    padding: 0;
  }
  
  .orgs__list, .orgslist {
    gap: 20px;
  }
  
  .orgs__item-text, .orgsitem-text {
    font-size: 16px;
  }
  
  .committee {
    padding: 25px 0;
  }
  
  .committee__item {
    width: 100%;
  }
  
  .committee__list {
    margin-top: 30px;
  }
  
  .committee__item-desc {
    font-size: 16px;
  }
  
  .committee__item-name {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .invitation-section {
    padding: 20px 12px;
  }
  
  .invitation-title {
    font-size: 20px;
  }
  
  .invitation-image-wrapper {
    height: 300px;
  }
  
  .invitation-download-btn {
    font-size: 12px;
    padding: 12px 18px;
  }
}

/* ============ КОНЕЦ ФАЙЛА ============ */



