@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"); /* IE9 Compat Modes */
  src: url("../fonts/Mont-Heavy.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/Mont-Heavy.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/Mont-Heavy.woff") format("woff"),
    /* Pretty Modern Browsers */ url("../fonts/Mont-Heavy.ttf")
      format("truetype"); /* Legacy iOS */
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

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

a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

/* Common */

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;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

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;
}

.btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #5D514D;
  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;
}

.btn:hover {
  background: #72C7AB;
}



@media screen and (max-width: 1550px) {
  .container {
    padding: 0 15px;
  }
}

/************ Start header *******************************/

header {
  position: absolute;
  z-index: 1000;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 1220px;
  max-width: calc(100% - 20px);
  border-radius: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  gap: 30px;
  transition: 0.2s linear;
}

header.scrolled {
  top: 20px;
}

.header__logo {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  justify-content: flex-end;
}

.header__links li {
  position: relative;
  padding: 5px 10px;
}

.header__nav-link {
  padding: 5px 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 110%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: block;
}

.header__nav-link.lang {
  color: #3B4444 !important;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  height: 2px;
  width: 0;
  transition: 0.2s linear;
  background: linear-gradient(90deg, #5D514D, #958B84);
}

.header__nav-link:hover::after {
  width: 100%;
  background: linear-gradient(90deg, #5D514D, #958B84);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
  transform: translate3d(0, 0, 0);
}

.header__nav-link.lang:hover {
  color: #fff !important;
}
.header-inner .header__nav-link.lang:hover {
  color: #958B84 !important;
}
.header__nav-sub {
  position: absolute;
  top: -100000px;
  left: 0;
  transform: translateY(100%);
  background: #3B4444B2; /*#9eff3e70;*/
  padding: 15px;
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(25px);
  transition: 0.1s linear;
}

.header__links li:hover .header__nav-sub {
  bottom: 0px;
  top: auto;
}
.header__nav-link:hover path {
  fill: #ffffff;
}

.header-inner .header__nav-link:hover path {
  fill: #958B84;
}

.header__nav-sub li {
  padding: 0;
  border-bottom: 1px solid #ffffff78;
  transition: 0.2s linear;
  max-height: 0;
  overflow: hidden;
}

.header__links li:hover .header__nav-sub li {
  max-height: 47px;
  /*  padding: 0 10px;*/
}



.header__nav-sub li:last-child {
  border-bottom: 0;
}

.header__nav-sublinks {
  white-space: nowrap;
  font-size: 16px;
  line-height: 140%;
  padding: 8px 0;
  display: block;
  color: #ffffffb0;
}

.header__nav-sub li:hover .header__nav-sublinks{
  color: #fff;
}

.header__btn {
  padding: 13px 30px;
  border-radius: 45px;
  background: #3B4444;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 110%;
  transition: 0.2s linear;
}

.header__btn:hover {
  background: #BEB6AE;
  color: #fff;
}
.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;
}

.lang::after,
.subs::after {
  display: none;
}

.burger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  display: none;
}

.mobile {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  transform: translateX(110%);
  transition: 0.2s linear;
}

.mobile__inner {
  min-width: 340px;

  max-width: 100%;
  background: #006a39;
  padding: 50px 20px 20px 45px;
  overflow: auto;
}

.mobile.active {
  transform: translateX(0);
}

.mobile__close {
  position: absolute;
  top: 30px;
  right: 20px;
}

.mobile__logo {
  width: 260px;
  display: block;
  margin-top: 20px;
  max-width: 100%;
}

.mobile__logo img {
  width: 60px;
  object-fit: contain;
}

.mobile .header__links {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  padding-left: 0;
}

.mobile .header__links li {
  padding: 0;
}

.mobile .header__nav-sub li {
  overflow: auto;
  max-height: none;
}

.mobile .header__nav-link {
  padding: 0;
  line-height: 180%;
  font-size: 20px;
}
.mobile .header__btn {
  font-size: 18px;
}

.mobile .header__nav-link:hover::after {
  display: none;
}

.mobile .header__nav-sub {
  position: relative;
  transform: none;
  overflow: hidden;
  transition: 0.2s linear;
  padding: 0;
  max-height: 0;
}

.header-inner .header__nav-sublinks, 
.header-inner .header__nav-link {
  color: #3B4444;
}

.header-inner .header__nav-sub {
  background: #00000025;
}

@media screen and (max-width: 1500px) {
  header {
    height: 80px;
  }

  .header__links li:hover .header__nav-sub li {
    max-height: 40px;
  }
}

@media screen and (max-width: 1250px) {
  .header__links {
    gap: 0;
  }
}

@media screen and (max-width: 1100px) {
  header {
    display: none;
  }
  .burger {
    display: block;
  }
  .header__nav-sublinks {
    font-size: 16px;
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/************ End header *******************************/

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

main {
  justify-content: center;
  z-index: 1;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  min-height: 95vh;
}

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

.content {
  background: #ffffffe8;
  padding: 0 0 40px 0;
  position: relative;
  z-index: 1;
}

.banner {
  display: flex;
  gap: 50px;
  padding: 220px 20px 70px;
  align-items: flex-start;
  background: url(../img/banner-bg.webp) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.video-background {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  transform: translateX(-50%) translateY(-50%);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  background: #d4e5b3;
  mix-blend-mode: multiply;
  transform: translateX(-50%) translateY(-50%);
}
.banner__text {
  width: calc(82% - 70px);
  max-width: 100%;
  z-index: 2;
}

.banner__logo {
  z-index: 2;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner__subtitle {
  font-size: 52px;
  line-height: 110%;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  color: #fff;
  width: 625px;
  max-width: 100%;
  text-transform: uppercase;
}

.banner__title {
  font-size: 68px;
  line-height: 100%;
  width: 900px;
  max-width: 100%;
  font-family: "Mont";
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 20px;
}

.location__date {
  color: #FFFFFF;
  font-family: "Mont";
  font-size: 36px;
  font-weight: 900;
  line-height: 130%;
  text-transform: uppercase;
  display: inline-block;
}

.banner__title strong {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
}

.banner__date {
  font-size: 30px;
  line-height: 130%;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.banner__inner {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px 70px;
  z-index: 2;
  position: relative;
  padding: 0 10px;
}

.banner__bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 80px;
}



.banner__white {
  padding: 32px;
  background: #fff;
  border-radius: 40px;
}
.banner__white p {
  font-size: 22px;
  color: #8f8f8f;
  line-height: 110%;
}

.banner__white hr {
  margin: 20px 0;
  background: #006a39;
  height: 2px;
}

.location {
  margin: -150px auto 0;
  width: 1160px;
  max-width: 95%;
  border-radius: 30px;
  background: #fff;
  padding: 25px 30px;
  position: relative;
  z-index: 2;
  border: 1px solid #d4e5b3;
  display: flex;
  gap: 30px;
}

.location__item {
  position: relative;
  padding-right: 37px;
  color: #ffffff;
  font-family: "Mont";
  font-size: 36px;
  font-weight: 900;
  line-height: 130%;
  text-transform: uppercase;
}

.location__item::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/map-dot-sm.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
}

.location__info {
  color: #fff;
  font-size: 22px;
  line-height: 150%;
}

.location__type {
  width: 410px;
  flex-shrink: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #1e6483;
  font-size: 28px;
  line-height: 110%;
  font-weight: 500;
}

.location__address {
  font-size: 24px;
  margin-top: 2px;
  color: #73787C;
  text-transform: uppercase;
}
@media screen and (max-width: 1500px) {
  .banner__subtitle {
    font-size: 35px;
    width: 100%;
  }
  .banner__title {
    font-size: 48px;
    width: 100%;
  }
  .banner__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .banner__white {
    width: 100%;
  }
  .banner__location {
    width: 530px;
    max-width: 100%;
  }
  .banner__inner {
    align-items: flex-start;
  }
  .banner {
    padding: 185px 20px;
  }
}

@media screen and (max-width: 1100px) {
  .banner {
    padding: 100px 20px 120px;
  }
  .banner__inner {
    flex-direction: column;
    align-items: center;
  }
  .banner__subtitle,
  .banner__title {
    text-align: center;
  }
  .banner__location {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .banner__text {
    width: 100%;
  }
  .location__date,
  .banner__white p {
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .banner__subtitle {
    font-size: 28px;
  }
  .banner__title {
    font-size: 36px;
  }
  .banner__inner {
    padding: 30px;
    border-radius: 30px;
  }
  .banner__white {
    padding: 20px;
    border-radius: 20px;
  }
  .location__date {
    font-size: 32px;
  }
  .location__item {
    font-size: 22px;
  }
  .banner {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 500px) {
  .banner {
    gap: 30px;
  }
  .banner__subtitle {
    font-size: 22px;
  }
  .banner__title {
    font-size: 26px;
    line-height: 140%;
  }

  .btn {
    font-size: 18px;
    min-height: 50px;
  }
  .banner__white p {
    font-size: 16px;
  }
  .banner__white {
    padding: 10px;
    border-radius: 10px;
  }
  .location__item {
    font-size: 18px;
  }
  .location__item::before {
    width: 25px;
    height: 29px;
  }
  .location__item {
    padding-left: 30px;
  }
  .banner__inner {
    padding: 20px;
    border-radius: 20px;
  }
  .banner__bottom {
    gap: 20px;
  }
  .banner__btn {
    margin-top: 20px;
  }
  .banner__bottom {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .banner {
    gap: 30px;
  }
  .banner__subtitle {
    font-size: 18px;
  }
  .banner__title {
    font-size: 22px;
    line-height: 140%;
  }

  .btn {
    font-size: 16px;
    min-height: 50px;
  }
  .banner__white p {
    font-size: 13px;
  }
  .banner__white hr {
    margin: 10px 0;
  }

  .location__item {
    font-size: 14px;
  }
  .location__date {
    font-size: 18px;
  }
}


.hero {
  display: flex;
  gap:  40px;
  margin-top: 80px;
  font-size: 22px;
    line-height: 130%;
}

.hero__block {
  width: 380px;
  padding: 30px;
  border-radius: 50px 0 50px 50px;
  border: 2px solid #5D514D;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero p {
  font-size: 24px;
  line-height: 140%;
  text-align: justify;
}

.hero__title {
  color: #5D514D;
  font-size: 36px;
  line-height: 130%;
}

.hero__block-title {
  color: #5D514D;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
}

.hero__block p {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 140%;
}
.hero__block p strong {
  display: inline-block;
  margin-top: 10px;
}


.hero__text {
  flex-grow: 1;
}

.hero__block-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #5D514D;
  font-size: 20px;
}


@media screen and (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__block {
    width: 100%;
  }
}


.target {
  padding: 0 0 80px;
  position: relative;
}

.target-bg {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  object-fit: contain;
}

.target__inner {
  padding: 60px 0;
  border-radius: 40px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.target__title {
  color: #5D514D;
  font-size: 38px;
  line-height: 120%;
  text-align: center;
}

.target__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: stretch;
  margin-top: 50px;
}

.target__item {
  width: calc(50% - 30px);
  font-weight: 300;
  padding-top: 30px;
  border-top: 1px solid #5D514D;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}

.target__item-lg {
  width: 100% !important;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  border-top: 0;
  border-bottom: 1px solid #5D514D;
  padding-top: 0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.target__under {
  color: #5D514D;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  margin: 50px auto 0;
  width: 1160px;
  max-width: 100%;
}

.focus {
  padding: 60px 0;
}

.focus__list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.focus__item {
  width: calc(50% - 10px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.focus__item-icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.focus__item-text {
  font-size: 24px;
  font-weight: 400;
}

@media screen and (max-width: 1300px) {
  .target__title {
    font-size: 36px;
  }
  .target__under {
    font-size: 28px;
  }
  .target__list {
    gap: 30px;
  }
  .target__item {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 1100px) {
  .target-bg {
    width: 200%;
    max-width: none;
  }
}

@media screen and (max-width: 900px) {
  .target__item {
    width: 100%;
  }
  .target__inner {
    padding: 30px;
    border-radius: 30px;
  }
  .target__title {
    font-size: 28px;
  }
  .target__under {
    font-size: 22px;
  }
}

@media screen and (max-width: 600px) {
  .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;
  }
  .target__inner {
    margin-top: -50px;
  }
}
@media screen and (max-width: 500px) {
  .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;
  }
  .target__inner {
    margin-top: -50px;
  }
}

.content__container {
  width: 1160px;
  max-width: 95%;
  margin: 0 auto;
}

.content__text {
  font-size: 24px;
  line-height: 140%;

  margin-top: 40px;
  text-align: justify;
}
.content__text .prikaz {
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
  display: block;
}
.content__text .prikaz-lg {
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
  display: block;
}
.content__text hr {
  height: 3px;
  background: #DBDBDB;
  opacity: 0.8;
  margin-top: 20px;
}

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

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

.content__text p a {
  display: inline;
}
.content__text a:hover {
  text-decoration: none;
}
.title {
  font-size: 36px;
  line-height: 130%;
  margin-top: 20px;
  font-weight: 400;
  color: #5D514D;
  text-align: left;
  margin-top: 20px;
}

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

.banner__btn {
  margin-top: 40px;
}

@media screen and (max-width: 900px) {
  .location {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .location__info {
    font-size: 18px;
  }
  main {
    margin-top: 0;
  }
  .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .title {
    font-size: 24px;
  }
  .location__date {
    font-size: 22px;
  }
  .location__type {
    font-size: 22px;
  }
  .location__address {
    font-size: 20px;
    padding-left: 0;
    padding-bottom: 10px;
  }
  .content__text,
  .content__text p {
    font-size: 20px !important;
  }
}
.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;
}

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

.orgs .title {
  text-align: center;
}

.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;
}

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

.orgs__item-text {
  font-size: 20px;
  line-height: 110%;

  color: #000;
}

.orgs .title {
  margin-top: 0;
}

.about {
  padding: 0px 0 80px;
}

.about__inner {
  background: #F2F0EF;
  padding: 60px 60px 10px 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;
}

.about__item {
  width: calc(50% - 10px);
  margin-top: 10px;
}
.hero__block p {
  text-align: left;
}



@media screen and (max-width: 1200px) {
  .orgs__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 900px) {
  .orgs__item {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .orgs__item-icon {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 450px) {
  .orgs__item-icon {
    width: 80px;
    height: 80px;
  }
  .orgs__inner {
    padding: 0;
  }
  .orgs__list {
    gap: 20px;
  }
  .orgs__item-text {
    font-size: 16px;
  }
}

.committee {
  padding: 50px 0;
  position: relative;
  background: #d4e5b3;
  overflow: hidden;
}

.committee-bg {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
  width: 100%;
}

.committee__inner {
  position: relative;
  z-index: 1;
}

.committee__list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 35px 40px;
}

.committee__item {
  width: calc(33% - 26px);
  background: #739c4ab2;
  border-radius: 40px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.committee__item-name {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 120%;
  text-align: center;
}

.committee__item-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.committee__item-dots span {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.committee__item-desc {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 120%;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .committee__item {
    width: calc(50% - 20px);
  }
  .committee-bg {
    max-width: none;
    width: 200%;
  }
}

@media screen and (max-width: 900px) {
  .committee__list {
    gap: 20px;
  }
  .committee__item {
    width: calc(50% - 10px);
  }

  .committee__item-name {
    font-size: 22px;
  }
  .committee__item-desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 650px) {
  .committee {
    padding: 25px 0;
  }
  .committee__item {
    width: 100%;
  }
  .committee__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .committee__item-desc {
    font-size: 16px;
  }
  .committee__item-name {
    font-size: 20px;
  }
}
.inner-page {
  padding: 160px 0 50px;
}


@media screen and (max-width: 650px) {
  .inner-page {
    padding: 80px 0 50px !important;
  }
}

.program__day {
  margin-top: 40px;
  color: #5D514D;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

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

.program__text span {
  color: #5D514D;
}

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

.program__item {
  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 {
  color: #5D514D;
  font-weight: 700;
}

.program__item-time {
  color: #5D514D;
}

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

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

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


.program__item1 {
  background: #3B444433;
}

.program__item2 {
  background: #73787C33;
}

.program__item3 {
  background: #5D514D33;
}



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

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

.content__text li {
  font-size: 22px;
  line-height: 140%;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-left: 20px;
}
.content__text ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content__text ol li {
  padding-left: 0;
}
.content__text ol {
  padding-left: 30px;
  margin-top: 30px;
}

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

.content__text ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5D514D;
  position: absolute;
  left: 0;
  top: 10px;
}
.content__text ul.tick li {
  padding-left: 40px;
}

.content__text 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 {
  background: url(../img/tick-err.svg) no-repeat;
  background-size: contain;
}

.contacts__list {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

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

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

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

.contacts__item-job {
  font-weight: 400;
  font-size: 20px;
  color: #5D514D;
}

.contacts__item-link {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contacts__item-link img {
  width: 24px;
  object-fit: contain;
  margin-top: 10px;
}

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

.contacts__item-line {
  margin: 10px 0;
  width: 40%;
  height: 1px;
  background: #958B84;
}

.contacts__item-footer {

  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.conditions {
  margin-top: 70px;
  padding: 50px 44px;
  border-radius: 50px;
  background: #F2F0EF;
}

@media screen and (max-width: 750px) {
  .contacts__item {
    width: 100%;
  }
}

.subscribe {
  padding: 40px 0 80px;
}
.inner-page .subscribe {
  background: transparent;
}
#subscribe {
  padding: 50px;
  border-radius: 50px;
  background: #BEB6AE33;
}

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

#subscribe .soc-block {
  align-items: center;
  margin-top: 0;
  flex-direction: row;
}

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

@media (max-width: 767px) {
  #subscribe .soc-block .soc-text-pre {
    text-align: center;
  }
}

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

@media (max-width: 767px) {
  #subscribe .soc-block .soc-text-post {
    text-align: center;
  }
}

#subscribe .soc-block .soc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4E4A47;
  margin-left: 20px;
}

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

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

@media (max-width: 767px) {
  #subscribe .soc-block .soc a {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  #subscribe .soc-block {
    flex-direction: column;
  }
}

#subscribe ul {
  padding: 0;
  margin: 0;
}

#subscribe a {
  text-decoration: none;
}

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

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

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

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

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

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

.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;
}

#subscribe .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;
}

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

#subscribe .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;
}

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

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

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

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

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

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

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

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

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

#subscribe .checkbox {
  position: relative;
}

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

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

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

#subscribe .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%;
}

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

#subscribe custom-checkbox.checkbox-20 + label::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

#subscribe .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 .modal-list__btn {
  background-color: #3B4444;
  border-radius: 30px;
  color: #ffffff;
  border: none;
  display: block;
  width: 200px;
  line-height: 50px;
  display: block;
  margin: 10px auto 0;
  text-align: center;
}

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

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

@media (max-width: 767px) {
  #subscribe .soc-block .soc-text-post {
    text-align: center;
  }
}

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

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

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

#subscribe form {
  margin-top: 47px;
}

.subs-subtitle {
  text-align: right;

  font-size: 16px;
  color: #4E4A47;
  width: 60%;
}

.subsform {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.subsform .inp {
  width: calc(25% - 15px);
}
.show-topics,
.subsform .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%;
}



.subsform .inp .subscribe-form-item__btn {
  background: #958B84;
  color: #fff;
  font-size: 19px;
}
.subsform .inp .subscribe-form-item__btn:hover {
  opacity: .8;
}

@media (max-width: 1100px) {
  .subscribe-top {
    flex-direction: column;
    align-items: center;
  }
  .subs-subtitle {
    text-align: center;
    width: 100%;
  }
  .subsform .inp {
    width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  #subscribe .soc-block .soc {
    margin-top: 25px;
    justify-content: space-around;
  }
}

@media (max-width: 650px) {
  .subsform .inp {
    width: 100%;
  }
  .subscribe {
    padding: 25px 0;
  }
  #subscribe form {
    margin-top: 0;
  }
  #subscribe {
    padding: 20px 10px;
  }
  .show-topics,
  .subsform .inp input {
    font-size: 20px;
    height: 50px;
    border-radius: 20px;
  }
  #subscribe .title {
    font-size: 22px;
  }
  .subs-subtitle {
    font-size: 20px;
  }
}


@media screen and (max-width: 550px) {

  .page-title {
    font-size: 30px;
  }

  .content__text,
  .content__text p {
    font-size: 22px;
  }
  .drop::before {
    top: 6px;
  }
}

.content__btn {
  background: #3B4444;
  color: #fff;
  display: inline-block !important;
  border-radius: 45px;
  padding: 15px 30px;
  text-align: center;
  transition: 0.2s linear;
  margin-top: 20px;
  border: 1px solid #d4e5b3;
  text-decoration: none !important;
  font-size: 16px;
}

.content__btn:hover {
  border: 1px solid #3B4444;
  color: #3B4444;
  background: #fff;
}

.contacts__list-one {
  justify-content: flex-start;
}

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

.drop::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5D514D;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 12px;
}

.booking {
  margin: 50px 0;
}

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

.booking__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

.booking__item-img {
  width: 450px;
  max-width: 100%;

  flex-shrink: 0;
}

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

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

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

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

.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;
}

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

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

.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 #00000035;
}

.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;
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  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: #0000004b;
}

.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%;
}

.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;
}

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

.btn-order:hover {
  background: #fff;
  color: #779c4b;
}

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

.tel,
.mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.mail a,
.tel a {
  display: inline-block;
  margin-top: 0;
}
.booking__item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
}

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

.booking__hotel-dark {
  background: #739c4a;
  color: #fff;
}

.booking__hotel-dark .booking__item-info h2 {
  color: #fff;
}
.booking__item-img i {
  text-align: center;
  display: block;
  margin-top: 5px;
}


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

.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: #5D514D;
  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: #958B84;
  border-radius: 30px;
  padding: 13px 27px;
  text-align: center;
  font-size: 19px;
  line-height: 120%;
  color: #fff;
  display: block;
  transition: .2s linear;
}

.venue__btn:hover {
  opacity: .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 #958B84;
  position: relative;
  transition: .2s linear;
}

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

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

.venue__link:hover {
  color: #fff;
}

.stats {
  padding-bottom: 40px;
}

.stats__text {
  font-size: 36px;
  line-height: 130%;
  color: #5D514D;
}

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

.stats__item {
  background: #BEB6AE33;
  border-radius: 50px;
  padding: 50px;
  width: calc(25% - 9px);
  text-align: center;
}

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

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

.guest {
  padding: 40px 0;
}

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

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

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

.guest__img 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;
}

@media screen and (max-width: 1000px) {
  .price table td,
  .price table th {
    padding: 10px 5px;
  }

  .inner {
    padding: 100px 0 50px;
  }
  .stats__item {
    width: calc(50% - 12px);
  }
  .guest__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .guest__text {
    width: 100%;
  }
  .guest__img {
    width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .video iframe {
    border-radius: 24px;
  }
  .poster__block {
    flex-wrap: wrap;
  }
  .booking__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .stats__item {
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .table1 th {
    font-weight: 400;
  }

  .table1 th {
    display: none;
  }

  .only-mob {
    display: block;
  }
}

@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;
  }

  .table-wrapper {
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  .table1 .btn-order {
    padding: 10px;
  }
  .booking__item-img {
    width: 100%;
  }

  .inner-container {
    max-width: 100%;
    border-radius: 0;
    background: transparent;
  }

  .inner-contact {
    padding: 20px;
  }

  .table1 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .table1 th {
    font-weight: 400;
  }

  .table1 th {
    display: none;
  }

  .only-mob {
    display: block;
  }
}

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

.news__item {
  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 {
  flex-grow: 1;
}

.news__item-title {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #d4e5b3;
}

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

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

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

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

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

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

.buttons a {
  margin-top: 0 !important;
}

.cond__list {
  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;
	/*rgba(0, 0, 0, 0.08)*/
  display: flex;
  flex-direction: column;
  color: #000;
}

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

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

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

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

.cond__item-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: #5D514D;
  min-height: 162px;
}

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

.cond__item-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 small {
  font-size: 18px;
  font-weight: 700;
}

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


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

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

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

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

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

@media screen and (max-width: 1200px) {
  .news__item-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 700px) {
  .news__item {
    width: 100%;
  }
  .buttons {
    align-items: center;
  }
  .hero__title {
    font-size: 24px;
  }
 
  .hero p {
    font-size: 18px;
  }
  .about__inner {
    font-size: 18px;
  }
  .hero__block {
    padding: 20px;
  }
  .orgs__list,
  .hero {
    margin-top: 40px;
  }
  .about__item,
  .about__img,
  .focus__item {
    width: 100%;
  }
  .about__inner {
    padding: 20px;
  }
  .subsform {
    margin-top: 20px;
  }
}

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

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

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

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

.animate__fadeInUp {
  --animate-duration: 0.5s;
}

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

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

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

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

@media screen and (max-width: 500px) {
  .footer__menu {
    flex-direction: column;
    align-items: flex-start;
  }
  
}

.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%;
	padding-bottom: 30px;
}

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

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

.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: #3B4444;
   position: relative;
   border-radius: 30px;
   color: #fff;
   font-size: 16px;
   line-height: 80%;
}

.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%);
}

.comm__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.comm__item-img {
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  background: #5D514D;
  width: 100%;
  aspect-ratio: 1/1;
}

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

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

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

.comm__item-text {
  margin-top: 10px;
  color: #5D514D;
  font-size: 16px;
  line-height: 150%;
        overflow: hidden;
      max-height: 72px;
      transition: .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;
}

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

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


@media screen and (max-width: 1100px) {
  .comm__item {
  width: calc(33% - 8px);
}
  .inner-page {
    padding: 100px 0 50px;
  }
  .program__item {
    padding: 20px;
  }
  .program__item--sm {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 800px) {
  .comm__item-text {
    max-height: none !important;
  }
  .comm__item {
  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: 600px) {
  .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,
  .contacts__item-link p,
  .place__text,
  .focus__item-text {
    font-size: 20px;
  }
  .comm__item-name {
    font-size: 20px;
  }
  .comm__item-img {
    border-radius: 24px 24px 0 0;
  }
  .comm__item-info {
    border-radius: 0 24px 0 0;
    padding: 10px;
  }
}

@media screen and (max-width: 500px) {
.comm__item {
  width: 100%;
}
}

@media screen and (max-width: 450px) {
  .sponsors-container a {
    width: calc(50% - 2px);
  }
  .program__item {
    padding: 10px;
  }
  .contacts__item-job,
  .contacts__item-link p {
    font-size: 18px;
  }
}


.invitation-section .title {
	    text-align: center;
    margin-top: 0;
    padding-bottom: 42px;
	}
.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 40px;
  transition: box-shadow 0.3s ease;
}
	

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

/* Заголовок 
.invitation-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0088cc;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
*/
/* Основное тело блока - 2 колонки */
.invitation-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Контейнер картинки (2/3 ширины) */
.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; /* ← ИЗМЕНЕНО: было center, теперь flex-start */
  border-radius: 8px;
  /* justify-content: center; ← УДАЛЕНО */
}

.invitation-image {
  max-width: 100%;
  height: auto;
  width: 100%;            /* ← 100% ширины */
  /*height: 100%;           */
  object-fit: contain;    /* ← ИЗМЕНЕНО: было cover, теперь contain */
  border-radius: 4px;
}

/* Стилизация scrollbar */
.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);*/
  background: rgba(170, 162, 155, 0.3);
  border-radius: 4px;
}

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

/* Контейнер кнопки */
.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: #3B4444;
  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, 0, 0, 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, 0, 0, 0.4);
  background: #3B4444;
}

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

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

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 768px) {
  .invitation-section {
    padding: 40px 24px;
  }

  .invitation-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .invitation-body {
    grid-template-columns: 1fr;  /* Одна колонка */
    gap: 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;
  }
}

@media (max-width: 480px) {
  .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;
  }
}
