@font-face {
  font-family: "TTNormsPro regular";
  src: url(../fonts/TTNormsPro-Regular.ttf);
}

@font-face {
  font-family: "TTNormsPro medium";
  src: url(../fonts/TTNormsPro-Medium.ttf);
}

html {
  scroll-padding-top: 55px;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "TTNormsPro regular";
  /* outline: 1px solid red; */
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  margin: 0;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.locked {
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 20px;
}
.title {
  font-size: 64px;
  color: #1b1f2a;
  font-family: "TTNormsPro medium";
  text-transform: uppercase;
}
@media (max-width: 670px) {
  .title {
    font-size: 40px;
  }
}
/*header*/
.header {
  padding: 11px 20px;
  width: 100%;
  max-width: 1450px;
  margin: auto;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .header-logo-img {
  width: 194px;
  height: 40px;
} */
.header-top {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-menu-list {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.header-burger-menu {
  display: none;
}
.header-menu-item {
  padding: 4px 12px;
  position: relative;
}

.header-menu-link {
  font-size: 14px;
  color: #1b1f2a;
  font-family: "TTNormsPro medium";
  text-transform: uppercase;
}

.header-menu-item:last-of-type .header-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 193px;
  width: 100%;
  height: 48px;
  background-color: #1b1f2a;
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 13px 16px;
  gap: 16px;
}

.header-menu-item-wrap-arrow {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-color: #ff335f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu-item:nth-last-of-type(2) .header-menu-link {
  width: 100%;
  max-width: 154px;
  height: 48px;
  border: 1px solid #1b1f2a;
  cursor: pointer;
  padding: 13px 16px 13px 10px;
  text-transform: none;
  /* margin-left: 48px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.header-menu-item:nth-last-of-type(3) {
  margin-right: 48px;
}
.header-menu-item:last-of-type,
.header-menu-item:nth-last-of-type(2) {
  padding: 0;
}
.header-menu-item:last-of-type .header-menu-link .header-menu-item-arrow {
  transition: all 0.3s;
}
.header-menu-item:last-of-type:hover .header-menu-link .header-menu-item-arrow {
  transform: rotate(45deg);
}

/*адаптив header*/

@media (max-width: 1380px) {
  .header {
    padding: 16px 24px;
  }

  .header-menu {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.2s;
  }


  .header-menu.active {
    left: 0;
    margin-top: 0;
    margin-right: 0;
    z-index: 10;
  }

  .header-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    height: 100%;
    width: 60%;
    background-color: #fff;
    overflow: auto;
    margin: 0;
    backdrop-filter: blur(20px);
    padding-top: 100px;
  }
  .header-burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px;
  }
  .header-burder-icon-wrap {
    min-width: 44px;
    height: 44px;
    border: 1px solid #1b1f2a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 49;
  }
  .header-burger-icon {
    display: block;
    width: 20px;
    height: 11px;
    position: relative;
    z-index: 50;
    cursor: pointer;
    float: right;
  }
  .header-burger-icon span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    min-height: 2px;
    max-height: 2px;
    background-color: #1b1f2a;
    transition: all 0.2s;
    border-radius: 2px;
  }
  .header-burger-icon span:first-child {
    top: 0;
  }

  .header-burger-icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .header-burger-menu .header-menu-link {
    width: 100%;
    max-width: 239px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    background-color: #1b1f2a;
    color: #fff;
    cursor: pointer;
    border: none;
    padding: 13px 16px;
    gap: 16px;
  }
  .header-menu-item:last-of-type .header-menu-link {
    margin: 24px 20px;
    max-width: 89%;
    text-align: center;
    height: 68px;
    font-size: 16px;
    justify-content: center;
  }
  .header-menu-item {
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;

  }

  .header-menu-item:nth-last-of-type(3) {
    margin-right: 0;
  }
  .header-menu-link {
    padding: 20px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #d9dde7;
  }
  .header-menu-item:nth-last-of-type(3) .header-menu-link {
    padding-bottom: 90px;
  }
  .header-menu-item:nth-last-of-type(2) .header-menu-link {
    display: none;
  }
  .header-burger-icon.active span {
    background-color: #1b1f2a;
    transform: scale(0);
  }

  .header-burger-icon.active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .header-burger-icon.active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
    width: 100%;
  }
}
@media (max-width: 620px) {
  .header-logo-img:last-of-type {
    display: none;
  }
  .header-logo-img:nth-last-of-type(2) {
    display: none;
  }
  .header-burger-menu .header-menu-link {
    display: none;
  }
}
@media (max-width: 500px) {
  .header-menu-list {
    width: 100%;
  }
}
/*завершение адаптива*/
/*color-banner*/
.color-banner {
  width: 100%;
  max-width: 1440px;
  margin: auto;

  background: url("../img/top-bg.png") center top/cover no-repeat;
  padding-bottom: 260px;

}

.color-banner-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.color-banner-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
.color-banner-content {
  margin-top: 146px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 474px;
}
.color-banner-text {
  font-size: 48px;
  line-height: 1.5;
  color: #1b1f2a;
}
.color-banner-text.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.color-banner-text.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.color-banner-link {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border: 2px solid #1b1f2a;
  background-color: #1b1f2a;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.5;
  font-family: "TTNormsPro medium";
}
.color-banner-link-tg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.color-banner-link.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.color-banner-link.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.color-banner-arrow {
  transition: all 0.3s;
}
.color-banner-link:hover .color-banner-arrow {
  transform: rotate(45deg);
}
.color-banner-wrap-arrow {
  min-width: 40px;
  height: 40px;
  background-color: #ff335f;
  border: 2px solid #ff335f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.color-banner-wrap-img {
  position: relative;
  margin-top: 37px;
}
.color-banner-wrap-img.element-animation {
  transform: rotate(-5deg) scale(0.95);
  transition: transform 1.5s;
}
.color-banner-wrap-img.element-animation.element-show {
  transform: rotate(0) scale(1);
}
.color-banner-stiker {
  position: absolute;
  right: 60px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}
.color-banner-profits {
  margin-top: 107px;
}
.color-banner-profits-items-wrap {
  margin-top: 64px;
  display: flex;
  gap: 80px;
}
.color-banner-profits-item-main {
  background-color: #1b1f2a;
  max-width: 300px;
  width: 100%;
  padding: 40px 48px;
  color: #fff;
  position: relative;
  height: fit-content;
}
.color-banner-profits-item-main.elemet-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.color-banner-profits-item-main.elemet-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.color-banner-profits-item-main::after {
  content: "";
  display: block;
  width: 104px;
  height: 113px;
  position: absolute;
  top: auto;
  right: -1px;
  bottom: -2px;
  background: url("../img/Decor-for-black-square.svg") center center/cover
    no-repeat;
}
.color-banner-profits-items {
  display: flex;
  gap: 40px;
  margin-bottom: 134px;
}
.color-banner-profits-item-main-title {
  font-size: 64px;
  font-family: "TTNormsPro medium";
}
.color-banner-profits-item-main-desc {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.5;
  font-family: "TTNormsPro medium";
}
.color-banner-profits-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.color-banner-profits-item.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.color-banner-profits-item.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.color-banner-profits-item.element-animation:first-of-type.element-show {
  transition-delay: 0.1s;
}
.color-banner-profits-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.color-banner-profits-item.element-animation:nth-child(3).element-show {
  transition-delay: 0.5s;
}
.color-banner-profits-item-icon {
  width: 48px;
  height: 48px;
}
.color-banner-profits-item-title {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.5;
  color: #1b1f2a;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
}
.color-banner-profits-item-desc {
  margin-top: 20px;
  color: #1b1f2a;
  line-height: 1.5;
  font-size: 20px;
}
.color-banner-profits-bottom-content {
  width: 100%;
  max-width: 1101px;
  margin: 120px auto 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 42px;
}
.color-banner-profits-bottom-img.element-animation {
  opacity: 0;
  transform: rotate(-5deg) scale(0.95);
  transition: all 1.5s;
}
.color-banner-profits-bottom-img.element-animation.element-show {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.color-banner-profits-bottom-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.color-banner-profits-bottom-text {
  font-size: 24px;
  line-height: 1.5;
  color: #1b1f2a;
  background-color: #fff;
  width: fit-content;
}
.color-banner-profits-bottom-text.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.color-banner-profits-bottom-text.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.color-banner-profits-bottom-text.element-animation:nth-child(2).element-show {
  transition-delay: 0.1s;
}
.color-banner-profits-bottom-text.element-animation:nth-child(3).element-show {
  transition-delay: 0.25s;
}
.color-banner-profits-bottom-text.element-animation:nth-child(4).element-show {
  transition-delay: 0.5s;
}
.color-banner-profits-bottom-text.element-animation:last-child.element-show {
  transition-delay: 0.7s;
}
.color-banner-profits-bottom-text:nth-child(2) {
  margin-left: 30%;
  transform: translateX(-30%);
}
.color-banner-profits-bottom-text:nth-child(3) {
  margin-left: 28px;
}
.color-banner-profits-bottom-text:nth-child(4) {
  margin-left: 50%;
  transform: translateX(-50%);
}
.color-banner-profits-bottom-text:last-of-type {
  align-self: flex-end;
}
.color-banner-profits-bottom-describe {
  margin-top: 61px;
  background-color: #45dc66;
  color: #1b1f2a;
  font-size: 32px;
  padding: 12px 34px;
  margin-left: 24px;
}
.color-banner-profits-bottom-items {
  margin-top: 72px;
  display: flex;
  gap: 32px;
}
.color-banner-profits-bottom-item {
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
  color: #1b1f2a;
}
.color-banner-profits-bottom-item.element-animation {
  opacity: 0;
  transform: translateX(-25px) scale(0.9);
  transition: all 1.5s;
}
.color-banner-profits-bottom-item.element-animation.element-show {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.color-banner-profits-bottom-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.15s;
}
.color-banner-profits-bottom-item.element-animation:nth-child(3).element-show {
  transition-delay: 0.35s;
}
.color-banner-profits-bottom-item.element-animation:last-child.element-show {
  transition-delay: 0.55s;
}
.color-banner-profits-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.color-banner-profits-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1040px) {
  /* .color-banner {
    background: url("../img/top-bg.png") center center/contain no-repeat;
    padding-bottom: 174px;
  } */
  .color-banner-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
  }
  .color-banner-content {
    margin-top: 120px;
    max-width: 572px;
  }
  .color-banner-text {
    text-align: center;
  }
  .color-banner-link {
    justify-content: center;
  }
  .color-banner-profits-title {
    text-align: center;
  }
  .color-banner-profits-items-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .color-banner-profits-items {
    flex-direction: column;
    margin-bottom: 120px;
  }
  .color-banner-profits-item {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 608px;
  }
  .color-banner-profits-item-desc {
    text-align: center;
  }
  .color-banner-profits-bottom-content {
    margin-top: 80px;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
  .color-banner-profits-bottom-describe {
    margin-left: 0;
  }
}
@media (max-width: 769px) {
  .color-banner {
    background: url("../img/top-bg-tablet.png") center top/contain no-repeat;
    padding-bottom: 145px;
    background-color: #eaecf1;
  }
  .color-banner-profits-bottom-items {
    flex-direction: column;
    width: 100%;
    max-width: 528px;
    margin: 77px auto 0 auto;
  }
  .color-banner-profits-item-title{
    text-align: center;
  }
}
@media (max-width: 670px) {
  .color-banner-text {
    font-size: 40px;
  }
  .color-banner-link {
    font-size: 15px;
  }
  .color-banner-wrap-arrow {
    min-width: 28px;
    height: 28px;
  }
  .color-banner-img {
    max-width: 360px;
  }
  .color-banner-profits-item-main-desc {
    text-align: center;
  }
  .color-banner-profits-bottom-text:nth-child(2) {
    margin-left: 20px;
    transform: translateX(0);
  }
  .color-banner-profits-bottom-text:nth-child(3) {
    margin-left: 80px;
    /* transform: translateX(-50%); */
  }
  .color-banner-profits-bottom-text:nth-child(4) {
    margin-left: 0;
    transform: translateX(0);
  }
  .color-banner-profits-bottom-describe {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
  }
  .color-banner-profits-bottom-item {
    text-align: center;
  }
  .color-banner-profits-bottom-text{
    font-size: 20px;
  }
}
@media (max-width: 611px) {
  .color-banner {
    background: url("../img/top-bg-tablet.png") center top/cover no-repeat;
  }
}
@media (max-width: 425px) {
  .color-banner {
    background: url("../img/top-bg-mobile.png") center top/contain no-repeat;
    padding-bottom: 40px;
    background-color: #eaecf1;
  }
}

/*topic*/
.topic {
  padding-top: 60px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  background-color: #eaecf1;
}
.topic-wrap {
  display: flex;
  flex-direction: column;
}

.topic-describe {
  font-size: 48px;
  color: #1b1f2a;
  font-family: "TTNormsPro medium";
}
.topic-describe.element-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s;
}
.topic-describe.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.topic-content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  background: url("../img/theme-bg.png") center center/cover no-repeat;
}

.topic-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 840px;
  /* margin: 800px auto 0 auto; */
  margin: auto;
  padding-top: 820px;
}
.topic-item {
  font-size: 20px;
  color: #1b1f2a;
  line-height: 1.5;
  width: 100%;
  max-width: 513px;
}
.topic-item.element-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s;
}
.topic-item.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.topic-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.topic-item.element-animation:last-of-type.element-show {
  transition-delay: 0.5s;
}

.topic-item:nth-child(2) {
  align-self: flex-end;
}
.topic-item:last-child {
  margin-top: 40px;
  align-self: center;
}
.topic-stiker {
  width: 100%;
  max-width: 840px;
  margin: 120px auto 0 auto;
  display: block;
}
.topic-stiker.element-animation {
  opacity: 0;
  transform: rotate(-10deg) translateX(50px);
  transition: all 1.5s;
}
.topic-stiker.element-animation.element-show {
  opacity: 1;
  transform: rotate(0) translateX(0);
}
.topic-desc {
  width: 100%;
  max-width: 840px;
  margin: 200px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
.topic-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 20px;
  line-height: 1.5;
  color: #1b1f2a;
  width: 100%;
  max-width: 472px;
}
.topic-text.element-animation {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 1.5s;
}
.topic-text.element-animation.element-show {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.topic-text.element-animation:last-of-type.element-show {
  transition-delay: 0.3s;
}
.topic-bottom {
  margin: 100px auto 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 624px;
}
.topic-bottom-title {
  font-size: 32px;
  color: #1b1f2a;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 100px;
}
.topic-bottom-title.element-animation {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 1.5s;
}
.topic-bottom-title.element-animation.element-show {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.45s;
}

.topic-bottom-title-span {
  color: #fff;
  background-color: #ff335f;
}
.topic-bottom-text {
  font-size: 20px;
  line-height: 1.5;
  color: #1b1f2a;
  text-align: center;
}
.topic-bottom-content {
  margin: 48px 0;
  background-color: #1b1f2a;
  color: #fff;
  padding: 24px;
  text-align: center;
}
.topic-bottom-content.element-animation {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 1.5s;
}
.topic-bottom-content.element-animation.element-show {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.topic-bottom-img-title {
  text-align: center;
  font-size: 18px;
  color: #1b1f2a;
  margin-top: 100px;
}
.topic-bottom-img {
  margin-top: 12px;
  width: 100%;
  max-width: 380px;
  align-self: center;
}
.topic-bottom-img.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.topic-bottom-img.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1310px) {
  .topic-content {
    background: url("../img/theme-bg.png") top center/contain no-repeat;
  }
  .topic-items {
    padding-top: 635px;
  }
}
@media (max-width: 1070px) {
  .topic-items {
    padding-top: 550px;
  }
}
@media (max-width: 769px) {
  .topic-content {
    background: url("../img/theme-bg-tablet.png") top center/contain no-repeat;
  }
  .topic-items {
    padding-top: 460px;
    max-width: 608px;
  }
  .topic-item:first-of-type {
    max-width: 281px;
  }
  .topic-item:nth-child(2) {
    max-width: 281px;
  }
  .topic-item:last-child {
    text-align: center;
  }
  .topic-stiker {
    max-width: 568px;
  }
  .topic-desc {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }
  .topic-stiker-2 {
    width: 268px;
  }
  .topic-texts {
    max-width: 608px;
  }
  .topic-bottom {
    margin: 60px auto 0 auto;
  }
  .topic-bottom-title {
    margin-bottom: 60px;
  }
  .topic-bottom-img-title {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  .topic-describe {
    font-size: 32px;
    text-align: center;
  }
  .topic-items {
    padding-top: 300px;
    gap: 48px;
  }
  .topic-item:first-of-type {
    max-width: 100%;
    text-align: center;
  }
  .topic-item:nth-child(2) {
    max-width: 100%;
    text-align: center;
  }
  .topic-item:last-of-type {
    margin-top: 0;
  }
  .topic-desc {
    margin: 120px auto 0 auto;
  }
  .topic-stiker {
    margin: 100px auto 0 auto;
  }
  .topic-texts {
    text-align: center;
  }
}
@media (max-width: 425px) {
  .topic-content {
    background: url("../img/theme-bg-mobile.png") top center/contain no-repeat;
  }
}
/*nomination*/
.nomination {
  width: 100%;
  max-width: 1440px;
  margin: -6px auto 0 auto;
  background-color: #1b1f2a;
}
.nomination-title {
  text-align: center;
  color: #fff;
}
.nomination-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.nomination-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.nomination-link {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
}
.nomination-link.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.nomination-link.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.nomination-items {
  padding-top: 50px;
  background: url("../img/nominations-bg-2.png") center center/cover no-repeat;
}
.nomination-item {
  padding: 120px 20px 80px 20px;
}
.nomination-item.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.nomination-item.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.nomination-item:first-of-type {
  background-color: #45dc66;
}
.nomination-item:nth-child(2) {
  background-color: #1760e3;
}
.nomination-item:nth-child(3) {
  background-color: #ffffff;
}
.nomination-item:last-of-type {
  background-color: #2e3446;
}

.nomination-item:first-of-type .nomination-item-top,
.nomination-item:nth-child(3) .nomination-item-top {
  border-bottom: 2px solid #1b1f2a;
}
.nomination-item:nth-child(2) .nomination-item-top,
.nomination-item:last-child .nomination-item-top {
  border-bottom: 2px solid #ffffff;
}
.nomination-item:first-of-type .nomination-item-text:nth-child(3) {
  margin-top: 16px;
  background-color: #2e3446;
  color: #45dc66;
  text-transform: uppercase;
  padding: 0 6px;
  width: fit-content;
}
.nomination-item:nth-child(2) .nomination-item-text,
.nomination-item:nth-child(2) .nominatino-item-bottom-desc-text,
.nomination-item:last-of-type .nomination-item-text,
.nomination-item:last-of-type .nominatino-item-bottom-desc-text {
  color: #ffffff;
}
.nomination-item:nth-child(2) .nominatino-item-bottom-desc-text:first-of-type {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
  margin-bottom: 4px;
}
.nomination-item:nth-child(2) .nominatino-item-bottom-desc-text:last-of-type {
  margin-top: 24px;
}
.nomination-item-content {
  width: 100%;
  max-width: 1060px;
  margin: auto;
}
.nomination-item-top {
  display: flex;
  gap: 80px;
  padding-bottom: 60px;
}
.nomination-item-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nomination-item-text {
  font-size: 18px;
  line-height: 1.5;
}
.nomination-item-bottom {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.nomination-item-bottom-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nomination-item-bottom-title {
  font-size: 20px;
  line-height: 1.5;
  font-family: "TTNormsPro medium";
  text-transform: uppercase;
}
.nomination-item:first-of-type .nomination-item-bottom-title,
.nomination-item:nth-child(3) .nomination-item-bottom-title {
  color: #1b1f2a;
}
.nomination-item:nth-child(2) .nomination-item-bottom-title,
.nomination-item:last-of-type .nomination-item-bottom-title {
  color: #fff;
}
.nomination-item:first-of-type .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon.svg") center center/cover no-repeat;
  transition: all 0.4s;
}
.nomination-item:first-of-type.active .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-active.svg") center center/cover no-repeat;
  transition: all 0.4s;
}

.nomination-item:nth-child(2) .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-blue.svg") center center/cover no-repeat;
  transition: all 0.4s;
}
.nomination-item:nth-child(2).active .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-blue-active.svg") center center/cover
    no-repeat;
  transition: all 0.4s;
}
.nomination-item:nth-child(3) .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-white.svg") center center/cover no-repeat;
  transition: all 0.4s;
}
.nomination-item:nth-child(3).active .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-white-active.svg") center center/cover
    no-repeat;
  transition: all 0.4s;
}
.nomination-item:last-of-type .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-dark.svg") center center/cover no-repeat;
  transition: all 0.4s;
}
.nomination-item:last-of-type.active .nomination-item-bottom-icon {
  width: 40px;
  height: 40px;
  background: url("../img/eye-icon-dark-active.svg") center center/cover
    no-repeat;
  transition: all 0.4s;
}
.nomination-item-bottom-desc {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}
.nomination-item-bottom-desc.active {
  /* display: flex; */
  opacity: 1;
  max-height: fit-content;
}
.nominatino-item-bottom-desc-text {
  color: #1b1f2a;
  font-size: 18px;
  line-height: 1.5;
}
.nominatino-item-bottom-desc-text:nth-child(4) {
  margin: 12px 0;
}
.nomination-item:first-of-type .nominatino-item-bottom-desc-text:last-of-type {
  font-family: "TTNormsPro medium";
}
.nomination-item-bottom-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nomination-item-bottom-unit {
  font-size: 18px;
  color: #1b1f2a;
  line-height: 1.5;
  display: flex;
  gap: 12px;
}
.nomination-item-bottom-unit::before {
  content: "";
  background: url("../img/pink-star.svg") center center/cover no-repeat;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.nomination-item-bottom-desc-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nomination-item-bottom-desc-section:last-of-type {
  margin: 24px 0;
}
.nomination-item-text-title {
  color: #1b1f2a;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "TTNormsPro medium";
}
.nomination-item-img {
  width: fit-content;
}
@media (max-width: 1040px) {
  .nomination-item-top {
    flex-direction: column;
  }
  .nomination-item-img {
    align-self: center;
  }
}
@media (max-width: 576px) {
  .nomination-item {
    padding: 100px 20px 80px 20px;
  }
}
@media (max-width: 400px) {
  .nomination-link {
    font-size: 14px;
  }
}
/*requirements*/
.requirements {
  padding: 120px 0;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  background-color: #eaecf1;
}
.requirements-wrap {
  display: flex;
  flex-direction: column;
}
.requirements-items {
  width: 100%;
  max-width: 720px;
  margin: 40px auto 0 auto;
}
.requirements-title {
  text-align: center;
  background: url("../img/requirements-bg.png") center center/contain no-repeat;
  padding-bottom: 27px;
}
.requirements-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.requirements-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.requirements-item {
  padding: 48px 0;
  border-top: 1px solid #b7bdd0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.requirements-item.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.requirements-item.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.requirements-item.element-animation:first-of-type.element-show {
  transition-delay: 0.15s;
}
.requirements-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.requirements-item.element-animation:nth-child(3).element-show {
  transition-delay: 0.35s;
}
.requirements-item.element-animation:last-of-type.element-show {
  transition-delay: 0.45s;
}
.requirements-item:first-of-type {
  padding-top: 0;
  border-top: none;
}
.requirements-item-texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.requirements-item-text {
  font-size: 18px;
  color: #1b1f2a;
  line-height: 1.5;
}
.requirements-item-title {
  font-size: 18px;
  line-height: 1.5;
  color: #1b1f2a;
  font-family: "TTNormsPro medium";
}
.requirements-item-section {
  display: flex;
  gap: 32px;
}
.requirements-item-section-unit {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 344px;
  gap: 8px;
}
.requirements-item:nth-child(2) .requirements-item-section-unit {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.requirements-item-section-unit-title {
  color: #525d7d;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
}
.requirements-item-section-unit-desc {
  display: flex;
  gap: 32px;
}
.requirements-item-section-unit-text-wrap {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 344px;
}
.requirements-item-section-unit-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #1b1f2a;
  font-size: 18px;
  line-height: 1.5;
}
.requirements-item-section-unit-text-wrap::before {
  content: "";
  min-width: 21px;
  height: 21px;
  display: inline;
  background: url("../img/pink-star.svg") center center/cover no-repeat;
  margin-top: 5px;
}
.requirements-item-section-unit-subtexts {
  display: flex;
  gap: 8px;
}
.requirements-item-section-unit-subtext-wrap {
  border: 1px solid #1b1f2a;
  padding: 1px 6px;
}
@media (max-width: 576px) {
  .requirements-item-section-unit-desc {
    flex-direction: column;
  }
  .requirements-item-section {
    flex-direction: column;
  }
}
/*awards*/
.awards {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.awards-wrap {
  margin-top: -4px;
  background-color: #2e79ff;
  display: flex;
  flex-direction: column;
}
.awards-container {
  width: 100%;
  max-width: 1096px;
  margin: auto;
  padding: 0 20px;
}
.awards-title {
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.awards-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.awards-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.awards-items {
  margin-top: 60px;
  display: flex;
  gap: 48px;
}
.awards-item {
  width: 100%;
  padding: 48px 32px;
}
.awards-item.element-animation {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1.5s;
}
.awards-item.element-animation.element-show {
  opacity: 1;
  transform: translateX(0);
}
.awards-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.awards-item.element-animation:last-of-type.element-show {
  transition-delay: 0.5s;
}
.awards-item:nth-child(2) {
  background-color: #ff335f;
  position: relative;
}
.awards-item:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 104px;
  height: 113px;
  top: 0;
  right: -2px;
  background: url("../img/Decor-for-red-square.png") center center/cover
    no-repeat;
}
.awards-item-top {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #f6f7f9;
  gap: 12px;
  font-family: "TTNormsPro medium";
  text-transform: uppercase;
}
.awards-item-desc {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.awards-item-text {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  font-family: "TTNormsPro medium";
}
.awards-item-honor {
  margin-top: 12px;
  font-size: 48px;
  color: #ffffff;
  font-family: "TTNormsPro medium";
  text-align: center;
}
.awards-list {
  margin: 100px auto 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 630px;
}
.awards-list.element-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s;
}
.awards-list.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.awards-list-item {
  display: flex;
  gap: 40px;
}
.awards-list-item:first-of-type {
  padding-bottom: 48px;
  border-bottom: 2px solid #94baff;
}
.awards-list-item:last-of-type {
  padding-top: 48px;
  padding-bottom: 40px;
}
.awardds-list-item-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 324px;
}
.awards-list-item-title {
  font-size: 32px;
  color: #f6f7f9;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
  line-height: 1.5;
}
.awards-list-item-subtitle {
  font-size: 24px;
  font-family: "TTNormsPro medium";
  color: #f6f7f9;
}
.awards-list-item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.awards-list-item-point {
  font-size: 20px;
  color: #f6f7f9;
  line-height: 1.5;
}
.awards-list-item-info {
  font-size: 48px;
  color: #f6f7f9;
  font-family: "TTNormsPro medium";
}
.awards-list-item-point-span {
  border: 1px solid #f6f7f9;
  font-size: 12px;
  padding: 1px 3px;
}
.awards-bg:last-of-type {
  margin-top: -4px;
}
.awards-bg:first-of-type {
  margin-bottom: -2px;
}
@media (max-width: 1105px) {
  .awards-items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .awards-item {
    max-width: 448px;
    padding: 32px;
  }
  .awards-list-item:first-of-type {
    padding-top: 48px;
    border-top: 2px solid #94baff;
  }
  .awards-list-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .awards-list-item-title {
    text-align: center;
  }
  .awards-list-item-subtitle {
    text-align: center;
  }
  .awardds-list-item-content {
    max-width: 350px;
  }
}
@media (max-width: 576px) {
  .awards-item:first-of-type {
    order: 2;
  }
  .awards-item:nth-child(2) {
    order: 1;
  }
  .awards-item:last-of-type {
    order: 3;
  }
}
/*description*/
.description {
  padding: 160px 0 120px 0;
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.description-wrap {
  display: flex;
  flex-direction: column;
}
.description-title {
  text-align: center;
  background: url("../img/description-bg.png") center center/contain no-repeat;
  width: 100%;
  max-width: 812px;
  margin: auto;
  padding-bottom: 42px;
}
.description-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.description-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.description-items {
  margin: 58px auto 0 auto;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
}
.description-item {
  display: flex;
  gap: 41px;
}
.description-item.element-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s;
}
.description-item.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.description-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.description-item.element-animation:nth-child(3).element-show {
  transition-delay: 0.35s;
}
.description-item.element-animation:last-child.element-show {
  transition-delay: 0.45s;
}
.description-item:first-of-type .description-item-title,
.description-item:nth-child(3) .description-item-title {
  padding: 20px 0;
}
.description-item-number {
  width: 68px;
  height: 64px;
  background-color: #eaecf1;
  font-size: 32px;
  color: #1b1f2a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.description-item-title {
  font-size: 18px;
  line-height: 1.5;
  color: #1b1f2a;
}
.description-item-img {
  margin-top: 32px;
  width: fit-content;
}
.description-item-link {
  text-decoration: underline;
  font-family: "TTNormsPro medium";
  color: #1b1f2a;
}
.description-item-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.description-item-dots {
  margin: 16px 0;
  border-left: 3px dotted #9ba4be;
  height: 200px;
  width: 1px;
}
.description-item:nth-child(2) .description-item-dots {
  height: 429px;
}
.description-item:nth-child(3) .description-item-dots {
  height: 398px;
}
.description-item:nth-child(4) {
  padding-bottom: 60px;
  border-bottom: 1px solid #b7bdd0;
}
.description-item-bottom {
  margin-top: 66px;
  text-align: center;
  color: #1b1f2a;
  font-size: 18px;
  line-height: 1.5;
}
.description-item-content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 670px) {
  .description-item {
    flex-direction: column;
    gap: 24px;
  }
  .description-item-dots {
    display: none;
  }
  .description-item-title {
    text-align: center;
  }
  .description-item:first-of-type .description-item-title,
  .description-item:nth-child(3) .description-item-title {
    padding: 0;
  }
  .description-item-img {
    align-self: center;
  }
  .description-items {
    gap: 80px;
  }
  .description-item:nth-child(4) {
    padding-bottom: 48px;
  }
  .description-item-bottom {
    margin-top: 0;
  }
}
/*faq*/
.faq {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.faq-wrap {
  margin-top: -5px;
  background-color: #f6f7f9;
  display: flex;
  flex-direction: column;
}
.faq-title {
  margin-top: 40px;
  text-align: center;
  background: url("../img/faq-bg-for-title.png") center center/contain no-repeat;
  padding-bottom: 42px;
}
.faq-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.faq-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.faq-items {
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1062px;
}
.faq-items.element-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s;
}
.faq-items.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.faq-item {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #1b1f2a;
  cursor: pointer;
}
.faq-item:last-of-type {
  border-bottom: none;
}
.faq-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item-title {
  font-size: 20px;
  line-height: 1.5;
  color: #1b1f2a;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
}
.faq-item-icon {
  min-width: 40px;
  height: 40px;
  background: url("../img/eye-icon-white.svg") center center/cover no-repeat;
  transition: all 0.3s;
}
.faq-item-icon.active {
  min-width: 40px;
  height: 40px;
  background: url("../img/eye-icon-white-active.svg") center center/cover
    no-repeat;
  transition: all 0.3s;
}
.faq-item-desc {
  display: flex;
  flex-direction: column;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}
.faq-item-texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item-text {
  font-size: 18px;
  color: #1b1f2a;
  line-height: 1.5;
}

.faq-item-desc.active {
  margin-top: 36px;
  /* display: flex; */
  opacity: 1;
  max-height: fit-content;
}

/*criteria*/
.criteria {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 100px 0;
}
.criteria-wrap {
  display: flex;
  flex-direction: column;
}
.criteria-title {
  text-align: center;
}
.criteria-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.criteria-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.criteria-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 630px;
  margin: 60px auto 0 auto;
  gap: 48px;
}
.criteria-list.element-animation {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1.5s;
}
.criteria-list.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.criteria-list-item {
  display: flex;
  gap: 24px;
}
.criteria-list-number {
  min-width: 40px;
  height: 40px;
  background-color: #ff335f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f6f7f9;
  font-family: "TTNormsPro medium";
}
.criteria-list-desc {
  display: flex;
  flex-direction: column;
}
.criteria-list-item-title {
  font-size: 20px;
  color: #1b1f2a;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
  line-height: 1.5;
}
.criteria-list-item-desc {
  margin-top: 14px;
  color: #1b1f2a;
  font-size: 18px;
  line-height: 1.5;
}
.criteria-list-item-desc-link {
  margin-top: 14px;
  color: #1b1f2a;
  font-size: 18px;
  line-height: 1.5;
  font-family: "TTNormsPro medium";
  text-decoration: underline;
}
.criteria-list-item-desc-text {
  margin-top: 16px;
  color: #1b1f2a;
  font-size: 14px;
  line-height: 1.5;
}
/*steps*/
.steps {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  position: relative;
}
.steps-wrap {
  margin-top: -4px;
  background-color: #eaecf1;
  display: flex;
  flex-direction: column;
  padding-bottom: 222px;
}
.steps-title {
  padding: 40px 60px;
  margin-top: 60px;
  text-align: center;
  background: url("../img/steps-bg-title.png") center center/contain no-repeat;
}
.steps-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.steps-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.steps-items {
  margin: 60px auto 0 auto;
  width: 100%;
  max-width: 798px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.steps-item {
  display: flex;
  gap: 40px;
}
.steps-item.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.steps-item.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.steps-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.steps-item.element-animation:last-of-type.element-show {
  transition-delay: 0.5s;
}
.steps-item-aside {
  display: flex;
  flex-direction: column;
}
.steps-item-number {
  width: 140px;
  height: 124px;
  background-color: #acefbb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.steps-item-number-title {
  font-size: 48px;
  color: #1b1f2a;
  font-family: "TTNormsPro medium";
}
.steps-item-number-bottom {
  font-size: 20px;
  color: #1b1f2a;
  font-family: "TTNormsPro medium";
}
.steps-item-content {
  display: flex;
  flex-direction: column;
}
.steps-item-content .steps-item-arrow {
  display: none;
  margin: 25px 0;
}
.steps-item-arrow {
  margin: 25px 0;
  align-self: center;
}
.steps-item-title {
  font-size: 24px;
  color: #1b1f2a;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
}
.steps-item-subtitle {
  margin-top: 12px;
  color: #1b1f2a;
  font-size: 18px;
  line-height: 1.5;
}
.steps-item-subtitle-text {
  margin-top: 12px;
  color: #404961;
  font-size: 16px;
  line-height: 1.5;
}
.steps-link {
  margin-top: 100px;
  padding: 16px 24px;
  background-color: #1b1f2a;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.steps-link-arrow {
  transition: all 0.3s;
}
.steps-link:hover .steps-link-arrow {
  transform: rotate(45deg);
}
.steps-link-arrow-wrap {
  width: 40px;
  height: 40px;
  background-color: #ff335f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-bg-last {
  width: 100%;
  height: 459px;
  position: absolute;
  bottom: -2px;
  top: auto;
}
@media (max-width: 770px) {
  .steps-item-content .steps-item-arrow {
    display: flex;
    align-self: flex-start;
    margin-left: calc(50% - 100px);
    transform: translateX(-50%);
  }
  .steps-item-aside .steps-item-arrow {
    display: none;
  }
  .steps-link {
    margin-top: 72px;
  }
  .steps-bg-last {
    height: 298px;
  }
  .steps-wrap {
    padding-bottom: 41px;
  }
}
@media (max-width: 576px) {
  .steps-item-number {
    width: 120px;
    height: 112px;
  }
  .steps-items {
    gap: 100px;
  }
  .steps-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .steps-item-content .steps-item-arrow {
    display: none;
  }
  .steps-item-number-title {
    font-size: 40px;
  }
  .steps-item-title {
    font-size: 20px;
    text-align: center;
  }
  .steps-item-subtitle {
    text-align: center;
  }
  .steps-link {
    margin-top: 0;
    font-size: 14px;
  }
  .steps-wrap {
    padding-bottom: 72px;
  }
  .steps-item-number-bottom {
    font-size: 18px;
  }
  .steps-link-arrow-wrap {
    width: 24px;
    height: 24px;
  }
  .steps-link-arrow {
    width: 11px;
  }
}
/*jury*/
.jury {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.jury-wrap {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
}
.jury-title {
  text-align: center;
}
.jury-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.jury-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.jury-subtitle {
  margin-top: 36px;
  text-align: center;
  font-size: 24px;
  color: #1b1f2a;
  line-height: 1.5;
}
.jury-subtitle.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.jury-subtitle.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.jury-items {
  margin-top: 80px;
  display: flex;
  gap: 32px;
}
.jury-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 296px;
}
.jury-item.element-animation {
  opacity: 0;
  transform: translateX(30px) scale(0.8);
  transition: all 1.5s;
}
.jury-item.element-animation.element-show {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.jury-item.element-animation:nth-child(2).element-show {
  transition-delay: 0.25s;
}
.jury-item.element-animation:nth-child(3).element-show {
  transition-delay: 0.5s;
}
.jury-item.element-animation:last-of-type.element-show {
  transition-delay: 0.75s;
}
.jury-item-desc {
  margin-top: 19px;
  display: flex;
  flex-direction: column;
}
.jury-item-name {
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  font-family: "TTNormsPro medium";
}
.jury-item-level {
  margin-top: 10px;
  color: #1b1f2a;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1100px) {
  .jury-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 769px) {
  .jury-item {
    max-width: 288px;
  }
}
/*about*/
.about {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.about-wrap {
  background-color: #2e3446;
  display: flex;
  flex-direction: column;
  margin-top: -5px;
}
.about-top {
  display: flex;
  width: 100%;
  max-width: 960px;
  margin: auto;
  justify-content: space-between;
  gap: 50px;
}
.about-top-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-title {
  color: #ffffff;
}
.about-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.about-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.about-stiker {
  width: 120px;
  height: 120px;
}
.about-top-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-top-text {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
}
.about-top-text:last-of-type {
  font-size: 24px;
}
.about-bottom {
  width: 100%;
  max-width: 640px;
  margin: 60px auto 0 auto;
}
.about-bottom.element-animation {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1.5s;
}
.about-bottom.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.about-bottom-link {
  padding: 16px 24px;
  background-color: #ff335f;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-bottom-link-arrow {
  transition: all 0.3s;
}
.about-bottom-link:hover .about-bottom-link-arrow {
  transform: rotate(45deg);
}
.about-bottom-link-arrow-wrap {
  min-width: 40px;
  height: 40px;
  background-color: #1b1f2a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-bottom-texts {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-bottom-text {
  font-size: 16px;
  color: #d3d7e2;
  line-height: 1.5;
  text-align: center;
}
.about-bottom-link-extra {
  margin-top: 32px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline;
  font-family: "TTNormsPro medium";
  display: block;
  text-align: center;
}
.about-bg-boottom {
  margin-top: -2px;
}
@media (max-width: 950px) {
  .about-top {
    flex-direction: column;
  }
  .about-stiker {
    order: 1;
  }
  .about-title {
    order: 2;
  }
}
@media (max-width: 576px) {
  .about-stiker {
    width: 100px;
    height: 100px;
    align-self: center;
  }
  .about-title {
    text-align: center;
  }
  .about-top-text {
    text-align: center;
  }
}
/*gallery*/
.gallery {
  margin: 100px auto 0 auto;
  width: 100%;
  max-width: 1440px;
}
.gallery-top {
  background: url("../img/galery-bg.png") center center/cover no-repeat;
  padding-bottom: 240px;
}
.gallery-title {
  text-align: center;
}
.gallery-title.element-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1.5s;
}
.gallery-title.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.gallery-subtitle {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
  color: #1b1f2a;
  text-align: center;
}
.gallery-subtitle.element-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.gallery-subtitle.element-animation.element-show {
  opacity: 1;
  transform: translateY(0);
}
.gallery-wrap {
  background-color: #0047c7;
  padding-bottom: 100px;
}
.gallery-items {
  margin-top: -80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*footer*/
.footer {
  padding: 20px 0 48px 0;
  margin: -4px auto 0 auto;
  width: 100%;
  max-width: 1440px;
  background-color: #0047c7;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-logos-desc {
  margin-top: 22px;
  color: #b2c8ee;
  font-size: 14px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links:first-of-type {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
  justify-content: center;
  align-items: center;
}
.footer-links:last-of-type {
  margin-top: 20px;
}
.footer-link-docs {
  font-size: 14px;
  color: #a3afb9;
  line-height: 1.5;
}
.footer-links:first-of-type .footer-link-docs {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "TTNormsPro medium";
  color: #fff;
}
.footer-section:last-of-type {
  width: 100%;
  max-width: 252px;
}
.footer-link {
  border: 1px solid #ffffff;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #fff;
  font-family: "TTNormsPro medium";
}
.footer-link:last-of-type {
  margin-top: 16px;
  border: 1px solid #ffffff;
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #2e79ff;
  background-color: #fff;
}
.footer-link-arrow-wrap {
  min-width: 32px;
  height: 32px;
  background-color: #0047c7;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .footer-wrap {
    flex-direction: column;
    gap: 48px;
  }
  .footer-logos-desc {
    text-align: center;
  }
  .footer-section:first-of-type {
    order: 1;
  }
  .footer-section:nth-child(2) {
    order: 3;
  }
  .footer-section:last-of-type {
    order: 2;
  }
  .footer-section:last-of-type {
    flex-direction: row;
    max-width: 100%;
    gap: 20px;
    justify-content: center;
  }
  .footer-link:last-of-type {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .footer-logos {
    gap: 28px;
  }
  .footer-section:last-of-type {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .footer-logos {
    gap: 10px;
  }
  .footer-section:last-of-type {
    flex-direction: column;
  }
  .footer-links:last-of-type {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
