* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Noto Sans, sans-serif;
  background-color: #f6f8fa;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

html {
  overflow: hidden;
}


/* Start Nav */
.nav {
  position: fixed;
  width: 100vw;
  display: grid;
  min-height: 4rem;
  grid-auto-flow: column;
  grid-gap: 1.5rem;
  box-shadow: -1px 4px 5px 0px rgba(0, 0, 0, 0.3);
  background-color: #24292f;
  color: #fff;
}

.nav h1 {
  margin-left: 1.5rem;
}

.logo {
  display: grid;
  align-items: center;
  /* padding-left: 1.5rem; */
  font-family: Rubik, sans-serif;
  cursor: pointer;
}

.nav {
  transition: 0.3 all ease;
}

.nav__items {
  display: grid;
  justify-content: right;
  grid-template-columns: repeat(3, minmax(min-content, 100px));
  grid-gap: 1rem;
  align-items: center;
  justify-items: center;
  font-weight: 500;
  padding-right: .5rem;
}

a {
  color: black;
  cursor: pointer;
  text-decoration: none;
  padding: 0.25rem;
  border-radius: 4px;
  color: #fff;
}

a:hover {
  color: rgb(221, 221, 221);
}

.menu {
  transition: 0.3s all ease;
  position: absolute;
  width: 260px;
  left: 100%;
  height: 100%;
  background-color: #24292f;
  z-index: 9999;
  list-style: none;
  margin-top: 4rem;
}

.menu__item {
  font-size: 1.4rem;
  color: #fff;
  border-bottom: 1px solid #333;
  padding: 1.4rem;
  transition: 0.3s all ease;
}

.menu__item:hover {
  opacity: 0.5;
}

.open {
  left: 50%;
}

.hide {
  display: none;
}

.hamburger {
  display: none;
  grid-column: 3;
  align-self: center;
  justify-self: center;
  top: 10px;
  right: -50px;
}

.hamburger span {
  display: block;
  position: relative;
  background-color: #fff;
  height: 6px;
  width: 36px;
  border-radius: 2px;
  transition: 0.3s;
  margin: 6px 0;
  cursor: pointer;
}

.change.first-bar {
  top: 11px;
  transform: rotate(45deg);
}

.change.second-bar {
  opacity: 0;
}

.change.third-bar {
  bottom: 13px;
  transform: rotate(-45deg);
}

@media (max-width: 600px) {
  .nav__items {
    display: none;
  }

  .hamburger {
    display: initial;
  }
}

/* End Nav */


/* Start Home Content */
@media (max-width: 600px) {
  .logo__home h1 {
    font-size: 60px;
  }

  .content__text {
    font-size: 14px;
    width: 300px;
  }
}

.wrapper {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(min-content, 100vh));
  grid-auto-columns: 1fr;
  overflow: hidden;
  align-items: center;
  width: 100vw;
}

#particles-js {
  background-color: #051427;
  position: absolute;
  height: 100vh;
  width: 100%;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.home {
  display: grid;
  grid-template-columns: 1 / 1fr;
  grid-template-rows: repeat(3, min-content);
  align-content: center;
  justify-items: center;
  grid-gap: 3rem;
  height: 100vh;
}

.content__display {
  animation: glow1 2s ease-in-out infinite alternate;
}

.content__text {
  color: #fff;
  animation: glow2 2s ease-in-out infinite alternate;
  text-align: center;
  align-items: start;
}

.content__text h1 {
  color: #C6B9CD;
}

.content__btn button {
  font-family: Noto Sans, sans-serif;
  font-size: 15px;
  height: 40px;
  width: 100px;
  border-radius: 50px;
  border: none;
  background-color: #0096FF;
  cursor: pointer;
}

.content__btn:hover {
  opacity: 0.75;
  animation: glow2 2s ease-in-out infinite alternate;
  transition: all 0.3s ease;
}

@-webkit-keyframes glow1 {
  from {
    text-shadow: 0 0 100px #fe7f2d;
  }

  to {
    text-shadow: 0 0 50px #fe7f2d;
  }
}

@-webkit-keyframes glow2 {
  from {
    text-shadow: 0 0 200px #fe7f2d;
  }

  to {
    text-shadow: 0 0 100px #fe7f2d;
  }
}

@-webkit-keyframes hover {
  from {
    margin: 0;
  }

  to {
    margin-top: 5px;
  }
}

.logo__home {
  color: #fff;
  font-size: 90px;

}

/* End  Home Content*/
/* Start About */
@media (max-width: 600px) {
  .about__text {
    font-size: 14px;
  }

  .about__quote {
    width: 300px;
    font-size: 16px;
  }
}

.about {
  box-sizing: border-box;
  background-color: #24292f;
  color: #fff;
  align-items: center;
  height: fit-content;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.about__text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin: 1.5rem;
}

.about__quote {
  font-weight: 200;
  color: rgb(156, 156, 156);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about__h1 {
  font-size: 46px;
  margin-top: 2rem;
  margin-left: 1.5rem;
}

.about__grid {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  grid-template-rows: repeat(auto-fill, 300px);
  grid-gap: 2rem;
  align-items: center;
  justify-items: center;
}

.about__modal {
  border-radius: 10px;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  color: #111111;
}

.about__modal h1 {
  padding-bottom: 1rem;
}


.about__modal__btn__wrapper {
  text-align: center;
}

.about__modal__btn {
  margin: 1rem;
  font-family: Noto Sans, sans-serif;
  font-size: 15px;
  height: 40px;
  width: 100px;
  border-radius: 50px;
  border: none;
  color: #111111;
  background-color: #66cc33;
  cursor: pointer;
}

.about__modal__btn:hover {
  transition: all 0.3s ease;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;

}

@media (max-width: 1000px) {
  .about__text {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
  }

  .about__grid {
    justify-content: center;
  }
}

/* End About */

/* Start Testimonials */
.testimonials {
  height: fit-content;
  box-sizing: border-box;
  display: grid;
  background-color: #051326;
  color: #fff;
  align-items: center;
  padding: 1.5rem;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.testimonials h1 {
  font-size: 46px;
  margin-top: 2rem;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  grid-template-rows: repeat(auto-fill, 1fr);
  grid-gap: 1.5rem;
  align-content: center;
  justify-content: center;
}

.testimonial__quote {
  padding: 1rem;
  background: #3c8ff5;
  border-radius: 10px;
  display: grid;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  font-weight: 100;
}

/* End Testimonials */
/* Start Contact */
.contact {
  height: fit-content;
  background-color: #24292f;
  padding-bottom: 1.5rem;
}

.contact h1 {
  font-size: 46px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 1.5rem;
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-items: center;
  grid-gap: 1.rem;
}

.contact__form {
  color: #fff;
  font-size: 18px;
  background-color: #051427;
  border-radius: 10px;
  padding: 4rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;

}

#submit {
  margin-top: 1rem;
  border: none;
  background-color: #88c53a;
  border-radius: 4px;
  font-family: Noto Sans, sans-serif;
  font-size: 15px;
  height: 40px;
  width: 100px;
  cursor: pointer;
}

/* End Contact */
/* Start Footer */
.footer {
  bottom: 0px;
  width: 100vw;

  background-color: #051427;
  height: fit-content;
}

.footer__grid {
  display: grid;
  align-items: center;
  justify-content: left;
  grid-gap: .5rem;
  margin: .5rem;
  padding-left: 1.5rem;

}

.footer__logo h1 {
  color: #fff;
  padding-left: 0px;
}

.footer__sitemap ul {
  list-style: none;
  text-decoration-style: none;
}

.footer__tel {
  color: #fff;
}

.dev__banner {
  display: grid;
  align-items: center;
  justify-items: center;
  opacity: 0.75;
  color: #fff;
}

/* End Footer */