@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s;
}

:root {
  --font-display: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
      "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

::-webkit-scrollbar {
  display: none;
}

.cont {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 50px;
}

body {
  font-family: var(--font-display);
  overflow: hidden;
}

.fuulBlockActive {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 1;
}

/* === HEADER === */
header {
  padding: 33px 0;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 6.6px 0px rgba(0, 0, 0, 0.1490196078);
  z-index: 10;
  /* ===== MOBILE: показ по клику через .active (как было) ===== */
  /* ===== /MOBILE ===== */
}
header .desktop_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding-right: 20px;
  /* ===== DESKTOP: открытие по наведению/фокусу ===== */
  /* ===== /DESKTOP ===== */
}
header .desktop_cont .block {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
}
header .desktop_cont .block .elem {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
header .desktop_cont .listBlock {
  position: absolute;
  bottom: -16px;
  left: 0;
  transform: translateY(100%);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 16px;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
}
header .desktop_cont .listBlock a {
  text-wrap: nowrap;
  color: #101828;
}
header .desktop_cont .listBlock a:hover {
  color: #750014;
}
header .desktop_cont .listBlock svg {
  transform: rotate(0deg);
}
header .desktop_cont .listBlock svg path {
  fill: #101828;
  color: #101828;
}
header .desktop_cont .academicsBlock {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
  flex-direction: row;
  left: auto;
  transform: translate(30%, 100%);
  right: 0;
}
header .desktop_cont .academicsBlock .item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 16px;
  flex-direction: column;
}
header .desktop_cont .prospective {
  left: auto;
  right: 0;
  transform: translate(20%, 100%);
}
header .desktop_cont .more {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 70px;
  flex-direction: row;
  left: auto;
  transform: translate(0%, 100%);
  right: 0;
}
header .desktop_cont .more .item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 16px;
  flex-direction: column;
}
header .desktop_cont .more p {
  font-weight: 700;
  color: #750014;
}
header .desktop_cont a {
  font-family: Font family/font-family-body;
  font-weight: 600;
  font-size: 16px;
  color: #101828;
  text-decoration: none;
  letter-spacing: 0%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3px;
}
@media (min-width: 926px) {
  header .desktop_cont .elem:hover,
  header .desktop_cont .elem:focus-within {
    /* для mega-блока More нужен больший внутренний отступ */
  }
  header .desktop_cont .elem:hover svg,
  header .desktop_cont .elem:focus-within svg {
    transform: rotate(90deg);
  }
  header .desktop_cont .elem:hover svg path,
  header .desktop_cont .elem:focus-within svg path {
    fill: #750014;
    color: #750014;
  }
  header .desktop_cont .elem:hover .linkA,
  header .desktop_cont .elem:focus-within .linkA {
    color: #750014;
  }
  header .desktop_cont .elem:hover .listBlock,
  header .desktop_cont .elem:focus-within .listBlock {
    padding: 12px 16px 22px;
    max-height: 1000px;
    opacity: 1;
  }
  header .desktop_cont .elem:hover .more,
  header .desktop_cont .elem:focus-within .more {
    padding: 34px !important;
  }
}
header .mobile_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  padding: 0 20px;
  display: none;
}
header .mobile_cont .block {
  cursor: pointer;
}
@media (max-width: 925px) {
  header .mobile_cont {
    display: flex;
  }
  header .mobile_cont .block:nth-child(1) img {
    height: 60px;
  }
  header .desktop_cont {
    display: none;
  }
  header .desktop_cont .active svg {
    transform: rotate(90deg);
  }
  header .desktop_cont .active svg path {
    fill: #750014;
    color: #750014;
  }
  header .desktop_cont .active .linkA {
    color: #750014;
  }
  header .desktop_cont .active .listBlock {
    padding: 12px 16px 22px;
    max-height: 1000px;
    opacity: 1;
  }
  header .desktop_cont .active .more {
    padding: 34px !important;
  }
}

.mobile-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-modal.active {
  right: 0;
}
.mobile-modal::-webkit-scrollbar {
  width: 4px;
}
.mobile-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.mobile-modal::-webkit-scrollbar-thumb {
  background: #750014;
  border-radius: 2px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 20px 5px 20px 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}
.modal-header img {
  height: 40px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  color: #101828;
  transition: color 0.3s ease, transform 0.2s ease;
}
.close-btn:hover {
  color: #750014;
  transform: rotate(90deg);
}

.modal-content {
  padding: 20px 0;
}

.nav-item {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-item:last-child {
  border-bottom: none;
}
.nav-item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-item:nth-child(2) {
  transition-delay: 0.15s;
}
.nav-item:nth-child(3) {
  transition-delay: 0.2s;
}
.nav-item:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-modal.active .nav-item {
  opacity: 1;
  transform: translateX(0);
}

.nav-toggle {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #101828;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.nav-toggle:hover {
  background-color: #f8f8f8;
  color: #750014;
}
.nav-toggle.active {
  color: #750014;
  background-color: #f8f8f8;
}
.nav-toggle.active .nav-icon {
  transform: rotate(90deg);
}

.nav-icon {
  transition: transform 0.3s ease;
  width: 12px;
  height: 12px;
}

.nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
  background-color: #fafafa;
}
.nav-submenu.active {
  max-height: 1000px;
  padding: 10px 0 20px 0;
}

.submenu-content {
  padding: 0 20px 0 40px;
}

.submenu-section {
  margin-bottom: 20px;
}
.submenu-section:last-child {
  margin-bottom: 0;
}

.submenu-title {
  font-weight: 700;
  font-size: 14px;
  color: #101828;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submenu-link {
  display: block;
  padding: 8px 0;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 10px;
}
.submenu-link:hover {
  color: #750014;
  padding-left: 15px;
  border-left-color: #750014;
}

@media (max-width: 925px) {
  header .mobile_cont .block:nth-child(2) {
    cursor: pointer;
  }
  header .mobile_cont .block:nth-child(2) img {
    transition: transform 0.3s ease;
  }
  header .mobile_cont .block:nth-child(2) img:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 926px) {
  .mobile-modal-overlay {
    display: none;
  }
}
main {
  padding-top: 50px;
}
main .headSec {
  height: 876px;
  background-image: url(../icon/lineBg.svg);
  background-position: top center;
  background-size: cover;
}
main .headSec .cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  height: 100%;
  overflow: hidden;
}
main .headSec .cont .block w49px img {
  width: 100%;
}
main .headSec .cont .block h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -2%;
  width: 600px;
}
main .headSec .cont .block p {
  font-size: 20px;
  color: #475467;
  margin-bottom: 24px;
}
main .headSec .cont .block .box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
}
main .headSec .cont .block .box button {
  width: 54px;
  height: 54px;
  color: #fff;
  border: 0;
  border-radius: 5px;
  background-color: #617878;
  cursor: pointer;
  font-size: 20px;
}
main .headSec .cont .block .box button:hover {
  background-color: #750014;
}
main .headSec .cont .block .box .active {
  background-color: #750014;
}
main .services {
  background-color: #FF721B;
  padding-top: 30px;
  padding-bottom: 48px;
}
main .services .cont .title {
  margin-bottom: 30px;
}
main .services .cont .title h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 10px;
  color: #fff;
}
main .services .cont .title p {
  color: #fff;
  font-size: 20px;
}
main .services .cont .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
main .services .cont .box .block {
  max-width: 450px;
  color: #fff;
}
main .services .cont .box .block .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #750014;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin-bottom: 10px;
}
main .services .cont .box .block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
main .services .cont .box .block p {
  margin-bottom: 10px;
}
main .services .cont .box .block a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  position: relative;
}
main .services .cont .box .block a:hover {
  margin-left: 10px;
}
main .services .cont .box .close {
  max-width: 100% !important;
}
main .newsForm .headBlock {
  background-color: #750014;
  text-align: center;
  padding: 96px 20px 160px;
}
main .newsForm .headBlock h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2%;
  color: #fff;
}
main .newsForm .headBlock p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}
main .newsForm .newsCont {
  background-color: #F9FAFB;
  border-radius: 10px;
  padding: 10px 32px 17px;
  transform: translateY(-20%);
}
main .newsForm .newsCont .arrow {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
main .newsForm .newsCont .arrow img {
  cursor: pointer;
}
main .newsForm .newsCont .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 30px;
}
main .newsForm .newsCont button {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  background-color: #750014;
  border: 0;
  margin: 0 auto;
}
main .newsForm .newsCont .box {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
main .newsForm .newsCont .box .block {
  width: 30%;
}
main .newsForm .newsCont .box .block .img {
  height: 260px;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 20px;
  width: 100%;
}
main .newsForm .newsCont .box .block .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .newsForm .newsCont .box .block .titleSpan {
  font-size: 14px;
  color: #6941C6;
}
main .newsForm .newsCont .box .block h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #101828;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
main .newsForm .newsCont .box .block p {
  color: #475467;
  margin-bottom: 20px;
}
main .newsForm .newsCont .box .block .sckils {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}
main .newsForm .newsCont .box .block .sckils span {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
}
main .newsForm .newsCont .box .block .sckils span:nth-child(1) {
  background-color: #F9F5FF;
  border: 1px solid #E9D7FE;
  color: #6941C6;
}
main .newsForm .newsCont .box .block .sckils span:nth-child(3) {
  background-color: #FDF2FA;
  border: 1px solid #FCCEEE;
  color: #C11574;
}
main .newsForm .newsCont .box .block .sckils span:nth-child(2) {
  background-color: #EEF4FF;
  border: 1px solid #C7D7FE;
  color: #3538CD;
}
main .animSection {
  padding-bottom: 105px;
}
main .animSection .scroll-container {
  overflow: hidden;
}
main .animSection h5 {
  font-weight: 500;
  text-align: center;
  color: #475467;
}
main .animSection .scrollBox {
  margin: 20px 0;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
}
main .animSection .scrolAnim {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
  animation: scroll1 30s infinite linear;
}
main .animSection .scrolAnim .block {
  width: 200px;
  text-align: center;
}
main .animSection .scrolAnim .block img {
  margin-bottom: 20px;
}
main .animSection .scrolAnim .block p {
  color: #475467;
  font-weight: 500;
}
main .animSection .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
main .animSection .btn button {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background-color: #750014;
}
@keyframes scroll1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
main .statistics {
  padding: 96px 0;
  background-image: url(../icon/statisticsFon.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #e0e0e0;
}
main .statistics .line {
  height: 1px;
  background-color: #000;
}
main .statistics .box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 20px;
  padding: 64px 0;
  justify-content: center;
}
main .statistics .box .elem {
  text-align: center;
}
main .statistics .box .elem h4 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -2%;
  color: #101828;
  margin-bottom: 12px;
}
main .statistics .box .elem p {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
}
main .statistics .box .firstElem {
  grid-column: 1/5;
}
main .statistics .mobileBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-direction: column;
  display: none;
}
main .statistics .mobileBox .elem {
  width: 240px;
  text-align: center;
}
main .statistics .mobileBox .elem h3 {
  font-size: 60px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 12px;
}
main .statistics .mobileBox .elem h4 {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
}
main .statistics .mobileBox .elem p {
  color: #475467;
  margin-bottom: 8px;
}
main .statistics .mobileBox .elem p span {
  font-weight: 600;
}
main .connection {
  padding: 20px 0;
}
main .connection .box {
  background-color: #F9FAFB;
  border-radius: 16px;
  padding: 32px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-direction: column;
}
main .connection .box .text {
  text-align: center;
  max-width: 828px;
}
main .connection .box .text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
}
main .connection .box .text p {
  color: #475467;
  font-size: 18px;
}
main .connection .box button {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  background-color: #750014;
  border: 0;
  border-radius: 8px;
}
main .profileFilter {
  padding: 110px 0 10px;
  box-shadow: 0px 4px 6.6px 0px rgba(0, 0, 0, 0.1490196078);
}
main .profileFilter .filterBox {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
  overflow: auto;
}
main .profileFilter .filterBox a {
  text-decoration: none;
  color: #475467;
  font-weight: 500;
  text-wrap: nowrap;
}
main .profileFilter .filterBox a:hover {
  color: #750014;
}
main .profileFilter .filterBox .active {
  color: #750014;
}
main .profilBlock {
  padding-top: 30px;
  padding-bottom: 88px;
}
main .profilBlock .profilCont {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 76px;
}
main .profilBlock .profilCont .leftBlock {
  padding: 10px 24px;
  border-radius: 10px;
  width: 30%;
}
main .profilBlock .profilCont .leftBlock a {
  font-size: 18px;
  color: #475467;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 25px;
  width: 100%;
  border-radius: 100px;
}
main .profilBlock .profilCont .leftBlock a:hover {
  background-color: #EBEDF2;
}
main .profilBlock .profilCont .rightBlock {
  width: 60%;
}
main .profilBlock .profilCont .rightBlock .imgContent {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 100px;
}
main .profilBlock .profilCont .rightBlock .imgContent .img {
  overflow: hidden;
  border-radius: 50%;
  width: 198px;
  height: 198px;
}
main .profilBlock .profilCont .rightBlock .imgContent .img img {
  width: 100%;
}
main .profilBlock .profilCont .rightBlock .imgContent .text {
  max-width: 590px;
  font-size: 16px;
  font-weight: 600 !important;
}
main .profilBlock .profilCont .rightBlock .imgContent .text h4 {
  font-weight: 600;
  margin-bottom: 24px;
}
main .profilBlock .profilCont .rightBlock .imgContent .text h5 {
  margin-bottom: 24px;
}
main .profilBlock .profilCont .rightBlock .imgContent .text p {
  margin-bottom: 30px;
}
main .profilBlock .profilCont .rightBlock .fullText {
  padding-top: 24px;
  font-size: 16px;
  color: #475467;
}
main .profilBlock .profilCont .rightBlock .fullText h4 {
  font-weight: 600;
  margin-bottom: 24px;
}
main .profilBlock {
  padding-top: 30px;
  padding-bottom: 88px;
}
main .profilBlock .newsBlock {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 76px;
}
main .profilBlock .newsBlock .leftBlock {
  border: 1px solid #751016;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 10px 24px;
  border-radius: 10px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 5px;
  flex-direction: column;
  width: 30%;
}
main .profilBlock .newsBlock .leftBlock a {
  font-size: 18px;
  color: #475467;
  font-weight: 500;
  text-decoration: none;
}
main .profilBlock .newsBlock .leftBlock a:hover {
  color: #750014;
}
main .profilBlock .newsBlock .rightBlock {
  width: 60%;
}
main .profilBlock .newsBlock .rightBlock .imgContent {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 27px;
}
main .profilBlock .newsBlock .rightBlock .imgContent .text {
  max-width: 590px;
  font-size: 16px;
  font-weight: 600 !important;
}
main .profilBlock .newsBlock .rightBlock .imgContent .text h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
main .profilBlock .newsBlock .rightBlock .imgContent .text p {
  font-weight: 400;
  margin-bottom: 30px;
}
main .newAcademSec {
  padding-top: 30px;
  padding-bottom: 88px;
  background-image: url(../icon/lineBg.svg);
  background-position: top center;
  background-size: cover;
}
main .newAcademSec .newAcadem {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 76px;
}
main .newAcademSec .newAcadem .leftBlock {
  border-radius: 10px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 5px;
  flex-direction: column;
  width: 248px;
}
main .newAcademSec .newAcadem .leftBlock a {
  font-size: 18px;
  color: #475467;
  font-weight: 500;
  text-decoration: none;
}
main .newAcademSec .newAcadem .leftBlock a:hover {
  color: #750014;
}
main .newAcademSec .newAcadem .rightBlock {
  width: 75%;
}
main .newAcademSec .newAcadem .rightBlock .academiBox {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  height: 100%;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block img {
  width: 477px;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -2%;
  width: 600px;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block p {
  font-size: 20px;
  color: #475467;
  margin-bottom: 24px;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block .box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block .box button {
  width: 54px;
  height: 54px;
  color: #fff;
  border: 0;
  border-radius: 5px;
  background-color: #617878;
  cursor: pointer;
  font-size: 20px;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block .box button:hover {
  background-color: #750014;
}
main .newAcademSec .newAcadem .rightBlock .academiBox .block .box .active {
  background-color: #750014;
}
@media (max-width: 840px) {
  main .newsCont {
    /* по желанию можно приплюснуть стрелки на мобилке поближе, но дизайн не трогаем */
  }
  main .newsCont .btn {
    display: none !important;
  }
  main .newsCont .box {
    /* превращаем в горизонтальный скролл со снапом */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    display: flex;
    /* твой миксин уже flex, дублирование не навредит */
    flex-wrap: nowrap;
    /* важно: в одну линию */
    gap: 20px;
    /* чтобы шаг совпал с JS (у тебя и так 20px в миксине) */
    /* скрыть полоску прокрутки, визуально аккуратнее */
    scrollbar-width: none;
  }
  main .newsCont .box::-webkit-scrollbar {
    display: none;
  }
  main .newsCont .box .block {
    /* по одной карточке на экран */
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }
  main .newsCont .arrow img {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
@media (max-width: 720px) {
  main .statistics .cont .box {
    display: none;
    flex-wrap: wrap;
  }
  main .statistics .cont .box .elem {
    width: 292px;
  }
  main .statistics .cont .mobileBox {
    display: flex;
  }
}
@media (max-width: 620px) {
  main .profilBlock .profilCont {
    flex-wrap: wrap;
  }
  main .profilBlock .profilCont .elem {
    width: 100%;
  }
  main .profilBlock .profilCont .rightBlock .imgContent {
    flex-wrap: wrap;
    gap: 50px;
  }
}
@media (max-width: 925px) {
  main .headSec .cont {
    padding: 0 20px;
  }
  main .headSec .cont .block h1 {
    width: 251px;
    font-size: 32px;
  }
  main .headSec .cont .block img {
    width: 400px;
  }
  main .cont {
    padding: 0 20px;
  }
  main .profilBlock .profilCont {
    flex-wrap: wrap;
  }
  main .profilBlock .profilCont .elem {
    width: 100%;
  }
  main .profilBlock .newsBlock {
    flex-wrap: wrap;
  }
  main .profilBlock .newsBlock .elem {
    width: 100%;
  }
}
@media (max-width: 840px) {
  main .services .cont {
    overflow: hidden;
    /* точки */
    /* Подсветка активной точки, если слайд выбран якорем.
    Современные браузеры поддерживают :has(); это работает и после клика по точке.
    При «свайпе пальцем» подсветка без JS не синхронизируется во всех браузерах — это нормально. */
  }
  main .services .cont .box {
    /* превращаем в горизонтальный свайп */
    flex-wrap: nowrap;
    /* одна линия */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* ключ */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 16px;
    /* можно оставить 32px, если хочешь */
    padding-bottom: 8px;
    /* маленький зазор под пальцем */
    /* аккуратно скрыть скроллбар */
    scrollbar-width: none;
  }
  main .services .cont .box::-webkit-scrollbar {
    display: none;
  }
  main .services .cont .box .block {
    min-width: 100%;
    /* по одному слайду на экран */
    scroll-snap-align: start;
    /* прилипание к началу */
  }
  main .services .cont .box .close {
    min-width: 100% !important;
    /* на всякий */
  }
  main .services .cont .dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    /* по умолчанию подсветим первую */
  }
  main .services .cont .dots a {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FFA770;
    display: inline-block;
    transition: transform 0.2s, background 0.2s, opacity 0.2s;
  }
  main .services .cont .dots a:hover {
    transform: scale(1.15);
    background: #C44D02;
  }
  @supports selector(:has(*)) {
    main .services .cont:has(#srv-1:target) .dots a[href="#srv-1"], main .services .cont:has(#srv-2:target) .dots a[href="#srv-2"], main .services .cont:has(#srv-3:target) .dots a[href="#srv-3"], main .services .cont:has(#srv-4:target) .dots a[href="#srv-4"], main .services .cont:has(#srv-5:target) .dots a[href="#srv-5"], main .services .cont:has(#srv-6:target) .dots a[href="#srv-6"], main .services .cont:has(#srv-7:target) .dots a[href="#srv-7"] {
      background: #C44D02;
      transform: scale(1.15);
    }
  }
}
@media (max-width: 580px) {
  main .headSec .cont {
    padding: 0 20px;
    gap: 10px;
  }
  main .headSec .cont .block {
    position: relative;
  }
  main .headSec .cont .block:nth-child(2) {
    height: 50%;
  }
  main .headSec .cont .block h1 {
    width: 251px;
    font-size: 32px;
  }
  main .headSec .cont .block img {
    width: 265px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
  }
  main .profilBlock .newsBlock {
    flex-wrap: wrap;
  }
  main .profilBlock .newsBlock .elem {
    width: 100%;
  }
  main .profilBlock .newsBlock .elem .imgContent {
    flex-wrap: wrap;
  }
}

footer .email {
  padding: 48px 0;
  background-color: #F9FAFB;
}
footer .email .box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}
footer .email .box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #101828;
}
footer .email .box p {
  font-size: 18px;
  color: #475467;
}
footer .email .box input {
  width: 269px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  font-size: 18px;
  padding: 0 14px;
  outline: none;
}
footer .email .box button {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background-color: #750014;
  padding: 10px 18px;
  height: 44px;
  cursor: pointer;
}
footer .email .box .elem:nth-child(2) {
  display: flex;
  justify-content: end;
  align-items: start;
  gap: 16px;
}
footer .nav {
  padding: 64px 0 54px;
}
footer .nav .navigate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
footer .nav .navigate .icon {
  margin-bottom: 24px;
}
footer .nav .navigate .elem h6 {
  font-size: 16px;
  font-weight: 600;
  color: #475467;
}
footer .nav .navigate .elem .follow {
  margin-top: 7px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 24px;
}
footer .nav .navigate .elem p {
  color: #475467;
  line-height: 120%;
}
footer .nav .navigate .elem a {
  text-decoration: none;
  color: #475467;
}
footer .nav .navigate .elem:nth-child(1) h6 {
  margin-bottom: 3px;
  margin-top: 24px;
}
footer .nav .navigate .elem:nth-child(2) h6 {
  margin-bottom: 16px;
}
footer .nav .navigate .elem:nth-child(2) a {
  margin-bottom: 16px;
  display: block;
}
footer .nav .navigate .elem:nth-child(3) h6 {
  margin-bottom: 16px;
}
footer .nav .navigate .elem:nth-child(3) a {
  margin-bottom: 16px;
  display: block;
}
footer .nav .time .box {
  border-top: 1px solid #E4E7EC;
  padding-top: 32px;
}
footer .nav .time .box p {
  color: #475467;
  font-size: 18px;
}
@media (max-width: 925px) {
  footer .cont {
    padding: 0 20px;
  }
  footer .nav .navigate {
    grid-template-columns: 1fr;
  }
  footer .nav .navigate .elem:nth-child(2) {
    display: none;
  }
  footer .nav .navigate .elem:nth-child(3) {
    display: none;
  }
  footer .email .box .elem:nth-child(2) {
    flex-wrap: wrap;
  }
}
@media (max-width: 455px) {
  footer .email .box .elem:nth-child(2) {
    flex-wrap: wrap;
  }
  footer .email .box .elem:nth-child(2) input {
    width: 100%;
  }
  footer .email .box .elem:nth-child(2) button {
    width: 100%;
  }
}/*# sourceMappingURL=app.css.map */