html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #232536;
}

.container {
  display: inherit;
  width: 90%;
  max-width: 1200px;
  justify-content: inherit;
  margin: 0 auto;
  align-items: inherit;
}

header {
  height: 100%;
  background: radial-gradient(circle at 80% -10%, #ffffff00 , #00000080), url('../img/bg/bg02.webp');
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position-x: center;
  color: #F4F4F4;
  margin-bottom: 50px;
}
li.anchor:hover {
  color: #fdc512;
  cursor: pointer;
}
body.video-active {
  overflow: hidden;
}
span.close {
  font-size: 32px;
  position: absolute;
  right: 1%;
  top: 1%;
  color: #ffffffc4;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  border-radius: 100%;
  cursor: pointer;
  font-weight: 900;
  background: #00000090;
  padding: 3px;
}
span.close:hover {
  background: #880000c4;
  color: #000000c4;
}
/* NAV */
nav {
  display: flex;
  background-color: #232536;
  color: #F4F4F4;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 200;
}
.nav-right {
  display: flex;
  column-gap: 24px;
  align-items: inherit;
  justify-content: end;

}
nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  column-gap: 24px;
  height: 100%;
  align-items: center;

}
.link-list li{
  cursor: pointer;
  padding: 26px 5px;
  text-wrap: nowrap;
  word-wrap:normal;
}
.link-list li:hover {
  color: #fdc512;
  background-color: #393b4d;
  
}
.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1.2rem;
  font-weight: 600;
  column-gap: 10px;
  text-transform: uppercase;
  text-align: left !important;
}
.logo img {
  height: 60px;
}
#home .container {
  margin-bottom: 50px;
}
.home-info {
  width: 100%;
  height: 100%;
  display: flex;
}
.home-info p, .home-info h1 {
  text-shadow: 0px 0px 6px #232536;
}
.info {
  display: block;
  max-width: 800px;
  position: sticky;
  top: calc(20%);
  height: fit-content;
  padding-left: 10px;
}
.info>:nth-child(3) {
  margin-bottom: 50px;
}
.info>:nth-child(2) {
  display: flex;
  align-items: center;
}
.info>* {
  margin: 10px 0;
}

/* MAIN */
.content {
  display: flex;
  column-gap: 100px;
}
.text-block {
  margin-bottom: 80px;
}
.tag-cloud {
  margin-bottom: 30px;
}
.tag-cloud .title {
  margin: 0;
}
.tag-cloud .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}
.tag-cloud .tag {
  background-color: #F4F4F4;
  width: fit-content;
  padding: 3px 10px;
  text-align: center;
}
#register {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

/* SPEAKERS */
#speakerFeed {
  display: grid;
  overflow: hidden;
  gap: 40px;
  position: relative;
  margin-bottom: 60px;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}
#allSpeakers {
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  display: block;
}
.speaker {
  line-height: 1;
  background-color: #F4F4F4;
  padding: 10px;
  min-width: 200px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  height: calc(100%);
}
.speaker:hover {
  background-color: #FBF6EA;
}
.speaker img {
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
}
/* PROMO */
#promo .content {
  position: relative;
  background-image: url("/img/bg/bg01.webp");
  background-position-y: -318px;
  background-position-x: right;
  background-repeat: no-repeat;
  width: 100%;
  height: 600px;
  margin-bottom: 80px;
}
#promo .promo-info {
  position: absolute;
  width: 500px;
  background-color: #FFF;
  bottom: -1px;
  right: 0;
  height: 340px;
  padding: 60px;
  z-index: 20;
}
.promo-text {
  display: none;
}
.promo-info p, .promo-info h2 {
  margin-bottom: 30px;
}
#videoModal {
  background-color: #23253699;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* PARTNERS */
.we {
  display: flex;
  justify-content: space-between;
}
.we-item {
  max-height: 60px;
}
.partner>img {
  display: flex;
  justify-content: center;
}
.organizer h2, .general h2, .partner h2 {
  text-align: center;
}
.organizer, .general, .partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.partner img, .organizer a>img, .general a>img, .partner a>img {
  display: flex;
  height: 60px;
  filter: grayscale(100%);
}
.partner a:hover>img, .organizer a:hover>img, .general a:hover>img, .partner a:hover>img {
  filter: grayscale(0);
}
.partner a>img {
  margin: 0 auto;
  height: 50px;
}
#partnerList {
  overflow: clip;
  display: flex;
  gap: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.partner {
  transition: all .3s ease;
}
.partner>a {
  text-decoration: none;
  color: #232536;
  font-family: 'Circe', sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 4px;
}
.for-partners {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.link {
  cursor: pointer;
  color: #502281;
  font-weight: 600;
}
/* PROGRAM */
.program-item {
  margin-bottom: 32px;
}
.program-title {
  margin-bottom: 16px;
}
.program-tag, .tag-cloud-title {
  color: #d44e97;
  font-weight: 600;
}
.program-description {
  color: #6D6E76;
}
.program-description:hover::before {
  border: 2px solid #baaed6;
  color: #baaed6;
}
/* FORUM23 */
#forum23 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
.forum23-item {
  position: relative;
}
.forum23-date {
  font-weight: 400;
}
.forum23-description.mobile {
  display: none;
}
.forum23-title div {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 20px;
}
.forum23-img {
  background-image: url("/img/forum23.webp");
  filter: brightness(80%) contrast(110%);
  -webkit-filter: brightness(80%) contrast(110%);
  -moz-filter: brightness(80%) contrast(110%);
  height: 600px;
  overflow: clip;
  background-position-y: center;
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.forum23-img img{
  width: 100%;
  image-rendering: crisp-edges;
}
.forum23-info {
  position: absolute;
  display: flex;
  align-items: start;
  right: 0;
  top: -20%;
  z-index: 1;
}
.forum23-info>div:nth-child(1){
  background-color: #fff;
  width: 300px;
  padding: 32px;
}
.forum23-info>div:nth-child(2){
  background-color: #fff;
  width: 435px;
  padding: 32px;
}
.forum23-numbers {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  overflow: clip;
}
.inside-block {
  display: flex;
  width: 100px;
  height: fit-content;
  background-color: #fdc512;
  padding: 10px;
  justify-content: center;
}
.inside-block4 {
  background-color: #502281;
  width: 30%;
}
.inside-block5 {
  width: 100%;
}
.outside-block {
  display: flex;
}

.outside-block2 {
  width: 100%;
}
/* REVIEW */
.arrow-btn {
  cursor: pointer;
}
#VideoBlock .arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgb(0 0 0 / 0.5);
  min-width: 3rem;
  min-height: 3rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#VideoBlock .arrow-btn:hover {
  background-color: rgb(0 0 0 / 0.6);
}
#VideoBlock .arrow-btn::before, .review-right .arrow-btn::before {
  display: flex;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease !important;
}
#VideoBlock .arrow-btn.prev::before {
  content: url("/img/icons/skip_prev.svg");

}
#VideoBlock .arrow-btn.next::before {
  content: url("/img/icons/skip_next.svg");
}


#VideoBlock .arrow-btn, .review-right .arrow-btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  padding: 0;
}
.review-right .arrow-btn {
  transform: translateY(-50%);
}
#VideoBlock .arrow-btn.prev {
  left: 0;
  transform: translate(50%, -40%);
}
#VideoBlock .arrow-btn.next {
  right: 0;
  transform: translate(-50%, -40%);
}
#VideoBlock .arrow-btn.next:hover {
  transform: translate(-50%, -40%) scale(1.2) !important;
}
#VideoBlock .arrow-btn.prev:hover {
  transform: translate(50%, -40%) scale(1.2) !important;
}
#VideoBlock .arrow-btn.next:hover::before {
  transform: translateX(0) scale(0.86) !important;
}
#VideoBlock .arrow-btn.prev:hover::before {
  transform: translateX(0) scale(0.86) !important;
}
.review-right .arrow-btn.prev::before {
  content: url("/img/icons/arrow_back.svg");
}

.review-right .arrow-btn.next::before {
  content: url("/img/icons/arrow_forward.svg");
}

.review-right .arrow-btn.prev {
  left: 0;
}

.review-right .arrow-btn.next {
  right: 0;
}

.arrow-btn.inform, .review-right .arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.5;
}
.arrow-btn.inform:hover {
  opacity: 0.8;
}
.arrow-btn.prev.inform::before {
  content: url("/img/icons/arrow_back.svg");

}
.arrow-btn.next.inform::before {
  content: url("/img/icons/arrow_forward.svg");
}

.arrow-btn.inform {
  position: absolute;
  bottom: 15px;
}
.arrow-btn.inform.prev {
  right: 210px;
}
.arrow-btn.inform.next {
  left: 210px;
}
#review h2 {
  display: none;
}
.review-item {
  display: flex;
  padding: 1rem;
  background-color: #FBF6EA;
  border: 1px solid #F5ECD7;
  box-shadow: -2px 3px 10px 1px #00000017;
}
.review-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  width: 100%;
}
.review-center {
  width: 1px;
}
.review-devider {
  height: 100%;
  border: 1px solid #AEAAA0;
}
.review-right {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-left: 1rem;
}
.comment {
  padding: 0 2rem;
}
.slick-track {
  display: flex !important;
  align-items: center;
}
.slick-track > * {
  display: inline-block;
  vertical-align: middle;
}
.review-arrows {
  text-align: end;
  margin: 0 50px;
  margin-top: 15px;
  margin-bottom: 80px;
}
.inform {
  position: relative;
}


/* .review-right .arrow-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
} */


.review-video {
  position: relative;
  width: calc(100% - 70px);
  margin: 0 auto;
}
#videos {
  height: 640px;
}
#videos img {
  height: 640px;
}
.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
}
.slick-dots button {
  border: none;
  color: transparent;
  background-color: #00000080;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background-color: #444444;
}
#VideoBlock {
  position: relative;
}

#VideoReview, #Video23 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRESIDENT */
#president {
  background-color: #f4f0f8;
  display: flex;
}
.president-quote {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
blockquote {
  margin: 0;
}
blockquote>.footer {
  font-weight: 600;
  margin-top: 10px;
}
.president-cite {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px;
  column-gap: 50px;
  align-items: center;
}
/* WHY */
#why {
  background-color: #f4f0f8;
  padding: 30px 50px ;
}
.text1, .text2 {
  display: flex;
  flex-direction: column;
  width: 40%;
  row-gap: 10px;
}
.devider {
  width: 10%;
}
.why-text {
  display: flex;
  justify-content: space-between;
}
/* BUY */
/* MAP */
.buy-items {
  display: flex;
  align-items: center;
}
.buy-form {
  width: calc(100% - 60px);
  max-width: 1200px;
  height: auto;
  padding: 30px;
  overflow: clip;
}
#whybuy {
  background-color: #f1f1f2;
  padding: 30px;
}
#map {
  width: 100%;
}
/* FOOTER */
footer {
  background-color: #232536;
  padding: 30px;
  padding-bottom: 10px;

}

footer .content>div:first-child {
  display: flex;
  width: 50%;
  justify-content: space-between;
}
footer .share {
  display: flex;
}
footer>.content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
footer ul, footer .ancor, footer h4 {
margin: 0;
padding: 0;
list-style: none;
color: #eee;
}
footer .copyright {
display: flex;
justify-content: center;
text-align: center;
max-width: 1200px;
color: #eee;
font-size: 12px;
line-height: 1.4;
margin: 0 auto;
margin-top: 30px;
}
/* BUTTON */
#navButtonBuy {
  padding: 16px 0px;
  width: 0;
  overflow: clip;
  text-wrap: nowrap;
  transition: padding 0.3s, width 0.3s;
}
#navButtonBuy.expanded {
  padding: 16px 48px;
  width: calc(269px - 48px * 2);
}
.button.inactive {
  background-color: #F4F4F4 !important;
  color: #cacaca;
  cursor: default;
}
.button {
  display: inline-block;
  color: #232536;
  padding: 16px 48px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
}
.button.white {
  background-color: #F4F4F4;
}
.button.yellow {
  background-color: #fdc512;
}
.button.lavender {
  background-color: #bbafd7;
}
.button.white:hover {
  background-color: #fdc512;
}
.button.yellow:hover, .button.lavender:hover {
  background-color: #F4F4F4;
}
#register.button {
  overflow: clip;
  text-wrap: nowrap;
  transition: height 0.3s, padding 0.3s;
}
.register-block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: clip;
  transition: height 0.3s;
}

.register-header {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: end;
}
.register-body {
  display: flex;
  justify-content: center;
  width: 100%;
}
.register-body .form-group:last-child {
  align-items: center;
}
.form-group .button {
  width: 230.05px;
  border: none;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
}
#registerForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  max-width: 300px;
}
.form-group>label {
  color: #d44e97;
  font-weight: 600;
}

.reset {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #00000030;
  color: #FFF;
  width: 18px;
  height: 18px;
  transform: translate(-25%, 165%);
  right: 0;
  top: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  font-size: 10px;
}
.reset:hover {
  background-color: #00000050;
}
.hide {
  background-color: #fdc512;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
.hide:hover {
  background-color: #502281;
  color: #fdc512;
}
/* OTHER */
.devider {
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #F4F4F4;
  margin: 0 10px;
}
.link:hover {
  cursor: pointer;
  text-decoration: solid underline;
}
.text-yellow {
  color: #fdc612;
}
.title {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.title.center {
  text-align: center;
}
.placeholder {
  width: 100%;
  height: 600px;
  background-color: #303030;
}
.burger {
  display: none;
}
#sideMenu {
  background-color: #232536;
  position: fixed;
  height: 100vh;
  right: 0;
  top: 50px;
  padding: 10px 30px;
  transform: translateX(200%);
  transition: transform .1s ease-in-out;
  z-index: 999;
}
#sideMenu ul {
  margin: 0;
  padding: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
  list-style: none;
}
#sideMenu.active {
  display: block;
  transform: translateX(1%);
}
.hidden-img {
  overflow: clip;
  display: flex;
  flex-direction: column;
  transition: height 0.5s linear;
  margin-bottom: 20px;
}
.hidden-img.hidden {
  height: 0;
}
.hidden-img img {
  max-width: 800px;
  margin: 0 auto;
}
.discount {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
}
.discount-item {
  width: 20%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  padding-left: 66px;
  padding-top: 6px;
  border: 2px solid #baaed6;
}
.disc-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px;
  background-color: #F2EEE3;
  border: 4px solid #F2EEE3;
  border-radius: 8px;
}
.disc-icon.d30 {
  background-image: url("/img/icons/30.png");
}
.disc-icon.d15 {
  background-image: url('/img/icons/15.png');
}
.disc-icon.d0 {
  background-image: url("/img/icons/0.png");
}

.sended-modal {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  background-color: #000000b2;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 888;
}
.sended-content {
  background-color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  font-size: 24px;
  border-radius: 12px;
  width: 320px;
  margin: 0 10px;
  max-width: 100%;
}
.flex {
  display: flex;
}
.col {
  flex-direction: column;
}
.gap20 {
  gap: 20px;
}
.play-button {
  background-color: #00a1e7;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
}
.center {
  justify-content: center;
  align-items: center;
}
.thumbnail {
  max-width: calc(100% - 88px);
  margin: 0 auto;
}
.fancybox__content {
  padding: 0 !important;
}

.hidden {
  display: none;
}

.photo.media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  position: relative;
}

.gallery-thumbnail {
  max-width: 200px;
  transition: all 0.3s ease;
}
.gallery-thumbnail:hover {
  cursor: pointer;
  transform: scale(1.03);
}

.gallery-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.archive-tag {
  background-color: #F4F4F4;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-tag a {
  text-decoration: none;
  color: #232536;
  font-size: 22px;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.archive-tag:hover {
  cursor: pointer;
  background-color: #c1c1c1;
}
