:root {
  --color-blue: #0047ff;
  --color-green: #00df66;
  --color-white: #fdfdfd;
  --color-black: #333333;
  --color-black--rgb: 51, 51, 51;
  --color-grey: #626570;
  --color-blue--rgb: (0, 71, 255);
}

:root {
  --cf-font: "Montserrat", sans-serif;
}

.career-forum-header,
.career-forum-marquee,
.career-forum-section,
.career-forum-location,
.career-forum-form,
.career-forum-footer,
.video-popup-overlay,
.about-banner {
  font-family: var(--cf-font);
}

.career-forum-section input,
.career-forum-section button,
.career-forum-section select,
.career-forum-section textarea,
.career-forum-form input,
.career-forum-form button,
.career-forum-header .btn,
.career-forum-footer input,
.career-forum-footer button {
  font-family: var(--cf-font);
}

.career-forum-header__wrapper,
.career-forum-menu__item,
.career-forum-header__button .btn,
.career-forum-marquee__part {
  font-family: "Montserrat", sans-serif;
}

.career-forum-section {
  margin-top: 8rem;
}

.career-forum-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background-color: var(--color-white);
}

.career-forum_container {
  padding: 0 10vw;
}

@media (max-width: 768px) {
  .career-forum_container {
    padding: 0 10px;
  }
}

.career-forum-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.career-forum-header__logo a {
  display: block;
  max-width: 200px;
}
.career-forum-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.career-forum-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.career-forum-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.career-forum-menu__item {
  font-size: 16px;
  color: var(--color-black);
  transition: color 0.2s ease;
}
.career-forum-menu__item:hover {
  color: var(--color-blue);
}

.career-forum-header__button .btn {
  display: block;
  width: fit-content;
  color: var(--color-white);
  padding: 18px 36px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  border: 2px solid var(--color-blue);
  background-color: var(--color-blue);

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.career-forum-header__button .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-green);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.career-forum-header__button .btn:hover {
  color: var(--color-black);
  font-weight: 500;
  border-color: var(--color-green);
  box-shadow: 0 5px 15px rgba(0, 223, 102, 0.4);
}

.career-forum-header__button .btn:hover::before {
  width: 100%;
}

.career-forum-menu__toggle {
  display: none;
}

@keyframes career-forum-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.career-forum-header__marquee {
  z-index: 1;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.career-forum-marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.career-forum-marquee__inner {
  display: flex;
  width: fit-content;
  flex-wrap: nowrap;

  animation-name: career-forum-marquee-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  will-change: transform;
}

.career-forum-marquee-1 .career-forum-marquee__inner {
  animation-duration: 60s;
}

.career-forum-marquee-1 {
  background: var(--color-green);
  color: var(--color-black);
  transform: rotate(-7deg) scale(1.1);
}

.career-forum-marquee-2 .career-forum-marquee__inner {
  animation-duration: 70s;
}
.career-forum-marquee-2 {
  background: var(--color-blue);
  color: var(--color-white);
  transform: rotate(-5deg) scale(1.1) translateY(44px);
}

.career-forum-marquee__part {
  display: inline-block;
  flex-shrink: 0;
  font-size: 38px;
  padding: 16px 75px;
}

@media (min-width: 900px) {
  .career-forum-header__marquee {
    height: 400px;
  }
}
@media (max-width: 899px) {
  .career-forum-header__marquee {
    height: 300px;
  }
  .career-forum-marquee__part {
    font-size: 32px;
    padding: 16px 60px;
  }
}
@media (max-width: 540px) {
  .career-forum-header__marquee {
    height: 400px;
  }
  .career-forum-marquee__part {
    font-size: 28px;
    padding: 16px 50px;
  }
}

@media (max-width: 375px) {
  .career-forum-header__marquee {
    height: 320px;
  }
  .career-forum-marquee__part {
    font-size: 24px;
    padding: 16px 40px;
  }
}

.block-title {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10vw;
  text-align: left;
}

.block-title h2 {
  white-space: nowrap;
  margin: 0;
  color: var(--color-blue);
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  letter-spacing: 0.1ch;
  font-size: 3.5rem;
  font-weight: 500;
}

.block-title span {
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-blue);
  margin-left: 50px;
}

@media (max-width: 768px) {
  .block-title {
    padding-left: 15px;
    padding-right: 15px;
  }
  .block-title h2 {
    font-size: 2.5rem;
    white-space: normal;
  }
  .block-title span {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .block-title h2 {
    font-size: 2rem;
  }
  .block-title span {
    display: none;
  }
}

@media (max-width: 1200px) {
  .career-forum-header__button {
    display: none;
  }

  .career-forum-menu__toggle {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
  }
  .career-forum-menu__toggle span,
  .career-forum-menu__toggle::before,
  .career-forum-menu__toggle::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--color-black);
    position: absolute;
    width: 100%;
    transition: transform 0.3s, opacity 0.3s;
  }
  .career-forum-menu__toggle::before {
    top: 0;
  }
  .career-forum-menu__toggle span {
    top: 11px;
  }
  .career-forum-menu__toggle::after {
    bottom: 0;
  }

  .career-forum-menu__toggle._active-menu::before {
    transform: rotate(45deg);
    top: 11px;
  }
  .career-forum-menu__toggle._active-menu span {
    opacity: 0;
  }
  .career-forum-menu__toggle._active-menu::after {
    transform: rotate(-45deg);
    bottom: 11px;
  }

  .career-forum-menu__box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 999;
    overflow-y: auto;
  }
  .career-forum-menu__box._active-menu {
    right: 0;
  }

  .career-forum-menu__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: flex-start;
  }
  .career-forum-menu__list li {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  .career-forum-menu__item {
    font-size: 18px;
    display: block;
  }
}

.about-banner {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #1a1a1a;
  color: var(--color-white);
  font-family: "Montserrat", sans-serif;
}

.about-banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-banner__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) grayscale(0.2);
  transition: filter 0.3s ease;
}

.about-banner__bottom {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.about-banner__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 800px;
}

.about__wrapper > * + * {
  margin-top: 50px;
}

.about-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--color-blue);
  color: var(--color-white);
  border: 2px solid var(--color-blue);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-banner-button span {
  position: relative;
  z-index: 1;
}

.about-banner-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--color-blue--rgb), 0.3);
}

.about-banner-button:hover::before {
  background-color: var(--color-blue);
}

.about-banner-button::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--color-white);
  margin-right: 5px;
  transition: border-left-color 0.3s ease;
}

@media (max-width: 992px) {
  .about-banner {
    height: 500px;
  }
  .about-banner__bottom {
    padding: 30px;
  }
  .about-banner__title {
    font-size: 2.8rem;
  }
  .about-banner-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .about-banner {
    height: 400px;
  }
  .about-banner__bottom {
    padding: 20px;
  }
  .about-banner__title {
    font-size: 2.2rem;
  }
  .about-banner-button {
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .about-banner {
    height: 350px;
  }
  .about-banner__bottom {
    padding: 15px;
  }
  .about-banner__title {
    font-size: 1.8rem;
  }
  .about-banner-button {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
  .about-banner-button::before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--color-white);
    margin-right: 3px;
  }
}

.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10000;
}

.video-popup-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.video-popup-overlay .popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.video-popup-overlay .career-popup__wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}

.video-content-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-content-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-popup-overlay .popup__close {
  position: absolute;
  top: -40px;
  right: -40px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease;
}

.video-popup-overlay .popup__close svg {
  width: 30px;
  height: 30px;
}

.video-popup-overlay .popup__close:hover {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .video-popup-overlay .popup__close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 5px;
  }
}

.about__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 0 15px;
}

.about__top {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .about__info {
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    padding: 0;
    padding-left: 10vw;
  }
  .about__top {
    grid-template-columns: 4fr 1fr;
  }
}

.about__text h3,
.about-gallery__title {
  font-size: 40px;
  margin: 0;
  color: var(--color-blue);
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  font-weight: 500;
  letter-spacing: 0em;
  margin-bottom: 30px;
}

@media (min-width: 900px) {
  .about__text h3,
  .about-gallery__title {
    margin-bottom: 50px;
  }
}

.about__text p {
  line-height: 184.8%;
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
}

.about__text {
  color: var(--color-grey);
}

.about-gallery {
  overflow: hidden;
}

.about-gallery > * + * {
  margin-top: 30px;
}
@media (min-width: 900px) {
  .about-gallery > * + * {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .about__text h3,
  .about-gallery__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .about__text p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.about-slider {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 40px;
}

.about-slider .swiper-slide {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-slider .swiper-slide a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-slider .swiper-slide a:hover img {
  transform: scale(1.05);
}

.about-slider .swiper-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 0;
  padding: 0 10px;
  box-sizing: border-box;

  z-index: 10;
}

.about-slider .about-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
}

.about-slider .swiper-pagination-bullet {
  background: var(--color-grey);
  opacity: 1;
  transition: background-color 0.3s ease;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

.about-slider .about-prev,
.about-slider .about-next {
  width: auto;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  transition: color 0.3s ease;
  cursor: pointer;
}

.about-slider .about-prev:hover,
.about-slider .about-next:hover {
  color: var(--color-grey);
}

.about-slider .about-prev::after,
.about-slider .about-next::after {
  content: none;
}

.about-slider .about-prev {
  justify-content: flex-end;
}

.about-slider .about-next {
  justify-content: flex-start;
}

.about-slider .about-prev svg,
.about-slider .about-next svg {
  width: 24px;
  height: 24px;

  stroke: currentColor;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
}

.about-details-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.about-details-item:hover {
  transform: translateY(-5px);
}

.about-details-item__icon {
  flex-shrink: 0;
  margin-right: 15px;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-details-item__icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-blue);
}

.about-details-item__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-details-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
}

.about-details-item__text {
  font-size: 0.95rem;
  color: #5a6a7b;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-details-item__icon svg {
    width: 36px;
    height: 36px;
  }
  .about-details-item__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .about-details {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 15px;
  }
  .about-details-item {
    padding: 15px;
    align-items: flex-start;
  }
  .about-details-item__icon {
    padding: 10px;
  }
  .about-details-item__icon svg {
    width: 24px;
    height: 24px;
  }
}

.speakers {
  position: relative;
  overflow: hidden;
}

.speakers__wrapper {
  min-height: 1200px;
}
.speakers__list {
  display: grid;
  height: fit-content;
  grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
  gap: 30px;
  padding: 0 10vw;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.speakers-item {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid var(--color-blue);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.speakers-item__card {
  background-color: var(--color-white);
  box-shadow: 0 5px 20px rgba(var(--color-black--rgb), 0.07);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.speakers-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(var(--color-black--rgb), 0.12);
}

.speakers-item__img {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.speakers-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.speakers-item:hover .speakers-item__img img {
  transform: scale(1.05);
}

.speakers-item__insta {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers-item__insta:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.speakers-item__insta span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: inherit;
  transition: color 0.3s ease;
}

.speakers-item__info {
  padding: 25px;
  flex-grow: 1;
}

.speakers-item__name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.speakers-item__name,
._partners__name {
  overflow-wrap: break-word;
  word-wrap: break-word;

  word-break: break-word;

  white-space: normal;

  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.speakers-item__position {
  font-size: 1rem;
  color: var(--color-grey);
  font-weight: 400;
}

.speakers-item__theme {
  padding: 20px 25px;
  border-top: 4px solid var(--color-blue);
  background-color: #fdfdfd;

  display: flex;
  align-items: center;
  gap: 12px;
}

.speaker-theme-icon {
  color: var(--color-blue);

  width: 20px;
  height: 20px;

  flex-shrink: 0;
}

.speakers-item__theme p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.4;
}

.speakers-vertical-text {
  position: absolute;
  z-index: 1;
  top: 50px;
  right: 5vw;
  height: 100%;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-blue);
  opacity: 0.1;
  user-select: none;
}

.vertical-text--first-second {
  opacity: 1;
  right: 9vw;
}

.speakers-vertical-text p {
  margin: 0;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .speakers__list {
    padding: 0 5vw;
    gap: 20px;
  }

  .speakers-item__name {
    font-size: 1.4rem;
  }

  .speakers-item__info,
  .speakers-item__theme {
    padding: 20px;
  }

  .speakers-vertical-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .speakers__list {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .speakers-item__name {
    font-size: 1.25rem;
  }
  .speakers-item__position {
    font-size: 0.9rem;
  }
  .speakers-item__theme p {
    font-size: 1rem;
  }
  .speakers-item__info,
  .speakers-item__theme {
    padding: 15px;
  }
  .speakers-item__insta {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
}

.program {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.program__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;

  margin-top: 50px;
}

.program-section__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 30px 0;
  padding-bottom: 15px;

  border-bottom: 2px solid var(--color-green);
  display: inline-block;
}

.program-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  background: var(--color-white);
  padding: 20px;
  border: 3px solid var(--color-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item__time {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-blue);

  flex-basis: 70px;
  flex-shrink: 0;
}

.program-item-info {
  flex-grow: 1;
}

.program-item__text p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.4;
}

.program-item-block p {
  margin: 0;
  background-color: #eef5ff;
  color: var(--color-blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .program__wrapper {
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .program-item {
    flex-wrap: wrap;
  }

  .program-item-block {
    flex-basis: 100%;
    margin-left: 85px;
  }
}

.location__wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-item {
  padding: 30px;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}
.location-item__text {
  font-size: 1.3rem;
  color: var(--color-grey);
  width: fit-content;
  text-align: right;
  max-width: 800px;
  line-height: 140%;
}
.location-item__text p {
  margin: 0;
}

@media (max-width: 768px) {
  .career-forum-section {
    margin-top: 5rem;
  }
  .career-forum-location {
    padding: 60px 0;
  }
  .career-forum-location .block-title {
    margin-bottom: 40px;
  }
  .location__wrapper {
    gap: 25px;
  }
  .location-item {
    padding: 25px;
  }
  .location-item__title {
    font-size: 1.6rem;
  }
  .location-item__text {
    font-size: 1rem;
  }

  .location-item__text p {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .career-forum-location {
    padding: 40px 0;
  }
  .career-forum-location .block-title {
    margin-bottom: 30px;
  }
  .location__wrapper {
    gap: 20px;
  }
  .location-item {
    padding: 20px;
  }
  .location-item__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .location-item {
    padding: 0;
  }
  .location-item__title {
    font-size: 1.4rem;
  }
  .location-item__text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .location-item__title {
    font-size: 1.2rem;
  }
  .location-item__text {
    font-size: 0.9rem;
  }
}
.partners {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.partners .block-title {
  margin-bottom: 50px;
}

.speakers__list._partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  gap: 30px;
  padding: 0 10vw;
  margin-top: 50px;
  position: relative;
  z-index: 2;
  justify-content: center;
}

._partners .speakers-item__img {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background-color: var(--color-white);
  border-bottom: 1px solid #f0f0f0;
}

._partners .speakers-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.4s ease;
}

._partners .speakers-item__info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

._partners .speakers-item__name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 0 0 15px 0;
  line-height: 1.2;
}

._partners .speakers-item__position {
  color: var(--color-grey);
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}
._partners .speakers-item__position p {
  margin: 0;
}

.read-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-blue);
  cursor: pointer;
  display: inline-block;
  margin-top: 15px;
  transition: opacity 0.3s ease;
  align-items: end;
}
.read-more:hover {
  opacity: 0.7;
}

.extra-text {
  display: none;

  font-size: 0.95rem;
  color: var(--color-grey);
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  margin-top: 15px;
}
.extra-text p {
  margin: 0;
}

.extra-text.is-open {
  display: block;
}

.career-forum-form {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.career-forum-form .block-title {
  margin-bottom: 50px;
}

.career-forum-form__wrapper {
  padding: 0 10vw;
}

#cr-google-form .input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#cr-google-form input[type="text"],
#cr-google-form input[type="tel"] {
  width: 100%;
  padding: 20px 18px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: var(--color-black);
  background: #fdfdfd;
  border: 4px solid var(--color-blue);
  box-sizing: border-box;
}

#cr-google-form input[type="text"]::placeholder,
#cr-google-form input[type="tel"]::placeholder {
  color: #999;
}

#cr-google-form input[type="text"]:focus,
#cr-google-form input[type="tel"]:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.15);
}

#cr-google-form p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-blue);
  text-align: left;
  margin-top: 15px;
}

.career-forum-radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.radio-option {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-option label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  cursor: pointer;
  padding-left: 30px;
}

.radio-option label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: var(--color-white);
  transition: border-color 0.3s ease;
}

.radio-option label::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--color-blue);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.radio-option input[type="radio"]:checked + label {
  color: var(--color-blue);
  font-weight: 600;
}

.radio-option input[type="radio"]:checked + label::before {
  border-color: var(--color-blue);
}

.radio-option input[type="radio"]:checked + label::after {
  transform: translateY(-50%) scale(1);
}

.radio-option:hover label::before {
  border-color: var(--color-blue);
}

#cr-google-form .btn {
  width: 100%;
  padding: 18px 52px;
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-blue);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
}

#cr-google-form .btn:hover {
  opacity: 0.85;
}

.career-forum-form-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#cr-google-form.is-loading .btn {
  color: transparent;
  pointer-events: none;
}

#cr-google-form.is-loading .career-forum-form-loader {
  display: block;
}

@media (max-width: 600px) {
  #cr-google-form {
    padding: 30px 20px;
  }

  #cr-google-form input[type="text"],
  #cr-google-form input[type="tel"] {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  #cr-google-form .btn {
    font-size: 18px;
    padding: 16px 30px;
  }
}

.form-columns-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 30px;
  background-color: var(--color-blue--rgb);
}

.form-column-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#cr-google-form .form-column-right p:nth-of-type(2) {
  margin-top: 20px;
}

#cr-google-form .form-column-right .career-forum-radio-group {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-columns-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #cr-google-form .form-column-right p:nth-of-type(2) {
    margin-top: 30px;
  }
}

.career-forum-footer {
  position: relative;
  background-color: #f8f9fa;
  padding: 40px 0;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.career-forum-footer ._container {
  position: relative;
  z-index: 2;
}

.career-forum-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.career-forum-footer__logo img {
  max-height: 40px;
  width: auto;
}

.career-forum-footer__nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.career-forum-footer__nav a {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.career-forum-footer__nav a:hover {
  color: var(--color-blue);
}

.career-forum-footer__divider {
  border: 0;
  height: 1px;
  background-color: var(--color-blue);
  opacity: 0.3;
  margin: 30px 0;
}

.career-forum-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.career-forum-footer__contacts {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.career-forum-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-grey);
  line-height: 1.5;
}

.career-forum-footer__contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.career-forum-footer__contact-item span {
  display: block;
}

.career-forum-footer__contact-item div span:first-child {
  margin-bottom: 5px;
}

.career-forum-footer__socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.career-forum-footer__socials a {
  color: var(--color-black);
  transition: color 0.3s ease;
}

.career-forum-footer__socials a:hover {
  color: var(--color-blue);
}

.career-forum-footer__socials svg {
  width: 24px;
  height: 24px;
}

.career-forum-footer__crest-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

@media (max-width: 992px) {
  .career-forum-footer__top {
    flex-direction: column;
    gap: 30px;
  }
  .career-forum-footer__nav ul {
    justify-content: center;
  }
  .career-forum-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .career-forum-footer__contacts {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  .career-forum-footer__contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .career-forum-footer__contact-item svg {
    margin-top: 0;
  }
  .career-forum-footer__crest-watermark {
    display: none;
  }
}

@media (max-width: 480px) {
  .career-forum-footer__nav ul {
    flex-direction: column;
    gap: 20px;
  }
}

.career-forum-footer__logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cr-honeypot {
  position: absolute;
  left: -5000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.about-gallery .swiper-pagination-bullet-active {
  background-color: var(--color-blue) !important;
}
@media (max-width: 768px) {
  .about-slider .about-prev,
  .about-slider .about-next {
    display: none;
  }
}
#career-forum-about,
#career-forum-program,
#career-forum-form,
#career-forum-partners,
#career-forum-speakers {
  scroll-margin-top: 180px;
}

.speakers__list._partners {
  align-items: flex-start;
}

.speakers__list._partners .speakers-item {
  height: auto;
}

.speakers__list._partners .speakers-item__card {
  height: auto;
  flex-grow: 0;
}
._partners .speakers-item__position {
  min-height: 120px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
