@import url('https://fonts.googleapis.com/css2?family=Cabin&family=Quicksand&display=swap');

/* Utility Classes */

.border-13 {
  border-radius: 13px;
}

.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-primary {
  color: #fff;
}
.popup .text-primary {
  color: #1bd3b6;
}

.text-primary-light-1 {
  color: #ff967a;
}
.text-primary-light-2 {
  color: #ff7551;
}
.text-primary-dark-1 {
  color: #de3104;
}
.text-primary-dark-2 {
  color: #ae2400;
}
.text-dark-1 {
  color: #000000;
}
.text-dark-2 {
  color: #080800;
}
.text-dark-3 {
  color: #080800;
}
.text-dark-4 {
  color: #202020;
}
.text-light-1 {
  color: #ffffff;
}
.text-light-2 {
  color: #f0f0f0;
}
.text-light-3 {
  color: #e8e8e8;
}
.text-light-4 {
  color: #e0e0e0;
}

.bg-gradient {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
}

.bg-dark-1 {
  background: #000000;
}
.bg-dark-2 {
  background: #080800;
}
.bg-dark-3 {
  background: #080800;
}
.bg-dark-4 {
  background: #202020;
}
.bg-light-1 {
  background: #ffffff;
}
.bg-light-2 {
  background: #f0f0f0;
}
.bg-light-3 {
  background: #e8e8e8;
}
.bg-light-4 {
  background: #e0e0e0;
}
.bg-primary {
  background: #1bd3b6;
}

.btn {
  border: none;
  padding: 15px 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.5s all;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  border-radius: 13px;
  font-weight: 900;
  font-family: 'Quicksand';
}
.btn:focus {
  outline: none;
}
.btn-transparent {
  border: 1px solid #fff;
  color: #fff;
}
.btn-transparent:hover {
  background: #fff;
  color: #3c3b3b;
}
.btn-light {
  border: 1px solid #fff;
  background: #fff;
  color: #3c3b3b;
}
.btn-light:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}
.btn-primary {
  background: #1bd3b6;
  color: #fff;
}
.btn-primary:hover {
  background: #2ec0aa;
}
.btn-gradient {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
  color: #fff;
}
.btn-animated-light {
  border: 1px solid transparent;
  border-color: #fff;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-animated-light:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
  border-radius: 13px;
}
.btn-animated-light:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
  z-index: -1;
  border-radius: 13px;
}
.btn-animated-light:hover {
  color: #3c3b3b;
}
.btn-animated-light:hover:before {
  width: 100%;
}

.btn-animated-nav {
  border: 1px solid transparent;
  border-color: transparent;
  color: transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-animated-nav:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
.btn-animated-nav:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #18b19a;
  transition: all 0.3s;
  z-index: -1;
}
.btn-animated-nav:hover {
  color: #fff;
}
.btn-animated-nav:hover:before {
  width: 100%;
}
.btn-animated-project-light {
  border: 1px solid transparent;
  border-color: #fff;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid transparent;
  background: rgb(0 0 0 / 20%);
}
.btn-animated-project-light:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
  border-radius: 13px;
}
.btn-animated-project-light:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
  z-index: -1;
  border-radius: 13px;
}
.btn-animated-project-light:hover {
  color: #3c3b3b;
  background: #fff;
}
.btn-animated-project-light:hover:before {
  width: 100%;
}

.rounded-pill {
  border-radius: 150px;
}
.rounded-pill:after {
  border-radius: 150px;
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.box-shadow {
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fromLeft {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fromRight {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fromTop {
  0% {
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fromBottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#main-header {
  background: linear-gradient(to right, #0000003d, #00000038),
    url(../../Vendors/showcase.jpg) no-repeat center center/cover;
  color: #ffffff;
}

#navbar {
  padding-top: 0.5rem;
}
#navbar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#navbar.scrolled {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(255, 255, 255, 0.521);
}

.navbar-without-header {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
}

#logo img {
  width: auto;
  height: 60px;
}

/* Hamburger */
#hamburger {
  width: 50px;
  padding: 3px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #ffffff;
  position: absolute;
  top: 7px;
  right: 25px;
  /* Hamburger lines */
  /* When Overlay is in effect */
  /* When Unclicked */
}
#hamburger input[type='checkbox'] {
  width: 65px;
  height: 65px;
  z-index: 2000;
  cursor: pointer;
  opacity: 0;
}
#hamburger #line,
#hamburger #line::after,
#hamburger #line::before {
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background: #ffffff;
  display: inline-block;
  z-index: 1500;
  transition: 0.3s all cubic-bezier(0.8, 0.5, 0.5, 1);
}
#hamburger #line::after {
  content: '';
  top: 10px;
  left: 0;
}
#hamburger #line::before {
  content: '';
  top: -10px;
  left: 0;
}
#hamburger input[type='checkbox']:checked,
#hamburger input[type='checkbox']:checked ~ #line {
  position: fixed;
}
#hamburger input[type='checkbox']:checked ~ #line {
  background: transparent;
}
#hamburger input[type='checkbox']:checked ~ #line::after {
  transform: rotate(45deg);
  top: 0;
}
#hamburger input[type='checkbox']:checked ~ #line::before {
  transform: rotate(-45deg);
  top: 0;
}
#hamburger input[type='checkbox']:checked:hover ~ #line::after,
#hamburger input[type='checkbox']:checked:hover ~ #line::before {
  background: #1bd3b6;
}
#hamburger input[type='checkbox']:not(:checked) + #overlay {
  width: 0;
}

/* When clicked */
/* #hamburger input[type="checkbox"]:checked + #overlay {
    width: 100%;
} */
/* Handled above by Javascript */
.width-100 {
  width: 100% !important;
}
.width-0 {
  width: 0;
}

#overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  content: '';
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  /* background: url('../../Vendors/showcase.jpg'); */
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: hidden;
  transition: 0.6s all cubic-bezier(0.8, 0.5, 0.5, 1);
  /* Close btn positioning */
}
#overlay img {
  width: 50px;
  height: 50px;
}
#overlay ul li {
  list-style: none;
  display: block;
  margin: 2rem 0;
}
#overlay ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 2.3rem;
  padding: 0.5rem 1rem;
  transition: 0.5s ease;
  background: transparent;
}
#overlay ul li a:hover {
  width: 100%;
}
#overlay div#overlay.show {
  width: 100%;
  opacity: 1;
  border-radius: 0;
}
#overlay #close-btn {
  position: absolute;
  right: 4rem;
  top: 15px;
  font-size: 2.5rem;
  color: #fff;
  width: 50px;
  height: 50px;
  transition: all 0.6s;
}
#overlay #close-btn:hover {
  color: #ff5629;
  border-color: #ff5629;
}

#showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  /* background: url("./../../Vendors/showcase.jpg") no-repeat center center/cover; */
  background-attachment: fixed;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#showcase h1 {
  font-size: 3rem;
  animation-name: fromTop;
  animation-duration: 1s;
}
#showcase h3 {
  animation: fromLeft 1s;
}
#showcase > div > div,
#showcase #scrolldown img {
  animation: fromBottom 1s;
}

#scrolldown img {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 3rem 0;
}

/* Popup */
.popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 46%);
  opacity: 0;
  visibility: hidden;
  transition: 0.8s all;
  font-family: 'Cabin', 'Quicksand';
  text-align: justify;
  font-size: 1.2rem;
  color: #444343;
}
.popup-container {
  background: #fbfbfb;
  padding: 1rem 2rem;
  width: 96%;
  max-width: 600px;
  /* filter: blur(0px); */
  /* -webkit-filter: blur(0px); */
  border-radius: 10px;
  max-height: 88vh;
  overflow-y: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-container .close {
  position: absolute;
  top: 10px;
  right: 30px;
  transform: scale(2.5);
  cursor: pointer;
}
.popup-container .close:hover {
  color: #1bd3b6;
}

.show {
  opacity: 1;
  visibility: visible;
}

#contact {
  padding: 10px 0;
}
#contact input,
#contact textarea {
  border: none;
  padding: 1.2rem 0.8rem;
  margin: 0.4rem;
  width: 100%;
  display: block;
  border-radius: 0;
}
#contact input::placeholder,
#contact textarea::placeholder {
  font-family: Arial, Helvetica, sans-serif;
  color: #4b3636;
}
#contact input:focus,
#contact textarea:focus {
  outline: 2px solid #ff5629;
}

#main-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  background: #2e493cf2;
}
#main-footer img {
  height: 50px;
  width: 50px;
}
#main-footer .circle {
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', Geneva, Tahoma, sans-serif;
  color: #202020;
}

.container {
  width: 90%;
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: #080800;
}

a:hover {
  cursor: pointer;
}

img {
  width: 60px;
  height: 60px;
}

/* Individual Styles */
/* Projects  */
#projects {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
  clip-path: polygon(0 4%, 100% 0, 100% 97%, 0% 100%);
  clip-path: polygon(0 1%, 100% 0%, 100% 99%, 0% 100%);
}
#projects-heading {
  font-size: 2em;
  text-transform: capitalize;
  color: #434443;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#projects h1,
#projects h2,
#projects h3,
#projects h4,
#projects h5,
#projects h6 {
  text-transform: uppercase;
  font-family: 'Cabin';
}
#projects h3 {
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

#projects .project {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10rem;
  margin-top: 3rem;
}
#projects .project > * {
  align-self: center;
}
#projects .project-img {
  width: 60%;
  border-radius: 10px;
  overflow: hidden;
}
#projects .project-img img {
  width: 100%;
  height: auto;
}
#projects .project-content {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 13px;
}
#projects .project-content img {
  width: 100px;
  height: 100px;
}

/* Services */
#services {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
  animation: fromBottom 0.8s cubic-bezier(0.4, 0.5, 0.9, 1);
}
#services h2 {
  margin: 0;
}
#services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 50px;
}
#services img {
  width: 250px;
  height: 250px;
}
#services .service {
  padding: 2rem;
  position: relative;
}
#services .step-process {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  margin-top: -15px;
  margin-left: -15px;
}

/* About */
#about {
  background: linear-gradient(to right, #1ad3b8, #4bee88);
}
#about #avatar {
  margin-top: 3rem;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 0px 0px 16px 3px #77777799;
}

#about #skills .skill {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
#about #skills .skill .progress {
  background: #ffffff42;
  height: 33px;
  border-radius: 1000px;
  width: 80%;
  margin-left: 20px;
}
#about #skills .skill.python .progress {
  width: 65%;
}
#about #skills .skill.java .progress {
  width: 70%;
}
#about #skills .skill.javascript .progress {
  width: 75%;
}
#about #skills .skill.react .progress {
  width: 70%;
}
#about #skills .skill.html .progress {
  width: 75%;
}
#about #skills .skill.css .progress {
  width: 75%;
}
#about #skills img {
  width: 150px;
  height: 150px;
}

@media (min-width: 1390px) {
  #projects .project-content {
    padding: 2rem 0;
  }
  #projects .project-content .project-btns {
    margin: 2rem 0;
  }
}
@media only screen and (max-width: 1210px) {
  #projects {
    clip-path: polygon(0 2%, 100% 0, 100% 97%, 0% 100%);
  }
  #projects .project {
    flex-direction: column;
    margin-bottom: 5rem;
  }
  #projects .project > div {
    width: 100%;
  }
  #projects .project .project-img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  /* Universal */
  .container {
    width: 96%;
  }

  #navbar .social-media {
    display: none;
  }

  #projects .project-content img {
    width: 80px;
    height: 80px;
  }
  #projects .project-btns {
    margin: 2rem 0 0 0;
  }
  #projects .project-btns a {
    display: inline;
  }

  #main-footer .social-media img {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 360px) {
  #projects .project-btns a {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .btn {
    display: block;
  }
}

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