@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
* {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* header */
.section h1 {
  width: 100%;
  z-index: 5;
  color: white;
  font-size: 50px;
  position: absolute;
  top: 3%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -14%);
}
@media (max-width: 600px) {
  .section h1 {
    font-size: 35px;
  }
}

.wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#btn-container {
  width: auto;
  height: auto;
  font-size: 33px;
  margin-top: 50px;
  transform: translate(0%, -50%);
}

.nheader {
  display: inline;
  color: #e31b6d;
}

.fheader {
  display: inline;
  color: white;
  text-align: center;
}

.logo_container {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  justify-content: space-between;
}
@media (max-width: 880px) {
  .logo_container {
    display: none;
  }
}

.learn-more {
  /* button */
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
}
.learn-more.learn-more {
  width: 17rem;
  height: auto;
}
.learn-more.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #e31b6d;
  border-radius: 1.625rem;
}
.learn-more.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.learn-more.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 200;
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.learn-more.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid rgb(255, 255, 255);
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.learn-more.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  /* top: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.3rem 0;
  margin: 0 0 0 2.3rem;
  font-size: 25px;
  color: white;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.learn-more:hover .circle {
  width: 100%;
}
.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.learn-more:hover .button-text {
  color: #fff;
}

/* aboutme */
.discription {
  color: white;
  width: 100%;
  font-size: 21px;
}
@media (min-width: 1400px) {
  .discription {
    font-size: 25px;
  }
}

#photo {
  border-radius: 50%;
  width: 230px;
}
@media (min-width: 1400px) {
  #photo {
    width: 300px;
  }
}

.logo {
  margin: 2px;
  width: 70px;
  border-radius: 50%;
}
.logo.filler {
  opacity: 0;
}

/* portfolio */
.pcontainer {
  display: flex;
  width: 100%;
  height: 20vh;
  margin-right: 50%;
  margin-bottom: 3%;
}

.images {
  display: flex;
}

.images img {
  margin-left: 1%;
  max-width: 150px;
  height: 20vh;
}

.all {
  margin-top: 10%;
}

.writing {
  max-width: 50%;
  font-size: large;
}

.statbtn {
  display: flex;
  justify-content: space-evenly;
  margin-right: 33%;
  margin-top: 2%;
}

.statbtn1 {
  display: flex;
  max-width: 60%;
  margin-top: 2%;
  margin-left: 11%;
}

.statbtn1 h3 {
  color: rgb(243, 53, 53);
}

.statbtn h3 {
  color: rgb(91, 211, 81);
}

#testbutton {
  width: 150px;
  height: 50px;
  border-radius: 180px;
  position: relative;
  left: calc(50% - 75px);
  top: calc(50% - 25px);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  cursor: pointer;
  line-height: 12px;
}

#testbutton:before {
  content: "";
  z-index: 1;
  position: absolute;
  display: block;
  width: 80%;
  height: 70%;
  top: 15%;
  left: 10%;
  transition: 0.3s opacity ease-in-out;
  filter: blur(15px);
  opacity: 0;
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
}

#testbutton:hover:before {
  opacity: 1;
  transition: 0.3s opacity ease-in-out;
  filter: blur(25px);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
}

#testbutton:after {
  content: "Try it . . .";
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: rgb(235, 235, 235);
  font-weight: bold;
  z-index: 5;
  position: absolute;
  display: block;
  border-radius: 180px;
  width: 92%;
  height: 80%;
  top: 10%;
  left: 4%;
  background-color: rgb(19, 20, 22);
}

@media (max-width: 1025px) {
  .statbtn1 {
    margin-left: 5%;
  }
  .images img {
    margin-left: 1%;
    max-width: 150px;
    height: 10vh;
  }
  .pcontainer {
    display: flex;
    width: 85%;
    height: 20vh;
    margin-right: 50%;
    margin-bottom: 3%;
  }
}
@media (max-width: 1025px) and (max-width: 768px) {
  .all {
    margin-top: 0;
  }
  .images img {
    display: none;
  }
  .writing {
    max-width: 90%;
    font-size: large;
  }
}
@media (max-width: 1025px) and (max-width: 768px) and (max-width: 414px) {
  .all {
    height: 80%;
    width: 100%;
    margin-left: 1%;
  }
  .pcontainer {
    margin-top: 14%;
    width: 100%;
  }
  .writing {
    max-width: 80%;
    font-size: large;
  }
}
@media (max-width: 1025px) and (max-width: 768px) and (max-width: 414px) and (max-width: 375px) {
  .statbtn1 {
    width: 100%;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 0;
  }
  .statbtn1 h3 {
    display: none;
  }
  .statbtn h3 {
    display: none;
  }
  .pcontainer {
    width: 100%;
  }
}
@media (max-width: 1025px) and (max-width: 768px) and (max-width: 414px) and (max-width: 360px) {
  .writing {
    max-width: 80%;
    font-size: 14px;
  }
  .pcontainer {
    margin-top: 11%;
  }
}
/* other */
.both {
  margin-top: 5%;
  height: 70%;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.container1 {
  height: 100%;
  min-height: 480px;
  border-radius: 10px;
  background-color: white;
}
@media (min-width: 888px) {
  .container1 {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .container1 {
    width: 80%;
  }
}
.container1 h2 {
  text-align: center;
}
@media (max-width: 768px) {
  .container1.secondary {
    display: none;
    width: 100%;
  }
}

.list {
  margin-top: 5%;
  margin-left: 2%;
  width: 90%;
  height: 90%;
}
.list li {
  font-size: 14px;
  margin-left: 5%;
  margin-bottom: 3%;
}
@media (max-width: 376px) {
  .list li {
    font-size: 12px;
  }
}

@media (max-width: 1025px) {
  .both {
    margin-top: 10%;
  }
}
@media (max-width: 1025px) and (max-width: 768px) {
  li {
    margin-left: 8%;
  }
}
@media (max-width: 1025px) and (max-width: 768px) and (max-width: 414px) {
  li {
    font-size: 20px;
  }
}
@media (max-width: 1025px) and (max-width: 768px) and (max-width: 414px) and (max-width: 375px) {
  li {
    font-size: 18px;
  }
  .list {
    margin-top: 2%;
  }
}
@media (max-width: 1025px) and (max-width: 768px) and (max-width: 414px) and (max-width: 375px) and (max-width: 360px) {
  li {
    font-size: 15px;
  }
}
/* contact */
.contacth {
  color: white;
}

.ccontainer {
  display: flex;
  justify-content: space-between;
  color: white;
}

.contact {
  width: 50%;
  height: 60vh;
  margin-left: 7%;
  margin-right: 7%;
}
@media (max-width: 800px) {
  .contact.form {
    display: none;
  }
}

.project-container {
  width: 75vw;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-container img {
  margin-left: 12.5vw;
}
.project-container iframe {
  margin-left: 12.5vw;
  width: 75vw;
  height: 50vh;
}
.container {
  background: #0e1821 #E3F2FD;
  border-radius: 4px;
}

/* Add styles to 'label' selector */
label {
  font-size: 0.85em;
  margin-left: 12px;
}

/* Add styles to 'input' and 'textarea' selectors */
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

/* Add styles to show 'focus' of selector */
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid green;
}

/* Add styles to the submit button */
input[type=submit] {
  cursor: pointer;
  background: #e31b6d;
  margin: 0 auto;
  outline: 0;
  color: white;
  border: 0;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all ease-in-out 0.1s;
  position: relative;
  display: inline-block;
  text-align: center;
}

/* Add styles for 'focus' property */
input[type=submit]:focus {
  background: #a5d6a7;
  color: whitesmoke;
}

/* Style 'hover' property */
input[type=submit]:hover {
  background: #2196f3;
}

/* Align items to center of the 'div' with the class 'center' */
.center {
  text-align: center;
}

@media (max-width: 1025px) and (max-width: 414px) {
  .container {
    display: none;
  }
}
.languages-group {
  margin-bottom: 3px;
}

.bar-field {
  display: flex;
  align-items: center;
}

.bar-container {
  margin-left: 5px;
  width: 150px;
  text-align: center;
}
.bar-container.sub-bar {
  margin-left: 0;
  width: 120px;
}
.bar-container.sub-bar .progress-bar {
  background-color: #1C88BF;
}
.bar-container.sub-bar .progress-bar.ci {
  width: 85%;
  animation: progressAnimationSubBarCi 6s;
}
.bar-container.sub-bar .progress-bar.lar {
  width: 55%;
  animation: progressAnimationSubBarLar 6s;
}
.bar-container.sub-bar .progress-bar.react {
  width: 63%;
  animation: progressAnimationSubBarReact 6s;
}
.bar-container.sub-bar .progress-bar.anjs {
  width: 78%;
  animation: progressAnimationSubBarAnjs 6s;
}
.bar-container.sub-bar .progress-bar.vue {
  width: 75%;
  animation: progressAnimationSubBarVue 6s;
}
.bar-container.sub-bar .progress-bar.jq {
  width: 67%;
  animation: progressAnimationSubBarJq 6s;
}
.bar-container.sub-bar .progress-bar.rn {
  width: 58%;
  animation: progressAnimationSubBarRn 6s;
}
.bar-container.sub-bar .progress-bar.scss {
  width: 71%;
  animation: progressAnimationSubBarScss 6s;
}

@keyframes progressAnimationSubBarCi {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 85%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarLar {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 55%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarReact {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 63%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarAnjs {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 78%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarVue {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 75%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarJq {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 67%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarRn {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 58%;
    background-color: #1C88BF;
  }
}
@keyframes progressAnimationSubBarScss {
  0% {
    width: 5%;
    background-color: #bcf0f9;
  }
  100% {
    width: 71%;
    background-color: #1C88BF;
  }
}
h2.bar-lable {
  text-align: left;
  margin-bottom: 3px;
  width: 80px;
  font-size: 19px;
  color: white;
}

h4.bar-lable {
  text-align: left;
  margin-bottom: 3px;
  width: 100px;
  font-size: 15px;
  color: grey;
}

.progress {
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar {
  height: 10px;
  border-radius: 30px;
  border-right: #0e1821;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  transition: 0.4s linear;
  transition-property: width, background-color;
}

.progress-moved .progress-bar {
  background-color: #e31b6d;
}
.progress-moved .progress-bar.php {
  width: 75%;
  animation: progressAnimationPhp 6s;
}
.progress-moved .progress-bar.js {
  width: 77%;
  animation: progressAnimationJs 6s;
}
.progress-moved .progress-bar.css {
  width: 74%;
  animation: progressAnimationCss 6s;
}
.progress-moved .progress-bar.sql {
  width: 90%;
  animation: progressAnimationSql 6s;
}
.progress-moved .progress-bar.html {
  width: 83%;
  animation: progressAnimationHtml 6s;
}
.progress-moved .progress-bar.node {
  width: 55%;
  animation: progressAnimationNode 6s;
}

@keyframes progressAnimationPhp {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }
  100% {
    width: 75%;
    background-color: #e31b6d;
  }
}
@keyframes progressAnimationJs {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }
  100% {
    width: 77%;
    background-color: #e31b6d;
  }
}
@keyframes progressAnimationCss {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }
  100% {
    width: 74%;
    background-color: #e31b6d;
  }
}
@keyframes progressAnimationSql {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }
  100% {
    width: 90%;
    background-color: #e31b6d;
  }
}
@keyframes progressAnimationHtml {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }
  100% {
    width: 83%;
    background-color: #e31b6d;
  }
}
@keyframes progressAnimationNode {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }
  100% {
    width: 55%;
    background-color: #e31b6d;
  }
}
.about-me-container {
  display: flex;
  justify-content: space-around;
}

.photo-stats-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 60px;
  min-height: 80vh;
}

.description-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 50%;
  margin-top: 50px;
}
@media (max-width: 860px) {
  .description-logo-container {
    display: none;
  }
}

.image-hover-btn {
  width: 300px;
  height: 300px;
  position: relative;
}
.image-hover-btn .btn {
  opacity: 0;
  width: 150px;
  height: 20px;
  position: absolute;
  left: 75px;
  bottom: 0px;
}
.image-hover-btn .project-headers {
  opacity: 0;
  height: 70px;
  position: absolute;
  left: 65px;
  top: 5px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}
.image-hover-btn:hover .image {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}
.image-hover-btn:hover .btn {
  opacity: 1;
  display: block;
  z-index: 1;
  bottom: 70px;
  transition: bottom 0.3s ease-in-out, opacity 1s;
}
.image-hover-btn:hover .project-headers {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  top: 30px;
}

/* CSS */
.btn {
  background: #ff4742;
  border: 1px solid #ff4742;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.btn:hover,
.btn:active {
  background-color: initial;
  background-position: 0 0;
  color: #ff4742;
}

.btn:active {
  opacity: 0.5;
}

.projects-container {
  width: 80%;
  height: 650px;
}
.projects-container .image-btn-container {
  max-width: 300px;
  height: 300px;
  display: inline;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

.stars-container {
  z-index: 3;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
}

.proton {
  width: 1px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

.electron {
  width: max(120vw, 120vh);
  height: max(120vw, 120vh);
  position: absolute;
  animation: rotation 100s infinite linear;
  z-index: -5;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
/* @media (max-width: 1000px) {
  .electron {
    width: 120vh;
    height: 120vh;
  }
} */

.dot {
  content: "";
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  z-index: -5;
}

.btn-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#my-work-btn {
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  background-color: black;
  color: aliceblue;
}

@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.crousel .fp-slidesContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.crousel img {
  width: 100%;
  height: 50vw;
  margin-top: 12.5vh;
}
@media only screen and (max-width: 600px) {
  .crousel img {
    margin-top: 5vh;
  }
}
.crousel .fp-slide {
  width: 100% !important;
  height: 100%;
  margin: 0;
}
.crousel .fp-slide .project-btn-container {
  display: flex;
  justify-content: center;
}
.crousel .fp-slide .project-btn-container a {
  position: relative;
  text-decoration: none;
}
.crousel .fp-slide .project-btn-container a button {
  border-radius: 10%;
  top: -140%;
  cursor: pointer;
  background: #e31b6d;
  outline: 0;
  color: white;
  border: 0;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all ease-in-out 0.1s;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.crousel .fp-slide .project-btn-container a button:hover {
  background: #2196f3;
}
.crousel .fp-slide .project-btn-container a button img {
  margin: 0;
  width: 17px;
  height: 17px;
  position: relative;
}
.crousel .fp-slide .project-btn-container .project-message-container button {
  border-radius: 10%;
  top: -140%;
  cursor: pointer;
  background: #e31b6d;
  outline: 0;
  color: white;
  border: 0;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all ease-in-out 0.1s;
  position: relative;
}
.crousel .fp-slide .project-btn-container .project-message-container button:hover {
  background: #2196f3;
}
.crousel .fp-slide .project-btn-container .project-message-container button img {
  margin: 0;
  width: 17px;
  height: 17px;
  position: relative;
}
.crousel .fp-slide .project-btn-container .project-message-container h3 {
  color: red;
  top: -140%;
  position: relative;
}

.hello-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  /* height: 30%; */
  font-size: 33px;
  transform: scale(0);
  opacity: 0;
  transition: transform 2s ease, opacity 2s ease;
}
@media only screen and (max-width: 900px) {
  .hello-container{
    font-size: 28px;
  }
  .learn-more.learn-more .button-text {
    font-size: 23px !important;
  }
     .learn-more.learn-more {
    width: 16rem;
  }
  
}
@media only screen and (max-width: 700px) {
  .hello-container{
    font-size: 22px;
  }
   .learn-more.learn-more .button-text {
    font-size: 20px !important;
    top: 6px;
  }
  .learn-more.learn-more {
    width: 14.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .hello-container{
    font-size: 18px;
  }
  .learn-more.learn-more .button-text {
    font-size: 18px !important;
    top: 8px;
  }
    .learn-more.learn-more {
    width: 13.5rem;
  }
}
@media only screen and (max-width: 450px) {
  .hello-container{
    font-size: 15px;
  }
  .learn-more.learn-more .button-text {
    /* font-size: 15px !important;
    top: 10px; */
  }
}
.hello-container.show {
  transform: scale(1);
  opacity: 1;
}

.sec h2 {
  margin-bottom: 10px;
}
.sec h3 {
  margin-bottom: 5px;
}

@keyframes twinkle {
  0%, 20%, 40%, 60%, 80%, 100% {
    opacity: 1;
  }
  10%, 30%, 50%, 70%, 90% {
    opacity: 0.5;
  }
}
@keyframes spin-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dot {
  content: "";
  background-color: white;
  position: absolute;
  border-radius: 50%;
  z-index: -5;
  /* Remove fixed animation and let it be controlled by the class */
}

.dot.twinkle {
  animation: twinkle 3s infinite ease-in-out;
  animation-delay: var(--random-delay); /* Use random delay */
}

.stars-container {
  position: relative;
}

.electron {
  position: absolute;
  width: max(120vw, 120vh);
  height: max(120vw, 120vh);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: rotation 100s infinite linear;
  transition: transform 1s ease-in-out;
}

.learn-more:hover ~ .stars-container .electron {
  animation: spin-circle 5s infinite linear;
  width: max(120vw, 120vh);
  height: max(120vw, 120vh);
  transform: translate(-50%, -50%) rotate(0deg);
}

.learn-more:hover ~ .stars-container .dot {
  transform: translate(-50%, -50%) rotate(0deg);
}

.shooting-star {
  position: absolute;
  width: 6px; /* Thicker starting width */
  height: 80px;
  background: linear-gradient(transparent, white); /* Reverse the gradient */
  transform: rotate(45deg);
  animation: shooting-star 1s ease-out forwards;
}

@keyframes shooting-star {
  from {
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
    width: 6px; /* Start thick */
  }
  to {
    transform: translate(-200px, 200px) rotate(45deg);
    opacity: 0;
    width: 2px; /* End thinner */
  }
}/*# sourceMappingURL=styles.css.map */





/* chatbot */


.--dark-theme {
  --chat-background: rgba(10, 14, 14, 0.95);
  --chat-panel-background: #131719;
  --chat-bubble-background: #14181a;
  --chat-add-button-background: #212324;
  --chat-send-button-background: #8147fc;
  --chat-text-color: #a3a3a3;
  --chat-options-svg: #a3a3a3;
}

/* body {
  background: url(https://images.unsplash.com/photo-1495808985667-ba4ce2ef31b3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80);
  background-size: cover;
} */

#chat {
  background: var(--chat-background);
  /* max-width: 600px; */
  margin: 25px auto;
  box-sizing: border-box;
  padding: 1em;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 800px) {
  .chat-container{
    width: 100%;
  }
}

@media only screen and (min-width: 800px) {
  .chat-container{
    width: 700px;
  }
}

#chat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://images.unsplash.com/photo-1495808985667-ba4ce2ef31b3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80) fixed;
  z-index: -1;
}
#chat .btn-icon {
  position: relative;
  cursor: pointer;
}
#chat .btn-icon svg {
  stroke: #FFF;
  fill: #FFF;
  width: 50%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#chat .chat__conversation-board {
  padding: 1em 0 2em;
  height: calc(70vh - 55px - 2em - 25px * 2 - .5em - 3em);
  overflow: auto;
  /* margin-top: 10vh; */
}
#chat .chat__conversation-board__message-container.reversed {
  flex-direction: row-reverse;
}
#chat .chat__conversation-board__message-container.reversed .chat__conversation-board__message__bubble {
  position: relative;
}
#chat .chat__conversation-board__message-container.reversed .chat__conversation-board__message__bubble span:not(:last-child) {
  margin: 0 0 2em 0;
}
#chat .chat__conversation-board__message-container.reversed .chat__conversation-board__message__person {
  margin: 0 0 0 1.2em;
}
#chat .chat__conversation-board__message-container.reversed .chat__conversation-board__message__options {
  align-self: center;
  position: absolute;
  left: 0;
  display: none;
}
#chat .chat__conversation-board__message-container {
  position: relative;
  display: flex;
  flex-direction: row;
}
#chat .chat__conversation-board__message-container:hover .chat__conversation-board__message__options {
  display: flex;
  align-items: center;
}
#chat .chat__conversation-board__message-container:hover .option-item:not(:last-child) {
  margin: 0 0.5em 0 0;
}
#chat .chat__conversation-board__message-container:not(:last-child) {
  margin: 0 0 2em 0;
}
#chat .chat__conversation-board__message__person {
  text-align: center;
  margin: 0 1.2em 0 0;
}
#chat .chat__conversation-board__message__person__avatar {
  height: 35px;
  width: 35px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  ms-user-select: none;
  position: relative;
}
#chat .chat__conversation-board__message__person__avatar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
}
#chat .chat__conversation-board__message__person__avatar img {
  height: 100%;
  width: auto;
}
#chat .chat__conversation-board__message__person__nickname {
  font-size: 9px;
  color: #484848;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
}
#chat .chat__conversation-board__message__context {
  max-width: 55%;
  align-self: flex-end;
}
#chat .chat__conversation-board__message__options {
  align-self: center;
  position: absolute;
  right: 0;
  display: none;
}
#chat .chat__conversation-board__message__options .option-item {
  border: 0;
  background: 0;
  padding: 0;
  margin: 0;
  height: 16px;
  width: 16px;
  outline: none;
}
#chat .chat__conversation-board__message__options .emoji-button svg {
  stroke: var(--chat-options-svg);
  fill: transparent;
  width: 100%;
}
#chat .chat__conversation-board__message__options .more-button svg {
  stroke: var(--chat-options-svg);
  fill: transparent;
  width: 100%;
}
#chat .chat__conversation-board__message__bubble span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-table;
  word-wrap: break-word;
  background: var(--chat-bubble-background);
  font-size: 13px;
  color: var(--chat-text-color);
  padding: 0.5em 0.8em;
  line-height: 1.5;
  border-radius: 6px;
  font-family: "Lato", sans-serif;
}
#chat .chat__conversation-board__message__bubble:not(:last-child) {
  margin: 0 0 0.3em;
}
#chat .chat__conversation-board__message__bubble:active {
  background: var(--chat-bubble-active-background);
}
#chat .chat__conversation-panel {
  background: var(--chat-panel-background);
  border-radius: 12px;
  padding: 0 1em;
  height: 55px;
  margin: 0.5em 0 0;
}
#chat .chat__conversation-panel__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
#chat .chat__conversation-panel__container .panel-item:not(:last-child) {
  margin: 0 1em 0 0;
}
#chat .chat__conversation-panel__button {
  background: grey;
  height: 20px;
  width: 30px;
  border: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
}
#chat .chat__conversation-panel .add-file-button {
  height: 23px;
  min-width: 23px;
  width: 23px;
  background: var(--chat-add-button-background);
  border-radius: 50%;
}
#chat .chat__conversation-panel .add-file-button svg {
  width: 70%;
  stroke: #54575c;
}
#chat .chat__conversation-panel .emoji-button {
  min-width: 23px;
  width: 23px;
  height: 23px;
  background: transparent;
  border-radius: 50%;
}
#chat .chat__conversation-panel .emoji-button svg {
  width: 100%;
  fill: transparent;
  stroke: #54575c;
}
#chat .chat__conversation-panel .send-message-button {
  background: var(--chat-send-button-background);
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  transition: 0.3s ease;
}
#chat .chat__conversation-panel .send-message-button:active {
  transform: scale(0.97);
}
#chat .chat__conversation-panel .send-message-button svg {
  margin: 1px -1px;
}
#chat .chat__conversation-panel__input {
  width: 100%;
  height: 100%;
  outline: none;
  position: relative;
  color: var(--chat-text-color);
  font-size: 13px;
  background: transparent;
  border: 0;
  font-family: "Lato", sans-serif;
  resize: none;
}

@media only screen and (max-width: 600px) {
  #chat {
    margin: 0;
    border-radius: 0;
  }
  #chat .chat__conversation-board {
    height: calc(70vh - 55px - 2em - .5em - 3em);
  }
  #chat .chat__conversation-board__message__options {
    display: none !important;
  }
}


/* black hole */

body, html { height: 100%; }
body {
	height: 100%;
	background-color: transparent;
}

#blackhole {
	height: 100%;
	width: 100%;
	position: fixed;
	display: flex;
  z-index: 2;
}

@media (max-width: 768px) {
  #blackhole {

  }
}

.centerHover {
	width: 255px;
	/* height: 255px; */
	background-color: transparent;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -128px;
	margin-left: -128px;
	z-index: 2;
	cursor: pointer;
	line-height: 255px;
	text-align: center;
	transition: all 500ms;
	
	&.open  {
		opacity: 0;
		pointer-events: none;
	}
	
	&:hover span {
		color: #DDD;
		
		&:before { background-color: #DDD; }
		&:after { background-color: #DDD; }
	}
	
	span {
		color: #666;
		font-family: serif;
		font-size: 18px;
		position: relative;
		transition: all 500ms;
		
		&:before {
			content: '';
			display: inline-block;
			height: 1px;
			width: 16px;
			margin-right: 12px;
			margin-bottom: 4px;
			background-color: transparent;
			transition: all 500ms;
		}
		&:after {
			content: '';
			display: inline-block;
			height: 1px;
			width: 16px;
			margin-left: 12px;
			margin-bottom: 4px;
			background-color: transparent;
			transition: all 500ms;
		}
	}
}
canvas {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: auto;
}
.fullpage-wrapper{
  z-index: 1;
}
.section {
  background-color: transparent !important;
}

/* loading screen */

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black; /* or a background animation if you prefer */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loading-screen.hide {
  opacity: 0;
  pointer-events: none;
}

.fp-controlArrow {
  animation: pulseMove 1.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.fp-controlArrow.fp-prev {
  /* Optional: adjust direction more specifically if needed */
  left: 20px;
}

.fp-controlArrow.fp-next {
  right: 20px;
}

@keyframes pulseMove {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }
}

/* Invert movement for the previous arrow */
.fp-controlArrow.fp-prev {
  animation: pulseMovePrev 1.5s ease-in-out infinite;
}

@keyframes pulseMovePrev {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-5px);
  }
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }
}
