@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100vh;
  width: 100vw;
}
body {
  width: 100%;
  height: 100%;
  background: var(--page-color);
  overflow-x: hidden;
}
.FullPageLoder {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgb(5, 5, 5);
  z-index: 9999;
}

/* Rotating circle */
.PageLoderCircle {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pageLoderImgBox {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}
.pageLoderImgBox img {
  width: 100%;
}
.FullPageLoder .PageLoderCircle span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 10px solid aquamarine;
  border-bottom: 10px solid aquamarine;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pageLoderspin 1s linear infinite;
}
@keyframes pageLoderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

::selection {
  background: #00f583b7;
  color: rgb(22, 22, 22);
}
::-webkit-scrollbar {
  width: 12px;
  background: #1b1b1b;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #00f552);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #03c9ae);
}

:root {
  --Title-Font: Ubuntu;
  --page-color: #0f0f0f;
}

#main {
  width: 100vw;
  background: #0f0f0f;
  -webkit-tap-highlight-color: transparent;
  display: none; /*for loading animations*/
}

nav {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
  background-color: rgb(2, 2, 2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
nav a {
  color: rgb(231, 231, 231);
  text-decoration: none;
  font-size: 20px;
  font-family: var(--Title-Font);
  font-weight: 800;
}
nav .LogoBoxConent {
  width: 30rem;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .LogoBoxConent .logoBox {
  width: 70%;
  height: 80%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgb(26, 26, 26);
  border-radius: 8px;
}
nav .LogoBoxConent .logoBox h1 {
  color: white;
  font-family: var(--Title-Font);
  font-size: 3rem;
  filter: drop-shadow(0 0 10px #c5c5c552);
}
nav .LogoBoxConent .logoBox .logoBoxImg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .LogoBoxConent .logoBox .logoBoxImg img {
  width: 100%;
}
.page {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  border-bottom: 3px solid rgb(12, 12, 12);
}
.page1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page1 .page1HederTitle {
  margin-top: 100px;
  width: 80%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(179, 179, 179);
  border-radius: 20px;
  gap: 30px;
}
.page1 .page1HederTitle img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  animation: LeftSideImg 1s ease-in-out forwards;
}
@keyframes LeftSideImg {
  0% {
    transform: translateX(-300%);
    opacity: 0;
  }
}
.page1 .page1HederTitle h1 {
  font-family: var(--Title-Font);
  font-size: 3vw;
  animation: RightSideH1 1s ease-in-out forwards;
  background-image: url(https://media.istockphoto.com/id/1459373176/vector/abstract-defocused-background-spring-summer-sea.webp?a=1&b=1&s=612x612&w=0&k=20&c=tGAkBgIVdBMcEWFI1DptNe8GYOwkeS1fbbBwvzs7PG8=);
  background-clip: text;
  background-size: cover;
  background-position: center;
  color: transparent;
  filter: brightness(1.1);
}
@keyframes RightSideH1 {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.page1 .detailsBox {
  width: 60%;
  height: 800px;
  position: relative;
  /* background-color: rgb(14, 14, 14); */
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bttomTotop 1s ease-in-out forwards;
}

@keyframes bttomTotop {
  0% {
    transform: translateY(150%);
    opacity: 0;
  }
  50% {
    transform: translateY(-10%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.stepTitle {
  width: 200px;
  height: 70px;
  border-radius: 2000px;
  color: rgb(29, 29, 29);
  background-color: rgb(233, 233, 233);
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 20px;
  margin-left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--Title-Font);
  font-weight: bold;
  font-size: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.253);
  cursor: pointer;
}
.page1 .detailsBox .stepBox {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 1s ease-in-out;
  border-radius: 30px;
  background-image: linear-gradient(-20deg, #0c4b40 0%, #4e4376 100%);
}
.page1 .detailsBox .step1Box {
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  background-image: linear-gradient(-20deg, #0c4b40 0%, #4e4376 100%);
}
.page1 .detailsBox .step2Box {
  left: 100%;
}

.page1 .detailsBox .buttonsBox {
  width: 100%;
  height: 200px;
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  bottom: 0;
  gap: 20px;
}
.nextButtonContent {
  position: relative;
  width: 45%;
  height: 95%;
}
.previweButtonsContent {
  position: relative;
  width: 45%;
  height: 95%;
}
.page1 .detailsBox .priviweBtn {
  color: rgb(29, 29, 29);
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
  right: 0;
  display: none;
  transition: 10s all ease-in-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.253);
}
.page1 .detailsBox .priviweBtn i {
  color: rgb(29, 29, 29);
  font-size: 2rem;
  font-weight: 800;
}
.page1 .detailsBox .nextbtns {
  color: rgb(29, 29, 29);
  width: 200px;
  height: 70px;
  border: 0;
  border-radius: 2000px;
  background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
  font-family: var(--Title-Font);
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  animation: shake 0s linear forwards;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.253);
  cursor: pointer;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

.page1 .detailsBox #nextbtn1 i {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgb(29, 29, 29);
}

.page1 .detailsBox #nextbtn2 {
  display: none;
}
#nextbtn2Lodinganim {
  color: rgb(29, 29, 29);
  width: 200px;
  height: 70px;
  border: 0;
  border-radius: 2000px;
  background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
  font-family: var(--Title-Font);
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  display: none;
  overflow: hidden;
}
#nextbtn2Lodinganim span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nextbtn2Lodinganim ::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid transparent;
  border-top: 5px solid rgb(48, 48, 48);
  border-bottom: 5px solid rgb(48, 48, 48);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: Loading 0.8s linear infinite;
}
#FollowLodingAnimBox,
#TweetLodingAnimBox {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  overflow: hidden;
}
#FollowLodingAnimBox .Tweet-follow-Loder,
#TweetLodingAnimBox .Tweet-follow-Loder {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(17, 17, 17, 0.801);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  color: rgb(233, 233, 233);
}

#FollowLodingAnimBox .Tweet-follow-Loder span,
#TweetLodingAnimBox .Tweet-follow-Loder span {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-top: 5px solid rgb(233, 233, 233);
  border-bottom: 5px solid rgb(233, 233, 233);
  animation: Loading 0.8s linear infinite;
}

@keyframes Loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.step1Box .Step1InputBox,
.step2Box .Step2InputBox {
  position: relative;
  width: 80%;
  height: 90px;
  background: none;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 2000px;
  overflow: hidden;
  /* border: 2px solid white; */
  background: #111111;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.356);
}
.Step1InputBox input,
.Step2InputBox input {
  width: 85%;
  height: 90%;
  outline: none;
  border: none;
  font-family: var(--Title-Font);
  font-size: 25px;
  padding-left: 10px;
  background: none;
  font-weight: 500;
  color: #ebebeb;
  transition: 0.4s ease-in-out;
}
.Step1InputBox input:focus::placeholder,
.Step2InputBox input:focus::placeholder {
  opacity: 0;
  transition: 0.1s ease-in-out;
}

.Step1InputBox {
  position: relative;
  display: inline-block;
}

.Step1InputBox .inputBorderAnim,
.Step2InputBox .inputBorderAnim {
  transform: rotateY(90deg);
  transition: 0.5s;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: rgb(0, 255, 149);
  bottom: 0;
  transform-origin: center;
  display: block;
}
.Step1InputBox input:focus ~ .inputBorderAnim,
.Step2InputBox input:focus ~ .inputBorderAnim {
  transform: rotateY(180deg);
}

.Step1InputBox i,
.Step2InputBox i {
  font-size: 2.5rem;
  color: #dddddd;
}
.step1Box .warningText1,
.step2Box .warningText2 {
  color: rgb(32, 1, 6);
  font-family: var(--Title-Font);
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  display: none;
}
.step1Box h1 {
  font-size: 3.5rem;
  width: 70%;
  color: white;
  font-family: var(--Title-Font);
  margin-top: 100px;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.253));
}
.step2Box h1 {
  font-size: 3.5rem;
  width: 70%;
  color: white;
  font-family: var(--Title-Font);
  margin-top: 50px;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.253));
}

.step2Box {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.step1Box h3 {
  color: rgb(216, 216, 216);
  font-family: var(--Title-Font);
  width: 70%;
  font-size: 2rem;
  margin-top: 20px;
  font-weight: 400;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.253));
}
.step2Box h3 {
  color: rgb(216, 216, 216);
  font-family: var(--Title-Font);
  width: 70%;
  font-size: 2rem;
  margin-top: 20px;
  font-weight: 400;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.253));
}
.post-content {
  position: relative;
  width: 70%;
  height: 180px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.followBox,
.Tweetpost {
  position: relative;
  width: 250px;
  height: 60px;
  background-color: #177fc5;
  border-radius: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--Title-Font);
  font-size: 1.5rem;
  color: rgb(233, 233, 233);
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.1s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.356);
}
.followBox:hover,
.Tweetpost:hover {
  scale: 1.01;
}

.followBox i,
.Tweetpost i {
  color: rgb(233, 233, 233);
  margin-left: 30px;
  font-size: 2rem;
}
#urlssuccessPopupOverlay {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 111;
  background: rgba(0, 0, 0, 0.17);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#urlsucsesspop {
  position: absolute;
  width: 50rem;
  height: 25rem;
  background-color: rgb(235, 235, 235);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
  animation: scaleBig 0.5s ease-in-out forwards;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.356);
}
#urlsucsesspop h1 {
  color: rgb(19, 19, 19);
  font-family: var(--Title-Font);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  text-transform: capitalize;
}
#urlsucsesspop h2 {
  color: rgb(19, 19, 19);
  font-family: var(--Title-Font);
  font-size: 2rem;
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  margin-top: -20px;
  word-wrap: break-word;
}
@keyframes scaleBig {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
#urlsucsesspop span {
  /*close button*/
  position: absolute;
  top: 0;
  right: 0;
  font-size: 5rem;
  margin-top: -15px;
  margin-right: 5px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#urlsucsesspop span:hover {
  scale: 1.1;
}

footer {
  background-color: rgb(10, 10, 10);
  width: 100vw;
  height: 300px;
  position: relative;
  border-top: 2px solid rgb(136, 136, 136);
}
footer .footerContent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 20px;
}
footer .footerContent h1 {
  margin-top: -80px;
  margin-bottom: 20px;
  color: transparent;
  font-family: var(--Title-Font);
  font-size: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  gap: 100px;
  width: 90%;
  height: 50%;
  cursor: pointer;
  background-image: url(https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fGdyYWRpZW50JTIwYmFja2dyb3VuZHxlbnwwfHwwfHx8MA%3D%3D);
  background-clip: text;
  background-size: cover;
  background-position: center;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.452));
}
footer .footerContent h1 img {
  scale: 1.7;
}
footer .footerContent h2 {
  margin-top: -60px;
  color: rgb(185, 185, 185);
  font-family: var(--Title-Font);
  font-size: 2rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.452));
}
footer .footerContent .footerSocialIcons {
  position: absolute;
  width: 340px;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 2px solid rgb(136, 136, 136);
}
footer .footerContent .footerSocialIcons h3 {
  margin-top: -60px;
  margin-bottom: 20px;
  color: white;
  font-family: var(--Title-Font);
  font-size: 2rem;
  font-weight: 400;
}
footer .footerContent .footerSocialIcons #iconsBox {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
footer .footerContent .footerSocialIcons #iconsBox a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: rgb(240, 240, 240);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
footer .footerContent .footerSocialIcons #iconsBox a:hover {
  scale: 1.1;
  box-shadow: 0 0 10px aquamarine;
}

footer .footerContent .footerSocialIcons #iconsBox .ri-linkedin-box-fill {
  color: rgb(26, 47, 163);
  font-size: 40px;
}
footer .footerContent .footerSocialIcons #iconsBox .ri-github-fill {
  color: rgb(2, 2, 2);
  font-size: 50px;
}
