@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;700&display=swap');

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: inherit;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #7FC1E3;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html{
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #020C1B;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  scroll-behavior: smooth;
}

button {
  user-select: none;
}

header {
  background: rgba(2, 12, 27, 0.79);
  height: 5rem;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header ul {
  display: flex;
  justify-content: space-between;
  float: right;
  list-style: none;
  /* width: 10rem; */
  margin-right: 2rem;
  z-index: 1000;
}

.header-item {
  color: #7FC1E3;
  z-index: 100;
  margin-left: 1rem;
}

.header-item:hover {
  color: rgba(255, 255, 255, 0.684);
}

.landing {
  /* display: flex; */
  min-height: 100vh;

  width: 100vw;
  position: relative;
  /* top: -5rem; */
  overflow: hidden;
}

.pfp-container {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  background: #020C1B;
  mix-blend-mode: luminosity;
}

.pfp {
  min-height: 100vh;
  max-width: 60vw;
  float: right;
  z-index: 20;
  position: sticky;
  top: 50px;
  background-attachment: fixed;
  background: #020C1B;
  mix-blend-mode: lighten;

  filter: saturate(0) brightness(1.1);
  /* mix-blend-mode: multiply; */
  -o-object-fit: cover;
  object-fit: cover;
}


.polygon {
  /* -webkit-clip-path: polygon(0 0,
      60% 0,
      50% 100%,
      0% 100%,
      0% 0%); */
  /* clip-path: polygon(0 0,
      60% 0,
      50% 100%,
      0% 100%,
      0% 0%); */
  clip-path: polygon(0 0,
      100% 0,
      90% 100%,
      0% 100%,
      0% 0%);
  background: #020C1B;
  height: 100vh;
  width: 50vw;
  z-index: 400;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #7FC1E3;
  transition: clip-path 0.2s;
  transition: transform 0.2s;
}

.intro {
  position: relative;
  top: 2rem;
}

.intro-hi {
  font-size: 3rem;
  text-align: center;
}

.main-name {
  color: #FD8E8E;
}

.intro-title {
  font-size: 1.1rem;
  width: 40vw;
  color: #b2bbd5e6;
  opacity: 0.9;
  text-align: center;
}

.landing-main-button {
  color: #7FC1E3;
  background: none;
  border: 1px solid #7FC1E3;
  height: 3.4rem;
  width: 9.2rem;
  font-size: 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.landing-main-button:hover {
  background: #7fc2e327;
}

.say-hi-contact {
  text-align: center;
}

.twitter-contact-text:hover {
  color: #1DA1F2;
}

.linkedin-contact-text:hover {
  color: #0077b5;
}

.instagram-contact-text:hover {
  color: #C13584;
}

.here-msg:hover {
  color: #FD8E8E;
}

.section-container {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background: #020C1B;
  position: relative;
  /* top: 0; */
  z-index: 100;
}

.section {
  background: #020C1B;
  color: #b2bbd5e6;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  top: 0;
  /* height: 100vh; */
  margin-bottom: 10px;
  transition: width 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec-content {
  padding: 0 0.5rem 0 1rem;
  /* display: flex;
  flex-direction: row; */
}

.about-sec-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-sec-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec-head {
  font-size: 2rem;
  text-align: center;
  color: #ccd6f6;
  /* margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
  margin-right: 2rem; */
}

.sec-sub-head {
  font-size: 1.5rem;
  text-align: center;
  color: #ccd6f681;
  margin: 1rem;
}

.sec-article {
  flex: 3;
  padding: 3rem;
}

.fav-section {
  /* background: red; */
  height: fit-content;
  width: fit-content;
  padding: 0.5rem;
  flex: 2;
  border: 1px solid #7FC1E3;
  background: #7fc2e31c;
  border-radius: 5px;
}

.fav-section>.fav-sec-inner>h5 {
  margin: 1rem 0 0.1rem 0;
}

.fav-section>.fav-sec-inner>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fav-section>.fav-sec-inner>ul:nth-child(n)>li {
  margin-bottom: 1rem;
}

.fav-section>.fav-sec-inner>ul>li::before {
  content: "» ";
  color: #7FC1E3;
}

.sec-section {
  padding: 0.5rem;
  /* text-align: center; */
  /* margin: 2rem; */
}

.fiverr-card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cr-sec {
  margin-bottom: 1rem;
}

.client-review-head {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.client-review-name {
  margin: 0;
  padding: 0;
}

.client-review-title {
  margin: 0;
  padding: 0;
  font-size: small;
  font-weight: 300;
}

.client-review-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.client-review-content {
  margin: 0;
  padding-left: 3.5rem;
  font-size: small;
  font-weight: 400;
}

.sec-1 {
  z-index: 100;
}

.sec-2 {
  z-index: 200;
}

.sec-3 {
  z-index: 300;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1.5px solid #b2bbd591;
  padding: 0 5rem;
  /* width: ; */
}

/* https://img.icons8.com/color/48/000000/twitter.png */
.social-icon-svg {
  height: 1rem;
  width: 1rem;
  padding: 0 0.5rem;
  cursor: pointer;
  vertical-align: middle;
  /* color: #1DA1F2; */


}

.social-link {
  font-size: small;
  background: #020C1B;
  position: relative;
  top: 0.5rem;
}

.social-icon-svg-twitter:hover {
  color: #1DA1F2;
}

.social-icon-svg-linkedin:hover {
  color: #0077b5;
}

.social-icon-svg-github:hover {
  color: #333;
}

.social-icon-svg-instagram:hover {
  color: #C13584;
}


.temppara1 {
  color: white;
  z-index: 300;
  position: sticky;
  /* background: #0A192F; */
}


/* .formouter{
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.messageform{
  min-width: 80%;
} */

/* .messageform input, .messageform textarea{
  background: transparent;
  outline: none;
  color: white;
}
.messageform input{
  border:none;
  border-bottom: 1px solid rgba(250, 128, 114, 0.381);
  width: 75%;
}
.messageform textarea{
  border: 1px solid rgba(250, 128, 114, 0.381);
  border-radius: 10px;
  width: 100%;
}

.submitbtncontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.submitbtn{
  width: 5rem;
  height: 2rem;
  color: white;
  background: #FD8E8E;
  font-size: 1.1em;
  border-radius: 5px;
} */

.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  /* display: none !important; */
}

.chats-container {
  width: 18rem;
  background: #1c2128;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 100;
  border-radius: 5px;
  /* border: 1px solid #7FC1E3; */
  height: 0px;
  border: none;
  /* height: 50vh !important; */
  /* border: 1px solid #7FC1E3 !important; */
  transition: height 0.1s ease-in-out;
  color: rgba(255, 255, 255, 0.627);
  overflow: hidden;
}


.chats-header {
  padding: 0.5em;
  border-bottom: 1px solid #14171d;
  font-size: 1.2rem;
  height: 1.5rem;
}

.messages-container {
  overflow-y: scroll;
  height: calc(50vh - 5rem);
}

.message {
  padding: 0.5rem;
  width: 70%;
  /* border: 1px solid #7FC1E3; */
  border-radius: 5px;
  margin: 0.5rem;
}

.message-me {
  float: right;
  /* border: 1px solid #7FC1E3; */
  background: #7fc2e31c;
}

.message-not-me {
  float: left;
  background: #0f121662;
  /* border: 1px solid #FD8E8E; */
  /* background: #fd8e8e15; */
}

.message-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.885);
}

.chat-input-container{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0f121662;
  /* padding: 0.5rem; */
  border-top: 1px solid #14171d;;
}

#send-msg-textarea {
  width: 80%;
  height: 1.5rem;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #0f121662;
  color: rgba(255, 255, 255, 0.885);
  padding: 0.5rem;
  resize: none;
  font-family: 'Poppins', sans-serif;
  color: #ccd6f6;
}

#send-btn{
  width: 2rem;
  height: 1.5rem;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #0f121662;
  color: rgba(255, 255, 255, 0.885);
  padding: 0.5rem;
  cursor: pointer;
}

@media screen and (min-width: 667px) {
  .pfp {
    position: fixed;
    top: 0px;
    right: 0;
  }

  .section {
    width: 50vw;
    /* float: right; */
    margin-left: auto;
    margin-right: 0;
    padding: 0 1rem;
  }

}

@media screen and (max-width:1024px) {
  .about-sec-content {
    flex-direction: column;
  }

  .fav-section {
    margin: 1rem;
    min-width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width:666px) {
  header {
    background: transparent;
  }

  .landing {
    display: flex;
    flex-direction: column;
    /* height: 200vh; */
    /* top: 0; */
    position: sticky;
    top: -100vh;
  }

  .section {
    width: 100%;
  }

  .about-sec-content {
    flex-direction: column;
  }

  .pfp-container {
    position: relative;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .polygon {
    clip-path: none;
    background: #020C1B;
    height: 100vh;
    width: 100vw;
    /* z-index: 400; */
    position: sticky;
    top: 0;
  }

  .pfp {
    min-height: auto;
    width: 100%;
    max-width: 100vw;
    /* float: right; */
    z-index: 20;
    position: sticky;
    top: 200px;
  }

  .intro {
    padding: 0 1rem;
  }

  .intro-hi {
    font-size: 1.5rem;
    /* padding: 0 1rem; */
  }

  .intro-title {
    font-size: 0.9rem;
    width: 100%;
    /* padding: 0 1rem; */
  }

  #clients-reviews-article {
    min-width: 100%;
  }

  .contact-sec-para {
    min-width: 100%;
  }

  /* .chat-btn,
  .chats-container {
    right: 3rem;
    bottom: 2px;
  } */
}

@media screen and (max-width: 900px) {
  .intro-hi {
    font-size: 2rem;
  }

  .intro-title {
    font-size: 1.2rem;
  }
}