@charset "UTF-8";
.align-items-flex-start {
  align-items: flex-start;
}

.align-items-flex-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: start;
}

.text-right {
  text-align: end;
}

.text-justify {
  text-align: justify;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

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

.flex-nowrap {
  display: flex;
  flex-direction: nowrap;
}

.flex-wrap {
  display: flex;
  flex-direction: wrap;
}

.justify-flex-start {
  justify-content: flex-start;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-static {
  position: static;
}

.display-block {
  display: block;
}
@media (max-width: 992px) {
  .display-block-mobile {
    display: block;
  }
}

.display-inline {
  display: inline;
}
@media (max-width: 992px) {
  .display-inline-mobile {
    display: block;
  }
}

.display-inline-block {
  display: inline-block;
}
@media (max-width: 992px) {
  .display-inline-block-mobile {
    display: block;
  }
}

.display-flex {
  display: flex;
}
@media (max-width: 992px) {
  .display-flex-mobile {
    display: block;
  }
}

.display-grid {
  display: grid;
}
@media (max-width: 992px) {
  .display-grid-mobile {
    display: block;
  }
}

.display-none {
  display: none;
}
@media (max-width: 992px) {
  .display-none-mobile {
    display: block;
  }
}

.font-weight-normal {
  font-weight: normal;
}

.font-weight-bold {
  font-weight: bold;
}

.font-weight-bolder {
  font-weight: bolder;
}

.font-weight-lighter {
  font-weight: lighter;
}

.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.text-transform-uppercase {
  text-transform: uppercase;
}

.text-transform-lowercase {
  text-transform: lowercase;
}

.text-transform-capitalize {
  text-transform: capitalize;
}

.text-transform-none {
  text-transform: none;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.container {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1279px) {
  .container {
    max-width: 1128px;
  }
}
@media screen and (min-width: 1439px) {
  .container {
    width: 90dvw;
    max-width: 1584px;
  }
}

@media (max-width: 1440px) {
  body .hide-lg {
    display: none;
  }
}

@media (max-width: 1280px) {
  body .hide-md {
    display: none;
  }
}

@media (max-width: 1280px) {
  body .hide-tablet {
    display: none;
  }
}

@media (max-width: 744px) {
  body .hide-mobile {
    display: none;
  }
}

body .visible-mobile {
  display: none;
}
@media (max-width: 744px) {
  body .visible-mobile {
    display: inline-block;
  }
}

body .visible-tablet {
  display: none;
}
@media (max-width: 1280px) {
  body .visible-tablet {
    display: inline-block;
  }
}

.black-line {
  height: 32px;
  background: var(--Gray-iron-950, #131316);
  width: 100%;
}

.noology-description {
  display: flex;
  padding: 80px;
  gap: 20px;
  background: var(--Gray-iron-950, #131316);
  margin: 96px 0;
}
.noology-description .container {
  gap: 20px;
  display: flex;
}
.noology-description .container > div:first-child {
  flex: 2;
}
.noology-description .container > div:first-child h3 {
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--Foundation-CIPRF-Primary-1-300, #f5ca44);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.noology-description .container > div:first-child p {
  color: var(--Base-White, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
  letter-spacing: 0.8px;
}
.noology-description .container > div:nth-child(2) {
  flex: 3;
}
.noology-description .container > div:nth-child(2) img {
  height: 530px;
  width: 100%;
  object-fit: cover;
}

.faq.faq-new h2 {
  margin-bottom: 32px;
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.faq.faq-new .faq-item {
  border: 0;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  gap: 24px;
}
.faq.faq-new .faq-item > svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.faq.faq-new .faq-item .minus {
  display: none;
}
.faq.faq-new .faq-item h3 {
  color: var(--Gray-900, #101828);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.faq.faq-new .faq-item .faq-content {
  color: var(--Gray-600, #475467);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.faq.faq-new .faq-item.active {
  background: var(--Gray-50, #F9FAFB);
}
.faq.faq-new .faq-item.active .plus {
  display: none;
}
.faq.faq-new .faq-item.active .minus {
  display: inline-block;
}
.faq.faq-new .faq-item.active, .faq.faq-new .faq-item:hover {
  background-color: #131316;
}

.p-0 {
  padding: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.m-0 {
  margin: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.gap-0 {
  gap: 0rem;
}

.p-25 {
  padding: 0.125rem;
}

.pt-25 {
  padding-top: 0.125rem;
}

.pb-25 {
  padding-bottom: 0.125rem;
}

.pl-25 {
  padding-left: 0.125rem;
}

.pr-25 {
  padding-right: 0.125rem;
}

.m-25 {
  margin: 0.125rem;
}

.mt-25 {
  margin-top: 0.125rem;
}

.mb-25 {
  margin-bottom: 0.125rem;
}

.ml-25 {
  margin-left: 0.125rem;
}

.mr-25 {
  margin-right: 0.125rem;
}

.gap-25 {
  gap: 0.125rem;
}

.p-50 {
  padding: 0.25rem;
}

.pt-50 {
  padding-top: 0.25rem;
}

.pb-50 {
  padding-bottom: 0.25rem;
}

.pl-50 {
  padding-left: 0.25rem;
}

.pr-50 {
  padding-right: 0.25rem;
}

.m-50 {
  margin: 0.25rem;
}

.mt-50 {
  margin-top: 0.25rem;
}

.mb-50 {
  margin-bottom: 0.25rem;
}

.ml-50 {
  margin-left: 0.25rem;
}

.mr-50 {
  margin-right: 0.25rem;
}

.gap-50 {
  gap: 0.25rem;
}

.p-75 {
  padding: 0.375rem;
}

.pt-75 {
  padding-top: 0.375rem;
}

.pb-75 {
  padding-bottom: 0.375rem;
}

.pl-75 {
  padding-left: 0.375rem;
}

.pr-75 {
  padding-right: 0.375rem;
}

.m-75 {
  margin: 0.375rem;
}

.mt-75 {
  margin-top: 0.375rem;
}

.mb-75 {
  margin-bottom: 0.375rem;
}

.ml-75 {
  margin-left: 0.375rem;
}

.mr-75 {
  margin-right: 0.375rem;
}

.gap-75 {
  gap: 0.375rem;
}

.p-100 {
  padding: 0.5rem;
}

.pt-100 {
  padding-top: 0.5rem;
}

.pb-100 {
  padding-bottom: 0.5rem;
}

.pl-100 {
  padding-left: 0.5rem;
}

.pr-100 {
  padding-right: 0.5rem;
}

.m-100 {
  margin: 0.5rem;
}

.mt-100 {
  margin-top: 0.5rem;
}

.mb-100 {
  margin-bottom: 0.5rem;
}

.ml-100 {
  margin-left: 0.5rem;
}

.mr-100 {
  margin-right: 0.5rem;
}

.gap-100 {
  gap: 0.5rem;
}

.p-150 {
  padding: 0.75rem;
}

.pt-150 {
  padding-top: 0.75rem;
}

.pb-150 {
  padding-bottom: 0.75rem;
}

.pl-150 {
  padding-left: 0.75rem;
}

.pr-150 {
  padding-right: 0.75rem;
}

.m-150 {
  margin: 0.75rem;
}

.mt-150 {
  margin-top: 0.75rem;
}

.mb-150 {
  margin-bottom: 0.75rem;
}

.ml-150 {
  margin-left: 0.75rem;
}

.mr-150 {
  margin-right: 0.75rem;
}

.gap-150 {
  gap: 0.75rem;
}

.p-200 {
  padding: 1rem;
}

.pt-200 {
  padding-top: 1rem;
}

.pb-200 {
  padding-bottom: 1rem;
}

.pl-200 {
  padding-left: 1rem;
}

.pr-200 {
  padding-right: 1rem;
}

.m-200 {
  margin: 1rem;
}

.mt-200 {
  margin-top: 1rem;
}

.mb-200 {
  margin-bottom: 1rem;
}

.ml-200 {
  margin-left: 1rem;
}

.mr-200 {
  margin-right: 1rem;
}

.gap-200 {
  gap: 1rem;
}

.p-250 {
  padding: 1.25rem;
}

.pt-250 {
  padding-top: 1.25rem;
}

.pb-250 {
  padding-bottom: 1.25rem;
}

.pl-250 {
  padding-left: 1.25rem;
}

.pr-250 {
  padding-right: 1.25rem;
}

.m-250 {
  margin: 1.25rem;
}

.mt-250 {
  margin-top: 1.25rem;
}

.mb-250 {
  margin-bottom: 1.25rem;
}

.ml-250 {
  margin-left: 1.25rem;
}

.mr-250 {
  margin-right: 1.25rem;
}

.gap-250 {
  gap: 1.25rem;
}

.p-300 {
  padding: 1.5rem;
}

.pt-300 {
  padding-top: 1.5rem;
}

.pb-300 {
  padding-bottom: 1.5rem;
}

.pl-300 {
  padding-left: 1.5rem;
}

.pr-300 {
  padding-right: 1.5rem;
}

.m-300 {
  margin: 1.5rem;
}

.mt-300 {
  margin-top: 1.5rem;
}

.mb-300 {
  margin-bottom: 1.5rem;
}

.ml-300 {
  margin-left: 1.5rem;
}

.mr-300 {
  margin-right: 1.5rem;
}

.gap-300 {
  gap: 1.5rem;
}

.p-400 {
  padding: 2rem;
}

.pt-400 {
  padding-top: 2rem;
}

.pb-400 {
  padding-bottom: 2rem;
}

.pl-400 {
  padding-left: 2rem;
}

.pr-400 {
  padding-right: 2rem;
}

.m-400 {
  margin: 2rem;
}

.mt-400 {
  margin-top: 2rem;
}

.mb-400 {
  margin-bottom: 2rem;
}

.ml-400 {
  margin-left: 2rem;
}

.mr-400 {
  margin-right: 2rem;
}

.gap-400 {
  gap: 2rem;
}

.p-500 {
  padding: 2.5rem;
}

.pt-500 {
  padding-top: 2.5rem;
}

.pb-500 {
  padding-bottom: 2.5rem;
}

.pl-500 {
  padding-left: 2.5rem;
}

.pr-500 {
  padding-right: 2.5rem;
}

.m-500 {
  margin: 2.5rem;
}

.mt-500 {
  margin-top: 2.5rem;
}

.mb-500 {
  margin-bottom: 2.5rem;
}

.ml-500 {
  margin-left: 2.5rem;
}

.mr-500 {
  margin-right: 2.5rem;
}

.gap-500 {
  gap: 2.5rem;
}

.p-600 {
  padding: 3rem;
}

.pt-600 {
  padding-top: 3rem;
}

.pb-600 {
  padding-bottom: 3rem;
}

.pl-600 {
  padding-left: 3rem;
}

.pr-600 {
  padding-right: 3rem;
}

.m-600 {
  margin: 3rem;
}

.mt-600 {
  margin-top: 3rem;
}

.mb-600 {
  margin-bottom: 3rem;
}

.ml-600 {
  margin-left: 3rem;
}

.mr-600 {
  margin-right: 3rem;
}

.gap-600 {
  gap: 3rem;
}

.p-700 {
  padding: 3.5rem;
}

.pt-700 {
  padding-top: 3.5rem;
}

.pb-700 {
  padding-bottom: 3.5rem;
}

.pl-700 {
  padding-left: 3.5rem;
}

.pr-700 {
  padding-right: 3.5rem;
}

.m-700 {
  margin: 3.5rem;
}

.mt-700 {
  margin-top: 3.5rem;
}

.mb-700 {
  margin-bottom: 3.5rem;
}

.ml-700 {
  margin-left: 3.5rem;
}

.mr-700 {
  margin-right: 3.5rem;
}

.gap-700 {
  gap: 3.5rem;
}

.p-800 {
  padding: 4rem;
}

.pt-800 {
  padding-top: 4rem;
}

.pb-800 {
  padding-bottom: 4rem;
}

.pl-800 {
  padding-left: 4rem;
}

.pr-800 {
  padding-right: 4rem;
}

.m-800 {
  margin: 4rem;
}

.mt-800 {
  margin-top: 4rem;
}

.mb-800 {
  margin-bottom: 4rem;
}

.ml-800 {
  margin-left: 4rem;
}

.mr-800 {
  margin-right: 4rem;
}

.gap-800 {
  gap: 4rem;
}

.p-900 {
  padding: 4.5rem;
}

.pt-900 {
  padding-top: 4.5rem;
}

.pb-900 {
  padding-bottom: 4.5rem;
}

.pl-900 {
  padding-left: 4.5rem;
}

.pr-900 {
  padding-right: 4.5rem;
}

.m-900 {
  margin: 4.5rem;
}

.mt-900 {
  margin-top: 4.5rem;
}

.mb-900 {
  margin-bottom: 4.5rem;
}

.ml-900 {
  margin-left: 4.5rem;
}

.mr-900 {
  margin-right: 4.5rem;
}

.gap-900 {
  gap: 4.5rem;
}

.p-1000 {
  padding: 5rem;
}

.pt-1000 {
  padding-top: 5rem;
}

.pb-1000 {
  padding-bottom: 5rem;
}

.pl-1000 {
  padding-left: 5rem;
}

.pr-1000 {
  padding-right: 5rem;
}

.m-1000 {
  margin: 5rem;
}

.mt-1000 {
  margin-top: 5rem;
}

.mb-1000 {
  margin-bottom: 5rem;
}

.ml-1000 {
  margin-left: 5rem;
}

.mr-1000 {
  margin-right: 5rem;
}

.gap-1000 {
  gap: 5rem;
}

.p-1100 {
  padding: 5.5rem;
}

.pt-1100 {
  padding-top: 5.5rem;
}

.pb-1100 {
  padding-bottom: 5.5rem;
}

.pl-1100 {
  padding-left: 5.5rem;
}

.pr-1100 {
  padding-right: 5.5rem;
}

.m-1100 {
  margin: 5.5rem;
}

.mt-1100 {
  margin-top: 5.5rem;
}

.mb-1100 {
  margin-bottom: 5.5rem;
}

.ml-1100 {
  margin-left: 5.5rem;
}

.mr-1100 {
  margin-right: 5.5rem;
}

.gap-1100 {
  gap: 5.5rem;
}

.p-1200 {
  padding: 6rem;
}

.pt-1200 {
  padding-top: 6rem;
}

.pb-1200 {
  padding-bottom: 6rem;
}

.pl-1200 {
  padding-left: 6rem;
}

.pr-1200 {
  padding-right: 6rem;
}

.m-1200 {
  margin: 6rem;
}

.mt-1200 {
  margin-top: 6rem;
}

.mb-1200 {
  margin-bottom: 6rem;
}

.ml-1200 {
  margin-left: 6rem;
}

.mr-1200 {
  margin-right: 6rem;
}

.gap-1200 {
  gap: 6rem;
}

.p-1300 {
  padding: 6.5rem;
}

.pt-1300 {
  padding-top: 6.5rem;
}

.pb-1300 {
  padding-bottom: 6.5rem;
}

.pl-1300 {
  padding-left: 6.5rem;
}

.pr-1300 {
  padding-right: 6.5rem;
}

.m-1300 {
  margin: 6.5rem;
}

.mt-1300 {
  margin-top: 6.5rem;
}

.mb-1300 {
  margin-bottom: 6.5rem;
}

.ml-1300 {
  margin-left: 6.5rem;
}

.mr-1300 {
  margin-right: 6.5rem;
}

.gap-1300 {
  gap: 6.5rem;
}

@media (max-width: 1280px) {
  .p-0 {
    padding: 0rem;
  }
  .pt-0 {
    padding-top: 0rem;
  }
  .pb-0 {
    padding-bottom: 0rem;
  }
  .pl-0 {
    padding-left: 0rem;
  }
  .pr-0 {
    padding-right: 0rem;
  }
  .m-0 {
    margin: 0rem;
  }
  .mt-0 {
    margin-top: 0rem;
  }
  .mb-0 {
    margin-bottom: 0rem;
  }
  .ml-0 {
    margin-left: 0rem;
  }
  .mr-0 {
    margin-right: 0rem;
  }
  .gap-0 {
    gap: 0rem;
  }
  .p-25 {
    padding: 0.125rem;
  }
  .pt-25 {
    padding-top: 0.125rem;
  }
  .pb-25 {
    padding-bottom: 0.125rem;
  }
  .pl-25 {
    padding-left: 0.125rem;
  }
  .pr-25 {
    padding-right: 0.125rem;
  }
  .m-25 {
    margin: 0.125rem;
  }
  .mt-25 {
    margin-top: 0.125rem;
  }
  .mb-25 {
    margin-bottom: 0.125rem;
  }
  .ml-25 {
    margin-left: 0.125rem;
  }
  .mr-25 {
    margin-right: 0.125rem;
  }
  .gap-25 {
    gap: 0.125rem;
  }
  .p-50 {
    padding: 0.25rem;
  }
  .pt-50 {
    padding-top: 0.25rem;
  }
  .pb-50 {
    padding-bottom: 0.25rem;
  }
  .pl-50 {
    padding-left: 0.25rem;
  }
  .pr-50 {
    padding-right: 0.25rem;
  }
  .m-50 {
    margin: 0.25rem;
  }
  .mt-50 {
    margin-top: 0.25rem;
  }
  .mb-50 {
    margin-bottom: 0.25rem;
  }
  .ml-50 {
    margin-left: 0.25rem;
  }
  .mr-50 {
    margin-right: 0.25rem;
  }
  .gap-50 {
    gap: 0.25rem;
  }
  .p-75 {
    padding: 0.375rem;
  }
  .pt-75 {
    padding-top: 0.375rem;
  }
  .pb-75 {
    padding-bottom: 0.375rem;
  }
  .pl-75 {
    padding-left: 0.375rem;
  }
  .pr-75 {
    padding-right: 0.375rem;
  }
  .m-75 {
    margin: 0.375rem;
  }
  .mt-75 {
    margin-top: 0.375rem;
  }
  .mb-75 {
    margin-bottom: 0.375rem;
  }
  .ml-75 {
    margin-left: 0.375rem;
  }
  .mr-75 {
    margin-right: 0.375rem;
  }
  .gap-75 {
    gap: 0.375rem;
  }
  .p-100 {
    padding: 0.5rem;
  }
  .pt-100 {
    padding-top: 0.5rem;
  }
  .pb-100 {
    padding-bottom: 0.5rem;
  }
  .pl-100 {
    padding-left: 0.5rem;
  }
  .pr-100 {
    padding-right: 0.5rem;
  }
  .m-100 {
    margin: 0.5rem;
  }
  .mt-100 {
    margin-top: 0.5rem;
  }
  .mb-100 {
    margin-bottom: 0.5rem;
  }
  .ml-100 {
    margin-left: 0.5rem;
  }
  .mr-100 {
    margin-right: 0.5rem;
  }
  .gap-100 {
    gap: 0.5rem;
  }
  .p-150 {
    padding: 0.5rem;
  }
  .pt-150 {
    padding-top: 0.5rem;
  }
  .pb-150 {
    padding-bottom: 0.5rem;
  }
  .pl-150 {
    padding-left: 0.5rem;
  }
  .pr-150 {
    padding-right: 0.5rem;
  }
  .m-150 {
    margin: 0.5rem;
  }
  .mt-150 {
    margin-top: 0.5rem;
  }
  .mb-150 {
    margin-bottom: 0.5rem;
  }
  .ml-150 {
    margin-left: 0.5rem;
  }
  .mr-150 {
    margin-right: 0.5rem;
  }
  .gap-150 {
    gap: 0.5rem;
  }
  .p-200 {
    padding: 0.75rem;
  }
  .pt-200 {
    padding-top: 0.75rem;
  }
  .pb-200 {
    padding-bottom: 0.75rem;
  }
  .pl-200 {
    padding-left: 0.75rem;
  }
  .pr-200 {
    padding-right: 0.75rem;
  }
  .m-200 {
    margin: 0.75rem;
  }
  .mt-200 {
    margin-top: 0.75rem;
  }
  .mb-200 {
    margin-bottom: 0.75rem;
  }
  .ml-200 {
    margin-left: 0.75rem;
  }
  .mr-200 {
    margin-right: 0.75rem;
  }
  .gap-200 {
    gap: 0.75rem;
  }
  .p-250 {
    padding: 1rem;
  }
  .pt-250 {
    padding-top: 1rem;
  }
  .pb-250 {
    padding-bottom: 1rem;
  }
  .pl-250 {
    padding-left: 1rem;
  }
  .pr-250 {
    padding-right: 1rem;
  }
  .m-250 {
    margin: 1rem;
  }
  .mt-250 {
    margin-top: 1rem;
  }
  .mb-250 {
    margin-bottom: 1rem;
  }
  .ml-250 {
    margin-left: 1rem;
  }
  .mr-250 {
    margin-right: 1rem;
  }
  .gap-250 {
    gap: 1rem;
  }
  .p-300 {
    padding: 1.25rem;
  }
  .pt-300 {
    padding-top: 1.25rem;
  }
  .pb-300 {
    padding-bottom: 1.25rem;
  }
  .pl-300 {
    padding-left: 1.25rem;
  }
  .pr-300 {
    padding-right: 1.25rem;
  }
  .m-300 {
    margin: 1.25rem;
  }
  .mt-300 {
    margin-top: 1.25rem;
  }
  .mb-300 {
    margin-bottom: 1.25rem;
  }
  .ml-300 {
    margin-left: 1.25rem;
  }
  .mr-300 {
    margin-right: 1.25rem;
  }
  .gap-300 {
    gap: 1.25rem;
  }
  .p-400 {
    padding: 1.5rem;
  }
  .pt-400 {
    padding-top: 1.5rem;
  }
  .pb-400 {
    padding-bottom: 1.5rem;
  }
  .pl-400 {
    padding-left: 1.5rem;
  }
  .pr-400 {
    padding-right: 1.5rem;
  }
  .m-400 {
    margin: 1.5rem;
  }
  .mt-400 {
    margin-top: 1.5rem;
  }
  .mb-400 {
    margin-bottom: 1.5rem;
  }
  .ml-400 {
    margin-left: 1.5rem;
  }
  .mr-400 {
    margin-right: 1.5rem;
  }
  .gap-400 {
    gap: 1.5rem;
  }
  .p-500 {
    padding: 2rem;
  }
  .pt-500 {
    padding-top: 2rem;
  }
  .pb-500 {
    padding-bottom: 2rem;
  }
  .pl-500 {
    padding-left: 2rem;
  }
  .pr-500 {
    padding-right: 2rem;
  }
  .m-500 {
    margin: 2rem;
  }
  .mt-500 {
    margin-top: 2rem;
  }
  .mb-500 {
    margin-bottom: 2rem;
  }
  .ml-500 {
    margin-left: 2rem;
  }
  .mr-500 {
    margin-right: 2rem;
  }
  .gap-500 {
    gap: 2rem;
  }
  .p-600 {
    padding: 2.5rem;
  }
  .pt-600 {
    padding-top: 2.5rem;
  }
  .pb-600 {
    padding-bottom: 2.5rem;
  }
  .pl-600 {
    padding-left: 2.5rem;
  }
  .pr-600 {
    padding-right: 2.5rem;
  }
  .m-600 {
    margin: 2.5rem;
  }
  .mt-600 {
    margin-top: 2.5rem;
  }
  .mb-600 {
    margin-bottom: 2.5rem;
  }
  .ml-600 {
    margin-left: 2.5rem;
  }
  .mr-600 {
    margin-right: 2.5rem;
  }
  .gap-600 {
    gap: 2.5rem;
  }
  .p-700 {
    padding: 3rem;
  }
  .pt-700 {
    padding-top: 3rem;
  }
  .pb-700 {
    padding-bottom: 3rem;
  }
  .pl-700 {
    padding-left: 3rem;
  }
  .pr-700 {
    padding-right: 3rem;
  }
  .m-700 {
    margin: 3rem;
  }
  .mt-700 {
    margin-top: 3rem;
  }
  .mb-700 {
    margin-bottom: 3rem;
  }
  .ml-700 {
    margin-left: 3rem;
  }
  .mr-700 {
    margin-right: 3rem;
  }
  .gap-700 {
    gap: 3rem;
  }
  .p-800 {
    padding: 3.5rem;
  }
  .pt-800 {
    padding-top: 3.5rem;
  }
  .pb-800 {
    padding-bottom: 3.5rem;
  }
  .pl-800 {
    padding-left: 3.5rem;
  }
  .pr-800 {
    padding-right: 3.5rem;
  }
  .m-800 {
    margin: 3.5rem;
  }
  .mt-800 {
    margin-top: 3.5rem;
  }
  .mb-800 {
    margin-bottom: 3.5rem;
  }
  .ml-800 {
    margin-left: 3.5rem;
  }
  .mr-800 {
    margin-right: 3.5rem;
  }
  .gap-800 {
    gap: 3.5rem;
  }
  .p-900 {
    padding: 4rem;
  }
  .pt-900 {
    padding-top: 4rem;
  }
  .pb-900 {
    padding-bottom: 4rem;
  }
  .pl-900 {
    padding-left: 4rem;
  }
  .pr-900 {
    padding-right: 4rem;
  }
  .m-900 {
    margin: 4rem;
  }
  .mt-900 {
    margin-top: 4rem;
  }
  .mb-900 {
    margin-bottom: 4rem;
  }
  .ml-900 {
    margin-left: 4rem;
  }
  .mr-900 {
    margin-right: 4rem;
  }
  .gap-900 {
    gap: 4rem;
  }
  .p-1000 {
    padding: 4.5rem;
  }
  .pt-1000 {
    padding-top: 4.5rem;
  }
  .pb-1000 {
    padding-bottom: 4.5rem;
  }
  .pl-1000 {
    padding-left: 4.5rem;
  }
  .pr-1000 {
    padding-right: 4.5rem;
  }
  .m-1000 {
    margin: 4.5rem;
  }
  .mt-1000 {
    margin-top: 4.5rem;
  }
  .mb-1000 {
    margin-bottom: 4.5rem;
  }
  .ml-1000 {
    margin-left: 4.5rem;
  }
  .mr-1000 {
    margin-right: 4.5rem;
  }
  .gap-1000 {
    gap: 4.5rem;
  }
  .p-1100 {
    padding: 5rem;
  }
  .pt-1100 {
    padding-top: 5rem;
  }
  .pb-1100 {
    padding-bottom: 5rem;
  }
  .pl-1100 {
    padding-left: 5rem;
  }
  .pr-1100 {
    padding-right: 5rem;
  }
  .m-1100 {
    margin: 5rem;
  }
  .mt-1100 {
    margin-top: 5rem;
  }
  .mb-1100 {
    margin-bottom: 5rem;
  }
  .ml-1100 {
    margin-left: 5rem;
  }
  .mr-1100 {
    margin-right: 5rem;
  }
  .gap-1100 {
    gap: 5rem;
  }
  .p-1200 {
    padding: 5.5rem;
  }
  .pt-1200 {
    padding-top: 5.5rem;
  }
  .pb-1200 {
    padding-bottom: 5.5rem;
  }
  .pl-1200 {
    padding-left: 5.5rem;
  }
  .pr-1200 {
    padding-right: 5.5rem;
  }
  .m-1200 {
    margin: 5.5rem;
  }
  .mt-1200 {
    margin-top: 5.5rem;
  }
  .mb-1200 {
    margin-bottom: 5.5rem;
  }
  .ml-1200 {
    margin-left: 5.5rem;
  }
  .mr-1200 {
    margin-right: 5.5rem;
  }
  .gap-1200 {
    gap: 5.5rem;
  }
  .p-1300 {
    padding: 6rem;
  }
  .pt-1300 {
    padding-top: 6rem;
  }
  .pb-1300 {
    padding-bottom: 6rem;
  }
  .pl-1300 {
    padding-left: 6rem;
  }
  .pr-1300 {
    padding-right: 6rem;
  }
  .m-1300 {
    margin: 6rem;
  }
  .mt-1300 {
    margin-top: 6rem;
  }
  .mb-1300 {
    margin-bottom: 6rem;
  }
  .ml-1300 {
    margin-left: 6rem;
  }
  .mr-1300 {
    margin-right: 6rem;
  }
  .gap-1300 {
    gap: 6rem;
  }
}
@media (max-width: 744px) {
  .p-0 {
    padding: 0rem;
  }
  .pt-0 {
    padding-top: 0rem;
  }
  .pb-0 {
    padding-bottom: 0rem;
  }
  .pl-0 {
    padding-left: 0rem;
  }
  .pr-0 {
    padding-right: 0rem;
  }
  .m-0 {
    margin: 0rem;
  }
  .mt-0 {
    margin-top: 0rem;
  }
  .mb-0 {
    margin-bottom: 0rem;
  }
  .ml-0 {
    margin-left: 0rem;
  }
  .mr-0 {
    margin-right: 0rem;
  }
  .gap-0 {
    gap: 0rem;
  }
  .p-25 {
    padding: 0.125rem;
  }
  .pt-25 {
    padding-top: 0.125rem;
  }
  .pb-25 {
    padding-bottom: 0.125rem;
  }
  .pl-25 {
    padding-left: 0.125rem;
  }
  .pr-25 {
    padding-right: 0.125rem;
  }
  .m-25 {
    margin: 0.125rem;
  }
  .mt-25 {
    margin-top: 0.125rem;
  }
  .mb-25 {
    margin-bottom: 0.125rem;
  }
  .ml-25 {
    margin-left: 0.125rem;
  }
  .mr-25 {
    margin-right: 0.125rem;
  }
  .gap-25 {
    gap: 0.125rem;
  }
  .p-50 {
    padding: 0.25rem;
  }
  .pt-50 {
    padding-top: 0.25rem;
  }
  .pb-50 {
    padding-bottom: 0.25rem;
  }
  .pl-50 {
    padding-left: 0.25rem;
  }
  .pr-50 {
    padding-right: 0.25rem;
  }
  .m-50 {
    margin: 0.25rem;
  }
  .mt-50 {
    margin-top: 0.25rem;
  }
  .mb-50 {
    margin-bottom: 0.25rem;
  }
  .ml-50 {
    margin-left: 0.25rem;
  }
  .mr-50 {
    margin-right: 0.25rem;
  }
  .gap-50 {
    gap: 0.25rem;
  }
  .p-75 {
    padding: 0.375rem;
  }
  .pt-75 {
    padding-top: 0.375rem;
  }
  .pb-75 {
    padding-bottom: 0.375rem;
  }
  .pl-75 {
    padding-left: 0.375rem;
  }
  .pr-75 {
    padding-right: 0.375rem;
  }
  .m-75 {
    margin: 0.375rem;
  }
  .mt-75 {
    margin-top: 0.375rem;
  }
  .mb-75 {
    margin-bottom: 0.375rem;
  }
  .ml-75 {
    margin-left: 0.375rem;
  }
  .mr-75 {
    margin-right: 0.375rem;
  }
  .gap-75 {
    gap: 0.375rem;
  }
  .p-100 {
    padding: 0.5rem;
  }
  .pt-100 {
    padding-top: 0.5rem;
  }
  .pb-100 {
    padding-bottom: 0.5rem;
  }
  .pl-100 {
    padding-left: 0.5rem;
  }
  .pr-100 {
    padding-right: 0.5rem;
  }
  .m-100 {
    margin: 0.5rem;
  }
  .mt-100 {
    margin-top: 0.5rem;
  }
  .mb-100 {
    margin-bottom: 0.5rem;
  }
  .ml-100 {
    margin-left: 0.5rem;
  }
  .mr-100 {
    margin-right: 0.5rem;
  }
  .gap-100 {
    gap: 0.5rem;
  }
  .p-150 {
    padding: 0.75rem;
  }
  .pt-150 {
    padding-top: 0.75rem;
  }
  .pb-150 {
    padding-bottom: 0.75rem;
  }
  .pl-150 {
    padding-left: 0.75rem;
  }
  .pr-150 {
    padding-right: 0.75rem;
  }
  .m-150 {
    margin: 0.75rem;
  }
  .mt-150 {
    margin-top: 0.75rem;
  }
  .mb-150 {
    margin-bottom: 0.75rem;
  }
  .ml-150 {
    margin-left: 0.75rem;
  }
  .mr-150 {
    margin-right: 0.75rem;
  }
  .gap-150 {
    gap: 0.75rem;
  }
  .p-200 {
    padding: 1rem;
  }
  .pt-200 {
    padding-top: 1rem;
  }
  .pb-200 {
    padding-bottom: 1rem;
  }
  .pl-200 {
    padding-left: 1rem;
  }
  .pr-200 {
    padding-right: 1rem;
  }
  .m-200 {
    margin: 1rem;
  }
  .mt-200 {
    margin-top: 1rem;
  }
  .mb-200 {
    margin-bottom: 1rem;
  }
  .ml-200 {
    margin-left: 1rem;
  }
  .mr-200 {
    margin-right: 1rem;
  }
  .gap-200 {
    gap: 1rem;
  }
  .p-250 {
    padding: 1.25rem;
  }
  .pt-250 {
    padding-top: 1.25rem;
  }
  .pb-250 {
    padding-bottom: 1.25rem;
  }
  .pl-250 {
    padding-left: 1.25rem;
  }
  .pr-250 {
    padding-right: 1.25rem;
  }
  .m-250 {
    margin: 1.25rem;
  }
  .mt-250 {
    margin-top: 1.25rem;
  }
  .mb-250 {
    margin-bottom: 1.25rem;
  }
  .ml-250 {
    margin-left: 1.25rem;
  }
  .mr-250 {
    margin-right: 1.25rem;
  }
  .gap-250 {
    gap: 1.25rem;
  }
  .p-300 {
    padding: 1.25rem;
  }
  .pt-300 {
    padding-top: 1.25rem;
  }
  .pb-300 {
    padding-bottom: 1.25rem;
  }
  .pl-300 {
    padding-left: 1.25rem;
  }
  .pr-300 {
    padding-right: 1.25rem;
  }
  .m-300 {
    margin: 1.25rem;
  }
  .mt-300 {
    margin-top: 1.25rem;
  }
  .mb-300 {
    margin-bottom: 1.25rem;
  }
  .ml-300 {
    margin-left: 1.25rem;
  }
  .mr-300 {
    margin-right: 1.25rem;
  }
  .gap-300 {
    gap: 1.25rem;
  }
  .p-400 {
    padding: 1.25rem;
  }
  .pt-400 {
    padding-top: 1.25rem;
  }
  .pb-400 {
    padding-bottom: 1.25rem;
  }
  .pl-400 {
    padding-left: 1.25rem;
  }
  .pr-400 {
    padding-right: 1.25rem;
  }
  .m-400 {
    margin: 1.25rem;
  }
  .mt-400 {
    margin-top: 1.25rem;
  }
  .mb-400 {
    margin-bottom: 1.25rem;
  }
  .ml-400 {
    margin-left: 1.25rem;
  }
  .mr-400 {
    margin-right: 1.25rem;
  }
  .gap-400 {
    gap: 1.25rem;
  }
  .p-500 {
    padding: 1.25rem;
  }
  .pt-500 {
    padding-top: 1.25rem;
  }
  .pb-500 {
    padding-bottom: 1.25rem;
  }
  .pl-500 {
    padding-left: 1.25rem;
  }
  .pr-500 {
    padding-right: 1.25rem;
  }
  .m-500 {
    margin: 1.25rem;
  }
  .mt-500 {
    margin-top: 1.25rem;
  }
  .mb-500 {
    margin-bottom: 1.25rem;
  }
  .ml-500 {
    margin-left: 1.25rem;
  }
  .mr-500 {
    margin-right: 1.25rem;
  }
  .gap-500 {
    gap: 1.25rem;
  }
  .p-600 {
    padding: 1.5rem;
  }
  .pt-600 {
    padding-top: 1.5rem;
  }
  .pb-600 {
    padding-bottom: 1.5rem;
  }
  .pl-600 {
    padding-left: 1.5rem;
  }
  .pr-600 {
    padding-right: 1.5rem;
  }
  .m-600 {
    margin: 1.5rem;
  }
  .mt-600 {
    margin-top: 1.5rem;
  }
  .mb-600 {
    margin-bottom: 1.5rem;
  }
  .ml-600 {
    margin-left: 1.5rem;
  }
  .mr-600 {
    margin-right: 1.5rem;
  }
  .gap-600 {
    gap: 1.5rem;
  }
  .p-700 {
    padding: 2rem;
  }
  .pt-700 {
    padding-top: 2rem;
  }
  .pb-700 {
    padding-bottom: 2rem;
  }
  .pl-700 {
    padding-left: 2rem;
  }
  .pr-700 {
    padding-right: 2rem;
  }
  .m-700 {
    margin: 2rem;
  }
  .mt-700 {
    margin-top: 2rem;
  }
  .mb-700 {
    margin-bottom: 2rem;
  }
  .ml-700 {
    margin-left: 2rem;
  }
  .mr-700 {
    margin-right: 2rem;
  }
  .gap-700 {
    gap: 2rem;
  }
  .p-800 {
    padding: 2.5rem;
  }
  .pt-800 {
    padding-top: 2.5rem;
  }
  .pb-800 {
    padding-bottom: 2.5rem;
  }
  .pl-800 {
    padding-left: 2.5rem;
  }
  .pr-800 {
    padding-right: 2.5rem;
  }
  .m-800 {
    margin: 2.5rem;
  }
  .mt-800 {
    margin-top: 2.5rem;
  }
  .mb-800 {
    margin-bottom: 2.5rem;
  }
  .ml-800 {
    margin-left: 2.5rem;
  }
  .mr-800 {
    margin-right: 2.5rem;
  }
  .gap-800 {
    gap: 2.5rem;
  }
  .p-900 {
    padding: 3rem;
  }
  .pt-900 {
    padding-top: 3rem;
  }
  .pb-900 {
    padding-bottom: 3rem;
  }
  .pl-900 {
    padding-left: 3rem;
  }
  .pr-900 {
    padding-right: 3rem;
  }
  .m-900 {
    margin: 3rem;
  }
  .mt-900 {
    margin-top: 3rem;
  }
  .mb-900 {
    margin-bottom: 3rem;
  }
  .ml-900 {
    margin-left: 3rem;
  }
  .mr-900 {
    margin-right: 3rem;
  }
  .gap-900 {
    gap: 3rem;
  }
  .p-1000 {
    padding: 3.5rem;
  }
  .pt-1000 {
    padding-top: 3.5rem;
  }
  .pb-1000 {
    padding-bottom: 3.5rem;
  }
  .pl-1000 {
    padding-left: 3.5rem;
  }
  .pr-1000 {
    padding-right: 3.5rem;
  }
  .m-1000 {
    margin: 3.5rem;
  }
  .mt-1000 {
    margin-top: 3.5rem;
  }
  .mb-1000 {
    margin-bottom: 3.5rem;
  }
  .ml-1000 {
    margin-left: 3.5rem;
  }
  .mr-1000 {
    margin-right: 3.5rem;
  }
  .gap-1000 {
    gap: 3.5rem;
  }
  .p-1100 {
    padding: 4rem;
  }
  .pt-1100 {
    padding-top: 4rem;
  }
  .pb-1100 {
    padding-bottom: 4rem;
  }
  .pl-1100 {
    padding-left: 4rem;
  }
  .pr-1100 {
    padding-right: 4rem;
  }
  .m-1100 {
    margin: 4rem;
  }
  .mt-1100 {
    margin-top: 4rem;
  }
  .mb-1100 {
    margin-bottom: 4rem;
  }
  .ml-1100 {
    margin-left: 4rem;
  }
  .mr-1100 {
    margin-right: 4rem;
  }
  .gap-1100 {
    gap: 4rem;
  }
  .p-1200 {
    padding: 4.5rem;
  }
  .pt-1200 {
    padding-top: 4.5rem;
  }
  .pb-1200 {
    padding-bottom: 4.5rem;
  }
  .pl-1200 {
    padding-left: 4.5rem;
  }
  .pr-1200 {
    padding-right: 4.5rem;
  }
  .m-1200 {
    margin: 4.5rem;
  }
  .mt-1200 {
    margin-top: 4.5rem;
  }
  .mb-1200 {
    margin-bottom: 4.5rem;
  }
  .ml-1200 {
    margin-left: 4.5rem;
  }
  .mr-1200 {
    margin-right: 4.5rem;
  }
  .gap-1200 {
    gap: 4.5rem;
  }
  .p-1300 {
    padding: 5rem;
  }
  .pt-1300 {
    padding-top: 5rem;
  }
  .pb-1300 {
    padding-bottom: 5rem;
  }
  .pl-1300 {
    padding-left: 5rem;
  }
  .pr-1300 {
    padding-right: 5rem;
  }
  .m-1300 {
    margin: 5rem;
  }
  .mt-1300 {
    margin-top: 5rem;
  }
  .mb-1300 {
    margin-bottom: 5rem;
  }
  .ml-1300 {
    margin-left: 5rem;
  }
  .mr-1300 {
    margin-right: 5rem;
  }
  .gap-1300 {
    gap: 5rem;
  }
}
.container {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}

.experts {
  flex-wrap: wrap;
}

.experts > div {
  flex: 1;
  min-width: 22.5%;
  max-width: 22.5%;
}

.experts .img-container img {
  object-fit: cover;
}

.about-container img {
  padding: 0 5%;
}

header .input-container {
  height: 40px;
  width: 163px;
  border: 0.01rem solid #FFFFFF;
}

header .input-container form {
  display: flex;
  align-items: center;
  height: 40px;
  width: 163px;
}

@media (max-width: 920px) {
  .experts > div {
    min-width: 42%;
    max-width: 50%;
  }
}
.mnishvnelovani div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.contact-page {
  padding: 72px 0 0 0;
  text-align: center;
}
.contact-page h1 {
  color: #ac8d30;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}
.contact-page h2 {
  color: #101828;
  margin: 12px 0 24px 0;
  font-weight: 600;
  line-height: 60px;
  font-size: 48px;
}
.contact-page h3 {
  color: #475467;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.contact-page .contact-items {
  margin: 96px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e4e7ec;
  padding-bottom: 96px;
  margin-bottom: 0;
}
.contact-page .contact-items div {
  flex: 1;
  gap: 20px;
  flex-direction: column;
  display: flex;
}
.contact-page .contact-items div img {
  height: 48px;
  width: 48px;
  margin: 0 auto;
}
.contact-page .contact-items div h4 {
  display: block;
  color: #101828;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.contact-page .contact-items div p {
  color: #475467;
  font-size: 16px;
  margin-top: -12px;
}
.contact-page .contact-items div a {
  color: #ac8d30;
  color: var(--Foundation-CIPRF-Primary-1-400, #ac8d30);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
.contact-page .form {
  padding-top: 96px;
}
.contact-page .form form {
  margin: 64px auto 0 auto;
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: 480px;
}
.contact-page .form form .row {
  display: flex;
  gap: 32px;
}
.contact-page .form form button {
  background-color: #f5ca44;
  width: 100%;
  height: 48px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  border: 0;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  box-shadow: 0px -2px 0px 0px rgba(16, 24, 40, 0.0509803922) inset;
  box-shadow: 0px 0px 0px 1px rgba(16, 24, 40, 0.1803921569) inset;
}
.contact-page .form form .checkbox {
  text-align: left;
  display: flex;
  gap: 12px;
  margin: 12px 0;
}
.contact-page .form form .checkbox input {
  width: 20px;
  height: 20px;
}
.contact-page .form form .checkbox label {
  color: #475467;
}
.contact-page .form form .checkbox label a {
  color: #475467;
  text-decoration: underline;
}

div.input {
  width: 100%;
}
div.input label {
  color: #344054;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  display: block;
  text-align: left;
  margin-bottom: 6px;
}
div.input label span {
  color: #f5ca44;
}
div.input textarea,
div.input input {
  display: block;
  padding: 10px 14px;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  border-radius: 8px;
  outline: none;
  width: 100%;
}
div.input input {
  height: 44px;
}
div.input textarea {
  height: 160px;
  font-family: Inter;
}
div.input textarea::-webkit-input-placeholder,
div.input input::-webkit-input-placeholder {
  overflow: hidden;
  color: var(--Gray-500, #667085);
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
div.input textarea:-moz-placeholder,
div.input input:-moz-placeholder {
  overflow: hidden;
  color: var(--Gray-500, #667085);
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 1;
}
div.input textarea::-moz-placeholder,
div.input input::-moz-placeholder {
  overflow: hidden;
  color: var(--Gray-500, #667085);
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 1;
}
div.input textarea:-ms-input-placeholder,
div.input input:-ms-input-placeholder {
  overflow: hidden;
  color: var(--Gray-500, #667085);
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
div.input textarea::-moz-placeholder {
  font-family: Inter;
}

.teams-page h1 {
  margin: 96px 0;
  text-align: center;
  color: #101828;
  font-size: 48px;
  font-weight: 600;
}

.main-issues {
  background-color: #131316;
  padding: 32px 0;
  margin-bottom: 32px;
}
.main-issues h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 67.77px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0 0 16px 0;
}
.main-issues p {
  color: #fff;
  margin: 0 0 80px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.main-issues .issues-cats {
  margin-top: 64px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}
.main-issues .issues-cats a {
  border: 2px solid #f5ca44;
  background: rgba(254, 250, 236, 0.2);
  color: #f5ca44;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  padding: 0 16px;
}
.main-issues .search-container {
  display: flex;
  max-width: 700px;
  width: 80%;
  margin: 0 auto;
  gap: 8px;
}
.main-issues .search-container input {
  border: 0.005rem solid #ffffff;
  flex: 1;
  color: #fff;
  height: 37px;
  padding: 10px 8px;
  background-color: transparent;
  outline: none;
}
.main-issues .search-container input::placeholder {
  color: #475467;
}
.main-issues .search-container button {
  border: 2px solid #f5ca44;
  height: 37px;
  min-width: 85px;
  color: #fff;
  background: rgba(254, 250, 236, 0.2);
  outline: none;
}

.main-issues-list a {
  display: block;
}
.main-issues-list a img {
  display: block;
  width: 100%;
  height: 650px;
  object-fit: cover;
  margin-bottom: 20px;
}
.main-issues-list a h4 {
  color: #101828;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.main-issues-list a p {
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
}
.main-issues-list a div {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.main-issues-list a div span {
  border: 1px solid #f5ca44;
  background: #fefaec;
  color: #ac8d30;
  padding: 2px 10px;
  border-radius: 16px;
}
.main-issues-list .row {
  display: flex;
  flex-wrap: wrap;
  margin: 64px 0;
  gap: 32px;
}
.main-issues-list .row a {
  flex: 1;
  min-width: 31%;
  max-width: 33%;
}
.main-issues-list .row a img {
  height: 240px;
}
.main-issues-list .row a div {
  margin-top: 20px;
}
.main-issues-list .row a h4 {
  font-size: 24px;
  line-height: 32px;
}

.global-header {
  background-color: #18181b;
  padding: 32px 0;
}
.global-header h1 {
  font-family: Inter;
  font-weight: 700;
  font-size: 56px;
  line-height: 67.77px;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
}
.global-header p {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2%;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 80px;
}
.global-header form {
  display: flex;
  gap: 8px;
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
}
.global-header form input {
  border: 0.5px solid #ffffff;
  background-color: transparent;
  color: #fff;
  height: 37px;
  flex: 1;
  outline: none;
  padding-left: 12px;
}
.global-header form button {
  border: 2px solid #f5ca44;
  background: rgba(254, 250, 236, 0.2);
  height: 37px;
  color: #ffffff;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  letter-spacing: 0%;
  outline: none;
  padding: 0 20px;
}

.vocabulery-page .alfas {
  display: flex;
  background-color: #344054;
  margin-top: 40px;
  margin-bottom: 32px;
}
.vocabulery-page .alfas span {
  flex: 1;
  height: 44px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.vocabulery-page .alfas span:hover, .vocabulery-page .alfas span.active {
  background-color: #f5ca44;
  color: #000000;
}
.vocabulery-page .terms-title {
  padding: 8px 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 38.73px;
  letter-spacing: 0%;
  border-bottom: 2px solid #000000;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #f5ca44;
}
.vocabulery-page .term-item {
  padding: 16px;
  background-color: #e4e7ec;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.vocabulery-page .term-item h3 {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  letter-spacing: 0%;
}
.vocabulery-page .term-item p {
  color: #000000;
  font-weight: 400;
  font-size: 20px;
  line-height: 24.2px;
  letter-spacing: 0%;
  margin: 0;
}
.vocabulery-page .term-item p.example {
  color: #088ab2;
}
.vocabulery-page .term-item a {
  background-color: #f7d364;
  box-shadow: 0px 3.47px 6.07px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #000000;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  height: 39px;
  text-align: center;
  line-height: 39px;
  max-width: 160px;
}
.vocabulery-page .term-item a:hover {
  color: #088ab2;
}

.about .hero {
  border-bottom: 48px solid #131316;
  position: relative;
}
.about .hero > div {
  height: 800px;
}
.about .hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0.8) 65%);
}
.about .hero .info {
  position: absolute;
  bottom: 48px;
  width: 100%;
  z-index: 2;
}
.about .hero .info h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48.41px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 24px;
}
.about .hero .info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2px;
  color: #d0d5dd;
}
.about .hero img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.about-info .info-item {
  display: flex;
  margin-bottom: 100px;
  margin-top: 32px;
  gap: 30px;
}
.about-info .info-item:not(.active) {
  flex-direction: row-reverse;
}
.about-info .info-item > div {
  flex: 1;
}
.about-info .info-item > div:nth-child(1) {
  min-width: 55%;
  padding: 16px 24px;
}
.about-info .info-item h4 {
  margin-bottom: 24px;
  display: flex;
  gap: 32px;
  align-items: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 48.41px;
  letter-spacing: 0%;
  color: #101828;
}
.about-info .info-item h4 img {
  height: 96px;
}
.about-info .info-item .info-item-img {
  width: 100%;
  height: auto;
}
.about-info .info-item p {
  color: #344054;
  font-size: 20px;
  line-height: 32px;
}

.about-work-group {
  border: 1px solid #000000;
  display: flex;
}
.about-work-group .title {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  border-right: 1px solid #000000;
}
.about-work-group .title .faq-item {
  text-align: center;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #000000;
}
.about-work-group .title .faq-item h4 svg {
  display: none;
}
.about-work-group .title .faq-item.active, .about-work-group .title .faq-item:hover {
  background-color: #000000;
}
.about-work-group .title .faq-item.active h4, .about-work-group .title .faq-item:hover h4 {
  color: #fff;
}
.about-work-group .title h4 {
  color: #000000;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0%;
  display: block;
}
.about-work-group .faq-item-content {
  padding: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2%;
}
.about-work-group .content .faq-item-content:not(:first-child) {
  display: none;
}

.about-work {
  margin-bottom: 25px;
  height: 720px;
  position: relative;
}
.about-work::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.about-work img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
.about-work .about-work-info {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 32px;
  width: 100%;
}
.about-work .about-work-info h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 51.2px;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 24px;
}
.about-work .about-work-info p {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.about-team {
  margin-bottom: 96px;
}

.about-timeline-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48.41px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 40px;
}

.about-timeline-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-timeline-title a {
  color: var(--Base-Black, #000);
  font-family: "SF Georgian";
  font-size: 16px;
  font-style: normal;
  font-weight: 510;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 142px;
  align-items: center;
}
.timeline-item .round-container {
  display: flex;
  gap: 8px;
  align-items: center;
}
.timeline-item .round-container span {
  color: #475467;
  border-bottom: 3px solid #d0d5dd;
  font-size: 14px;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 4px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.timeline-item .round-container span p.dot {
  width: 4px;
  height: 4px;
  background-color: #101828;
  border-radius: 50%;
  position: absolute;
  left: 38px;
}
.timeline-item .round {
  border: 3px solid #d0d5dd;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-item .round em {
  width: 18px;
  height: 18px;
  background-color: #98a2b3;
  border-radius: 50%;
}
.timeline-item img {
  height: 230px;
}
.timeline-item .info {
  height: 230px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timeline-item .info h4 {
  color: #101828;
  font-size: 28px;
  font-weight: 700;
}
.timeline-item .info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #344054;
}

.single-post .st-box ol,
.single-post .st-box ul {
  padding-left: 30px;
  margin-bottom: 16px;
}

.books {
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;
  gap: 40px;
  flex: 1;
  row-gap: 48px;
}
.books a {
  flex: 1;
  min-width: 30%;
  max-width: 335px;
  display: flex;
  background: #e4e7ec;
  padding: 24px;
  gap: 16px;
  flex-direction: column;
}
.books a .cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.books a .cats span {
  border: 1px solid #e9d7fe;
  background: #f9f5ff;
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 14px;
  color: #363f72;
}
.books a img {
  width: 96%;
  height: 260px;
  object-fit: cover;
  margin: 0 auto;
}
.books a h3 {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #101828;
}
.books a p {
  color: #101828;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}

.st-button {
  box-shadow: 0px 3.47px 6.07px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #000000;
  background: #f7d364;
  height: 40px;
  border-radius: 40px;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  line-height: 21.23px;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  margin: 12px 0;
}

.books-page {
  display: flex;
  margin-top: 40px;
  padding: 0 20px;
}
.books-page .categories {
  border: 1px solid #98a2b3;
  padding: 24px;
  max-width: 350px;
  flex: 1;
}
.books-page .categories .selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}
.books-page .categories .selected span {
  border-radius: 16px;
  border: 1px solid var(--Foundation-CIPRF-Primary-1-200, #f7d364);
  background: var(--Foundation-CIPRF-Primary-1-50, #fefaec);
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  height: 24px;
  color: var(--Foundation-CIPRF-Primary-1-400, #ac8d30);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  cursor: pointer;
  padding: 0 4px 0 10px;
}
.books-page .categories button {
  box-shadow: 0px 3.47px 6.07px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #000000;
  background: #f7d364;
  width: 128px;
  height: 40px;
  border-radius: 40px;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  line-height: 21.23px;
  letter-spacing: 0%;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.books-page .categories .cat-list {
  padding: 8px;
  min-width: 260px;
  margin-top: 16px;
}
.books-page .categories .cat-list div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px;
  padding-right: 0px;
}
.books-page .categories .cat-list div label {
  color: #000000;
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
.books-page .categories .cat-list h4 {
  margin-top: 3px;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
}

.book-pdf iframe {
  width: 100%;
  height: 60vh;
  min-height: 850px;
  border: none;
}

a.pdf {
  background: #f5ca44;
  border: 0.87px solid #000000;
  box-shadow: 0px 3.47px 6.07px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 8px;
  height: 38px;
  display: flex;
  align-items: center;
  min-width: 175px;
  width: 175px;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.36px;
  letter-spacing: 0%;
  color: #000;
}

.single-book .single-book {
  display: flex;
  gap: 32px;
  padding: 24px;
  background-color: #475467;
  margin-bottom: 32px;
  margin-top: 40px;
}
.single-book .single-book > div {
  flex: 1;
  background-color: #e4e7ec;
  padding: 24px;
}
.single-book .single-book > div h3 {
  margin-bottom: 20px;
  color: var(--Gray-900, #101828);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px; /* 126.667% */
}
.single-book .single-book .downloads .socials {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  margin-top: 36px;
}
.single-book .single-book .downloads .socials a {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  box-shadow: 0px -2px 0px 0px rgba(16, 24, 40, 0.0509803922) inset;
  box-shadow: 0px 0px 0px 1px rgba(16, 24, 40, 0.1803921569) inset;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-book .single-book .downloads .socials a img {
  width: 20px;
  height: auto;
}
.single-book .single-book .book-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.single-book .single-book .book-details h5 {
  color: #475467;
  font-weight: 500;
  font-size: 20px;
  line-height: 24.2px;
  letter-spacing: 0%;
  margin-bottom: 10px;
}
.single-book .single-book .book-details h1 {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  letter-spacing: 0%;
}
.single-book .single-book .book-details h3 {
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  line-height: 24.2px;
  letter-spacing: 0%;
}
.single-book .single-book .cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.single-book .single-book .cats span {
  border: 1px solid #e9d7fe;
  background: #f9f5ff;
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 14px;
  color: #363f72;
}
.single-book .single-book .info {
  display: flex;
  gap: 24px;
}
.single-book .single-book .info > div {
  flex: 1;
}
.single-book .single-book .info > div img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.papers-list {
  display: flex;
  row-gap: 48px;
  column-gap: 140px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 80px;
}

.single-paper:not(body) {
  min-width: 320px;
  max-width: 320px;
  flex: 1;
  background-color: #f9e093;
  padding: 28px;
  position: relative;
}
.single-paper:not(body) img {
  position: absolute;
  left: -15px;
  top: -12px;
  width: 40px;
  z-index: 2;
}
.single-paper:not(body) h3 {
  color: #101828;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  min-height: 65px;
}
.single-paper:not(body) h5 {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}
.single-paper:not(body) p {
  color: #182230;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-paper:not(body) .cats {
  display: flex;
  margin-top: 24px;
  gap: 8px;
  flex-wrap: wrap;
}
.single-paper:not(body) .cats span {
  background: #f9f5ff;
  border: 1px solid #e9d7fe;
  border-radius: 16px;
  padding: 2px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #363f72;
}
.single-paper:not(body) .cats span:hover {
  color: #6941c6;
}

.st-box {
  background-color: #e4e7ec;
  padding: 16px 24px;
  margin-bottom: 64px;
}
.st-box h3 {
  color: #000000;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  margin: 16px 0;
}
.st-box p {
  color: #000000;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-indent: 20px;
  margin: 0;
}

.st-box.st-box-issue {
  background: #f9fafb;
  padding: 32px;
}
.st-box.st-box-issue h3 {
  color: var(--Gray-900, #101828);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px; /* 126.667% */
}
.st-box.st-box-issue p {
  color: var(--Gray-600, #475467);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.noology-search-container {
  border: 1px solid #d0d5dd;
  padding: 40px 80px;
}
.noology-search-container h3 {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
  color: #000;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}
.noology-search-container h3 svg {
  width: 24px;
  height: 24px;
}
.noology-search-container input {
  border: 1px solid #000000;
  padding: 0 10px;
  height: 42px;
  width: 100%;
  color: #475467;
  font-size: 18px;
}
.noology-search-container .noology-search-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  gap: 10px;
}
.noology-search-container .noology-search-buttons a {
  background: #f5ca44;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  height: 60px;
  flex: 1;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
}
.noology-search-container .noology-search-buttons a:hover {
  border-color: #000000;
}

.about-info-text {
  background: #f9e093;
  border-radius: 12px;
  padding: 24px;
  width: 86%;
  margin: 48px auto;
  backdrop-filter: blur(7.1999998093px);
}
.about-info-text p {
  margin: 0;
  color: #000;
  font-weight: 500;
  font-size: 32px;
  line-height: 51.2px;
  letter-spacing: 0.7%;
}

.voc-examples h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}
.voc-examples div {
  margin-bottom: 32px;
  color: var(--Gray-600, #475467);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.voc-title {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
}
.voc-title h1 {
  padding: 0 14px;
  color: #000;
  margin: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.voc-title span {
  border-radius: 43px;
  background: var(--Foundation-CIPRF-Primary-1-75, #fbe9b2);
  padding: 0 16px;
  height: 68px;
  color: var(--Foundation-CIPRF-Primary-1-400, #ac8d30);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.voc-title a {
  display: flex;
  height: 68px;
  gap: 8px;
  align-items: center;
  padding: 0 24px;
  border-left: 1px solid var(--Gray-400, #98a2b3);
  color: var(--Base-Black, #000);
  font-family: Georgia;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.player-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.player {
  width: 100%;
  height: 100%;
}

.overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  width: 64px;
  height: 64px;
  background: url("https://img.icons8.com/ios-filled/100/ffffff/play-button-circled.png") no-repeat center center;
  background-size: contain;
}

.voc-videos {
  margin-top: 64px;
}
.voc-videos h3 {
  color: var(--Base-Black, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.voc-videos .videos {
  display: flex;
  gap: 42px;
}
.voc-videos .videos .player-wrapper {
  height: 314px;
  flex: 1;
  min-width: 20%;
  max-width: 24%;
}
.voc-videos .videos .player-wrapper:first-child {
  height: 484px;
  min-width: 74%;
}
.voc-videos .videos .player-wrapper:nth-child(2) {
  height: 484px;
}
.voc-videos .videos .player-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acf-gallery-item {
  height: 310px;
}
.acf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.default-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.default-tags span {
  padding: 0 10px;
  border-radius: 16px;
  border: 1px solid var(--Foundation-CIPRF-Primary-1-300, #f5ca44);
  background: var(--Foundation-CIPRF-Primary-1-50, #fefaec);
  height: 24px;
  color: var(--Foundation-CIPRF-Primary-1-400, #ac8d30);
  text-align: center;
  /* Text sm/Medium */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-issue-cont h1 {
  color: var(--Gray-900, #101828);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -0.96px;
  margin: 16px 0 24px 0;
}
.single-issue-cont .small-info {
  color: var(--Gray-600, #475467);
  max-width: 700px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}
.single-issue-cont img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.important-notes h3 {
  color: var(--Base-Black, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 32px 0;
}

.single-contents {
  margin-top: 64px;
  margin-bottom: 96px;
}
.single-contents > h3 {
  color: var(--Base-Black, #000);
  width: 92%;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin-bottom: 16px;
  margin-left: 4%;
}
.single-contents .row {
  display: flex;
  gap: 64px;
  width: 92%;
  margin: 0 auto;
}
.single-contents .main-content {
  color: var(--Gray-600, #475467);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.single-contents .main-content ul {
  margin: 20px;
}
.single-contents .main-content img {
  width: 100%;
  height: auto;
  margin: 48px 0;
}
.single-contents .main-content h2,
.single-contents .main-content h1,
.single-contents .main-content h3,
.single-contents .main-content h4,
.single-contents .main-content h5 {
  color: #101828;
  margin-bottom: 20px;
}
.single-contents .main-content p {
  margin-bottom: 20px;
}
.single-contents .title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.single-contents .title .line {
  height: 1px;
  width: 100%;
  background-color: #e4e7ec;
  margin: 20px 0;
}
.single-contents .title .socials {
  display: flex;
  gap: 12px;
}
.single-contents .title .socials a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px rgba(16, 24, 40, 0.18) inset, 0px -2px 0px 0px rgba(16, 24, 40, 0.05) inset, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.single-contents .title .socials a img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.single-contents .title h6 {
  color: var(--Gray-600, #475467);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin: 0;
  cursor: pointer;
}

.single-paper-container {
  margin: 96px auto;
  padding: 0 64px;
}
.single-paper-container .content {
  color: var(----oc-gray-9, #212529);
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border: 1px solid #d1d5dc;
  padding: 16px;
}
.single-paper-container .content ul {
  margin: 12px 40px;
}
.single-paper-container .content p {
  margin-bottom: 12px;
}
.single-paper-container .content h1,
.single-paper-container .content h2,
.single-paper-container .content h3,
.single-paper-container .content h4 {
  color: var(----oc-gray-9, #212529);
  margin-bottom: 16px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 30px */
}
.single-paper-container .row {
  display: flex;
  gap: 64px;
}
.single-paper-container .cat-right {
  max-width: 240px;
  min-width: 240px;
}
.single-paper-container .cat-right .box {
  border: 1px solid #d1d5dc;
  margin-bottom: 32px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single-paper-container .cat-right .box .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.single-paper-container .cat-right .box .flex-row span {
  padding: 0 10px;
  height: 24px;
  border-radius: 16px;
  border: 1px solid var(--Foundation-CIPRF-Primary-1-300, #f5ca44);
  background: var(--Foundation-CIPRF-Primary-1-50, #fefaec);
  color: var(--Foundation-CIPRF-Primary-1-400, #ac8d30);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.single-paper-container .cat-right .box h3 {
  color: var(--Gray-600, #475467);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}
.single-paper-container .cat-right .box p {
  color: var(--Gray-600, #475467);
  padding: 0 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-top: -16px;
}
.single-paper-container .cat-right .box .flex {
  margin-top: -16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-paper-container .cat-right .box a {
  display: block;
  color: var(--Gray-600, #475467);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.single-paper-container .cat-right .box a:hover {
  color: #f5ca44;
}

.input.number {
  position: relative;
}
.input.number select {
  position: absolute;
  left: 0;
  bottom: 1px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--Gray-700, #344054);
  padding: 8px 28px 8px 12px;
  border: 0;
  border-radius: 8px;
  background-color: transparent;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2398A2B3' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.input.number option {
  color: #344054;
  font-size: 16px;
}
.input.number input {
  padding-left: 64px;
}

h3.noology {
  color: var(--Base-Black, #000);
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.noology-text {
  color: var(--Gray-800, #182230);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  letter-spacing: 0.4px;
}

.vocabulery-page .term-item a:hover {
  background-color: #6343bf !important;
  border-color: #6953ae !important;
  color: #000000;
}

body button:hover {
  cursor: pointer;
  background-color: #6343bf !important;
  border-color: #6953ae !important;
}

.single-issue-slider {
  margin-top: 80px;
}
.single-issue-slider h4 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}

.important-notes-container {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}
.important-notes-container .slick-dots {
  display: none !important;
}
.important-notes-container .slick-slide > div {
  width: calc(100% - 32px);
  margin: 0 auto;
}
.important-notes-container .news-slider .slick-next,
.important-notes-container .news-slider .slick-prev {
  width: 48px;
  height: 48px;
  top: 50%;
  left: 0;
  margin-left: -60px;
  background-color: transparent !important;
  border: 1px solid #000;
  border-radius: 48px;
  background-image: url("../icons/h-left.svg");
}
.important-notes-container .news-slider .slick-next {
  left: 100%;
  margin-left: 20px;
  background-image: url("../icons/h-right.svg");
}
.important-notes-container .single-import {
  width: 100%;
  height: 400px;
  position: relative;
  background-color: lightgray;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.important-notes-container .single-import img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.important-notes-container .single-import h4 {
  position: absolute;
  left: 20px;
  z-index: 4;
  bottom: 30px;
  display: flex;
  gap: 10px;
  color: var(--Base-Black, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.single-issue-gallery.videos {
  gap: 42px;
  flex-wrap: wrap;
}
.single-issue-gallery.videos .player-wrapper,
.single-issue-gallery.videos a {
  height: 314px;
  flex: 1;
  min-width: 20%;
  max-width: 24%;
}
.single-issue-gallery.videos .player-wrapper:first-child,
.single-issue-gallery.videos a:first-child {
  height: 484px;
  min-width: 74%;
}
.single-issue-gallery.videos .player-wrapper:nth-child(2),
.single-issue-gallery.videos a:nth-child(2) {
  height: 484px;
}
.single-issue-gallery.videos .player-wrapper img,
.single-issue-gallery.videos a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.papers-slider .slick-slide > div {
  text-align: center;
  padding-top: 20px;
}
.papers-slider .slick-slide > div a {
  text-align: left;
}

.pagination {
  border-top: 1px solid var(--Gray-200, #E4E7EC);
  display: flex;
  justify-content: center;
  gap: 2px;
  padding-top: 20px;
  position: relative;
}
.pagination span, .pagination a {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: var(--Gray-600, #475467);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.pagination span.current {
  border-radius: 20px;
  background: var(--Gray-50, #F9FAFB);
}
.pagination a.prev,
.pagination a.next {
  position: absolute;
  right: 0;
  top: 20px;
  width: auto;
}
.pagination a.prev {
  left: 0;
  right: auto;
}

.single-issue-slider .single-paper:not(body) {
  min-height: 340px;
}

@media (min-width: 992px) {
  .about-timeline {
    max-height: 700px;
    overflow: hidden;
  }
  .about-timeline.active {
    max-height: none;
  }
  .about-timeline-more {
    margin: 0 0 40px 0;
    text-align: center;
  }
  .about-timeline-more span {
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 8px 10px;
    border-bottom: 1px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
body {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: #101828;
  font-family: "Inter", sans-serif;
}
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.fancybox__container,
.fancybox__container * {
  transition: inherit;
}

a {
  text-decoration: none;
}

h3 {
  color: #101828;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}

h4 {
  color: #101828;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 100% */
  display: flex;
  align-items: center;
}
h4.dark {
  color: #000;
  letter-spacing: 0.64px;
}
h4 a {
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  margin-left: auto;
}
h4 a svg {
  height: 20px;
}
h4 a svg path {
  stroke: #f5ca44;
}

.btn {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Brand-600, #101828);
  box-shadow: 0px 0px 0px 1px rgba(16, 24, 40, 0.18) inset, 0px -2px 0px 0px rgba(16, 24, 40, 0.05) inset, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
  outline: none;
  cursor: pointer;
}
.btn.btn-white {
  background-color: #fff;
  border: 1px solid var(--Gray-300, #d0d5dd);
  color: #344054;
}

.input-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 44px;
}
.input-container input {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 10px 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: #475467;
  background: transparent;
  outline: none !important;
  border: none !important;
}
.input-container ::placeholder {
  color: #475467;
  opacity: 1;
}
.input-container ::-ms-input-placeholder {
  color: #475467;
}

.hero .hero-slide {
  position: relative;
}
.hero .hero-slide::before {
  content: "";
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0.8) 65%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 99%;
  z-index: 1;
  opacity: 0.3;
}
.hero .hero-slide img {
  height: 80dvh;
  width: 100%;
  object-fit: cover;
}
.hero .hero-slide .hero-slide-info {
  position: absolute;
  left: 10%;
  bottom: 32px;
  z-index: 2;
  width: 80%;
}
.hero .hero-slide .hero-slide-info h3 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}
.hero .hero-slide .hero-slide-info p {
  color: #d0d5dd;
  margin: 24px 0 0 0;
  font-size: 20px;
  font-weight: 400;
}
.hero .news-slider .slick-arrow {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 10%;
  top: 50%;
  margin-top: -100px;
  z-index: 3;
  border-radius: 50%;
}
.hero .news-slider .slick-arrow:hover {
  background-color: #b8b8b8 !important;
  border-color: #b8b8b8 !important;
}
.hero .news-slider .slick-arrow.slick-next {
  left: auto;
  right: 10%;
}
.hero .news-slider .slick-dots {
  background-color: #131316;
  margin: -6px 0 0 0;
  height: 78px;
  align-items: center;
}
.hero .news-slider .slick-dots li {
  width: 16px;
  height: 16px;
  border: 1px solid #f5ca44;
}

.about-container {
  display: flex;
  margin-top: 40px;
  gap: 66px;
}
.about-container p {
  font-size: 24px;
  font-style: normal;
  font-weight: 510;
  line-height: normal;
  letter-spacing: 0.144px;
  color: #000;
}
.about-container img {
  width: 468px;
}

footer .footer-menu {
  background-color: #f9e093;
  height: 64px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
footer .footer-menu li {
  list-style: none;
}
footer .footer-menu a {
  color: #475467;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
footer .footer-menu a:hover {
  font-weight: 700;
  color: #000;
}
footer .menu ul {
  display: flex;
  gap: 32px;
  list-style: none;
}
footer .menu ul li {
  list-style: none;
}
footer .menu ul a {
  color: #475467;
  font-size: 16px;
  font-style: normal;
  font-weight: 590;
  line-height: 24px;
}
footer .menu ul a:hover {
  color: #000;
  font-weight: 700;
}
footer .menu ul ul {
  display: block;
}
footer .copyright p {
  color: #667085;
}
footer .copyright .socials {
  display: flex;
  gap: 24px;
}
footer .copyright .socials img {
  height: 24px;
  width: auto;
}
footer .news {
  color: #101828;
  font-size: 14px;
  font-style: normal;
  font-weight: 590;
  line-height: 20px;
}
footer a > img {
  height: 60px;
}
footer .info {
  max-width: 257px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #000;
}

.big-image {
  position: relative;
  height: 720px;
}
.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-image h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.big-image p {
  color: #ffffff;
  font-size: 16px;
}
.big-image div {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: 90%;
}
.big-image div.bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  left: 0;
  bottom: 0;
  height: 25%;
  width: 100%;
}

.home-blog > div {
  flex: 1;
}
.home-blog .big-post {
  flex: 2;
  max-width: 624px;
}
.home-blog a {
  gap: 20px;
  width: 100%;
}
.home-blog p {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  letter-spacing: 0.096px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 63px;
  overflow: hidden;
}
.home-blog span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #ac8d30;
  border: 1px solid #f5ca44;
  background: #fefaec;
  padding: 2px 10px;
  border-radius: 12px;
}
.home-blog h4 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 8px 0 24px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.home-blog img {
  height: 200px;
}
.home-blog div {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}
.home-blog div.big-post {
  justify-content: flex-start;
}
.home-blog .big-post div {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 8px;
}
.home-blog .big-post img {
  width: 100%;
  height: 491px;
  object-fit: cover;
  border-radius: 0;
}
.home-blog .big-post h4 {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}
.home-blog .avatar {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.home-blog .avatar div:nth-child(1) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../icons/Avatar.png");
  object-fit: cover;
}
.home-blog .avatar h6 {
  color: #101828;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.home-blog .avatar em {
  font-style: normal;
  color: #475467;
  /* Text sm/Regular */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.bg-grey {
  background-color: #f9fafb;
}

.newest > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newest div img {
  width: 100%;
  height: 419px;
  border-radius: 20px;
}
.newest h5 {
  color: var(--Base-Black, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin: 25px 0;
}
.newest p {
  color: var(--Gray-900, #101828);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  letter-spacing: 0.096px;
}
.newest .avatar {
  display: flex;
  gap: 4px;
  align-items: center;
}
.newest .avatar div:nth-child(1) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../icons/Avatar.png");
  object-fit: cover;
}
.newest .avatar span {
  color: var(--Brand-600, #101828);
  /* Text sm/Semibold */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.blog-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.blog-slider > div {
  min-width: 27%;
  max-width: 32%;
  flex: 1;
}
.blog-slider .single-blog {
  padding: 0;
}
.blog-slider .single-blog h4 {
  color: #101828;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 16px 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.single-blog {
  display: block;
  width: 100%;
  padding: 0 20px;
}
.single-blog main,
.single-blog img {
  width: 100%;
  margin-bottom: 20px;
  height: 240px;
  overflow: hidden;
}
.single-blog:hover main > img {
  transform: scale(1.2);
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.slick-dots li {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: 1px solid #f5ca44;
  background-color: transparent;
  list-style: none;
  cursor: pointer;
}
.slick-dots li:hover, .slick-dots li.slick-active {
  background: #f5ca44;
}
.slick-dots li button {
  display: none;
}

.slick-next,
.slick-prev {
  background-image: url("../icons/hero-left.svg");
  width: 64px;
  height: 64px;
  background-size: cover;
  text-indent: -9000px;
  border: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.slick-next {
  background-image: url("../icons/hero-right.svg");
}

.news-slider .slick-next,
.news-slider .slick-prev {
  position: absolute;
  top: -48px;
  right: 0;
  left: auto;
}
.news-slider .slick-prev {
  right: 84px;
}
.news-slider .slick-dots {
  gap: 24px;
  margin: 24px 0 0 0;
}
.news-slider .slick-dots li {
  width: 64px;
  height: 16px;
  border-radius: 8px;
}

header {
  background: #131316;
  height: 100px;
  display: flex;
  width: 100%;
  align-items: center;
}
header .header-search {
  position: relative;
}
header .header-search input {
  position: absolute;
  left: 36px;
  top: 2px;
  width: 140px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 2px 6px;
  height: 32px;
  opacity: 0;
  pointer-events: none;
}
header .header-search img {
  width: 22px;
  height: 22px;
  margin-top: 8px;
  cursor: pointer;
}
header .header-search.active input {
  opacity: 1;
  pointer-events: all;
  outline: none;
}
header .header-search input {
  color: #fff;
}
header .header-search input::placeholder {
  color: #fff;
}
header .left-menu {
  margin-right: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 16px;
  cursor: pointer;
  position: relative;
}
header .left-menu .header-noology {
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 3;
  width: 50dvw;
  max-width: 540px;
  cursor: default;
  opacity: 0;
  pointer-events: none;
  background-color: #131316;
}
header .left-menu .header-noology.active {
  opacity: 1;
  pointer-events: all;
}
header .left-menu .header-noology .flex {
  display: flex;
}
header .left-menu .header-noology .flex > div:first-child {
  min-width: 155px;
  background-color: #f5ca44;
  padding: 16px;
}
header .left-menu .header-noology .flex > div:first-child h3 {
  padding: 8px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.36px;
  letter-spacing: 0%;
  color: #000;
}
header .left-menu .header-noology .flex > div:first-child ul {
  display: flex;
  flex-direction: column;
}
header .left-menu .header-noology .flex > div:first-child ul li {
  max-height: none;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  color: #101828;
}
header .left-menu .header-noology .flex > div:nth-child(2) {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  padding: 22px;
  gap: 8px;
}
header .left-menu .header-noology .flex > div:nth-child(2) a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.36px;
  letter-spacing: 0%;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

header .container > div {
  display: flex;
  align-items: center;
}
header .container > div .left-menu span {
  font-size: 16px;
  color: #f5ca44;
  font-weight: 700;
}
header .container > div .logo {
  height: 60px;
}
header .container > div a img {
  height: 60px;
}
header .container > div > div {
  flex: 1;
}
header .container > div ul {
  justify-content: right;
  display: flex;
  gap: 10px;
}
header .container > div ul li {
  list-style: none;
  position: relative;
}
header .container > div ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  background-color: #131316;
  padding: 38px 0 8px 0;
  min-width: 130px;
  z-index: 3;
}
header .container > div ul li .sub-menu li {
  max-height: 38px;
}
header .container > div ul li .sub-menu a {
  padding: 10px 12px;
  display: block;
  font-size: 14px;
}
header .container > div ul li:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
}
header .container > div ul a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 10px;
}
header .container > div ul a:hover {
  color: #f5ca44;
}
header .container > div ul .current-menu-item:not(.menu-item-17307) a {
  color: #f5ca44;
}

header .container div.header-noology ul a {
  padding: 5px 0;
}

header .container div.header-noology ul a:hover {
  color: #000;
}

.experts {
  display: flex;
  gap: 32px;
}
.experts h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #101828;
}
.experts h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 400;
  color: #101828;
}
.experts p {
  margin: 0;
  color: #475467;
  font-weight: 400;
  font-size: 16px;
}
.experts .img-container {
  height: 296px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.experts .img-container:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 19%, rgba(102, 102, 102, 0) 100%);
  opacity: 0;
}
.experts .img-container img {
  width: 100%;
  height: 100%;
}
.experts .img-container span {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 24px;
  display: block;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 590;
  line-height: normal;
  text-transform: lowercase;
  opacity: 0;
}
.experts .img-container:hover:before,
.experts .img-container:hover span {
  opacity: 1;
}

h1 {
  color: var(--Gray-900, #101828);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.breadcrumbs span {
  color: #f5ca44;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}

.menu {
  display: flex;
  gap: 16px;
}
.menu a {
  color: var(--Gray-500, #667085);
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.expert-details {
  display: flex;
  margin-top: -20px;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}
.expert-details > div > img {
  height: 500px;
  border-radius: 15px;
}
.expert-details h1 {
  color: var(--Base-Black, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.expert-details h5 {
  margin: 0;
  color: var(--Gray-400, #98a2b3);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.expert-details p {
  margin: 25px 0;
  color: var(--Base-Black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.expert-details h4 {
  margin: 10px 10px 15px 10px;
  color: var(--Base-Black, #000);
  font-family: "Noto Sans Georgian";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.filter-container {
  margin-left: 8%;
  margin-right: 8%;
  position: relative;
}
.filter-container button {
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}

.filters {
  margin-left: 4%;
  margin-right: 4%;
  position: relative;
  background-color: #fff;
  z-index: 2;
  margin-bottom: 24px;
  max-height: 0px;
  overflow: hidden;
}
.filters.active {
  max-height: 700px;
}
.filters h3 {
  color: var(--Base-Black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.filters h3 span {
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: inline-flex;
  margin-left: 10px;
  color: #fff;
  background-color: #9e77ed;
  font-size: 16px;
  font-style: normal;
  font-weight: 510;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.filters h3 span.svg {
  margin-left: auto;
  display: inline-flex;
  float: right;
  width: 24px;
  height: 24px;
  background-color: #d0d5dd;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.filters .filters-form {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.filters .filters-form > div {
  flex: 3;
}
.filters .filters-form > div:first-child {
  flex: 2;
}
.filters .cats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.filters .cats a {
  display: flex;
  padding: 7px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.05);
  color: var(--Base-Black, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.filters .cats a:hover {
  border-color: #101828;
}
.filters .cats a.active {
  color: #fff;
  background-color: #101828;
  border-color: #101828;
}
.filters .checkbox {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
}
.filters .checkbox label {
  color: var(--Base-Black, #000);
  font-family: "Noto Sans Georgian";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.filters input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 4.4px;
  border: 0.88px solid var(--Brand-600, #101828);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.filters input[type=checkbox]:checked {
  background-color: var(--Brand-600, #101828);
  border-color: var(--Brand-600, #101828);
}
.filters .default-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filters .default-filters select {
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  width: 100%;
  height: 44px;
  padding: 10px 8px;
}

.filders-submit {
  padding: 16px;
  display: flex;
  justify-content: center;
  gap: 26px;
}
.filders-submit .btn {
  padding: 16px 22px;
  font-size: 18px;
  font-style: normal;
  font-weight: 590;
  display: flex;
  gap: 10px;
  min-width: 195px;
}
.filders-submit .btn:nth-child(2) {
  color: var(--Gray-400, #98a2b3);
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.filders-submit .btn:nth-child(2):hover {
  color: #d92d20;
}
.filders-submit .btn:nth-child(2):hover svg path {
  stroke: #d92d20;
}

.tabs-content > div {
  transition: none;
  display: none;
}
.tabs-content > div.active {
  display: block;
}

.publication {
  display: flex;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--Gray-200, #e4e7ec);
  background: var(--Base-White, #fff);
  overflow: hidden;
  margin-bottom: 20px;
}
.publication > div:first-child {
  flex: 6;
}
.publication > div:first-child img {
  min-width: 500px;
  height: 321px;
}
.publication > div:first-child a {
  height: 321px;
}
.publication > div:last-child {
  flex: 9;
  padding: 24px;
}
.publication > div:last-child .time {
  color: var(--Brand-700, #6941c6);
  font-size: 14px;
  font-style: normal;
  font-weight: 590;
  line-height: 20px;
}
.publication > div:last-child h3 {
  color: var(--Gray-900, #101828);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 8px 0;
}
.publication > div:last-child .info {
  overflow: hidden;
  color: var(--Gray-600, #475467);
  text-overflow: ellipsis;
  font-family: "Noto Sans Georgian";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: 0.064px;
}
.publication img {
  max-width: 100%;
}
.publication a {
  display: block;
  width: 100%;
}

.tags {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.tags span {
  border-radius: 8px;
  border: 1px solid var(--Brand-200, #e9d7fe);
  background: var(--Brand-50, #f9f5ff);
  padding: 2px 10px;
  color: var(--Brand-700, #6941c6);
  text-align: center;
  /* პარაგრაფი - პატარა */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
}

.tabs-headline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(185, 185, 185, 0.3019607843);
  margin-left: 10%;
  margin-right: 10%;
}
.tabs-headline span {
  color: var(--Gray-600, #475467);
  font-size: 24px;
  font-style: normal;
  font-weight: 590;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
.tabs-headline span:before {
  content: "";
  background-color: #101828;
  border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  height: 2px;
  width: 0px;
  left: 0;
  transition: width 0.3s ease-in-out;
  bottom: -18px;
}
.tabs-headline span.active, .tabs-headline span:hover {
  color: #101828;
}
.tabs-headline span.active:before, .tabs-headline span:hover:before {
  width: 100%;
}

.biography div {
  padding: 16px 24px;
  border-radius: 5.34px 16.021px 16.021px 5.34px;
  border-left: 5px solid #101828;
  border-top: 2px solid var(--Gray-300, #d0d5dd);
  border-right: 2px solid var(--Gray-300, #d0d5dd);
  border-bottom: 2px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  margin-bottom: 25px;
}
.biography div h4 {
  color: var(--Base-Black, #000);
  font-family: "Noto Sans Georgian";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.biography div p {
  color: var(--Base-Black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.single-publication h1 {
  margin: 0;
  color: var(--Gray-900, #101828);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px; /* 114.583% */
  letter-spacing: 0.384px;
  text-transform: uppercase;
  text-align: center;
}
.single-publication .date {
  margin-bottom: 12px;
  display: block;
  color: var(--Gray-500, #667085);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 590;
  line-height: 24px;
}
.single-publication .expect {
  color: var(--Gray-600, #475467);
  text-align: center;
  /* პარაგრაფი - ჩვეულებრივი */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
  letter-spacing: 0.096px;
}
.single-publication .socials,
.single-publication .content,
.single-publication h1,
.single-publication .date,
.single-publication .expect,
.single-publication .tags {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.single-publication .tags {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.single-publication .img img {
  width: 100%;
  height: auto;
}

.footer-logo-text {
  color: #000;
  font-family: "Noto Sans Georgian";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 257px;
}

.footer-grey-bg {
  background: #f9fafb;
}
.footer-grey-bg h4 {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px; /* 150% */
}
.footer-grey-bg p {
  color: #475467;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.footer-grey-bg button {
  height: 44px;
  background: #f5ca44;
  padding: 0 16px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  box-shadow: 0px -2px 0px 0px rgba(16, 24, 40, 0.0509803922) inset;
  box-shadow: 0px 0px 0px 1px rgba(16, 24, 40, 0.1803921569) inset;
  border: 2px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  color: #000000;
  font-size: 14px;
}
.footer-grey-bg .input-container {
  min-width: 267px;
}
.footer-grey-bg .input-container input {
  border: 1px solid #d0d5dd !important;
  height: 44px;
  color: #d0d5dd;
  font-size: 16px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  border-radius: 8px;
}
.footer-grey-bg .input-container::placeholder,
.footer-grey-bg .input-container input::placeholder {
  color: #d0d5dd;
  font-size: 16px;
  opacity: 1;
}

.single-post-h5 {
  color: var(--Base-Black, #000);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  margin-bottom: 32px;
}

.single-post-rows {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.single-post-rows .publication > div:first-child {
  height: 240px !important;
  max-height: 240px;
}
.single-post-rows .publication {
  flex: 1;
  min-width: 30%;
  max-width: 32%;
  flex-direction: column;
  margin-bottom: 0;
  border: 0;
}
.single-post-rows .publication .tags {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.single-post-rows .publication > div:first-child a {
  height: auto;
  display: block;
  height: 240px !important;
}
.single-post-rows .publication > div.info, .single-post-rows .publication > div:first-child {
  flex: auto;
  padding: 0;
  text-align: left;
}
.single-post-rows .publication img {
  height: 240px !important;
  margin-bottom: 0px;
  width: 100%;
  min-width: 100% !important;
}
.single-post-rows .publication div:last-child h3 {
  color: var(--Gray-900, #101828);
  /* Display xs/Semibold */
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
.single-post-rows .publication p.info {
  overflow: hidden;
  max-height: 48px;
  overflow: hidden;
  color: var(--Gray-600, #475467);
  text-overflow: ellipsis;
  /* Text md/Regular */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.noology-header {
  height: 230px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.noology-header img {
  position: absolute;
  top: 75px;
  height: 288px;
  left: 50%;
  margin-left: -439px;
}
.noology-header h3 {
  font-size: 64px;
  font-weight: 700;
  line-height: 102.4px;
  text-align: center;
  text-decoration-skip-ink: none;
  color: #000;
}
.noology-header p {
  font-size: 24px;
  color: #475467;
  line-height: 34px;
}

.page-id-28 .noology-header img {
  transform: rotate(-36deg);
  height: 189px;
  top: 127px;
  margin-left: -429px;
}

.noology-footer {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  gap: 36px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: 32px;
}
.noology-footer a {
  background-color: #f5ca44;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-weight: 400;
  min-width: 200px;
  height: 60px;
  border: 1px solid;
  border-image-source: linear-gradient(182.8deg, #f3bd17 2.33%, rgba(245, 202, 68, 0) 50.82%);
  border-radius: 40px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}
.noology-footer a:hover {
  font-weight: 800;
}

.noology-body {
  background-color: #131316;
  padding: 80px 0;
}
.noology-body h3 {
  color: #f5ca44;
}
.noology-body .more {
  display: flex;
  color: var(--Base-White, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  gap: 10px;
  margin-top: 32px;
}
.noology-body .row {
  display: flex;
  gap: 32px;
  width: 100%;
}
.noology-body .row > div {
  flex: 3;
}
.noology-body .row > div img {
  width: 100%;
  height: auto;
}
.noology-body .row > div:first-child {
  flex: 2;
  min-width: 30%;
}
.noology-body .row > div:first-child h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 0;
}
.noology-body .row > div:first-child p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

section.faq {
  padding: 96px 0;
}
section.faq .faq-item {
  position: relative;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
section.faq .faq-item .faq-content {
  overflow: hidden;
  max-height: 0;
}
section.faq .faq-item h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.faq .faq-item.active .faq-content {
  max-height: none;
  margin-top: 12px;
}
section.faq .faq-item.active .title h3 img {
  transform: rotate(180deg);
}

img {
  object-fit: cover;
}

.home .our_missions {
  overflow: hidden;
}

.our_missions {
  position: relative;
}
.our_missions h2 {
  color: #000000;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 16px;
}
.our_missions .mission-slider .slick-slide {
  margin: 0 20px; /* 20px left and right = 40px gap total */
}
.our_missions .mission-slider .slick-list {
  margin: 0 -20px; /* counter the outer spacing */
}
.our_missions .slick-next,
.our_missions .slick-prev {
  position: absolute;
  right: 0;
  top: -64px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  background-image: url("../icons/slider-arrow.svg");
}
.our_missions .slick-prev {
  right: 64px;
}
.our_missions .slick-next {
  transform: rotate(180deg);
}
.our_missions .row {
  display: flex;
  justify-content: space-between;
}
.our_missions .row .faq-item {
  width: 100%;
  text-align: center;
}
.our_missions .row .faq-item h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
}
.our_missions .row .faq-item p {
  font-size: 20px;
  line-height: 28px;
  color: #475467;
  margin-top: 16px;
  letter-spacing: 0.4px;
  font-weight: 400;
}
.our_missions .row .faq-item img {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
}

.relative {
  position: relative;
}
.relative button {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 40px;
  background: var(--Foundation-CIPRF-Primary-1-200, #F7D364);
  padding: 10px;
  color: var(--Base-Black, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: 0;
}

article.difficult {
  display: inline-flex !important;
  border-radius: 10px;
  border: 1px solid var(--Gray-300, #D0D5DD);
  background: var(--Base-White, #FFF);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  gap: 8px;
  align-items: center;
  padding: 4px 10px;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  width: auto;
  margin-bottom: 16px;
}
article.difficult p {
  color: var(--Gray-700, #344054);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
}
article.difficult div {
  display: inline-flex;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #D0D5DD);
  background: var(--Base-White, #FFF);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  gap: 6px;
  padding: 2px 6px;
  min-width: 60px;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  color: var(--Gray-700, #344054);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}
article.difficult div span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #7ec441;
  border: 4px solid #e7fad0;
  padding: 0;
}
article.difficult div span.Medium {
  background-color: #df7037;
  border: 4px solid #faebd9;
}
article.difficult div span.Easy {
  background-color: #bf3e34;
  border: 4px solid #f7eaea;
}

footer .menu {
  flex: 1;
  margin-left: 64px;
}
footer .menu ul {
  width: 100%;
  justify-content: space-between;
}
footer .menu ul li {
  flex: 1;
}

.search-results-page {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 920px) {
  .single-post-rows .publication {
    min-width: 100%;
  }
  .publication div:last-child p.info {
    max-height: 54px;
  }
  .desertations .home-blog a {
    flex-direction: column;
    align-items: flex-start;
  }
  .desertations .home-blog a img {
    height: 240px !important;
    width: 100% !important;
  }
  .desertations .home-blog a h4 {
    color: var(--Gray-900, #101828);
    font-size: 16px;
    font-style: normal;
    font-weight: 590;
    line-height: normal;
  }
  .desertations .home-blog a p {
    overflow: hidden;
    color: var(--Gray-600, #475467);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .desertations .home-blog a span {
    color: #101828;
  }
  .footer-grey-bg .display-flex {
    flex-direction: column;
  }
  .footer-grey-bg .display-flex h4 {
    font-size: 16px;
    line-height: 28px;
  }
  .footer-grey-bg .display-flex button {
    width: 100%;
  }
  .footer-grey-bg .display-flex .display-flex {
    margin-top: 32px;
  }
  .main-footer .menu {
    margin-top: 48px;
    margin-left: 0;
  }
  .experts {
    gap: 20px;
  }
  .experts .img-container {
    height: 222px;
  }
  .experts .img-container span {
    border-radius: 0px 0px 10px 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1.5px);
    opacity: 1;
    padding: 10px;
    bottom: 0px;
    min-height: 54px;
  }
  footer {
    margin-top: 24px;
  }
  footer .copyright {
    text-align: center;
  }
  .news-subsc {
    margin: 24px 0 0 0;
  }
  .news-subsc p {
    color: var(--Brand-700, #6941c6);
    font-size: 16px;
    font-style: normal;
    font-weight: 590;
    line-height: 28px;
  }
  .news-subsc div {
    flex-direction: column;
  }
  .news-subsc div input {
    padding-left: 12px;
  }
  .menu {
    justify-content: left;
    margin: 16px 0 0 0;
  }
  .menu ul li a {
    color: var(--Gray-600, #475467);
    font-size: 16px;
    font-style: normal;
    font-weight: 590;
    line-height: 20px;
  }
  header .container > div > div {
    flex: auto;
  }
  .about-container img,
  header .container > div ul {
    display: none;
  }
  .home-blog a {
    align-items: center;
    gap: 8px;
  }
  .slick-dots {
    gap: 12px;
  }
  .about-container {
    margin-top: 16px;
  }
  .about-container p {
    font-size: 16px;
    font-weight: 400;
  }
  section h4,
  section h3 {
    font-size: 18px;
  }
  section h4 a {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 20px;
  }
  section {
    width: 100%;
    overflow: hidden;
  }
  .newest h5 {
    font-size: 22px;
    line-height: 26px;
  }
  footer .copyright,
  .main-footer,
  .about-container {
    display: block;
  }
  .newest,
  .home-blog {
    flex-direction: column;
  }
  body {
    font-size: 14px;
  }
  .slick-next,
  .slick-prev {
    width: 32px;
    height: 32px;
  }
  .news-slider .slick-next,
  .news-slider .slick-prev {
    top: -31px;
  }
  .news-slider .slick-prev {
    right: 40px;
  }
  header .container > div {
    display: block;
    padding: 0 16px;
  }
  header .container > div .logo,
  header .container > div a img {
    height: 40px;
    margin-right: 0px;
  }
  header .container > div > div {
    gap: 16px;
  }
  header .container > div > div .input-container {
    height: 32px;
  }
  header .container > div > div .input-container input {
    padding: 4px 10px 4px 34px;
    font-size: 12px;
  }
  header .container > div > div .input-container img {
    left: 8px;
    top: 4px;
  }
  header {
    display: block;
    width: 100%;
  }
  .hamburger .line {
    width: 24px;
    height: 2px;
    background-color: #0a1c57;
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-blog .big-post a {
    gap: 20px;
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  .home-blog .big-post a img {
    width: 120px;
    height: 120px;
    margin-bottom: 0px;
  }
  .single-blog {
    padding: 0;
  }
  .slick-slide {
    margin: 0 10px;
  }
  .home-blog .big-post span,
  .home-blog span {
    color: var(--Gray-500, #667085);
    text-edge: cap;
    font-size: 12px;
    font-style: normal;
    font-weight: 510;
    line-height: 20px;
  }
  .home-blog .big-post img,
  .home-blog img {
    height: 120px;
    width: 120px;
    object-fit: cover;
  }
  .home-blog .big-post h4,
  .home-blog h4 {
    font-size: 14px;
    line-height: 18px;
    margin: 4px 0 8px 0;
  }
  .home-blog .avatar {
    display: none;
  }
  .slick-slide .home-blog img {
    width: 100%;
    height: 240px;
  }
  .newest {
    gap: 8px;
    border-radius: 10px;
    border: 1px solid var(--Gray-300, #d0d5dd);
    background: var(--Base-White, #fff);
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    padding: 12px;
    min-height: 295px;
  }
  .newest div img {
    height: 164px;
    border-radius: 5px;
  }
  .newest .avatar {
    display: none;
  }
  .newest h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 8px 0;
  }
  .newest p {
    color: var(--Gray-600, #475467);
    font-size: 12px;
    line-height: 15px;
    height: 30px;
    overflow: hidden;
  }
  .news-slider .slick-arrow {
    display: none !important;
  }
  .slick-dots {
    width: 100dvw;
  }
  .hamburger.active .line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -o-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -o-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
  .header-menu {
    display: block !important;
    max-height: 0px;
    position: fixed;
    left: 0;
    top: 57px;
    background: #fff;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    background: var(--Brand-100, #f4ebff);
  }
  .header-menu.active ul {
    max-height: 200px;
  }
  .header-menu.active ul li {
    padding: 12px 20px;
    border-top: 0.5px solid #101828;
    border-bottom: 0.5px solid #101828;
  }
  .expert-details-content {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: 0.096px;
    margin-bottom: 32px;
  }
  .expert-details {
    margin-bottom: 24px;
    gap: 16px;
  }
  .expert-details > div > img {
    height: 200px;
  }
  .expert-details h1 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .expert-details h5 {
    color: #6c6c6c;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .expert-details h4 {
    color: #000;
    font-family: "Noto Sans Georgian";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
  }
  .tabs-headline {
    margin: 0 0 32px 0;
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .tabs-headline span {
    display: block;
    flex: 1;
    min-width: 45%;
    border-radius: 8.231px;
    border: 1px solid #101828;
    padding: 8px 16px;
    color: #b692f6;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .tabs-headline span:before {
    display: none;
  }
  .tabs-headline span.active {
    background: var(--Brand-600, #101828);
    color: #fff;
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
  }
  .biography div {
    padding: 16px;
    margin-bottom: 16px;
  }
  .biography div h4 {
    color: var(--Base-Black, #000);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
  }
  .biography div p {
    color: var(--Base-Black, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .publication {
    flex-direction: column;
    border: 0;
    margin-bottom: 28px;
  }
  .publication div:last-child {
    padding: 0;
    flex: auto;
  }
  .publication div:first-child {
    flex: auto;
  }
  .publication div:first-child a,
  .publication div:first-child img {
    height: 240px;
    width: 100%;
    min-width: 100%;
    border-radius: 16px;
  }
  .publication .info {
    padding: 0px;
  }
  .publication .time {
    padding-top: 20px;
  }
  .publication div:last-child h3 {
    color: var(--Gray-900, #101828);
    font-size: 16px;
    font-style: normal;
    font-weight: 590;
    line-height: normal;
    margin-bottom: 8px;
    margin-top: 4px;
  }
  .publication div:last-child p.info {
    overflow: hidden;
    color: var(--Gray-600, #475467);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 67px;
    white-space: normal;
    line-height: normal;
  }
  .publication .tags {
    display: none;
  }
  .filter-container {
    margin-left: 0;
    margin-right: 0;
  }
  .filter-container button {
    text-indent: -99999px;
    height: 36px;
    min-width: 44px;
    width: 44px;
    padding: 0;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .filter-container .input-container {
    height: 36px;
  }
  .filter-container .input-container input {
    padding-top: 2px;
    padding-bottom: 2px;
    color: var(--Gray-600, #475467);
    font-size: 12px;
    padding-left: 36px;
  }
  .filter-container .input-container img {
    left: 10px;
    top: 7px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
    margin-top: 16px;
  }
  .filters {
    margin-left: 0;
    margin-right: 0;
  }
  .filters.active {
    max-height: 1250px;
    display: flex;
    flex-direction: column-reverse;
    width: 99%;
    overflow: hidden;
  }
  .filters .filders-submit {
    padding: 0;
    gap: 24px;
    justify-content: space-between;
    border-bottom: 1px solid var(--Gray-500, #667085);
    padding-bottom: 8px;
    margin-bottom: 24px;
  }
  .filters .filders-submit button {
    min-width: auto;
    padding: 10px 14px;
    font-size: 14px;
    font-style: normal;
    font-weight: 590;
    line-height: 20px;
    border: 0;
    width: 144px;
    height: 40px;
  }
  .filters .filders-submit button svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  .filters .filters-form {
    flex-direction: column;
    gap: 24px;
  }
  .filters .filters-form h3 {
    color: var(--Base-Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
  }
  .filters .filters-form select {
    width: 80%;
  }
  .single-publication .date {
    color: var(--Gray-500, #667085);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 590;
    line-height: 24px;
  }
  .single-publication h1 {
    color: var(--Gray-900, #101828);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.16px;
    text-transform: uppercase;
  }
  .single-publication .tags {
    flex-wrap: wrap;
  }
  .single-publication .expect {
    color: var(--Gray-600, #475467);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 175% */
    letter-spacing: 0.072px;
  }
}
section.faq .faq-item {
  position: relative;
}
section.faq .faq-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #131316;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
section.faq .faq-item.active p,
section.faq .faq-item.active h3, section.faq .faq-item:hover p,
section.faq .faq-item:hover h3 {
  color: #fff;
}
section.faq .faq-item.active rect, section.faq .faq-item:hover rect {
  stroke: #fff;
}
section.faq .faq-item.active g path, section.faq .faq-item:hover g path {
  fill: #fff;
}

section.faq .faq-item.active::before,
section.faq .faq-item:hover::before {
  width: 100%;
}

.similar-books h5.author {
  color: var(--Base-Black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  min-height: 20px;
  margin-top: -16px;
}
.similar-books h4 {
  margin: 64px 0 40px 0;
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.similar-books h4 a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--Base-Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 510;
  line-height: normal;
  letter-spacing: 0.32px;
}
.similar-books .slick-next:hover,
.similar-books .slick-prev:hover {
  border-color: transparent !important;
  border-width: 0 !important;
  background-color: transparent !important;
}
.similar-books .slick-dots {
  align-items: center;
}
.similar-books .slick-next,
.similar-books .slick-prev {
  background-image: url("../icons/bookleft.svg");
  border-color: transparent !important;
  border-width: 0 !important;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}
.similar-books .slick-next {
  transform: rotate(180deg);
}
.similar-books .slick-slide {
  margin: 0 20px; /* 20px left and right = 40px gap total */
}
.similar-books .slick-list {
  margin: 0 -20px; /* counter the outer spacing */
}
.similar-books .slick-dots {
  gap: 16px;
}
.similar-books .slick-dots li {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: 1px solid var(--Base-Black, #000);
}
.similar-books .slick-dots li:hover, .similar-books .slick-dots li.slick-active {
  background-color: #000;
}
.similar-books .single-slide-book {
  height: 650px;
  padding: 28px;
  background: var(--Gray-200, #e4e7ec);
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}
.similar-books .single-slide-book img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.similar-books .single-slide-book h5 {
  margin: 0;
  color: var(--Gray-900, #101828);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.similar-books .single-slide-book .cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.similar-books .single-slide-book .cats span {
  border-radius: 16px;
  border: 1px solid var(--Brand-200, #e9d7fe);
  background: var(--Brand-50, #f9f5ff);
  height: 36px;
  color: var(--Gray-blue-700, #363f72);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
}

.issue-navigation {
  display: flex;
  margin-top: 48px;
  margin-bottom: 64px;
  gap: 32px;
  display: flex;
  align-items: center;
}
.issue-navigation > a {
  border-radius: 8px;
  border: 1px solid var(--Gray-600, #475467);
  background: var(--Gray-100, #f2f4f7);
  display: flex;
  padding: 10px;
  gap: 10px;
  align-items: center;
  color: var(--Gray-600, #475467);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  min-width: 175px;
  user-select: none;
  cursor: pointer;
}
.issue-navigation > a:nth-child(3) {
  padding-left: 20px;
}
.issue-navigation .cat-content {
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Gray-200, #e4e7ec);
  flex: 1;
  display: flex;
  padding: 10px;
  gap: 24px;
  align-items: center;
}
.issue-navigation .cat-content p.choose {
  color: var(--Gray-600, #475467);
  margin-bottom: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 214.286% */
}
.issue-navigation .cat-content .responsive {
  position: relative;
}
.issue-navigation .cat-content .responsive svg {
  position: absolute;
  top: 8px;
  right: 6px;
}
.issue-navigation .cat-content select {
  border-radius: 24px;
  border: 1.5px solid var(--Foundation-CIPRF-Primary-1-300, #f5ca44);
  background: var(--Foundation-CIPRF-Primary-1-50, #fefaec);
  width: 172px;
  height: 42px;
  padding: 6px 14px;
  color: var(--Foundation-CIPRF-Primary-1-400, #ac8d30);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 142.857% */
  appearance: none; /* Standard */
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none; /* Firefox */
}
.issue-navigation .cat-content .info {
  flex: 1;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: #fff;
  height: 92px;
  padding: 16px;
}
.issue-navigation .cat-content .info h6 {
  margin-top: 6px;
  color: var(--Gray-900, #101828);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.4px;
}
.issue-navigation .cat-content .row {
  display: flex;
  justify-content: space-between;
}
.issue-navigation .cat-content .row span {
  color: var(--Gray-600, #475467);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}

.home-blog article {
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}

.slider.similar-books {
  overflow: hidden;
}

.home-blog h4 em {
  position: relative;
  max-width: 90%;
  font-style: normal;
}
.home-blog h4 em::before {
  content: "";
  width: 0px;
  height: 2px;
  background-color: #f5ca44;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}

.home-blog a:hover h4 em::before {
  width: 100%;
}

.voc-videos .videos {
  flex-wrap: wrap;
}

.burger,
.mobile-menu,
.mobile-menu-container,
.header-search-mobile {
  display: none;
}

@media (max-width: 992px) {
  .slider-hero .hero-slide {
    min-height: 300px;
  }
  .slider {
    width: 100%;
    overflow: hidden;
  }
  .header-menu.active ul {
    max-height: 500px;
    margin-bottom: 32px;
  }
  .header-menu.active ul li {
    min-height: 37px;
    padding: 0;
    border: 0;
    height: auto;
  }
  .header-menu.active ul li a {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
  }
  .header-menu.active ul li .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    padding: 0;
    background-color: transparent;
    pointer-events: all;
    opacity: 1;
    max-height: fit-content;
    margin-bottom: 0;
    border-top: 1px solid #d0d5dd;
    border-bottom: 1px solid #d0d5dd;
  }
  .mobile-menu-container {
    background-color: #131316;
    text-align: center;
    display: block;
  }
  .mobile-menu-container .main-pages {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
    align-items: center;
  }
  .mobile-menu-container .main-pages a {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    height: 28px;
  }
  .mobile-menu-container .main-pages a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  .mobile-menu-container .mobile-menu-container-noology {
    background-color: #f5ca44;
    padding: 16px 0;
  }
  .mobile-menu-container .mobile-menu-container-noology h3 a {
    display: inline-block;
    height: 43px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin-bottom: 16px;
  }
  .mobile-menu-container .mobile-menu-container-noology h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
  }
  .mobile-menu-container .mobile-menu-container-noology a {
    display: block;
    height: 38px;
    line-height: 33px;
    font-weight: 400;
    font-size: 14px;
    color: #101828;
  }
  .mobile-menu-container .knowledge-portal {
    display: flex;
    text-align: center;
    height: 44px;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu-container .knowledge-portal h2 {
    margin: 0;
    color: #f5ca44;
    font-size: 16px;
    font-weight: 700;
  }
  header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header-menu {
    background-color: #fff;
    top: 80px;
  }
  header .header-menu.active {
    max-height: calc(100dvh - 80px);
    z-index: 13;
    overflow: auto;
  }
  header .header-menu.active ul {
    display: block;
  }
  header .header-menu li {
    height: 37px;
    line-height: 37px;
    margin: 4px 0;
    text-align: center;
  }
  header .header-menu li a {
    color: #000;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
  }
  header .container > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .align-items-center {
    display: none;
  }
  header .logo {
    display: block;
  }
  header .container div.burger {
    display: flex;
    flex-direction: column;
    width: 24px;
    max-width: 24px;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    align-items: end;
  }
  header .container div.burger span {
    width: 100%;
    height: 2px;
    background-color: #f5ca44;
  }
  header .container div.burger span:nth-child(3) {
    width: 70%;
  }
  footer .footer-menu {
    flex-wrap: wrap;
    height: auto;
    gap: 26px;
    padding: 20px;
    justify-content: flex-start;
  }
  footer .copyright .socials {
    justify-content: center;
    margin: 24px 0;
  }
  footer .menu ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #667085;
  }
  .footer-grey-bg #email-form {
    display: flex;
    flex-direction: row;
  }
  .footer-grey-bg #email-form .input-container {
    flex: 1;
    min-width: 65%;
  }
  .our_missions h2 {
    font-size: 18px;
  }
  .our_missions .slick-next,
  .our_missions .slick-prev {
    width: 36px;
    height: 36px;
    top: -56px;
  }
  .our_missions .row {
    gap: 40px;
  }
  .our_missions .row .faq-item {
    min-width: 70dvw;
  }
  .our_missions .row .faq-item img {
    margin-bottom: 32px;
    height: 320px;
  }
  .our_missions .row .faq-item h3 {
    font-size: 16px;
  }
  .our_missions .row .faq-item p {
    font-size: 16px;
    margin-top: 8px;
  }
  .blog-slider > div {
    min-width: 100%;
    max-width: 100%;
  }
  .blog-slider > div a.single-blog {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .blog-slider > div a.single-blog img {
    margin-bottom: 0;
  }
  .blog-slider > div a.single-blog span {
    line-height: 16px;
    font-weight: 400;
    order: 2;
  }
  .blog-slider > div a.single-blog h4 {
    font-size: 16px !important;
    line-height: 22px !important;
    margin: 0;
  }
  .blog-slider > div a.single-blog p {
    font-size: 12px;
    font-weight: 400;
  }
  section.noology .noology-header {
    height: 160px;
  }
  section.noology .noology-header img {
    display: none;
  }
  section.noology .noology-header h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 46px;
    letter-spacing: 0%;
    text-align: center;
  }
  section.noology .noology-header p {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: 19px;
    padding: 0 20px;
  }
  section.noology .noology-body {
    padding: 32px 0;
  }
  section.noology .noology-body .row {
    flex-direction: column-reverse;
    gap: 20px;
    padding-top: 60px;
    position: relative;
  }
  section.noology .noology-body .row h3 {
    position: absolute;
    font-size: 32px;
    margin: 0;
    top: 0;
    left: 0;
    line-height: 38px;
  }
  section.noology .noology-body .row img {
    height: 280px;
    object-fit: cover;
  }
  section.noology .noology-body .row p {
    font-size: 14px;
    line-height: 22px;
  }
  section.noology .noology-footer {
    padding: 32px 0;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  section.noology .noology-footer a {
    height: 35px;
    font-size: 12px;
    min-width: fit-content;
    padding: 0 10px;
    font-weight: 600;
  }
  .home-blog a {
    gap: 20px;
  }
  .home-blog p {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #344054;
  }
  .home-blog div,
  .home-blog .big-post div {
    margin-top: 0;
    gap: 6px;
  }
  .home-blog div span,
  .home-blog .big-post div span {
    line-height: 16px;
    order: 3;
  }
  .home-blog div h4 {
    margin-bottom: 8px;
  }
  .home-blog .big-post h4,
  .home-blog h4 {
    margin: 0;
  }
  .hero {
    padding-top: 8px;
    background-color: #131316;
  }
  .hero .hero-slide {
    border: 1px solid #f5ca44;
    background-color: #131316;
    padding: 12px;
  }
  .hero .hero-slide img {
    height: 160px;
  }
  .hero .hero-slide .hero-slide-info {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    bottom: auto;
    margin-top: 12px;
  }
  .hero .hero-slide .hero-slide-info h3 {
    font-size: 16px;
    line-height: 19px;
  }
  .hero .hero-slide .hero-slide-info p {
    color: #d0d5dd;
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
  .hero .news-slider .slick-dots li {
    width: 12px;
    height: 12px;
  }
  .hero .news-slider .slick-dots {
    height: 54px;
    margin: 0;
  }
  .big-image div {
    left: 0;
    width: 100%;
    padding: 20px;
    bottom: 0;
  }
  .header-search-mobile {
    position: absolute;
    display: block;
    width: 170px;
    height: 37px;
    top: 21px;
    left: 50%;
    z-index: 4;
    margin-left: -81px;
  }
  .header-search-mobile input {
    width: 101%;
    height: 36px;
    outline: none;
    border: 1px solid #ffffff;
    padding: 2px 10px;
    background: transparent;
  }
  section.faq {
    padding: 0;
    margin: 16px 0;
  }
  section.faq .faq-content p {
    font-size: 12px;
    font-weight: 200;
  }
  section.faq .faq-item {
    padding: 12px;
    background-color: #000000;
    margin-bottom: 0;
  }
  section.faq .faq-item h3 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #fff;
  }
  .papers-list {
    padding: 0;
  }
  .papers-list-container {
    flex-direction: column;
  }
  .mobile-menu {
    display: flex;
  }
  .page-template-tpl-noology .faq.faq-new {
    background-color: transparent;
  }
  .page-template-tpl-noology .faq.faq-new .faq-item {
    padding: 20px;
    flex-direction: row-reverse;
    display: flex;
    gap: 4px;
  }
  .page-template-tpl-noology .faq.faq-new .faq-item svg {
    min-width: 24px;
    height: 24px;
  }
  .page-template-tpl-noology .faq.faq-new .faq-content p {
    color: var(--Gray-600, #475467);
    font-size: 16px;
  }
  .page-template-tpl-noology .faq.faq-new h3 {
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 28px !important;
  }
  .page-template-tpl-noology .noology-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .page-template-tpl-noology .noology-footer a {
    font-size: 12px;
    height: 35px;
    padding: 0 10px;
    min-width: auto;
  }
  .page-template-tpl-noology .noology-description {
    padding: 20px 4px;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  .page-template-tpl-noology .container {
    flex-direction: column-reverse;
  }
  .page-template-tpl-noology .container img {
    height: auto !important;
  }
  .page-template-tpl-noology .container div:first-child h3 {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .page-template-tpl-noology .container div:first-child p {
    font-size: 14px;
  }
  .page-template-tpl-noology .about-work-group {
    flex-direction: column;
  }
  .page-template-tpl-noology .hero {
    padding-left: 0;
  }
  .page-template-tpl-noology .hero .hero-slide {
    border: 0;
  }
  .page-template-tpl-noology .noology-search h3 {
    font-size: 20px !important;
  }
  .page-template-tpl-noology .noology-search .noology-search-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .page-template-tpl-noology .noology-search .noology-search-buttons a {
    min-width: 136px;
    height: 40px;
    font-size: 14px;
    text-align: center;
  }
  .voc-videos .videos .player-wrapper:first-child {
    min-width: 100%;
    max-width: 100%;
    min-height: 250px;
  }
  .voc-videos .videos .player-wrapper:first-child iframe {
    height: 250px;
  }
  .single-book .single-book {
    flex-direction: column;
    gap: 16px;
    padding: 12px;
  }
  .single-book .single-book .info {
    flex-direction: column;
  }
  .single-book .single-book .info > div img {
    height: auto;
  }
  .voc-title {
    gap: 16px;
    align-items: center;
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.show-mobile {
  display: none;
}

@media (max-width: 992px) {
  .issue-navigation {
    flex-direction: column;
    margin-bottom: 48px;
    align-items: baseline;
    gap: 12px;
    position: relative;
  }
  .issue-navigation > a {
    border-radius: 8px;
    background: var(--Gray-100, #F2F4F7);
    gap: 4px;
    color: var(--Base-Black, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    height: 32px;
    border: 0;
    min-width: auto;
  }
  .issue-navigation > a:nth-child(3) {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 150px;
  }
  .issue-navigation .cat-content {
    padding: 8px;
    gap: 16px;
  }
  .issue-navigation .cat-content .info {
    padding: 8px;
    height: 72px;
  }
  .issue-navigation .cat-content .info .row span {
    color: var(--Gray-500, #667085);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
  }
  .issue-navigation .cat-content .info h6 {
    color: var(--Gray-900, #101828);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-top: 0px;
  }
  .issue-navigation .cat-content p.choose {
    color: var(--Gray-600, #475467);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14.458px; /* 120.486% */
    max-width: 96px;
    margin-bottom: 8px;
    word-wrap: break-word;
  }
  .issue-navigation .cat-content select {
    width: 114px;
    height: 33px;
    color: var(--Foundation-CIPRF-Primary-1-400, #AC8D30);
    line-height: normal;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    border-radius: 11.567px;
    border: 0.723px solid var(--Foundation-CIPRF-Primary-1-300, #F5CA44);
    background: var(--Foundation-CIPRF-Primary-1-50, #FEFAEC);
    padding: 4px;
  }
  .issue-navigation .cat-content .responsive svg {
    width: 22px;
    top: 5px;
  }
  .similar-books .single-slide-book {
    padding: 27px;
    margin-bottom: 20px;
  }
  .single-issue-slider h4 {
    font-size: 20px;
  }
  .voc-videos .videos,
  .single-issue-gallery.videos,
  .single-contents .row {
    flex-direction: column;
  }
  .important-notes-container {
    width: 96dvw;
  }
  .important-notes-container .news-slider {
    width: 100%;
  }
  .single-issue-gallery.videos a {
    min-width: 100% !important;
    max-width: 100%;
    height: auto !important;
  }
  .single-issue-slider {
    overflow: hidden;
    width: 100%;
  }
  .single-issue-cont h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .show-mobile {
    display: block;
  }
  .black-line {
    display: none;
  }
  .main-issues-list .row a {
    min-width: 100%;
    max-width: 100%;
  }
  .main-issues h1 {
    font-size: 20px;
    line-height: 24px;
  }
  .main-issues p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .main-issues .search-container {
    width: 100%;
  }
  .main-issues .issues-cats {
    margin-top: 24px;
  }
  .main-issues .issues-cats a {
    padding: 0 12px;
    height: 32px;
    font-size: 16px;
  }
  .main-issues-list a img {
    height: 240px;
  }
  .main-issues-list a div {
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .contact-page {
    padding: 64px 16px;
  }
  .contact-page h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .contact-page h1 {
    font-size: 14px;
  }
  .contact-page h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-page .form {
    padding-top: 0px;
  }
  .contact-page .form form .row {
    flex-direction: column;
    gap: 16px;
  }
  .contact-page .contact-items {
    margin: 64px 0;
    flex-wrap: wrap;
    gap: 48px;
  }
  .contact-page .contact-items > div {
    min-width: 100%;
  }
  .teams-page h1 {
    margin: 64px 0;
    font-size: 30px;
    line-height: 38px;
  }
  .experts {
    gap: 48px;
  }
  .experts > div {
    min-width: 100%;
    max-width: 100%;
  }
  .experts h3 {
    margin: 0 0 24px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #f5ca44;
  }
  .experts h2 {
    font-size: 18px;
  }
  .global-header {
    padding: 24px 0;
  }
  .global-header h1 {
    font-size: 20px;
    line-height: 24px;
  }
  .global-header p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 10px;
    margin-bottom: 24px;
  }
  .global-header form {
    width: 100%;
  }
  .vocabulery-page .alfas {
    flex-direction: column;
    width: 19px;
    position: absolute;
    top: 410px;
    right: 0;
  }
  .vocabulery-page .alfas span {
    font-size: 11px;
    font-weight: 400;
    height: 20px;
  }
  .vocabulery-page .term-item {
    width: 95%;
    gap: 24px;
  }
  .vocabulery-page .term-item h3 {
    font-size: 20px;
  }
  .vocabulery-page .term-item p {
    font-size: 16px;
  }
  .books-page {
    margin-top: 20px;
  }
  .books-page .books {
    gap: 24px;
  }
  .books-page .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
  }
  .books-page .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .books-page .categories {
    position: fixed;
    left: -100dvw;
    width: 84dvw;
    height: 100dvh;
    top: 0%;
    overflow: auto;
    background-color: #fff;
    z-index: 2;
  }
  .books-page .categories.active {
    left: 0;
  }
  .books-page .books a {
    width: 100%;
    min-width: 100%;
    padding: 30px;
  }
  .books-page .books a img {
    width: 100%;
  }
  .books-page .books a p {
    display: none;
  }
  .books-page .books a .cats {
    justify-content: center;
  }
  .breadcrumbs {
    display: none;
  }
  .about .hero {
    padding-left: 0;
  }
  .about .hero .info p {
    font-size: 16px;
    line-height: 24px;
  }
  .about .hero .info h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .about-info-text {
    display: none;
  }
  .about-info .info-item {
    flex-direction: column !important;
    margin-bottom: 24px;
    margin-top: 12px;
  }
  .about-info .info-item > div {
    padding: 0 !important;
  }
  .about-info .info-item p {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
  .about-info .info-item h4 {
    justify-content: center;
    gap: 16px;
    font-size: 24px;
    margin-bottom: 4px;
  }
  .about-info .info-item h4 img {
    height: 56px;
  }
  .about-timeline-title,
  .about-timeline-title {
    font-size: 30px;
    line-height: 30px;
    margin-top: 48px;
    margin-bottom: 16px;
  }
  .about-team .experts {
    padding: 0 16px;
    gap: 18px;
  }
  .about-timeline .timeline-item {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }
  .about-timeline .timeline-item .round-container {
    height: 140px;
    align-items: baseline;
    position: relative;
  }
  .about-timeline .timeline-item .round-container span {
    position: absolute;
    bottom: 0;
    left: 50%;
    border: 0;
    transform: translateX(-50%);
    padding: 0;
  }
  .about-timeline .timeline-item .round {
    width: 33px;
    height: 33px;
    position: relative;
  }
  .about-timeline .timeline-item .round::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 72px;
    background-color: #D0D5DD;
    top: 130%;
  }
  .about-timeline .timeline-item .round em {
    width: 9px;
    height: 9px;
  }
  .about-timeline .timeline-item .info {
    height: auto;
    gap: 8px;
    padding: 0;
  }
  .about-timeline .timeline-item .info h4 {
    font-size: 21px;
    line-height: 100%;
  }
  .about-timeline .timeline-item .info p {
    font-size: 14px;
  }
  .about-work .about-work-info h3 {
    font-size: 24px;
    margin-bottom: 0px;
  }
  .about-work-group {
    border: 0;
    flex-direction: column;
    padding: 0 !important;
  }
  .about-work-group .title .faq-item {
    background: #000000;
    text-align: left;
    padding: 16px 20px;
  }
  .about-work-group .title .faq-item h4 {
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-work-group .title .faq-item h4 svg {
    display: inline-block;
  }
  .about-work-group .faq-item-content {
    font-size: 14px;
    line-height: 18px;
  }
  .single-issue-cont {
    margin-top: 32px;
  }
  .single-paper-container {
    margin: 46px 0;
    padding: 0;
  }
  .single-paper-container .row {
    flex-direction: column-reverse;
  }
  .single-paper-container .row .content {
    margin: 0 16px;
  }
  .single-paper-container .row .cat-right {
    min-width: 100%;
    max-width: 100%;
  }
  .single-paper-container .row .pdf {
    margin: 0 auto;
  }
  .single-issue-cont img {
    height: auto;
  }
  .single-blog main {
    max-width: 120px;
    height: auto;
    margin-bottom: 0;
  }
  .header-search-mobile input {
    color: #fff;
  }
  .issue-navigation .cat-content .info h6 {
    font-size: 10px !important;
  }
  .similar-books .slick-slide {
    margin: 0 4px;
  }
  .single-contents .main-content img {
    margin: 16px 0;
  }
  .voc-videos .videos .player-wrapper {
    min-width: 100%;
    max-width: 100%;
    min-height: 284px;
  }
  footer .menu ul {
    padding-right: 5px;
    gap: 8px;
  }
  .home-blog article {
    display: none;
  }
  body.fixed-body {
    height: 100%;
    overflow: hidden;
  }
  .main-issues-list .row a h4 {
    font-size: 20px !important;
    margin-bottom: 8px;
  }
  .slider-hero .slick-list {
    max-height: 305px;
  }
  .slider-hero > .slick {
    max-height: 358px;
  }
}

/*# sourceMappingURL=style.css.map */
