@font-face {
  font-family: "CoFo Sans";
  src: url("/fonts/CoFoSans-Bold.eot");
  src: local("CoFo Sans"), local("CoFoSans-Bold"), url("/fonts/CoFoSans-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/CoFoSans-Bold.woff2") format("woff2"), url("/fonts/CoFoSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "CoFo Sans";
  src: url("/fonts/CoFoSans-Regular.eot");
  src: local("CoFo Sans"), local("CoFoSans-Regular"), url("/fonts/CoFoSans-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/CoFoSans-Regular.woff2") format("woff2"), url("/fonts/CoFoSans-Regular.woff") format("woff"), url("/fonts/CoFoSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

.word-of-the-year {
  font-family: "CoFo Sans";
  color: #303030;
  background-color: #f5f5ee;
}
.word-of-the-year .container {
  max-width: 1384px;
  margin: auto;
}
@media (max-width: 1138px) {
  .word-of-the-year .container {
    padding: 0 16px;
  }
}
.word-of-the-year .sm-container {
  max-width: 1138px;
  margin: 0 auto;
}
.word-of-the-year h2 {
  font-size: 40px;
  line-height: 44px;
  margin: 0 0 32px 0;
}
@media (max-width: 600px) {
  .word-of-the-year h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 0 0 16px 0;
  }
}
.word-of-the-year .top {
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
@media (max-width: 600px) {
  .word-of-the-year .top {
    height: auto;
    padding-top: 16px;
    align-items: end;
  }
}
.word-of-the-year .top .left-group {
  display: flex;
  justify-content: start;
  gap: 18px;
}
.word-of-the-year .top .year-selector {
  display: inline-flex;
  height: 52px;
  padding: 0 8px 0 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
@media (max-width: 600px) {
  .word-of-the-year .top .year-selector {
    padding: 0 8px 0 8px;
    gap: 8px;
    height: 36px;
  }
}
.word-of-the-year .top .year-selector__arrow {
  position: absolute;
  left: -9px;
  top: 16px;
}
@media (max-width: 600px) {
  .word-of-the-year .top .year-selector__arrow {
    top: 10px;
  }
}
.word-of-the-year .top .year-selector__value {
  color: var(--Grey-Black, #303030);
  /* Headers/22-28 bold new */
  font-family: "CoFo Sans";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 112% */
}
@media (max-width: 600px) {
  .word-of-the-year .top .year-selector__value {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 112% */
  }
}
.word-of-the-year .top .year-selector__btn {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  background: #ffe350;
  transition: transform 0.2s ease;
}
@media (max-width: 600px) {
  .word-of-the-year .top .year-selector__btn {
    padding: 11px;
  }
  .word-of-the-year .top .year-selector__btn svg {
    width: 12px;
    height: 6px;
  }
}
.word-of-the-year .top .year-selector__btn.active {
  transform: rotate(180deg);
}
.word-of-the-year .top .year-selector__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.word-of-the-year .top .year-selector__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.word-of-the-year .top .year-selector__option {
  padding: 12px 24px;
  font-family: "CoFo Sans";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #303030;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (max-width: 600px) {
  .word-of-the-year .top .year-selector__option {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 112% */
  }
}
.word-of-the-year .top .year-selector__option:hover {
  background-color: #f5f5ee;
}
.word-of-the-year .top .year-selector__option:first-child {
  border-radius: 10px 10px 0 0;
}
.word-of-the-year .top .year-selector__option:last-child {
  border-radius: 0 0 10px 10px;
}
.word-of-the-year .top .logo {
  align-self: bottom;
}
@media (max-width: 600px) {
  .word-of-the-year .top .logo img {
    height: 36px;
    width: auto;
  }
}
.word-of-the-year .top .menu ul {
  display: flex;
  justify-content: end;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.word-of-the-year .top .menu ul li a {
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
  color: #303030;
}
@media (max-width: 1100px) {
  .word-of-the-year .top .menu {
    display: none;
  }
}
.word-of-the-year .hero {
  margin-top: 52px;
  background-color: #fff;
  border-radius: 32px;
  padding: 80px 120px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .word-of-the-year .hero {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .word-of-the-year .hero {
    margin-top: 16px;
    padding: 16px;
  }
}
.word-of-the-year .hero h1 {
  font-weight: 700;
  font-size: 76px;
  line-height: 64px;
  margin: 0;
  padding: 0;
}
.word-of-the-year .hero h1 span {
  color: #e87465;
}
@media (max-width: 800px) {
  .word-of-the-year .hero h1 {
    font-size: 37px;
    line-height: 38px;
  }
}
.word-of-the-year .hero .texts {
  max-width: 527px;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1100px) {
  .word-of-the-year .hero .texts {
    max-width: 100%;
  }
}
.word-of-the-year .hero .texts p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 28px;
}
.word-of-the-year .hero .texts p a {
  color: #067a4d;
  text-decoration: none;
}
@media (max-width: 800px) {
  .word-of-the-year .hero .texts p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .word-of-the-year .hero .img {
    margin: 8px auto 0 auto;
  }
  .word-of-the-year .hero .img img {
    width: 100%;
    height: auto;
  }
}
.word-of-the-year .criteria {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .word-of-the-year .criteria {
    margin-top: 16px;
  }
}
.word-of-the-year .criteria__parts {
  display: flex;
  gap: 16px;
  justify-content: start;
}
@media (max-width: 1138px) {
  .word-of-the-year .criteria__parts {
    flex-wrap: wrap;
  }
}
.word-of-the-year .criteria__part {
  background-color: #fff;
  padding: 24px;
  flex: 0 0 272px;
  border-radius: 16px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .word-of-the-year .criteria__part {
    padding: 16px;
    min-width: 163px;
    flex: 0 0 calc(50% - 8px);
  }
}
.word-of-the-year .criteria__part h3 {
  font-size: 27px;
  line-height: 36px;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .word-of-the-year .criteria__part h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
.word-of-the-year .criteria__part p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 600px) {
  .word-of-the-year .criteria__part p {
    font-size: 15px;
    line-height: 20px;
  }
}
.word-of-the-year .steps {
  margin-top: 56px;
}
@media (max-width: 600px) {
  .word-of-the-year .steps {
    margin-top: 16px;
  }
}
.word-of-the-year .steps .img {
  width: 100%;
  text-align: center;
  margin: 32px auto;
}
.word-of-the-year .steps .img img {
  max-width: 100%;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .img {
    margin: 16px auto;
  }
  .word-of-the-year .steps .img img {
    max-width: 163px;
  }
}
.word-of-the-year .steps .steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .steps-list {
    flex-direction: column;
    gap: 16px;
  }
}
.word-of-the-year .steps .steps-list__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex: 0 0 338px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .steps-list__step {
    gap: 8px;
    flex: 0 0 auto;
  }
}
.word-of-the-year .steps .steps-list__step img {
  max-width: 145px;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .steps-list__step img {
    max-width: 100px;
  }
}
.word-of-the-year .steps .steps-list__step h3 {
  margin: 0;
  padding: 0;
  font-size: 27px;
  line-height: 36px;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .steps-list__step h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
.word-of-the-year .steps .steps-list__step p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .steps-list__step p {
    font-size: 15px;
    line-height: 20px;
  }
}
.word-of-the-year .steps .steps-list__arrow {
  display: flex;
  align-items: center;
}
.word-of-the-year .steps .steps-list__arrow .arrow-down {
  display: none;
}
@media (max-width: 600px) {
  .word-of-the-year .steps .steps-list__arrow {
    margin-bottom: 16px;
  }
  .word-of-the-year .steps .steps-list__arrow .arrow-down {
    display: block;
    margin: auto;
  }
  .word-of-the-year .steps .steps-list__arrow .arrow-right {
    display: none;
  }
}
.word-of-the-year .how-select {
  margin-top: 56px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: start;
  gap: 32px;
}
@media (max-width: 600px) {
  .word-of-the-year .how-select {
    flex-wrap: wrap;
    padding: 16px;
    gap: 8px;
  }
}
.word-of-the-year .how-select h2 {
  flex: 0 0 349px;
}
@media (max-width: 600px) {
  .word-of-the-year .how-select h2 {
    flex: 0 0 auto;
    margin-bottom: 0;
    max-width: 90%;
  }
}
.word-of-the-year .how-select p {
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 600px) {
  .word-of-the-year .how-select p {
    font-size: 15px;
    line-height: 20px;
  }
}
.word-of-the-year .how-select p a {
  margin-top: 8px;
  color: #067a4d;
  gap: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.word-of-the-year .shortlist {
  margin-top: 56px;
  /* the slides */
  /* the parent */
}
.word-of-the-year .shortlist:hover .slider-container__left-btn,
.word-of-the-year .shortlist:hover .slider-container__right-btn {
  opacity: 1;
}
.word-of-the-year .shortlist .slick-slide {
  margin: 0 8px;
  height: 760px;
  box-sizing: border-box;
}
.word-of-the-year .shortlist .slick-list {
  margin: 0 -8px;
  padding: 0 20% 0 0 !important;
}
.word-of-the-year .shortlist .slider-container {
  width: 100%;
  position: relative;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.word-of-the-year .shortlist .slider-container::-webkit-scrollbar {
  display: none;
}
@media (max-width: 565px) {
  .word-of-the-year .shortlist .slider-container {
    overflow-x: scroll;
  }
}
.word-of-the-year .shortlist .slider-container__left-btn {
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  top: calc(50% - 30px);
  left: -30px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  box-shadow: 5px 5px 20px rgba(48, 48, 48, 0.1);
  cursor: pointer;
}
@media (max-width: 600px) {
  .word-of-the-year .shortlist .slider-container__left-btn {
    display: none;
  }
}
.word-of-the-year .shortlist .slider-container__right-btn {
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  top: calc(50% - 30px);
  right: -30px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  box-shadow: 5px 5px 20px rgba(48, 48, 48, 0.1);
  cursor: pointer;
}
@media (max-width: 600px) {
  .word-of-the-year .shortlist .slider-container__right-btn {
    display: none;
  }
}
.word-of-the-year .shortlist .items .item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 32px;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .word-of-the-year .shortlist .items .item {
    padding: 16px;
    border-radius: 16px;
    gap: 8px;
  }
}
.word-of-the-year .shortlist .items .item .word {
  margin-bottom: 16px;
  border-radius: 32px;
  border-color: #406dff;
  border-style: solid;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 24px;
  font-size: 28px;
  line-height: 24px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .word-of-the-year .shortlist .items .item .word {
    font-size: 20px;
    line-height: 24px;
    padding: 8px 10px;
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .word-of-the-year .shortlist .items .item .text-block {
    font-size: 20px;
    line-height: 24px;
    padding: 8px 10px;
    margin-bottom: 8px;
  }
}
.word-of-the-year .shortlist .items .item .text-block .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
}
.word-of-the-year .shortlist .items .item .text-block p {
  padding: 8px 0 0 0;
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.word-of-the-year .nominations {
  margin-top: 56px;
}
@media (max-width: 600px) {
  .word-of-the-year .nominations {
    margin-top: 16px;
  }
}
.word-of-the-year .nominations p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 32px;
  width: 75%;
}
@media (max-width: 600px) {
  .word-of-the-year .nominations p {
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 5px;
  }
}
.word-of-the-year .nominations ul > li {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 600px) {
  .word-of-the-year .nominations ul > li {
    width: 100%;
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 600px) {
  .word-of-the-year .nominations ul {
    list-style: none;
    margin: 0 0 5px 0;
    padding: 0;
  }
}
.word-of-the-year .nom-shortlists {
  margin-top: 32px;
  width: 100%;
  font-size: 15px;
  line-height: 20px;
}
@media (max-width: 600px) {
  .word-of-the-year .nom-shortlists {
    margin-top: 16px;
  }
}
.word-of-the-year .nom-shortlists .items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: start;
}
.word-of-the-year .nom-shortlists .items .item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 32px;
  flex: 0 0 272px;
  box-sizing: border-box;
}
.word-of-the-year .nom-shortlists .items .item.item-med {
  background-color: #f4bcba;
}
.word-of-the-year .nom-shortlists .items .item.item-cult {
  background-color: #f3e08a;
}
.word-of-the-year .nom-shortlists .items .item.item-inf {
  background-color: #a5dee5;
}
.word-of-the-year .nom-shortlists .items .item.item-econ {
  background-color: #cbdfb1;
}
@media (max-width: 600px) {
  .word-of-the-year .nom-shortlists .items .item {
    padding: 16px;
    border-radius: 16px;
    flex: 0 0 100%;
  }
}
.word-of-the-year .nom-shortlists .items .item img {
  width: 50px;
  height: auto;
}
.word-of-the-year .nom-shortlists .items .item .category {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .word-of-the-year .nom-shortlists .items .item .category {
    font-size: 20px;
    line-height: 24px;
  }
}
.word-of-the-year .nom-shortlists .items .item ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.word-of-the-year .nom-shortlists .items .item ul li {
  font-size: 18px;
  line-height: 24px;
  border: solid #303030 2px;
  padding: 4px 16px;
  border-radius: 32px;
  width: -moz-fit-content;
  width: fit-content;
}
.word-of-the-year .nom-shortlists .items .item ul li.winner {
  padding: 6px 25px;
  border: solid #406dff 3px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.784px;
  border-radius: 52px;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .word-of-the-year .nom-shortlists .items .item ul li {
    font-size: 15px;
    line-height: 20px;
  }
}
.word-of-the-year .experts {
  margin-top: 56px;
}
@media (max-width: 600px) {
  .word-of-the-year .experts {
    margin-top: 16px;
  }
}
.word-of-the-year .experts p {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  padding: 0;
  width: 75%;
}
@media (max-width: 600px) {
  .word-of-the-year .experts p {
    width: 100%;
    font-size: 15px;
    line-height: 20px;
  }
}
.word-of-the-year .experts .items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.word-of-the-year .experts .items .item.item-med .header {
  background-color: #f4bcba;
}
.word-of-the-year .experts .items .item.item-cult .header {
  background-color: #f3e08a;
}
.word-of-the-year .experts .items .item.item-info .header {
  background-color: #a5dee5;
}
.word-of-the-year .experts .items .item.item-econ .header {
  background-color: #cbdfb1;
}
.word-of-the-year .experts .items .item .header {
  background-color: #fff;
  margin: 32px 0;
  display: flex;
  justify-content: start;
  padding: 16px 24px;
  align-items: center;
  box-sizing: border-box;
  border-radius: 32px;
  gap: 16px;
}
@media (max-width: 600px) {
  .word-of-the-year .experts .items .item .header {
    padding: 8px;
    border-radius: 16px;
    margin: 16px 0;
  }
}
.word-of-the-year .experts .items .item .header .title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .word-of-the-year .experts .items .item .header .title {
    width: 100%;
    font-size: 15px;
    line-height: 25px;
  }
}
.word-of-the-year .experts .items .item .header img {
  width: 50px;
}
.word-of-the-year .experts .items .item .expert-list {
  display: block;
  -moz-columns: 3;
       columns: 3;
  widows: 5;
  orphans: 12;
}
@media (max-width: 600px) {
  .word-of-the-year .experts .items .item .expert-list {
    -moz-columns: 2;
         columns: 2;
    widows: 12;
    orphans: 22;
  }
}
.word-of-the-year .experts .items .item .expert-list .expert {
  flex: 0 0 368px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.word-of-the-year .experts .items .item .expert-list .expert strong {
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 600px) {
  .word-of-the-year .experts .items .item .expert-list .expert strong {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .word-of-the-year .experts .items .item .expert-list .expert {
    width: 100%;
    font-size: 14px;
    line-height: 18px;
  }
}
.word-of-the-year .partners {
  margin-top: 56px;
}
.word-of-the-year .partners .line {
  max-width: 100%;
  overflow: hidden;
  height: 94px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  padding: 0 32px;
  background-color: #fff;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .word-of-the-year .partners .line {
    justify-content: center;
  }
  .word-of-the-year .partners .line img {
    height: 44px;
  }
}
.word-of-the-year .footer {
  display: flex;
  margin: 56px auto 0 auto;
  padding-bottom: 80px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.word-of-the-year .footer div {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .word-of-the-year .footer div {
    flex-wrap: wrap;
  }
}
.word-of-the-year .footer .tg-btn {
  margin-left: 8px;
}
.word-of-the-year .footer span {
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  padding-right: 20px;
}
@media (max-width: 600px) {
  .word-of-the-year .footer span {
    text-align: center;
    padding-right: 0;
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }
}
