/* UI */
*{
  margin:0;
  padding: 0;
  box-sizing:border-box;
}
button{
  border:none;
  background:none;
  cursor:pointer;
}
a{
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
body{
  position:relative;
}
.solid-button{
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: var(--solid-button-bg, #F82097);
  color: var(--solid-button-color, #fff);
  padding: 4px 7px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  text-align: center;
}
.outline-button{
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary, #F82096);
  border: 1px solid var(--secondary, #F82096);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 7px 14px;
  width: fit-content;
}
/* UI END */
/* WAVE EFFECT */
.wave-effect-svg{
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150%;
  transform: rotateY(-30deg) rotateZ(-10deg);
  -webkit-transform: rotateY(-30deg) rotateZ(-10deg);
  -moz-transform: rotateY(-30deg) rotateZ(-10deg);
  -ms-transform: rotateY(-30deg) rotateZ(-10deg);
  -o-transform: rotateY(-30deg) rotateZ(-10deg);
}

.wave-effect-path{
  stroke: black;
  stroke-width: 1px;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 100 5;
  fill: linear-gradient(#12326B, #F82097);
}
.wave-container{
  position:relative;
  height: 100%;
  width: 100%;
}
.canvas-wave-effect{
  width: 4000px;
  height: 600px;
}
/* WAVE EFFECT END*/
/* HEADER */
.header-container{
  display:flex;
  justify-content: space-between;
  padding: 14px;
  position:sticky;
  top: 0;
  background: #FFF;
  z-index: 100;
  box-shadow: 0px 2px 10px 0px rgba(186,186,186,0.3);
  align-items: center;
}
.header-menu-container{
  display:flex;
  gap:21px;
}
.header-left{
  display:flex;
  align-items:center;
  gap:21px;
}
.header-logo-container{
  max-width:90px;
}
.header-logo-container > img{
  width: 100%;
  height: 100%;
}
.header-menu-item{
  font-family:'Hind', sans-serif;
  font-size: 14px;
  color: var(--gray-600, 475467);
  font-weight: 500;
  cursor:pointer;
}
/* HEADER END */
/* MAIN SECTION */
.main-section-container{
  position:relative;
  width: 100%;
  height: 57vh;
  overflow: hidden;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wave-background-container{
  position:absolute;
  width:100%;
  height:100%;
  transform: translate(-50%,0);
  top:0;
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
}
.main-section-label{
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: var(--text, #11181C);
  text-align:center;
  max-width: 650px;
  padding-bottom: 60px;
  z-index: 10;
}
.highlight-text{
  background: var(--text-highlighted, #F82097);
  padding: 4px 3px 0 4px;
  color: var(--negative-text, #FFF);
}
/* MAIN SECTION END*/
/* TEXT BANNER */
.text-banner-container{
  background: var(--text-banner-bg, #12326B);
  font-family: 'Hind', sans-serif;
  color: var(--text-banner-color, #FFF);
  text-align:center;
  padding: 60px 0;
  display:flex;
  flex-direction: column;
  gap: 7px;
}
.text-banner-label{
  font-size: 40px;
  font-weight: 600;
}
.text-banner-caption{
  font-size: 30px;
  font-weight: 500;
}
/* TEXT BANNER END */
/* STATISTICS SECTION */
.statistics-section-container{
  padding: 89px 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  gap: 28px;
}
.statistics-section-header{
  display:flex;
  gap: 7px;
  max-width: 1250px;
}
.statistics-section-label{
  font-family: 'Hind', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--text, #11181C);
  max-width: 490px;
}
.recommend-banner-img-container{
  max-width: 200px;
}
.recommend-banner-img-container img{
  width: 100%;
}
.statistics-section-body{
  display:flex;
  gap: 21px;
}
.statistic-item-container{
  width: 200px;
  height: 175px;
  background: var(--stat-item-bg, #F0F0F0);
  font-family: 'Hind', sans-serif;
  color: var(--text, #11181C);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statistic-item-container:hover{
  background: var(--stat-item-bg, #F82097);
  color: var(--text, #fff);
  --i: -1;
  mask-position: 0 0;
}
.statistic-intro-label{
  font-size: 15px;
  font-weight: 400;
}
.statistic-main-label{
  font-size: 42px;
  font-weight: 600;
}
.statistic-label{
  font-size: 20px;
  font-size: 500;
}
.statistic-item-left{
  mask:    linear-gradient(135deg,#000c 40%,#000,#000c 60%)    100% 100%/240% 240%;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}
.statistic-item-center{
  mask:    linear-gradient(135deg,#000c 40%,#000,#000c 60%)    100% 100%/240% 240%;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}
.statistic-item-right{
  mask:    linear-gradient(135deg,#000c 40%,#000,#000c 60%)    100% 100%/240% 240%;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}
/* STATISTICS SECTION END */
/* FEATURES SECTION */
.features-section-container{
  display:flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 40px;
}
.feature-chip{
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary, #F82097);
  background: var(--secondary-50, #FFE7F4);
  padding: 4px 14px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.features-label{
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--text, #101828);
}
.features-caption{
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--default-500, #71717A);
}
.features-img-container{
  max-width: 820px;
  padding: 0 21px;
}
.features-img-container > img{
  width: 100%;
  height: 100%;
}
/* FEATURES SECTION END */
/* RECOMEND BANNER SECTION */
.recomend-banner-container{
  margin: 89px 0;
  padding: 49px 0;
  background: #F4F4F4;
  display:flex;
  flex-direction: column;
  gap: 21px;
  align-items: center;
}
.recommend-text{
  font-family: 'Hind', sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--text, #11181C);
  max-width: 1000px;
  text-align: center;
}
.recommend-portrait-container{
  display:flex;
  flex-direction: column;
  align-items:center;
}
.recommend-portrait-img{
  max-width: 100px
}
.recommend-portrait-img > img{
  width: 100%;
  height: 100%;
}
.recommend-portrait-label{
  font-family: 'Hind', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text, #11181C);
}
.recommend-portrait-caption{
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text, #11181C);
}
/* RECOMEND BANNER SECTION END */
/* BINANCE SECTION */
.binance-section-container{
  display:flex;
  align-items:center;
  margin: 0 auto;
  max-width: 1200px;
}
.binance-logo{
  width: 250px;
}
.binance-info-label{
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--text, #101828);
}
.binance-info-caption{
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text, #475467);
}
.binance-img-subsection{
  max-width: 600px;
}
.binance-img-subsection > img{
  width: 100%;
  height: 100%;
}
.binance-informative-subsection{
  display:flex;
  flex-direction:column;
  gap: 21px;
}
/* BINANCE SECTION END */
/* FAQ SECTION */
.faq-section-container{
  display:flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.faq-section-label{
  font-family: 'Hind', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--text, #27272A);
}
.faq-section-caption{
  font-family: 'Hind', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--default-500, #71717A);
}
.faq-item-container{
  border-bottom: 1px solid var(--lines, #E4E4E7);
  padding-bottom: 14px;
}
.faq-items-container{
  max-width: 1200px;
  padding: 28px 21px 0;
  display:flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.faq-item-header-container{
  display:flex;
  justify-content: space-between;
}
.faq-item-header-label{
  font-family: 'Hind', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--default-800, #27272A);
}
.faq-item-caption{
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--default-800, #71717A);
}
.faq-item-header-button{
  color: var(--secondary, #F82097);
  border: 1px solid var(--secondary, #F82097);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  height: 20px;
  width: 20px;
  display:flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  cursor: pointer;
}
/* FAQ SECTION END */
/* FOOTER SECTION */
.footer-container{
  padding: 100px 0;
  display:flex;
  flex-direction: column;
  gap: 70px;
}
.footer-top-section-label{
  font-family: 'Hind', sans-serif;
  font-weight: 500;
  font-size: 49px;
  color: var(-text, #101828);
}
.footer-top-section{
  display:flex;
  gap: 21px;
  justify-content: center;
  background-image: url(/img/contact_bg_svg.svg);
  background-repeat: repeat-x;
  background-position: bottom;
}
.footer-form-container{
  display:flex;
  flex-direction: column;
  gap: 7px;
}
.input-flex-container{
  display:flex;
  justify-content: space-between;
  gap: 21px;
}
.input-wrapper{
  display:flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}
.input-label{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text, #344054);
}
input{
  border: 1px solid var(--stroke, #D0D5DD);
  background: var(--input-bg, #FFF);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  height: 35px;
  width: 100%;
  padding: 0 8px;
  font-family: 'Inter' ,sans-serif;
}
textarea{
  width: 100%;
  resize: none;
  border: 1px solid var(--stroke, #D0D5DD);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-family: 'Inter' ,sans-serif;
  padding: 8px;
}
.footer-top-right-section{
  max-width: 550px;
}
.footer-top-right-section > img{
  width: 100%;
  height: 100%;
}
.footer-bottom-section{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
.footer-trx-logo-container{
  width: 100px;
}
.footer-trx-logo-container > img{
  width: 100%;
  height: 100%;
}
.footer-menu-container{
  display:flex;
  gap: 21px;
}
.footer-menu-item{
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text, #475467);
  cursor: pointer;
}
.footer-bottom-container{
  display:flex;
  justify-content: space-between;
}
.footer-bottom-container-caption{
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text, #667085);
  font-size: 16px;
}
/* FOOTER SECTION END */
/* SHAPES */
.shapes-container{
  position:absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left:0;
}
.trx-shape{
  position:absolute;
  --shape-color: #F82097;
  --shape-size: 15px;
  --shape-size-triangle: 8px;
  --shape-size-triangle-border: 4px;
  width: var(--shape-size);
  height: var(--shape-size);
  transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);
  -webkit-transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);
  -moz-transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);
  -ms-transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);
  -o-transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);
  z-index: 50;
}
.trx-shape::after,
.trx-shape::before{
  content: '';
  width: 0;
  height: 0;
  border:unset;
}
.trx-shape-c{
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid var(--shape-color);
}
.trx-shape-r{
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border: 3px solid var(--shape-color);
}
.trx-shape-t{
  width: 0;
  height: 0;
  border-left: var(--shape-size-triangle-border) solid transparent;
  border-right: var(--shape-size-triangle-border) solid transparent;
  border-bottom: var(--shape-size-triangle) solid var(--shape-color);
  transform: translate(50%,0);
  -webkit-transform: translate(50%,0);
  -moz-transform: translate(50%,0);
  -ms-transform: translate(50%,0);
  -o-transform: translate(50%,0);
}
.trx-shape-t::after{
  content: '';
  width: 0;
  height: 0;
  border-left: var(--shape-size-triangle-border) solid transparent;
  border-right: var(--shape-size-triangle-border) solid transparent;
  border-bottom: var(--shape-size-triangle) solid var(--shape-color);
  position:absolute;
  transform: translate(30%, 150%);
  -webkit-transform: translate(30%, 150%);
  -moz-transform: translate(30%, 150%);
  -ms-transform: translate(30%, 150%);
  -o-transform: translate(30%, 150%);
  transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);;
  -webkit-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
  -moz-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
  -ms-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
  -o-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
}
.trx-shape-t::before{
  content: '';
  width: 0;
  height: 0;
  border-left: var(--shape-size-triangle-border) solid transparent;
  border-right: var(--shape-size-triangle-border) solid transparent;
  border-bottom: var(--shape-size-triangle) solid var(--shape-color);
  position:absolute;
  transform: translate(-130%, 150%);
  -webkit-transform: translate(-130%, 150%);
  -moz-transform: translate(-130%, 150%);
  -ms-transform: translate(-130%, 150%);
  -o-transform: translate(-130%, 150%);
  transition: all 0.5s cubic-bezier(0.16, -0.87, 0, 1.7);;
  -webkit-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
  -moz-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
  -ms-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
  -o-transition: all 0.5s cubic-bezier(0.99, -0.08, 0, 1.1);
}
@keyframes sway {
  0%, 100%{
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
}
  50% {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}
}
/* SHAPES END */
/* SCROLL EFFECTS */
.scroll-effect-jump-appears{
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
}
.scroll-effect-jump-appears.scrolled{
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
/* SCROLL EFFECTS END*/

@media (max-width: 600px) {
  .main-section-label{
    padding-top: 85px;
  }
}