* {
   box-sizing: border-box;
}
body {
   font-family: 'Open Sans', sans-serif;
   background: #000000;
   background-color: #000000;
   overflow: hidden;
}
.orange_gradient_button {
   background: linear-gradient(96.46deg, var(--gradient_button_collor1, #00FFCB) 0%, var(--gradient_button_collor2, #00AEBB 100%));
   border: 1px solid #0000000F;
   color: #000000;
   border-radius: 12px;
   background-clip: padding-box;
}
.orange_gradient_button:focus,
.orange_gradient_button:active,
.orange_gradient_button:hover {
   background: linear-gradient(96.46deg, var(--gradient_button_collor2, #00AEBB 100%) 0%, var(--gradient_button_collor1, #00FFCB) 100%);
   box-shadow: 0px 0px 16px 0px var(--gradient_button_collor1, #00dbaf);
   border-radius: 12px;
   background-clip: padding-box;
}
.orange_gradient_button svg path {
   fill: #000000;
}
.button_wrap {
   width: 100vw;
   text-align: center;
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   height: 50px;
   z-index: 1;
}
.white_button {
   background: #FFFFFF;
   color: var(--primary_color2, #007F65);
}
.white_button:focus,
.white_button:active,
.white_button:hover {
   border: 1px solid var(--primary_color2, #007F65);
   color: var(--primary_color2, #007F65);
}
.white_button svg path {
   fill: var(--primary_color2, #007F65);
}
.recordings_popup_button_watch {
   cursor: pointer;
}
.orange_button {
   background: var(--primary_color, #00FFCB);
   color: #000000;
}
.orange_button:focus,
.orange_button:active,
.orange_button:hover {
   background: var(--primary_color2, #87fde6);
   color: #000000;
}
.black_button {
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
}
/* --------------------------------- header -------------------------------*/
.header_top_left_text {
   opacity: .5;
   font-weight: 600;
   font-size: 12px;
   letter-spacing: 4px;
   position: absolute;
   left: 40px;
   top: 35px;
   color: #FFFFFF;
}
header.scrolled .header_top_left_text {
   display: none;
}
.header_not_transparent {
   position: absolute;
   width: 100%;
   z-index: 10;
   background: linear-gradient(to bottom, rgb(0, 0, 0) 10%, transparent);
}
.header_transparent {
   position: absolute;
   width: 100%;
   z-index: 10;
   background: linear-gradient(to bottom, rgb(0, 0, 0) 10%, transparent);
}
header.scrolled {
   position: fixed;
   top: 0;
   height: 72px;
   background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
   backdrop-filter: blur(4px)
}
header.scrolled::before {
   display: none;
}
header.scrolled .header_hide_scrolled_content {
   display: none;
}
header::before {
   content: '';
   position: absolute;
   z-index: 13;
   width: 100%;
   height: 100%;
   background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent 10%, transparent 80%, rgba(0, 0, 0, 0.5) 100%);
   pointer-events: none;
}
.header_container {
   z-index: 12;
   padding: 24px 40px 0px;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
}
header.scrolled .header_container {
   padding: 0;
}
/* .header_container {
   z-index: 12;
   padding: 0px 40px 0px;
   position: relative;

   height: 72px;
} */
.header_radial_gradient_element {
   z-index: 11;
   position: absolute;
   bottom: -10%;
   max-width: 1200px;
   width: 1200px;
   height: 50%;
   border-radius: 50%;
   left: 50%;
   filter: blur(40px);
   transform: translateX(-50%);
   background: radial-gradient(50% 50% at 50% 50%, var(--header_background_radial_gradient1, #00ffcb82) 0%, var(--header_background_radial_gradient1, #008a6ee6) 100%);
   pointer-events: none;
}
header.scrolled .header_radial_gradient_element {
   display: none;
}
/* .header_radial_gradient_element {
   z-index: 11;
   position: absolute;
   bottom: -5%;
   max-width: 1200px;
   width: 1000px;
   height: 30%;
   border-radius: 50%;
   left: 50%;
   filter: blur(40px);
   transform: translateX(-50%);
   background: radial-gradient(50% 50% at 50% 50%, rgba(253, 35, 72, 0.6) 0%, rgba(239, 86, 0, 0.6) 100%);
   pointer-events: none;
} */
.header_register_button {
   border-radius: 12px;
   position: absolute;
   top: 0;
   right: 40px;
   visibility: hidden;
   opacity: 0;
   transition: all 0.2s linear;
   padding: 10px 15px;
}
.header_register_button.scrolled {
   position: absolute;
   top: 20px;
   right: 40px;
   visibility: visible;
   opacity: 1;
   transition: all 0.2s linear;
}
.header_logo_container {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   margin-bottom: 18px;
   transition: all 0.2s linear;
}
.header_logo_container.scrolled {
   display: none;
}
.left_header_logo_container {
   position: absolute;
   top: 0px;
   left: 40px;
   transition: all 0.2s linear;
   opacity: 0;
}
header.scrolled .left_header_logo_container {
   position: absolute;
   top: 28px;
   left: 40px;
   transition: all 0.2s linear;
   opacity: 1;
}
.header_logo {
   max-height: 18px;
}
.header_games_number {
   padding: 5px;
   border: 1px solid #FFF;
   border-radius: 4px;
   line-height: 1;
   font-size: 13.5px;
}
.header_text_under_logo {
   color: var(--primary_color, #00FFCB);
   font-size: 13.5px;
   font-weight: 700;
   line-height: 22.5px;
   margin-bottom: 6px;
   text-align: center;
}
.header_skils_list {
   display: inline-flex;
   gap: 10px;
   margin-bottom: 10px;
   overflow-x: auto;
   width: 100vw;
   scrollbar-width: none;
   justify-content: center;
}
.header_skils_list::-webkit-scrollbar {
   display: none;
}
.header_skils_list a {
   padding: 4px 10px;
   border-radius: 8px;
   background: #0000003D;
   border: 0.5px solid var(--primary_color, #00FFCB);
   backdrop-filter: blur(40px);
   font-size: 13.5px;
   font-weight: 600;
   transition: all 0.2s ease;
   white-space: nowrap;
}
.header_skils_list a:hover {
   transition: all 0.3s ease;
   background: var(--header_skils_list_button_background, #00FFCB66);
   border: 0.5px solid var(--primary_color, #00FFCB)
}
.header_skils_list a:focus {
   transition: all 0.3s ease;
   background: var(--header_skils_list_button_background, #00FFCB66);
   border: 0.5px solid var(--primary_color, #00FFCB)
}
.header_skils_list a:active {
   transition: all 0.3s ease;
   background: var(--header_skils_list_button_background, #00FFCB66);
   border: 0.5px solid var(--primary_color, #00FFCB)
}
/* carousel skills */
.carousel_width_skills_container {
   overflow: hidden;
   width: 101vw;
   position: relative;
   background: #000000;
   z-index: 11;
   padding: 4px 0px;
   border-top: 0.5px solid;
   border-image-source: linear-gradient(90deg, rgba(253, 35, 72, 0) 0%, rgb(73 247 112 / 50%) 50%, rgba(253, 35, 72, 0) 100%);
}
.carousel_width_skills_container::before {
   z-index: 12;
   top: 0;
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent 20%, transparent 70%, rgba(0, 0, 0, 0.9) 100%);
   pointer-events: none;
}
.carousel_width_skills {
   display: flex;
   gap: 20px;
   animation: scroll-skills 30s linear infinite;
}
.carousel_width_skills:hover {
   animation-play-state: paused;
}
.carousel_width_skills_item {
   display: flex;
   align-items: center;
   white-space: nowrap;
   text-decoration: none;
   color: #FFF;
   font-size: 12px;
   font-weight: 600;
   margin-right: 20px;
   text-transform: uppercase;
   letter-spacing: 3px;
}
.carousel_width_skills_item img {
   width: 20px;
   height: 20px;
   position: relative;
   bottom: 2px;
}
@keyframes scroll-skills {
   0% {
      transform: translateX(0);
   }
   100% {
      transform: translateX(-100%);
   }
}
/* End carousel skills */
.header_text_under_carousel_transparent {
   font-size: 13.5px;
   line-height: 22.5px;
   font-weight: 400;
   text-align: center;
   /* backdrop-filter: blur(40px); */
   width: 100vw;
   background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, var(--primary_color, #00FFCB) 50%, rgba(0, 0, 0, 0) 100%);
}
.header_text_under_carousel_transparent a {
   color: #000000;
}
.header_text_under_carousel_transparent a.header_bottom_text_z12 {
   color: #330009;
   position: relative;
   z-index: 12;
}
.header_text_under_carousel_transparent a svg path {
   fill: #000000;
}
.header_text_under_carousel_not_transparent {
   font-size: 13.5px;
   line-height: 22.5px;
   font-weight: 400;
   text-align: center;
}
.header_text_under_carousel_transparent p,
.header_text_under_carousel_not_transparent p {
   margin-bottom: 0;
}
/* header navigation */
.header_nav {
   transition: all 0.2s linear;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 12px;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   backdrop-filter: blur(16px);
   z-index: 2147483633;
   background: var(--almost_transparent_background, #00FFCB0F);
   pointer-events: none;
   opacity: 0;
   top: 20px;
}
.header_nav.scrolled {
   transition: all 0.2s linear;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 12px;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   backdrop-filter: blur(16px);
   z-index: 2147483633;
   background: var(--almost_transparent_background, #00FFCB0F);
   pointer-events: initial;
   opacity: 1;
}
.header_nav ul {
   padding-left: 0;
   padding: 2px;
}
.header_nav_list {
   display: flex;
   align-items: center;
   margin-bottom: 0;
   height: 100%;
}
.header_nav_item {
   font-weight: 400;
   font-size: 16px;
   /* line-height: 24px; */
   line-height: 22px;
   color: transparent;
   position: relative;
   padding: 7px 35px;
   cursor: pointer;
}
.header_nav_item_sponsors::before {
   content: 'Sponsors';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   transition: 0.4s ease-out;
   left: 0;
   top: 0;
}
.header_nav_item:hover .header_nav_item_faq::before,
.header_nav_item:hover .header_nav_item_sponsors::before,
.header_nav_item:hover .header_nav_item_speakers::before,
.header_nav_item:hover .header_nav_item_agenda::before,
.header_nav_item:hover .header_nav_item_overview::before {
   top: -200%;
   transition: 0.4s ease-out;
}
.header_nav_item:hover .header_nav_item_faq::after,
.header_nav_item:hover .header_nav_item_sponsors::after,
.header_nav_item:hover .header_nav_item_speakers::after,
.header_nav_item:hover .header_nav_item_agenda::after,
.header_nav_item:hover .header_nav_item_overview::after {
   transition: all 0.4s ease;
   top: 0;
}
.header_nav_item_sponsors::after {
   transition: all 0.4s ease;
   content: 'Sponsors';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   top: 200%;
   left: 0;
}
/* faq */
.header_nav_item_faq::before {
   content: 'FAQs';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   transition: 0.4s ease-out;
   left: 0;
   top: 0;
}
.header_nav_item_faq::after {
   transition: all 0.4s ease;
   content: 'FAQs';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   top: 200%;
   left: 0;
}
/* end faq */
.header_nav_item_speakers::before {
   content: 'Speakers';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   left: 0;
   top: 0;
}
.header_nav_item_speakers::after {
   content: 'Speakers';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   top: 200%;
   left: 0;
}
.header_nav_item_agenda::before {
   content: 'Agenda';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   left: 0;
   top: 0;
}
.header_nav_item_agenda::after {
   content: 'Agenda';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   top: 200%;
   left: 0;
}
.header_nav_item_overview::before {
   content: 'Overview';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   left: 0;
   top: 0;
}
.header_nav_item_overview::after {
   content: 'Overview';
   color: #FFFFFF;
   transition: all 0.4s ease;
   position: absolute;
   top: 200%;
   left: 0;
}
/*  */
.header_nav_item.active {
   background: var(--adgenda_content_and_nav_border, #00FFCB52);
   border-radius: 10px;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
}
.header_nav_item_a {
   position: relative;
   overflow-y: hidden;
}
.header_nav_item_a.previous-active::after {
   display: none;
}
.header_nav_item_a.active::after {
   display: none;
}
.header_nav_item_a:not(:last-child)::after {
   content: '';
   position: absolute;
   min-width: 1px;
   height: 100%;
   right: 0;
   bottom: 0;
   box-sizing: border-box;
   margin: 0 1px;
   background-image: linear-gradient(transparent 20%, #FFFFFF 50%, transparent 80%);
}
/* End header navigation */
/*---------- End header  -------------------------------------------------------*/
/*---------- Heading Section  -------------------------------------------------------*/
.heading_section .header_nav {
   opacity: 1;
   top: unset;
   bottom: 2vh;
   pointer-events: fill;
   z-index: 2147;
}
.heading_section .header_nav.scrolled {
   display: none;
}
.heading_section {
   position: relative;
   overflow: hidden;
   width: 100%;
   height: 95vh;
   text-align: center;
   padding: 25vh 40px 80px 40px;
   margin-bottom: -2px;
}
.heading_section::after {
   content: '';
   position: absolute;
   width: 100%;
   height: 70px;
   background: linear-gradient(to top, #000000, transparent);
   bottom: 0;
   left: 0;
}
.heading_section_background_video {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
}
.heading_title_content p {
   margin-bottom: 0;
}
.heading_title_content {
   max-width: 1200px;
   text-align: center;
   margin: 0 auto 4vh;
   padding-top: 5.5vh;
   position: relative;
}
.heading_section_padial_shape {
   position: absolute;
   width: 960px;
   max-width: 100%;
   height: 100%;
   border-radius: 50%;
   opacity: 0.8;
   background: #2e000096;
   filter: blur(64px);
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   z-index: -1;
}
.heading_title_content>div:first-of-type {
   font-weight: 600;
   letter-spacing: 0.24rem;
   font-size: 18px;
   line-height: 27px;
   text-align: center;
   text-transform: uppercase;
   color: #FFF;
}
.heading_title_content .heading_title {
   font-weight: 700;
   font-size: 76.5px;
   line-height: 90px;
   text-align: center;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   margin-top: 0;
   margin-bottom: 0;
}
.heading_title_content h1.heading_title {
   letter-spacing: 4px;
   margin-bottom: 0.5vh;
}
.heading_title_content>div:not(:first-of-type) {
   font-weight: 400;
   font-size: 22.5px;
   line-height: 36px;
   text-align: center;
   color: #FFF;
}
.heading_section_text {
   font-weight: 400;
   font-size: 22.5px;
   line-height: 30px;
   text-align: center;
   color: #FFF;
}
h1.heading_sub_title {
   display: block;
   font-weight: 600;
   font-size: 45px;
   line-height: 63px;
   text-align: center;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   margin-top: 0;
   margin-bottom: 1.8vh;
}
span.heading_sub_title {
   display: block;
   font-weight: 600;
   font-size: 45px;
   line-height: 35px;
   text-align: center;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   margin-top: 0;
}
.heading_logo_link {
   display: inline-block;
}
.heading_logo {
   max-height: 64px;
   display: block;
   backdrop-filter: blur(40px);
   margin: 0 auto 16px;
}
.heading_register_button_block {
   border: 1px solid var(--header_skils_list_button_background, #FFFFFF1F);
   background: var(--heading_button_block_back, #ffffff00);
   padding: 16px 16px 32px 16px;
   border-radius: 16px;
   backdrop-filter: blur(40px);
   display: inline-block;
}
/* .heading_register_button_block.scrolled {
   opacity: 0;
} */
.register_button_block_title {
   padding-bottom: 16px;
}
.register_button_block_title p {
   font-weight: 400;
   font-size: 18px;
   line-height: 31.5px;
   color: #FFF;
}
.heading_register_button_block .orange_gradient_button {
   padding: 12px 90px;
   font-size: 18px;
}
.orange_gradient_button {
   outline: none;
}
/*---------- End Heading Section  -------------------------------------------------------*/
/*   slider carts Section ---------------------------------------------------------------*/
.slider_carts_section_content_block {
   text-align: center;
   max-width: 1000px;
   margin: 80px auto 100px;
   padding: 0 40px;
}
.slider_content_block_top_text {
   font-size: 16px;
   font-weight: 400;
   line-height: 24px;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: var(--primary_color, #00FFCB);
}
.slider_carts_section_content_block h2 {
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   position: relative;
   z-index: 1;
   margin-top: 10px;
   margin-bottom: 25px;
}
.slider_content_block_text {
   font-size: 18px;
   font-weight: 400;
   line-height: 32px;
   text-align: center;
   color: #FFF;
   max-width: 950px;
   margin: 0 auto;
   padding: 0 16px;
}
/* background-second_section.jpg */
.slide-content {
   padding: 30px;
   display: flex;
   flex-direction: column;
   height: 100%;
}
.slide-content_top {
   display: flex;
   justify-content: space-between;
}
.slide-content_grow_block {
   flex: 1 1 auto;
}
.slide-content p {
   font-size: 18px;
   font-weight: 400;
   line-height: 28px;
   text-align: left;
   /* color: #FFFFFF; */
   color: var(--heading_button_block_border, #007F65);
   opacity: 0.75;
}
.slide-content_top div {
   font-size: 40px;
   font-weight: 700;
   line-height: 48px;
   text-align: left;
   /* color: #ffffffbf; */
   color: var(--heading_button_block_border, #007F65);
   opacity: 0.75;
}
.slide-content_top svg {
   width: 80px;
   height: 80px;
}
.slide-content_top svg path {
   /* fill: #ffffff; */
   fill: var(--heading_button_block_border, #007F65);
   fill-opacity: 1;
}
/*       ----------------------         */
.slider_carts_section {
   background: #000000;
   overflow: hidden;
   padding: 0 0 240px 0;
   position: relative;
}
.slider_carts {
   /* height: 376px; */
   height: 280px;
   width: 500px;
   display: flex;
   position: relative;
   margin: 0 auto;
}
.slider_item {
   /* height: 376px; */
   height: 280px;
   width: 500px;
   border-radius: 16px;
   /* background-color: #E3BEA20F; */
   background: var(--almost_transparent_background, #00FFCB0F);
   backdrop-filter: blur(40px);
   position: absolute;
   transition: all ease 1s;
   left: 0;
   top: 0;
   /* border: 1px solid #E3BEA229; */
   border: 1px solid var(--adgenda_content_and_nav_border, #00FFCB1F);
}
/* ----------------- center slide ---------*/
.center_slide {
   background-color: #FFF;
   z-index: 5;
}
.center_slide .slide-content {
   padding: 32px;
}
.center_slide .slide-content p {
   font-size: 18px;
   font-weight: 400;
   line-height: 28px;
   text-align: left;
   color: #000000;
   opacity: 1;
}
.center_slide .slide-content_top {
   display: flex;
   justify-content: space-between;
}
.center_slide .slide-content_top div {
   font-size: 40px;
   font-weight: 700;
   line-height: 48px;
   text-align: left;
   color: #000000;
}
.center_slide .slide-content_top svg {
   width: 80px;
   height: 80px;
}
.center_slide .slide-content_top svg path {
   fill: var(--primary_color2, #00B691);
   fill-opacity: 1;
}
/* ----------------- center slide ---------*/
.slider_item.last_slide {
   opacity: 0;
}
.slider_item.next_center_slide_minus {
   transform: translateX(50px);
   top: 40px;
   z-index: 4;
}
.slider_item.next_center_slide_plus {
   transform: translateX(-50px);
   top: 40px;
   z-index: 4;
}
.slider_item.next_next_center_slide_minus {
   transform: translateX(100px);
   z-index: 3;
}
.slider_item.next_next_center_slide_plus {
   transform: translateX(-100px);
   z-index: 3;
}
.slider_button {
   position: absolute;
   border-radius: 12px;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   height: 40px;
   width: 40px;
   font-size: 0;
   transition: all .3s linear;
   cursor: pointer;
   background: #00000099;
}
.slider_button:hover {
   border: 1px solid #FFF;
   transition: all .3s linear;
}
.slider_button_left {
   left: calc(50% - 23px);
   transform: translateX(-50%);
   bottom: 150px;
   background: url(../../images/arrow_left.svg) center no-repeat !important;
   background-size: 50% !important;
}
.slider_button_right {
   right: calc(50% - 63px);
   transform: translateX(-50%);
   bottom: 150px;
   background: url(../../images/arrow_right.svg) center no-repeat !important;
   background-size: 50% !important;
}
.slider_cart_register_button {
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translateX(-50%);
}
/*    End slider carts ----------------------------------------*/
/*---------- Agenda Section  -------------------------------------------------------*/
.agenda_section {
   background: #000000;
   padding-top: 70px;
   padding-bottom: 100px;
   position: relative;
}
.agenda_section_all_content_wrapper {}
.agenda_section_content_block {
   text-align: center;
   max-width: 1000px;
   margin: 80px auto 100px;
   padding: 0 40px;
}
.agenda_content_block_top_text {
   font-size: 16px;
   font-weight: 400;
   line-height: 24px;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: var(--primary_color, #00FFCB);
   margin-bottom: 16px;
}
.agenda_section_content_block h2 {
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   position: relative;
   z-index: 1;
   margin-top: 10px;
   margin-bottom: 25px;
}
.agenda_content_block_text {
   font-size: 18px;
   font-weight: 400;
   line-height: 32px;
   text-align: center;
   color: #FFF;
   max-width: 950px;
   margin: 0 auto;
   padding: 0 16px;
}
.agenda_sessions {
   display: flex;
   max-width: 1600px;
   justify-content: space-between;
   width: 100%;
   margin: 0 auto;
   gap: 24px;
   align-items: start;
   padding: 0 40px;
   overflow-y: hidden;
}
.agenda_sessions_nav {
   width: 37.5%;
   align-items: start;
   padding: 16px;
   background: var(--adgenda_content_and_nav_back, #000F0C);
   border: 1px solid var(--adgenda_content_and_nav_border, #002C23);
   border-radius: 16px;
   max-height: 90vh;
   overflow: auto;
}
.agenda_sessions_nav::-webkit-scrollbar {
   width: 6px;
   background: transparent;
}
.agenda_sessions_nav::-webkit-scrollbar-track {
   background: #001e1867;
   margin: 15px 0;
   border-radius: 20px;
   overflow: hidden;
}
.agenda_sessions_nav::-webkit-scrollbar-thumb {
   background: #001e18a9;
   border-radius: 20px;
}
.agenda_sessions_nav_item {
   padding: 16px;
   border-radius: 8px;
   cursor: pointer;
   border: 1px solid transparent;
   opacity: 0.6;
}
.agenda_sessions_nav_item:hover {
   opacity: 1;
}
.agenda_sessions_nav_item.active {
   border: 1px solid var(--adgenda_content_and_nav_border2, #00382D);
   background: var(--adgenda_content_and_nav_back2, #001D17);
   opacity: 1;
}
.agenda_nav_item_row1 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 5px;
}
.item_row1_session_number {
   font-weight: 700;
   font-size: 16px;
   line-height: 27px;
   color: #FFFFFF;
}
.item_row1_session_time {
   font-weight: 400;
   font-size: 14px;
   line-height: 22.5px;
   color: var(--primary_color, #00FFCB);
}
.agenda_nav_item_row2 {
   font-weight: 400;
   font-size: 14px;
   line-height: 22.5px;
   color: #FFFFFF;
}
.agenda_stay_tuned_block {
   min-height: 900px;
   width: 100%;
   position: relative;
}
.agenda_stay_tuned_block span {
   display: inline-block;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   text-transform: uppercase;
   font-weight: 400;
   font-size: 20px;
   letter-spacing: 6px;
   opacity: 0.6;
}
.agenda_sessions_content {
   width: 60%;
   padding: 32px;
   background: var(--adgenda_content_and_nav_back, #000F0C);
   border: 1px solid var(--adgenda_content_and_nav_border, #002C23);
   border-radius: 12px;
}
.agenda_sessions_content::-webkit-scrollbar {
   width: 6px;
   background: transparent;
}
.agenda_sessions_content::-webkit-scrollbar-track {
   background: transparent;
}
.agenda_sessions_content::-webkit-scrollbar-thumb {
   background: transparent;
   border-radius: 3px;
}
.agenda_session_content {
   display: none;
}
.agenda_session_content.active {
   display: block;
}
.agenda_session_content_panel_type {
   margin-bottom: 20px;
   display: flex;
   gap: 16px;
   align-items: center;
}
.panel_type_time {
   display: inline-block;
   padding: 4px 12px;
   background: var(--primary_color, #00FFCB);
   color: #000000;
   font-weight: 600;
   font-size: 14px;
   border-radius: 8px;
}
.panel_type_name {
   text-transform: uppercase;
   color: var(--primary_color, #00FFCB);
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 3px;
}
.sessions_content_top_content {
   padding-bottom: 24px;
   border-bottom: 1px solid var(--adgenda_content_and_nav_border2, #00FFCB80);
   margin-bottom: 20px;
}
.sessions_content_title {
   font-weight: 700;
   font-size: 36px;
   line-height: 49px;
   color: #FFFFFF;
   margin-bottom: 20px;
}
.sessions_content_top_content ul {
   padding-left: 25px;
}
.sessions_content_top_content li {
   font-weight: 400;
   font-size: 18px;
   line-height: 28px;
   color: #FFFFFF;
   margin-bottom: 8px;
}
.sessions_content_top_content div:not(:first-child) {
   font-weight: 400;
   font-size: 18px;
   line-height: 28px;
   color: #FFFFFF;
   margin-bottom: 16px;
}
.sessions_content_product {
   padding: 30px 0;
}
.sessions_content_product_title {
   font-weight: 400;
   font-size: 16px;
   line-height: 27px;
   color: var(--primary_color, #00FFCB);
   margin-bottom: 25px;
}
.sessions_content_product_logos {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   justify-content: start;
   margin-bottom: 25px;
}
.sessions_content_product_logos a {
   display: block;
   width: 48%;
}
.sessions_content_product_description {
   font-weight: 400;
   font-size: 18px;
   line-height: 32px;
   color: #FFFFFF;
   margin-bottom: 16px;
}
.sessions_content_product_screenshots {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   justify-content: start;
   margin-bottom: 25px;
}
.sessions_content_product_screenshot {
   width: 48%;
}
.sessions_content_presener {
   padding-bottom: 50px;
   border-bottom: 1px solid var(--adgenda_content_and_nav_border2, #00FFCB80);
   margin-bottom: 4vh;
   padding-top: 10px;
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
}
.presener_block {}
.presener_block_person_work_name_content {
   padding: 15px 0;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   text-align: center;
   /* height: 180px; */
}
.presener_block_title {
   font-weight: 400;
   font-size: 16px;
   line-height: 27px;
   color: var(--primary_color, #00FFCB);
   margin-bottom: 25px;
}
.presener_block_person {
   max-width: 240px;
}
.presener_block_person_photo {
   width: 100%;
   border-radius: 8px;
   overflow: hidden;
   background: var(--adgenda_content_and_nav_back2, #001D17);
   border: 1px solid var(--adgenda_content_and_nav_border2, #00382D)
}
/* .presener_block_person_photo img {
   height: 100%;
} */
.presener_block_person_work_title {
   padding-top: 20px;
   font-weight: 400;
   font-size: 18px;
   line-height: 32px;
   color: var(--primary_color, #00FFCB);
}
.presener_block_person_work_name {
   text-align: center;
   padding-top: 20px;
   font-weight: 700;
   font-size: 27px;
   line-height: 40px;
   color: #FFFFFF;
}
/* speackers block */
.about_speacker {
   font-weight: 400;
   font-size: 18px;
   line-height: 28px;
   color: #FFFFFF;
   margin-bottom: 30px;
}
.speacker_block_persons {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
}
.sessions_content_speacker {
   padding-bottom: 5vh;
   border-bottom: 1px solid var(--adgenda_content_and_nav_border2, #00FFCB80);
}
.speacker_block {}
.speacker_block_person_work_name_content {
   padding: 15px 0;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   text-align: center;
   /* height: 180px; */
}
.presener_block_person_work_name_content a.btn-watch,
.speacker_block_person_work_name_content a.btn-watch {
   position: relative;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   position: relative;
   padding: 8px 16px;
   border-radius: 8px;
   background: #000;
   right: 0;
   bottom: 0;
   font-size: 14px;
   line-height: 16px;
   backdrop-filter: blur(40px);
   transition: all 0.3s linear;
}
.presener_block_person_work_name_content a.btn-watch:hover,
.speacker_block_person_work_name_content a.btn-watch:hover {
   border: 1px solid #FFFFFF;
   color: #FFFFFF;
}
.presener_block_person_work_name_content .book-btn,
.speacker_block_person_work_name_content .book-btn {
   margin-top: 25px;
}
.speacker_block_title {
   font-weight: 400;
   font-size: 16px;
   line-height: 27px;
   color: var(--primary_color, #00FFCB);
   margin-bottom: 25px;
}
.speacker_block_person {
   max-width: 240px;
}
.speacker_block_person_photo {
   width: 100%;
   border-radius: 8px;
   overflow: hidden;
   background: var(--adgenda_content_and_nav_back2, #001D17);
   border: 1px solid var(--adgenda_content_and_nav_border2, #00382D)
}
/* .speacker_block_person_photo img {
   height: 100%;
} */
.speacker_block_person_work_title {
   padding-top: 20px;
   font-weight: 400;
   font-size: 18px;
   line-height: 32px;
   color: var(--primary_color, #00FFCB);
}
.speacker_block_person_work_name {
   text-align: center;
   padding-top: 20px;
   font-weight: 700;
   font-size: 27px;
   line-height: 40px;
   color: #FFFFFF;
}
/*End speackers block */
.question_form_register_popup,
.thank_question_popup,
.question_form_popup {
   z-index: 99999;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: #FFFFFF0F;
   border: 1px solid #FFFFFF1F;
   max-width: 400px;
   width: 80%;
   border-radius: 24px;
   padding: 24px;
   text-align: center;
   backdrop-filter: blur(40px);
}
.thank_question_popup .question_form_register_popup_text {
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   margin-bottom: 30px;
}
.question_form_register_popup_title,
.submit_question_form_title {
   text-align: center;
   font-weight: 600;
   font-size: 36px;
   line-height: 50px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
}
.question_form_register_popup_text,
.submit_question_form_subtitle {
   text-align: center;
   font-weight: 400;
   font-size: 16px;
   line-height: 27px;
   margin-bottom: 15px;
}
.question_form_popup textarea {
   background: #00000099;
   border: 1px solid #808080;
   width: 100%;
   resize: none;
   border-radius: 16px;
   margin-bottom: 25px;
   display: inline-block;
   padding-left: 10px;
   color: #FFF;
   line-height: 20px;
   height: 80px;
}
/* scrollbar */
.question_form_popup textarea::-webkit-scrollbar {
   width: 6px;
   background: #4a2e2e;
}
.question_form_popup textarea::-webkit-scrollbar-track {
   background: #030202;
}
.question_form_popup textarea::-webkit-scrollbar-thumb {
   background: #3a2323;
   border-radius: 3px;
}
/* button style */
.question_form_popup form button {
   cursor: pointer;
   border: 1px solid var(--primary_color, #00FFCB);
   padding: 12px;
   border-radius: 16px;
   background: linear-gradient(96.46deg, var(--gradient_button_collor1, #00FFCB) 0%, var(--gradient_button_collor2, #00AEBB 100%));
   color: #FFFFFF;
   transition: all 0.4s ease-out;
   box-sizing: border-box;
   font-weight: 600;
   letter-spacing: 0.16rem;
   font-size: 16px;
   text-transform: uppercase;
   white-space: nowrap;
}
.question_form_popup form button:hover {
   background: linear-gradient(96.46deg, var(--gradient_button_collor2, #00AEBB 100%) 0%, var(--gradient_button_collor1, #00FFCB) 100%);
   border: 1px solid #FFFFFF52;
   box-shadow: 0px 0px 16px 0px var(--primary_color, #00FFCB);
   transition: all 0.4s ease-out;
   box-sizing: border-box;
}
.question_form_popup form button:focus {
   background: linear-gradient(96.46deg, var(--gradient_button_collor2, #00AEBB 100%) 0%, var(--gradient_button_collor1, #00FFCB) 100%);
   box-shadow: 0px 0px 16px 0px var(--primary_color, #00FFCB);
   transition: all 0.4s ease-out;
   border: 1px solid #FFFFFF52;
}
.question_form_popup form button:active {
   background: linear-gradient(96.46deg, var(--gradient_button_collor2, #00AEBB 100%) 0%, var(--gradient_button_collor1, #00FFCB) 100%);
   box-shadow: 0px 0px 16px 0px var(--primary_color, #00FFCB);
   transition: all 0.4s ease-out;
   border: 1px solid #FFFFFF52;
}
.question_form_popup form button.disabled {
   background: #333333 !important;
   color: #FFFFFF !important;
   border: 1px solid #FFFFFF0F !important;
   opacity: 0.38 !important;
   box-shadow: unset;
}
.question_form_popup form button:disabled {
   background: #333333 !important;
   color: #FFFFFF !important;
   border: 1px solid #FFFFFF0F !important;
   opacity: 0.38 !important;
   box-shadow: unset;
}
.question_form_popup form .black_button,
.question_form_popup form button {
   width: 100%;
   margin-bottom: 10px;
   display: block;
   padding: 8px;
   border-radius: 12px;
}
/* button style */
.question_form_register_popup a {
   width: 100%;
   display: block;
   margin-bottom: 8px;
}
.questions_list {
   transition: all 0.4s ease;
}
.questions_list_collapse_button {
   transition: all 0.4s ease;
}
.agenda_section_register_bottons {
   text-align: center;
   margin-top: 60px;
}
/*----------end Agenda Section -------------------------------------------------------*/
/*---------- Book_section -------------------------------------------------------*/
.book_section {
   background:
      url('../images/_promo-background-line.svg') center center no-repeat,
      linear-gradient(180deg, #111111 0%, #111111 100%);
   text-align: center;
   padding: 120px 40px;
   margin-top: -2px;
}
.book_section_container {
   padding: 0 40px;
   text-align: center;
}
.book_section_title {
   text-align: center;
   color: #FFF;
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   text-align: center;
   margin-bottom: 24px;
}
.book_section_image {
   max-width: 740px;
   overflow: hidden;
   margin: 0 auto 24px;
}
.book_section_image img {
   height: 100%;
}
.book_section_description {
   text-align: center;
   color: #FFF;
   font-weight: 600;
   font-size: 18px;
   line-height: 31.5px;
   text-align: center;
   margin-bottom: 24px;
   max-width: 720px;
   margin: 0 auto 34px;
}
.black_button {
   margin-bottom: 16px;
}
.thank_question_popup .black_button {
   width: 100%;
   display: block;
   margin-bottom: 8px;
}
/* slider  */
.slider-wrapper {
   max-width: 110vw;
   margin: 0 -140px;
   padding: 40px 0;
}
.slick-slider {
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
   padding: 0 0px 120px;
}
.slider-item {
   background: #FFFFFF03;
   border: 1px solid #FFFFFF1F;
   border-radius: 16px;
   padding: 32px 32px 23px 32px;
   margin: 10px;
   backdrop-filter: blur(15px);
   text-align: center;
   height: 360px;
   display: flex !important;
   flex-direction: column;
   justify-content: space-between;
}
.slick-center {
   opacity: 1;
   background: #FFFFFF0F;
   border: 1px solid #FFFFFF1F
}
.slick-prev,
.slick-next {
   position: absolute;
   top: 80%;
   background: #00000099 !important;
   border-radius: 12px;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   width: 40px;
   height: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
   cursor: pointer;
   z-index: 10;
   margin: 0 5px;
   transition: all 0.3s ease;
}
.slick-prev:hover,
.slick-next:hover {
   border: 1px solid #FFFFFF;
   transition: all 0.3s ease;
}
.slick-prev {
   left: 49.7%;
   transform: translateX(-99%);
}
.slick-next {
   transform: translateX(-1%);
   left: 50.3%;
}
.slider-item_text {
   text-align: left;
   color: #FFF;
   font-weight: 400;
   font-style: italic;
   font-size: 18px;
   line-height: 31.5px;
   margin-bottom: 23px;
   overflow: hidden;
   max-height: 250px;
}
.slider_item_author {
   text-align: right;
   color: #FFD5BA;
   font-weight: 600;
   font-size: 14px;
   line-height: 22.5px;
}
/* slider  */
/*----------end Book_section -------------------------------------------------------*/
/*---------- question_block -------------------------------------------------------*/
/* _questions-background-line.svg */
/* .question_section {
   background:
      url('../images/_questions-background-line.svg') center center no-repeat,
      linear-gradient(180deg, #111111 0%, #000000 100%);
   text-align: center;
   padding: 120px 0;
   margin-top: -2px;
} */
.orange_button {}
.question_section_container {
   text-align: start;
   max-width: 1020px;
   margin: 0 auto;
   position: relative;
   padding-top: 30px;
}
.question_section_title {
   text-align: start;
   color: #FFF;
   font-weight: 700;
   font-size: 27px;
   line-height: 40px;
   margin-bottom: 24px;
}
.question_section_sub_title {
   text-align: start;
   color: #FFF;
   font-weight: 400;
   font-size: 18px;
   line-height: 36px;
   margin-bottom: 32px;
}
.questions_list {
   max-width: 900px;
   padding-top: 60px;
   padding-bottom: 60px;
   overflow: hidden;
}
.questions_list_without_padding {
   padding-top: 0px;
}
.questions_list_item {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: start;
   padding: 16px;
   border: 1px solid var(--adgenda_content_and_nav_border2, #FFFFFF3D);
   background: var(--adgenda_content_and_nav_back2, #0D0D0D);
   gap: 15px;
   border-radius: 8px;
   margin-bottom: 8px;
   transition: all 0.4s ease;
}
.questions_list_item_text {
   color: #FFF;
   font-weight: 400;
   font-size: 18px;
   line-height: 31.5px;
   text-align: start;
   overflow: hidden;
}
.questions_list_item_like {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #00000099;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   padding: 5px 12px 5px 8px;
   gap: 10px;
   border-radius: 8px;
}
.questions_list_item_like_opasity {
   opacity: 0.5;
}
.image_like {
   height: 16px;
   cursor: pointer;
}
.image_check {
   height: 16px;
}
.like_count {
   color: #FFF;
   font-weight: 600;
   font-size: 14px;
   line-height: 22.5px;
}
.questions_list_collapse_button {
   position: absolute;
   bottom: 1px;
   left: 50%;
   transform: translateX(-50%);
   background: #00000099;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   backdrop-filter: blur(40px);
   padding: 10px 16px;
   border-radius: 12px;
   cursor: pointer;
}
.questions_list_collapse_button.active svg {
   transform: rotateX(180deg);
}
.spinner {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border: 4px solid rgba(0, 0, 0, 0.1);
   border-left-color: #ffffffac;
   border-radius: 50%;
   width: 40px;
   height: 40px;
   animation: spin 1s linear infinite;
   z-index: 50;
}
.spinner_cover {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100vw;
   height: 100vh;
   background-color: #0000007c;
}
@keyframes spin {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(360deg);
   }
}
.no-scroll {
   overflow: hidden !important;
}
.question_form_register_popup {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 99999;
}
.questions_list::-webkit-scrollbar {
   display: none;
   /*  Chrome, Safari, Opera */
}
.questions_list {
   scrollbar-width: none;
}
/*----------end question block -------------------------------------------------------*/
/*----------Recap Section -------------------------------------------------------*/
.recap_section {
   background: #000000;
   padding-top: 70px;
   padding-bottom: 100px;
   position: relative;
}
.recap_section_content_block {
   text-align: center;
   max-width: 1000px;
   margin: 80px auto 100px;
}
.recap_section_content_block h2 {
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   position: relative;
   z-index: 1;
   margin-top: 10px;
   margin-bottom: 25px;
}
.recap_content_block_top_text {
   font-size: 16px;
   font-weight: 400;
   line-height: 24px;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: var(--primary_color, #00FFCB);
   margin-bottom: 16px;
}
.recap_content_block_text {
   font-size: 18px;
   font-weight: 400;
   line-height: 32px;
   text-align: center;
   color: #FFF;
   max-width: 950px;
   margin: 0 auto;
   padding: 0 16px;
}
.recap_section_container {
   max-width: 1240px;
   padding: 0 40px;
   margin: 0 auto;
}
.recap_videos {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
   align-items: start;
}
.recap_video_item {
   max-width: 48%;
   width: 100%;
}
.recap_video_trumbnail_wrapper {
   border: 1px solid var(--adgenda_content_and_nav_border, #00352B);
   background: var(--adgenda_content_and_nav_back, #000F0C);
   border-radius: 12px;
   padding: 12px;
   margin-bottom: 10px;
}
.recap_video_trumbnail {
   width: 100%;
   height: 100%;
   position: relative;
   cursor: pointer;
   border-radius: 8px;
}
.recap_video_trumbnail img {
   width: 100%;
}
.recap_video_item_play_button {
   background: #FFFFFF;
   padding: 15px 20px;
   border-radius: 16px;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;
}
.recap_video_item_play_button svg path {
   fill: var(--primary_color, #007F65);
}
.recap_video_item_padial_gradient {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   height: 90%;
   aspect-ratio: 1 / 1;
   border-radius: 50%;
   background: radial-gradient(circle,
         rgba(0, 0, 0, 0.9) 0%,
         rgba(0, 0, 0, 0.7) 30%,
         rgba(0, 0, 0, 0.5) 50%,
         rgba(0, 0, 0, 0.3) 70%,
         rgba(0, 0, 0, 0.1) 85%,
         rgba(0, 0, 0, 0) 100%);
   background-size: 180% 180%;
   filter: blur(40px);
}
.recap_video_item_textdescription {
   font-weight: 400;
   font-size: 18px;
   line-height: 32px;
   text-align: center;
}
.recap_section_button {
   padding-top: 7vh;
   height: 50px;
   width: 100%;
   text-align: center;
}
.orange_button {}
/*---------- End Recap Section -------------------------------------------------------*/
/* recodings popup */
.recordings_popup {
   max-width: calc(100% - 30px);
   width: 1200px;
   border-radius: 24px;
   border: 1px solid #FFFFFF1F;
   backdrop-filter: blur(40px);
   background: #FFFFFF0F;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 99999999999;
   padding: 24px;
   text-align: center;
   display: none;
   max-height: 98vh;
   overflow-y: auto;
}
.recordings_popup.active {
   display: block;
}
.show_video_popup {
   max-width: calc(100% - 30px);
   width: 1200px;
   border-radius: 8px;
   border: 1px solid #FFFFFF1F;
   backdrop-filter: blur(40px);
   background: #FFFFFF0F;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 99999;
   padding: 16px;
   text-align: center;
   display: none;
   aspect-ratio: 16 / 9;
   max-height: 85vh;
}
.show_video_popup.active {
   display: block;
}
.video_close_button {
   position: absolute;
   z-index: 1;
   top: -40px;
   right: 0;
   padding: 3px;
   background: rgba(0, 0, 0, 0.6);
   border: 1px solid rgba(255, 255, 255, 0.4);
   border-radius: 8px;
   color: white;
   transition: all 0.5s ease;
   perspective: 50px;
}
.video_close_button:hover {
   border: 1px solid rgba(255, 255, 255, 1);
   transition: all 0.5s ease;
}
.video_close_button:hover svg {
   transform: rotateY(180deg);
   cursor: pointer;
   transition: all 0.4s ease;
}
.video_close_button svg {
   transition: all 0.4s ease;
}
.recordings_popup_title {
   font-weight: 600;
   font-size: 36px;
   line-height: 49px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, var(--bright_title_color, #0092FB)), 0 0 64px var(--bright_title_color2, var(--bright_title_color2, #00C69E));
   position: relative;
   z-index: 1;
   margin-bottom: 25px;
   text-align: start;
}
.recordings_popup_session_list {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   justify-content: start;
}
.recordings_popup_session {
   width: 49.5%;
   background: rgba(0, 0, 0, 0.64);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 12px;
   padding: 12px 16px;
}
.recordings_popup_session_title {
   font-weight: 700;
   font-size: 18px;
   line-height: 27px;
   text-align: start;
   margin-bottom: 5px;
}
.recordings_popup_session_presrnter {
   font-weight: 400;
   font-size: 14px;
   line-height: 22px;
   text-align: start;
   margin-bottom: 10px;
}
.close_recording_popup {
   position: absolute;
   top: 16px;
   right: 16px;
   z-index: 1;
   padding: 10px;
   cursor: pointer;
   transition: all 0.4s ease;
}
.close_recording_popup:hover svg {
   transform: rotateY(180deg);
   transition: all 0.8s ease;
   opacity: 0.5;
}
.close_recording_popup svg {
   transition: all 0.8s ease;
}
.recordings_popup_session_buttons_block {
   display: flex;
   justify-content: start;
   gap: 8px;
}
.recordings_popup .orange_gradient_button {
   text-transform: initial;
   display: inline-block;
   letter-spacing: 2px;
   padding: 6px 10px;
   border-radius: 8px;
   font-size: 14px;
}
.recordings_popup .black_button svg,
.recordings_popup .orange_gradient_button svg {
   margin-right: 5px;
}
.recordings_popup .black_button {
   text-transform: initial;
   display: inline-block;
   margin-bottom: 0;
   letter-spacing: 2px;
   padding: 6px 10px;
   border-radius: 8px;
   font-size: 14px;
}
.recording_session_buttons_block {
   display: flex;
   justify-content: start;
   gap: 8px;
   flex-wrap: wrap;
}
.recording_session_buttons_block .orange_gradient_button {
   text-transform: initial;
   display: inline-block;
   letter-spacing: 2px;
   padding: 6px 10px;
   border-radius: 8px;
   font-size: 14px;
}
.recording_session_buttons_block .black_button svg,
.recording_session_buttons_block .orange_gradient_button svg {
   margin-right: 5px;
}
.recording_session_buttons_block .black_button {
   text-transform: initial;
   display: inline-block;
   margin-bottom: 0;
   letter-spacing: 2px;
   padding: 6px 10px;
   border-radius: 8px;
   font-size: 14px;
}
/* end recodings popup */
/*----------slack_section  -------------------------------------------------------*/
.slack_section {
   background: #000000;
   overflow: hidden;
   padding: 50px 0 200px;
}
.slack_section_container {
   padding: 0 40px;
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
}
.slack_section_container img {
   max-width: 200px;
}
.slack_section_container svg {
   width: 20px;
   height: 20px;
   margin-right: 5px;
}
.slack_section_title {
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   position: relative;
   z-index: 1;
   margin-top: 10px;
   margin-bottom: 25px;
   text-align: center;
}
.slack_section_text {
   font-weight: 400;
   font-size: 18px;
   line-height: 32px;
   color: #FFFFFF;
   margin: 0 auto 40px;
   text-align: center;
   max-width: 720px;
}
.slack_section .black_button {
   background: #00000099;
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   backdrop-filter: blur(40px);
}
.slack_section .black_button:hover {
   border: 1px solid #FFFFFF;
}
/*---------- End slack_section  -------------------------------------------------------*/
/*---------- sponsors_section  -------------------------------------------------------*/
.button-container {
   text-align: center;
}
.sponsors_section {
   overflow: hidden;
   position: relative;
   padding: 80px 40px 150px 40px;
   background: #000000;
}
.sponsors_section .headeng_botton_register {
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   bottom: 100px;
}
.sponsors_section_top_content {
   margin: 0 auto;
   max-width: 800px;
   padding: 0 15px;
   position: relative;
   bottom: 60px;
}
.sponsors_section_top_content_top_text {
   font-size: 16px;
   font-weight: 600;
   line-height: 24px;
   letter-spacing: 4px;
   color: var(--primary_color, #00FFCB);
   text-align: center;
   text-transform: uppercase;
}
.sponsors_section_top_content_title {
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   position: relative;
   z-index: 1;
   margin-top: 10px;
   margin-bottom: 25px;
   text-align: center;
}
.sponsors_section_top_content_text {
   font-size: 18px;
   font-weight: 400;
   line-height: 28px;
   text-align: center;
   color: #FFF;
   margin-bottom: 40px;
}
.sponsors_section_logos_block {
   margin: 0 auto;
   width: 100%;
   max-width: 990px;
   margin-bottom: 50px;
   border-radius: 16px;
   background: var(--adgenda_content_and_nav_back, #000F0C);
   backdrop-filter: blur(40px);
   border: 1px solid var(--adgenda_content_and_nav_border, #002C23);
   padding: 40px;
}
.logos_block_silver_title,
.logos_block_gold_title,
.logos_block_platinum_title {
   text-align: center;
   margin-bottom: 30px;
   font-size: 18px;
   font-weight: 600;
   line-height: 28px;
   letter-spacing: 6px;
   color: var(--primary_color, #00FFCB);
   text-transform: uppercase;
}
.logos_block_silver_images,
.logos_block_gold_images,
.logos_block_platinum_images {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 15px;
   margin-bottom: 55px;
}
.logos_block_silver_images {
   margin-bottom: 0px;
}
.logos_block_platinum_images img {
   width: 100%;
}
.logos_block_platinum_images img:hover {
   opacity: 0.7;
}
.logos_block_gold_images {
   max-width: 70%;
}
.logos_block_gold_images img {
   max-width: 100%;
}
.logos_block_gold_images img:hover {
   opacity: 0.7;
}
.logos_block_silver_images a {
   max-width: 50%;
}
.logos_block_silver_images img {
   max-width: 100%;
}
.logos_block_silver_images img:hover {
   opacity: 0.7;
}
/*---------- End sponsors_section  -------------------------------------------------------*/
/*   speakers section ------------------------------------------------------*/
.agenda-section {
   overflow: hidden;
   padding: 80px 0 40px;
   background-color: #000000;
   margin-bottom: -2px;
}
.text_block {
   margin: 0 auto;
   max-width: 1000px;
   text-align: center;
}
.text_block>div:first-child {
   font-size: 16px;
   font-weight: 400;
   line-height: 24px;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: var(--primary_color, #00FFCB);
   margin-bottom: 16px;
}
.text_block>h2 {
   font-weight: 600;
   font-size: 54px;
   line-height: 72px;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   position: relative;
   z-index: 1;
   margin-top: 10px;
   margin-bottom: 25px;
   text-align: center;
}
.text_block>div:last-child {
   font-size: 18px;
   font-weight: 400;
   line-height: 32px;
   text-align: center;
   color: #FFF;
   max-width: 950px;
   margin: 0 auto;
   padding: 0 16px;
}
.text_block_wrapper {
   margin-bottom: 40px;
   padding: 0 30px;
}
.player {
   width: 320px;
   position: relative;
   text-align: center;
   margin-bottom: 40px;
}
.player__photo {
   width: 320px;
   height: 320px;
   overflow: hidden;
   position: relative;
   border-radius: 8px;
   border: 1px solid var(--adgenda_content_and_nav_border, #002C23)
}
.players-item .player__photo {
   background: var(--adgenda_content_and_nav_back2, #001D17);
}
.players-item a.btn-watch {
   border: 1px solid var(--header_skils_list_button_background, #00FFCB66);
   position: relative;
   padding: 8px 16px;
   border-radius: 8px;
   background: #000;
   right: 0;
   bottom: 0;
   font-size: 14px;
   line-height: 16px;
   backdrop-filter: blur(40px);
   transition: all 0.3s linear;
}
.players-item a.btn-watch:hover {
   border: 1px solid #FFFFFF;
   transition: all 0.3s linear;
   color: #FFFFFF;
}
.player__photo_ai_agent img {
   z-index: 1;
}
.player__photo_ai_agent_background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.player__photo img {
   width: auto;
   height: 100%;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   max-width: unset;
}
.player__info {
   height: 225px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.players-item {
   display: flex;
   flex-wrap: wrap;
   gap: 25px;
   justify-content: center;
}
.player__info .logo-block {
   position: absolute;
   max-height: 80px;
   height: 80px;
   right: 15px;
   top: 403px;
}
.caption-regular p {
   font-size: 18px;
   font-weight: 600;
   line-height: 32px;
   text-align: center;
   color: var(--primary_color, #00FFCB);
   padding-top: 10px;
   margin-bottom: 0;
   height: fit-content;
   overflow: hidden;
   padding-bottom: 5px;
}
.player__info .dynamic-title {
   font-size: 36px;
   font-weight: 700;
   line-height: 49px;
   text-align: center;
   margin-bottom: 30px;
}
.player__info .book-btn {
   font-size: 20px;
}
.debaters-number-4 {
   width: 92%;
}
/* ---  end speakers section ------------------------------------------------------*/
/*---------- bottom_section -------------------------------------------------------*/
.bottom_section {
   position: relative;
   overflow: hidden;
   width: 100%;
   height: auto;
   text-align: center;
   padding: 280px 40px;
   position: relative;
}
.decore_shadow_block {
   position: absolute;
   z-index: 1;
   background: linear-gradient(to bottom, #000000, transparent);
   width: 100%;
   height: 150px;
   top: 0;
   left: 0;
}
.bottom_section_background_video {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
}
.bottom_section_content {
   margin-bottom: 50px;
   position: relative;
}
.bottom_section_padial_shape {
   position: absolute;
   width: 960px;
   max-width: 100%;
   height: 150%;
   border-radius: 50%;
   opacity: 0.8;
   background: #2e0000a1;
   filter: blur(64px);
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   z-index: -1;
}
.bottom_section_content h2 {
   text-align: center;
   color: #FFFAF6;
   text-shadow: 0 0 8px #FFFFFF, 0 0 24px var(--bright_title_color, #0092FB), 0 0 64px var(--bright_title_color2, #00C69E);
   font-weight: 600;
   font-size: 45px;
   line-height: 63px;
   text-align: center;
}
.bottom_section_content div:last-of-type,
.bottom_section_content div:first-of-type {
   font-weight: 400;
   font-size: 22.5px;
   line-height: 36px;
   text-align: center;
}
.white_button {}
/*----------end bottom_section -------------------------------------------------------*/
/*  footer  */
.hse-footer {
   padding: 2rem 25px 2rem;
   background: transparent;
   position: absolute;
   bottom: 0;
   width: 100%;
}
button.rcw-launcher {
   background-color: transparent !important;
}
.bg-popup {
   -webkit-transition: all 0.1s ease;
   transition: all 0.1s ease;
}
.bg-popup.active {
   opacity: 1;
   background: rgba(0, 0, 0, 0.9);
}
.container-default {
   max-width: 1700px;
}
.main_container {
   max-width: 1720px;
   margin: 0 auto;
   padding-left: 60px;
   padding-right: 60px;
}
footer .container-fluid.container-default>.row:first-child {
   display: none;
}
.hse-footer {
   padding: 2rem 25px 2rem;
   background: transparent;
}
.decore_shadow_bottom_block {
   background: linear-gradient(to top, #0000009c, transparent);
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 240px;
   z-index: 1;
   pointer-events: none;
}
.hse-footer .footer-bottom:before {
   background: var(--primary_color, #00FFCB);
   content: "";
   display: block;
   height: 2px;
   position: relative;
   top: 0;
   left: 0;
   right: 0;
   width: 100%;
   margin: 1.2rem 0 1.2rem 9px;
}
.copyright.body-2>p>span {
   color: #FFFFFF !important;
   font-size: 14px;
   font-weight: 400;
}
.hse-footer ul li a {
   color: #FFFFFF;
   font-size: 14px;
   line-height: 22px;
   font-weight: 400;
}
footer .social-block>p {
   color: #FFFFFF;
   font-weight: 600;
   font-size: 14px;
   line-height: 22px;
}
.icon-twitterx:before {
   content: '\e999';
   color: #FFFFFF !important;
}
.icon-twitterx:before:hover {
   content: '\e999';
   color: #f97750 !important;
}
.icon-linkedin-1:before {
   content: '\e998';
   color: #FFFFFF !important;
}
.icon-linkedin-1:before:hover {
   content: '\e998';
   color: #f97750 !important;
}
.icon-youtube-play:before {
   content: '\f16a';
   color: #FFFFFF !important;
   font-size: 26px !important;
   position: relative;
   bottom: 1px;
}
.icon-youtube-play:before:hover {
   content: '\f16a';
   color: #FFA68B !important;
}
/* End footer  */
/* responsive  ---------------------------------------------------------------------------*/
@media(max-width:1450px) {}
@media(max-width:1200px) {
   .header_logo {
      max-height: 16px;
   }
   .header_nav_item {
      font-size: 16px;
      line-height: 22px;
      padding: 5px 30px;
   }
   .header_register_button {
      font-size: 14px;
      padding: 8px 15px;
      border-radius: 8px;
   }
   .header_nav.scrolled {
      border-radius: 8px;
   }
}
@media(max-width:1100px) {
   header.scrolled {
      position: fixed;
      top: 0;
      height: 136px;
      background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
      backdrop-filter: blur(4px);
      padding: 0 16px;
   }
   .header_nav.scrolled {
      top: 90px;
   }
   header.scrolled .header_container {
      padding: 0 20px;
      margin: 0 auto;
      height: 100%;
   }
   .header_container {
      margin: 0 auto;
   }
   header.scrolled .left_header_logo_container {
      left: 0px;
   }
   .header_register_button.scrolled {
      top: 22px;
      right: 0px;
   }
}
@media(max-width:900px) {
   .recordings_popup_session {
      width: 100%;
   }
   .recap_content_block_text,
   .sponsors_section_top_content_text {
      margin-bottom: 0px;
   }
   .sponsors_section_logos_block {
      padding: 24px;
   }
   .agenda_sessions_nav::-webkit-scrollbar {
      display: none;
      /*  Chrome, Safari, Opera */
   }
   .agenda_sessions_nav_item {
      border: 1px solid var(--adgenda_content_and_nav_border, #002C23);
      flex: 0 0 47%;
      flex-shrink: 0;
   }
   .agenda_sessions {
      flex-wrap: wrap;
   }
   .agenda_sessions_nav {
      width: 100%;
      display: flex;
      overflow-x: auto;
      gap: 8px;
      align-items: stretch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      background: var(--almost_transparent_background, #000F0C);
      backdrop-filter: blur(14px);
   }
   .agenda_sessions_content {
      width: 100%;
   }
}
@media(max-width:767px) {
   .slack_section {
      padding: 50px 0 150px;
   }
   .agenda-section {
      padding: 80px 0 0px;
   }
   .player__info .dynamic-title {
      font-size: 30px;
      font-weight: 700;
      line-height: 40px;
   }
   .player__photo {
      width: 250px;
      height: 250px;
   }
   .player {
      width: 250px;
   }
   .recap_video_item_play_button {
      padding: 10px 16px;
      border-radius: 12px;
   }
   header .header_top_left_text {
      display: none;
   }
   .logos_block_silver_images a {
      max-width: 45%;
   }
   .social-block {
      justify-content: center;
   }
   .footer-bottom .custom_menu_shortcode {
      justify-content: center;
   }
   .hse-footer .copyright {
      text-align: center;
   }
   .hse-footer .menu-bottom {
      margin-bottom: 10px;
   }
   .logos_block_gold_images,
   .logos_block_platinum_images {
      margin-bottom: 35px;
   }
   .center_slide .slide-content {
      padding: 24px;
   }
   .slide-content {
      padding: 24px;
   }
   .slider_carts_section {
      padding: 0 0 200px 0;
   }
   .slider_carts_section_content_block {
      margin: 80px auto 20px;
   }
   .slider_carts {
      transform: scale(0.8);
   }
   .heading_title_content .heading_title {
      font-size: 60.75px;
      line-height: 81px;
      margin-bottom: 0;
   }
   .heading_title_content {
      margin: 0 auto 6vh;
   }
   span.heading_sub_title,
   h1.heading_sub_title {
      font-size: 36px;
      line-height: 30px;
   }
   .heading_title_content>div:not(:first-of-type) {
      font-weight: 400;
      font-size: 20.25px;
      line-height: 33.75px;
      text-align: center;
      color: #FFF;
   }
   .heading_section_text {
      line-height: 28px;
   }
}
@media(max-width:700px) {
   .recap_video_item {
      max-width: 100%;
   }
}
@media(max-width:650px) {
   .heading_section {
      height: 92vh;
   }
   .recap_section_content_block h2,
   .sponsors_section_top_content_title,
   .slack_section_title,
   .agenda_section_content_block h2 {
      font-weight: 600;
      font-size: 45px;
      line-height: 63px;
   }
   .header_nav_item.header_nav_item_width_faq {
      padding: 5px 15px;
   }
   .slider_carts_section_content_block h2 {
      font-weight: 600;
      font-size: 45px;
      line-height: 63px;
      margin-top: 10px;
      margin-bottom: 25px;
   }
   .slider_content_block_text {
      font-size: 16px;
      font-weight: 400;
      line-height: 27px;
      padding: 0;
   }
   .slider_carts_section_content_block {
      padding: 0 16px;
   }
}
@media (max-width: 605px) {
   .player {
      width: 195px;
   }
   .player__photo {
      width: 195px;
      height: 195px;
   }
   .caption-regular p {
      font-size: 14px;
      line-height: 20px;
   }
   .player__info .dynamic-title {
      /* font-size: 30px;
      line-height: 32px; */
      margin-bottom: 25px;
   }
   .player__info {
      height: 200px;
   }
}
@media(max-width:600px) {
   .sponsors_section {
      padding: 80px 16px 150px 16px;
   }
   .sponsors_section_logos_block {
      padding: 12px;
   }
   .agenda_sessions {
      padding: 0 16px;
   }
   .agenda_sessions_nav_item {
      padding: 8.25px;
   }
   .agenda_nav_item_row1 {
      flex-wrap: wrap-reverse;
      justify-content: start;
   }
   .item_row1_session_number {
      width: 100%;
   }
   .item_row1_session_time {
      width: 100%;
   }
   .agenda_sessions_nav_item {
      flex: 0 0 70%;
   }
}
@media(max-width:540px) {
   .heading_register_button_block .orange_gradient_button {
      font-size: 16px;
      width: 100%;
      display: inline-block;
      padding: 12px;
   }
   .register_button_block_title {
      padding-bottom: 0px;
   }
   .header_nav_item {
      padding: 5px 15px;
   }
   .heading_title_content .heading_title {
      font-size: 36px;
      line-height: 49.5px;
   }
   span.heading_sub_title,
   h1.heading_sub_title {
      font-size: 22.5px;
      line-height: 28px;
   }
   .heading_title_content>div:not(:first-of-type) {
      font-weight: 400;
      font-size: 15.75px;
      line-height: 27px;
   }
   .heading_section_text {
      line-height: 24px;
   }
   .heading_title_content {
      margin: 0 auto 4.2vh;
   }
   .heading_section {
      padding: 28vh 16px 80px 16px;
   }
}
@media(max-width:500px) {
   .slack_section {
      padding: 50px 0 120px;
   }
   .recap_section {
      padding-top: 20px;
   }
   .players-item a.btn-watch {
      font-size: 12px;
   }
   .player__info .dynamic-title {
      font-size: 20px;
      line-height: 24px;
   }
   .player {
      width: 155px;
   }
   .player__photo {
      width: 155px;
      height: 155px;
   }
   .player__info {
      height: 180px;
   }
   .presener_block_title {
      text-align: center;
   }
   .bottom_section {
      padding: 200px 40px 280px;
   }
   .recap_content_block_top_text,
   .sponsors_section_top_content_top_text {
      font-size: 14px;
      font-weight: 600;
      line-height: 22px;
   }
   .logos_block_silver_title,
   .logos_block_gold_title,
   .logos_block_platinum_title {
      text-align: center;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: 600;
      line-height: 22px;
      letter-spacing: 4px;
      color: var(--primary_color, #00FFCB);
      text-transform: uppercase;
   }
   .recap_section_content_block h2,
   .sponsors_section_top_content_title,
   .slack_section_title,
   .agenda_section_content_block h2 {
      font-size: 36px;
      line-height: 50px;
   }
   .recap_content_block_text,
   .sponsors_section_top_content_text,
   .slack_section_text,
   .agenda_content_block_text {
      font-size: 16px;
      font-weight: 400;
      line-height: 28px;
   }
   .speacker_block_title,
   .question_section_sub_title,
   .question_section_title,
   .question_section_container {
      text-align: center;
   }
   .speacker_block_person,
   .presener_block_person {
      margin: 0 auto;
   }
   .sessions_content_product_logos {
      justify-content: center;
      gap: 8px;
   }
   .sessions_content_product_screenshots {
      justify-content: center;
      gap: 8px;
   }
   .sessions_content_product_logos a {
      width: 47%;
   }
   .sessions_content_product_screenshot {
      width: 47%;
   }
   .slider_carts_section_content_block {
      margin: 80px auto 0px;
   }
   .slider_carts_section {
      padding: 0 0 180px 0;
   }
   .slider_carts {
      transform: scale(0.65);
   }
   .header_nav_item.header_nav_item_width_faq {
      padding: 5px 10px;
   }
   .center_slide .slide-content p,
   .slide-content p {
      font-size: 24px;
      line-height: 32px;
   }
}
@media(max-width:450px) {
   .recordings_popup_session_presrnter,
   .recordings_popup_session_title {
      text-align: center;
   }
   .recordings_popup_session_buttons_block {
      justify-content: center;
   }
   .recordings_popup .orange_gradient_button,
   .recordings_popup .black_button {
      width: 49%;
      letter-spacing: 0px;
   }
}
@media(max-width:430px) {
   .sponsors_section_logos_block {
      padding: 8px;
   }
   .header_nav_item.header_nav_item_width_faq {
      padding: 5px 5px;
   }
   .header_nav_item {
      padding: 5px 12px;
   }
   .header_register_button.scrolled {
      letter-spacing: 0.1rem;
   }
   .slider_carts_section_content_block h2 {
      font-size: 36px;
      line-height: 50px;
   }
   .slider_content_block_text {
      font-size: 14px;
      line-height: 23px;
   }
   .slider_content_block_top_text {
      font-size: 14px;
      font-weight: 400;
      line-height: 22.5px;
   }
}
@media(max-width:400px) {
   .players-item a.btn-watch {
      font-size: 12px;
   }
   .player__info .dynamic-title {
      font-size: 20px;
      line-height: 24px;
   }
   .player {
      width: 140px;
   }
   .player__photo {
      width: 140px;
      height: 140px;
   }
   .player__info {
      height: 180px;
   }
}
@media(max-width:390px) {
   .register_button_block_title p {
      font-size: 16px;
      line-height: 27px;
   }
   .header_nav_item {
      padding: 5px 10px;
   }
}
@media(max-width:370px) {
   .players-item a.btn-watch {
      font-size: 12px;
   }
   .player__info .dynamic-title {
      font-size: 20px;
      line-height: 24px;
   }
   .player__info {
      height: 180px;
   }
   .players-item {
      gap: 16px;
   }
}
@media(max-width:356px) {
   .player {
      width: 130px;
   }
   .player__photo {
      width: 130px;
      height: 130px;
   }
   .player__info {
      height: 180px;
   }
   .players-item {
      gap: 12px;
   }
   .players-item a.btn-watch {
      font-size: 10px;
   }
}