* {
  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, .dropdownMenu {
    scrollbar-width: thin;
    scrollbar-color: #D5D5D5 #F1F1F1;
  }

  .dropdownMenu { scrollbar-color: #2f2f2f #F1F1F1; }
}

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

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

:root {
  --black: #1A1D22; 
  --gold: #C99E52;
  --white: #F9F9F9;
  --grey: #CDCECF;
  --blue: #5E7A9F;
}

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

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

.content1 { flex-direction: column; }

.loading-screen {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

#logo {
  width: 505px;
  clip-path: inset(0 100% 0 0);
  animation: revealLogo 2.5s ease forwards;
}

@keyframes revealLogo {
  to { clip-path: inset(0 0 0 0); }
}

#percentage {
  color: white;
  font: bold 32px 'Noto Sans Georgian';
  line-height: 40px;
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
}

#line {
  background: var(--black);
  width: 100vw; height: 16px;
  position: absolute;
  bottom: 0; left: 0;
  overflow: hidden;
}

#line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  width: 0%;
  animation: fillLine 2.5s linear forwards;
}

@keyframes fillLine {
  to { width: 100%; }
}

.button-white {
  color: var(--white);
  text-decoration-color: transparent;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  transition: all 0.3s ease-out;
  &:hover { 
    border-color: var(--white) !important; 
    text-decoration-color: var(--white) !important; 
  }
  &:active { 
    border-color: var(--grey) !important; 
    color: var(--grey) !important; 
    text-decoration-color: var(--grey) !important; 
  }
}

.button-black {
  color: var(--black);
  text-decoration-color: transparent;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  transition: all 0.3s ease-out;
  &:hover { 
    border-color: var(--black) !important; 
    text-decoration-color: var(--black) !important; 
  }
  &:active { 
    border-color: var(--grey) !important; 
    color: var(--grey) !important; 
    text-decoration-color: var(--grey) !important; 
  }
}

.cta-button {
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s ease-out;
  &:hover { 
    background: var(--blue) !important;
    color: var(--grey) !important; 
  }
  &:active { 
    background: rgba(94, 122, 159, 0.8) !important; 
    color: var(--grey) !important; 
  }
}

.page-title { font: bold 24px 'Noto Sans Georgian'; line-height: 32px; }
.page-title1 { font: bold 32px 'Noto Sans Georgian'; line-height: 40px; }
.page-title2 { font: bold 40px 'Noto Sans Georgian'; line-height: 48px; margin-bottom: 55px; }

header {
  background: white;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 2000;
  transition: all 0.3s ease;
  &.open-menu { background: transparent !important; }
  &.scrolled { box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15); }
} 

.ici-header { background: transparent; }
.ici-header.scrolled { background: white; }

header.open-menu .header-actions > a:first-child, header .search {
  opacity: 0;
  visibility: hidden;
}

header.open-menu .search {
  opacity: 1;
  visibility: unset;
}

header.open-menu #toggle-menu div { border-color: var(--white); }
header.open-menu .lang { color: var(--white); }

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  > a:first-child {
    background: var(--blue);
    color: var(--black);
    font: 16px 'Noto Sans Georgian';
    line-height: 16px;
    padding: 10px 24px;
  }
}

#toggle-menu {
  background: transparent;
  border: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  div {
    border-top: 1.5px solid var(--black);
    width: 22px; height: auto;
    transition: all 0.3s ease;
  }
}

#toggle-menu.active div:nth-child(1) { transform: translateY(9px) rotate(45deg); }
#toggle-menu.active div:nth-child(2) { opacity: 0; }
#toggle-menu.active div:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.dropdownMenu {
  background: var(--black);
  color: white;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  z-index: 2000;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  overflow-y: auto;
  padding: 0 20px calc(env(safe-area-inset-bottom) + 30px);
  height: 100dvh;
  overflow-y: auto;
}

.dropdownMenu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdownMenu .content1 { 
  justify-content: space-between; 
  gap: 100px; 
  height: 100%;
}

.menu-cont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-top: 150px;
}

.menu {
  display: flex;
  align-items: flex-start;
  gap: 75px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu-item ul {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  margin: 0; opacity: 0;
  list-style: none;
  transition: all 0.3s ease;
  li:first-child { margin-top: 32px; }
  a {
    color: white;
    text-decoration: none;
    font: bold 24px 'Noto Sans Georgian';
    line-height: 32px;
  }
}

.menu-item.active ul {
  max-height: 300px; 
  opacity: 1;
}

.menu-item.active .plus div:last-child { transform: rotate(0) translate(0, -2px); }

.menu-items > a, .menu-head span {
  color: white;
  text-decoration: none;
  font: bold 40px 'Noto Sans Georgian';
  line-height: 40px;
  text-transform: uppercase;
}

.menu-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plus div {
  border: 1.5px solid var(--white);
  border-radius: 1px;
  width: 14px;
  &:last-child { 
    transform: rotate(90deg) translateX(-2px); 
    transition: all 0.3s ease;
  }
}

.menu-register {
  max-width: 545px;
  > img {
    width: 100%; height: 288px;
    object-fit: cover;
    margin-bottom: 16px;
  }
  > p {
    color: var(--white);
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 24px;
  }
  > div {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  a:last-child {
    color: white;
    background: #F09562;
    padding: 8px 16px;
  }
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding-bottom: 40px;
  a { font: 16px 'Noto Sans Georgian'; line-height: 24px; }
}

.search, .search1 {
  border-bottom: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 360px;
  padding-bottom: 14px;
  input {
    background: transparent;
    border: none;
    color: var(--white);
    font: 14px 'Noto Sans Georgian';
    line-height: 20px;
    width: calc(100% - 35px);
    &:focus { outline: none; }
  }
  button {
    background: transparent;
    border: none;
  }
}

.dropdownMenu .search { display: none; }

.banner-cont, .about-head { margin-top: -80px; }
.banner-swiper { width: 100%; height: 800px; }
.banner-slide {
  width: 100% !important;
  > img:first-child {
    width: 100%; height: 100%;
    object-fit: cover;
  }
}

.banner-text {
  color: var(--white);
  position: absolute;
  left: calc(50% - 672px); bottom: 50px;
  max-width: 500px;
  p:first-child {
    font: bold 40px 'Noto Sans';
    line-height: 48px;
    margin-bottom: 16px;
  }
  p:nth-child(2) {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    max-width: 320px;
    margin-bottom: 24px;
  }
  > div {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .cta-button { 
    background: #F09562; 
    color: var(--white);
    padding:8px 16px; 
  }
}

.banner-swiper .swiper-pagination {
  text-align: end;
  bottom: 50px !important;
  right: 48px !important;
  left: unset !important;
}

.banner-swiper .swiper-pagination-bullet {
  background: transparent;
  color: var(--white) !important;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  position: relative;
  width: auto; height: auto;
  margin: 0 8px !important;
}

.banner-swiper .swiper-pagination-bullet-active {
  color: var(--grey) !important;
  margin-right: 60px !important;
}

.banner-swiper .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active {
  margin-right: 16px !important;
  margin-left: 60px !important;
}

.banner-swiper .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 50px; height: 2px;
  background: var(--grey);
  transform: translateY(-50%);
}

.banner-swiper .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active::after {
  left: auto;
  right: calc(100% + 10px);
}

.about-prev {
  padding: 80px 20px;
  .content {
    align-items: center;
    gap: 25px;
    > * { width: calc(50% - 12.5px); }
    > img { height: 700px; object-fit: cover; }
  }
}

.about-prev .desc {
  color: var(--black);
  > p:first-child { margin-bottom: 24px; }
  > div {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 24px;
  }
}

.main-page-links {
  padding: 0 20px 80px;
  .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.mobile-page-links { display: none !important; }

.main-page-link {
  border: 1px solid rgba(26, 29, 34, 0.3);
  padding: 32px;
  .head {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 165px;
  }
  .text {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
  }
}

.ici-prev { padding: 80px 20px; }
.ici-prev-cont {
  background: var(--black);
  border-radius: 4px;
  padding: 40px 40px 45px;
  .head {
    color: var(--white);
    margin-bottom: 44px;
    span:last-child { max-width: 505px; }
  }
}

.ici-prev-cont .head, .experience-cont .head, 
.partners-cont .head, .contact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  span:last-child {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
  }
}

.ici-cards { 
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 35px;
}

.mobile-ici-cards { display: none !important; }

.ici-card {
  border-radius: 4px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
  height: 312px;
  padding: 20px 18px;
  p:first-child { text-align: center; margin-bottom: 0; }
  div {
    display: -webkit-box;
    font: 12px 'Noto Sans Georgian';
    line-height: 20px;
    line-clamp: 2;
    margin-top: auto;
    height: 40px;
    overflow: hidden;
  }
}

.ici-card:first-child { transform: rotate(-5deg) !important; }
.ici-card:nth-child(2) { transform: rotate(4deg) !important; }
.ici-card:nth-child(3) { transform: rotate(-4deg) !important; }
.ici-card:nth-child(4) { transform: rotate(2deg) !important; }
.ici-card:nth-child(5) { transform: rotate(-4deg) !important; }
.ici-card:nth-child(6) { transform: rotate(4deg) !important; }
.ici-card:nth-child(7) { transform: rotate(2deg) !important; }
.ici-card:nth-child(8) { transform: rotate(-4deg) !important; }
.ici-card:nth-child(9) { transform: rotate(4deg) !important; }
.ici-card:nth-child(10) { transform: rotate(-4deg) !important; }
.ici-card:hover { transform: rotate(0) !important; }

.projects-prev, .news-prev {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .head {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; max-width: 1344px;
    margin-bottom: 40px;
    padding: 0 20px;
  }
}

.project-swiper, .news-swiper, .partner-swiper, 
.gallery-swiper { 
  width: 100%; 
  padding-bottom: 30px !important;
}

.project-slide { 
  width: 100% !important;
  max-width: 1344px !important;
  height: 664px !important;
  position: relative;
  > img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  &::after {
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 13.94%, rgba(47, 47, 47, 0) 51.92%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.project-slide > div {
  color: var(--white);
  position: absolute;
  z-index: 2;
  left: 32px; bottom: 32px;
  max-width: 515px;
  > p:first-child { margin-bottom: 16px; }
  > div {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 16px;
  }
}

.experience-cont, .partners-cont {
  padding: 80px 20px;
  .head {
    color: var(--black);
    margin-bottom: 72px;
    span { max-width: 660px; }
  }
}

.exp-numbers {
  color: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  p {
    font-weight: bold;
    font-family: 'Noto Sans Georgian';
    margin-bottom: 16px;
  }
  p:first-child { font-size: 80px; line-height: 80px; }
  p:nth-child(2), p:last-child { font-size: 16px; line-height: 24px; }
  p:last-child { margin-bottom: 0; font-weight: 400; }
}

.news-swiper { padding-left: 20px !important; }
.news-card {
  color: var(--black);
  text-decoration: none;
  width: 100%;
  img {
    width: 100%; height: 280px;
    object-fit: cover;
    margin-bottom: 16px;
  }
  .title {
    display: -webkit-box;
    line-clamp: 2;
    height: 48px;
    overflow: hidden;
    font: bold 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 0;
  }
  &.swiper-slide { width: 432px !important; }
}

.date { 
  font: 12px 'Noto Sans Georgian';
  line-height: 20px;
  margin-bottom: 0;
}

.partner-slide {
  color: unset;
  text-decoration: none;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 127px !important;
  img {
    width: 104px; height: 104px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
  }
  span {
    color: var(--black);
    text-align: center;
    font: bold 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 0;
  }
  &:hover img { filter: grayscale(0); }
}

footer {
  background: var(--black);
  padding: 50px 20px !important;
  position: relative;
  z-index: 1000;
}

.ici-footer { background: #73AEE2; }
.ici-footer-logo {
  display: flex !important;
  align-items: flex-end;
  gap: 26px;
  max-width: unset !important;
  margin-bottom: 48px;
}

.ici-footer .content1 > .ici-footer-logo { display: none !important; }

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

.ici-footer .footer-top { gap: 10px; }

.footer-menu {
  > p {
    color: var(--white);
    font: bold 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 24px;
  }
  ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0; padding: 0;
  }
  a { display: block; max-width: 202px; }
}

.ici-footer .footer-menu > p { color: var(--black); }

.footer-left > div:first-child { margin-bottom: 40px; }
.footer-right {
  display: flex;
  align-items: flex-start;
  gap: 140px;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ici-footer .footer-socials a img { filter: brightness(0) invert(0); }

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
  margin-bottom: 50px;
  img:first-child { width: 100%; max-width: 777px; }
  img { object-fit: contain; }
}

.privacy, .copyright {
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font: 14px 'Avenir Next';
  line-height: 22px;
}
.privacy { margin-bottom: 8px; }

.ici-footer .privacy, .ici-footer .copyright { color: var(--black); }

.city-hall {
  position: absolute;
  right: 48px; bottom: 48px;
}

.page-cont { padding: 25px 20px 80px; }

.bread-crumbs {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  margin-bottom: 40px;
  a { color: unset; }
  a.active { color: var(--grey); text-decoration-color: transparent; }
  a.active:hover { text-decoration-color: var(--grey) !important; }
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 40px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  button {
    background: transparent;
    border: none;
    color: var(--black);
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
  }
}

.pagination button.active {
  color: var(--blue);
  margin-right: 60px;
  position: relative;
  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    width: 50px; height: 1px;
    background: var(--blue);
    transform: translateY(-50%);
  }
}

.pagination button:last-child.active {
  margin-right: 16px !important;
  margin-left: 60px !important;
  &::after {
    left: auto;
    right: calc(100% + 10px);
  }
}

.curr-proj-img {
  width: 100%; height: 480px;
  object-fit: cover;
  margin-bottom: 70px;
}

.proj-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  > div > p:first-child {
    color: var(--black);
    font: bold 32px 'Noto Sans Georgian';
    line-height: 40px;
    margin-bottom: 0;
  }
}

.proj-overview {
  max-width: 775px;
  width: calc(100% - 330px);
  > p:first-child { margin-bottom: 32px !important; }
  .text {
    color: var(--black);
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    * { font-family: 'Noto Sans Georgian' !important; }
  }
}

.proj-det, .vacancy-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 320px;
  .cta-button {
    background: var(--blue);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
  }
}

.proj-det > div, .vacancy-details > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  span {
    color: var(--black);
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    &:first-child { font-weight: bold; }
  }
  a {
    color: var(--black); 
    text-decoration: none;
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
  }
  img { filter: brightness(0) invert(0); }
}

.proj-media div { display: flex; gap: 32px; }

.gallery-card {
  width: 545px !important;
  img { 
    width: 100%; height: 400px;
    object-fit: cover;
  }
}

.gallery-prev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  > p { width: 100%; max-width: 1344px; margin-bottom: 0; }
}

.documents-list {
  display: flex;
  flex-direction: column;
  a {
    border-bottom: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    padding: 24px 0;
    transition: all 0.3s ease;
    p { margin-bottom: 0; font-weight: bold; }
    &:hover {
      border-color: var(--blue);
      color: var(--blue);
    }
    &:visited {
      color: var(--blue);
      border-color: var(--blue);
    }
  }
}

.media-title {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
  font: bold 40px 'Noto Sans';
  line-height: 48px;
  margin-bottom: 55px;
  span.active { color: var(--blue); }
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 24px;
  margin-bottom: 40px;
}

.curr-media {
  .page-title2 { margin-bottom: 20px; }
  .date { margin-bottom: 55px; }
  .text {
    font: 20px 'Noto Sans Georgian';
    line-height: 28px;
    max-width: 660px;
    margin: 0 auto;
    * { font-family: 'Noto Sans Georgian' !important; } 
  }
  img { max-width: 100%; width: auto;}
}

.news-prev1 { padding: 0 0 150px; }

.contact-head {
  margin-bottom: 80px;
  span:last-child { max-width: 660px; } 
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.contact-card {
  color: var(--black);
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  flex: 1;
  > p {
    font-weight: bold;
    margin-bottom: 24px;
  }
  > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  a { 
    color: unset; 
    text-decoration: none; 
    max-width: 216px;
  }
}

.map {
  width: 100%; height: 330px;
  margin-bottom: 50px;
}

.contact-links {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  a {
    color: #191A1A;
    text-decoration: none;
    font: 16px 'Noto Sans Georgian';
    line-height: 16px;
  }
}

.faq {
  display: flex;
  flex-direction: column;
}

.faq-item { 
  border-bottom: 0.5px solid var(--black); 
  &.show i { transform: rotate(180deg); }
}

.question {
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: bold 16px 'Noto Sans Georgian';
  line-height: 24px;
  padding: 32px 0;
  p {
    width: calc(100% - 30px);
    margin-bottom: 0;
  }
  i { transition: all 0.3s ease; }
}

.answer {
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.answer-content {
  padding: 0 0 32px 0;
}

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

.vacancies-card {
  border: 0.5px solid rgba(0, 0, 0, 0.6);
  color: var(--black);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  padding: 24px;
  .title {
    display: -webkit-box;
    line-clamp: 2;
    height: 64px;
    overflow: hidden;
    font-weight: bold;
    font-size: 24px; line-height: 32px;
    margin-bottom: 12px;
  }
  > p:nth-child(2) { margin-bottom: 32px; }
  .salary { font-weight: bold; margin: auto 0 16px; }
  .deadline {
    font-size: 12px; line-height: 20px;
    margin-bottom: 0;
  }
}

.vacancy-page, .management-page {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.vacancy-overview, .management-overview {
  color: var(--black);
  max-width: 775px;
  width: calc(100% - 330px);
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  * { font-family: 'Noto Sans Georgian' !important; }
  b, strong { font-weight: bold !important; }
}

.vacancy-details > p:first-child {
  color: var(--black);
  font: bold 32px 'Noto Sans Georgian';
  line-height: 40px;
  margin-bottom: 0;
}

.vacancy-details {
  gap: 32px;
  > .group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    > div { 
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 161px; 
    }
  }
}

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

.member-card {
  border: 0.5px solid rgba(0, 0, 0, 0.6);
  color: var(--black);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  img {
    width: 100%; height: 288px;
    object-fit: cover;
    margin-bottom: 8px;
  }
  .name {
    font: bold 24px 'Noto Sans Georgian';
    line-height: 32px;
    padding-left: 16px;
    margin-bottom: 4px;
  }
  .pos {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 16px;
    padding-left: 16px;
  }
}

.member-name {
  color: var(--black);
  font: bold 40px 'Noto Sans';
  line-height: 48px;
  margin-bottom: 16px;
}

.member-pos {
  color: var(--black);
  font: bold 16px 'Noto Sans Georgian';
  line-height: 24px;
  margin-bottom: 70px;
}

.about-head {
  width: 100%; height: 800px;
  position: relative;
  img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .bread-crumbs {
    position: absolute;
    top: 104px;
    left: calc(50% - 672px);
  }
}

.about-page { padding: 80px 20px 150px; }
.about-intro {
  color: var(--black);
  font: bold 24px 'Noto Sans Georgian';
  line-height: 32px;
  text-align: center;
  max-width: 1116px;
  margin: 0 auto 150px;
}

.about-vision {
  display: flex;
  flex-direction: column;
  gap: 80px;
  > div {
    color: var(--black);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    p { margin-bottom: 0; }
    p:first-child {
      font: bold 40px 'Noto Sans';
      line-height: 48px;
    }
    p:last-child {
      font: 20px 'Noto Sans Georgian';
      line-height: 28px;
      max-width: 660px;
    }
  }
}

.experience-cont1 { padding: 0 20px 150px; }

.mobile-history-section { display: none; }
.history-section {
  background: var(--blue);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.history-scroll {
  display: flex;
  gap: 120px;
  width: max-content; 
  height: 915px;
}

.history-intro, .mob-history-intro {
  background: white;
  width: 620px;
  padding: 56px 10px 0 48px;
  > p:first-child {
    font: bold 40px 'Noto Sans';
    line-height: 40px;
    margin-bottom: 200px;
  }
  .text {
    display: -webkit-box;
    font: 20px 'Noto Sans Georgian';
    line-height: 28px;
    line-clamp: 8;
    overflow: hidden;
    height: 224px; max-width: 432px;
    * { font-family: 'Noto Sans Georgian'; }
  }
}

.mob-history-intro {
  width: 100%;
  padding: 50px 20px;
  > p:first-child { margin-bottom: 24px; }
}

.time-line {
  background: var(--blue);
  display: flex;
  gap: 145px;
  min-width: max-content;
  height: 100%;
  position: relative;
  padding-right: 120px;
  &::after {
    content: '';
    background: var(--black);
    position: absolute;
    width: 100%; height: 1px;
    top: 50%; left: 0;
  }
}

.timeline-item {
  display: flex;
  gap: 100px;
}

.year {
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 24px; padding-top: 308px;
  span { font: 144px 'ALK Tall Mtavruli'; line-height: 144px; }
  div {
    font: 12px 'Noto Sans Georgian';
    line-height: 20px;
    max-width: 230px;
  }
}

.timeline-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  align-items: center;
}

.image-top { align-self: end; padding-bottom: 56px; }
.image-bottom { align-self: start; padding-top: 56px; }

.image-bottom, .image-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font: 12px 'Noto Sans Georgian';
  line-height: 20px;
  margin: 0 auto;
  img { width: auto; }
  p { max-width: 250px; margin: 0; }
}

.ici-header .header-actions .cta-button { background: #68B6B9; }
.ici-header .search { display: none; }
.ici-logo { margin-left: 125px; }

.programs-prev {
  padding: 80px 20px;
  .head {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
}

.mobile-programs { display: none !important; }
.program-grid {
  display: grid;
  grid-template-columns: 432fr 318fr 546fr;
  gap: 24px;
}

.program-item {
  color: var(--black);
  text-decoration: none;
  padding: 40px 32px;
  > p:first-child {
    font: bold 40px 'Noto Sans';
    line-height: 48px;
    margin-bottom: 160px;
  }
  > p:nth-child(2) {
    font: bold 24px 'Noto Sans Georgian';
    line-height: 32px;
    margin-bottom: 16px;
  }
  > p:nth-child(3) {
    font: 12px 'Noto Sans Georgian';
    line-height: 16px;
    margin-bottom: 0;
  }
  &.swiper-slide { width: 350px !important; }
}

.program-item:first-child {
  grid-column: span 2;
}

.courses-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px ;
  p { 
    font: bold 24px 'Noto Sans Georgian';
    line-height: 32px;
    margin-bottom: 0; 
  }
  > p span { color: #73AEE2; }
}

.courses-page {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.courses-filter {
  width: 320px;
}

.courses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px 24px;
  width: calc(100% - 344px);
}

.course-card {
  background: white;
  border: 1px solid transparent;
  color: var(--black);
  text-decoration: none;
  padding: 24px;
  .head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    img {
      width: 80px; height: 80px;
      object-fit: cover;
    }
  }
}

.tag {
  color: var(--black);
  font: 16px 'Noto Sans Georgian';
  line-height: 16px;
  padding: 8px 10px;
}

.course-card .name {
  font: bold 24px 'Noto Sans Georgian';
  line-height: 32px;
  margin-bottom: 16px;
}

.course-card .intro {
  display: -webkit-box;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  margin-bottom: 12px;
  line-clamp: 3;
  height: 72px;
  overflow: hidden;
}

.course-card .desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 12px 'Noto Sans Georgian';
  line-height: 20px;
}

.search1 {
  border-bottom: 1px solid var(--black);
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 56px;
  input { color: var(--black); }
  button { position: relative; top: -3px; }
  button img { filter: brightness(0) invert(0); }
}

.filter-items { margin-bottom: 40px;}

.filter-head {
  border-bottom: 1px solid var(--black);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  padding: 8px 0;
  > div div {
    border: 1.5px solid var(--black);
    border-radius: 1px;
    width: 14px;
    &:last-child { 
      transform: rotate(90deg) translateX(-2px); 
      transition: all 0.3s ease;
    }
  }
}

.filter-items.active .filter-head > div div:last-child { transform: rotate(0) translate(0, -2px); }

.filter-body {
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 24px;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.filter-items.active .filter-body {
  max-height: 1000px;
}

.filter-body > div {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  &:first-child { padding-top: 30px; }
}

.filter-body > div input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 24px; height: 24px;
}

.filter-body > div label {
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.filter-body > div label::before {
  content: "";
  width: 24px; height: 24px;
  border: 1px solid var(--black);
  display: inline-block;
  transition: 0.2s ease;
}

.filter-body > div input:checked + label::before {
  background: var(--black);
}

.selected-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font: 12px 'Noto Sans Georgian';
  line-height: 20px;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    width: 20px; height: 20px;
  }
}

.clear-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: 16px 'Noto Sans Georgian';
  line-height: 24px;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
}

.course-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.course-tags {
  display: flex;
  align-items: center;
  gap: 16px;
}

.curr-course-img {
  width: 100%; height: 312px;
  margin-bottom: 72px;
  object-fit: cover;
}

.course-details .cta-button { background: #68B6B9; }

.teachers-cont { padding-bottom: 80px; }
.teacher-swiper { width: 100%; padding-bottom: 30px !important; }
.teacher-swiper .swiper-wrapper { align-items: flex-start !important; }
.teachers-slide {
  background: white;
  border: 1px solid #68B6B9;
  color: var(--black);
  width: 432px !important;
  padding: 24px;
  height: auto !important;
  > img {
    width: 80px; height: 80px;
    object-fit: cover;
    margin-bottom: 16px;
  }
  .name {
    font: bold 24px 'Noto Sans Georgian';
    line-height: 32px;
    margin-bottom: 8px;
  }
  .intro {
    display: -webkit-box;
    font: 16px 'Noto Sans Georgian';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 71px;
    transition: height 0.35s ease;
    margin-bottom: 8px;
  }
  > div:last-child {
    cursor: pointer;
    font: 12px 'Noto Sans Georgian';
    line-height: 16px;
    span:last-child { display: none; }
  }
}

.teachers-slide.active .intro {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  height: 120px; 
}

.teachers-slide.active > div:last-child {
  span:first-child { display: none; }
  span:last-child { display: inline; }
}

.ici-register { padding: 0 20px 160px; }
.ici-reg-cont {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 480px;
  > img { position: absolute; z-index: 1; }
  > * { position: relative; z-index: 2; }
  > img:first-child { top: 0; left: 0; }
  > img:nth-child(2) { top: 0; right: 0; }
  > img:nth-child(3) { bottom: 0; right: 0; }
  > img:nth-child(4) { bottom: 0; left: 0; }
}

.ici-reg-cont > div {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 440px;
  > p:first-child {
    font: bold 40px 'Noto Sans';
    line-height: 48px;
    text-align: center;
    margin-bottom: 16px;
  }
  > p:nth-child(2) {
    font: 16px 'Noto Sans Georgian';
    line-height: 24px;
    text-align: center;
    margin-bottom: 48px;
  }
  > div {
    display: flex;
    align-items: center;
    gap: 24px;
    .cta-button { 
      background: #F09562; 
      color: var(--white);
      padding:8px 16px; 
    }
  }
}