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

.home {
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: linear-gradient(45deg, rgba(11, 9, 17, 0.9) 30%, rgba(11, 9, 17, 0.6)), url("../img/image.jpg") left center;
  background-size: cover;
}

.home__name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #13c03e;
}

.home__name--last {
  color: #13c03e;
  font-weight: 700;
}

.about {
  padding-bottom: 2rem;
}

.about__image {
  height: 50vh;
  width: 100%;
  background: linear-gradient(45deg, rgba(11, 9, 17, 0.9), rgba(11, 9, 17, 0.6)), url("../img/image1.jpg") left center;
  background-size: fit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: colum;
          flex-direction: colum;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__image p {
  margin-bottom: 2rem;
}

.about__bio {
  width: 80%;
  text-align: center;
}

.about__bio .text-secondary {
  padding-bottom: 1rem;
}

.about .bio {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

.about .bio__item {
  background: #211b32;
  border-bottom: 5px solid #13c03e;
  padding: 1rem 1rem 2rem 1rem;
  line-height: 1.5;
}

.about .bio__item h2,
.about .bio__item h3 {
  margin: 0.5rem 0;
}

.about .bio__item h6 {
  margin: 0.9rem 0;
}

.about .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about footer {
  -webkit-transform: rotate(90deg) translate(-3rem, -5rem);
          transform: rotate(90deg) translate(-3rem, -5rem);
}

.projects {
  padding-bottom: 2rem;
}

.projects__image {
  height: 30vh;
  width: 100%;
  background: linear-gradient(45deg, rgba(11, 9, 17, 0.9), rgba(11, 9, 17, 0.6)), url("../img/image.jpg") left center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: colum;
          flex-direction: colum;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.projects__image .text-secondary {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.projects__items {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

.projects__item {
  position: relative;
  border-bottom: 5px solid #13c03e;
  max-height: 13.5rem;
  overflow: hidden;
  cursor: pointer;
}

.projects__item img {
  width: 100%;
}

.projects__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #13c03e;
  opacity: 0;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.projects__item:hover::after {
  top: 0;
  opacity: 0.9;
}

.projects__item:hover .projects__btn {
  opacity: 1;
}

.projects__btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.projects__btn {
  font-weight: 500;
  opacity: 0;
  color: #fff;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.projects__btn:hover {
  font-weight: 500;
  color: #0c7a28;
}

.projects .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.projects footer {
  -webkit-transform: rotate(90deg) translate(-3rem, -5rem);
          transform: rotate(90deg) translate(-3rem, -5rem);
}

.contact {
  height: 100%;
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(45deg, rgba(11, 9, 17, 0.9), rgba(11, 9, 17, 0.6)), url("../img/image1.jpg") left center;
  background-size: fit;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.contact__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 1.5rem;
}

.contact .social-icons {
  position: initial;
  margin-top: 2rem;
}

.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.menu-btn__burger {
  position: absolute;
  right: 0.6rem;
  top: 0.9rem;
  width: 27px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.menu-btn__burger::before {
  content: '';
  position: absolute;
  top: -7.5px;
  width: 27px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.menu-btn__burger::after {
  content: '';
  position: absolute;
  top: 7.5px;
  width: 18px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.menu-btn__burger.open {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  background: transparent;
}

.menu-btn__burger.open::before {
  width: 18px;
  -webkit-transform: rotate(45deg) translate(0px, 3px);
          transform: rotate(45deg) translate(0px, 3px);
}

.menu-btn__burger.open::after {
  width: 18px;
  -webkit-transform: rotate(-45deg) translate(0px, -3px);
          transform: rotate(-45deg) translate(0px, -3px);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  opacity: 1;
  visibility: hidden;
}

.nav.open {
  visibility: visible;
}

.nav .menu-nav {
  border-left: 2px solid #13c03e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  overflow: hidden;
  background-color: #0b0911;
  list-style-type: none;
  padding-right: 1rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.nav .menu-nav.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav .menu-nav__item {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.nav .menu-nav__item.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav .menu-nav__item.active > a {
  color: #13c03e;
}

.nav .menu-nav__link {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 2rem 0;
  font-weight: 500;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.nav .menu-nav__link:hover {
  color: #13c03e;
}

.menu-nav__item:nth-child(1) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.menu-nav__item:nth-child(2) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.menu-nav__item:nth-child(3) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.menu-nav__item:nth-child(4) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

/* The Modal (background) */
.projects-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 45px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: auto;
  scroll-behavior: smooth;
  /* Modal Content */
  /* The Close Button */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
}

.projects-modal::-webkit-scrollbar {
  display: none;
}

.projects-modal__content {
  display: -ms-grid;
  display: grid;
  position: relative;
  padding: 0;
  margin: auto;
  max-width: 80vw;
}

.projects-modal__close {
  position: absolute;
  top: 0px;
  right: 15px;
  color: #13c03e;
  font-size: 3rem;
  font-weight: bold;
  z-index: 9;
}

.projects-modal__close:hover, .projects-modal__close:focus {
  color: #7f628a;
  text-decoration: none;
  cursor: pointer;
}

.projects-modal__prev, .projects-modal__next {
  cursor: pointer;
  position: absolute;
  top: 15vh;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  background-color: rgba(163, 163, 163, 0.39);
  color: white;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  /* On hover, add a black background color with a little bit see-through */
}

.projects-modal__prev:hover, .projects-modal__prev:hover, .projects-modal__next:hover, .projects-modal__next:hover {
  background-color: rgba(180, 180, 180, 0.7);
}

.projects-modal__next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.content-slides {
  display: none;
  /* Number text (1/3 etc) */
}

.content-slides__numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.content-slides__case-study {
  position: relative;
  margin: 2rem auto 0 auto;
  max-width: 1000px;
  background: #211b32;
}

.content-slides__case-study--item {
  background: #211b32;
  border-bottom: 5px solid #13c03e;
  padding: 1rem 1rem 2rem 1rem;
  line-height: 1.5;
}

.content-slides__case-study--item h2,
.content-slides__case-study--item h3 {
  margin: 0.5rem 0;
}

.content-slides__case-study--item h6 {
  margin: 0.9rem 0;
}

.demo-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}

.demo-container__column {
  float: left;
  max-width: 33.33%;
  cursor: pointer;
}

.demo-container__column--demo {
  opacity: 0.6;
}

.demo-container__column--demo:hover {
  opacity: 1;
}

.demo-container__column--demo.active {
  opacity: 1;
}

@media screen and (min-width: 758px) {
  .menu-btn {
    visibility: hidden;
  }
  .nav {
    visibility: visible;
    position: fixed;
    top: 0;
    right: 0;
  }
  .nav .menu-nav {
    border: none;
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    background: transparent !important;
    text-align: right;
  }
  .nav .menu-nav__item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav__link {
    font-size: 1.5rem;
  }
  .about {
    font-size: 1.5rem;
  }
  .projects__image {
    height: 40vh;
  }
  .projects__items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
  .projects-modal {
    /* Modal Content */
  }
  .projects-modal__content {
    max-width: 60vw;
  }
  .projects-modal__prev, .projects-modal__next {
    top: 24vh;
  }
  .projects-modal__close {
    top: 15px;
    right: 30px;
    font-size: 4.5rem;
  }
  .contact__list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    margin-left: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .projects__items {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    padding-top: 15px;
  }
  .projects-modal {
    /* Modal Content */
  }
  .projects-modal__prev, .projects-modal__next {
    top: 36vh;
  }
  .demo-container__column {
    max-width: 25%;
  }
}

@media screen and (min-width: 1600px) {
  .projects__items {
    padding-top: 30px;
  }
  .demo-container__column {
    max-width: 20%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0911;
  color: #fff;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}

h1,
h2,
h3 {
  font-weight: 400;
}

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

img {
  max-width: 100%;
  height: auto;
}

.text-secondary {
  color: #13c03e;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

main {
  height: 100%;
  width: 100%;
}

main .social-icons {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}

main .social-icons a {
  padding: 0.4rem;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

main .social-icons a:hover {
  color: #13c03e;
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  right: 1rem;
  text-align: rigth;
  padding: 1rem;
  color: #fff;
}
/*# sourceMappingURL=main.css.map */