@font-face {
  font-family: "Heavy";;
    src: url("../../assets/fonts/ObjectSans-Heavy.woff") format("woff");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "HeavySlanted";;
    src: url("../../assets/fonts/ObjectSans-HeavySlanted.woff") format("woff");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "Regular";;
    src: url("../../assets/fonts/ObjectSans-Regular.woff") format("woff");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "Slanted";;
    src: url("../../assets/fonts/ObjectSans-Slanted.woff") format("woff");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "Intro BlackCAPS";;
    src: url("../../assets/fonts/IntroDemo-BlackCAPS.woff2") format("woff2");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "Intro BlackInlineCAPS";;
    src: url("../../assets/fonts/IntroDemo-BlackInlineCAPS.woff2") format("woff2");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "Intro Cond-BlackCAPS";;
    src: url("../../assets/fonts/IntroDemoCond-BlackCAPS.woff2") format("woff2");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

@font-face {
  font-family: "Intro Cond-LightCAPS";;
    src: url("../../assets/fonts/IntroDemoCond-LightCAPS.woff2") format("woff2");;
    font-weight: 400;;
    font-style: normal;;
    font-display: swap;
}

* {
  list-style-type: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: 'Heavy', math, sans-serif;
}

body {
  background-color: #F7F7FA;
  overflow-x: hidden;
  box-sizing: border-box;
}

h1 {
  font-size: clamp(24px, 3vw + 1rem, 62px);
  color: white;
  max-width: 866px;
}

h2 {
  font-size: clamp(16px, 1vw + 1rem, 32px);
  color: white;
}

h3 {
  font-size: clamp(20px, 2vw + 1rem, 48px);
  text-align: center;
}

h4 {
  font-size: clamp(18px, 0.5vw + 1rem, 28px);
}

h5 {
  color: black;
  font-size: clamp(16px, 0.2vw + 1rem, 28px);
}

h6 {
  font-size: clamp(14px, 0.2vw + 1rem, 24px);
  color: #a3a3b2;
}

p, figcaption, input, textarea {
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
  font-family: 'Regular';
}

p {
  color: #e9e9e9;
}

nav, section {
  max-width: 1600px;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

header {
  justify-items: center;
  margin-bottom: 80px;
}
header nav, header section .header_background, header .header_info div {
  border-radius: 20px;
}
header nav {
  height: 64px;
  background-color: #f5f5f5;
  box-shadow: 0px 0px 20px 0px #ccc;
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  top: 24px;
  width: calc(100% - 24px);
}
header nav img {
  max-width: 180px;
  margin-top: 15px;
}
header nav .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
header nav .burger-menu span {
  width: 100%;
  height: 3px;
  background-color: #1c1c1f;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header nav .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header nav .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
header nav .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
header nav menu {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}
header nav menu li a {
  font-family: 'Regular';
  font-size: clamp(12px, 0.9vw + 0.5rem, 18px);
  color: #1c1c1f;
}
header nav menu li a:hover {
  color: #5869ff;
}
header .bm-nav {
  display: none;
}
header .bm-nav menu.nav-menu {
  display: none;
}
header section {
  padding-top: 136px;
}
header section .header_info {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin: 36px 0;
  box-sizing: border-box;
}
header section .header_info div {
  background-color: #4e4e4e;
  width: 240px;
  height: 32px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #cccccc21;
}
header section .header_background {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: linear-gradient(#2928288c), url(../../assets/img/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-height: 1200px;
  height: calc(100vh - 176px);
}
header section .header_background .header_background_left_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  padding-left: 54px;
  padding-bottom: 24px;
}
header section .header_background .header_background_left_info h2 {
  width: 640px;
  color: #e9e9e9;
}
header section .header_background .header_background_left_info button {
  background-color: #5869ff;
  color: white;
  border: none;
  padding: 20px 32px;
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
  border-radius: 12px;
  transition: 0.4s;
  cursor: pointer;
}
header section .header_background .header_background_left_info button:hover {
  background-color: #2b3abd;
}
header section .header_background .header_background_right_info {
  background-color: #cccccc77;
  height: 280px;
  width: 680px;
  transform: translate(0, 600px);
  border-radius: 20px 0 0 20px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.055);
  padding: 54px;
  box-sizing: border-box;
}
header section .header_background .header_background_right_info div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

main {
  justify-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.program {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
.program article {
  background-color: #ededf2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px #ccccccb0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
}
.program article:nth-child(1) {
  width: 60%;
  text-align: justify;
  z-index: 10;
}
.program article:nth-child(2) {
  width: 40%;
  background-color: #5869ff;
  color: white;
}
.program article:nth-child(2) p {
  color: white;
  text-align: justify;
}
.program article div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  z-index: 1;
}
.program article div img {
  width: 28px;
  z-index: 10;
  position: relative;
  right: 25px;
  top: 10px;
}
.program article div .bl {
  background-color: #5869ff;
  position: absolute;
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 125px;
  right: -42px;
  top: -64px;
}
.program article p {
  color: black;
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  text-align: left;
  max-width: 1200px;
}
.projects h3 {
  text-align: left;
}
.projects a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
  background-color: #ededf2;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  gap: 16px;
  cursor: pointer;
  transition: 0.4s;
}
.projects a figure {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects a figure h6 {
  color: black;
  max-width: 400px;
}
.projects a figure img {
  max-width: 24px;
  background-color: white;
  padding: 4px;
  border-radius: 50px;
}
.projects a p {
  color: black;
  max-width: 500px;
}
.projects a:hover {
  background-color: #e5e5e5;
}
.projects :nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.projects :nth-child(2) {
  grid-area: 2 / 2 / 3 / 3;
}
.projects :nth-child(3) {
  grid-area: 3 / 2 / 4 / 3;
}
.projects :nth-child(4) {
  grid-area: 4 / 2 / 5 / 3;
}
.projects :nth-child(5) {
  grid-area: 2 / 1 / 6 / 2;
  padding: 0;
  background-color: #1c1c1f;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 100%;
  max-height: 550px;
}
.projects :nth-child(6) {
  grid-area: 1 / 2 / 2 / 3;
}
.projects :nth-child(7) {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects :nth-child(7) a {
  grid-area: 5 / 2 / 6 / 3;
  background: none;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  gap: 16px;
  flex-direction: row;
}
.projects :nth-child(7) a:hover {
  background: none;
}
.projects :nth-child(7) a:hover h6 {
  color: #4e4e4e;
}
.projects :nth-child(7) h6 {
  color: rgb(0, 0, 0);
}

.learning {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1600px;
  width: 100%;
  height: 800px;
  margin-bottom: 80px;
}
.learning :nth-child(1) {
  right: 320px;
  top: 112px;
}
.learning :nth-child(2) {
  left: 320px;
}
.learning :nth-child(3) {
  top: 83px;
  left: 580px;
}
.learning :nth-child(5) {
  bottom: 86px;
  right: 580px;
}
.learning :nth-child(6) {
  left: 320px;
}
.learning :nth-child(7) {
  right: 320px;
  bottom: 112px;
}
.learning p {
  background-color: #5869ff;
  padding: 20px 20px 20px 80px;
  border-radius: 50px;
  max-width: 320px;
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
}
.learning p::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 48px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.learning p:nth-child(1)::before {
  background-image: url(../../assets/img/icon/learning_mark_1.png);
}
.learning p:nth-child(2)::before {
  background-image: url(../../assets/img/icon/learning_mark_2.png);
}
.learning p:nth-child(3)::before {
  background-image: url(../../assets/img/icon/learning_mark_3.png);
  height: 24px;
}
.learning p:nth-child(5)::before {
  background-image: url(../../assets/img/icon/learning_mark_4.png);
  height: 24px;
}
.learning p:nth-child(6)::before {
  background-image: url(../../assets/img/icon/learning_mark_5.png);
}
.learning p:nth-child(7)::before {
  background-image: url(../../assets/img/icon/learning_mark_6.png);
}

.Advantages {
  height: 1000px;
  margin: 80px 0;
}
.Advantages p {
  font-size: clamp(16px, 0.5vw  + 0.8rem, 24px);
}
.Advantages article {
  background: linear-gradient(#2928288c), url(../../assets/img/3847df12-47c1-4298-a3f7-ad714fb16c3c.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  border-radius: 20px;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  gap: 64px;
}
.Advantages article div {
  text-align: center;
}
.Advantages article h3 {
  margin-bottom: 20px;
}
.Advantages article ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.Advantages article ul li {
  background-color: #1c1c1f;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  font-size: clamp(16px, 1.2vw + 0.8rem, 24px);
}
.Advantages article ul li img {
  aspect-ratio: 1/1;
  background-color: #232323;
  border-radius: 8px;
  margin-right: 40px;
  width: 66px;
  height: 66px;
  object-fit: none;
}
.Advantages article ul li:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.Advantages article ul li:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.Advantages article ul li:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
}
.Advantages article ul li:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
}

.partners {
  justify-items: center;
  margin-bottom: 80px;
}
.partners h3 {
  margin-bottom: 96px;
}
.partners div {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partners div figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  box-sizing: border-box;
}
.partners div figure:nth-child(2) {
  margin-top: 50px;
}
.partners div figure:nth-child(1) a, .partners div figure:nth-child(3) a {
  max-width: 280px;
}
.partners div figure:nth-child(3) a img {
  max-height: 160px;
}
.partners div figure:nth-child(2) a {
  max-width: 320px;
}
.partners div figure:nth-child(1) a:hover img {
  max-width: 240px;
  transition: 0.4s;
}
.partners div figure:nth-child(3) a:hover img {
  max-height: 190px;
  transition: 0.4s;
}
.partners div figure a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  background-color: #ededf2;
  padding: 40px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  box-sizing: border-box;
}
.partners div figure a img {
  max-width: 100%;
}
.partners div figcaption {
  font-size: clamp(16px, 0.5vw + 1rem, 28px);
  max-width: 380px;
  text-align: center;
  color: black;
  max-height: 105px;
  height: 100%;
}

.practice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  margin: 80px 0;
  gap: 20px;
}
.practice div {
  grid-area: 1 / 1 / 3 / 3;
}
.practice p:nth-child(1) {
  grid-area: 1 / 3 / 2 / 4;
}
.practice p:nth-child(2) {
  grid-area: 2 / 3 / 3 / 4;
}
.practice p:nth-child(3) {
  grid-area: 3 / 1 / 4 / 2;
}
.practice p:nth-child(4) {
  grid-area: 3 / 2 / 4 / 3;
}
.practice p:nth-child(5) {
  grid-area: 3 / 3 / 4 / 4;
}
.practice h3 {
  text-align: left;
  width: 880px;
}
.practice h4 {
  margin-top: 18px;
  color: #a3a3b2;
}
.practice figure, .practice a {
  background-color: #5869ff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
  position: relative;
}
.practice figure:nth-child(3), .practice a:nth-child(3) {
  width: 380px;
  left: 66px;
}
.practice figure:nth-child(3) img, .practice a:nth-child(3) img {
  filter: invert(100%);
  width: 48px;
}
.practice figure:nth-child(7), .practice a:nth-child(7) {
  right: -200px;
  width: 450px;
}
.practice figure:nth-child(4), .practice a:nth-child(4) {
  width: 380px;
}
.practice figure:nth-child(4) img, .practice a:nth-child(4) img {
  width: 42px;
}
.practice figure:nth-child(5), .practice a:nth-child(5) {
  right: 80px;
  width: 640px;
}
.practice figure:nth-child(6), .practice a:nth-child(6) {
  width: 340px;
  right: 80px;
}
.practice figure img, .practice a img {
  width: 32px;
}
.practice a:hover {
  background-color: #2b3abd;
  transition: 0.4s;
}
.practice p {
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
  color: white;
}

.experts {
  max-width: none;
  background-color: #5869ff;
  justify-items: center;
  box-shadow: 0 0 100px 120px #5869ff;
  margin: 320px 0;
}
.experts article {
  max-width: 1320px;
  text-align: center;
  color: white;
}
.experts article h3 {
  margin-bottom: 20px;
}
.experts article h5 {
  color: rgba(255, 255, 255, 0.5);
}

.entrance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}
.entrance article {
  background-color: #ededf2;
  max-width: 420px;
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 20px;
  height: 610px;
  box-sizing: border-box;
}
.entrance article ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.entrance article p {
  color: black;
}
.entrance article figure {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.entrance article li div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
}
.entrance article li div p:nth-child(2) {
  color: #5869ff;
}
.entrance article:nth-child(1) :nth-child(3) {
  color: #a3a3b2;
}
.entrance article:nth-child(2) p, .entrance article:nth-child(3) li {
  list-style: none;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px 16px;
}
.entrance article:nth-child(2) p {
  background-image: url(../../assets/img/icon/mark.png);
}
.entrance article:nth-child(3) li {
  background-image: url(../../assets/img/icon/mark_green.png);
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  padding: 0 20px;
}
.achievements .achievements_slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slider_container {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.achievements .achievements_slider .achievements_slide {
  display: flex;
  padding: 20px;
  border-radius: 20px;
  height: 534px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.achievements .achievements_slider .achievements_slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.achievements .achievements_slider .achievements_slide .achievements_left {
  width: 40%;
  min-width: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slide .achievements_left h4 {
  background-color: #5869ff;
  color: white;
  padding: 16px;
  aspect-ratio: 1/1;
  border-radius: 50px;
}
.achievements .achievements_slider .achievements_slide .achievements_left h5 {
  max-width: 340px;
  color: black;
}
.achievements .achievements_slider .achievements_slide .achievements_border {
  width: 60%;
  min-width: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
}
.achievements .achievements_slider .achievements_slide .achievements_right {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  padding: 64px 8px 64px 64px;
  margin-right: 0;
  background-color: #ededf2;
  border-radius: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #dfdfdf #ededf2;
}
.achievements .achievements_slider .achievements_slide .achievements_right::-webkit-scrollbar {
  width: 8px;
  -webkit-appearance: none;
}
.achievements .achievements_slider .achievements_slide .achievements_right::-webkit-scrollbar-track {
  background: #2a2a2f;
  margin: 20px 0;
  border-radius: 10px;
}
.achievements .achievements_slider .achievements_slide .achievements_right::-webkit-scrollbar-thumb {
  background: #5869ff;
  border-radius: 10px;
  transition: background 0.3s ease;
  border: none;
  min-height: 30px;
}
.achievements .achievements_slider .achievements_slide .achievements_right::-webkit-scrollbar-thumb:hover {
  background: #4a59e6;
}
.achievements .achievements_slider .achievements_slide .achievements_right::-webkit-scrollbar-corner {
  background: transparent;
}
.achievements .achievements_slider .achievements_slide .achievements_right .achievements_right_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 56px;
}
.achievements .achievements_slider .achievements_slide .achievements_right .achievements_right_content div {
  border-radius: 20px;
  padding: 20px;
  background-color: #5869ff;
  flex-shrink: 0;
}
.achievements .achievements_slider .achievements_slide .achievements_right h4 {
  font-size: clamp(16px, 1.2vw + 0.8rem, 24px);
  color: white;
  padding-bottom: 8px;
}
.achievements .achievements_slider .achievements_slide .achievements_right p {
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
  color: #ebebeb;
}
.achievements .achievements_slider .slider_btn {
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
  background: none;
  position: relative;
}
.achievements .achievements_slider .slider_btn img {
  width: 16px;
}
.achievements .achievements_slider .slider_btn:hover {
  transform: scale(1.1);
}
.achievements .achievements_slider .slider_btn:active {
  transform: scale(0.95);
}
.achievements .achievements_slider .slider_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.achievements .achievements_dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.achievements .achievements_dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.achievements .achievements_dots .dot:hover {
  background-color: #999;
  transform: scale(1.2);
}
.achievements .achievements_dots .dot.active {
  background-color: #5869ff;
  transform: scale(1.2);
}

.speakers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.speakers div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.speakers article {
  background-color: #ededf2;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px;
  height: 740px;
  box-sizing: border-box;
  overflow: hidden;
  gap: 20px;
}
.speakers article .speakers_info {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.speakers article .speakers_info h5 {
  background-color: #fff;
  padding: 16px;
  border-radius: 50px;
  box-shadow: -160px -60px 256px 192px #5869ff46;
}
.speakers article .speakers_info p {
  font-size: clamp(16px, 0.5vw + 0.8rem, 24px);
  text-align: justify;
  white-space: pre-wrap;
  color: black;
}
.speakers article .speakers_info div {
  display: flex;
  flex-direction: column;
}
.speakers article .speakers_info div a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.speakers article .speakers_info div a img {
  width: 20px;
  aspect-ratio: 1/1;
  object-fit: contain;
  align-content: center;
  filter: invert(1);
}
.speakers article .speakers_info div a:hover p {
  color: #6d6d6d;
}
.speakers article .speakers_img {
  width: 290px;
  aspect-ratio: 1/1;
  border-radius: 80px;
  object-fit: cover;
  box-shadow: 8px -8px 256px 20px #00000045;
}
.speakers button {
  width: 64px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background-color: #ededf2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.speakers button img {
  width: 28px;
}
.speakers button:hover {
  background-color: #e5e5e5;
}

.speakers article {
  display: none;
}

.speakers article.active {
  display: flex;
}

.Program_manager {
  margin-bottom: 24px;
}
.Program_manager h4 {
  margin-bottom: 24px;
}
.Program_manager .Program_manager_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.Program_manager .Program_manager_info img {
  object-fit: cover;
  border-radius: 20px;
  max-height: 435px;
  width: 100%;
}
.Program_manager .Program_manager_info article {
  background-color: #ededf2;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  flex: 1;
  width: auto;
  padding: 24px;
  flex-direction: row-reverse;
  box-sizing: border-box;
}
.Program_manager .Program_manager_info article img {
  width: 290px;
  aspect-ratio: 3 / 4;
}
.Program_manager .Program_manager_info article figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.Program_manager .Program_manager_info article figure img {
  width: 55px;
  object-fit: contain;
  border-radius: 0;
}
.Program_manager .Program_manager_info article p {
  color: #a3a3b2;
  max-width: 400px;
  margin-top: 20px;
}
.Program_manager .Program_manager_info .Program_manager_info_one_img {
  aspect-ratio: 16/9;
  margin-top: 20px;
}
.Program_manager .Program_manager_info form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Program_manager .Program_manager_info form textarea, .Program_manager .Program_manager_info form input {
  padding: 18px;
  outline: none;
  border: none;
  border-radius: 20px;
}
.Program_manager .Program_manager_info form textarea {
  width: 100%;
  height: 100%;
  resize: none;
  box-sizing: border-box;
  min-height: 300px;
}
.Program_manager .Program_manager_info form button {
  background-color: #1c1c1f;
  color: white;
  border: none;
  padding: 20px 32px;
  font-size: clamp(14px, 1vw + 0.5rem, 18px);
  border-radius: 12px;
  transition: 0.4s;
  cursor: pointer;
}
.Program_manager .Program_manager_info form button:hover {
  background-color: black;
}

footer {
  justify-items: center;
  margin-bottom: 40px;
}
footer section {
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
}
footer section h4 {
  margin-bottom: 24px;
}
footer section h6 {
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
}
footer section .social_links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication {
  background-color: #ededf2;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  transition: 0.4s;
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}
footer section .social_links .social_links_communication figure {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer section .social_links .social_links_communication figure figcaption {
  color: white;
  font-size: clamp(18px, 1.5vw + 1rem, 28px);
  font-family: Heavy;
}
footer section .social_links .social_links_communication figure img {
  width: 32px;
}
footer section .social_links .social_links_communication:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  background-color: #1c1c1f;
  aspect-ratio: 9/2;
}
footer section .social_links .social_links_communication:nth-child(1):hover {
  background-color: #5869ff;
}
footer section .social_links .social_links_communication:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  background-color: #1c1c1f;
}
footer section .social_links .social_links_communication:nth-child(2):hover {
  background-color: #5869ff;
}
footer section .social_links .social_links_communication:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
}
footer section .social_links .social_links_communication:nth-child(3) figcaption {
  color: black;
}
footer section .social_links .social_links_communication:nth-child(3):hover {
  background-color: #e5e5e5;
}

@media (max-width: 970px) {
footer section {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
footer section .social_links {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto auto !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication {
  grid-area: auto !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication:nth-child(1) {
  max-height: 127px;
}
}

.partners .partners__logos.is-4 figure figcaption {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1600px) {
.learning :nth-child(3) {
  top: 450px;
  left: 0;
}
.learning :nth-child(5) {
  bottom: 450px;
  right: 0;
}
.practice {
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  box-sizing: border-box;
}
.practice h3 {
  width: 100%;
  max-width: 100%;
}
.practice figure, .practice a {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box;
}
.practice figure:nth-child(3), .practice figure:nth-child(4), .practice figure:nth-child(5), .practice figure:nth-child(6), .practice figure:nth-child(7), .practice a:nth-child(3), .practice a:nth-child(4), .practice a:nth-child(5), .practice a:nth-child(6), .practice a:nth-child(7) {
  width: 100% !important;
  max-width: 100% !important;
}
.practice figure img, .practice a img {
  max-width: 100%;
  height: auto;
}
.practice figure figcaption, .practice a figcaption {
  max-width: 100%;
  word-wrap: break-word;
}
}

@media (max-width: 1440px) {
.program {
  flex-direction: column;
}
.program article:nth-child(1) {
  width: 100%;
}
.program article:nth-child(1) img {
  right: 5px;
  top: -5px;
}
.program article:nth-child(1) .bl {
  width: 160px;
}
.program article:nth-child(2) {
  width: 100%;
}
}

@media (max-width: 1250px) {
.projects {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  max-width: 591px;
}
.projects > * {
  grid-area: auto !important;
}
.projects :nth-child(5) {
  grid-area: auto;
  order: -1;
}
}

@media (max-width: 1200px) {
nav, section {
  max-width: 100%;
}
h1 {
  max-width: 100%;
}
header section .header_background .header_background_left_info {
  padding-left: 40px;
}
header section .header_background .header_background_left_info h2 {
  width: 100%;
  max-width: 600px;
}
.program {
  flex-direction: column;
}
.program article:nth-child(1), .program article:nth-child(2) {
  width: 100%;
}
.practice {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
.practice div {
  grid-area: 1 / 1 / 2 / 3;
}
.practice figure, .practice a {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.learning {
  width: 100%;
  height: auto;
  position: relative;
  padding: 40px;
}
.learning p {
  position: static !important;
  width: 100%;
  box-sizing: border-box;
  max-width: 635px;
}
.learning p::before {
  position: relative;
  left: -40px;
}
.learning h3 {
  order: -1;
}
.Advantages article {
  padding: 30px 20px;
}
.Advantages article div {
  width: 100%;
  max-width: 800px;
}
.achievements {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.achievements .achievements_slider {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slider_container {
  width: 100%;
  max-width: 100%;
}
.achievements .achievements_slider .achievements_slide {
  flex-direction: column;
  height: auto;
  padding: 30px;
  max-width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slide .achievements_left, .achievements .achievements_slider .achievements_slide .achievements_border {
  width: 100%;
  max-width: 100%;
}
.achievements .achievements_slider .achievements_slide .achievements_border {
  display: flex;
  flex-direction: column;
}
.achievements .achievements_slider .achievements_slide .achievements_right {
  width: 100%;
  padding: 40px 10px 40px 20px;
  max-height: 500px;
  overflow: hidden;
}
.achievements .achievements_slider .achievements_slide .achievements_right .achievements_right_content {
  padding-right: 10px;
}
.achievements .achievements_slider .slider_btn {
  top: 70px;
  font-size: 28px;
  flex-shrink: 0;
}
footer section {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
footer section .social_links {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
}

@media (max-width: 1040px) {
.Program_manager .Program_manager_info {
  flex-direction: column;
  gap: 20px;
}
.Program_manager .Program_manager_info article {
  width: 100%;
  max-width: 100%;
}
.Program_manager .Program_manager_info article figure {
  align-items: flex-start;
}
.Program_manager .Program_manager_info img {
  width: 100%;
  max-width: 100%;
}
}

@media (max-width: 1140px) {
.Advantages article ul {
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(4, 1fr);
}
.Advantages article ul li {
  grid-area: auto !important;
}
}

@media (max-width: 1130px) {
.achievements {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.achievements .achievements_slider {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slider_container {
  width: 100%;
  max-width: 100%;
}
.achievements .achievements_slider .achievements_slide {
  flex-direction: column;
  align-items: center;
  height: auto;
  max-width: 100%;
  width: 100%;
  gap: 16px;
  box-sizing: border-box;
}
}

@media (max-width: 968px) {
header nav menu {
  flex-wrap: wrap;
  gap: 10px;
}
header nav img {
  max-width: 180px;
}
header section .header_background .header_background_left_info {
  padding-left: 0;
  padding-bottom: 30px;
  align-items: center;
  text-align: center;
}
header section .header_background .header_background_left_info h1, header section .header_background .header_background_left_info h2 {
  text-align: center;
}
header section .header_background .header_background_right {
  display: none;
}
.program article {
  padding: 30px 20px;
}
.Advantages {
  height: auto;
}
.Advantages article ul {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
.Advantages article ul li {
  grid-area: auto !important;
}
.practice {
  grid-template-columns: 1fr;
}
.practice div {
  grid-area: 1 / 1 / 2 / 2;
}
.practice h3, .practice h4 {
  text-align: center;
  width: 100%;
}
.Program_manager {
  padding: 0 20px;
}
.speakers article {
  flex-direction: column;
  height: auto;
  padding: 28px;
}
.speakers article div:nth-child(1) {
  padding-bottom: 28px;
}
.speakers article div p {
  padding: 0;
}
.speakers article h5 {
  width: 100%;
  box-sizing: border-box;
}
.speakers article img {
  width: 100%;
}
footer section {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
footer section .social_links {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
}

@media (max-width: 640px) {
header {
  margin-bottom: 40px;
  background: linear-gradient(#2928288c), url(../../assets/img/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
}
header nav:not(.bm-nav) {
  padding: 5px;
  position: relative;
  justify-content: center;
  background: none;
  box-shadow: none;
}
header nav:not(.bm-nav) .burger-menu {
  display: flex;
  order: 1;
}
header nav:not(.bm-nav) img {
  max-width: 140px;
  margin-top: 0;
}
header nav:not(.bm-nav) menu.nav-menu {
  display: none;
  width: 100%;
  order: 3;
  margin-top: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  box-shadow: 0px 4px 20px 0px #ccc;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header nav:not(.bm-nav) menu.nav-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
header nav:not(.bm-nav) menu.nav-menu li {
  width: 100%;
}
header nav:not(.bm-nav) menu.nav-menu li a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  transition: color 0.3s ease;
}
header .bm-nav {
  display: block;
  position: fixed;
  right: 16px;
  top: 29px;
  background-color: #f5f5f5;
  box-shadow: 0px 0px 20px 0px #ccc;
  width: auto;
  border-radius: 20px;
  padding: 10px;
  z-index: 1001;
  height: auto;
}
header .bm-nav .burger-menu {
  display: flex;
}
header .bm-nav menu.nav-menu {
  display: none;
  min-width: 200px;
  width: max-content;
  max-width: 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: #f5f5f5;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  box-shadow: 0px 4px 20px 0px #ccc;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header .bm-nav menu.nav-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  border-radius: 20px;
}
header .bm-nav menu.nav-menu li {
  width: 100%;
}
header .bm-nav menu.nav-menu li a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  transition: color 0.3s ease;
}
header section {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header section .header_background {
  background: none;
  padding: 0 10px;
  padding-bottom: 178px;
  justify-content: center;
}
header section .header_background .header_background_left_info {
  gap: 20px;
}
header section .header_background .header_background_left_info button {
  padding: 16px 24px;
  font-size: 18px;
}
main > section {
  margin-bottom: 40px;
}
.program {
  flex-direction: column;
  gap: 20px;
}
.program article {
  padding: 20px 15px;
  gap: 20px;
}
.program article:nth-child(1) {
  padding-bottom: 40px;
}
.program article:nth-child(1) .bl {
  width: 110px;
}
.program article div {
  flex-wrap: wrap;
}
.Advantages article {
  padding: 20px 15px;
}
.Advantages article div {
  padding: 0;
}
.Advantages article h3 {
  margin-bottom: 15px;
}
.Advantages article ul {
  gap: 15px;
}
.Advantages article ul li {
  padding: 15px;
  gap: 16px;
}
.Advantages article ul li img {
  margin-right: 0;
  margin-bottom: 10px;
  width: 44px;
  height: 44px;
}
.practice {
  gap: 15px;
  margin: 40px 0;
}
.practice div {
  padding: 20px 15px;
}
.practice figure, .practice a {
  padding: 15px;
  gap: 15px;
  flex-direction: column;
  text-align: center;
}
.practice figure img, .practice a img {
  width: 24px;
}
.entrance {
  gap: 20px;
  margin-bottom: 40px;
}
.entrance article {
  padding: 25px 20px;
  height: auto;
}
.entrance article ul {
  gap: 20px;
}
.entrance article:nth-child(2) p, .entrance article:nth-child(3) li {
  background-size: 12px;
}
.achievements {
  gap: 15px;
  margin: 40px 0;
  padding: 0 15px;
  box-sizing: border-box;
}
.achievements .achievements_slider {
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slider_container {
  width: 100%;
  max-width: 100%;
}
.achievements .achievements_slider .achievements_slide {
  padding: 20px 15px;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slide .achievements_left {
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
}
.achievements .achievements_slider .achievements_slide .achievements_left h4 {
  padding: 12px;
}
.achievements .achievements_slider .achievements_slide .achievements_left h5 {
  max-width: 100%;
}
.achievements .achievements_slider .achievements_slide .achievements_border {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.achievements .achievements_slider .achievements_slide .achievements_right {
  width: 100%;
  padding: 25px 15px;
  box-sizing: border-box;
  max-height: none;
  overflow: visible;
}
.achievements .achievements_slider .achievements_slide .achievements_right .achievements_right_content {
  width: 100%;
  padding-right: 0;
  box-sizing: border-box;
}
.achievements .achievements_slider .achievements_slide .achievements_right .achievements_right_content div {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .slider_btn {
  font-size: 24px;
  flex-shrink: 0;
}
.Program_manager {
  margin-bottom: 20px;
  padding: 0 15px;
}
.Program_manager h4 {
  margin-bottom: 20px;
  text-align: center;
}
.Program_manager .Program_manager_info {
  flex-direction: column;
  gap: 20px;
}
.Program_manager .Program_manager_info article:nth-child(1) {
  flex-direction: column;
}
.Program_manager .Program_manager_info article:nth-child(1) img:nth-child(1) {
  width: 100%;
  max-width: 640px;
}
.Program_manager .Program_manager_info article:nth-child(1) figure img {
  width: 32px;
}
.Program_manager .Program_manager_info article {
  padding: 20px 15px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
  width: 100%;
}
.Program_manager .Program_manager_info article img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 290px;
}
.Program_manager .Program_manager_info article figure {
  align-items: flex-start;
}
.Program_manager .Program_manager_info article figure img {
  width: 45px;
  margin: 15px 0;
}
.Program_manager .Program_manager_info article p {
  width: 100%;
  margin-top: 15px;
}
.Program_manager .Program_manager_info img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.experts {
  margin: 0;
  margin-top: 280px;
  margin-bottom: 220px;
}
footer section {
  padding: 0 15px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
footer section h4 {
  margin-bottom: 20px;
  text-align: center;
}
footer section .social_links {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication {
  grid-area: auto !important;
  padding: 20px 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication:nth-child(3) {
  aspect-ratio: auto;
}
footer section .social_links .social_links_communication figure img {
  width: 20px;
}
}

@media (max-width: 480px) {
header nav img {
  max-width: 120px;
}
header section .header_background .header_background_left_info {
  gap: 15px;
}
.program article div .bl {
  width: 150px;
  right: -30px;
  top: -50px;
}
.achievements .achievements_slider .achievements_slide .achievements_left h4 {
  padding: 10px;
}
.achievements .achievements_slider .slider_btn {
  font-size: 20px;
}
}

@media (max-width: 360px) {
header nav {
  padding: 8px;
}
header nav img {
  max-width: 100px;
}
header section .header_background {
  min-height: 300px;
  padding: 12px 8px;
}
header section .header_background .header_background_left_info button {
  padding: 12px 20px;
}
.program article, .program .Advantages article, .program .entrance article, .program .achievements .achievements_slide {
  padding: 15px 10px;
}
.achievements {
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.achievements .achievements_slider {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 5px;
}
.achievements .achievements_slider .achievements_slider_container {
  width: 100%;
  max-width: 100%;
}
.achievements .achievements_slider .achievements_slide {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.achievements .achievements_slider .slider_btn {
  display: none;
}
footer section {
  padding: 0 10px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
footer section .social_links {
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
footer section .social_links .social_links_communication {
  padding: 15px 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
}

/* Tilda fixes */
.t-records{
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

#Advantages,
#entrance,
#speakers,
#footer{
    scroll-margin-top: 120px;
}





.uc-wi-menu{
    position: fixed;
    top: 24px;
    left: 12px;
    right: 12px;
    z-index: 9999;
}

.uc-wi-menu .t228__maincontainer,
.uc-wi-menu .t456__maincontainer,
.uc-wi-menu .tmenu__wrapper,
.uc-wi-menu .t-menu__wrapper{
    height: 64px;
    background-color: #f5f5f5;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #cccccc;
}

.uc-wi-menu img{
    max-width: 180px;
    height: auto;
}

.uc-wi-menu a{
    font-family: Arial, sans-serif;
    color: #1c1c1f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.uc-wi-menu a:hover{
    color: #5869ff;
}

/* Убираем возможные лишние отступы внутри */
.uc-wi-menu .t228__maincontainer,
.uc-wi-menu .t456__maincontainer{
    margin-top: 0;
}

.uc-wi-menu .t228__leftcontainer,
.uc-wi-menu .t456__leftcontainer,
.uc-wi-menu .t228__rightcontainer,
.uc-wi-menu .t456__rightcontainer{
    height: 64px;
    display: flex;
    align-items: center;
}

