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

:root {
  --color-primary: #191d28;
  --color-secondary: #1e7fee;
  --color-white: #ffffff;
  --color-black: #000;
  --color-grey: #f8f8f8;
  --color-grey-1: #dbe1e8;
  --color-grey-2: #b2becd;
  --color-grey-3: #6c7983;
  --color-grey-4: #424345;
  --color-grey-5: #2a2a35;
  --color-grey-6: #12181b;
  --br-sm-2: 14px;
  --transition: all 0.4s ease-in-out;
  --box-shadow-1: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.light-mode {
  --bg-image: url("");
  --color-primary: #fbfcff;
  --color-secondary: #f59abd;
  --color-white: #141313;
  --color-black: rgb(239, 236, 236);
  --color-grey: #f7f5f5;
  --color-grey-1: #cdc8cb;
  --color-grey-2: #23282e;
  --color-grey-4: #eaedee;
  --color-grey-5: #fbfbfb;
  --color-grey-6: #e6eaec;
}

body {
  background-color: var(--color-grey-5);
  font-family: sans-serif;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--color-white);
  transition: var(--transition);
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

header {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var();
  overflow: hidden;
}
section {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 2rem 8rem 2rem 8rem;
}

.section {
  transform: translateY(-100%) scale(0);
  transition: var(--transition);
  background-color: transparent;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -moz-crisp-edges;
      image-rendering: pixelated;
}

.sec1 {
  display: none;
  transform: scale(1);
}

.sec2 {
  display: none;
  transform: scale(1);
}

.sec3 {
  display: none;
  transform: scale(1);
}

.sec4 {
  display: none;
  transform: scale(1);
}

.sec5 {
  display: none;
  transform: scale(1);
}

.active {
  display: block;
  -webkit-animation: animate 1s ease-in-out;
          animation: animate 1s ease-in-out;
}
@-webkit-keyframes animate {
  0% {
    transform: rotate(-270deg) scaleY(0);
  }
  100% {
    transform: rotate(-360deg) scaleY(1);
  }
}
@keyframes animate {
  0% {
    transform: rotate(-270deg) scaleY(0);
  }
  100% {
    transform: rotate(-360deg) scaleY(1);
  }
}

.logo {
  position: fixed;
  z-index: 1;
  top: 5%;
  left: 3%;
}

.image-logo {
  position: fixed;
  top: 3%;
  left: 3%;
}

.hireMe {
  background-color: var(--color-secondary);
  font-size: large;
  font-weight: bolder;
  width: 10rem;
  padding: 0.6rem;
  margin: 0.6rem;
  align-content: center;
  border-radius: 22rem;
  text-align: center;
  cursor: pointer;
}
.hireMe:hover {
  opacity: 0.6;
}

.links {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  top: 40%;
}
.links .activeBtn {
  background-color: var(--color-secondary) !important;
  transition: var(--transition);
}
.links .activeBtn img {
  color: var(--color-white) !important;
}
.links .link {
  padding: 1.5rem;
  cursor: pointer;
  background-color: var(--color-grey-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}
.links .link img {
  font-size: 1.2rem;
  color: var(--color-grey-2);
  pointer-events: none;
}
.links .link:hover {
  background-color: var(--color-grey-3);
  transition: all 0.3s ease-in-out;
}

.theme-btn {
  top: 3%;
  right: 5%;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--color-grey-5);
  cursor: pointer;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.7rem 0;
  box-shadow: 0 3px 15px var(--color-white);
  transition: all 0.1s ease-in-out;
}
.theme-btn:active {
  transform: translateY(-5px);
}
.theme-btn .img {
  font-size: 1.2rem;
  color: var(--color-grey-2);
  pointer-events: none;
}

.menubox {
  display: none;
}

.header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  padding: 0.5rem 8rem;
  margin-top: 5rem;
}
.header-content h2 {
  text-align: left !important;
  text-transform: capitalize !important;
  font-size: 3rem !important;
}

.right-header {
  margin: 0.3rem;
}

.left-header {
  margin: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-header .imageBoxB {
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-header .imageBoxB .imageContainerB {
  width: 40%;
  overflow: hidden;
  padding: 1rem;
}
.left-header .imageBoxB .movingB {
  display: flex;
  justify-content: left;
  align-items: center;
  transform: translateX(0px);
  transition: transform 0.3 linear;
}
.left-header .imageBoxB .movingB img {
  width: 50px;
  align-self: left;
  padding: 1rem;
  margin: 1rem;
}

#move img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-title {
  text-align: center;
  padding-bottom: 3rem;
}
.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 4rem;
}
.main-title h2 span {
  color: var(--color-secondary);
}
.main-title h2 .bg-text {
  position: absolute;
  top: 20%;
  left: 40%;
  color: var(--color-grey-5);
  transition: all 1s ease-in-out;
  z-index: -1;
  transform: translate(-40%, -50%);
  font-weight: 800;
  font-size: 5rem;
  margin: 2rem 0rem;
  margin-bottom: 4rem;
  -webkit-animation-name: blurry;
          animation-name: blurry;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes blurry {
  0% {
    opacity: 0.3;
    text-shadow: -1px -1px 2px var(--color-white);
  }
  25% {
    opacity: 0.5;
    text-shadow: 1px 1px 3px var(--color-white);
  }
  50% {
    opacity: 0.7;
    text-shadow: 1.5px 1.5px 5px var(--color-white);
  }
  75% {
    opacity: 0.8;
    text-shadow: 2px 2px 7px var(--color-white);
  }
  100% {
    opacity: 0.9;
    text-shadow: 3px 3px 10px var(--color-white);
  }
}
@keyframes blurry {
  0% {
    opacity: 0.3;
    text-shadow: -1px -1px 2px var(--color-white);
  }
  25% {
    opacity: 0.5;
    text-shadow: 1px 1px 3px var(--color-white);
  }
  50% {
    opacity: 0.7;
    text-shadow: 1.5px 1.5px 5px var(--color-white);
  }
  75% {
    opacity: 0.8;
    text-shadow: 2px 2px 7px var(--color-white);
  }
  100% {
    opacity: 0.9;
    text-shadow: 3px 3px 10px var(--color-white);
  }
}
.main-title p {
  text-align: justify;
  font-size: 1.5rem;
}

.about-container {
  display: grid;
  grid-template-columns: repeat 2, 1fr;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-stats .progress-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
.about-stats .progress-bars .progress-bar {
  width: 10rem;
  height: 10rem;
  background-color: var(--color-secondary);
  border-radius: 50%;
  -webkit-animation: spin 2s ease-in-out infinite;
          animation: spin 2s ease-in-out infinite;
}
.about-stats .progress-bars .progress-bar .progress-con {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 9.5rem;
  height: 9.5rem;
  background-color: var(--color-grey-4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-stats .progress-bars .progress-bar .progress-con .prog-title {
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
}
.about-stats .progress-bars .progress-bar .progress-con img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 4px;
}
.about-stats .progress-bars .progress-bar .progress-con .prog-text {
  color: var(--color-grey-3);
}

@-webkit-keyframes spin {
  0% {
    transform: scaleY(0.9);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes spin {
  0% {
    transform: scaleY(0.9);
  }
  100% {
    transform: scaleY(1);
  }
}
.stat-title {
  text-transform: uppercase;
  font-size: 1.8rem;
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
}
.stat-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 40%;
  height: 1px;
  background-color: var(--color-grey-5);
  transform: translateX(-50%);
}

.portfolio_text {
  margin: 3rem 0px 1rem;
  text-align: center;
}

.projects {
  margin: 0.5rem 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.projects .project {
  background-color: var(--color-grey-1);
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  border-radius: 8px;
  width: 12rem;
  margin: 0.4rem;
  font-weight: bolder;
  font-size: 1rem;
}
.projects .project:hover,
.projects .activ {
  background-color: var(--color-secondary);
  transition: all 0.2s ease-in-out;
}

.portfolios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
  align-items: center;
}
.portfolios .portfolio-item {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 2px 2px 5px var(--color-white);
}
.portfolios .portfolio-item h3 {
  color: var(--color-grey-1);
  text-shadow: -1px -1px 1px var(--color-white);
}
.portfolios .portfolio-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolios .portfolio-item .hover-items {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: var(--transition);
}
.portfolios .portfolio-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: var(--transition);
}
.portfolios .portfolio-item:hover .hover-items {
  top: 50%;
  opacity: 1;
  transition-delay: 0.2s;
}
.portfolios .portfolio-item:hover::before {
  top: 0;
}

.portfolio-item:hover {
  opacity: 1;
}

.portfolio1,
.portfolio2,
.portfolio3,
.portfolio4 {
  width: 0;
  height: 0;
}

.activePortfolio {
  width: 100%;
  height: 100%;
  -webkit-animation: animatio 0.5s ease-in-out;
          animation: animatio 0.5s ease-in-out;
}
@-webkit-keyframes animatio {
  0% {
    transform: translateX(10px) scaleY(0);
  }
  100% {
    transform: translateX(100px) scaleY(1);
  }
}
@keyframes animatio {
  0% {
    transform: translateX(10px) scaleY(0);
  }
  100% {
    transform: translateX(100px) scaleY(1);
  }
}

.hover-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icons {
  max-height: 5rem;
  max-width: 5rem;
  padding: 9px;
}
.icons img {
  background-color: var(--color-grey);
  border-radius: 20px;
}

.blog {
  position: relative;
  background-color: var(--color-grey-5);
  border-radius: 5px;
  box-shadow: var(--box-shadow-1);
  transition: all 0.4s ease-in-out;
}
.blog:hover {
  box-shadow: var(--box-shadow-1);
  transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
}
.blog:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
  box-shadow: var(--box-shadow-1);
}
.blog img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
.blog .blog-text {
  margin-top: -7px;
  padding: 1rem;
}
.blog .blog-text .h4 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.blog .blog-text .h4:hover {
  padding: 1rem;
  color: var(--color-secondary);
}
.blog .blog-text p {
  font-size: 1rem;
  margin-top: 3px;
  color: var(--color-grey-2);
  line-height: 1.5rem;
  padding-bottom: 1rem;
}
.blog .blog-text a {
  font-weight: bold;
  color: var(--color-secondary);
}
.blog .blog-text a:active {
  color: goldenrod;
}

.contact {
  padding-bottom: 3rem;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  padding-top: 3rem;
}
.contact-container .right-contact {
  margin: 1rem;
}
.contact-container .right-contact form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid var(--color-secondary);
  border-radius: 12px;
}
.contact-container .right-contact form input[type],
.contact-container .right-contact form textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 0.3rem 0;
  text-transform: inherit;
  border-radius: 10px;
}
.contact-container .right-contact form button {
  background-color: var(--color-secondary);
  font-size: large;
  font-weight: bolder;
  width: 10rem;
  padding: 1rem;
  margin: 0.6rem;
  align-content: center;
  border-radius: 22rem;
  text-align: center;
  cursor: pointer;
}
.contact-container .left-contact {
  padding: 1rem;
}
.contact-container .left-contact .contact-flex {
  margin: none;
  padding: 2px;
}
.contact-container .left-contact .contact-flex .flex-icon {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0rem;
}
.contact-container .left-contact .contact-flex .contact-image-div img {
  background-color: var(--color-grey-1);
  border-radius: 10px;
}
.contact-container .left-contact .contact-info {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  gap: 1rem;
  margin: 2rem;
}
.contact-container .left-contact .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.contact-container .left-contact .contact-info .contact-item p {
  margin: 0.3rem !important;
  padding: 0 !important;
}
.contact-container .left-contact .contact-info .contact-item .icon {
  display: grid;
  grid-template-columns: 40px 1fr;
}
.contact-container .left-contact .contact-info .contact-item .icon img {
  display: flex;
  align-items: center;
  background-color: var(--color-grey);
  font-size: 1.3rem;
  border-radius: 20px;
}
.contact-container .left-contact .contact-info .contact-item .icon:hover {
  transform: translateY(-20%);
  transition: all 0.2s ease-in-out;
}
.contact-container .left-contact .contact-icon {
  display: flex;
  margin-top: 2rem;
}
.contact-container .left-contact .contact-icon a {
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-grey-5);
  cursor: pointer;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 0.4rem;
  transition: all 0.4s ease-in-out;
}
.contact-container .left-contact .contact-icon a:hover {
  background-color: var(--color-secondary);
}
.contact-container .left-contact .contact-icon a:hover img {
  color: var(--color-primary);
}
.contact-container .left-contact .contact-icon a img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

@media screen and (max-width: 1050px) {
  body {
    font-size: 100% !important;
    box-sizing: border-box;
  }
  .header-content {
    grid-template-columns: 1fr;
  }
  .theme-btn {
    top: 3%;
    right: 20%;
    width: 60px;
    height: 60px;
  }
  .main-title h2 {
    font-size: 3rem;
  }
  .main-title h2 .bg-text {
    font-size: 3rem;
  }
  .main-title p {
    font-size: 1.4rem;
  }
  section {
    padding: 1rem 2rem;
  }
  .header-content {
    padding: 4rem;
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .about-stats {
    padding-bottom: 3rem;
  }
  .about-stats .progress-bars {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-stats .progress-bars .about-stats,
.about-stats .progress-bars .about-container {
    padding-bottom: 2rem;
  }
  .portfolios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .blogs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
  .links {
    display: none;
    position: fixed;
    top: 0%;
    right: 0% !important;
    width: 30%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    opacity: 0.9;
    z-index: 1;
    background-color: var(--color-grey-4);
    padding-top: 6rem;
    gap: 0.4rem;
  }
  .links .link {
    margin: 2rem;
  }
  .show {
    display: block;
  }
  .menubox {
    top: 5%;
    right: 3%;
    position: fixed;
    cursor: pointer;
    display: block;
    z-index: 4;
  }
  .bar1,
.bar2,
.bar3 {
    width: 40px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-white);
    margin: 6px 0;
    transition: 0.4s;
  }
  .change .bar1 {
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .change .bar2 {
    opacity: 0;
  }
  .change .bar3 {
    transform: rotate(45deg) translate(-8px, -8px);
  }
}
@media screen and (max-width: 700px) {
  body {
    font-size: 100% !important;
    box-sizing: border-box;
  }
  header {
    padding: 0;
  }
  header .header-content {
    display: flex;
    flex-direction: column;
  }
  section {
    min-height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .right_header {
    margin: 0rem !important;
    font-size: 100%;
    box-sizing: border-box;
  }
  .left-header {
    margin: 1rem;
  }
  .theme-btn {
    width: 40px;
    height: 40px;
  }
  .main-title h2 {
    font-size: 2rem !important;
  }
  .main-title h2 .bg-text {
    font-size: 2rem !important;
  }
  .main-title p {
    font-size: 1.2rem;
  }
  section {
    margin: 0.5rem 0.5rem;
  }
  .about-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-stats .progress-bars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
  .about-stats .progress-bars .progress-bar {
    width: 8rem;
    height: 8rem;
  }
  .about-stats .progress-bars .progress-bar .progress-con {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
    height: 7.5rem;
  }
  .about-stats .progress-bars .progress-bar .progress-con .prog-title {
    font-weight: 400;
    font-size: 0.9rem;
  }
  .portfolios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .blogs {
    display: flex;
    flex-direction: column;
  }
  .contact-container {
    display: flex;
    flex-direction: column;
  }
  .contact.content {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */