@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: milky;
  src: url('../font/milky.woff2');
}

:root {
  --theme: #090d19;

  --primary: #4279f1;
  --secondary: #fe7deb;

  --base: #fff;
  --light: #c9c9c9;

  touch-action: pan-x pan-y;
    height: 100%
}

* {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  color: var(--base);

  &:focus {
    outline: none;
  }
}

html,
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--theme);
  scroll-behavior: smooth;
}

.hero-text svg {
  font-family: sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 46%;
  top: 65%;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: 3s pulsate infinite alternate ease-in-out;
}

.hero-text svg text.animate-stroke {
  animation: stroke 4s;
  opacity: 0.2;
  font-weight: 900;
}

.hero-text svg text {
  text-transform: uppercase;
  animation: stroke 4s;
  stroke-width: 1.2;
  stroke: #4279f1;
  fill: transparent;
  font-size: 200px;
  display: inline-block;
  letter-spacing: 0px;
  opacity: 0;
}

h1,
h2 {
  font-family: Roboto, sans-serif;
  font-weight: 900 !important;
  font-size: 2.6rem !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-theme {
  background-color: var(--theme) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-base {
  color: var(--text) !important;
}

.text-light {
  color: var(--text) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}

.text-linear-primary {
  background: linear-gradient(to right, #4279f1 15%, #d0d1fd 50%);
  background: -webkit-linear-gradient(to right, #4279f1 15%, #d0d1fd 50%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-linear-secondary {
  background: linear-gradient(to right, #fe7deb 15%, #ffdcfc 50%);
  background: -webkit-linear-gradient(to right, #fe7deb 15%, #ffdcfc 50%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1350px !important;
  position: relative !important;
  z-index: 2 !important;
  padding: 0 25px !important;
  margin: 0 auto;
}

.button-base {
  border: 1px solid var(--primary);
  height: 48px;
  padding: 0 15px;
  color: var(--primary);
  border-radius: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}


.section-hero::before,
.hero-image::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(260deg,
      var(--primary) 0%,
      rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
  filter: blur(150px);
}

.section-hero:before {
  -webkit-filter: blur(150px);
  filter: blur(150px);
  top: 0;
  right: 0;
  width: 322px;
  height: 308px;
  margin-right: -5%;
  margin-top: -5%;
  z-index: 1;
}

.hero-image:before {
  background: linear-gradient(260deg,
      var(--secondary) 0%,
      rgba(115, 67, 210, 0) 100%);
  bottom: 0;
  left: 0;
  width: 120%;
  height: 120%;
  opacity: 0.3;
  margin-left: -50%;
  margin-bottom: -30%;
  z-index: -1;
}

.section-case::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(260deg,
      var(--secondary) 0%,
      rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
  filter: blur(150px);
  width: 100%;
  height: 120%;
  opacity: 0.2;
  right: 0;
  bottom: 0;
  margin-right: -40%;
  margin-bottom: -20%;
}

.section-resume::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(260deg,
      var(--primary) 0%,
      rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
  filter: blur(150px);
  width: 90%;
  height: 90%;
  opacity: 0.15;
  left: 0;
  bottom: 0;
  margin-left: -50%;
  margin-bottom: -20%;
}

@media (max-width: 600px) {
  .section-case::before {
    width: 400px;
    height: 400px;
  }

  .section-resume::before {
    width: 400px;
    height: 400px;
  }

  .hero-text svg {
    top: 35%;
    left: 50%;
  }

  .hero-text svg text.animate-stroke {
    opacity: 0.8;
  }

  .hero-text svg text {
    font-size: 270px;
    stroke-width: 2;
  }

  @keyframes pulsate {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      transform: translate(-50%, -50%) scale(1.02);
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 1;
  }

  100% {
    stroke-dashoffset: 100%;
    stroke-dasharray: 100% 0;
    stroke-width: 1;
  }
}

@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}

@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}

#dexscreener-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}

.logo {
  width: 234px;
  height: 56px;
  background: url('../images/basecoin-logocoin.png') no-repeat;
  background-size: contain;
}

.imgcont {
  position: relative !important;
}

.winner {
  position: absolute;
  bottom: 2px;
  left: 8px;
  color: #000
}

@keyframes smoothPulse {
  0% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) contrast(1);
  }

  50% {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) contrast(1.05);
  }

  100% {
    transform: scale(1) rotate(-1deg);
    filter: brightness(1) contrast(1);
  }
}

@keyframes simplePulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}


/* start chat iframe*******************************************************/
iframe {
  border: none;
}

.hIVGcj {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url("../../chat/chat.svg") center center no-repeat rgb(66, 121, 241);
  cursor: pointer;
  z-index: 999;
}

.intercom-h2f14q {
  z-index: 2147483000;
  position: fixed;
  bottom: 40px;
  right: 40px;
  transform-origin: right bottom;
  height: min(704px, 100% - 60px);
  min-height: 80px;
  width: 400px;
  max-height: 704px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
  border-radius: 16px;
  overflow: hidden;
  opacity: 1;
  transition: width 200ms ease 0s, height 200ms ease 0s, max-height 200ms ease 0s, transform 300ms cubic-bezier(0, 1.2, 1, 1) 0s, opacity 83ms ease-out 0s;
  pointer-events: all;
  transform: scale(0);
  opacity: 0;
  background: white;
}

.show-chat {
  transform: scale(1);
  opacity: 1;
}

.intercom-301xvt svg {
  width: auto;
  min-width: 12px;
  height: 12px;
}

.intercom-10ubxl7 {
  z-index: 2147483003;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 150ms ease 0s;
  display: flex;
  z-index: 99;
  position: absolute;
  right: 8px;
  top: 8px;
}

.intercom-10ubxl7:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
/*	chat iframe*/
.intercom-h2f14q {
  bottom: 0;
  right: 0;
  width: 100%;
  max-height: 80%;
}

.hIVGcj {
  bottom: 12px;
  right: 12px;
  width: 55px;
  height: 55px;
  z-index: 9;
  /*		display: none;*/
}
}
/* END CHAT iframe ******************************************************/

#footer {
  font-size: 14px;
}
.privacy {
  padding: 8px 20px;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
    justify-content: center;
    width: 160px;
  margin:0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.purchase {
  width:400px;
  height:620px;
  margin: 0 auto;
}

.flooz .col1 {
  max-width:66.6%;
  padding-right: 10px;
}
.flooz .col2 {
  width:33.3%;
}

.one {
   flex-direction: row-reverse;
    display: flex !important;
    justify-content: space-evenly;
}

.two {
   width: 53%;
    padding-right: 4%;
    margin-left: 18px;
    margin-right: 9px;
}

.five {
   font-size: 84px !important;
}

.dex {
   border-radius: 64px;
    padding: 13px 18px;
    position: absolute;
    border-radius: 55px;
    padding: 13px 18px;
    position: absolute;
    max-height: 660px;
    display: block;
    object-fit: contain;
    position: center;
    left: calc(50% + 0px);
    top: 50%;
    transform: translate(-50%, -50%);
}

.phone {
  display:block;width: 371px;border-radius:inherit;object-position:center;object-fit:contain;max-height: 660px;
}

.six {
   padding: 2.5rem;
}

.ani-text {
  font-size:150px !important;
}

.lightpurple {
  color: #d0d1fd;
}
@media (min-width: 1024px) {
  .lg\:text-4xl {
    line-height: 2.8rem !important;
  }    
}
@media (max-width: 1025px) {
  .logo {
    width: 150px;
    height: 36px;
    background: url('../images/basecoin-logocoin.png') no-repeat;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .imgcont {
    position: relative;
    padding-right: 20px;
    text-align: center;
    margin-left: auto;
  }

  .winner {
    position: absolute;
    bottom: -9px;
    left: 50%;
    color: #000;
    transform: translate(-50%, -50%);
  }
}

.pt-10p {
  padding-top: 10px;
}

.mb-20p {
  margin-bottom: 18px;
}

@media (min-width: 1280px) {
  #index .xl\:text-8xl {
    font-size: 6.5rem !important;
    line-height: 1;
    font-weight: 900;
  }
    .xl\:text-8xl {
      font-size: 6.5rem;
      line-height: 1;
      font-weight: 900;
    }
}

.hover\:text-sky-300:hover,
.green {
  --tw-text-opacity: 1;
  color: #4279f1 !important;
}

.bold {
  font-weight: bold;
}

@media (max-width: 1178px) {
  .flooz .col1 {
    max-width: 100%;
    padding-right: 0px;
  }

  .flooz .col2 {
    width: 100%;
    margin: 0 auto;
  }


  .mt-20.flooz {
    margin-top: .4rem;
  }
}
@media (max-width: 1024px) {
.flooz .col2 {
  width: 400px;
}
}

@media (max-width: 906px) {
      
  .one {
    flex-direction: column-reverse;
  }
  .two {
    width:100%;
  }
  .three {
     margin: 17px 0;
  }
  .dex {
        max-height: 409px;
          border-radius: 38px;
  }
  .phone {
    max-height: 400px;
  }

}

@media screen and (max-width: 767px) {

  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="password"] {
    font-size: 16px;
  }

    .five {
      font-size: 3rem !important;
    }

        .ani-text {
          font-size: 170px !important;
          display: none;
        }
}


@media (max-width: 450px) {
  .max-lg\:h-80 {
      height: auto !important;
    }

  .five {
    font-size: 44px !important;
  }
.six {
    padding: 0rem !important;
  }

    
  
  .winner {
    bottom: -8px;
    font-size: 12px;
  }

  h2 {
    font-size: 1.875rem !important;
  }
  h1 {
    font-size: 3rem !important;
  }

    .purchase {
      width: 330px;
      height: 620px;
    }

        .mb-20p {
          margin-bottom: 0px;
        }
        
}

.template_wrapper {
  background-color: white !important;
}