@media screen and (max-width: 1400px) and (min-width: 900px) {
  main .section-1 img {
    width: 400px !important;
  }
  main .projects-container {
    -ms-grid-columns: (400px)[2] !important;
        grid-template-columns: repeat(2, 400px) !important;
    -ms-grid-rows: 400px 400px 400px !important;
        grid-template-rows: 400px 400px 400px !important;
  }
}

@media screen and (max-width: 900px) {
  .nav-container {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .nav-container a {
    font-size: 16px !important;
  }
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  header .left-header-container {
    text-align: center;
  }
  header .arrow-container {
    left: 5% !important;
  }
  main .section-1-container {
    -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;
  }
  main .section-1-container h3,
  main .section-1-container h2 {
    text-align: center !important;
  }
  main .projects-container {
    -ms-grid-columns: 400px !important;
        grid-template-columns: 400px !important;
  }
  .contact-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .nav-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .nav-container nav {
    display: none !important;
  }
  .nav-container .nav-button-container {
    margin-top: 10px;
  }
  .nav-container .nav-button-container .nav-span {
    display: block !important;
  }
  header h3 {
    font-size: 16px !important;
  }
  header h1 {
    font-size: 20px !important;
  }
  header h2,
  header p {
    font-size: 14px !important;
  }
  header .header-img-container img {
    width: 250px !important;
  }
  main .section-1 .section-1-container .section-1-left img {
    width: 250px !important;
  }
  main .section-1 .section-1-container .section-1-right {
    width: 100% !important;
  }
}

@-webkit-keyframes animated-card {
  0% {
    opacity: 0;
    height: 0;
    top: 200px;
    left: 0px;
  }
  100% {
    opacity: 1;
    top: 0;
    left: 0;
    height: 100%;
  }
}

@keyframes animated-card {
  0% {
    opacity: 0;
    height: 0;
    top: 200px;
    left: 0px;
  }
  100% {
    opacity: 1;
    top: 0;
    left: 0;
    height: 100%;
  }
}

@-webkit-keyframes animated-text {
  0% {
    color: black;
  }
  100% {
    color: red;
  }
}

@keyframes animated-text {
  0% {
    color: black;
  }
  100% {
    color: red;
  }
}

@-webkit-keyframes project-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes project-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes arrow-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes arrow-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  position: relative;
}

.nav-container {
  position: relative;
  width: 100%;
  height: 100px;
  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;
  background-color: #1B242F;
  opacity: .8;
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.nav-container #nav-input {
  display: none;
}

.nav-container #nav-input:checked + #nav-button .nav-span-1 {
  -webkit-transform: rotate(45deg) translateY(15px) translateX(15px);
          transform: rotate(45deg) translateY(15px) translateX(15px);
}

.nav-container #nav-input:checked + #nav-button .nav-span-3 {
  -webkit-transform: rotate(135deg) translateY(20px) translateX(-15px);
          transform: rotate(135deg) translateY(20px) translateX(-15px);
}

.nav-container #nav-input:checked + #nav-button .nav-span-2 {
  visibility: hidden;
}

.nav-container #nav-input:checked ~ nav {
  display: block !important;
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 250px;
  background-color: black;
}

.nav-container #nav-input:checked ~ nav ul {
  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;
}

.nav-container #nav-input:checked ~ nav ul li {
  margin-bottom: 10px;
}

.nav-container .logo {
  margin-left: 20px;
  min-width: 80px;
}

.nav-container nav {
  padding-top: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-container nav ul {
  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;
}

.nav-container nav ul li {
  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;
  list-style-type: none;
  margin-right: 40px;
}

.nav-container nav ul li a {
  text-decoration: none;
  -webkit-transition: .7s;
  transition: .7s;
  color: white;
  font-weight: 500;
  font-size: 18px;
}

.nav-container nav ul li a:hover {
  color: #E31B6D;
}

.nav-container nav ul li a:hover + span {
  opacity: 1;
}

.nav-container nav ul li span {
  opacity: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #E31B6D;
}

.nav-container nav ul .resources {
  background-color: #04C2C9;
  padding: 15px 30px;
  border-radius: 30px;
  color: white;
}

.nav-container .nav-button-container .nav-span {
  display: none;
  margin-bottom: 20px;
  margin-right: 20px;
  height: 3px;
  width: 60px;
  background-color: white;
}

header {
  background-image: url(../images/background.gif);
  background-size: cover;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0px;
  z-index: -1;
}

header .left-header-container {
  color: white;
}

header .left-header-container img {
  width: 40px;
}

header .left-header-container h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
}

header .left-header-container h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

header .left-header-container h2 {
  color: #04C2C9;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em;
  /* Adjust as needed */
  -webkit-animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
          animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

header .left-header-container p {
  color: #E31B6D;
  margin-top: 10px;
  font-size: 18px;
  margin-bottom: 40px;
}

header .header-img-container {
  height: 100%;
  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;
}

header .header-img-container img {
  border-radius: 50%;
  width: 400px;
}

header .arrow-container {
  position: absolute;
  left: 50%;
  top: 75vh;
}

header .arrow-container .arrow {
  margin-top: 10px;
  width: 50px;
  border-top: 2px solid white;
}

header .arrow-container .arrow:nth-child(odd) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

header .arrow-container .arrow:nth-child(even) {
  -webkit-transform: rotate(-30deg) translateX(43px) translateY(11px);
          transform: rotate(-30deg) translateX(43px) translateY(11px);
}

header .arrow-container > div {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-name: arrow-animation;
          animation-name: arrow-animation;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

header .arrow-container .arrow-1 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

header .arrow-container .arrow-2 {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

header .arrow-container .arrow-3 {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

main .section-1 {
  margin: auto;
  background-color: #F5F5F5;
  width: 100%;
  height: 850px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .section-1 .section-1-container {
  width: 80%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

main .section-1 .section-1-container .section-1-left {
  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;
  width: 50%;
}

main .section-1 .section-1-container .section-1-left img {
  width: 500px;
  -webkit-box-shadow: -20px -15px 0px 1px #252934;
  box-shadow: -20px -15px 0px 1px #252934;
}

main .section-1 .section-1-container .section-1-right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .section-1 .section-1-container .section-1-right .section-1-right-text-container {
  color: #262626;
  text-align: justify;
  margin-left: 30px;
  font-size: 18px;
  line-height: 26px;
}

main .section-1 .section-1-container .section-1-right .section-1-right-text-container h3 {
  color: #04C2C9;
  margin-bottom: 10px;
}

main .section-1 .section-1-container .section-1-right .section-1-right-text-container h2 {
  margin-bottom: 10px;
}

main .section-2 {
  padding: 100px 0px;
  background-color: #252934;
}

main .section-2 .section-2-header-container {
  text-align: center;
}

main .section-2 .section-2-header-container h3 {
  color: #04C2C9;
}

main .section-2 .section-2-header-container h2 {
  color: white;
  margin-bottom: 50px;
}

main .section-2 .projects-container {
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (400px)[3];
      grid-template-columns: repeat(3, 400px);
  -ms-grid-rows: 400px 400px;
      grid-template-rows: 400px 400px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 100px;
  -webkit-column-gap: 4%;
          column-gap: 4%;
}

main .section-2 .projects-container .project {
  background-color: white;
  height: 400px;
  border-radius: 5px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  position: relative;
}

main .section-2 .projects-container .project .project-img-container {
  height: 300px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

main .section-2 .projects-container .project .project-img-container img {
  height: 250px;
  width: 350px;
  opacity: .5;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.46);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.46);
}

main .section-2 .projects-container .project .project-text-container {
  width: 100%;
  height: 100px;
  background-color: white;
  color: black;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

main .section-2 .projects-container .project .project-text-container h3 {
  margin: 10px 0px;
}

main .section-2 .projects-container .project .project-text-container p {
  height: 30px;
}

main .section-2 .projects-container .project .button-container {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .section-2 .projects-container .project .button-container .btn-primary {
  height: 50px;
  border-radius: 30px;
  padding: 10px 30px;
}

main .section-2 .projects-container .project:hover .project-info {
  opacity: 1;
  -webkit-animation-name: animated-card;
          animation-name: animated-card;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
  -webkit-box-shadow: 0px 0px 23px 0px white;
  box-shadow: 0px 0px 23px 0px white;
}

main .section-2 .projects-container .project .project-info {
  padding: 0px 30px;
  border-radius: 5px;
  background-color: #F5F5F5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #252934;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

main .section-2 .projects-container .project .project-info .info-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  height: 20%;
}

main .section-2 .projects-container .project .project-info .info-logo-container img {
  margin-top: 30px;
  width: 100px;
  height: auto;
}

main .section-2 .projects-container .project .project-info .project-info-text-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;
  height: 80%;
}

main .section-2 .projects-container .project .project-info h3 {
  margin-bottom: 10px;
}

main .section-2 .projects-container .project .project-info .github {
  text-decoration: none;
  background-color: #04C2C9;
  padding: 15px 30px;
  border-radius: 30px;
  color: white;
  background-color: #04C2C9;
}

main .section-2 .projects-container .project .project-info p {
  margin-bottom: 10px;
  font-weight: 300;
}

main .section-2 .projects-container .project .project-info a {
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-section {
  width: 100%;
  background-color: #252934;
}

.contact-section .contact-header {
  width: 70%;
  margin: auto;
  padding-top: 50px;
  text-align: center;
  border-top: 1px solid #04C2C9;
}

.contact-section .contact-header h3 {
  color: #04C2C9;
}

.contact-section .contact-header h2 {
  color: white;
  margin-bottom: 50px;
}

.contact-section .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  width: 70%;
  color: white;
  font-size: 18px;
}

.contact-section .contact-container div div {
  margin: 30px;
}

.contact-section .contact-container .contacts {
  width: 50%;
}

.contact-section .contact-container .form-container {
  width: 50%;
}

.contact-section .contact-container .form-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-section .contact-container .form-container form input {
  margin-bottom: 20px;
}

footer {
  height: 100px;
  width: 100%;
  background-color: #1B242F;
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 30px;
}

footer p {
  color: white;
}
/*# sourceMappingURL=index.css.map */