@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway: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&display=swap");
@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=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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway: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&display=swap");
@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=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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
*, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

body {
  overflow: "";
  background-color: #1b1b1b;
  color: #f6f4f2;
  height: 100vh;
}
body::-webkit-scrollbar {
  display: none;
}

.neonText {
  color: #fff;
  animation: flicker 1.5s infinite alternate;
}

.neonHomeText {
  background: linear-gradient(to right, #DC143C, #FFFFFF, #003893);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: flageffect 5s infinite alternate;
}

section {
  min-height: 100vh;
  display: flex;
  padding: 1rem;
}

.section-header {
  align-self: center;
  margin-top: 4rem;
}
.section-header .section-title {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (max-width: 780px) {
  .section-header .section-title {
    font-size: 1.5rem;
  }
}
.section-header .section-divider {
  width: 50%;
  height: 0.5rem;
  background-color: #fc4c4e;
}
@media screen and (max-width: 780px) {
  .section-header .section-divider {
    height: 0.4rem;
  }
}

.home-title {
  font-size: 4.5rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 990px) and (min-width: 780px) {
  .home-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 780px) and (min-width: 640px) {
  .home-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) and (min-width: 500px) {
  .home-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 500px) and (min-width: 300px) {
  .home-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 300px) {
  .home-title {
    font-size: 1.2rem;
  }
}

.home-subtitle {
  font-size: 4rem;
  font-family: "Monsterrat", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 990px) and (min-width: 780px) {
  .home-subtitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 780px) and (min-width: 640px) {
  .home-subtitle {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 640px) and (min-width: 500px) {
  .home-subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) and (min-width: 300px) {
  .home-subtitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 300px) {
  .home-subtitle {
    font-size: 1rem;
  }
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 4px #0da, 0 0 11px #0da, 0 0 19px #0da;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}
@keyframes pulsate {
  100% {
    text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 40px #0da, 0 0 80px #0da, 0 0 90px #0da, 0 0 100px #0da, 0 0 150px #0da;
  }
  0% {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 10px #0da, 0 0 45px #0da, 0 0 55px #0da, 0 0 70px #0da, 0 0 80px #0da;
  }
}
@keyframes flageffect {
  0% {
    background: linear-gradient(to right, #DC143C, #FFFFFF, #003893);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  25% {
    background: linear-gradient(to right, #FFFFFF, #003893, #DC143C);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  50% {
    background: linear-gradient(to right, #003893, #DC143C, #FFFFFF);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  75% {
    background: linear-gradient(to right, #003893, #FFFFFF, #DC143C);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  100% {
    background: linear-gradient(to right, #DC143C, #003893, #FFFFFF);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
}
.header-on-top {
  padding: 1rem 0.5rem;
  background-color: #1b1b1b;
}

.header-on-scroll {
  padding: 0.5rem 0.5rem;
  border-bottom-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
  background-color: #45454545;
  backdrop-filter: blur(10rem);
}
@media screen and (max-width: 780px) {
  .header-on-scroll {
    padding-bottom: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    background-color: #45454545;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  transition: padding 1s ease;
  align-items: center;
  font-size: 1rem;
}
header .logo {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  justify-self: center;
  padding: 0.5rem 1.5rem;
  border: 0.2rem solid transparent;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 780px) {
  header .logo {
    font-size: 1rem;
  }
}
header .logo a {
  text-decoration: none;
}
header .logo span {
  cursor: pointer;
}
header .logo:hover {
  border: 0.2rem solid #fff;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  animation: pulsate 1.5s infinite alternate;
  box-shadow: 0 0 0.2rem #fff, 0 0 0.2rem #fff, 0 0 2rem #0fa, 0 0 0.8rem #0fa, 0 0 2.8rem #0fa, inset 0 0 1.3rem #0fa;
}
header .hamburger {
  display: none;
}
@media screen and (max-width: 780px) {
  header .hamburger {
    display: block;
    cursor: pointer;
    pointer-events: none;
    padding-left: 1.5rem;
    align-self: center;
  }
}
@media screen and (max-width: 780px) and (max-width: 780px) {
  header .hamburger .line {
    pointer-events: auto;
    width: 20px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out 0.05s;
  }
}
header .nav-icon {
  display: none;
}
@media screen and (max-width: 780px) {
  header .nav-icon {
    display: block;
    cursor: pointer;
    padding-left: 1.5rem;
    pointer-events: none;
  }
}
header .nav-icon i {
  pointer-events: auto;
}
header nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 780px) {
  header nav ul {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  header nav {
    order: 3;
    grid-column: 1/4;
    padding-top: 1.5rem;
  }
}
header .adjust-btn {
  justify-self: center;
}
header .adjust-btn span {
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  header .adjust-btn {
    order: 2;
  }
}

.nav-link {
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #f6f4f2;
  transition: all 0.5s ease;
  position: relative;
  padding: 0.6rem 0;
  font-weight: 800;
}
@media screen and (max-width: 1240px) and (min-width: 990px) {
  .nav-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 990px) and (min-width: 825px) {
  .nav-link {
    font-size: 10px;
  }
}
@media screen and (max-width: 825px) and (min-width: 780px) {
  .nav-link {
    font-size: 9px;
  }
}
@media screen and (max-width: 780px) {
  .nav-link {
    font-size: 1rem;
  }
}
.nav-link::after {
  content: "";
  background-color: #0fa;
  height: 3px;
  width: 0;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s ease;
}
.nav-link:hover {
  color: #00A86B;
}
.nav-link:hover::after {
  width: 100%;
}

.active {
  border: 2px solid #f6f4f2;
  border-radius: 10px;
  padding: 5px;
}
@media screen and (max-width: 1240px) and (min-width: 780px) {
  .active {
    border: 1px solid #f6f4f2;
    border-radius: 5px;
  }
}
.active:hover {
  background-color: #fff;
  color: #00A86B;
}
.active:hover::after {
  width: 0;
}

@media screen and (max-width: 780px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 0;
    clip-path: circle(10px at 90% 10%);
    -webkit-clip-path: circle(10px at 90% 10%);
    transition: all 0.5s ease-out;
  }
}

@media screen and (max-width: 780px) {
  .show {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 93vh;
    clip-path: circle(1500px at -90% -10%);
    -webkit-clip-path: circle(1500px at -90% -10%);
  }
}

.social-icons {
  display: none;
}
@media screen and (max-width: 780px) {
  .social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
}
.social-icons a {
  margin-left: 0.5rem;
  text-decoration: none;
  color: #f6f4f2;
}
.social-icons a:hover {
  color: #0fa;
}

.rotate-left {
  transform: translate(-4px, 10px) rotate(-45deg);
}

.rotate-right {
  transform: translate(-4px, -6px) rotate(45deg);
}

.hide {
  transform: translateX(1rem);
  opacity: 0;
}

.removefade {
  opacity: 1;
}

.fade {
  opacity: 0;
}

.fa-facebook:hover {
  color: #3b5998;
}

.fa-twitter:hover {
  color: #00aced;
}

.fa-instagram:hover {
  color: #C13584;
}

.fa-github:hover {
  color: #6CC644;
}

.fa-linkedin:hover {
  color: #0077B5;
}

.fa-reddit:hover {
  color: #ff5700;
}

.fa-discord:hover {
  color: #7289da;
}

.fa-envelope:hover {
  color: #4285F4;
}

.fa-book-open:hover {
  color: #f44336;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 100%;
  text-transform: capitalize;
}
footer .currentYear {
  margin-left: 5px;
  color: #00A86B;
}
footer #homeFooterLink {
  color: #fc4c4e;
  font-weight: 500;
  text-decoration: none;
  margin: 0 8px;
}
footer #homeFooterLink:hover {
  color: #ff7f50;
}
@media screen and (max-width: 640px) {
  footer {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 500px) {
  footer {
    font-size: 0.7rem;
  }
}

.def-button {
  padding: 0.8rem;
  align-self: center;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 5rem;
  transition: all 0.8s ease;
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
}
.def-button:hover {
  border-radius: 0.5rem;
}

.resume-btn {
  margin-top: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.resume-btn:hover {
  background-color: #fff;
  color: #9e4244;
}

.home {
  background-color: #1b1b1b;
  justify-content: center;
  align-items: center;
}
.home .home-wrapper {
  padding: 0 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.home .home-wrapper .home-title {
  font-family: "Raleway", sans-serif;
}

.home-title {
  font-size: 4.5rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 990px) and (min-width: 780px) {
  .home-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 780px) and (min-width: 640px) {
  .home-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) and (min-width: 500px) {
  .home-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 500px) and (min-width: 300px) {
  .home-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 300px) {
  .home-title {
    font-size: 1.2rem;
  }
}

.home-subtitle {
  margin-top: 20px;
  font-size: 4rem;
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 990px) and (min-width: 780px) {
  .home-subtitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 780px) and (min-width: 640px) {
  .home-subtitle {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 640px) and (min-width: 500px) {
  .home-subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) and (min-width: 300px) {
  .home-subtitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 300px) {
  .home-subtitle {
    font-size: 1rem;
  }
}

.auto-typing-title {
  font-family: "Poppins", sans-serif;
  color: #fc4c4e;
  text-shadow: 3px 0 rgba(146, 146, 146, 0.308);
}

.hello-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.hello-box {
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #00A86B;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: capitalize;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.hello-box:hover {
  box-shadow: rgba(255, 255, 255, 0.15) 0px 15px 25px, rgba(255, 255, 255, 0.05) 0px 5px 10px;
}

.home-social-icons {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  height: 40px;
}
.home-social-icons a {
  color: #fff;
  padding: 5px;
  font-size: 20px;
  margin-left: 5px;
  transition: transform 0.3s ease-out;
}
.home-social-icons a:hover {
  transform: scale(1.5);
}
@media screen and (max-width: 500px) {
  .home-social-icons a {
    font-size: 14px;
  }
}

.about {
  background-color: #00000050;
  color: #f6f4f2;
  flex-direction: column;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10%;
  justify-content: center;
  align-content: center;
}
@media screen and (max-width: 780px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrapper div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff7f50;
  border-radius: 60% 60% 5% 5%;
  width: 300px;
  height: 100%;
  padding-top: 5rem;
}
.about-img-wrapper img {
  height: 360px;
  width: 360px;
  object-fit: contain;
  align-self: center;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
}
@media screen and (max-width: 780px) {
  .about-content-wrapper {
    width: 100%;
    margin-top: 2rem;
  }
}
.about-content-wrapper .about-content {
  font-size: 1rem;
  font-family: "nunito";
  padding: 1rem;
  text-align: justify;
}
@media screen and (max-width: 780px) {
  .about-content-wrapper .about-content {
    font-size: 0.9rem;
    width: 85%;
    align-self: center;
  }
}
@media screen and (max-width: 640px) {
  .about-content-wrapper .about-content {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1600px) {
  .about-content-wrapper .about-content {
    font-size: 1.3rem;
  }
}
.about-content-wrapper .contact-btn {
  background-color: #ff7f50;
  color: #fff;
  margin-top: 2rem;
  padding: 1rem;
  width: 40%;
  text-align: center;
  border-radius: 5%;
  box-shadow: 3px 3px 10px #ffffff09;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.5s ease;
  text-decoration: none;
  align-self: center;
}
.about-content-wrapper .contact-btn:hover {
  background-color: #f6f4f2;
  color: #ff7f50;
  font-weight: 600;
}
@media screen and (max-width: 990px) {
  .about-content-wrapper .contact-btn {
    width: 60%;
  }
}
@media screen and (max-width: 780px) {
  .about-content-wrapper .contact-btn {
    width: 80%;
  }
}

.work {
  background-color: #212221;
}

.portfolio {
  background-color: #0fa;
  color: #212221;
}

.blogs {
  background-color: #1b1b1b;
}

.contact {
  background-color: #212221;
  flex-direction: column;
  align-items: center;
}

.form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  width: 40%;
}
.form-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-wrapper .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10%;
}
.form-wrapper .form-group label {
  font-size: 1.2rem;
}
.form-wrapper .form-group input, .form-wrapper .form-group textarea {
  padding: 0.8rem;
  margin-top: 2%;
  border: none;
  border-radius: 10px;
  width: 100%;
}
.form-wrapper .submit-btn {
  background-color: transparent;
  padding: 0.8rem;
  width: 60%;
  cursor: pointer;
  border-radius: 10px;
  border: none;
  text-transform: uppercase;
  border: 1px solid #ff7f50;
  color: #ff7f50;
  transition: 0.5s all ease-in;
  align-self: center;
}
.form-wrapper .submit-btn:hover {
  background-color: #ff7f50;
  color: #f6f4f2;
  font-weight: 600;
  border-radius: 0;
}
@media screen and (max-width: 780px) {
  .form-wrapper {
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  .form-wrapper {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .form-wrapper {
    width: 80%;
  }
}

/*# sourceMappingURL=main.css.map */
