* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body { 
  overflow-x: hidden; 
}
body.no-scroll { overflow: hidden; }

@-moz-document url-prefix() {
  html, .inner, .cabinet-nav {
    scrollbar-width: thin;
    scrollbar-color: #D5D5D5 #F1F1F1;
  }
}

html::-webkit-scrollbar, .inner::-webkit-scrollbar
.cabinet-nav::-webkit-scrollbar {
  width: 5px; 
}

html::-webkit-scrollbar-thumb, .inner::-webkit-scrollbar-thumb
.cabinet-nav::-webkit-scrollbar-thumb {
  background: #E6E6E6; 
  height: 87px;
  border-radius: 3px;
}

:root {
  --blue: #0B1C37; 
  ---dark-blue: #101828;
  --light-blue: #2B7FFF;
  --black: #0A0A0A;
  --border: #E0E0E0;
  --text-color: #4A5565;
  --text-color1: #DBEAFE;
  --text-color2: #717182;
}

.Container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.content, .content1 {
  display: flex;
  width: 100%;
  max-width: 1280px; 
}

.content1 { flex-direction: column; }

header {
  background: white;
  padding: 40px 20px 25px;
  position: relative;
  z-index: 2000;
}

.header-content {
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 25px;
}

.logo {
  color: black;
  text-decoration: unset;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  line-height: 18px;
  span { font-family: 'BPG Excelsior'; }
}

.login, .mob-login {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 20px;
  width: 165px; height: 45px;
  transition: all 0.3s ease;
  &:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }
}

.mob-login {
  margin: 40px 0;
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  > a:first-child img {
    filter: brightness(0) saturate(100%) invert(10%) sepia(19%) saturate(5712%) hue-rotate(200deg) 
    brightness(94%) contrast(95%);
  }
  > div:first-of-type {
    background: #E6E6E6;
    height: 30px; width: 1px;
  }
}

.main-search {
  position: relative;
  > div {
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    transition: all 0.3s ease;
    img { transition: all 0.3s ease; }
  }
  input {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
    color: var(--black);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-left: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: absolute;
    right: -20px; top: 100%; 
    transition: all 0.3s ease;
    z-index: 2000;
    height: 45px; width: 250px;
    &:focus { outline: none; }
  }
}

.main-search.active > div {
  background: var(---dark-blue);
  img { filter: brightness(0) invert(1); }
}

.language-change { position: relative; }

#lang-toggle {
  color: #364153;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font: bold 14px 'Inter';
  line-height: 20px;
  padding: 6px 12px;
}

.lang-list {
  background: white;
  border-radius: 14px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0; gap: 5px;
  position: absolute;
  left: 10px;
  top: 100%; width: 50px;
  transition: all 0.3s ease;
  z-index: 2000;
  padding: 10px 0;
  li {
    cursor: pointer;
    font: bold 12px 'Inter';
    line-height: 16px;
  }
}

.language-change.active .lang-list, .main-search.active input {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

#menu-toggle-button { 
  background: transparent;
  border: none;
  color: var(--blue);
  font-size: 24px;
  display: none; 
}

.dropdownMenu {
  background: var(---dark-blue);
  color: white;
  padding: 0 30px;
  position: fixed;
  top: 109px;
  width: 100%;
  height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: height 0.5s ease;
  z-index: 1000;
}
  
.dropdownMenu.visible, .dropdownMenu.active { height: calc(100vh - 110px); }

.mobile-menu { margin-bottom: 20px; }
.mobile-nav {
  border-bottom: 1px solid var(--secondary-color);
  i { transition: transform 0.3s ease; }
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease;
  li { display: flex; }
  a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 14px;
    padding: 5px 0 5px 10px;
    width: 100%;
  }
  li:last-child a { padding-bottom: 30px; }
}

.mobile-nav.active {
  ul { max-height: 1000px; }
  i { transform: rotate(180deg); }
}

.mobile-nav-head {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font: 16px 'BPG Mrgvlovani Caps 2010';
  line-height: 22px;
  i { color: var(--secondary-color); font-size: 12px; }
}

.mobile-nav > a {
  color: var(--secondary-color);
  text-decoration: none;
  display: flex;
  font: 16px 'BPG Mrgvlovani Caps 2010';
  line-height: 22px;
  padding: 15px 0;
}

.mob-search {
  position: relative;
  margin: 20px 0;
  button {
    background: transparent;
    border: none;
    position: absolute;
    left: 20px; top: 8px;
    img { filter: brightness(0) invert(1); }
  }
  input {
    background: transparent;
    border: 1px solid white;
    border-radius: 23px;
    color: white;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: 100%; height: 45px;
    padding-left: 45px;
    &:focus { outline: none; }
  }
}

.scroll-menu {
  background: white;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0 30px;
}

.menuItem {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  flex-grow: 1;
}

.menuHead {
  display: flex;
  a {
    border: 1px solid transparent;
    border-radius: 24px;
    color: var(--black);
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    transition: all 0.3s ease;
    padding: 13px 17px;
  }
}

.childMenu {
  background: white;
  border-radius: 14px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 100%;
  width: 285px;
  padding: 20px 30px 20px 20px;
  transition: all 0.3s ease;
  a {
    background: white;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 18px;
    padding: 19px 16px;
    transition: all 0.3s ease;
    &:hover { 
      background: var(--blue); 
      color: white;
    }
  }
}

.menuItem:hover .childMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.menuItem:hover .menuHead a, .menuItem.active .menuHead a {
  border: 1px solid var(--border); 
  color: var(--text-color);
}

.banner {
  background: url('../images/banner.png') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 635px;
  position: relative;
  top: 0;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: linear-gradient(90deg, rgba(1, 50, 100, 0.6) 0%, rgba(0, 49, 97, 0.6) 50%, rgba(4, 32, 60, 0.6) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  > img {
    width: 177px; height: 177px;
    opacity: 0.1;
    transition: all 0.3s ease;
  }
  > div {
    background: linear-gradient(90deg, rgba(4, 29, 54, 0.7) 0%, rgba(0, 51, 102, 0.7) 100%);
    border-radius: 24px;
    color: white;
    max-width: 820px;
    padding: 60px;
    > p {
      font: 24px 'BPG Excelsior';
      line-height: 30px;
      margin-bottom: 15px;
    }
    > div {
      font: 15px 'Helvetica Roman';
      line-height: 18px;
      margin-bottom: 25px;
    }
    > a {
      background: rgba(32, 113, 163, 0.4);
      border-radius: 23px;
      color: unset;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font: 12px 'BPG Mrgvlovani';
      line-height: 16px;
      width: 170px; height: 45px;
      transition: all 0.3s ease;
      &:hover {
        background: #2071A3;
      }
    }
  }
  &:has(a:hover) > img { opacity: 0.4; }
}

.services-cont {
  background: #F9FAFB;
  padding: 85px 20px 70px;
  .content1 {
    > p:first-child {
      color: var(---dark-blue);
      text-align: center;
      font: 24px 'BPG Mrgvlovani Caps 2010';
      line-height: 30px;
      margin-bottom: 7px;
    }
    > p:nth-child(2) {
      color: var(--text-color);
      text-align: center;
      font: 14px 'BPG Mrgvlovani';
      line-height: 28px;
      margin-bottom: 45px;
    }
  }
}

.services {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  color: unset;
  text-decoration: none;
  padding: 24px 27px 20px 24px;
  transition: all 0.3s ease;
  width: 302px;
  &:hover {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
    .name { color: #2071A3; }
    > div {
      background: #0E2345;
      img { filter: brightness(0) invert(1); }
    }
  }
  .name {
    color: var(--black);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 9px;
    transition: all 0.3s ease;
  }
  ul {
    color: var(--text-color2);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
  }
}

.service-card > div {
  background: #EFF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-bottom: 22px;
  transition: all 0.3s ease;
  img { transition: all 0.3s ease; }
}

.programs-prev {
  padding: 25px 20px 85px;
  .content {
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }
}

.programs-left {
  width: 605px;
  padding-top: 50px;
}

.programs-left, .news-prev .content1 {
  > p:first-child {
    color: var(---dark-blue);
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 20px;
  }
  > p:nth-child(2) {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 28px;
    margin-bottom: 35px;
  }
}

.program-link {
  border: 2px solid #E2E8F0;
  box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 37px 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  &:nth-last-child(2) { margin-bottom: 40px; }
  &:hover {
    box-shadow: 0px 4px 25px -5px rgba(0, 0, 0, 0.25);
    .desc p:first-child { color: #2071A3; }
  }
  .desc {
    width: calc(100% - 124px);
    p:first-child {
      color: var(--black);
      font: 20px 'BPG Mrgvlovani Caps 2010';
      line-height: 24px;
      margin-bottom: 14px; 
      transition: all 0.3s ease;
    }
    p:nth-child(2) {
      color: var(--text-color2);
      font: 12px 'BPG Mrgvlovani';
      line-height: 16px;
      margin-bottom: 0;
    }
  }
  i {
    color: #90A1B9;
    margin-left: auto;
  }
}

.program-link > div:first-child {
  background: #003366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
}

.see-all {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px ;
  margin: 0 auto;
  width: 270px; height: 50px;
  transition: all 0.3s ease ;
  padding-left: 40px;
  &:hover {
    background: #0E2345;
    color: white;
  }
}

.program-imgs {
  width: calc(100% - 720px);
  height: 745px;
  position: relative;
  img {
    border-radius: 24px;
    width: 100%; height: 718px;
    max-width: 550px;
    object-fit: cover;
    position: relative;
    z-index: 2;
  }
  div {
    border-radius: 24px;
    width: 100%; height: 718px;
    max-width: 550px;
    position: absolute;
    top: 0;
    z-index: 1;
  }
  div:nth-child(2) {
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    transform: rotate(-3deg);
  }
  div:nth-child(3) {
    background: linear-gradient(135deg, #E2E8F0 0%, #CAD5E2 100%);
    transform: rotate(3deg);
  }
}

.news-prev { padding: 0 20px 75px; }
.news-swiper { 
  width: 100%; margin-bottom: 20px; 
  padding: 2px 2px 15px !important;
}
.news-card.swiper-slide { width: 302px !important; }

.news-card {
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0px 4px 6px -4px #0000001A;
  color: unset;
  text-decoration: none;
  transition: all 0.3s ease !important;
  &:hover {
    box-shadow: 0px 10px 13px -3px #0000001A;
  }
  > img {
    border-radius: 12px 12px 0 0;
    width: 100%; height: 192px;
    object-fit: cover;
  }
}

.news-desc {
  background: white;
  border-radius: 0 0 14px 14px;
  padding: 24px 24px 31px;
  .title, .intro {
    display: -webkit-box;
    line-clamp: 4;
    overflow: hidden;
  }
  .title {
    color: black;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 64px;;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  .intro {
    color: var(--text-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 15px;
    height: 60px;
  }
}

.date {
  color: #62748E;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 14px 'Helvetica Roman';
  line-height: 20px;
  margin-bottom: 25px;
  i { color: var(--light-blue); font-size: 17px; }
}

footer {
  background: url('../images/login-bg.png') no-repeat center center / cover;
  width: 100%;
  position: relative;
  padding: 80px 20px 40px !important;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: rgba(14, 35, 69, 0.92);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.footer-content > hr {
  border-color: rgba(223, 223, 223, 0.4);
  opacity: 1;
  margin: 60px 0 24px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-logo {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  img { width: 93px; height: 93px; }
  span {
    font: 16px 'BPG Excelsior';
    line-height: 19px;
    max-width: 132px;
  }
}

.footer-menu {
  p {
    color: white;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 20px;
    margin-bottom: 20px;
  }
  div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    a {
      color: white;
      text-decoration: none;
      font: 14px 'BPG Mrgvlovani';
      line-height: 19px;
      max-width: 405px;
    }
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  > span {
    color: #CFCFCF;
    font: 14px 'Arial';
    line-height: 20px;
    a { color: unset; text-decoration: none; }
  }
}

.footer-media {
  display: flex;
  gap: 12px;
  a {
    background: rgba(243, 243, 243, 0.3);
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px; height: 33px;
    transition: all 0.3s ease;
    &:hover { background: var(--blue); }
  }
}

.about-head {
  background: linear-gradient(90deg, #041D36 0%, #041F3A 9.09%, #04213E 18.18%, #042343 27.27%, 
  #032547 36.36%, #03274B 45.45%, #032950 54.55%, #022B54 63.64%, #022D58 72.73%, #012F5D 81.82%, 
  #013161 90.91%, #003366 100%);
  padding: 60px 20px;
  p {
    color: white;
    font: 40px 'BPG Mrgvlovani Caps 2010';
    line-height: 60px;
    margin-bottom: 0;
  }
  div {
    color: var(--text-color1);
    font: 18px 'BPG Mrgvlovani';
    line-height: 30px;
  }
}

.page-cont {
  padding: 50px 20px 120px;
  .content {
    align-items: flex-start;
    gap: 40px;
  }
}

.page-nav {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 27px 25px 20px;
  width: 280px;
  > p:first-child {
    color: var(--dark-blue);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 18px;
  }
  div {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  a {
    background: white;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 18px;
    padding: 12px 10px 12px 16px;
    transition: all 0.3s ease;
    &:hover, &.active { 
      background: var(--blue); 
      color: white;
    }
  }
}

.page-content { width: calc(100% - 320px); }
.page-title, .page-title1 {
  color: var(--dark-blue);
  font: 30px 'BPG Mrgvlovani Caps 2010';
  line-height: 38px;
  margin-bottom: 25px;
}

.page-title1 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 24px;
}

.about-text, .content-text {
  color: var(--text-color);
  font: 16px 'BPG Mrgvlovani';
  line-height: 28px;
  margin-bottom: 50px;
}

.content-text { margin-bottom: 20px; }

.mission-text, .values-text {
  background: linear-gradient(90deg, #041D36 0%, #041F3A 9.09%, #04213E 18.18%, #042343 27.27%, #032547 36.36%, 
  #03274B 45.45%, #032950 54.55%, #022B54 63.64%, #022D58 72.73%, #012F5D 81.82%, #013161 90.91%, #003366 100%);
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 50px;
  > p:first-child {
    color: white;
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 20px;
  }
  > div {
    color: var(--text-color1);
    font: 16px 'BPG Mrgvlovani';
    line-height: 28px;
    max-width: 625px;
  }
}

.history, .structure-units {
  > p:first-child {
    color: var(--dark-blue);
    font: 32px 'BPG Mrgvlovani Caps 2010';
    line-height: 40px;
    margin-bottom: 30px;
  }
  div {
    border-left: 4px solid;
    border-image-source: linear-gradient(0deg, #0E2345, #0E2345),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 30px;
    margin-bottom: 30px;
    span:first-child {
      color: var(--light-blue);
      font: 20px 'BPG Mrgvlovani Caps 2010';
      line-height: 24px;
    }
    span:nth-child(2) {
      color: var(--text-color);
      font: 16px 'BPG Mrgvlovani';
      line-height: 28px;
    }
    &:last-child { margin-bottom: 0; }
  }
}

.login-cont {
  background: url('../images/login-bg.png') no-repeat center center / cover;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%; height: 654px;
  position: relative;
  margin-bottom: 20px;
  padding: 0 20px;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: linear-gradient(90deg, rgba(1, 50, 100, 0.6) 0%, rgba(0, 49, 97, 0.6) 50%, rgba(4, 32, 60, 0.6) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.login-cont > div {
  background: linear-gradient(90deg, #041D36 0%, #003366 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 60px;
  > p:first-child {
    color: white;
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 18px;
  }
  > p:nth-child(2) {
    color: var(--text-color1);
    font: 14px 'BPG Mrgvlovani';
    line-height: 28px;
    margin-bottom: 33px;
    text-align: center;
    max-width: 730px;
  }
  > a {
    background: white;
    border-radius: 8px;
    color: #133055;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: 225px; height: 50px;
    transition: all 0.3s ease;
    &:hover {
      background: var(---dark-blue);
      color: white;
    }
  }
}

.structure {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 40px;
  > p:first-child {
    color: var(---dark-blue);
    font: 28px 'BPG Mrgvlovani Caps 2010';
    line-height: 36px;
    margin-bottom: 30px;
    padding-left: 80px;
  }
}

.structure-head {
  background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
  #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
  #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 280px;
  padding: 22px 10px;
  margin: 0 auto 30px;
  span:first-child {
    color: white;
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 27px;
  }
  span:nth-child(2) {
    color: var(--text-color1);
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
  }
}

.structure-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
  li {
    border: 2px solid var(--light-blue);
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 195px;
    padding: 25px;
    span:first-child {
      color: var(--black);
      font: 16px 'BPG Mrgvlovani Caps 2010';
      line-height: 24px;
    }
    span:nth-child(2) {
      color: var(--text-color2);
      font: 14px 'BPG Mrgvlovani';
      line-height: 20px;
    }
  }
}

.structure-units div {
  border-left: 4px solid var(--light-blue);
  span:first-child { color: var(--black); }
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  > div {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 33px 26px 30px 33px;
    > p {
      color: var(--black);
      font: 24px 'BPG Mrgvlovani Caps 2010';
      line-height: 28px;
      margin-bottom: 13px;
    }
    > div {
      color: var(--text-color2);
      font: 16px 'BPG Mrgvlovani';
      line-height: 26px;
    }
  }
}

.icon {
  background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
  #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
  #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 56px; height: 56px;
}

.values-text {
  margin-bottom: 0;
  > p:first-child { text-align: center; }
  > div { max-width: unset; text-align: center; }
}

.fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  > div {
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 35px;
  }
  .icon { 
    color: white;
    font: bold 24px 'Inter';
    line-height: 24px;
    width: 48px; height: 48px; 
  }
}

.fields > div > div:last-child {
  color: var(--text-color);
  width: calc(100% - 72px);
  > p:first-child {
    color: var(--black);
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 13px;
  }
  > div:nth-child(2) {
    font: 16px 'BPG Mrgvlovani';
    line-height: 28px;
    margin-bottom: 23px;
  }
  ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.influence {
  background: linear-gradient(90deg, #041D36 0%, #041F3A 9.09%, #04213E 18.18%, #042343 27.27%, 
  #032547 36.36%, #03274B 45.45%, #032950 54.55%, #022B54 63.64%, #022D58 72.73%, #012F5D 81.82%, 
  #013161 90.91%, #003366 100%);
  border-radius: 14px;
  padding: 40px;
  > p:first-child {
    color: white;
    font: 28px 'BPG Mrgvlovani Caps 2010';
    line-height: 34px;
    margin-bottom: 22px;
    text-align: center;
  }
}

.influence > div, .research-numbers > div {
  display: flex;
  justify-content: center;
  gap: 32px;
  div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    max-width: 190px;
    span:first-child {
      color: #FFFFFF;
      font: bold 48px 'Inter';
      line-height: 72px;
    }
    span:nth-child(2) {
      color: var(--text-color1);
      font: 14px 'BPG Mrgvlovani';
      line-height: 21px;
    }
  }
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  > p:first-child {
    color: #2375FE;
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 5px;
  }
}

.plan {
  border: 1px solid var(--border);
  border-radius: 14px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 25px;
  > div:last-child {
    background: #F5F5F5;
    border-radius: 8px;
    color: var(--text-color2);
    font-size: 20px;
    width: 48px; height: 48px;
    transition: all 0.3s ease;
    i { transform: rotate(90deg); }
  }
}

.plan-info {
  width: calc(100% - 58px);
  p:first-child {
    color: var(--black);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 27px;
    margin-bottom: 6px;
  }
  > p:nth-child(2) {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    margin-bottom: 8px;
  }
  > div:last-child {
    color: var(--text-color2);
    display: flex;
    align-items: center;
    gap: 16px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    div {
      background: var(--border);
      border-radius: 50%;
      width: 6px; height: 6px;
    }
  }
}

.plan:hover > div:last-child {
  background: var(--blue);
  color: white;
}

.implementation-stages {
  > p:first-child {
    color: var(---dark-blue);
    font: 26px 'BPG Mrgvlovani Caps 2010';
    line-height: 30px;
    margin-bottom: 30px;
  }
  > div {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    &:last-child { margin-bottom: 0; }
  }
}

.year {
  background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
  #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
  #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 16px 'BPG Mrgvlovani Caps 2010';
  line-height: 20px;
  width: 120px; height: 50px;
}

.stage-info {
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-color);
  font: 15px 'BPG Mrgvlovani';
  line-height: 26px;
  padding: 25px;
  width: calc(100% - 144px);
}

.dean {
  background: linear-gradient(0deg, #0E2345, #0E2345),
  linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 35px 45px;
  margin-bottom: 40px;
  > img {
    border-radius: 50%;
    width: 214px; height: 214px;
  }
}

.dean-info {
  width: calc(100% - 238px);
  > p:first-child {
    color: white;
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 15px;
  }
  > p:nth-child(2) {
    color: white;
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 8px;
  }
  > div {
    color: var(--text-color1);
    font: 16px 'BPG Mrgvlovani';
    line-height: 26px;
  }
}

.members > p:first-child {
  color: var(--black);
  font: 24px 'BPG Mrgvlovani Caps 2010';
  line-height: 28px;
  margin-bottom: 13px;
}

.member {
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 25px;
  margin-bottom: 16px;
  &:last-child { margin-bottom: 0; }
  > img {
    border-radius: 8px;
    width: 88px; height: 88px;
    object-fit: cover;
  }
}

.member-info {
  width: calc(100% - 112px);
  .name {
    color: var(--black);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 10px;
  }
  .pos {
    color: var(--text-color2);
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    margin-bottom: 7px;
  }
}

.contact-member {
  color: var(--text-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 21px;
  a { color: unset; text-decoration: none; }
  p { margin-bottom: 0; }
  div {
    background: var(--text-color);
    width: 1px; height: 20px;
  }
}

.content-page { padding: 50px 20px 150px; }

.research-numbers {
  background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
  #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
  #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
  border-radius: 14px;
  padding: 30px 40px 40px;
  margin-bottom: 20px ;
  > p {
    color: white;
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 50px;
  }
  > div { 
    justify-content: space-between; 
    flex-wrap: wrap;
    > div { width: 220px; }
  }
}

.research-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 33px;
  margin-bottom: 20px;
  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
    span {
      color: var(--black);
      font: 20px 'BPG Mrgvlovani Caps 2010';
      line-height: 30px;
      width: calc(100% - 170px);
    }
  }
  .text {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
  }
}

.tag {
  border-radius: 16px;
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px;
  padding: 7px 16px;
  &.ongoing {
    background: #DCFCE7;
    color: #166534;
  }
  &.finished {
    background: var(--border);
    color: var(--text-color);
  }
}

.research-card .intro {
  color: var(--text-color);
  font: 15px 'BPG Mrgvlovani';
  line-height: 26px;
  margin-bottom: 20px;
}

.research-card .details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  line-height: 21px;
  margin-bottom: 20px;
  span:first-child {
    color: var(--text-color2);
    font: 14px 'BPG Mrgvlovani';
  }
  span:nth-child(2) {
    color: var(--black);
    font: 14px 'BPG Mrgvlovani Caps 2010';
  }
  div:nth-child(3) span:nth-child(2), div:nth-child(4) span:nth-child(2) { color: var(--light-blue); }
}

.results {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 16px;
  > p {
    color: var(--black);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 11px;
  }
  ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 24px;
    margin: 0;
    padding-left: 13px;
    li::marker { color: var(--light-blue); }
  }
}

.strategy-cont {
  padding: 50px 20px 120px;
  .content1 { max-width: 1056px; }
}

.performance-cards {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  > div { width: 50%; }
}

.performance-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 33px;
  > p:first-child {
    color: var(--black);
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 30px;
    margin-bottom: 15px;
  }
  > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    &:last-child { margin-bottom: 0; }
  }
}

.range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  span:first-child {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
  }
  span:last-child {
    color: var(--light-blue);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
  }
  > div {
    p:first-child {
      color: var(--black);
      font: 18px 'BPG Mrgvlovani Caps 2010';
      line-height: 24px;
      margin-bottom: 6px;
    }
    p:last-child {
      color: var(--text-color);
      font: 14px 'BPG Mrgvlovani';
      line-height: 19px;
      margin-bottom: 0;
    }
  }
}

.range {
  position: relative;
  div:first-child {
    background: var(--border);
    border-radius: 6px;
    width: 100%; height: 8px;
  }
  div:nth-child(2) {
    background: var(--light-blue);
    border-radius: 6px 0 0 6px;
    position: absolute;
    left: 0; top: 0;
    height: 8px; width: 0;
    transition: all 0.8s ease;
  }
}

.performance-cards1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 40px;
  > div {
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 33px;
  }
}

.comparison {
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 41px;
  margin-bottom: 40px;
}

.comparison > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  > p {
    color: var(--text-color2);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 21px;
    margin-bottom: 15px;
  }
  > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    &:last-child { margin-bottom: 0; }
    span:first-child {
      color: var(--black);
      font: bold 32px 'Inter';
      line-height: 36px;
    }
    span:last-child {
      color: var(--text-color2);
      font: 12px 'BPG Mrgvlovani';
      line-height: 16px;
    }
  }
}

.comparison > div:nth-child(2) {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.comparison > div:last-child > div span:first-child {
  color: var(--light-blue);
}

.catalogue-cont {
  padding: 50px 20px 120px;
  .content {
    align-items: flex-start;
    gap: 40px;
  }
}

.catalogue-filter {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 280px;
}

.categories > p, .pop-books > p, .recommendations > p {
  color: var(--black);
  font: 20px 'BPG Mrgvlovani Caps 2010';
  line-height: 25px;
  margin-bottom: 20px;
}

.categories a {
  border-radius: 8px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  position: relative;
  margin-bottom: 4px;
  &:last-child { margin-bottom: 0; }
  > * { position: relative; z-index: 2; }
  span:first-child {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    transition: all 0.3s ease;
  }
  span:last-child {
    color: var(--text-color2);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    transition: all 0.3s ease;
  }
  &::after {
    content: '';
    background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
    #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
    #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
    border-radius: 8px;
    position: absolute;
    inset: 0; opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
  }
  &:hover, &.active {
    &::after { opacity: 1; }
    span { color: white !important; }
  }
}

.pop-book {
  background: #F5F5F5;
  border-radius: 8px;
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  margin-bottom: 12px;
  &:last-child { margin-bottom: 0; }
  > p:first-child {
    color: var(--black);
    font: 13px 'BPG Mrgvlovani';
    line-height: 20px;
    margin-bottom: 0;
  }
}

.rating {
  color: var(--text-color2);
  display: flex;
  align-items: center;
  gap: 12px;
  font: 11px 'Inter', "Helvetica Roman";
  line-height: 13px;
  p { margin-bottom: 0; }
  i { color: #FBBF24; }
  p:nth-child(2) {
    background: var(--text-color2);
    border-radius: 50%;
    width: 4px; height: 4px;
  }
}

.recommendations { width: calc(100% - 320px); }

.books {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; 
}

.book-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  color: unset;
  text-decoration: none;
  padding: 25px 25px 20px;
  transition: all 0.3s ease;
  &:hover { border-color: #1965FD; }
  &:hover .name { color: var(--light-blue); }
  &:hover .actions > div:last-child { 
    color: white;
    background: #1864FD; 
  }
  .intro {
    color: var(--text-color);
    font: 13px 'BPG Mrgvlovani';
    line-height: 22px;
    margin-bottom: 30px;
  }
}

.book-card .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  > div:first-child {
    background: #F5F5F5;
    border-radius: 17px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 11px 'BPG Mrgvlovani';
    line-height: 13px;
    width: 167px; height: 34px;
  }
  > div:last-child {
    background: #F5F5F5;
    border-radius: 8px;
    color: var(--text-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 155px; height: 34px;
    transition: all 0.3s ease;
    i { transform: rotate(90deg); }
  }
}

.book-name {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
  > div:first-child {
    background: linear-gradient(135deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
    #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
    #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; height: 100px;
  }
}

.book-details {
  width: calc(100% - 120px);
  .name {
    color: var(--black);
    display: -webkit-box;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    max-height: 48px;
    line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }
  .author {
    color: var(--text-color2);
    font: 13px 'BPG Mrgvlovani';
    line-height: 15px;
    margin-bottom: 4px;
  }
  .det {
    color: var(--text-color2);
    display: flex;
    align-items: center;
    gap: 8px;
    font: 12px 'Inter', "Helvetica Roman";
    line-height: 14px;
    margin-bottom: 8px;
  }
}

.access-card {
  background: linear-gradient(90deg, #041D36 0%, #041F3A 9.09%, #04213E 18.18%, #042343 27.27%, 
  #032547 36.36%, #03274B 45.45%, #032950 54.55%, #022B54 63.64%, #022D58 72.73%, #012F5D 81.82%, 
  #013161 90.91%, #003366 100%);
  border-radius: 14px;
  max-width: 1056px; width: 100%;
  margin: 0 auto 85px;
  padding: 40px;
  > p:first-child {
    color: white;
    text-align: center;
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 28px;
    margin-bottom: 15px;
  }
  > p:nth-child(2), > p:last-child {
    color: var(--text-color1);
    text-align: center;
    font: 16px 'BPG Mrgvlovani';
    line-height: 28px;
    margin-bottom: 24px;
    a { color: unset; text-decoration: none; }
  }
  > div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 24px;
    > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 9px;
      flex: 1;
      span {
        color: white;
        font: 18px 'Inter', 'Helvetica Roman';
        line-height: 22px;
      }
      a {
        color: var(--text-color1);
        text-decoration: none;
        font: 14px 'BPG Mrgvlovani';
        line-height: 21px;
      }
    }
  }
  > p:last-child { font-size: 14px; margin-bottom: 0; }
}

.contact-cont { padding: 50px 20px 65px; }
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  > div {
    background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
    #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%,
    #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    margin-bottom: 24px;
  }
  > p:first-of-type {
    color: var(--black);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 27px;
    margin-bottom: 12px;
  }
  a, p {
    color: var(--text-color2);
    display: block;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 24px;
  }
}

.send-form {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  margin-bottom: 70px;
  > * { width: calc(50% - 21px); }
  iframe {
    border-radius: 14px;
    height: 657px;
  }
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  > p:first-child {
    color: var(---dark-blue);
    font: 28px 'BPG Mrgvlovani Caps 2010';
    line-height: 36px;
    margin-bottom: 22px;
  }
  > div { margin-bottom: 20px; }
  label {
    color: #344054;
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    margin-bottom: 5px;
  }
  input, textarea {
    border: 0.91px solid #D0D5DD;
    border-radius: 8px;
    color: rgba(10, 10, 10, 0.5);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: 100%; height: 42px;
    padding-left: 14px;
    &:focus { outline: none; }
  }
  textarea {
    resize: none;
    height: 145px;
    padding-top: 14px;
  }
  .form-group {
    display: flex;
    align-items: center;
    gap: 16px;
    > div { width: calc(50% - 8px); }
  }
  button {
    background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, 
    #2578FE 23.08%, #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, 
    #1C6BFD 61.54%, #1B68FD 69.23%, #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
    border: none;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: 16px 'BPG Mrgvlovani';
    line-height: 24px;
    width: 100%; height: 48px;
  }
}

.info-source {
  background: linear-gradient(90deg, #041D36 0%, #041F3A 9.09%, #04213E 18.18%, #042343 27.27%, 
  #032547 36.36%, #03274B 45.45%, #032950 54.55%, #022B54 63.64%, #022D58 72.73%, #012F5D 81.82%,
  #013161 90.91%, #003366 100%);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 48px;
}

.info-source > div {
  width: calc(50% - 20px);
  max-width: 532px;
  > p:first-child {
    color: white;
    font: 24px 'BPG Mrgvlovani Caps 2010';
    line-height: 32px;
    margin-bottom: 16px;
  }
  .text {
    color: var(--text-color1);
    font: 16px 'BPG Mrgvlovani';
    line-height: 28px;
    margin-bottom: 22px;
  }
  ul {
    color: var(--text-color1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 24px;
    margin: 0;
    padding-left: 13px;
    li::marker { color: var(--light-blue); }
  }
}

.add-info {
  margin-bottom: 16px;
  p:first-child {
    color: var(--light-blue);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 6px;
  }
  p:nth-child(2) {
    color: var(--text-color1);
    font: 14px 'BPG Mrgvlovani';
    line-height: 24px;
    margin-bottom: 0;
  }
  &:last-child { margin-bottom: 0; }
}

.news-cont {
  background: #FAFAFA;
  padding: 40px 20px 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
  margin-bottom: 70px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  button {
    background: white;
    border-radius: 5px;
    border: 1px solid #D5D5D5;
    color: black;
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani'; 
    line-height: 16px;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    &:hover, &.active {
      background: #0E2345;
      border-color: #0E2345;
      color: white;
    }
  }
}

.news-search {
  background: white;
  border: 0.91px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 40px;
}

.news-search > div:first-child {
  display: flex;
  align-items: center;
  gap: 24px;
  > button {
    background: linear-gradient(90deg, #2B7FFF 0%, #297DFF 7.69%, #277AFF 15.38%, #2578FE 23.08%, 
    #2375FE 30.77%, #2173FE 38.46%, #2070FE 46.15%, #1E6DFE 53.85%, #1C6BFD 61.54%, #1B68FD 69.23%, 
    #1965FD 76.92%, #1863FD 84.62%, #1660FC 92.31%, #155DFC 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    margin: 0; height: 46px;
    width: 180px;
    img { filter: brightness(0) invert(1); }
  }
}

.news-input {
  position: relative;
  width: 100%;
  max-width: calc(100% - 204px);
  input {
    color: rgba(10, 10, 10, 0.5);
    border: 0.91px solid #D0D5DD;
    border-radius: 8px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 21px;
    padding-left: 48px;
    width: 100%; height: 47px;
    &:focus { outline: none;  }
  }
  img {
    position: absolute;
    left: 16px; top: 13px;
  }
}

.news-inner-cont {
  background: #FAFAFA;
  padding: 10px 20px 140px;
  .content1 { gap: 40px; }
}

.go-back {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 21px;
  transition: all 0.3s ease;
  &:hover { color: var(--light-blue); }
}

.news {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.curr-news {
  width: calc(100% - 430px);
  .title {
    color: var(---dark-blue);
    font: 26px 'BPG Mrgvlovani Caps 2010';
    line-height: 30px;
    margin-bottom: 30px;
  }
  .text {
    color: var(--text-color);
    font: 16px 'BPG Mrgvlovani';
    line-height: 28px;
    b, strong { font-weight: bold !important; }
    * { font-family: 'BPG Mrgvlovani' !important; }
  }
  hr {
    border-color: var(--border);
    margin: 40px 0;
    opacity: 1;
  }
}

.date-time {
  color: var(--text-color2);
  display: flex;
  align-items: center;
  gap: 12px;
  font: 12px 'BPG Mrgvlovani';
  line-height: 18px;
  margin-bottom: 20px;
  div {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

.news-img {
  border-radius: 14px;
  width: 100%; height: 480px;
  object-fit: cover;
  margin-bottom: 40px;
}

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

.media {
  display: flex;
  align-items: center;
  gap: 12px;
  p {
    color: var(--text-color2);
    display: flex;
    align-items: center;
    gap: 8px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 18px;
    margin: 0;
  }
  div {
    background: #F3F3F3;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px; height: 33px;
    transition: all 0.3s ease;
    img { 
      filter: brightness(0) saturate(100%) invert(46%) sepia(57%) saturate(0%) hue-rotate(175deg) 
      brightness(113%) contrast(103%); 
      transition: all 0.3s ease;
    }
    &:hover { 
      background: var(--blue);
      img { filter: unset; }
    }
  }
}

.other-news {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 25px;
  width: 430px;
  > p {
    color: var(---dark-blue);
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 27px;
    margin-bottom: 18px;
  }
  .type {
    color: var(--text-color2);
    font: 11px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
  }
  .intro {
    display: -webkit-box;
    line-clamp: 2;
    overflow: hidden;
    font: 13px 'BPG Mrgvlovani';
    line-height: 18px;
    height: 36px;
    margin-bottom: 0;
  }
}

.other-news a {
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  img {
    border-radius: 8px;
    width: 80px; height: 60px;
    object-fit: cover;
  }
  div { width: calc(100% - 92px); }
  &:last-child { margin-bottom: 0; }
}