@keyframes linearGradient {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200% 0%;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes showToRight {
  0% {
    opacity: 0;
    transform: translateX(0)
  }

  100% {
    opacity: 1;
    transform: translateX(10px)
  }
}

@keyframes showToLeft {
  0% {
    opacity: 0;
    transform: translateX(0)
  }

  100% {
    opacity: 1;
    transform: translateX(-10px)
  }
}


.wrapper {
  position: relative;
}

.nav {
  display: flex;
  height: 77px;
  padding: 0 32px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
}

.wrapper .nav a {
  color: #FFF;
}

.banner {
  color: #FFF;
  text-align: center;
  padding-bottom: 12px;
}

.banner-video {
  width: 100%
}

.banner-video video {
  width: 100%;
  height: 100%;
}

.banner-title {
  position: absolute;
  width: calc(100% - 10px);
  top: 80px
}

.banner-title h1 {
  font-family: Inter;
  font-size: 148px;
  font-weight: 700;
  line-height: 128px;
  letter-spacing: -0.08em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
}

.banner-title h1.redefine {
  margin-left: 24px;
  -webkit-animation: 2s showToRight linear forwards;
  animation: 2s showToRight linear forwards;
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}

.banner-title h1.chemical {
  margin-left: 510px;
  -webkit-animation: 2s showToLeft linear forwards;
  animation: 2s showToLeft linear forwards;
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}

.banner-title h1.synthesis {
  margin-left: 121px;
  -webkit-animation: 2s showToRight linear forwards;
  animation: 2s showToRight linear forwards;
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}

.banner-desc {
  width: 100%;
  position: absolute;
  bottom: 20px;
  opacity: 0;
  -webkit-animation: 1s show linear forwards;
  animation: 1s show linear forwards;
  -webkit-animation-delay: 5s;
  animation-delay: 5s
}

.banner-desc h5 {
  font-family: Inter;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.04em;
  text-align: left;
  text-transform: uppercase;
  text-align: center;
  margin-top: 103px;
}

.banner-desc p {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  width: 936px;
  margin: 12px auto;
}

.banner-desc .discovery-button {
  border-radius: 100px;
  background: #FFF;
  border: none;
  width: 124px;
  height: 40px;
  margin: 24px auto;
  display: block;
  color: #000;
  line-height: 40px;
  text-decoration: none;
}

div {
  position: relative;
  user-select: none;
}

#sticky-block {
  padding-top: 40px;
  position: sticky;
  width: calc(100% - 80px);
  ;
  height: calc(60vh + 180px);
  top: 80px;
  left: 40px
}

#slogan-block {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: linear-gradient(266.35deg, #118fde 0, #203db4 50%, #118fde);
  margin-bottom: 20px;
  border-radius: 12px;
  background-size: 200% 100%;
  /* -webkit-animation: linearGradient linear infinite 4s;
  animation: linearGradient linear infinite 4s; */
}

#scroll-block {
  width: 100%;
  height: 150vh;
  position: relative;
}

.logo-colored {
  display: none;
  float: left;
}

#slogan-block img {
  position: absolute;
  bottom: 10%;
  left: 50%;
}

.slogan span {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  display: inline-block;
  transform-style: preserve-3d;
  text-transform: uppercase;
  line-height: 24px
}

.carousel-list {
  height: 50vw;
  position: relative;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  width: 50vw;
}

.carousel-item {
  background: #019CE5;
  transform: translate(50%, 50%) translate3d(0px, 148px, 148px);
  transform-origin: 50% 50%;
  position: absolute;
  width: 300px;
  height: 200px;
}

#container {
  height: 50vw;
  position: relative;
}

#container .text span {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: #FFF;
}


.stats-data {
  height: 132px;
  background: linear-gradient(263.93deg, #019CE5 17.25%, #1E20A5 70.7%, #611A83 111.86%);
  border-radius: 12px;
  display: flex;
  padding: 0 36px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.data-item {}

.data-item p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #FFF;
  margin-bottom: 12px;
  opacity: 0.4;
}

.data-item h6 {
  font-family: Inter;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.04em;
  color: #FFF;
  text-align: center;
}

.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1px;
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  margin: 24px 0;
  border-left: none;
  border-right: none;
}

.charts .chart-item {
  background: #FFF;
  padding: 40px;
}

.chart-item img {
  width: 80%;
}

.chart-item h3 {
  /*max-width: 448px;*/
  /*height: 272px;*/
  font-family: Inter;
  font-size: 68px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1px;
  text-align: left;
  text-transform: uppercase;
  padding-top: 20px;
  margin-bottom: 40px;
  background: linear-gradient(269.19deg, #1E20A5 23%, #601882 45%, #601882 55%, #1E20A5 77%);
  background-size: 200% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  /*-webkit-animation: linearGradient linear infinite 4s;*/
  /*animation: linearGradient linear infinite 4s;*/
}

.chart-item h5 {
  font-family: Inter;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -1px;
  text-align: left;
  margin-bottom: 18px;
}


.chart-item p {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -1px;
  text-align: left;
  color: #999999;
}

.circle-block {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  margin-bottom: 80px
}

.circle-block img {
  margin: 0 auto;
  display: block;
  width: 100%;
}

.circle-block .circle {
  position: absolute;
  top: -40px;
  width: 100%;
}

.circle-block-desc {
  font-family: Inter;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -2px;
  text-align: left;
  margin: 0 40px;
  text-transform: uppercase;
}

.journey-block {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-top: 98px;
  display: flex;
}

.journey-block .hide {
  display: none;
}

.journey-block ul.journeys::-webkit-scrollbar {
  display: none;
}

.journey-block .journeys {
  overflow-x: auto;
  display: flex;
  height: 627px;
  position: relative;
  scroll-behavior: smooth;
}

.journey-block #history-container {
  margin: 40px;
}

.journey-block #history {
  width: 100%;
}

.journey-block .journeys .journeys-title {
  position: absolute;
  top: 56px;
  left: 38px;
}

.journey-block .journeys .our-vision {
  position: absolute;
  top: 356px;
  left: 38px;
}

.journey-block .scroller {
  width: 140px;
  border-left: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 56px 36px;
  box-sizing: border-box;
}


.journey-block .scroller img {
  width: 22px;
  display: block;
}

.journey-block .journeys .journey {
  width: 263px;
  padding: 46px 38px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-block .journeys .journey:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}

.journey .top {
  height: 120px;
  display: flex;
  align-items: center;
}

.journey .center {
  height: 160px;
  font-family: Inter;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.04em;
  text-align: left;
}

.journey .bottom .month {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: uppercase;
}

.journey h2 {
  font-family: Inter;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.04em;
  text-align: left;
  background: linear-gradient(269.19deg, #019CE5 3%, #1E20A5 23%, #601882 45%, #601882 55%, #1E20A5 77%, #019CE5 97%);
  background-size: 200% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  -webkit-animation: linearGradient linear infinite 4s;
  animation: linearGradient linear infinite 4s;
}

.form-block {
  margin: 40px;
}

.form-block form {
  height: 900px;
  background: linear-gradient(266.35deg, #118fde 0, #203db4 50%, #118fde);
  margin: 32px 0;
  border-radius: 12px;
  padding: 28px;
  background-size: 200% 100%;
  /* -webkit-animation: linearGradient linear infinite 4s;
  animation: linearGradient linear infinite 4s; */
}

.form-block form h1 {
  font-family: Inter;
  font-size: 148px;
  font-weight: 700;
  line-height: 128px;
  letter-spacing: -0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 32px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.form-item {
  flex: 1;
  margin: 0 10px;
}

.form-item label {
  display: block;
  margin-bottom: 8px;
  color: #FFF;
}

.form-item input {
  width: 100%;
  height: 64px;
  border-radius: 6px;
  border: 2px solid #ffffff2e;
  background: transparent;
  padding: 0 12px;
  color: #FFF;
  box-sizing: border-box;
}

.form-item textarea {
  width: 100%;
  height: 184px;
  border-radius: 6px;
  border: 2px solid #ffffff2e;
  background: transparent;
  padding: 8px 12px;
  color: #FFF;
  box-sizing: border-box;
}

.form-agree {
  color: #ffffff2e;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 12px;
  margin-top: 16px;
}

.form-agree input[type="checkbox"]::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #2045b8;
  border-radius: 6px;
  outline: none;
  border: 1px solid #ffffff2e;
}

.form-agree input[type="checkbox"] {
  height: 24px;
  margin-right: 22px;
}

.form-agree input[type="checkbox"]:checked {
  background-color: #2045b8;
  border-color: #FFF;
  border-radius: 6px;
}

.form-agree input[type="checkbox"]:checked::before {
  content: "\2713";
  color: #2045b8;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
}

.form-button {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 68px 12px 0;
}

.form-button span {
  font-family: Inter;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.04em;
  text-align: left;
  text-transform: uppercase;

}

.form-button button {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  border: none;
  background: #459ADF;
  margin-left: 32px
}

.form-button button img {
  width: 48px;
}

@keyframes linearGradient {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200% 0%;
  }
}

@media (max-width: 1300px) {
  .banner h1 {
    font-size: 96px;
    line-height: 96px;
  }

  .banner h1.chemical {
    margin-left: 348px;
  }

  .banner h5 {
    margin-top: 20px;
  }

  .banner p {
    font-size: 16px;
    line-height: 16px;
  }

  .data-item h6 {
    font-size: 32px;
  }

  .stats-data {
    padding: 0 12px;
  }

  .form-block form h1 {
    font-size: 108px;
    line-height: 108px;
  }
}

@media (max-width: 960px) {
  .banner h1 {
    font-size: 60px;
    line-height: 60px;
  }

  .banner h1.chemical {
    margin-left: 220px;
  }

  .banner h1.synthesis {
    margin-left: 64px
  }

  .banner h5 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 36px;
  }

  .banner p {
    max-width: 700px;
    font-size: 16px;
    line-height: 16px;
  }

  .data-item h6 {
    font-size: 32px;
  }

  .stats-data {
    padding: 0 12px;
  }

  .chart-item h3 {
    font-size: 48px;
    line-height: 48px;
  }

  .slogan span {
    font-size: 32px;
    line-height: 32px;
  }

  .form-block form h1 {
    font-size: 98px;
    line-height: 98px;
  }
}

@media (max-width: 768px) {
  .wrapper .nav {
    padding: 0 12px;
    height: 42px;
  }

  .wrapper .nav img {
    height: 24px;
  }

  .banner h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .banner h1.chemical {
    margin-left: 176px;
  }

  .banner h1.synthesis {
    margin-left: 52px
  }

  .banner h5 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 36px;
  }

  .banner p {
    max-width: 500px;
    font-size: 14px;
    line-height: 14px;
  }

  .banner .discovery-button {
    height: 32px;
    line-height: 32px
  }

  .data-item h6 {
    font-size: 22px;
  }

  .chart-item h3 {
    font-size: 28px;
    line-height: 28px;
  }

  .chart-item h5 {
    font-size: 24px;
    line-height: 24px;
  }
}

/* @media (max-width: 580px) {

  .banner h1 {
    font-size: 18px;
    line-height: 18px;
  }

  .banner h1.redefine {
    margin-left: 12px;
  }

  .banner h1.chemical {
    margin-left: 86px;
  }

  .banner h1.synthesis {
    margin-left: 22px
  }

  .banner h5 {
    font-size: 14px;
    line-height: 36px;
    margin-top: 6px;
  }

  .banner p {
    width: auto;
    font-size: 10px;
    line-height: 10px;
    margin: 6px;
  }

  .banner-title {
    top: 38px;
  }

  .banner-desc {
    bottom: 60px;
  }

  #sticky-block {
    width: calc(100% - 40px);
    height: calc(60vh + 180px);
    padding-top: 10px;
    left: 20px
  }

  #scroll-block{
    height: 60vh
  }

  .slogan span {
    font-size: 18px;
    line-height: 18px
  }

  .stats-data {
    padding: 0 6px;
  }

  .banner .discovery-button {
    height: 18px;
    line-height: 18px;
    margin: 3px auto;
    font-size: 10px;
  }

  #slogan-block{
    height: 40vh;
  }

  .data-item p {
    font-size: 12px;
    line-height: 12px;
  }

  .data-item h6 {
    font-size: 12px;
    line-height: 12px;
  }

  .charts .chart-item {
    padding: 12px;
  }

  .chart-item h3 {
    font-size: 18px;
    line-height: 18px;
    height: 36px;
    margin-bottom: 0px;
  }
  .form-row{
    flex-direction: column;
  }
  .form-button{
    margin: 0;
  }

  .chart-item h5 {
    font-size: 16px;
    line-height: 16px;
  }

  .chart-item p {
    font-size: 14px;
    line-height: 14px;
  }

  .circle-block {
    padding: 20px 0;
  }

  .circle-block-desc {
    font-size: 24px;
    line-height: 24px;
  }

  .journey-block {
    margin-top: 40px;
  }

  .journey h2 {
    font-size: 32px;
    line-height: 32px;
  }

  .journey .bottom .month {
    font-size: 22px;
    line-height: 22px;
  }

  .form-block {
    margin: 10px;
  }

  .form-block form h1 {
    font-size: 20px;
    line-height: 20px;
  }

  .form-button span {
    font-size: 32px;
    line-height: 32px;
  }

  .form-button button {
    width: 60px;
    height: 60px;
  }
  .form-button button img {
    width: 28px;
  }

} */

@media (max-width: 750px) {
  .wrapper {
    /* padding: 0 .12rem; */
  }

  .form-block form h1 {
    font-size: .38rem;
    line-height: 1.2;
    margin-bottom: .3rem;
  }

  .form-block {
    margin: 0;
    padding: 0 .12rem;
  }

  .form-block form {
    height: auto;
    padding: .26rem;
    margin: 0;
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: .1rem;
    margin-bottom: .1rem;
  }

  .form-item {
    flex: none;
    margin: 0;
  }

  .form-item input {
    height: .34rem;
  }

  .form-item textarea {
    height: .58rem;
  }

  .form-item label {
    font-size: .16rem;
  }

  .form-agree {
    margin-left: 0;
    margin-top: .1rem;
    align-items: flex-start;
  }

  .form-agree span {
    font-size: .12rem;
    flex: 1;
    margin-left: .1rem;
  }

  .form-agree input[type="checkbox"] {
    height: .2rem;
    width: .2rem;
    margin-right: 0;
  }

  .form-agree input[type="checkbox"]::before {
    width: .2rem;
    height: .2rem;
    line-height: .2rem;
    font-size: .14rem;
    border-radius: 0 !important;
  }

  .circle-block-desc {
    font-size: .22rem;
    line-height: 1.2;
    margin: .35rem 0;
    padding: 0 .12rem;
  }

  .circle-block {
    padding: 0;
    margin-bottom: 0;
  }

  .journey-block {
    margin-top: 0;
    padding: .4rem .12rem;
  }

  .journey-block #history-container {
    margin: 0;
  }

  .circle-block img {
    height: 2.53rem;
    object-fit: cover;
  }

  .circle-block .circle {
    top: 42%;
    transform: translateY(-50%);
  }

  .circle-block .circle svg {
    width: 96% !important;
  }

  .charts {
    margin: .2rem 0;
    grid-template-columns: 1fr;
    gap: 0;
    border: none;
    padding: 0 .12rem;
    background: #fff;
  }

  .chart-item h3 {
    font-size: .38rem;
    line-height: 1.2;
    padding-top: 0;
    margin-bottom: .22rem;
  }

  .chart-item h5 {
    font-size: .22rem;
    line-height: 1.2;
    margin-bottom: .16rem;
  }

  .chart-item p {
    font-size: .16rem;
    line-height: 1.2;
  }

  .charts .chart-item {
    padding: .28rem 0;
    border-bottom: 1px solid #e5e5e5;
  }

  #scroll-block {
    height: auto;
    margin-top: .2rem;
    padding: 0 .12rem;
  }

  #sticky-block {
    padding-top: 0;
    height: auto;
    position: initial;
    width: 100%;
  }

  .stats-data {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    height: auto;
    padding: 0 .18rem;
  }

  .banner-title {
    top: 100px;
  }

  .data-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: .24rem 0;
  }

  .data-item+.data-item {
    border-top: 1px solid rgba(255, 255, 255, .5);
  }

  .data-item p {
    width: .8rem;
    text-align: left;
    font-size: .12rem;
    line-height: 1.2;
    opacity: 1;
    margin-bottom: 0;
  }

  .data-item h6 {
    flex: 1;
    order: -1;
    font-size: .42rem;
    line-height: 1;
    text-align: left;
  }

  #slogan-block {
    height: auto;
    padding: .38rem;
    text-align: center;
    margin-bottom: .2rem;
  }

  #slogan-block img {
    display: none;
  }

  .slogan+.slogan {
    margin-top: .38rem;
  }

  .slogan {
    color: #fff;
    font-size: .22rem;
    text-transform: uppercase;
    font-weight: bold;
  }

  .banner-video {
    height: 100vh;
  }

  .banner-video video {
    object-fit: cover;
  }

  .banner-title {
    width: 100%;
    padding: 0 .3rem;
    top: 20%;
  }

  .banner h1 {
    opacity: 1;
    font-size: .34rem;
    line-height: 1;
    letter-spacing: 0;
    margin-left: 0 !important;
    animation: none !important;
  }

  .banner {
    padding-bottom: 0;
  }

  .banner h1.chemical {
    text-indent: 1.2em;
  }

  .banner #hide-trigger {
    display: none;
  }

  .banner-title .hide {
    margin-top: .1rem;
    font-size: .14rem;
    line-height: 1.2;
    text-align: left;
  }

  .banner h5 {
    /*display: none;*/
    margin-top: 0;
    margin-bottom: .12rem;
    font-size: .14rem;
    line-height: 1.2;
    text-align: center;
  }

  .banner-desc {
    width: 100%;
    bottom: 5%;
    animation: none;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
  }

  .banner .discovery-button {
    margin: 0 auto;
  }

  .journey-block #history-container {
    display: none;
  }

  .journey-block .hide {
    display: block;
  }

  .journey-block .hide .text {
    font-size: .28rem;
    font-family: Inter;
    font-weight: 700;
    background: linear-gradient(269.19deg, #1E20A5 23%, #601882 45%, #601882 55%, #1E20A5 77%);
    background-size: 200% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: .3rem;
    text-align: center;
  }

  .journey-block .hide img {
    max-width: 100%;
  }
}