.title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .title {
    font-size: 14px;
    padding: 16px 0;
  }
}
.title::before {
  content: "";
  width: 10px;
  height: 10px;
  display: flex;
  border-radius: 50%;
  background: #ed1c24;
}
.title span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.title span::before,
.title span::after {
  content: "/";
}

.heading {
  padding: 24px 0;
}
@media (max-width: 768px) {
  .heading {
    padding: 16px 0;
  }
}

.desc {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .desc {
    font-size: 16px;
  }
}

.subtitle {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 20px;
  }
}

.button {
  cursor: pointer;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #232323;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  border-radius: 4px;
  background: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .button {
    font-size: 16px;
  }
}
.button_black {
  background: #303030;
  color: #fff;
}
.button_rec {
  position: relative;
  padding: 16px 24px;
  background: #2d2d2d;
  font-weight: 400;
  color: #fff;
  gap: 12px;
}
.button_rec::before {
  content: "";
  width: 10px;
  height: 10px;
  display: flex;
  background: #ed1c24;
  border-radius: 50%;
}
@media (hover: hover) {
  .button:hover {
    background: #fffa9b;
    color: #2d2d2d;
  }
  .button:active {
    scale: 0.97;
  }
}
@media (hover: none) {
  .button:active {
    background: #fffa9b;
  }
}

.swiper-arrow-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: scale 0.3s ease, opacity 0.3s ease;
}
.swiper-arrow-btn.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 768px) {
  .swiper-arrow-btn {
    width: 32px;
    height: 32px;
  }
}

.container {
  width: 100%;
  max-width: 1432px;
  padding-inline: 8px;
  margin-inline: auto;
}

.main {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 95px;
  }
}

section {
  padding: 20px 0;
}
@media (max-width: 768px) {
  section {
    padding: 12px 0;
  }
}

.header {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  padding-top: 12px;
  transition: all 0.3s ease;
}
.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px;
  background: #161616;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__logo_img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo_img {
    width: 42px;
    height: 42px;
  }
}
.header__logo_title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .header__logo_title {
    font-size: 24px;
  }
}
.header.menu-active .menu {
  opacity: 1;
  pointer-events: all;
}
.header.menu-active .burger {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}
.header.menu-active .burger__line:nth-child(1) {
  transform: rotate(45deg) translateY(6px) translateX(5px);
}
.header.menu-active .burger__line:nth-child(2) {
  opacity: 0;
}
.header.menu-active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px) translateX(5px);
}
.header.scrolled {
  padding-top: 6px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #232323;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    padding: 100px 16px 16px;
    transition: all 0.3s ease;
  }
}
.menu__nav {
  display: flex;
  gap: 14px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .menu__nav {
    flex-direction: column;
    overflow-y: auto;
    gap: 8px;
    width: 100%;
    height: 100%;
  }
}
.menu__mob_title {
  display: none;
}
@media (max-width: 768px) {
  .menu__mob_title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    display: flex;
  }
}
.menu__link {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.menu__link.active {
  color: #fffa9b;
}

.menu__link::after {
  content: "/";
  color: #fff !important;
}

.menu__item {
  position: relative;
}

.menu__sub {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  padding-top: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.menu__sub li {
  padding-inline: 10px;
  padding-bottom: 10px;
  background: #161616;
}

.menu__sub li:first-child {
  padding-top: 10px;
}

.menu__sub li:last-child {
  padding-bottom: 10px;
}

.menu__link:hover + .menu__sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

.menu__sub:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

@media (max-width: 768px) {
  .menu__link {
    font-size: 16px;
    padding: 22px 12px;
    border-radius: 8px;
    background: #2d2d2d;
  }
  .menu__link::after {
    display: none;
  }

  .menu__sub {
    padding-top: 0;
    left: unset;
    right: 0;
  }
}
@media (hover: hover) {
  .menu__link:hover {
    color: #fffa9b;
  }
}
@media (hover: none) {
  .menu__link:active {
    color: #fffa9b;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #2d2d2d;
  z-index: 1000;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}
.burger__line {
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.footer {
  padding-bottom: 25px;
}
.footer__box {
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  gap: 16px;
  background: #000;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .footer__box {
    flex-direction: column;
    text-align: center;
  }
}
.footer__left {
  color: #aaa;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .footer__left {
    font-size: 15px;
  }
}
.footer__right {
  color: #aaa;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .footer__right {
    font-size: 15px;
  }
}
.footer__right a {
  color: #fff;
  transition: color 0.3s ease;
}
.footer__right a:hover {
  color: #fffa9b;
}

.hero {
  padding: 0;
}
.hero__box {
  position: relative;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 24px;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  min-height: 500px;
}
@media (max-width: 768px) {
  .hero__box {
    padding: 16px 8px;
    gap: 20px;
  }
}
.hero__btn {
  max-width: 450px;
}
@media (max-width: 768px) {
  .hero__btn {
    max-width: 100%;
  }
}
.hero__title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 860px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 24px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.studcnr__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .studcnr__heading {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
.studcnr__subtitle {
  max-width: 460px;
}
@media (max-width: 768px) {
  .studcnr__subtitle {
    max-width: 100%;
  }
}
.studcnr__desc {
  max-width: 370px;
}
@media (max-width: 768px) {
  .studcnr__desc {
    max-width: 100%;
  }
}
.studcnr__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .studcnr__box {
    grid-template-columns: 100%;
  }
}

.studcnr-item {
  position: relative;
  padding: 20px;
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  display: flex;
}
@media (max-width: 768px) {
  .studcnr-item {
    height: -moz-fit-content;
    height: fit-content;
    aspect-ratio: 1;
    padding: 16px;
  }
}
.studcnr-item:first-child,
.studcnr-item:last-child {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .studcnr-item:first-child,
  .studcnr-item:last-child {
    grid-column: unset;
  }
}
.studcnr-item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
  transition: scale 0.3s ease;
}
.studcnr-item__title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .studcnr-item__title {
    font-size: 15px;
  }
}
.studcnr-item__title::after,
.studcnr-item__title::before {
  content: "/";
}
@media (hover: hover) {
  .studcnr-item:hover .studcnr-item__bg {
    scale: 1.1;
  }
}
@media (hover: none) {
  .studcnr-item:active .studcnr-item__bg {
    scale: 1.1;
  }
}

.spectrng__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .spectrng__heading {
    flex-direction: column;
    align-items: start;
    margin-bottom: 16px;
  }
}
.spectrng__subtitle {
  max-width: 460px;
}
@media (max-width: 768px) {
  .spectrng__subtitle {
    max-width: 100%;
  }
}
.spectrng__desc {
  max-width: 370px;
}
@media (max-width: 768px) {
  .spectrng__desc {
    max-width: 100%;
  }
}
.spectrng__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
@media (max-width: 768px) {
  .spectrng__box {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -8px;
    padding: 0 8px;
    padding-bottom: 10px;
  }
}

.spectrng-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 4px;
  background: linear-gradient(295deg, #383838 0%, #2b2b2b 99.61%);
  height: 320px;
  border: 1px solid #383838;
  transition: all 0.3s 0.5s ease;
}
@media (max-width: 768px) {
  .spectrng-item {
    aspect-ratio: 1;
  }
}
.spectrng-item__title {
  color: #e8e8e8;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .spectrng-item__title {
    font-size: 20px;
  }
}
.spectrng-item__icon path {
  transition: all 0.3s 0.5s ease;
}
@media (hover: hover) {
  .spectrng-item:hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 250, 155, 0.3);
  }
  .spectrng-item:hover .spectrng-item__icon path {
    transition: all 0.3s ease;
    fill: #fffa9b;
  }
}
@media (hover: none) {
  .spectrng-item:active {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 250, 155, 0.3);
  }
  .spectrng-item:active .spectrng-item__icon path {
    transition: all 0.3s ease;
    fill: #fffa9b;
  }
}

.trngprgs__title {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .trngprgs__title {
    margin-bottom: 12px;
  }
}
.trngprgs__img {
  width: 100%;
  height: 700px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .trngprgs__img {
    aspect-ratio: 1;
    height: 100%;
  }
}

.chdir__subtitle {
  max-width: 460px;
}
@media (max-width: 768px) {
  .chdir__subtitle {
    max-width: 100%;
  }
}
.chdir__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .chdir__box {
    grid-template-columns: 100%;
  }
}

.chdir-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.chdir-tabs li {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .chdir-tabs li {
    flex-grow: 0;
  }
}
.chdir-tabs a[role="tab"] {
  border: 1px solid #303030;
  background: #303030;
  padding: 24px;
  border-radius: 4px;
  color: #e8e8e8;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .chdir-tabs a[role="tab"] {
    padding: 12px 8px;
  }
}
.chdir-tabs a[role="tab"]:hover {
  border-color: #fffa9b;
  background: #303030;
}
.chdir-tabs a[role="tab"][aria-selected="true"] {
  background: #fffa9b;
  color: #303030;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-color: #fffa9b;
}

.chdir-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  background: #303030;
  padding: 24px;
  height: 340px;
  border: 1px solid #383838;
  transition: all 0.3s 0.5s ease;
}
@media (max-width: 768px) {
  .chdir-item {
    height: 220px;
    padding: 16px;
  }
}
.chdir-item__title {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .chdir-item__title {
    font-size: 20px;
  }
}
.chdir-item__mark {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  padding: 12px;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s 0.5s ease;
}
@media (max-width: 768px) {
  .chdir-item__mark {
    padding: 8px;
  }
}
@media (hover: hover) {
  .chdir-item:hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 250, 155, 0.3);
  }
  .chdir-item:hover .chdir-item__mark {
    transition: all 0.3s ease;
    background: #fffa9b;
    color: #303030;
  }
}
@media (hover: none) {
  .chdir-item:active {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 250, 155, 0.3);
  }
  .chdir-item:active .chdir-item__mark {
    transition: all 0.3s ease;
    background: #fffa9b;
    color: #303030;
  }
}

.advntgscntr__subtitle {
  max-width: 460px;
}
.advntgscntr__box {
  margin-bottom: 8px;
}

.stgswrk__subtitle {
  max-width: 360px;
}
@media (max-width: 768px) {
  .stgswrk__subtitle {
    max-width: 100%;
  }
}
.stgswrk__box {
  height: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .stgswrk__box {
    grid-template-columns: 100%;
    height: 100%;
  }
}

.stgswrk-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .stgswrk-swiper {
    display: none;
  }
}
.stgswrk-swiper__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.stgswrk-thumbs {
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .stgswrk-thumbs .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .stgswrk-thumbs .swiper-slide {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.stgswrk-thumbs .swiper-slide-thumb-active .stgswrk-thumbs-item {
  background: #fffa9b;
  color: #303030;
}

.stgswrk-thumbs-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 4px;
  background: #303030;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
}
.stgswrk-thumbs-item__title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stgswrk-thumbs-item__title::after,
.stgswrk-thumbs-item__title::before {
  content: "/";
}

.newsomain__title {
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .newsomain__title {
    margin-bottom: 32px;
  }
}
.newsomain__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .newsomain__box {
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
}

.newscard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newscard__img {
  height: 320px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .newscard__img {
    height: 300px;
  }
}
.newscard__content {
  display: flex;
  gap: 60px;
  color: #fff;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .newscard__content {
    gap: 30px;
  }
}
.newscard__title {
  font-weight: 600;
}
.newscard__date {
  font-weight: 400;
  flex-shrink: 0;
}

.seotem {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.seotem__head {
  cursor: pointer;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .seotem__head {
    padding: 16px 8px;
  }
}
.seotem__title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .seotem__title {
    font-size: 16px;
  }
}
.seotem__icon {
  display: flex;
  transition: all 0.3s ease;
}
.seotem__body {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.seotem__content {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  padding-inline: 24px;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .seotem__content {
    font-size: 16px;
    padding-inline: 8px;
    padding-bottom: 16px;
  }
}
.seotem.active {
  border-color: #fffa9b;
}
.seotem.active .seotem__icon {
  transform: rotate(45deg);
}

.feedback__box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 700px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: end;
}
@media (max-width: 768px) {
  .feedback__box {
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    padding: 0;
    overflow: visible;
    border-radius: 0px;
    gap: 8px;
  }
}
.feedback__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .feedback__bg {
    position: relative;
    top: unset;
    left: unset;
    height: 220px;
    width: 100%;
    border-radius: 4px;
  }
}

.formfeedback {
  border-radius: 4px;
  background: #303030;
  padding: 24px;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 530px;
  width: 100%;
}
@media (max-width: 768px) {
  .formfeedback {
    max-width: 100%;
    padding: 16px;
  }
}
.formfeedback__title {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .formfeedback__title {
    font-size: 20px;
  }
}
.formfeedback__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.formfeedback__input {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}
.formfeedback__input::-moz-placeholder {
  color: #d7d7d7;
}
.formfeedback__input::placeholder {
  color: #d7d7d7;
}
@media (max-width: 768px) {
  .formfeedback__input {
    padding: 24px 12px;
    font-size: 16px;
  }
}
.formfeedback__submit {
  background: #000;
  color: #fff;
  border-radius: 16px;
}

.cntcts__subtitle {
  max-width: 1060px;
}
.cntcts__box {
  position: relative;
  height: 700px;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cntcts__box {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.cntcts__map {
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .cntcts__map {
    height: 600px;
  }
}
.cntcts__left,
.cntcts__right {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .cntcts__left,
  .cntcts__right {
    position: relative;
    bottom: unset;
    left: unset;
    align-items: start;
    gap: 8px;
    flex-wrap: wrap;
  }
}
.cntcts__left {
  max-width: 920px;
}
@media (max-width: 768px) {
  .cntcts__left {
    max-width: 100%;
  }
}
.cntcts__right {
  left: unset;
  right: 16px;
  max-width: 345px;
}
@media (max-width: 768px) {
  .cntcts__right {
    right: unset;
    max-width: 100%;
  }
}

.cntcts-item {
  padding: 18px 12px;
  background: #303030;
  border-radius: 12px;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .cntcts-item {
    flex-grow: 1;
  }
}
.cntcts-item__title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
.cntcts-item__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: color 0.3s ease;
}
.cntcts-item__link:hover {
  color: #fffa9b;
}

.crshero {
  padding-top: 0;
}
@media (max-width: 768px) {
  .crshero {
    padding: 12px 0;
  }
}
.crshero__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .crshero__box {
    position: relative;
    grid-template-columns: 100%;
  }
}
.crshero__left {
  background: #1d1d1d;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
@media (max-width: 768px) {
  .crshero__left {
    padding: 0;
    padding-top: 20px;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .crshero__right {
    order: -1;
    min-height: 490px;
    border-radius: 8px;
    overflow: hidden;
  }
}
.crshero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.crshero__mark {
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .crshero__mark {
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
.crshero__title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .crshero__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.crshero__desc {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .crshero__desc {
    margin-bottom: 32px;
  }
}

.crsfor__subtitle {
  max-width: 480px;
}
@media (max-width: 768px) {
  .crsfor__subtitle {
    max-width: 100%;
  }
}
.crsfor__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .crsfor__box {
    grid-template-columns: 100%;
  }
}

.crsforinc {
  padding: 24px;
  border-radius: 4px;
  background: #303030;
  grid-column: span 4;
}
@media (max-width: 768px) {
  .crsforinc {
    grid-column: unset;
    padding: 16px;
  }
}
.crsforinc__subtitle {
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .crsforinc__subtitle {
    margin-bottom: 16px;
  }
}
.crsforinc__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.crsforinc__mark {
  padding: 12px 18px;
  border-radius: 12px;
  background: #232323;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .crsforinc__mark {
    padding: 10px 12px;
  }
}
.crsforinc__mark::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ed1c24;
  border-radius: 50%;
  display: flex;
}

.crsforslry {
  grid-column: span 4;
  padding: 24px;
  background: #303030;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .crsforslry {
    grid-column: unset;
    padding: 16px;
  }
}
.crsforslry__subtitle {
  max-width: 480px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .crsforslry__subtitle {
    margin-bottom: 16px;
    max-width: 100%;
  }
}
.crsforslry__desc {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .crsforslry__desc {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.crsforslry__box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .crsforslry__box {
    margin-bottom: 16px;
  }
}
.crsforslry__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  max-width: 380px;
}
.crsforslry__desc {
  max-width: 380px;
}

.crsforslry-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #2a2a2a;
}
@media (max-width: 768px) {
  .crsforslry-item {
    max-width: 100% !important;
    padding: 8px 16px;
  }
}
.crsforslry-item:first-child {
  max-width: 50%;
}
.crsforslry-item:nth-child(2) {
  max-width: 70%;
}
.crsforslry-item:nth-child(3) {
  max-width: 90%;
}
.crsforslry-item:nth-child(4) {
  max-width: 100%;
}
.crsforslry-item__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .crsforslry-item__title {
    font-size: 20px;
  }
}
.crsforslry-item__desc {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 100%;
}

.abthero__box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  min-height: 500px;
  height: calc(100vh - 120px);
  padding: 24px;
}
@media (max-width: 768px) {
  .abthero__box {
    padding: 8px;
  }
}
.abthero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.abthero__title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: auto;
  max-width: 860px;
}
@media (max-width: 768px) {
  .abthero__title {
    font-size: 24px;
  }
}

.abtbrfl__subtitle {
  max-width: 1060px;
}
@media (max-width: 768px) {
  .abtbrfl__subtitle {
    max-width: 100%;
  }
}

.abtwhy__subtitle {
  max-width: 480px;
}
@media (max-width: 768px) {
  .abtwhy__subtitle {
    max-width: 100%;
  }
}

.abtmng__img {
  width: 100%;
  height: 700px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .abtmng__img {
    height: 300px;
  }
}

.news__title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news__title {
    margin-bottom: 40px;
  }
}
.news__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 8px;
}
@media (max-width: 768px) {
  .news__box {
    grid-template-columns: 100%;
    gap: 20px;
  }
}

.newsinner__img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}
.newsinner__content {
  max-width: 830px;
  margin-inline: auto;
  margin-top: 42px;
}
@media (max-width: 768px) {
  .newsinner__content {
    margin-top: 32px;
  }
}
.newsinner__content p {
  color: #e8e8e8;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .newsinner__content p {
    font-size: 16px;
  }
}
.newsinner__content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .newsinner__content h2 {
    font-size: 24px;
  }
}
.newsinner__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .newsinner__title {
    font-size: 27px;
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-15px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float4 {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-25px);
  }
}
.float1 {
  animation: float1 3s ease-in-out infinite;
}

.float2 {
  animation: float2 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.float3 {
  animation: float3 5s ease-in-out infinite;
  animation-delay: 1s;
}

.float4 {
  animation: float4 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.breadcrumbs {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 32px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}
.breadcrumbs__item {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  flex-shrink: 0;
}
.breadcrumbs__item:last-child {
  color: #000;
}
.breadcrumbs__item:not(:first-child) {
  position: relative;
  padding-left: 13px;
}
.breadcrumbs__item:not(:first-child)::before {
  content: ">";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"),
    auto;
  visibility: hidden;
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
}
.modal.is_active {
  display: flex;
  visibility: visible;
}
.modal.is_active .modal-inner {
  animation: scaleModal 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.modal.is_active .modal-inner__bg {
  animation: scaleModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
    float2 3s ease-in-out 0.8s infinite;
  animation-delay: 0.3s;
}
.modal.is_active .modal-inner__bg_bottom {
  animation: scaleModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
    float1 3s ease-in-out 0.8s infinite;
}
.modal__close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f0f0f0;
  transition: scale 0.3s ease;
}
@media (max-width: 768px) {
  .modal__close {
    right: 15px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .modal__close svg {
    width: 24px;
    height: 24px;
  }
}
.modal__close:hover {
  scale: 1.1;
}
.modal__close:active {
  scale: 0.9;
}
.modal__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  width: calc(100% - 40px);
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 23px;
  }
}

.modal-inner {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  cursor: auto;
  will-change: scale, opacity, transform;
}
@media (max-width: 768px) {
  .modal-inner {
    border: 16px;
  }
}
.modal-inner__box {
  width: 100%;
}

@keyframes scaleModal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.mark {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  padding: 12px;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: -moz-fit-content;
  width: fit-content;
}

.wpcf7-response-output {
  border-radius: 8px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 15px;
}

.wpcf7-not-valid-tip {
  margin: 5px 0 0 5px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form.submitting .formfeedback__submit {
  opacity: 0.2;
  user-select: none;
  cursor: wait;
}

.serts__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sert-item {
  height: 400px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.sert-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s 1s ease;
}

.sert-item img:hover {
  scale: 1.2;
  transition: scale 0.5s ease;
}

@media (max-width: 768px) {
  .serts__box {
    grid-template-columns: repeat(2, 1fr);
  }

  .sert-item {
    height: 100%;
    aspect-ratio: 5 / 8;
  }
}

.newsinner__content ol {
  list-style: auto;
  padding-left: 1rem;
}

.newsinner__content li {
  color: #e8e8e8;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .newsinner__content li {
    font-size: 16px;
  }
}
