@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* 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: "Roboto", sans-serif;
  color: #000000;
  margin: 0;
}

.container {
  width: 1420px;
  max-width: 100%;
  margin: 0 auto;
}

.btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  background: #d4e5b3;
  color: #758288;
  border-radius: 40px;
  border: 1px solid #d4e5b3;
  transition: 0.2slinear;
  margin-top: 15px;
  font-size: 28px;
  padding: 15px 30px;
  text-decoration: none !important;
  text-align: center;
}

.btn:hover {
  background: #fff;
  color: #d4e5b3;
}

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

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

header {
  position: fixed;
  z-index: 1000;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 1420px;
  max-width: calc(100% - 40px);
  background: #758288;
  border-radius: 40px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  gap: 30px;
  box-shadow: 0 4px 14px 0 #00000025;
  transition: 0.2s linear;
}

header.scrolled {
  top: 20px;
}

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

.header__logo-img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

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

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

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

.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, #758288, #ffffff);
}

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

.header__nav-sub {
  position: absolute;
  bottom: -100000px;
  left: 0;
  transform: translateY(100%);
  background: #577681; /*#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;
}

.header__nav-sub li {
  padding: 0;
  border-bottom: 1px solid #fff;
  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:hover {
  background: #00000041;
}

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

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

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

.header__btn:hover {
  background: #76c6cb;
  color: #fff;
}

.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: #758288;
  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: 200px;
  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;
}

@media screen and (max-width: 1500px) {
  header {
    height: 80px;
  }
  .header__nav-sublinks,
  .header__nav-link {
    font-size: 20px;
  }
  .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;
}

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

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

.banner {
  display: flex;
  gap: 50px;
  padding: 245px 20px 185px;
  align-items: flex-start;
  background: url(../img/banner-bg.png) 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(80% - 70px);
  max-width: 100%;
  z-index: 2;
}

.banner__logo {
  z-index: 2;
  width: 20%;
}

.banner__subtitle {
  font-size: 50px;
  line-height: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
  width: 790px;
  max-width: 100%;
}

.banner__title {
  font-size: 65px;
  line-height: 110%;
  width: 790px;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.location__date {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}

.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: 1420px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 2;
  padding: 50px;
  border-radius: 40px;
  background: #ffffff43;
}

.banner__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin-top: 30px;
}


.banner__left {
  flex-grow: 1;
}

.banner__right {
  width: 400px;
  flex-shrink: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.banner-button {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #758288;
  font-size: 24px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
}

.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: #758288;
  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-left: 50px;
  margin-top: 25px;
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
}

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

.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: 22px;
  margin-top: 8px;
  color: #1e6483;
  text-align: center;
}

.banner__location {
  padding-left: 70px;
  margin-top: 30px;
}
@media screen and (max-width: 1500px) {
  .banner__subtitle {
    font-size: 35px;
    width: 100%;
  }
  .banner__title {
    font-size: 48px;
    width: 100%;
  }
  .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__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .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;
    padding-left: 0;
  }
  .banner__right {
    width: 100%;
  }
  .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%;
  }
  .banner__location {
    margin-top: 20px;
  }
  .banner__right {
    gap: 10px;
  }
  .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;
  }
.banner-button {
  font-size: 20px;
  padding: 15px 30px;
}
}

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

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

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

.target__title {
  color: #758288;
  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 #758288;
  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 #758288;
  padding-top: 0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

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

@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: 1px;
  background: #739c4a;
  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: 20px;
  text-decoration: underline;
}

.content__text p a {
  display: inline;
}
.content__text a:hover {
  text-decoration: none;
}
.title {
  font-size: 40px;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 700;
  color: #758288;
  text-align: center;
  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: 22px;
  }
  .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: 0 0 50px;
  background: #d2dfe6;
}

.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: 10px;
}

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

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

.orgs__item-text {
  font-size: 20px;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
  color: #000;
}

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

@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: 240px 0 50px;
  background: #ececec url(../img/target-bg.svg) no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

@media screen and (max-width: 650px) {
  .inner-page {
    background: #ececec url(../img/target-bg.svg) no-repeat;
    background-position: bottom center;
    background-size: 200% auto;
    padding: 100px 0 50px;
  }
  
}

.page-title {
  font-size: 44px;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
  margin-top: 20px;
  font-weight: 600;
  color: #758288;
  text-align: center;
  text-transform: uppercase;
}

.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 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #758288;
  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;
}

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

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

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

.contacts__item-name {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #758288;
}

.contacts__item-job {
  font-weight: 500;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin-top: 10px;
}

.contacts__item-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contacts__item-link img {
  width: 40px;
  object-fit: contain;
}

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

.contacts__item-footer {
  border-top: 1px solid #76c6cb;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts__item-link p {
  line-height: 150%;
}

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

.subscribe {
  padding: 50px 0;
  background: #d2dfe6;
}
.inner-page .subscribe {
  background: transparent;
}
#subscribe {
  padding: 10px 30px;
  border-radius: 40px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #758288;
}

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

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

#subscribe .soc-block .soc-text-pre {
  color: #fff;
  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: #fff;
  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;
}

#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: #d4e5b3;
  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: #00542d;
  border-radius: 2px;
}

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

#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: #1e6483;
}

.checkbox-label p {
  color: #fff;
}

#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: #d4e5b3;
  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: 30px;
}

.subs-subtitle {
  text-align: right;
  font-family: "Roboto", sans-serif;
  margin: 20px 0;
  font-size: 22px;
  color: #fff;
  width: 50%;
}

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

.subsform .inp {
  width: calc(25% - 15px);
}
.show-topics,
.subsform .inp input {
  border-radius: 40px;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  height: 50px;
  font-size: 18px;
  color: #8f8f8f;
}

.checkbox-soglashenie {
  width: 100%;
}

#subscribe .title {
  margin-top: 0;
  color: #fff;
}

.subsform .inp .subscribe-form-item__btn {
  background: #577681;
  color: #fff;
  font-size: 22px;
}

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

.venue {
  margin-top: 40px;
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 30px;
  display: flex;
  gap: 30px;
  align-items: stretch;
  background: #fff;
}

.venue__title {
  font-size: 30px;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #d4e5b3;
}

.venue__img {
  width: 400px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.venue__info p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 150%;
  margin-top: 10px;
}

.venue__address {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.stars {
  margin-left: 20px;
}
.stars img {
  margin-top: 5px;
}

.venue__map {
  margin-top: 30px;
  border-radius: 30px;
  border: 1px solid #d4e5b3;
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  .venue {
    flex-direction: column;
  }
  .venue__img {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .venue__title {
    font-size: 22px;
  }
  .page-title {
    font-size: 30px;
  }
  .venue__img {
    border-radius: 15px;
  }
  .venue {
    padding: 20px;
    border-radius: 20px;
  }
  .venue__map {
    border-radius: 20px;
  }
  .content__text,
  .content__text p {
    font-size: 22px;
  }
  .drop::before {
    top: 6px;
  }
}

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

.content__btn:hover {
  border: 1px solid #758288;
  color: #758288;
  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: #758288;
  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;
}
@media screen and (max-width: 1000px) {
  .price table td,
  .price table th {
    padding: 10px 5px;
  }

  .inner {
    padding: 100px 0 50px;
  }
}

@media screen and (max-width: 900px) {
  .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) {
  .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;
  background: #fff;
}

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

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

.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: #577681;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

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

.footer__links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__links a {
  font-size: 22px;
  color: #fff;
}

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

@media screen and (max-width: 800px) {
  .sponsors-container a {
    width: calc(25% - 2px);
  }
}

@media screen and (max-width: 700px) {
  .sponsors-container a {
    width: calc(33% - 2px);
  }
}

@media screen and (max-width: 400px) {
  .sponsors-container a {
    width: calc(50% - 2px);
  }
}
.video {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.video iframe {
  width: 1000px;
  max-width: 100%;
  aspect-ratio: 16/9;
}