.hero {
  position: relative;
  width: 100%;
  background: var(--color-grey-bg);
  overflow: hidden;
}
.hero__swiper {
  width: 100%;
}
.hero__slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.hero__container {
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 991px) {
  .hero__container {
    padding-top: 1.875rem;
    padding-bottom: 5.25rem;
  }
}
@media (max-width: 767px) {
  .hero__container {
    padding-top: 1.5rem;
    padding-bottom: 7.5rem;
  }
}
@media (max-width: 767px) {
  .hero__slide {
    overflow: hidden;
  }
}
.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.hero__brand {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .hero__brand {
    font-size: 0.875rem;
  }
}
.hero__year {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .hero__year {
    font-size: 0.875rem;
  }
}
.hero__content {
  display: flex;
  align-items: flex-start;
}
.hero__body {
  position: relative;
  z-index: 2;
  max-width: 21.3125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .hero__body {
    max-width: 100%;
    padding-right: 0;
  }
}
.hero__title {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 100%;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__text {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .hero__text {
    max-width: 13.75rem;
    font-size: 0.875rem;
  }
}
.hero__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  max-width: 43.5rem;
  max-height: 95%;
  pointer-events: none;
  z-index: 1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
@media (max-width: 1280px) {
  .hero__image {
    left: 40%;
  }
}
@media (max-width: 991px) {
  .hero__image {
    left: 35%;
  }
}
@media (max-width: 767px) {
  .hero__image {
    width: 18.5rem;
    right: -4rem;
    top: auto;
    transform: none;
  }
}
.hero__footer {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .hero__controls {
    justify-content: flex-start;
  }
  .hero__controls .button {
    width: 3rem;
    height: 3rem;
  }
}
.hero__pagination {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .hero__pagination {
    gap: 0.5rem;
  }
}
.hero__bullet {
  width: 3.75rem;
  height: 0.25rem;
  border-radius: 10.5rem;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.3s background;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.hero__bullet.js--active {
  background: var(--color-accent);
}
@media (max-width: 767px) {
  .hero__bullet {
    width: 2rem;
  }
}
.hero__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
.hero .button--icon {
  backdrop-filter: blur(4px);
  background: rgba(254, 254, 254, 0.32);
  color: var(--color-black);
}
.hero .button--icon:hover {
  background: rgba(254, 254, 254, 0.52);
}
.hero .button--icon:hover svg {
  transform: translate(0);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 30.3125rem 13.125rem 13.125rem;
  gap: 1.25rem;
}
@media (min-width: 1280px) {
  .news__grid > :nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
  .news__grid > :nth-child(2) {
    grid-column: 1/3;
    grid-row: 2;
  }
  .news__grid > :nth-child(3) {
    grid-column: 3/4;
    grid-row: 2;
  }
  .news__grid > :nth-child(4) {
    grid-column: 4/5;
    grid-row: 2;
  }
  .news__grid > :nth-child(5) {
    grid-column: 3/4;
    grid-row: 3;
  }
  .news__grid > :nth-child(6) {
    grid-column: 4/5;
    grid-row: 3;
  }
  .news__grid > :nth-child(7) {
    grid-column: 5/7;
    grid-row: 2/4;
  }
  .news__grid > :nth-child(8) {
    grid-column: 1/3;
    grid-row: 3;
  }
  .news__grid > :nth-child(9) {
    grid-column: 3/7;
    grid-row: 1;
  }
}
@media (max-width: 1280px) {
  .news__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-template-rows: auto;
  }
  .news__grid > :nth-child(9) {
    order: -1;
    grid-column: 1/-1;
    grid-row: 1;
  }
  .news__grid > :nth-child(1) {
    grid-column: 1/3;
    grid-row: 2/4;
  }
  .news__grid > :nth-child(2) {
    grid-column: 3/5;
    grid-row: 2;
  }
  .news__grid > :nth-child(3) {
    grid-column: 3/5;
    grid-row: 3;
  }
  .news__grid > :nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
  .news__grid > :nth-child(5) {
    grid-column: 2;
    grid-row: 4;
  }
  .news__grid > :nth-child(6) {
    grid-column: 1;
    grid-row: 5;
  }
  .news__grid > :nth-child(8) {
    grid-column: 2;
    grid-row: 5;
  }
  .news__grid > :nth-child(7) {
    grid-column: 3/5;
    grid-row: 4/6;
  }
}
@media (max-width: 991px) {
  .news__grid {
    gap: 0.75rem;
  }
}
@media (max-width: 767px) {
  .news__grid {
    display: flex;
    flex-direction: column;
  }
  .news__grid > :nth-child(9) {
    order: -1;
  }
  .news__grid > :nth-child(n+4):nth-child(-n+8) {
    display: none;
  }
  .news__grid > * {
    grid-column: 1;
    grid-row: auto;
  }
}
.news__more {
  display: none;
  width: 100%;
  height: 3.25rem;
  border: 1px solid var(--color-border);
  border-radius: 2.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 0.75rem;
}
.news__more:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
@media (max-width: 767px) {
  .news__more {
    display: inline-flex;
  }
}

.news-card {
  position: relative;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--color-accent);
  min-height: 13.125rem;
  text-decoration: none;
  color: inherit;
}
.news-card:not(:nth-child(9)) {
  transition: transform 0.35s ease, filter 0.35s ease;
}
.news-card:not(:nth-child(9)):hover {
  transform: translateY(-0.25rem);
  filter: drop-shadow(0 0.75rem 1.5rem rgba(6, 16, 46, 0.22));
}
.news-card:not(:nth-child(9)):hover .news-card__media img {
  transform: scale(1.06);
}
.news-card:not(:nth-child(9)):hover .news-card__overlay::after {
  opacity: 1;
}
.news-card:not(:nth-child(9)):hover .news-card__title {
  color: var(--color-white);
}
@media (max-width: 1280px) {
  .news__grid > .news-card:nth-child(2), .news__grid > .news-card:nth-child(3) {
    min-height: 12.625rem;
  }
}
@media (max-width: 767px) {
  .news__grid > .news-card:nth-child(2), .news__grid > .news-card:nth-child(3) {
    min-height: 13.125rem;
  }
}
.news__grid > .news-card:nth-child(1) {
  min-height: 30.3125rem;
}
@media (max-width: 1280px) {
  .news__grid > .news-card:nth-child(1) {
    min-height: 26.5rem;
  }
}
@media (max-width: 767px) {
  .news__grid > .news-card:nth-child(1) {
    min-height: 17.5rem;
  }
}
.news__grid > .news-card:nth-child(7) {
  min-height: 100%;
  height: 100%;
}
@media (max-width: 1280px) {
  .news__grid > .news-card:nth-child(7) {
    min-height: 26.5rem;
  }
}
@media (max-width: 767px) {
  .news__grid > .news-card:nth-child(7) {
    min-height: 18.75rem;
  }
}
.news__grid > .news-card:nth-child(9) {
  background: var(--color-grey-card);
  min-height: 30.3125rem;
  padding: 2rem;
  overflow: visible;
}
@media (max-width: 1280px) {
  .news__grid > .news-card:nth-child(9) {
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .news__grid > .news-card:nth-child(9) {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .news__grid > .news-card:nth-child(9) {
    padding: 1.5rem 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.news__grid > .news-card:nth-child(3) .news-card__overlay, .news__grid > .news-card:nth-child(4) .news-card__overlay, .news__grid > .news-card:nth-child(5) .news-card__overlay, .news__grid > .news-card:nth-child(6) .news-card__overlay {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 46, 0) 0%, rgba(6, 16, 46, 0) 75%, rgba(6, 16, 46, 0.01) 75%, rgba(6, 16, 46, 0.63) 92.75%, rgba(6, 16, 46, 0.9) 100%);
  padding: 0.75rem;
}
.news__grid > .news-card:nth-child(3) .news-card__overlay .news-card__title, .news__grid > .news-card:nth-child(4) .news-card__overlay .news-card__title, .news__grid > .news-card:nth-child(5) .news-card__overlay .news-card__title, .news__grid > .news-card:nth-child(6) .news-card__overlay .news-card__title {
  margin-top: auto;
  max-width: none;
}
.news__grid > .news-card:nth-child(2) .news-card__overlay, .news__grid > .news-card:nth-child(8) .news-card__overlay {
  inset: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(6, 16, 46, 0) 0%, rgba(6, 16, 46, 0) 55%, rgba(6, 16, 46, 0.01) 65%, rgba(6, 16, 46, 0.63) 82.75%, rgba(6, 16, 46, 0.9) 100%);
}
.news__grid > .news-card:nth-child(2) .news-card__overlay .news-card__title, .news__grid > .news-card:nth-child(8) .news-card__overlay .news-card__title {
  max-width: none;
}
.news__grid > .news-card:nth-child(1) .news-card__overlay, .news__grid > .news-card:nth-child(7) .news-card__overlay {
  flex-direction: row-reverse;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .news__grid > .news-card:nth-child(1) .news-card__overlay, .news__grid > .news-card:nth-child(7) .news-card__overlay {
    flex-direction: column;
  }
}
.news-card__media {
  position: absolute;
  inset: 0;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.125rem;
  background: linear-gradient(180deg, rgba(0, 2, 7, 0) 0%, rgba(0, 2, 7, 0.35) 50%, rgba(0, 2, 7, 0.7) 100%);
  border-radius: 0 0 0.75rem 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 767px) {
  .news-card__overlay {
    padding: 0.875rem;
  }
}
.news-card__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(6, 16, 46, 0.22);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.news-card__title {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 110%;
  color: var(--color-white);
  max-width: 19.375rem;
  transition: color 0.35s ease;
}
.news-card .tag {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .news__grid > .news-card:nth-child(3) .news-card__overlay {
    inset: auto 0 0 0;
    background: linear-gradient(180deg, rgba(0, 2, 7, 0) 0%, rgba(0, 2, 7, 0.35) 50%, rgba(0, 2, 7, 0.7) 100%);
  }
  .news__grid > .news-card:nth-child(8) .news-card__overlay {
    justify-content: space-between;
  }
  .news__grid > .news-card .news-card__overlay::after {
    display: none;
  }
}
.calendar__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 767px) {
  .calendar__header {
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 2rem;
    border-color: var(--color-disabled);
  }
}
.calendar__header-btn {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .calendar__header-btn {
    display: none;
  }
}
.calendar__footer-btn.button {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .calendar__footer-btn.button {
    display: inline-flex;
    font-size: 0.875rem;
    height: 3rem;
  }
}
.calendar__meta {
  font-size: 0.75rem;
  color: var(--color-grey);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .calendar__meta {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}
.calendar__meta span {
  color: var(--color-black);
  font-weight: 500;
}
.calendar__meta-range--mobile {
  display: none;
}
@media (max-width: 767px) {
  .calendar__meta-range--mobile {
    display: inline;
  }
}
@media (max-width: 767px) {
  .calendar__meta-range--desktop {
    display: none;
  }
}
.calendar__title {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-black);
  letter-spacing: -0.03em;
}
@media (max-width: 991px) {
  .calendar__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .calendar__title {
    font-size: 2rem;
  }
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--color-disabled);
}
@media (max-width: 767px) {
  .calendar__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-x: visible;
    border: none;
  }
}
.calendar__day {
  padding: 0.5rem;
  min-height: 19.5625rem;
}
.calendar__day:first-child {
  border-left: none;
}
@media (max-width: 991px) {
  .calendar__day {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .calendar__day {
    border-left: none;
    border-top: none;
    min-height: auto;
    padding: 0 0 1.5rem;
  }
  .calendar__day:not(:last-child) {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-disabled);
  }
  .calendar__day:nth-child(n+4) {
    display: none;
  }
}
.calendar__day--active {
  position: relative;
}
.calendar__day--active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: var(--color-orange);
}
@media (max-width: 767px) {
  .calendar__day--active::before {
    display: none;
  }
  .calendar__day--active .calendar__date {
    color: var(--color-orange);
  }
}
.calendar__day--active .calendar__date {
  color: var(--color-orange);
}
.calendar__day:not(:last-child) {
  border-right: 1px solid var(--color-disabled);
}
@media (max-width: 767px) {
  .calendar__day:not(:last-child) {
    border-right: none;
  }
}
.calendar__date {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--color-black);
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--color-disabled);
  position: relative;
}
@media (max-width: 767px) {
  .calendar__date {
    font-size: 2.125rem;
    line-height: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.calendar__events {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
}
@media (max-width: 767px) {
  .calendar__events {
    padding-top: 0;
    gap: 1rem;
  }
}
.calendar__event {
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid var(--color-disabled);
}
@media (max-width: 767px) {
  .calendar__event {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.calendar__time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  color: var(--color-grey-light);
  margin-bottom: 0.375rem;
}
@media (max-width: 991px) {
  .calendar__time {
    font-size: 0.5625rem;
  }
}
@media (max-width: 767px) {
  .calendar__time {
    font-size: 0.75rem;
  }
}
.calendar__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.calendar__dot--blue {
  background: var(--color-accent);
}
.calendar__dot--purple {
  background: #9560dd;
}
.calendar__dot--orange {
  background: var(--color-orange);
}
@media (max-width: 991px) {
  .calendar__dot {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.calendar__name {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 120%;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .calendar__name {
    font-size: 0.625rem;
  }
}
@media (max-width: 767px) {
  .calendar__name {
    font-size: 0.875rem;
  }
}
.calendar__photo {
  border-radius: 0.5rem;
  overflow: hidden;
}
.calendar__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.calendar__photo-desktop {
  display: block;
}
.calendar__photo-mobile {
  display: none;
}
@media (max-width: 767px) {
  .calendar__photo {
    height: 10rem;
  }
  .calendar__photo-desktop {
    display: none;
  }
  .calendar__photo-mobile {
    display: block;
  }
}
.calendar__more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-weight: 500;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-decoration: underline;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .calendar__more svg {
    display: none;
  }
}
@media (max-width: 767px) {
  .calendar__more {
    font-size: 1rem;
  }
  .calendar__more svg {
    display: flex;
  }
}
@media (max-width: 767px) {
  .calendar__mobile-row {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    align-items: start;
  }
}

.founders__header {
  display: grid;
  grid-template-columns: 1fr 27.5rem;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .founders__header {
    grid-template-columns: 1fr 21.75rem;
  }
}
@media (max-width: 767px) {
  .founders__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.founders__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.founders__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.founders__avatars {
  display: flex;
  align-items: center;
}
.founders__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -0.625rem;
}
.founders__avatar:first-child {
  margin-left: 0;
}
.founders__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.founders__button {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  padding: 0.8125rem 1.5rem;
  height: 3.25rem;
}
.founders__button:hover {
  background: var(--color-black);
  color: var(--color-white);
}
@media (max-width: 991px) {
  .founders__button {
    padding: 0.625rem 1.5rem;
    height: auto;
  }
}
.founders__more {
  display: none;
  width: 100%;
  height: 3.25rem;
  border: 1px solid var(--color-border);
  border-radius: 2.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 1.5rem;
}
.founders__more:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
@media (max-width: 767px) {
  .founders__more {
    display: inline-flex;
  }
}
.founders__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .founders__text {
    font-size: 0.875rem;
  }
}
.founders__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .founders__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.founder-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.founder-card__image {
  overflow: hidden;
  aspect-ratio: 440/460;
  margin-bottom: 1.5rem;
  background: var(--color-grey-bg);
  transition: border-radius 0.5s ease;
}
@media (max-width: 767px) {
  .founder-card__image {
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
  }
}
.founder-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.founder-card:nth-child(1) .founder-card__image {
  border-radius: 0.75rem 15rem;
}
@media (max-width: 991px) {
  .founder-card:nth-child(1) .founder-card__image {
    border-radius: 0.75rem 7.5rem;
  }
}
@media (max-width: 767px) {
  .founder-card:nth-child(1) .founder-card__image {
    border-radius: 0.75rem 8.75rem;
  }
}
.founder-card:nth-child(2) .founder-card__image {
  border-radius: 15rem 15rem 0.75rem 0.75rem;
}
@media (max-width: 991px) {
  .founder-card:nth-child(2) .founder-card__image {
    border-radius: 7.5rem 7.5rem 0.75rem 0.75rem;
  }
}
@media (max-width: 767px) {
  .founder-card:nth-child(2) .founder-card__image {
    border-radius: 11.25rem 11.25rem 0.75rem 0.75rem;
  }
}
.founder-card:nth-child(3) .founder-card__image {
  border-radius: 15rem 15rem 15rem 0.75rem;
}
@media (max-width: 767px) {
  .founder-card:nth-child(3) .founder-card__image {
    border-radius: 11.25rem 11.25rem 11.25rem 0.75rem;
  }
}
.founder-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.founder-card__name {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--color-black);
  margin-bottom: 0.75rem;
}
@media (max-width: 991px) {
  .founder-card__name {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 767px) {
  .founder-card__name {
    font-size: 1.375rem;
  }
}
.founder-card__role {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--color-accent);
}
@media (max-width: 991px) {
  .founder-card__role {
    font-size: 0.875rem;
  }
}
.founder-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  transition: 0.3s opacity, 0.3s transform;
}
@media (max-width: 991px) {
  .founder-card__action {
    width: 2.375rem;
    height: 2.375rem;
  }
}
@media (max-width: 767px) {
  .founder-card__action {
    width: 3rem;
    height: 3rem;
  }
}
.founder-card__action svg {
  transition: 0.3s transform;
}
.founder-card:hover .founder-card__action {
  opacity: 0.9;
}
.founder-card:hover .founder-card__action svg {
  transform: translate(2px, -2px);
}
.founder-card:hover .founder-card__image {
  border-radius: 0.75rem;
}

.history__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .history__header {
    margin-bottom: 1.5rem;
    gap: 1rem;
  }
  .history__header .button {
    height: 2.75rem;
  }
  .history__header .button svg {
    display: none;
  }
}
.history__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--color-grey-card);
  border-radius: 0.75rem;
  padding: 2.5rem;
}
@media (max-width: 991px) {
  .history__box {
    padding: 1.5rem;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .history__box {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.history__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 30.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .history__col {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .history__col {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .history__quote svg {
    max-height: 3.75rem;
  }
}
@media (max-width: 767px) {
  .history__quote svg {
    max-height: 2.25rem;
    width: auto;
  }
}
.history__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-black);
}
@media (max-width: 991px) {
  .history__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .history__title {
    font-size: 1.5rem;
  }
}
.history__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--colorblack);
}
@media (max-width: 991px) {
  .history__description {
    font-size: 0.875rem;
  }
}
.history__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 767px) {
  .history__controls .button {
    height: 2.75rem;
  }
}
.history__image {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 23.75rem;
}
@media (max-width: 767px) {
  .history__image {
    height: 18.75rem;
  }
}
.history__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}/*# sourceMappingURL=home.css.map */