/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --white: #fff;
  --orange: #d35400;
  --black: #070707;
  --gray: #b1b1b1;

  --btn-bg: var(--black);
  --btn-color: var(--white);
}

*::selection {
  background-color: var(--white);
  color: var(--orange);
}

img::selection {
  background-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--white);
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1440px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/

/* header styles */
.header {
  position: absolute;
  top: 20px;
  width: 100%;
  /* background-color: var(--dark); */
  z-index: 10;
}

.header-logo {
  max-width: 208px;
}

section {
  overflow: hidden;
}

.header-relative {
  position: relative;
  z-index: 11;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 0px;
}

.header__nav-link {
  color: var(--white);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110.16%;
  transition: all 0.45s;
  padding: 15px 20px;
  border-radius: 10px;
  display: block;
}

.header__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-shadow: 0px 0px 0.5px var(--white);
}

.menu {
  display: none;
}

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

/* header styles */

/* mobile menu */
.mobile-menu {
  position: fixed;
  z-index: 1;
  background-color: var(--black);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: all 0.45s;
  transform: translateX(-110%);
  display: none;
}

.mobile-menu__outer {
  width: 100%;
  height: 100%;
  position: relative;
}

.mobile-menu__circle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 320px;
  width: 320px;
  height: 320px;
  background: var(--orange);
  filter: blur(250px);
  -webkit-filter: blur(250px);
}

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

.mobile-menu__inner {
  padding-top: 150px;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu__self {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--white);
  stroke-width: 3;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 75;
  stroke-width: 6;
  stroke-dashoffset: -134;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -90;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/* mobile menu */

body {
  background-color: var(--black);
  color: var(--white);
}

body.fixed {
  overflow: hidden;
}

.orange--hover {
  cursor: pointer;
  color: var(--white);
  transition: 0.4s all;
}

.orange--hover:hover {
  color: var(--orange);
}

.m-t {
  margin-top: 130px;
}

.p-t {
  padding-top: 130px;
}

.mk--btn {
  min-width: max-content;
  cursor: pointer;
  width: max-content;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 10px;
  outline: none;
  border: none;

  background: var(--btn-bg);
  color: var(--btn-color);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  transition: 0.4s all;
  border: 1px solid transparent;
}

.mk--btn.orange {
  --btn-bg: var(--orange);
}

.mk--btn.black {
  --btn-bg: var(--black);
}

.mk--btn.white {
  --btn-bg: var(--black);
  --btn-color: var(--white);
  border-color: var(--white);
}

.mk--btn:hover {
  background: var(--btn-color);
  color: var(--btn-bg);
}

/* .hover-to-or-border {
	background-color: var(--orange);
}
.hover-to-or-border:hover {
	color: var(--orange);
	border: 1px solid var(--orange);
	background-color: transparent;
} */

.title-h2 {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -3.2px;
}

.text-24-400 {
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

/* footer */
.footer {
  padding: 90px 0 50px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer .top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.footer .top .title-h2-footer {
  max-width: 975px;
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 64px;
  font-weight: 600;
  line-height: 102.765%;
  letter-spacing: -1.92px;
}

.footer .center {
  display: flex;
  justify-content: space-between;
}

.footer .center .title {
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.08px;
}

.footer .center ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .center ul a {
  opacity: 0.8;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-social .text-orange {
  color: var(--orange);
  text-align: justify;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  /* 16px */
  letter-spacing: -1px;
}

.footer-social .text-white {
  margin-top: 10px;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  /* 16px */
  letter-spacing: -1px;
}

.footer-social_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social_wrap a {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 500px;
  border: 1px solid #fff;
}

.footer-bottom_text {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom_text p,
.footer-bottom_text p a {
  color: rgba(255, 255, 255, 0.55);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 107%;
  /* 17.12px */
  letter-spacing: -0.08px;
}

.footer-bottom_text p a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.footer-logo svg {
  width: 100%;
  height: auto;
}

/* footer */

/* proofForm */
.proofForm .container {
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 90px;
  background-image: url(../images/form-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 86px 40px 66px 40px;
}

.proofForm-content {
  max-width: 580px;
  padding: 50px 30px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.proofForm-content .title-h2 {
  text-align: center;
}

.proofForm-descr {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
  letter-spacing: -0.09px;
}

.proofForm .form--wrap {
  margin-top: 40px;
}

.input {
  width: 100%;
  display: flex;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);

  color: var(--white);
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}

.proofForm .mk--btn {
  margin-top: 20px;
  width: 100%;
}

/* proofForm */

/* textAnimation */
.textAnimation {
  min-height: 100vh;
}

.textAnimation--inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  width: 100%;
  height: 100%;
  position: relative;

  padding: 200px 0 150px;
}

.textAnimation--wrap {
  flex: 1;
}

.textAnimation-back {
  text-align: center;
  color: var(--orange);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 107px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -3.21px;
  text-transform: capitalize;
}

/* textAnimation */

/* aboutText */
.aboutText {
  padding-bottom: 220px;
  /* background: linear-gradient(180deg, rgba(250, 243, 240, 0) 80%, #070707 100%),
    #fff; */
  background-color: #fff;
  background-image: url(../images/bottomgrad.webp);
  background-position: bottom -1px center;
  background-repeat: no-repeat;
  background-size: contain;
}

.aboutText--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.aboutText--link {
  display: flex;
  align-items: center;
  gap: 60px;
}

.aboutText--link a {
  display: block;
  color: var(--orange);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.aboutText--content {
  max-width: 1088px;
}

.aboutText--content,
.aboutText--content span {
  display: inline;
  text-align: center;
  color: var(--black);
  font-size: 40px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -1.2px;
}

.aboutText--content span {
  color: var(--orange);
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
}

.aboutText--content img {
  transform: translateY(10px);
  margin: 0 10px;
  display: inline-block;
  width: 48px;
  height: 48px;
}

/* aboutText */

/* greatest */
.greatest {
  padding-bottom: 20px;
  position: relative;
}

.greatest--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.greatest--inner .container {
  display: flex;
  flex-direction: column;
  gap: 65px;
  align-items: center;
  justify-content: center;
}

.greatest--inner .title-h2 {
  max-width: 1240px;
  text-align: center;
}

.greatest--inner .title-h2 {
  max-width: 60%;
}
.greatest--inner .text-24-400 {
  max-width: 760px;
  opacity: 0.7;
  text-align: center;
  margin-top: 30px;
}

.greatest--inner .img {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: center;
}

.greatest-elem {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.greatest-item {
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.greatest-img {
  display: flex;
  width: 105px;
  height: 38px;
  padding: 6px 8px;
  align-items: center;
}

.greatest-item .white,
.greatest-item .white span {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 88.992%;
  /* 14.239px */
}

.greatest-item .white span {
  font-weight: 600;
}

.greatest-item .orange {
  margin-top: 6px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  line-height: 88.992%;
  /* 12.459px */
}

.greatest-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* greatest */

/* gradient */
.gradient-svg {
  background-color: var(--white);
}

.gradient-svg svg {
  width: 100%;
}

.gradient-svg-wrap img {
  display: block;
}

/* gradient */

/* numbersSpeak */
.numbersSpeak {
  overflow: visible;
}

.numbersSpeak--inner {
  position: relative;
  min-height: auto;
}

.numbersSpeak--text {
  top: 0;
  width: 100%;
  position: absolute;
  height: 100%;
}

.numbersSpeak--text-stiky {
  top: 0;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 75vh;
}

.numbersSpeak--text p {
  text-align: center;
  font-family: "Playfair Display";
  font-size: 147.488px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -10.324px;
}

.numbersSpeak--wrap {
  position: relative;

  max-height: 1450px;
  height: auto;
  width: 100%;
  z-index: 2;
}

.numbersSpeak--item {
  position: relative;
  display: flex;
  max-width: 465px;
  padding: 50px 30px;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.numbersSpeak--item .title {
  text-align: center;
  font-family: "Playfair Display";
  font-size: 20px;
  font-weight: 400;
  line-height: 101%;
  letter-spacing: -0.6px;
}

.numbersSpeak--item .num {
  color: var(--orange);
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 96px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -2.88px;
}

.numbersSpeak--item .text {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  /* 24px */
  letter-spacing: -0.48px;
}

.numbersSpeak--item.item2 {
  left: 50%;
}

.numbersSpeak--item.item3 {
  margin-left: auto;
}

.numbersSpeak--item.item4 {
  margin-left: 10%;
}

.numbersSpeak--item.item5 {
  margin-left: 45%;
}

.numbersSpeak--about {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 1176px;
  margin: 70px auto 0;
}

.numbersSpeak--about .img {
  flex-shrink: 0;
  width: 315px;
  height: 315px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.numbersSpeak--about .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.numbersSpeak--about .text .title {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  line-height: 110%; /* 27.5px */
}

.numbersSpeak--about .text .name {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 105%;
  /* 21px */
  letter-spacing: -0.6px;
  text-transform: capitalize;
}

.numbersSpeak--about .text .position {
  margin-top: 5px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}

/* numbersSpeak */

/* contentCouncil */
.contentCouncil {
  padding-top: 60px;
}

.contentCouncil-title {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.contentCouncil-title .text {
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.6px;
}

.contentCouncil--img {
  margin: 0 auto;
  max-width: 1195px;
}

.contentCouncil-wrap {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.contentCouncil-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contentCouncil-item .name {
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -1.2px;
}

.contentCouncil-item .text {
  color: #b1b1b1;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1px;
}

.contentCouncil-item .img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  padding: 17px 20px;
}

.contentCouncil-bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contentCouncil-bottom .text-orange {
  color: var(--orange);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
}

/* contentCouncil */

/* focus */
.focus-slider {
  margin-top: 40px;
}

.focusSwiper .swiper-slide {
  height: auto;
}

.focus-item .img {
  border-radius: 5px;
  height: 455px;
  overflow: hidden;
}

.focus-item .img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.focus-item .num {
  margin-top: 20px;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.08px;
}

.focus-item .title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.72px;
}

.focus-item .text,
.focus-item .text span {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.54px;
}

.focus-item .text span {
  color: var(--orange);
}

/* focus */
.greatest--first .greatest-img {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 38px;
  padding: 5px;
  align-items: center;
}

.greatest-img {
  display: flex;
  justify-content: center;
  width: 105px;
  height: 38px;
  padding: 6px 8px;
  align-items: center;
}

.greatest--first .greatest-item {
  background: none;
}

.greatest-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.full-video__wrap {
  max-width: 1025px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  perspective: 1200px;
}

.soldOut .title-h2 {
  text-align: center;
}

.soldOut--btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.soldOut-content {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.full-video__wrap .video-block {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: unset;
  max-width: 100%;
  max-height: 100%;

  will-change: transform, filter, opacity;
}

.video-block {
  background-color: var(--white);
  display: flex;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
}

.video-block__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.video-block__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 132px;
  height: 147px;
  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-block__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-block__play::before {
  content: "";
  width: 132px;
  height: 147px;
  background-image: url(../images/play.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.text-white {
  color: var(--white);
}

.text-semi-white {
  color: rgba(255, 255, 255, 0.7);
}

/* main slider */
.slider__inner {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.slider__l {
  display: flex;
  flex-direction: column;
  max-width: 514px;
  width: 100%;
  gap: 80px;
  flex-shrink: 0;
}

.slider__l > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.slider__r {
  flex: 1;
}

.slider__r-mobile {
  display: none;
}

.slider__r-desktop {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  padding-bottom: 110px;
}

.slider-card {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
}

.slider-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.45s;
  opacity: 0;
}

.slider-card img.active {
  opacity: 1;
}

.slider-card__first {
  flex-shrink: 0;
  flex-grow: 1;
  max-width: 315px;
}

.slider-block {
  width: 100%;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 180px;
}

.slider-block__main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 381px;
}

.slider-line {
  height: 5px;
  width: 100%;
}

.slider-line__inner {
  width: 0%;
  height: 100%;
  background-color: var(--orange);
  border-radius: 3px;
  transition: all 0.45s ease;
}

.slider-text {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: all 0.45s;
}

.slider-text-main {
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
}

.slider-text-name {
  color: var(--white);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 105%;
  letter-spacing: -0.6px;
  text-transform: capitalize;
}

.slider-text-position {
  color: var(--orange);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

/* main slider */

/* slider nav */
.slider-btn {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.45s;
  cursor: pointer;
  border: none;
  outline: none;
}

.slider-btn-prev {
  transform: rotate(-180deg);
}

.slider-btn.swiper-button-disabled,
.slider-btn.slider-btn--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.slider-block__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* slider nav */

/* hero */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  /* background: linear-gradient(180deg, rgba(7, 7, 7, 0) 76.23%, #070707 98.63%),
		#070707; */
}

.hero2__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-circle {
  aspect-ratio: 1;
  width: 320px;
  border-radius: 321.83px;
  background: var(--orange);
  filter: blur(250px);
  -webkit-filter: blur(250px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
  justify-content: center;
  padding: 120px 0px 40px;
  height: 100%;
}

.hero__title {
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 101%;
  letter-spacing: -4.8px;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}

.hero__title span {
  color: inherit;
  font: inherit;
}

.hero2__title-w2 {
  text-align: right;
}

.hero__texts {
  padding-bottom: 40px;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  align-items: end;
}
.hero__texts div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__text {
  color: var(--white);
  /* text-align: center; */
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.96px;
  margin-bottom: 5px;
}

.hero__subtext {
  color: var(--white);
  /* text-align: center; */
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.18px;
}

/* hero */

/* hero 2 */
.hero2 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero2__img {
  position: absolute;
  inset: 0;
}

.hero2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero2__title {
  color: var(--white);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: -6.4px;
  margin-top: 155px;
  max-width: 800px;
}

/* hero 2 */

/* mk grid */
.mk-grid__main {
  display: grid;
  perspective: 600px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mk-grid__card {
  border-radius: 40px;
  background-color: #131313;
  height: 270px;
  overflow: hidden;
}

.mk-grid__card--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-column: 2 / 4;
  grid-row: 2;
}

.mk-grid__card--def {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.mk-grid__upnum {
  color: var(--white);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 101%;
  letter-spacing: -0.54px;
}

.mk-grid__num {
  color: var(--orange);
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.5px;
}

.mk-grid__unnum {
  color: var(--white);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.4px;
}

.mk-grid__img {
  position: relative;
  height: 100%;
}

.mk-grid__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.mk-grid__text {
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
}

.mk-grid__img img {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* mk grid */

/* partners grid */
.partners-grid__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.partners-grid__btns {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partners-grid__self {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

.partners-grid__self--on-main {
  max-width: 1150px;
}

.partners-grid__cell {
  width: 179px;
  height: 60px;
  flex-shrink: 0;
}

.partners-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* partners grid */

/* greatest section */
.mk-greatest__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mk-greatest__top {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.mk-greatest-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mk-greatest-slide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mk-greatest-slide__img {
  aspect-ratio: 345 / 458;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 5px;
  border-radius: 5px;
}

.mk-greatest-slide__img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mk-greates-slide__title {
  color: var(--white);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.mk-greatest-slide__name {
  color: var(--orange);
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

/* greatest section */

/* ceo standart */
.ceo-standart {
  background: #faf8f5;
}

.ceo-standart__title {
  text-align: left;
  color: var(--black);
}

.ceo-standart__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 600px;
  flex-shrink: 0;
  width: 100%;
}

.ceo-standart__content > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ceo-standart__text {
  color: rgba(7, 7, 7, 0.8);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.ceo-standart__subtext {
  color: var(--black);
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.08px;
}

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

.ceo-standart__img {
  flex: 1;
  aspect-ratio: 800 / 512;
  border-radius: 35px;
  overflow: hidden;
}

/* ceo standart */

/* paris view */
.paris-view {
  padding-top: 40px;
  background: #faf8f5;
}

.paris-view img {
  display: block;
  transform: translateY(5px);
}

/* paris view */

/* mk-proof */
.mk-proof__inner {
  display: flex;
  gap: 20px;
}

.mk-proof__l {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.mk-proof__r {
  width: 50%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mk-proof__r img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mk-proof__title {
  font-size: 60px;
  text-align: left;
}

.mk-proof__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 30px 0px;
}

.mk-proof__winners {
  display: block;
  padding: 20px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.08px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mk-proof__blocks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mk-proof__block {
  display: grid;
  grid-template-columns: 234px 1fr;
  align-items: center;
  gap: 20px;
}

.mk-proof__block-title {
  color: var(--orange);
  font-family: "Playfair Display";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 33px */
  letter-spacing: -0.9px;
}

/* mk-proof */

/* startup ecosystem */
/* .partners-grid__inner:has(.partners-grid__self--startup) {
	gap: 60px;
} */
.partners-grid__self--startup {
  max-width: 784px;
}

/* startup ecosystem */

/* designations */
.designations {
  padding: 230px 0px;
  position: relative;
  /* background-image: url("../images/designation-bg.webp");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center; */
}

.designations .title-h2 {
  text-align: center;
  margin-bottom: 60px;
}

.desigation-bg {
  position: absolute;
  width: 100%;
  aspect-ratio: 128 / 63;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.desigation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.designations__inner {
  max-width: 851px;
  margin: 0px auto;
  display: flex;
  gap: 40px;
}

.designations__circle {
  aspect-ratio: 1;
  width: 356px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.designations__svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.designation-num {
  display: flex;
  gap: 5px;
  /* align-items: center; */
}

.designation-num1 {
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  min-width: 96px;
  text-align: right;
}

.designation-num2 {
  color: var(--white);
  font-family: "Playfair Display";
  font-size: 55px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 10px;
  min-width: 105px;
}

.designation__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.designation__item {
  border-radius: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 238, 230, 0.2);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.45s;
  min-width: 394px;
}

.designation__item.mid {
  transform: translateX(30px);
}

.designation__item.center {
  transform: translateX(60px);
}

.designation__item.active {
  opacity: 1;
}

.designation__marker {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--orange);
}

.designation__items > :nth-child(1) .designation__marker {
  background-color: var(--orange);
}

.designation__items > :nth-child(2) .designation__marker {
  background-color: #d35400;
}

.designation__items > :nth-child(3) .designation__marker {
  background-color: #a03200;
}

.designation__items > :nth-child(4) .designation__marker {
  background-color: #812500;
}

.designation__items > :nth-child(5) .designation__marker {
  background-color: #3a0e00;
}

.designation__item-text {
  color: var(--white);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
}

/* designations */

/* women */
.women {
  /* background: linear-gradient(
			180deg,
			rgba(250, 243, 240, 0) 94.92%,
			#070707 100%
		),
		var(--white); */
  padding-bottom: 220px;
  background-color: var(--white);
  background-image: url(../images/bottomgrad.webp);
  background-position: bottom -1px center;
  background-repeat: no-repeat;
  background-size: contain;
}

.women__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.women__heading {
  max-width: 973px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.women__title {
  text-align: center;
  color: var(--black);
}

.women__title > span {
  font: inherit;
  color: var(--orange);
}

.women__sub {
  color: #808080;
  font-family: "Poppins";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.women__sub > span {
  font: inherit;
  color: var(--black);
  font-weight: 700;
}

.women__img {
  width: 100%;
}

.women__cards {
  width: 100%;
  max-width: 1265px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 45px;
}

.women__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.women__card-name {
  color: var(--black);
  text-align: center;
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -1.2px;
}

.women__card-text {
  flex: 1;
  color: #b1b1b1;
  text-align: center;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.9px;
}

.women__card-img {
  aspect-ratio: 217 / 99;
  overflow: hidden;
}

.women__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* women */

/* track */
.track {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.track__img {
  position: absolute;
  bottom: 0;
  width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}

.track__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 400px;
}

.track-btn__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track__content {
  display: flex;
  flex-direction: column;
  max-width: 1150px;
  gap: 60px;
}

.track__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.track__sub > span {
  color: var(--orange);
}

/* track */

/* speakers */
.speakers-title {
  text-align: center;
  text-transform: capitalize;
}

/* speakers */

/* cards */
.cards {
  background-color: var(--white);
}

.cards__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.my-cards__inner {
  display: flex;
  height: 573px;
  gap: 20px;
  align-items: center;
}

.my-card {
  flex-shrink: 0;
  height: 85%;
  flex-basis: 174px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 25px;
}

.my-card__vertical {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 174px;
  height: 100%;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  z-index: 1;
}

.my-card__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(247, 228, 220, 1);
}

.my-card__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.my-card__text-block {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 30px;
  width: calc(100% - 60px);
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.my-card__text-block > h3 {
  color: var(--black);
  font-family: "Poppins";
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.my-card__text-block > p {
  color: rgba(7, 7, 7, 0.7);
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.my-card__num {
  color: var(--orange);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.149px;
}

.my-card__text {
  color: var(--black);
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.149px;
  min-height: 66px;
}

.cards__heading > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: fit-content;
}

.cards__heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
}

.cards__title {
  color: var(--black);
}

.cards__subtitle {
  color: rgba(7, 7, 7, 0.7);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.72px;
}

/* cards */

/* speakers grid */
.speakers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.speakers-grid {
  display: grid;
  width: 100%;
}

.speakers-grid--desktop {
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}

.speaker-img {
  aspect-ratio: 1;
  width: 100%;
  margin-bottom: 5px;
}

.speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.speaker-position {
  color: var(--orange);
  text-align: center;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.speaker-name {
  color: var(--white);
  text-align: center;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 88.992%;
}

.speakers-grid--mobile {
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 20px;
}

.speakers-mobile {
  display: none;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* speakers grid */

/* footer form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 467px;
  width: 100%;
  flex-shrink: 0;
}

.footer-form__text {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.09px;
}

.footer-form__input {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  padding: 15px 20px;
}

.footer-form__input,
.footer-form__input::placeholder {
  color: var(--white);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-form-btn {
  margin-left: auto;
  margin-top: 20px;
}

/* footer form */

/* empires title */
.empires {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.empires__block {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(14% at 50% 50%);
}

.empires__block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.empires__title {
  position: relative;
  color: var(--white);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -6.72px;
}

.empires__title span,
.empires__title div {
  font: inherit;
  /* color: var(--orange); */
}

.emp-title2 {
  color: var(--orange);
}

.empires__inner {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0px auto;
}

.quote {
  position: absolute;
  width: 67px;
  height: 46px;
  display: block;
  /* opacity: 0; */
}

.quote svg {
  width: 100%;
  height: 100%;
}

.quote1 {
  top: 0;
  left: 0;
  transform: translate(-100%, -100%);
}

.quote2 {
  right: 0;
  top: 100%;
}

/* empires title */

/* new styles */
body:has(.inside-page) footer .top {
  display: none;
}

.mk-d-none {
  display: none;
}

/* new styles */

/* mobileSwiper */
.mobileSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
}

.mobileSwiper .text {
  flex: 1;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.mobileSwiper .title {
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
  /* 24px */
}

.mobileSwiper .name {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 105%;
  /* 18.9px */
  letter-spacing: -0.54px;
  text-transform: capitalize;
}

.mobileSwiper .position {
  margin-top: 5px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 500;
  line-height: 105%;
  /* 18.9px */
  letter-spacing: -0.54px;
  text-transform: capitalize;
}

/* mobileSwiper */

/* hero3 */
.hero3 {
  height: 100vh;
  padding-top: 135px;
  padding-bottom: 80px;
}

.hero3 .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero3__title {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 96px */
  letter-spacing: -4.8px;
  max-width: 725px;
}

.hero--title > div:nth-child(2) {
  display: flex;
  justify-content: end;
}

div.hero3__title {
  text-align: end;
}

.hero3 .mk-btn-conteiner {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.mk--btn.transparent {
  border: 1px solid #fff;
  background: transparent;
}

.mk--btn.transparent:hover {
  opacity: 0.6;
  color: var(--white);
}

/* hero3 */

/* textSection */
.textSection {
  padding: 90px 0 60px;
}

.textSection .container {
  display: flex;
  justify-content: space-between;
}

.textSection .text {
  display: flex;
  gap: 20px;
}

.textSection .text p {
  max-width: 328px;
  width: 100%;
  flex-shrink: 0;
  text-align: justify;
  font-size: 20px;
  font-weight: 400;
  line-height: 127%;
  /* 25.4px */
}

.textSection .text-orange {
  max-width: 566px;
  color: var(--orange);
  font-family: "Playfair Display";
  font-size: 27px;
  font-weight: 500;
  line-height: 127%;
  /* 34.29px */
}

.textSection .line {
  min-height: 150px;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}

/* textSection */

/* sponsorSlider */
.sponsorSlider {
  background: var(--white);
}

.mk-swiper-pagination {
  display: block;
  position: static !important;
}

.mk-swiper-pagination span.swiper-pagination-progressbar-fill {
  position: static;
  display: block;
  height: 4px;
  width: 100%;
  background: var(--orange);
}

.sponsorSlider-first .swiper-slide {
  padding: 40px 20px;
  border-radius: 15px;
  background: rgba(7, 7, 7, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  height: auto;
}

.sponsorSlider-first .num {
  color: #070707;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  /* 43.2px */
  letter-spacing: -1.08px;
}

.sponsorSlider-first .text {
  margin-top: 10px;
  color: #070707;
  font-family: "Playfair Display";
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
}

.sponsorSlider-first .position {
  margin-top: 28px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  /* 19.8px */
}

.sponsorSlider-second .swiper-slide {
  padding: 40px 20px;
  border-radius: 15px;
  background: rgba(7, 7, 7, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(25px);
  height: auto;
}

.sponsorSlider-second .position {
  margin-top: 10px;
  color: var(--black);

  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.32px;
}

.sponsorSlider-second .num {
  color: var(--black);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.08px;
}

.sponsorSlider .slider-btn {
  border-radius: 50px;
  background: rgba(7, 7, 7, 0.05);
  color: var(--black);
}

.sponsorSlider--content {
  max-width: 100%;
  display: flex;
  align-items: end;
  gap: 10px;
}

.sponsorSlider--1 {
  max-width: 60%;
}

.sponsorSlider--2 {
  width: 100%;
  max-width: 39%;
}

.sponsorSlider .bottom {
  margin-top: 40px;
}

.sponsorSlider .mobail-bottom {
  margin-top: 40px;
  display: flex;
  align-items: end;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 10px;
}

.sponsorSlider .mk-swiper-pagination {
  max-width: 900px;
}

.sponsorSlider .top {
  display: flex;
  gap: 80px;
  align-items: end;
  justify-content: space-between;
}

.sponsorSlider .top .title-h2 {
  color: var(--black);
  max-width: 680px;
}

.sponsorSlider .top > div {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}

.sponsorSlider .top p,
.sponsorSlider .top p a {
  color: #808080;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}

.sponsorSlider .top p a {
  color: #070707;
  font-weight: 600;
}

/* sponsorSlider */
section.foto {
  background: var(--white);
}

section.foto img {
  display: block;
}

/* lets */
.lets .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lets--title {
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 150px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
}

.lets--text {
  max-width: 940px;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}

.lets--btn {
  display: flex;
  gap: 20px;
}

/* lets */

/* co-hosting */
.co-hosting .container {
  display: flex;
  justify-content: center;
}

.co-hosting .title-h2 {
  text-align: center;
}

.co-hosting--content {
  max-width: 917px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.co-hosting .descr {
  color: rgba(255, 238, 230, 0.7);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
}

.co-hosting--bottom {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.co-hosting--bottom > div {
  border-radius: 40px;
  padding: 40px;
}

.co-hosting--bottom .orange {
  background: var(--orange);
}

.co-hosting--bottom .black {
  background: rgba(255, 255, 255, 0.05);
}

.co-hosting--bottom .title {
  font-family: "Playfair Display";
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
}

.co-hosting--bottom .text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
}

.co-hosting--bottom .black .text {
  color: #808080;
}

.co-hosting--bottom ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.co-hosting--bottom ul li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.co-hosting--bottom ul li p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

/* co-hosting */

/* dedicated */
.dedicated .title-h2 {
  text-align: center;
}

.dedicated--content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.dedicated--content .img {
  height: 375px;
  border-radius: 10px;
  overflow: hidden;
}

.dedicated--content .img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dedicated--content .num {
  margin-top: 25px;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.08px;
}

.dedicated--content .title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.72px;
}

.dedicated--btn {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* dedicated */

/* quotes */
.quotes {
  overflow: visible;
}

.quotes--btn {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.quotes--inner {
  position: relative;
  min-height: 40vh;
  padding-top: 250px;
}

.vip--inner a {
  font-size: 16px;
  padding: 15px 21px;
}

.quotes--inner a {
  padding: 15px 21px;
  font-size: 16px;
}
.quotes--inner.quotes--inner2 {
  padding-top: 0;
}

.quotes--text {
  top: 0;
  width: 100%;
  position: absolute;
  height: 100%;
}

.quotes--text-stiky {
  top: 0;
  position: sticky;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 7vh;
}

.quotes--text-stiky.quotes--text-stiky2 {
  height: 55vh;
}

.quotes--text p {
  font-family: "Playfair Display";
  font-size: 260px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -8.152px;
}

.quotes--wrap {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.quotes-foto {
  width: 226px;
  aspect-ratio: 1/1;

  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(7, 7, 7, 0.9);
  background-image: url(../images/q-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.quotes-foto img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.quotes--item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

.quotes-text {
  margin-top: 70px;
  margin-left: -40px;
  max-width: 380px;
  padding: 40px 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.quotes-text .text {
  font-family: "Playfair Display";
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
}

.quotes-text .name {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 105%;
  letter-spacing: -0.6px;
  text-transform: capitalize;
}

.quotes-text .position {
  margin-top: 5px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  /* 19.8px */
}

/* quotes */

/* spoken */
.spoken .title-h2 {
  text-align: center;
}

.spoken--content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

.spoken-item .img {
  height: 457px;
  border-radius: 5px;
  overflow: hidden;
}

.spoken-item .img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.spoken-item .position {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 88.992%;
}

.spoken-item .name {
  margin-top: 10px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}

.spoken-btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.spoken-btn .mk--btn {
  text-transform: uppercase;
}

/* spoken */

/* bgText */

.bgText--inner {
  min-height: 100vh;
  height: 100%;
  padding: 40px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.bgText--inner .img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bgText--inner .img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bgText--title,
.bgText--title span {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 96px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
}

.bgText--title span {
  color: var(--orange);
}

/* bgText */

/* hero4 */
.hero4 {
  padding: 200px 0 100px;
  height: 100vh;
}

.hero4 .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero4__title {
  max-width: 950px;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 96px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -4.8px;
}

.hero-bottom-conteiner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-bottom-conteiner .mk--btn {
  text-transform: uppercase;
}

.hero-bottom-conteiner .left {
  display: flex;
  gap: 40px;
}

.hero-bottom-conteiner p {
  max-width: 450px;
  text-align: justify;
  font-size: 20px;
  font-weight: 400;
  line-height: 127%;
  /* 25.4px */
}

/* hero4 */

/* mk__numbers */
.mk__numbers {
  padding-top: 90px;
}

.mk__numbers .img {
  width: 698px;
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
}

.mk__numbers--inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 20px;
}

.mk__numbers-item {
  padding: 50px 30px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mk__numbers-item .num {
  color: var(--orange);
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 96px;
  font-weight: 400;
  line-height: 110%;
  /* 105.6px */
  letter-spacing: -2.88px;
}

.mk__numbers-item p {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 24px */
  letter-spacing: -0.48px;
}

.mk__numbers--inner .mk__numbers-item:nth-child(2) {
  margin-top: 100px;
}

.mk__numbers--inner .mk__numbers-item:nth-child(3) {
  margin-top: 200px;
}

/* mk__numbers */
.contentCouncil-bottom--btn {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.speaker-page .contentCouncil-item {
  align-items: center;
}

.speaker-page .contentCouncil-title {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.speaker-page .contentCouncil-title .title-h2 {
  text-align: center;
}

.speaker-page .contentCouncil-title .text {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  letter-spacing: -0.72px;
}

.q-theme .quotes--wrap {
  display: block;
}

.quotesThems--grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.quotesThems--item {
  position: relative;
  flex: 0 0 auto;
  min-width: 300px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 15px;
  background-color: rgba(255, 238, 230, 0.05);
  border: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}

.quotesThems--item.is-open {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.46) 4%,
    rgba(15, 15, 15, 0.46) 76%
  );
  border-color: rgba(255, 238, 230, 0.2);
}

.quotesThems--item .foto {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.quotesThems--item .title {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  color: #fff;
  transition: color 0.35s ease;
}

.quotesThems--item.is-open .title {
  color: #e76315;
}

.quotesThems--toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.35s ease,
    color 0.35s ease;
}

.quotesThems--item.is-open .quotesThems--toggle {
  border-color: rgba(231, 99, 21, 0.5);
  color: #e76315;
}

.qt-minus {
  display: none;
}

.quotesThems--item.is-open .qt-plus {
  display: none;
}

.quotesThems--item.is-open .qt-minus {
  display: block;
}

.quotesThems--body {
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  transition:
    grid-template-rows 0.35s ease,
    padding-top 0.35s ease;
  /* Не даём тексту внутри влиять на ширину карточки */
  contain: inline-size;
}

.quotesThems--body > .text {
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.8px;
  max-width: 440px;
  color: #a8a8a8;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.quotesThems--item.is-open .quotesThems--body,
.quotesThems--item.is-closing .quotesThems--body {
  padding-top: 14px;
}

.quotesThems--item.is-open .quotesThems--body {
  grid-template-rows: 1fr;
}

.quotesThems--item.is-open .quotesThems--body > .text {
  opacity: 1;
  transition: opacity 0.2s ease 0.25s;
}

/* speaker2 */

.speaker2--inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.speaker2-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.speaker2--item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.greatest__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.greatest__grid-item {
  border-right: 1px solid rgba(255, 255, 255, 0.44);
  padding-left: 10px;
}

.greatest__grid-item:nth-child(5) {
  border: none;
}

.greatest__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.greatest__btns a {
  font-size: 16px;
}

.greatest__grid-item-img,
.greatest_item_text {
  width: 266px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.greatest__grid-item-img {
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
}

.greatest--inner .mk--btn {
  padding: 15px 21px;
}

.greatest_item_text p {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Playfair Display";
  font-size: 37.108px;
  font-style: normal;
  font-weight: 700;
  line-height: 87.365%; /* 32.419px */
  letter-spacing: -1.855px;
}

.greatest__grid-item-img img {
  max-height: 45px;
  width: auto;
}

.speaker2--item .top {
  height: 277px;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
}

.speaker2--item .top img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.speaker2--item .bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.speaker2--item .bottom .logo {
  flex-shrink: 0;
  width: 77px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker2--item .bottom .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.speaker2--item .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.speaker2--item .position,
.speaker2--item .position span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 16px */
}

.speaker2--item .position span {
  font-style: italic;
  font-weight: 700;
}

.speaker2--item .name {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

.speaker2--inner .orange-text {
  color: #9c9c9c;
  font-family: Poppins;
  font-size: 25.335px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

.speaker2--inner .mk--btn {
  padding: 15px 21px;
  font-size: 16px;
}

.speaker2--btn {
  display: flex;
  gap: 20px;
}

/* speaker2 */

/* vip */
.vip--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vip--inner .text {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  letter-spacing: -0.72px;
}

.vip--grid3 {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.vip--grid3 .item {
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
}

.vip--grid3 .item img {
  display: block;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.vip--grid5 {
  margin-bottom: 40px;
  margin-top: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.vip--grid5 .item {
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
}

.vip--grid5 .item img {
  display: block;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

/* vip */

.testik {
  margin-top: 80px;
  position: relative;
  height: 500px;
  background: var(--black);
  overflow: hidden;
}

.testik__white {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 1;
}

.testik__white.testik__white--first {
  background: #faf8f5;
}

.testik__circle {
  position: absolute;
  left: 50%;
  top: -390px;
  z-index: 2;
  width: 2000px;
  height: 900px;
  border-radius: 50%;
  pointer-events: none;
  --grad-progress: 0%;
  --orange-color: #070707;
  --white-color: #e4e4e4;
  background: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #070707 0%,
    #070707 calc(60% - var(--grad-progress)),
    var(--orange-color) calc(85% - var(--grad-progress)),
    var(--white-color) calc(100% - var(--grad-progress))
  );

  filter: blur(40px);
}

/* .testik__circle {
  position: absolute;
  left: 50%;
  top: -390px;
  width: 160vw;
  height: 900px;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  --grad-progress: 0%;
  background: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #070707 0%,
    #070707 calc(60% - var(--grad-progress)),
    #e76315 calc(85% - var(--grad-progress)),
    #ffffff calc(100% - var(--grad-progress))
  );
  filter: blur(40px);
  -webkit-filter: blur(40px);
} */

/*new styles*/
.hero_pitch {
  overflow: initial;
}

.hero_pitch::before {
  content: url(/wp-content/themes/proof/assets/images/pr_hero_grad.png);
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
  position: absolute;
}

.hero_pitch_img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero_pitch_img img {
  max-width: 1195px;
  width: 100%;
}

.hero_pitch h1 {
  font-size: 95px;
  font-weight: 500;
  color: #fff;
  font-family: "Playfair Display";
  line-height: 95px;
  margin-top: 14px;
  letter-spacing: -3px;
  margin-bottom: 3px;
}

.hero_pitch p {
  font-size: 25px;
  color: #fff;
  font-weight: 400;
  padding-top: 15px;
}

.hero_pitch_but {
  position: absolute;
  right: 0;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px 21px;
  margin-top: -70px;
  cursor: pointer;
}

.hero_sponsors {
  display: flex;
  gap: 15px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.hero_sponsors_itm {
  height: 50px;
  flex: 0 0 calc(100% / 7);
  background-color: #161616;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 10px;
}

.hero_sponsors_itm img {
  width: 100%;
  height: 100%;
}

.hero_sponsors_itm:nth-child(7n + 1) {
  flex-basis: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.pfp_tracks {
  padding-top: 200px;
  position: relative;
  padding-bottom: 222px;
}

.pfp_tracks::after {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(/wp-content/themes/proof/assets/images/track_elipse.png);
  background-position: bottom right;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.pfp_tracks_row {
  display: flex;
}

.pfp_tracks h2 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 176px;
  margin-top: 49px;
  letter-spacing: 1px;
  line-height: 181px;
}

.pfp_tracks_glasses {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.pfp_tracks_glass {
  padding: 30px 43px;
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  background: rgb(82 82 82 / 20%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 373px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.pfp_tracks_glass.glass_1 {
  margin-top: 58px;
  margin-right: 62px;
}

.pfp_tracks_glass.glass_2 {
  margin-right: 202px;
  margin-top: 78px;
}

.speaker2_proof {
  padding-top: 62px;
}

.more_anonce {
  color: #9b9b9b;
  font-size: 18px;
  text-align: center;
}

.ecosystems {
  padding-top: 130px;
}

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

.title-h2 img {
  height: 60px;
  width: auto;
}

.ecosystem_row {
  display: flex;
  margin-top: 50px;
}

.ecosystem_col {
  width: 50%;
}

.ecosystems_itm {
}

.ecosystems_4_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.ecosystems_4_logo .ecosystems_itm {
  width: 50%;
  text-align: center;
  padding: 10px 0;
}

.ecosystems_itm img {
  max-width: 175px;
  width: 100%;
}

.ecosystem_title {
  color: #d35400;
  font-family: "Playfair Display";
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.container.ecosystems_cont {
  max-width: 1196px;
}

.ecosystems_3_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.ecosystems_3_logo .ecosystems_itm {
  width: 33%;
  text-align: center;
  padding: 10px 0;
}

.eco_logos {
  margin-top: 40px;
}

.eco_logos_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.eco_logos_items .ecosystems_itm {
  text-align: center;
  padding: 10px 0;
}

.eco_button {
  text-align: center;
  margin-top: 30px;
}

.eco_button_apply {
  padding: 18px 35px;
  text-transform: uppercase;
  color: #fff;
  background: #d35400;
  border-radius: 10px;
  border: none;
  font-size: 22px;
  cursor: pointer;
  transition: 0.4s all;
  display: inline-block;
  text-align: center;
}

.eco_button_apply:hover {
  color: #d35400;
  background: #fff;
}

.logo_table {
  margin-top: 100px;
}

.title_desc {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
}

.orange_text_title {
  color: #d35400;
  font-family: "Playfair Display";
  font-size: 64px;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -3.2px;
}

.logos_tbl {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  max-width: 1283px;
  margin: 0 auto;
  margin-top: 30px;
}

.logo_tbl_itm {
  width: 14.7%;
}

.logo_tbl_itm img {
}

.promis_desc {
  color: #a4a4a4;
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
}

.promis_items {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

.promis_item {
  width: 100%;
  background-color: #161616;
  height: 200px;
  border-radius: 25px;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  text-align: center;
}

.road {
  padding-top: 130px;
}

.road_items {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

.road_item {
  width: 100%;
  background: linear-gradient(
    131deg,
    rgb(211 84 0 / 51%) 0%,
    rgba(22, 22, 22, 1) 53%
  );
  background-color: #161616;
  padding: 15px;
  border-radius: 25px;
}

.road_item_title {
  border-bottom: 1px solid #ffffff69;
  font-family: "Playfair Display";
  font-size: 17px;
  font-weight: 600;
  height: 52px;
  align-items: center;
  display: flex;
  line-height: 15px;
}

.road_item_title span {
  color: #d35400;
  font-family: Poppins;
  margin-right: 15px;
}

.road_item_body {
  font-size: 18px;
  font-weight: 400;
  height: 100px;
  display: flex;
  align-items: end;
}

.prizes {
  padding-top: 130px;
}

.prz_lv1_row {
  max-width: 954px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.prz_lv1_col {
  width: 100%;
}

.prz_title {
  color: #d35400;
  font-size: 35px;
  font-family: "Playfair Display";
  font-weight: 600;
}

.prz_lv1_body {
  background-color: #161616;
  height: 184px;
  display: flex;
  padding: 20px 30px;
  border-radius: 25px;
  margin-top: 20px;
  align-items: center;
}

.prz_lv1_body ul {
  height: auto;
  gap: 12px;
  display: grid;
  padding-left: 10px;
}

.prz_lv1_body ul li {
  font-size: 16px;
  line-height: 16px;
  list-style: disc;
}

.prz_lv2 {
  max-width: 1196px;
  width: 100%;
  margin: 0 auto;
}

.prz_lv2_title {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.prz_lv2_row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.prz_lv2_col {
  width: 100%;
}

.prz_lv2_body {
  background-color: #161616;
  padding: 20px;
  border-radius: 25px;
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.prz_lv2_body svg {
  width: 100%;
}

.prz_lv2_body_text {
  font-size: 16px;
}

.prz_tags {
  max-width: 923px;
  margin: 0 auto;
  margin-top: 30px;
}

.prz_title.center_title {
  text-align: center;
  margin-top: 20px;
}

.prz_tags_line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.prz_tags_line span {
  background-color: #161616;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
}

.prz_lv1_row.width_1196 {
  max-width: 1196px;
  width: 100%;
}

.prz_lv1_body.height_148px {
  height: 148px;
}

.past {
  background-color: #fff;
  color: #000;
}

.black_title {
  font-family: "Playfair Display";
  font-size: 64px;
  color: #000000;
  text-align: center;
}

.black_desc {
  font-size: 20px;
  text-align: center;
  color: #000000;
  margin-top: 10px;
}

.past_stat {
  display: flex;
  max-width: 954px;
  margin: 0 auto;
  margin-top: 40px;
  padding-bottom: 30px;
}

.past_stat_col {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.past_stat_itm_big {
  color: #d35400;
  font-size: 45px;
  font-family: "Playfair Display";
  font-weight: 600;
  text-align: center;
  line-height: 50px;
}

.past_stat_itm_text {
  font-size: 20px;
  color: #000;
  text-align: center;
}

.orange_buttton {
  background-color: #d35400;
  color: #fff;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  padding: 16px 30px;
  font-size: 22px;
  transition: 0.4s all;
  cursor: pointer;
  border: 1px solid #d35400;
}

.orange_buttton:hover {
  background-color: #fff;
  color: #d35400;
}

.line_button {
  background-color: transparent;
  color: #000;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  padding: 16px 30px;
  font-size: 22px;
  transition: 0.4s all;
  cursor: pointer;
  border: 1px solid #000;
}

.line_button:hover {
  background-color: #fff;
  color: #d35400;
  border: 1px solid #d35400;
}

.past_stat_itm {
  display: grid;
  align-items: center;
}

.bottom_images {
  background-color: #fff;
}

.bottom_images_top {
  margin-bottom: 10px;
}

.bottom_images_top img {
  width: 100%;
  border-radius: 25px;
}

.bottom_images_bot {
  display: flex;
  gap: 15px;
}

.bottom_images_bot img {
  width: 100%;
  border-radius: 25px;
}

.bottom_images_bot div:nth-child(2) {
  margin-left: auto;
}

.media_hero {
  background: url(/wp-content/themes/proof/assets/images/media_hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 116vh;
}

.media_hero h1 {
  font-size: 122px;
  font-family: "Playfair Display";
  text-align: center;
  line-height: 85%;
  letter-spacing: -5%;
  margin-top: 133px;
}

.orange_link_but {
  background-color: #d35400;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  border: 1px solid #d35400;
  border-radius: 10px;
}

.orange_link_but:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #d35400;
}

.line_link_but {
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
}

.line_link_but:hover {
  border: 1px solid #d35400;
  color: #d35400;
}

.media_hero_buttons {
  max-width: 468px;
  margin: 0 auto;
  margin-top: 41px;
  gap: 30px;
  display: flex;
  /* padding-bottom: 200px; */
}

.media_hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero_stats {
  display: flex;
  gap: 30px;
  /* padding-top: 35%; */
}

.hero_stats_itm {
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  border-radius: 40px;
  background: #0000001a;
  padding-bottom: 20px;
}

.hsi_big {
  color: #df5e26;
  font-family: "Playfair Display";
  font-size: 70px;
}

.hsi_small {
  font-size: 20px;
}

.efew {
  padding-top: 104px;
}

.weight_normal {
  font-weight: 400;
}

.title-h2 b {
  font-family: "Playfair Display";
  font-size: 64px;
  font-weight: 600;
}

.efew_desc {
  color: #c3c3c3;
  font-size: 24px;
  text-align: center;
  padding-top: 10px;
}

.efew_desc b {
  font-weight: 700;
}

.efew_image {
  text-align: center;
  padding-top: 29px;
}

.efew_image img {
  width: 100%;
}

.efew_names {
  display: flex;
  margin: 0 auto;
}

.efew_names div {
  font-family: "Playfair Display";
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  line-height: 32px;
}

.efew_names div:nth-child(1) {
  width: 22%;
  padding-left: 157px;
}

.efew_names div:nth-child(2) {
  width: 23%;
  padding-left: 93px;
}

.efew_names div:nth-child(3) {
  width: 19%;
  padding-left: 16px;
}

.efew_names div:nth-child(4) {
}

.efew_names div:nth-child(5) {
  padding-left: 89px;
}

.efew_logos {
  display: flex;
  margin: 0 auto;
  padding-top: 16px;
}

.efew_logos div {
}

.efew_logos div img {
  width: 100%;
  max-width: 164px;
}

.efew_logos div:nth-child(1) {
  width: 22%;
  padding-left: 125px;
}

.efew_logos div:nth-child(2) {
  width: 22%;
  padding-left: 67px;
}

.efew_logos div:nth-child(3) {
  width: 17%;
  padding-left: 4px;
}

.efew_logos div:nth-child(4) {
  padding-left: 16px;
}

.efew_logos div:nth-child(5) {
  padding-left: 92px;
}

.efew_button {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 50px;
}

.media_turn {
  padding-top: 95px;
}

.mt_cards {
  max-width: 1196px;
  margin: 0 auto;
  padding-top: 38px;
  display: flex;
  gap: 23px;
}

.mt_cards::before {
  content: "";
  background: #070707;
  background: radial-gradient(
    circle,
    rgba(211, 84, 0, 0.216) 0%,
    rgba(7, 7, 7, 1) 55%
  );
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 27px;
}

.mt_cards_left {
  width: 31%;
  display: flex;
  gap: 23px;
  flex-direction: column;
}

.mt_card {
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff1f;
  background: #0e0e0e6e;
  height: 156px;
}

.mt_card_big {
  color: #d35400;
  font-family: "Playfair Display";
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  line-height: 53px;
}

.mt_card_small {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
}

.mt_cards_right {
  flex: 1;
  display: flex;
  gap: 23px;
  flex-direction: column;
}

.mt_card_logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mt_card_logos img {
  width: 23%;
}

.mt_card.mt_card_images {
  flex: 1;
}

.mt_card_screens {
  width: 100%;
}

.live_it {
  padding-top: 156px;
}

.live_it_wrap {
  background: url(/wp-content/themes/proof/assets/images/lit_bg.png);
  padding: 40px;
}

.live_it_top {
  display: flex;
}

.lit_left {
}

.lit_left h2 {
  font-family: "Playfair Display";
  color: #fff;
  font-size: 88px;
  line-height: 102%;
  font-weight: 500;
  line-height: 103%;
}

.lit_left h2 span {
  font-family: "Playfair Display";
  color: #fff;
  font-size: 88px;
  font-style: italic;
  font-weight: 500;
  line-height: 103%;
}

.lit_right {
  margin-left: auto;
  background: #000;
  width: 558px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-around;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: #0e0e0e6e;
}

.lit_right_itm {
  text-align: center;
  width: 100%;
}

.lit_right_itm_big {
  font-family: "Playfair Display";
  font-size: 60px;
  color: #d35400;
  line-height: 110%;
}

.lit_right_itm_small {
  color: #fff;
  line-height: 110%;
  font-size: 18px;
  padding-top: 18px;
}

.lit_anonce {
  font-size: 18px;
  color: #fff;
  padding-top: 27px;
}

.live_it_bottom {
  display: flex;
  gap: 20px;
  padding-top: 46px;
}

.live_it_bottom img {
  width: calc((100% - 40px) / 3);
}

.qt {
  padding-top: 115px;
  padding-bottom: 50px;
}

.qt_wrap {
  max-width: 1195px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.qt_img {
  width: 315px;
  display: block;
  padding-top: 14px;
}

.qt_img img {
  width: 315px;
  height: 315px;
  border-radius: 15px;
}

.qt_text {
  padding: 40px 20px;
}

.qt_text_body {
  font-family: "Playfair Display";
  color: #fff;
  font-size: 32px;
  padding-top: 24px;
  line-height: 110%;
}

.qt_text_name {
  font-size: 20px;
  margin-top: 24px;
}

.qt_text_job {
  color: #d35400;
  font-size: 18px;
}

.md_partners {
  padding-top: 74px;
}

.md_partners_wrap {
  max-width: 1195px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.md_partners_wrap h3 {
  font-family: "Playfair Display";
  color: #fff;
  font-size: 64px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 20px;
}

.md_logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.md_logos div {
  width: 21%;
  padding: 10px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #212121;
}

.md_logos img {
  width: 100%;
}

.lanch_gallery {
  padding-top: 126px;
}

.lanch_gallery_desc {
  text-align: center;
  font-size: 24px;
  color: #fff;
  padding-top: 28px;
}

.lg_items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 35px;
}

.lg_items div {
  width: calc((100% - 40px) / 3);
}

.lg_items div img {
  width: 100%;
}

.press_pass {
  position: relative;
  overflow: visible;
  background-color: #fff;
}

.press_pass::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/proof/assets/images/press_pass_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.press_pass_wrap {
  width: 50%;
  margin-left: auto;
  padding-top: 228px;
  padding-bottom: 491px;
  z-index: 9;
  position: relative;
}

.press_pass_wrap h2 {
  font-family: "Playfair Display";
  color: #000;
  font-size: 63px;
  line-height: 110%;
}

.gallery_container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.gallery_container .line_link_but {
  width: fit-content;
}

.press_pass_wrap p {
  font-size: 20px;
  color: #000;
  text-align: right;
  margin-top: 33px;
  line-height: 130%;
}

.press_pass_buttons {
  padding-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: end;
}

.line_link_black_but {
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-size: 16px;
  padding: 15px 20px;
  border: 1px solid #000;
  border-radius: 10px;
}

.line_link_black_but:hover {
  border: 1px solid #d35400;
  color: #d35400;
}

.media_logos_butt {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 68px;
  padding-bottom: 50px;
}

.mg_wrap {
  display: flex;
  gap: 20px;
}

.mg_left {
  width: 478px;
}

.mg_left img {
  width: 100%;
}

.mg_right {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}

.mg_right img {
  width: calc((100% - 20px) / 2);
  height: calc((100% - 20px) / 2);
}

.media_gallary {
  padding-top: 80px;
}

.media_bn {
  padding-top: 125px;
}

.media_bn_wrap {
  background: url(/wp-content/themes/proof/assets/images/media_bn_bg.png);
  padding: 40px;
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;
}

.media_bn_wrap p {
  font-size: 96px;
  font-family: "Playfair Display";
  color: #fff;
  line-height: 110%;
  padding-top: 54px;
}

.media_bn_wrap p span {
  color: #d35400;
  font-size: 96px;
  font-family: "Playfair Display";
  line-height: 110%;
}

.media_bn_but {
  padding-top: 50px;
  text-align: center;
  padding-bottom: 61px;
}

.efew_names_mobi,
.efew_logos_mobi {
  display: none;
}

.bit_hero {
  background: url(/wp-content/themes/proof/assets/images/bit_hero_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bit_hero_inner {
  text-align: center;
  padding-top: 371px;
}

.bit_hero_logo {
  max-width: 500px;
}

.bit_hero_inner h1 {
  font-family: "Playfair Display";
  line-height: 85%;
  font-size: 115px;
  padding-top: 14px;
  letter-spacing: -3%;
}

.bit_hero_but {
  text-align: center;
  padding-top: 91px;
  padding-bottom: 100px;
}

.opensource {
  padding-top: 64px;
}

.web_title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/wp-content/themes/proof/assets/images/web_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 181px;
  border: 1px solid #ffffff33;
  border-radius: 15px;
}

.web_title h3 {
  font-family: "Playfair Display";
  text-align: center;
  font-size: 40px;
  font-style: italic;
}

.web_text {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
}

.web_text > div {
  width: 45%;
}

.web_text p {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 119%;
}

.web_text b {
  font-weight: 700;
  color: #fff;
}

.text-right {
  text-align: right;
}

.web_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  padding-top: 80px;
}

.web_logos > div {
  width: calc((100% - 140px) / 3);
  text-align: center;
}

.web_logos img {
  max-width: 340px;
}

.bit_community {
  background-color: #fff;
  color: #000;
  padding-top: 92px;
  background-image: url(/wp-content/themes/proof/assets/images/bit_c_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  padding-bottom: 446px;
}

.bit_c_date {
  display: flex;
  justify-content: space-between;
  max-width: 728px;
  margin: 0 auto;
  font-size: 20px;
}

.bit_community h2 {
  color: #000;
  font-family: "Playfair Display";
  text-align: center;
  font-weight: 600;
  font-size: 98px;
  line-height: 110%;
  padding-top: 15px;
}

.bit_c_desc {
  text-align: center;
  font-size: 34px;
  line-height: 115%;
  padding-top: 12px;
}

.bit_c_desc span {
  font-size: 34px;
  color: #e76315;
  font-weight: 800;
}

.bit_c_but {
  text-align: center;
  padding-top: 53px;
  padding-bottom: 50px;
}

.first_speakers {
  padding-top: 133px;
}

.fp_image {
  max-width: 1196px;
  margin: 0 auto;
  padding-top: 37px;
}

.fp_names {
  display: flex;
  justify-content: space-around;
  max-width: 1196px;
  margin: 0 auto;
}

.fp_names_itm {
  text-align: center;
}

.fp_names_itm_name {
  font-family: "Playfair Display";
  font-size: 40px;
}

.fp_names_itm_job {
  color: #e76315;
  font-style: italic;
  font-size: 18px;
}

.fp_names_itm_logo {
  padding-top: 22px;
  text-align: center;
}

.fp_names_itm_logo img {
  max-width: 164px;
}

.fp_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 37px;
}

.sp_text {
  padding-top: 50px;
}

.sp_text p {
  font-family: "Playfair Display";
  color: #d35400;
  font-size: 36px;
  text-align: center;
}

.sp_but {
  text-align: center;
  padding-top: 44px;
  padding-bottom: 20px;
}

.bit_gallery {
  padding-top: 80px;
}

.bit_gallery_title {
  font-family: "Playfair Display";
  font-size: 64px;
  font-style: italic;
  font-weight: 400;
  text-align: center;
}

.bit_gallery_subtitle {
  font-size: 24px;
  font-style: italic;
  font-weight: 100;
  text-align: center;
}

.bit_gallery_items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0;
}

.bit_gallery_items > div {
  width: calc((100% - 60px) / 4);
}

.council-text .title-h2 {
  max-width: 848px;
  text-align: center;
}

.council-subtitle {
  color: #c3c3c3;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.72px;
}
.council-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 48px;
}

.council__jobs img {
  align-self: center;
  width: auto;
  height: revert;
}

.council__jobs img:nth-child(1) {
  grid-column: span 2;
  justify-self: center;
}

.council__img {
  width: 278px;
  height: 228px;
}

.council__item:nth-child(1) .council__jobs {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  row-gap: 0;
  column-gap: 0;
}

.council__jobs {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.council__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 25px;
}

.council__grid .council__item {
  flex: 0 0 21%;
  max-width: 302px;
}

.council_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 30px;
  gap: 20px;
}

.council__pos,
.council__pos * {
  color: #b1b1b1;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Poppins;
  font-size: 16.598px;
  font-style: italic;
  font-weight: 300;
  line-height: 107%; /* 17.759px */
  letter-spacing: -0.83px;
}

.council__pos span {
  max-width: 136px;
}

.council__pos {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  height: 30px;
}

.council__name {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Playfair Display";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 87.365%; /* 26.209px */
  letter-spacing: -1.5px;
  padding-right: 30px;
  margin: 20px 0 25px 0;
}

.council_subtext p {
  color: #d35400;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 39.6px */
}

.council_subtext {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.council__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.council__btns a {
  padding: 15px 21px;
  font-size: 16px;
}

.global__item {
  width: 311px;
  height: 161px;
  border-radius: 30px;
  background: rgba(14, 14, 14, 0.43);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  position: relative;
  backdrop-filter: blur(10px);
}

.global__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background:
    radial-gradient(
      ellipse at 0% 0%,
      rgba(255, 255, 255, 0.75) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(255, 255, 255, 0.75) 0%,
      transparent 55%
    ),
    rgba(255, 255, 255, 0.1);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.global__item span {
  color: #d35400;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 61.15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 67.265px */
  letter-spacing: -3.057px;
}

.global__item p {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Poppins;
  font-size: 18.345px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 20.179px */
  letter-spacing: -0.917px;
}

.global .title-h2 {
  max-width: 1188px;
  text-align: center;
}

.global .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 81px;
}

.global-l {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.global-r-t-item img {
  max-height: 36px;
  width: auto;
}

.global-r-t-item {
  height: 82px;
  padding: 0 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-r-t-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.global-r-t-item:nth-child(1),
.global-r-t-item:nth-child(2),
.global-r-t-item:nth-child(3),
.global-r-t-item:nth-child(4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.global-r-t-item:nth-child(4)::after,
.global-r-t-item:nth-child(7)::after {
  display: none;
}

.global-r-t {
  display: flex;
  flex-wrap: wrap;
  max-width: 807px;
  border-radius: 31.118px;
  background: rgba(14, 14, 14, 0.43);
  position: relative;
  backdrop-filter: blur(10px);
}

.global-r-t::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 31.118px;
  padding: 1px;
  background:
    radial-gradient(
      ellipse at 0% 0%,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 55%
    ),
    rgba(255, 255, 255, 0.1);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.global {
  background-image: url("../images/global-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.global__content {
  display: flex;
  gap: 27px;
}

.global-r-b-img {
  width: 807px;
  display: flex;
  align-items: end;
  justify-content: end;
  overflow: hidden;
  height: 345px;
  position: relative;
  backdrop-filter: blur(10px);
  border-radius: 30px;
}

.global-r-b-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(
      ellipse at 0% 0%,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 55%
    ),
    rgba(255, 255, 255, 0.1);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.global-r-b-img img {
  object-fit: cover;
}

.global-r-b {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.global-r-b h3 {
  color: #fff;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 44px */
  letter-spacing: -2px;
  text-transform: capitalize;
}

.global-r-b-info-item span {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 133.08%; /* 23.954px */
  opacity: 0.57;
}

.global-r-b-info-item p {
  color: #d35400;
  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.08%; /* 15.97px */
}

.global-r-b-info-item {
  gap: 8px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.global-r-b-info-item:nth-child(5) {
  border-right: none;
}

.global-r-b-info {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0 28px 24px;
  border-radius: 30px;
  position: relative;
  backdrop-filter: blur(10px);
  max-width: 807px;
}

.global-r-b-info::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background:
    radial-gradient(
      ellipse at 0% 0%,
      rgba(255, 255, 255, 0.75) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(255, 255, 255, 0.75) 0%,
      transparent 55%
    ),
    rgba(255, 255, 255, 0.1);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.graphics .title-h2 {
  max-width: 1142px;
  text-align: center;
}

.graphics__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  margin: 31px 0 41px 0;
}

.graphics .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.graphics__content {
  display: flex;
  gap: 4px;
}

.graphics-l img {
  height: 588px;
  width: auto;
}

.graphics-l {
  display: flex;
  flex-direction: column;
  margin-right: 6px;
  gap: 25px;
  padding: 20px 15px 0 30px;
  border-radius: 25px;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(4.5px);
}

.graphics-l h3 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 25.86px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 28.447px */
  letter-spacing: -0.808px;
}

.graphics-c {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.graphics-item {
  width: 449px;
  height: 173px;
  display: flex;
  flex-direction: column;
  padding: 24px 0 24px 30px;
  border-radius: 25px;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(4.5px);
  justify-content: space-between;
}

.graphics-item:nth-child(3) {
  height: 309px;
}

.graphics-item p {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.9px;
}

.graphics-item span {
  color: #e76315;
  font-family: "Playfair Display";
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 88px */
  letter-spacing: -5.347px;
}

.graphics-item:nth-child(3) p {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 25.86px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 28.447px */
  letter-spacing: -0.808px;
}

.graphics-r {
  padding: 20px 16px 16px 30px;
  border-radius: 25px;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(4.5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.graphics-r h3 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 25.86px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 28.447px */
  letter-spacing: -0.808px;
}

.graphics-r-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.graphics-r-content > span {
  color: #e76315;
  font-family: "Playfair Display";
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 59.4px */
  letter-spacing: -2px;
}

.graphics-r-content > p {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 18px */
  letter-spacing: -0.36px;
  margin-bottom: 8px;
}

.graphics-r-list p {
  color: #e76315;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 15.4px */
  letter-spacing: -0.435px;
}

.graphics-r-list li {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.graphics-r-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.graphics__btns,
.investors__btns {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  margin-top: 55px;
}

.graphics__btns a,
.investors__btns a {
  width: fit-content;
  padding: 10px 21px;
}

.investors .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investors .title-h2 {
  text-align: center;
  max-width: 1260px;
}

.investors__subtitle {
  color: rgba(255, 238, 230, 0.7);
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.72px;
  margin: 30px 0 18px 0;
  max-width: 758px;
}

.investor {
  width: 193px;
  height: 97px;
}

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

.investors__btns {
  margin-top: 50px;
}

.reason .title-h2 {
  text-align: center;
  width: 90%;
}

.reason .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.reason__content {
  display: flex;
  flex-direction: column;
  background-image: url("../images/reason-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 45px;
  height: 726px;
  width: 100%;
  padding: 133px 0 30px 0;
  align-items: center;
  justify-content: space-between;
}

.reason__text h3 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 35px;
  font-style: italic;
  font-weight: 400;
  line-height: 137.8%; /* 48.23px */
  letter-spacing: -1.05px;
  max-width: 863px;
}

.reason__text p {
  color: #fff;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 137.8%; /* 41.34px */
  letter-spacing: -0.9px;
}

.reason__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reason__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.reason__btns a {
  padding: 15px 21px;
}

.proofForm__text-sm {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Playfair Display";
  font-size: 66.296px;
  font-style: normal;
  font-weight: 500;
  line-height: 111%; /* 73.589px */
  letter-spacing: -3.799px;
}

.proofForm__text-lg {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 111.74px;
  font-style: normal;
  font-weight: 500;
  line-height: 111%; /* 124.031px */
  letter-spacing: -5.129px;
}

.proofForm__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proofForm .mk--btn {
  padding: 15px 21px;
  width: fit-content;
  background-color: transparent;
}

.partners__grid-img {
  width: 100%;
  height: auto;
  max-width: 1028px;
}

.speaker-company-logo {
  max-height: 25px;
  width: auto;
}

.inside-vip-img {
  margin-top: 60px;
}
