/*------------------------------------------------------------
  Golobal Styles 
------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");
:root {
  --main: #00bbaa;
  --main-dark: #000f12;
  --gray: #777;
  --light-gray: #ebebeb;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100vh;
}

body,
p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5;
}

h1 {
  display: inline;
  padding-bottom: 7px;
  font-weight: 400;
  font-size: 2.5rem;
}

.heading-1 {
  width: 500px;
  display: inline-block;
}

.heading-2 {
  padding: 0 25px 25px;
  max-width: 500px;
}

.heading-2 h1,
.heading-2 p {
  font-weight: 300;
}

.heading-1 p,
.heading-2 p {
  padding-top: 15px;
  text-align: left;
  line-height: 1.5;
}

.head-wrapper {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 0.2rem solid var(--main);
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 300;
}

main,
footer {
  margin-left: 18%;
}

.dark,
.dark a {
  color: black;
}

.light,
.light a {
  color: white;
}

.hidden {
  display: none;
}

.main-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*------------------------------------------------------------
  Backgrounds
------------------------------------------------------------*/

.background-image {
  background: url(assets/images/background-pattern.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
}

.light-overlay {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.9),
    rgb(255, 255, 255, 0.99)
  );
  min-height: 50vh;
  min-width: 100%;
}

.dark-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
  min-height: 50vh;
  min-width: 100%;
}

/*------------------------------------------------------------
  Header
------------------------------------------------------------*/

header {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
}

.sidebar {
  position: fixed;
  width: 18%;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
}

.sidebar img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  text-align: center;
}

.logo {
  width: 100%;
  text-align: center;
}

/*------------------------------------------------------------
  Navbar
------------------------------------------------------------*/

.navbar {
  list-style-type: none;
}

.navbar li:nth-child(even) {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--main-dark)),
    to(var(--main))
  );
  background: linear-gradient(90deg, var(--main-dark), var(--main));
}

.navbar li:nth-child(odd) {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--main)),
    to(var(--main-dark))
  );
  background: linear-gradient(90deg, var(--main), var(--main-dark));
}

.navbar a {
  display: block;
  padding: 10px 15px;
  text-align: center;
  transition: 0.7s;
}

.navbar a:hover {
  letter-spacing: 4.5px;
}

.navbar li {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.navbar li:hover {
  background: black;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

/*------------------------------------------------------------
  Aside
------------------------------------------------------------*/

.aside-container {
  position: relative;
  background: linear-gradient(164.88deg, black, var(--main));
  height: 100%;
}

.aside {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 55%;
}

.aside li {
  padding: 25px 0;
}

.aside p {
  margin: 0 auto;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35px;
}

.social-links img {
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.social-links img:hover {
  -webkit-box-shadow: 0 0 15px white;
  box-shadow: 0 0 15px white;
}

/*------------------------------------------------------------
  Main Content
------------------------------------------------------------*/

.hero-container {
  width: 60%;
  padding: 20px;
}

.profile-picture {
  text-align: right;
}

.profile-picture img {
  width: 100%;
  max-width: 250px;
  text-align: right;
}

.social-links-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

.social-links-2 a {
  display: inline block;
  font-weight: 400;
}

.social-links-2 li {
  display: inline-block;
  height: 70px;
  margin: 0 5%;
}

.social-links-2 li:hover {
  border-bottom: 2px solid black;
}

.social-links-2 img {
  height: 40px;
}

/*------------------------------------------------------------
  Skills and Technologies
------------------------------------------------------------*/

.grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-evenly;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 80%;
  height: 100%;
}

.icon-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50%;
}

.skill-icon img {
  padding: 10px 15px;
  height: 80px;
}

.skill-icon p {
  text-align: center;
  font-weight: 300;
}

/*------------------------------------------------------------
  Portfolio
------------------------------------------------------------*/

.portfolio {
  background-color: var(--light-gray);
}

.portfolio .heading-1 {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.portfolio h2 {
  font-weight: 400;
  font-size: 18px;
}

.project-container {
  width: 75%;
}

.project-container p {
  padding: 10px 0;
  margin: 20px 0;
}

.project {
  position: relative;
  width: auto;
}

.project span {
  color: var(--main);
}

.project-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.project:hover img {
  opacity: 0.6;
}

.project img {
  display: block;
  width: 100%;
  text-align: center;
  transition: 0.5s ease;
  backface-visibility: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.project-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 25px;
}

/*------------------------------------------------------------
  Footer
------------------------------------------------------------*/

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-heading {
  text-align: center;
  margin: 25px 0;
}

.form-container {
  width: 90%;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 50%;
  background-color: #2b3136;
  border-radius: 10px;
  padding: 35px;
  margin-bottom: 20px;
}

label {
  color: white;
}

.input-container {
  padding: 10px 0;
  width: 100%;
}

input {
  width: 100%;
  height: 30px;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
}

.name-wrapper {
  width: 100%;
}

.input-container-1 {
  display: inline-block;
  width: 48%;
}

.input-container-1 input {
  display: block;
  width: 100%;
}

label span {
  color: #ff1d4e;
}

textarea {
  height: 80px;
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  resize: none;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

button {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 7px 40px;
  margin: 10px 0 0 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--main)),
    to(var(--main-dark))
  );
  background: linear-gradient(180deg, var(--main), var(--main-dark));
  color: white;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid #2b3136;
}

button:hover {
  border: 1px solid white;
  cursor: pointer;
  -webkit-box-shadow: 0 0 8px white;
  box-shadow: 0 0 8px white;
}

.inline-input .input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.copywrite-container {
  position: relative;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0;
}

.footer-text {
  padding: 5px 5px;
  text-align: center;
}

.footer-text p {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
}

#status {
  padding: 15px;
  border-radius: 5px;
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

#status.success {
  background-color: var(--main);
  color: white;
  -webkit-animation: status 4s ease forwards;
  animation: status 4s ease forwards;
}

#status.error {
  background-color: #ff1d4e;
  color: white;
  -webkit-animation: status 4s ease forwards;
  animation: status 4s ease forwards;
}

/*------------------------------------------------------------
  Alert Banner
------------------------------------------------------------*/

.my-alert {
  position: relative;
  display: block;
  padding: 10px 50px;
  background-color: var(--main);
  color: #fff;
  opacity: 1;
  text-align: center;
  animation-name: alert;
  animation-duration: 0.5s;
  margin-left: 18%;
}

.my-alert a {
  text-decoration: underline;
  color: #fff;
}

.my-alert a:hover {
  color: #fff;
}

.my-alert p {
  margin: 0;
  font-size: 1rem;
}

.my-alert p strong {
  color: #fff;
}

.my-close-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  color: var(--main-dark);
  font-weight: bold;
  font-size: 40px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.my-close-btn:hover {
  color: #fff;
}

@media (min-width: 1024px) {
  .my-alert p {
    font-size: 1.25rem;
  }
}

@keyframes alert {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*------------------------------------------------------------
  Animations
------------------------------------------------------------*/

@-webkit-keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
/*# sourceMappingURL=style.css.map */


