.about-hero {
  height: 534px;
  background: url("../img/about/about_hero.svg") center/cover no-repeat;
  border-radius: 30px;
  overflow: hidden;
  margin: 30px 30px 0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: self-start;
  padding: 60px 90px 0px;
}

.about-hero-content h1 {
  color: var(--black);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-800);
  line-height: 100%;
  text-transform: uppercase;
  font-family: var(--font-family-1);
}

.who-section {
 margin: var(--margin) 0;
}

.who-who-top {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.12fr 1fr;
  margin-bottom: 60px;
  align-items: center;
}

.who-text h2 {
  font-size: var(--font-size-lg);
  line-height: 100%;
  font-weight: var(--font-weight-700);
  margin-bottom: 20px;
  font-family: var(--font-family-1);
}

.who-text p {
  margin-bottom: 20px;
  line-height: var(--line-height);
  font-weight: var(--font-weight-400);
  color: var(--text);
  font-family: var(--font-family-1);
  font-size: var(--font-size-xm);
}
.who-image{
      /*height:384px;*/
}
.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.about-card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  border: 1px solid var(--border-1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-card:hover {
  border-color: var(--primary);
}

.about-card svg path {
  fill: var(--black);
  transition: fill 0.3s ease;
}

.about-card:hover svg path {
  fill: var(--primary);
}

.about-card img {
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s ease;
}

.about-card:hover img {
  filter: brightness(0) saturate(100%)
    invert(7.3%)
    sepia(96%)
    saturate(7480%)
    hue-rotate(353deg)
    brightness(95%)
    contrast(110%);
}

.about-card h3 {
  margin: 100px 0 10px;
  font-size: var(--font-size-md);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-700);
  line-height:100%;
 
}

.about-card p {
  color: var(--text);
  font-size: var(--font-size-xm);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height);
}

.history-manifesto-header h2 {
  font-size: var(--font-size-lg);
  line-height: 100%;
  font-weight: var(--font-weight-700);
  margin-bottom: 20px;
  font-family: var(--font-family-1);
}

.history-manifesto-header p {
  max-width: 828px;
  margin-bottom: 50px;
  line-height: var(--line-height);
  font-weight: var(--font-weight-400);
  color: var(--text);
  font-family: var(--font-family-1);
  font-size: var(--font-size-xm);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  border: 1px solid var(--border-1);
  border-radius: 20px;
  padding: 50px;
  transition: 0.35s ease;
  cursor: pointer;
  background: var(--white);
}

.icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  margin-bottom: 20px;
  transition: 0.35s ease;
}
.icon-circle svg path {
  fill: var(--black);
  transition: fill 0.3s ease;
}

/*.icon-circle img {*/
/*  filter: brightness(0) saturate(100%);*/
/*  transition: filter 0.3s ease;*/
/*}*/

.info-card:hover .icon-circle img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.info-card h3 {
  font-size: var(--font-size-md);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-700);
  line-height: 100%;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--text);
  font-size: var(--font-size-xm);
  font-family: var(--font-family-1);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height);
}

.info-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.info-card:hover .icon-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.info-card:hover .icon-circle svg path {
  fill: var(--white);
}

.manifesto {
  margin: var(--margin) 0;
}

.manifesto-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.manifesto-header h2 {
  font-size: var(--font-size-lg);
  line-height:100%;
  font-weight: var(--font-weight-700);
  font-family: var(--font-family-1);
}

.manifesto-header p {
  width: 100%;
  max-width: 547px;
  color: var(--text);
  font-size: var(--font-size-xm);
  line-height: var(--line-height);
  font-weight: var(--font-weight-400);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 97px;
}
.manifesto-card {
  position: relative;
  border: 1px solid var(--border-1);
  height: 563px;
  border-radius: 30px;
  cursor: pointer;
}

.manifesto-img {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
}

.manifesto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.manifesto-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.manifesto-card-title {
  position: absolute;
  bottom: 36px;
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: var(--font-size-md_1);
  font-weight: var(--font-weight-700);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.manifesto-card-popup {
  position: absolute;
  left: 50%;
  top: 65%;
  width: 100%;
  background: var(--light-gray);
  padding: 40px;
  border-radius: 30px;
  pointer-events: none;
  height: 563px;
  opacity: 0;
  transform: translate(-50%, -80%) rotate(-12deg) scale(0.94);
  transition:
    opacity 0.4s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.manifesto-card-popup h3 {
  margin: 0 0 25px;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-700);
  line-height: var(--line-height);
  font-family: var(--font-family-1);
}

.manifesto-card-popup p {
  margin: 0;
  color: var(--text);
  font-size: var(--font-size-sm);
  line-height: var(--line-height);
  font-weight: var(--font-weight-400);
  font-family: var(--font-family-1);
}

.manifesto-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.manifesto-card:hover .manifesto-card-title {
  opacity: 0;
  transform: translateY(20px);
}

.manifesto-card:hover .manifesto-card-popup {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(12deg) scale(1);
}

.award-section {
    padding:  var(--margin) 0px;

}

.award-section h2 {
  font-size: var(--font-size-lg);
  line-height: 100%;
  font-weight: var(--font-weight-700);
  font-family: var(--font-family-1);
  margin-bottom: 60px;
}
.award-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
}

.award-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--light-gray);
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.award-row:hover::before {
  opacity: 1;
  transform: scale(1);
}

.award-row > * {
  position: relative;
  z-index: 1;
}

.title-container {
  flex: 2;
  display: flex;
  align-items: center;

  font-size: var(--font-size-md);
  font-weight: var(--font-weight-700);
  line-height: var(--line-height);
  font-family: var(--font-family-1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-row:hover .title-container {
  transform: translateX(12px);

  gap: 20px;
}

.award-arrow {
  opacity: 0;
  width: 0;
  transform: translateX(-15px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1.6rem;
}

.award-row:hover .award-arrow {
  opacity: 1;
  width: 32px;
  transform: translateX(0);
}

.source-text {
  flex: 1;
  font-family: var(--font-family-1);
  font-size: var(--font-size-xm);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height);
  color: var(--text);
  transition:
    color 0.3s ease,
    transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-row:hover .source-text {
  color: var(--black);
  transform: translateX(6px);
}

.year-text {
  flex: 0.3;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-700);
  line-height: var(--line-height);
  font-family: var(--font-family-1);
  text-align: right;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-row:hover .year-text {
  transform: translateX(-12px);
}


