/* start global */
@font-face {
  font-family: Inter;
  src: url("Inter.ttf");
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
    scroll-behavior: smooth;
}
body{
  background-color: #0B0B0F;
  color: #fff;
  font-family: Inter;
}
section{
  padding: 15px;
}
.bttn{
  background: linear-gradient(225deg, #18C8FF 14.89%, #933FFE 85.85%);
  padding: 12px 26px 12px 28px;
  border-radius: 10px;
  border: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.3s ease-in-out;
  width: fit-content;
  text-decoration: none;
  color: #fff;
}
.bttn:hover{
  filter: hue-rotate(30deg);
}
h1{
  font-size: 73px;
  font-weight: 900;
}
h2{
  font-size: 50px;
  font-weight: 900;
}
h3{
  font-size: 32px;
  font-weight: 900;
}
p{
  color: #898CA9;
  font-size: 20px;
  line-height: 150%;
}
.mainContainer{
  overflow: hidden;
}
/* end global */

/* start navbar */
.navContainer .logoContainer{
  width: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navContainer .logoContainer img{
  width: 100%;
}
.navContainer{
  position: fixed;
  background-color: #0B0B0F;
  display: flex;
  justify-content: space-around;
  padding: 25px;
  z-index: 1;
  width: 100%;
}
.navContainer .menu{
  display: flex;
  gap: 25px;
  padding: 0 25px;
}
.navContainer .menu a{
  font-weight: 700;
  font-size: 14;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.navContainer .menu a::before{
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px #fff;
  transition: border 0.3s ease-in-out;
  position: absolute;
  transition: width 0.3s ease-in-out;
}
.navContainer .menu a:hover::before{
  border-width: 1px;
  width: 100%;
}
.burger-menu{
  display: none;
}
/* end navbar */

/* start main section */
.mainSection{
  margin-top: 92px;
  position: relative;
  height: 52vw;
  background-image: url("mainSectionBackground.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.backgroundGIF{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.backgroundGIF img{
  width: 100%;
}
.mainSectionText{
  width: 55%;
  height: 80%;
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding-right: 10vw;
}
.mainSectionText .biggerText{
  font-size: 20px;
  font-weight: bold;
  color: #CCCCCC;
}
.mainSectionText p{
  font-size: 16px;
}
/* end main section */

/* start second section */
.secondSection{
  display: flex;
  gap: 25px;
  justify-content: space-around;
  align-items: center;
}
.secondSection > div:not(.secondSectionImageContainer){
  width: calc(50% - 50px);
  max-width: 574px;
  height: 100%;
  display: flex;
  justify-content: center;
}
.secondSectionImageContainer img{
  width: 100%;
  transform: scaleX(-1);
  border-radius: 20px;
  max-height: 550px;
  object-fit: cover;
}
/* end second section */

/* start video section */
.videoSection{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 75px 15px;
}
/* end video section */

/* start how to buy */
.howToBuySection{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.howToBuyContainer{
  display: flex;
  justify-content: space-around;
  gap: 25px;
}
.howToBuyContainer > div{
  width: 50%;
  max-width: 484px;
}
.buyEthereumText{
  text-align: start;
}
.buyEthereumText span{
  color: #7BE195;
  font-weight: 900;
}
.coinPricesCard{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #16161C;
  border-radius: 25px;
  padding: 10px;
}
.coinPricesCard .actions{
  display: flex;
  padding: 10px;
  justify-content: center;
  gap: 25px;
  position: relative;
}
.coinPricesCard .actions .item{
  font-weight: 700;
  padding: 15px;
  position: relative;
  cursor: pointer;
}
.coinPricesCard .actions .item::before{
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 2px #fff;
  transition: border 0.3s ease-in-out;
  position: absolute;
  transition: width 0.3s ease-in-out;
  border-radius: 50px 50px 0 0;
}
.coinPricesCard .actions .item.active::before{
  width: 100%;
}
.coinPricesCard .actions .gearIcon{
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
.coinPricesCard .connectButton{
  padding: 25px;
  border-radius: 15px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  background-color: #fff;
  text-decoration: none;
  color: #000;
}
.coinPricesCard .connectButton:hover{
  opacity: 0.9;
}
.coinsContainer{
  display: flex;
  flex-direction: column;
  background-color: #2d2f38;
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
}
.coinsContainer .currencyContainer{
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  padding: 25px 15px;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: #16161C;
  gap: 15px;
  flex-wrap: wrap;
}
.coinsContainer .currencyContainer .top{
  /* height: 50px; */
  display: flex;
  gap: 10px;
}
.coinsContainer .currencyContainer p{
  font-size: 15px;
}
.coinsContainer .currencyContainer .top .coinImage{
  width: 45px;
  height: 45px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
}
.coinsContainer .currencyContainer .top .coinImage.plus{
  background-color: #664AEB;
}
.coinsContainer .currencyContainer .top .coinImage > img{
  width: 55%;
  height: 55%;
}
.coinsContainer .currencyContainer .top .coinImage .small{
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 2px #16161C;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coinsContainer .currencyContainer .top .coinImage .small > img{
  width: 75%;
  height: 75%;
}
.coinsContainer .currencyContainer .top .coinText{
  display: flex;
  flex-direction: column;
  align-items: start;
}
.coinsContainer .currencyContainer .top .coinText .coinName{
  display: flex;
  gap: 10px;
  align-items: center;
}
.coinsContainer .currencyContainer .top .rightArrow{
  width: 20px;
  height: 20px;
}
.coinsContainer .currencyContainer .top .rightArrow img{
  width: 100%;
  height: 100%;
}
.coinsContainer .currencyContainer .currencyPrice,
.coinsContainer .currencyContainer .currencyInfo{
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}
.coinsContainer .currencyContainer .currencyInfo{
  align-items: start;
}
.coinsContainer .currencyContainer .currencyPrice{
  align-items: end;
}
.coinsContainer .currencyInfo .coinText{
  font-size: 20px;
}
.coinsContainer .currencyContainer .currencyPrice .top{
  font-size: 40px;
}

/* end how to buy */

/* start fourth section */
.fourthSection{
  padding: 100px 15px;
}
.fourthSection .deflationaryContainer{
  flex-direction: column;
  gap: 25px;
}
.fourthSection .secondSectionImageContainer{
  transform: scaleX(-1);
}
/* end fourth section */

/* start roadmap section */
.roadmapSection{
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
  background-color: #3C1174;
}
.roadmapSection .cardsContainer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.roadmapSection .cardsContainer .card{
  width: 27%;
  background-color: #1A1B23;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.roadmapSection .cardsContainer .card .cardNumber{
  background-image: url("roadmapNumbersBG.png");
  width: 73px;
  height: 80px;
  background-size: 100% 100%;
  font-size: 48px;
  font-weight: 700;
  line-height: 87px;
  color: #CD77F6;
}
.roadmapSection .subtitle{
  margin-bottom: 50px;
}
.roadmapSection .cardsContainer .card .cardText > *{
  display: inline;
}
.roadmapSection .cardsContainer .card .cardText .highlightedText{
  font-weight: 900;
  font-size: 16px;
}
.roadmapSection .cardsContainer .card .cardText p{
  font-size: 16px;
}
/* end roadmap section */

/* start money image section */
.moneyImageSection{
  padding: 0;
}
.moneyImageSection img{
  width: 100%;
}
/* end money image section */

/* start do you even meme section */
.doYouEvenMemeSection{
  flex-wrap: wrap;
}
/* end do you even meme section */

/* start what does kento mean section */
.whatDoesKentoMeanSection{
  background-color: #2B2C3B;
}
.whatDoesKentoMean{
  padding: 50px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.whatDoesKentoMean p{
  color: #fff;
  max-width: 900px;
}
.whatDoesKentoMean h3{
  color: #7BE195;
}
/* end what does kento mean section */

/* start who knows kento section */
.whoKnowsKentoSection{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.whoKnowsKentoSection .deflationaryContainer{
  text-align: start;
}
.whoKnowsKentoSection .secondSection{
  align-items: start;
}
.whoKnowsKentoSection .highlightedText{
  color: #fff;
  font-weight: 900;
}
.whoKnowsKentoSection .conclusionContainer{
  padding: 50px;
  background-color: #2B2C3B;
  border-radius: 15px;
  gap: 25px;
  display: flex;
  align-self: center;
  width: 80vw;
}
.whoKnowsKentoSection .conclusionContainer p{
  max-width: 1140px;
}
.whoKnowsKentoSection .bttn{
  align-self: center;
}
/* end who knows kento section */

/* start visit section */
.visitSection{
  background-color: #2B2C3B;
}
.visitSection .secondSection > div.deflationaryContainer{
  max-width: 350px;
}
.visitSection .bttn{
  width: 100%;
  font-size: 20px;
  font-weight: 700;
}
/* end visit section */

/* start footer */
footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 25px;
}
footer .socialIconsContainer{
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
footer .socialIconsContainer .icon{
  width: 50px;
  height: 50px;
}
footer .socialIconsContainer .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer p{
  font-size: 15px;
}
/* end footer */

/* start glowing */
.blueGlow, .kentoIsDeflationaryImage, .whyTheTaxImage, .utilityImage {
  position: relative;
}
.blueGlow::before, .kentoIsDeflationaryImage::before, .whyTheTaxImage::before, .utilityImage::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  transform: scale(1.5);
  opacity: 0.7;
}
.blueGlow::before {
  top: 100%;
  right: 0;
  box-shadow: 0 0 60px 30px #21907E, 0 0 100px 120px #21907E, 0 0 280px 90px #21907E;
}
.kentoIsDeflationaryImage::before {
  top: 50%;
  right: 50%;
  box-shadow: 0 0 60px 30px #FF29C3, 0 0 100px 120px #FF29C3, 0 0 280px 90px #174AFF;
}
.whyTheTaxImage::before {
  top: 0;
  left: 100%;
  transform: scale(2);
  box-shadow: 0 0 60px 30px #82392C, 0 0 100px 70px #D0A22C, 0 0 280px 90px #FF4117;
}
.utilityImage::before {
  top: 50%;
  right: 50%;
  box-shadow: 0 0 60px 30px #FF29C3, 0 0 100px 120px #174AFF, 0 0 280px 90px #174AFF;
}
.blueGlow.fourthSection.whoKnowsKentoSection::before {
  top: 0;
}
.blueGlow.fourthSection.whoKnowsKentoSection .secondSection.whyTheTaxImage::before {
  top: 50%;
  left: -5%;
  z-index: -1;
}
.fourthSection.whoKnowsKentoSection.utilityImage::before {
  top: 80%;
  right: 0;
  z-index: -1;
}
#historyOfKento.blueGlow::before {
  top: 20%;
  transform: scale(2);
}
/* end glowing */

/* start buy on mexc */
  section.butKentoOnMexc{
    margin-top: 92px;
    margin-bottom: -75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  section.butKentoOnMexc .mexcHeader{
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  section.butKentoOnMexc .mexcHeader .imageContainer{
    width: 40px;
    height: 40px;
  }
  section.butKentoOnMexc .mexcHeader .MexcIdentifying{
    display: flex;
    gap: 20px;
  }
/* end buy on mexc */

/* start responsive */
@media only screen and (max-width: 1000px){
  h1{
    font-size: 60px;
  }
  .mainSectionText{
    width: 65%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  section{
    padding: 25px;
  }
  .navContainer{
    justify-content: space-between;
  }
  .burger-menu{
    display: block;
  }
  .navContainer .menu {
    display: flex;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    flex-direction: column;
    position: fixed;
    top: 92px; /* adjust as needed */
    left: 0;
    z-index: 1;
    gap: 0;
    background-color: #0B0B0F; /* adjust as needed */
    padding: 0 25px;
    border: 1px solid #333; /* adjust as needed */
  }
  .navContainer .menu.show{
    display: flex;
    height: 100vh;
    padding: 25px;
  }
  .burger-menu span{
    transition: all 0.3s ease-in-out;
  }
  .navContainer .menu.show ~ .burger-menu > span:nth-of-type(1){
    transform: rotateZ(45deg) translateY(8px) translateX(7px);
    margin-top: -5px;
  }
  .navContainer .menu.show ~ .burger-menu > span:nth-of-type(3){
      opacity: 0;
  }
  .navContainer .menu.show ~ .burger-menu > span:nth-of-type(2){
      transform: rotateZ(-45deg) translateY(4px) translateX(-6px);
      margin-top: -5px;
    }
  .menu a {
    margin-bottom: 10px;
    height: 50px;
  }
  .burger-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }
  .burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
  }
  .mainSection{
    display: flex;
    flex-direction: column;
    height: unset;
    padding: 0;
    background-image: none;
  }
  .backgroundGIF{
    position: unset;
  }
  .backgroundGIF img{
    display: none;
  }
  .mainSectionText{
    float: none;
    width: 100%;
    padding: 25px;
  }
  .secondSection{
    flex-direction: column-reverse;
  }
  .secondSection > div:not(.secondSectionImageContainer){
    width: 100%;
  }
  .howToBuyContainer{
    flex-direction: column;
    align-items: center;
  }
  .howToBuyContainer > div{
    width: 100%;
  }
  .videoSection{
    padding: 25px;
  }
  .howToBuySection{
    gap: 25px;
  }
  .fourthSection{
    padding: 25px;
  }
  .whyTheTaxSection{
    flex-direction: column;
  }
  .roadmapSection .cardsContainer{
    flex-direction: column;
  }
  .roadmapSection .cardsContainer .card{
    width: 100%;
  }
  .roadmapSection .subtitle{
    margin-bottom: 0;
  }
  .whoKnowsKentoSection{
    gap: 25px;
  }
  .socialIconsContainer{
    gap: 15px;
  }
  .whoKnowsKentoSection .conclusionContainer{
    padding: 25px;
    width: 100%;
  }
  .blueGlow::before, .kentoIsDeflationaryImage::before, .whyTheTaxImage::before, .utilityImage::before {
    display: none;  
  }
  section.butKentoOnMexc{
    align-items: start;
  }
}
/* end responsive */