@import './src/fonts/TT Firs Neue/stylesheet.css';
@import './src/fonts/WorkSans/static/stylesheet.css';
/*nullifier*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* min-width: 375px; */
  overflow-x: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  background: transparent;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  font-family: "TT Firs Neue";
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
body._lock {
  overflow: hidden;
}

.burger {
  display: none;
  width: 50px;
  height: 31px;
  align-items: center;
  position: relative;
}
@media (max-width: 1023px) {
  .burger {
    display: block;
  }
}
@media (max-width: 576px) {
  .burger {
    width: 30px;
    height: 18px;
  }
}
.burger__button {
  display: block;
  z-index: 3;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.burger span, .burger::before, .burger::after {
  height: 3px;
  width: 100%;
  position: absolute;
  z-index: 3;
  background-color: #ffffff;
  right: 0px;
}
@media (max-width: 576px) {
  .burger span, .burger::before, .burger::after {
    height: 2px;
  }
}
.burger span {
  transition: all 0.3s ease 0s;
  transform: translate(0px, 50%);
  top: 50%;
  transform: scale(1) translate(0px, -50%);
  border-right: 50%;
  border-left: 50%;
}
.burger::before {
  content: "";
  transition: all 0.3s ease 0s;
  top: 0px;
}
.burger::after {
  content: "";
  transition: all 0.3s ease 0s;
  bottom: 0px;
}
.burger._active span {
  transform: scale(0);
}
.burger._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

.header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
}
@media (max-width: 1023px) {
  .header {
    position: fixed;
    z-index: 2;
    top: 0;
    padding: 15px 0;
    background: rgba(62, 80, 100, 0.3);
  }
}
@media (max-width: 576px) {
  .header {
    padding-top: 14px;
  }
}
.header__logo {
  color: #ffffff;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .header__logo {
    height: 40px;
  }
}
@media (max-width: 576px) {
  .header__logo {
    height: 25px;
    margin-top: -6px;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
}
.header__link {
  color: #ffffff;
  font-weight: 700;
}
.header__link:hover {
  color: #649f96;
}
.header__list {
  max-width: 628px;
  width: calc(100% - 226px);
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1023px) {
  .header__list {
    transition: all 0.3s ease 0s;
    transform: translateX(100%);
    position: absolute;
    right: 0;
    width: 250px;
    display: flex;
    flex-flow: column;
    top: 0;
    background: rgba(62, 80, 100, 0.8);
    height: 100dvh;
    padding: 80px 15px;
    overflow: auto;
    justify-content: flex-start;
    gap: 24px;
  }
}
.header__list._active {
  transform: translateX(0);
}

.main__icon, .main__icon use {
  width: 226px;
  height: 94.25px;
}
@media (max-width: 1023px) {
  .main__icon, .main__icon use {
    width: 127.69px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .main__icon, .main__icon use {
    width: 79.81px;
  }
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  width: calc(100% - 64px);
}
@media (max-width: 1023px) {
  .container {
    width: calc(100% - 32px);
  }
}

.footer {
  background-color: #d9dce7;
  color: #3e5064;
  padding: 80px 0 70px;
}
@media (max-width: 1023px) {
  .footer {
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__logo {
  margin-top: -7px;
}
.footer__link {
  color: #3e5064;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .footer__link {
    font-size: 14px;
  }
}
.footer__link:hover {
  color: #649f96;
}
.footer__list {
  display: flex;
  gap: 60px;
}
@media (max-width: 1023px) {
  .footer__list {
    flex-flow: column;
    gap: 8px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
.footer__social {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
@media (max-width: 1023px) {
  .footer__social {
    flex-flow: column;
    gap: 8px;
    margin: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 1023px) {
  .footer__link-container {
    display: flex;
    justify-content: space-between;
    max-width: 348px;
    width: 100%;
    padding-right: 76px;
  }
}
@media (max-width: 576px) {
  .footer__link-container {
    padding-right: 39px;
    max-width: 203px;
  }
}

.plan {
  display: grid;
  grid-template-columns: [first] calc(50% + 123px) [line2] auto [end];
  grid-template-rows: [row1-start] 593px [row1-end] 553px [last-line];
  color: #ffffff;
}
.plan_wo-key {
  grid-template-rows: [row1-start] 553px [last-line];
}
@media (max-width: 1023px) {
  .plan {
    display: flex;
    flex-flow: column;
  }
}
.plan__image-wrapper {
  grid-column: 2/span 1;
  grid-row-start: 1;
}
@media (max-width: 1023px) {
  .plan__image-wrapper {
    order: -1;
  }
}
.plan__key-reports {
  background-color: #649f96;
  padding: 90px 0 80px;
}
@media (max-width: 1023px) {
  .plan__key-reports {
    padding-top: 40px;
  }
}
@media (max-width: 576px) {
  .plan__key-reports {
    padding: 60px 0 30px;
  }
}
.plan__events {
  background-color: #3e5064;
  grid-column-start: 1;
  grid-row-start: 2;
  padding: 80px 0;
}
.plan__events_wo-plan {
  grid-row-start: 1;
}
@media (max-width: 1023px) {
  .plan__events {
    padding-top: 40px;
  }
}
@media (max-width: 576px) {
  .plan__events {
    padding: 30px 0 60px;
  }
}
.plan__image {
  width: 100%;
  height: 1146px;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan__image_wo-plan {
  height: 553px;
}
@media (max-width: 1023px) {
  .plan__image {
    height: 376px;
  }
}
@media (max-width: 576px) {
  .plan__image {
    height: 300px;
  }
}
.plan__header {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 32px;
}

.plan__list p a {
  color:#649f96;
  text-decoration:underline;
}
@media (max-width: 1023px) {
  .plan__header {
    margin-bottom: 30px;
  }
}
.plan__content-wrapper {
  display: flex;
  gap: 30px;
  flex-direction: row-reverse;

}
  .plan__item-left, .plan__item-right {
	  width:50%;
  }
  
@media (max-width: 576px) {
  .plan__content-wrapper {
    gap: 12px;
  }
  .plan__item-left, .plan__item-right {
	  width:100%;
  }
}
.plan__header, .plan__content-wrapper {
  margin-left: auto;
}
@media (max-width: 1230px) {
   .plan__content-wrapper {
    margin-left: 32px;
  }
 .plan__content-wrapper {
    flex-direction: row-reverse;
}

}
@media (max-width: 1023px) {
   .plan__content-wrapper {
    margin-left: 16px;
  }
}
.plan__subtitle {
  margin-bottom: 23px;
}
@media (max-width: 1023px) {
  .plan__subtitle {
    margin-bottom: 30px;
  }
}
.plan__list {
  width:705px;
  padding-right:30px;
}
@media (max-width: 1230px) {
	.plan__list{width:100%;}
}
.plan__item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width:100%;
}
.plan__item_head {
    margin-top: 30px;
}
.plan__item-left p {
	padding-top:15px;
	padding-bottom:30px;
}

.plan__item-right p {
	padding-top:10px;
}


.plan__item-right h4 {
	padding-top:15px;
	font-weight:700;
}

@media (max-width: 576px) {
  .plan__item {
    gap: 12px;
    padding-right: 0;
	flex-direction: column; 
  }
}
.plan__item:not(:last-child) {
  margin-bottom: 24px;
}
.plan__item_head {
  margin-bottom: 23px;
}
@media (max-width: 1023px) {
  .plan__item_head {
    margin-bottom: 30px;
  }
}
.plan__item_bold {
  font-weight: 700;
}

.plan__item-right.tag {
  font-weight: 400;
}
.plan__col {
  min-width: 127px;
}
.plan__col_wide {
  max-width: 470px;
  width: 70%;
}
@media (max-width: 576px) {
  .plan__col_wide {
    width: 60%;
  }
}

.tag {
  height: 26px;
  border: 1px solid #ffffff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  width: -moz-fit-content;
  width: fit-content;
}

.about {
  padding: 70px 0 84px;
  font-weight: 500;
  color: #649f96;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .about {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 60px 0;
  }
}

.process__bg {
  padding: 324px 0 0;
  background-color: #d9dce7;
  /* background-image: url(./src/images/process-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 87%, rgb(217, 220, 231) 100%), no-repeat center/cover url(./src/images/process-bg.jpg), #d9dce7;
  color: #ffffff;
  margin-bottom: -14px;
}
@media (max-width: 1023px) {
  .process__bg {
    margin-bottom: 0;
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .process__bg {
    padding: 60px 0;
  }
}
.process__title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .process__title {
    margin-bottom: 15px;
  }
}
.process__title_green {
  color: #6ea39b;
}
.process__wrapper {
  background-color: #d9dce7;
  padding: 114px 0 80px;
}
@media (max-width: 1023px) {
  .process__wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .process__wrapper {
    padding: 0 0 60px;
  }
}
.process__card-container {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .process__card-container {
    flex-flow: row wrap;
    row-gap: 30px;
  }
}
@media (max-width: 576px) {
  .process__card-container {
    margin-top: 30px;
    row-gap: 15px;
  }
}
.process__card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(62, 80, 100, 0.49);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: calc(33.3333333333% - 20.6666666667px);
}
@media (max-width: 1023px) {
  .process__card {
    width: calc(50% - 8px);
    padding: 28px 49px 48px;
  }
}
@media (max-width: 576px) {
  .process__card {
    width: 100%;
    padding: 28px 26px;
  }
}
@media (max-width: 1023px) {
  .process__card_wide {
    width: 100%;
  }
}
.process__card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.process__card-text {
  font-size: 16px;
  line-height: 1.4;
}

.impact {
  display: flex;
  gap: 31px;
}
@media (max-width: 1023px) {
  .impact {
    flex-flow: column;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .impact {
    margin-top: 30px;
    gap: 52px;
  }
}
.impact__image {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  padding: 32px 24px;
  color: #ffffff;
  background: center/cover url(./src/images/Group1321314843_v2.jpg) no-repeat;
}
@media (max-width: 1023px) {
  .impact__image {
    height: 280px;
    padding: 28px 24px;
    background-image: url(./src/images/Group1321314843-t.jpg);
  }
}
@media (max-width: 576px) {
  .impact__image {
    padding: 28px 12px;
  }
}
.impact__list {
  color: #2f3f50;
}
.impact__item {
  position: relative;
  padding-left: 24px;
}
.impact__item:not(:last-child) {
  margin-bottom: 24px;
}
.impact__item::before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #2f3f50;
  position: absolute;
  display: block;
  left: 11px;
  top: 10px;
}

.people {
  background-color: #d9dce7;
  padding: 90px 0 100px;
}
@media (max-width: 1023px) {
  .people {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .people {
    padding: 60px 0;
  }
}
.people__container {
  display: flex;
  flex-flow: column;
  gap: 70px;
}
@media (max-width: 1023px) {
  .people__container {
    gap: 60px;
  }
}
@media (max-width: 576px) {
  .people__container {
    gap: 30px;
  }
}
.people__title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: #6ea39b;
}
.people__subtitle {
  margin-top: 12px;
  color: #2f3f50;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
}
.people__list {
  margin-top: 48px;
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
@media (max-width: 1023px) {
  .people__list {
    margin-top: 40px;
    gap: 73px;
    row-gap: 30px;
  }
}
@media (max-width: 576px) {
  .people__list {
    margin-top: 30px;
    gap: 28px;
    row-gap: 15px;
  }
}
.people__item {
  flex: 0 0 170px;
}
@media (max-width: 576px) {
  .people__item {
    flex-basis: 157px;
  }
}
.people__avatar {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .people__avatar {
    margin-bottom: 16px;
    width: 80px;
    height: 80px;
  }
}
.people__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.people__name {
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .people__name {
    font-size: 16px;
    letter-spacing: -0.16px;
  }
}
.people__role {
  color: #8f8f8f;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 576px) {
  .people__role {
    font-size: 12px;
  }
}

.portfolio {
  padding: 90px 0 80px;
  background-color: #649f96;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .portfolio {
    padding: 29px 0 80px;
  }
}
@media (max-width: 576px) {
  .portfolio {
    padding: 0 0 60px;
  }
}
.portfolio__title {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.72px;
  margin-bottom: 48px;
}
@media (max-width: 1023px) and (min-width: 576px) {
  .portfolio__title {
    position: absolute;
    top: -30px;
    scroll-margin: 70px;
  }
}
@media (max-width: 576px) {
  .portfolio__title {
    margin-bottom: 30px;
  }
}
.portfolio__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .portfolio__tags {
    margin-bottom: 30px;
  }
}
.portfolio__year {
  min-width: 46px;
  flex: 0 0 100px;
  font-weight: 700;
}
.portfolio__item {
  display: flex;
}
.portfolio__item:not(:last-child) {
  margin-bottom: 24px;
}

.created-for {
  padding: 90px 0 100px;
  background-color: #d9dce7;
}
@media (max-width: 1023px) {
  .created-for {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .created-for {
    padding: 60px 0;
  }
}
.created-for__title {
  color: #6ea39b;
  margin: 100px 0 48px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}
@media (max-width: 1023px) {
  .created-for__title {
    margin: 40px 0 30px;
  }
}
@media (max-width: 576px) {
  .created-for__title {
    margin-top: 60px;
  }
}
.created-for__title_new {
  margin-top: 0;
}
@media (max-width: 1023px) {
  .created-for__title_new {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .created-for__title_new {
    margin-top: 0px;
  }
}
.created-for__important {
  font-weight: 700;
  line-height: 1.3;
  color: #649f96;
}
.created-for__list {
  display: flex;
  flex-flow: row wrap;
  gap: 36px;
  row-gap: 48px;
  padding-right: 38px;
}
@media (max-width: 1023px) {
  .created-for__list {
    row-gap: 30px;
  }
}
@media (max-width: 576px) {
  .created-for__list {
    row-gap: 15px;
  }
}
.created-for__item {
  width: calc(50% - 18px);
}
@media (max-width: 576px) {
  .created-for__item {
    width: 100%;
  }
}
.created-for__text {
  padding-right: 68px;
}

.vision {
  padding: 90px 0 101px;
}
@media (max-width: 1023px) {
  .vision {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .vision {
    padding: 60px 0;
  }
}
.vision__title {
  font-size: 40px;
  color: #6ea39b;
  line-height: 1.1;
  letter-spacing: -1.2px;
  width: 331px;
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .vision__title {
    margin-bottom: 30px;
  }
}
.vision__text-container {
  display: flex;
  flex-flow: column;
  gap: 40px;
  padding-right: 68px;
}
@media (max-width: 1023px) {
  .vision__text-container {
    padding: 0;
    gap: 30px;
  }
}

.events {
  background-color: #3e5064;
  padding: 80px 0 71px;
  flex: 1;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .events {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .events {
    padding-bottom: 60px;
  }
}
.events__list {
  margin-top: 32px;
}
.events__item {
  display: flex;
}
@media (max-width: 576px) {
  .events__item {
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 8px;
  }
}
.events__item:not(:last-child) {
  margin-bottom: 24px;
}
.events__year {
  width: 99px;
  margin-right: 31px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
}
.events__name {
  flex: 0 1 170px;
  margin-right: 21px;
}
@media (max-width: 1023px) {
  .events__name {
    flex-shrink: 0;
  }
}
@media (max-width: 576px) {
  .events__name {
    flex: 0 0 100%;
    order: 2;
  }
}

.institute {
  display: flex;
  flex-flow: row-reverse;
}
@media (max-width: 1023px) {
  .institute {
    display: block;
    position: relative;
  }
}
.institute__left-container {
  margin-left: auto;
  max-width: 710px;
}
@media (max-width: 1230px) {
  .institute__left-container {
    margin-left: 32px;
  }
}
@media (max-width: 1023px) {
  .institute__left-container {
    margin: 0 16px;
    max-width: none;
  }
}
.institute__right-container {
  margin-right: auto;
  max-width: 462px;
  padding-left: 62px;
}
@media (max-width: 1230px) {
  .institute__right-container {
    margin-right: 32px;
  }
}
@media (max-width: 1023px) {
  .institute__right-container {
    margin: 0 16px;
    max-width: none;
    width: calc(100% - 32px);
    padding-left: 0;
  }
}
.institute__left {
  width: 100%;
  flex: 1 1 823px;
}
.institute__right {
  width: calc(50vw - 123px);
  flex-shrink: 0;
}
@media (max-width: 1230px) {
  .institute__right {
    width: calc(50vw - 70px - (100vw - 1024px) / 4);
  }
}
@media (max-width: 1023px) {
  .institute__right {
    width: 100%;
  }
}
.institute__right, .institute__left {
  display: flex;
  flex-flow: column;
}

.new .created-for {
  height: 100%;
}
.new main > .institute__right {
  display: none;
}
@media (max-width: 1023px) {
  .new .institute > .institute__right {
    display: none;
  }
  .new main > .institute__right {
    display: flex;
  }
  .new .portfolio {
    padding-top: 60px;
  }
  .new .portfolio__title {
    position: static;
    margin-bottom: 40px;
  }
}

.fcp {
  padding-top: 234px;
  background: no-repeat center/cover url(./src/images/Rectangle39602.jpg);
  color: #ffffff;
  position: relative;
}
@media (max-width: 1023px) {
  .fcp {
    padding-top: 323px;
  }
}
@media (max-width: 576px) {
  .fcp {
    padding-top: 207px;
  }
}
.fcp__title {
  font-size: 80px;
  letter-spacing: -3.2px;
  line-height: 0.95;
  font-family: "Work Sans";
  margin-bottom: 55px;
}
@media (max-width: 1023px) {
  .fcp__title {
    margin-bottom: 139px;
    font-size: 64px;
    letter-spacing: -2.56px;
  }
}
@media (max-width: 576px) {
  .fcp__title {
    margin-bottom: 108px;
    font-size: 40px;
    letter-spacing: -1.6px;
  }
}
.fcp__note {
  margin-left: auto;
  width: calc(50vw - 123px);
  padding: 67px 62px 45px;
  background: linear-gradient(180deg, rgba(100, 159, 150, 0) 0%, rgba(100, 159, 150, 0.6) 40%, rgba(100, 159, 150, 0.83) 69%, rgb(100, 159, 150) 100%);
}
@media (max-width: 1230px) {
  .fcp__note {
    width: calc(50vw - 70px - (100vw - 1024px) / 4);
  }
}
@media (max-width: 1023px) {
  .fcp__note {
    padding: 21px 16px 91px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .fcp__note {
    padding: 32px 16px 60px;
  }
}
.fcp__note-title {
  margin-bottom: 10px;
  font-weight: 600;
}
.fcp__note-item {
  font-size: 14px;
  line-height: 1.4;
}
.fcp__note-item:not(:last-child) {
  margin-bottom: 4px;
}

.slide-in-bottom {
  transform: translateY(100px);
  opacity: 0;
}
.slide-in-bottom.inView {
  animation: slide-in-bottom 0.8s ease-out both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */

.badge-1{
display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    width: fit-content;
    height: fit-content;
    background: #649F96;
    border-radius: 24px;
    color: #ffffff;
    flex: none;
    order: 1;
    flex-grow: 0;
    font-weight: 400;
    margin-bottom: 10px;

}

.badge-2{
display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    width: fit-content;
    height: fit-content;
	background: #3E5064;
    border-radius: 24px;
    color: #ffffff;
    flex: none;
    order: 1;
    flex-grow: 0;
    font-weight: 400;
    margin-bottom: 10px;

}