
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 10px;
    font-family: "Open Sans", sans-serif;
    color: #eee;
  }
  
  body {
    width: 100%;
    height: 100%;
    background-color: black;
    text-align: center;
    
  }
  
  section {
    padding: 6rem 0;
  }
  
  a {
    text-decoration: none;
    color: #eee;
  }
  
  section p {
    font-size: 1.8rem;
  }
  
  
  
  /*End global*/
  
  /*Start reusable*/
  .container {
    width: 90%;
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }
  
  .section-heading {
    text-align: center;
    margin-bottom: 10rem;
  }
  
  .section-heading h1 {
    font-family: "Roboto", sans-serif;
    font-size: 3.5rem;
    color: rgb(15, 76, 117);
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
  }
  
  /* line separators */
  .section-heading h1::before,
  .section-heading h1::after {
    content: "";
    position: absolute;
    bottom: -.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: gray;
  }
  
  /* line */
  .section-heading h1::before {
    width: 10rem;
    height: 1px;
    border-radius: 1rem;
  }
  
  .section-heading h6 {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    font-weight: 300;
  }
  
  /*End reusable*/
  
  /*Start header*/
  header {
    width: 100%;
    height: 100vh;
  }
  
  /* navbar */
  .top-nav{
    width: 100%;
    height: 100vh;
    top: -100vh;
    position: fixed;
    z-index: 100;
    background-color: #1b2a49;
    border-bottom-left-radius: 100% ;
    border-bottom-right-radius: 100%;
    transition: all 650ms cubic-bezier(1,0,0,1);
  }

  .my-nav-list{
    list-style: none;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .my-nav-list li{
    margin: 0 2 rem;
  }

  .nav-link{
    font-family: 'Rock Salt',sans-serif;
    font-size: 4.5rem;
    padding: 3.5rem;
  }
  .nav-link:hover,
  .nav-link:focus{
    background: linear-gradient(to top,#0960bd 25%, #bbe1fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .top-nav.open{
     top: 0;
     border-radius: initial;
  }

  .menu-toggler{
    position: fixed;
    align-self: end;
    top: 5rem;
    right: 5rem;
    width: 5rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1500;
    transition: transform 650ms ease-out;
  }

  .menu-toggler.open{
    transform: rotate(-45deg);
  }

  .bar{
    background: linear-gradient(to right,#0960bd, #bbe1fa);
    width: 100%;
    height: 4px;
    border-radius: .8rem;

  }

  .bar.half{
    width: 50%;
  }

  .bar.start{
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54,-0.81,0.57,0.57);
  }

  .open .bar.start{
    transform: rotate(-450deg) translateX(0.8rem);
  }

  .bar.end{
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54,-0.81,0.57,0.57);
  }
  .open .bar.end{
    transform: rotate(-450deg) translateX(-0.8rem);
  }

  .navbar {
    padding-bottom: 10px;
    z-index: 100;
    background-color: #090a20;
    position: fixed;
    max-width: 100%;
  
  }
  
  .main-nav {
    list-style-type: none;
    display: none;
    border-bottom-left-radius: 100%;
    transition: all 650ms cubic-bezier(1,0,0,1);
  }
  
  .nav-links {
    z-index: 101;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 2rem;
    padding: 0.4rem;
  }
  
  .main-nav li {
    transition: 0.2 ease-in-out;
    text-align: center;
    margin: 3rem auto;
  }
  
  .main-nav li:hover{
    transform: scale(1.1);
  }
  
  .nav-links:hover {
    color: #a9e2d4;
    z-index: 101;
    transform: scale(1.3);
  }
  
  .navbar-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    color: #a9e2d4;
    font-size: 24px;
  }
  
  .active {
    display: block;
  }
  
  @media screen and (min-width: 768px) {
    .navbar {
      display: flex;
      justify-content: space-between;
      padding-bottom: 0;
      height: 50px;
      align-items: center;
    }
  
    .main-nav {
      display: flex;
      margin-right: 30px;
      flex-direction: row;
      justify-content: flex-end;
    }
  
    .main-nav li {
      margin: 0;
    }
  
    .nav-links {
      margin-left: 40px;
    }
  
    .navbar-toggle {
      display: none;
    }
  
    .nav-links:hover {
      color: #a9e2d4;
      z-index: 101;
      transform: scale(1.3);
    }
  
    .logo {
      margin-top: 0;
    }
  }
  
  
  /* in case ever make a logo */
  .logo {
    visibility: hidden;
    display: inline-block;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  /* navbar */
  
  .landing-text {
    /* perfect center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
  }
  
  /* name */
  .landing-text h1 {
    font-size: 8rem;
    font-weight: 500;
    font-family: "Rock Salt", sans-serif;
    background: linear-gradient(to top, #0960bd 25%, #bbe1fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 2.6rem;
    user-select: none;
    line-height: 1.1;
  }
  
  .landing-text h6 {
    font-family: "Open Sans", "sans-serif";
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 2rem;
  
  }
  
  
  .landingbtn {
    margin: 0 auto;
    background-color: rgb(15, 76, 117);
    height: 6rem;
    width: 20rem;
    cursor: pointer;
    transition: 0.2s ease-in;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .landingbtn p {
    font-family: "Raleway", "sans-serif";
    font-size: 2rem;
  }
  
  .landingbtn:hover {
    transform: scale(1.05);
    background-color: rgb(9, 96, 189);
  }
  
  /* typewriter */
  .txt-type>.txt {
    font-family: "Poppins", "sans-serif";
    border-right: 0.2rem solid #0f4c75;
  }
  
  /*End header*/
  
  /*Start about*/
  
  #about {
    margin-top: 2rem;
  }
  
  .about .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-heading {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 6rem;
    line-height: 0.2;
    /* puts "About" behind */
  
  }
  
  .about-heading h1 {
    color: rgba(15, 76, 117, 0.644);
    font-size: 10rem;
  }
  
  .about-heading h6 {
    font-size: 2rem;
    font-weight: 300;
  }
  
  .profile-img {
    max-width: 30rem;
    flex: 1;
    margin: 0 3rem 7rem 0;
  }
  
  .profile-img img {
    border-radius: 60%;
    box-shadow: 7px 9px 13px 4px rgba(15, 76, 117,0.75);
  }
  
  
  .about-details {
    flex: 1;
  }
  
  .social-media .nav-list{
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-media {
    margin-top: 5rem;
  }
  
  .social-media i {
    padding: 1rem;
    font-size: 4rem;
    transition: all 250ms;
  }
  
  .social-media i:hover {
    transform: scale(1.1);
  }
  
  .fa-facebook-square:hover {
    color: #4267b2
  }
  
  .fa-linkedin:hover{
    color: #4267b2;
  }
  
  
  .fa-github:hover {
    color: rgb(250, 250, 250);
  }
  
  .fa-instagram:hover {
    color: rgb(225,48,108);
  }
  
  
  /*End about*/
  
  /*Start skills/services*/
  .my-skills {
    margin-top: 10rem;
    display: flex;
    flex-flow: row;
    text-align: center;
  }
  
  .skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  
  .skill h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem -2px 2rem 0;
    font-size: 2rem;
  }
  
  .icon-container {
    width: 10rem;
    height: 10rem;
    border: 2.5px solid rgb(15, 76, 117);
    background-color: #a8a5a81a;
    margin-bottom: 2rem;
    display: flex;
    transform: rotate(45deg);
  }
  
  .icon-container i {
    color: white;
    font-size: 5rem;
    margin: auto;
    transform: rotate(-45deg);
  }
  
  
  .skillicons {
    margin-top: 1rem;
    font-size: 4rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  
  .skillicons-left {
    margin-top: 1rem;
    font-size: 4rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
    align-items: center;
  }
  
  .skillicon-box {
    margin: 1rem;
    padding: 1rem;
  }

  
  /*End skills/services*/

  /* Start languages */
  .languages h2{
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    color: rgb(15, 76, 117);
    font-weight: 700;
    position: relative;

  }
  /* End languages */
  
  /*Start portfolio*/
  
  .portfolio img:not(.extrapic), .about img {
    width: 100%;
  }
  
  
  .portfolio-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }
  
  
  
  .portfolio-img {
    width: 50rem;
    flex: 1;
  
  }
  
  .portfolio-description {
    flex: 1;
    margin: 1rem;
  }
  
  .portfolio-description h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 1rem 0;
    text-transform: uppercase;
    font-family: "Alata", sans-serif;
   color: rgb(15, 76, 117);
  
  }
  
  
  .portfolio-description p,
  .portfolio-long p {
    text-align: left;
  }
  
  .portfolio-long {
    display: none;
    order: 3;
    background-color: rgba(9, 4, 19, 0.918);
    padding: 2rem;
    margin: 1rem 0 2rem 0;
  }
  
  .break {
    flex-basis: 100%;
    height: 0;
  }
  
  .arrowDown {
    display: block;
  }
  
  .arrowUp {
    display: none;
  }
  
  
  .portfolio-description .cta {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #dff6f0;
    transition: all 150ms;
  }
  
  .portfolio-description .cta:hover {
    transform: scale(1.1);
    font-weight: 800;
  
  }
  
  .portfolio-item:last-child {
    margin-bottom: 4rem;
  }
  
  .extrapic{
    margin: 1rem;
    width: 40%;
   }
   
   
   .portfolio-long a, .bio a{
     color: rgb(15, 76, 117);
     font-weight: 600;
   }
   
   .portfolio-long .subheading{
     margin-top: 1rem;
     color: #70b1a1;
     display: block;
     text-align:left;
     font-weight: 900;
     font-size: 2rem;
   }
   
   .portfolio-long ul, .bio ul{
     margin-left: 2rem;
     font-size: 1.8rem;
     text-align: left;
   }
   
   .nested li{
   padding: 0 !important;
   margin-left: 10px;
   }
   
   .portfolio-long li{
     padding: 1rem;
   }
   
  /*End services*/
  
  
  
  
 
  
  /* start personal */
  .bio{
    text-align: left;
    padding-bottom: 100px;
  }
  
  
  .bio-container{
    display:flex;
    flex-direction: row;
    justify-content: center;
    margin: 2rem 0;
  }
  
  .bio-container img{
    width: 25%;
    border-radius: 30px;
    margin: 1rem;
    object-fit: cover;
    }
  
  
  @media screen and (max-width: 600px){
    .bio-container img{
      width: 40%;
      border-radius: 10px;
      margin: 0.5rem;
      }
  
      .bio-container{
       
        flex-flow: row wrap;
        justify-content: center;
      
      }
  }
  
  
  
  /* end personal */
  
  
  /*Start footer*/
  
  .copyright p {
    font-weight: 200;
    font-size: 1.4rem;
  }
  
  .copyright {
    width: 100%;
    text-align: center;
    background-color: #1b2a49;
    padding: 2rem 0;
    position: relative;
  }
  
  .up {
    position: absolute;
    width: 5rem;
    height: 5rem;
    background-color: #eee;
    top: -2.5rem;
    right: 5rem;
    border-radius: 100%;
    display: flex;
    animation: pulse 2s infinite;
    cursor: pointer;
  }
  
  .up i {
    color: black;
    font-size: 2rem;
    margin: auto;
  }
  
  /*End footer*/
  
  /*Start animations*/
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(65, 136, 132, 0.99);
    }
  
    100% {
      box-shadow: 0 0 0 1.4rem rgba(65, 136, 132, 0);
    }
  }
  
  /*End animations*/
  
  /*Start media queries for mobile*/
  
  @media screen and (max-width: 1120px) {
  
    .thumb{
      width: 30%;
      height: 180px;
    }
  
    .extrapic{
      width: 60%;
     }
  
    .my-nav-list {
      flex-direction: column;
    }
  
    .about-details .nav-list {
      flex-direction: row;
    }
  }
  
  @media screen and (max-width: 768px) {
  
    section{
      padding: 3rem 0;
    }
  
    .section-heading {
      margin-bottom:2rem;
    }
  
  
    .my-skills{
      flex-flow: row wrap;
      margin-top:2rem;
    }
  
    .landing-text h1 {
      font-size: 8rem;
      line-height: 1.1;
    }
  
    .landing-text h6 {
      font-size: 2rem;
    }
  
  
    li {
      margin: 1.2rem 0
    }
  
    .about-heading h1 {
      font-size: 8rem;
    }
  
    .about-details i {
      font-size: 2.5rem;
    }
  
    .about-details li {
      margin: 0 1rem;
    }
  
    .icon-container {
      width: 7rem;
      height: 7rem;
    }
  
    .icon-container i {
      font-size: 3rem;
    }

    .my-nav-list{
      flex-direction: column;
    }

    .my-nav-list li{
      margin: 2rem 0;
    }

    .nav-link{
      font-size: 3.0rem;
    }

  
  }
  
  @media screen and (max-width: 600px) {
  
    .thumb {
      height: 130px;
     width: 45%;
    }
  
    .extrapic{
      width: 100%;
     }
  
   section p, .portfolio-long ul, .bio ul{
      font-size: 1.5rem;
    }
  
    .landing-text h1 {
      font-size: 7rem;
    }
  
    .landingbtn {
      width: 16rem;
    }
  
    .landing-text {
      top: 30rem;
    }
  
    .about .container {
      flex-direction: column;
    }
  
  
    .profile-img {
      margin: 0 7rem 7rem 7rem;
      
    }
  
    .portfolio-item {
      flex-direction: column;
    }
  
    .portfolio-description {
      order: 2;
      margin: 0;
    }
  
    .portfolio-description h1 {
      margin-top: -1rem;
      font-size: 2.5rem;
    }
  
  
    .portfolio-img {
      max-width: 100%;
      margin-bottom: 2rem;
      order: 1;
    }

    .menu-toggler{
      top: 2rem;
      right: 2rem;
    }
    .nav-link{
      font-size: 2.5rem;
    }
  
    .cover-container img{
      max-width: 100%;
      margin-bottom: 2rem;
    }
  }
  
  /*End media queries*/
  
  
  
  /* ::::::::::::::::::::::::::::::::::::::::::::::::::: */
  
  canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: -10;
  
  }
  
  
  
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  
  /*Start contact*/
  
  #email{
    color: rgb(15, 76, 117);
  }
  #email:hover{
    color: rgb(9, 96, 189);
  }
  
  
  .grecaptcha-badge { opacity:0;}
  
  input {
      outline: none;
      border: none;
  }
  
  input[type="number"] {
      -moz-appearance: textfield;
      appearance: none;
      -webkit-appearance: none;
  }
  
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;
  }
  
  textarea {
    outline: none;
    border: none;
  }
  
  textarea:focus, input:focus {
    border-color: transparent !important;
  }
  
  input::-webkit-input-placeholder { color: #bdbdd3;}
  input:-moz-placeholder { color: #bdbdd3;}
  input::-moz-placeholder { color: #bdbdd3;}
  input:-ms-input-placeholder { color: #bdbdd3;}
  
  textarea::-webkit-input-placeholder { color: #bdbdd3;}
  textarea:-moz-placeholder { color: #bdbdd3;}
  textarea::-moz-placeholder { color: #bdbdd3;}
  textarea:-ms-input-placeholder { color: #bdbdd3;}
  
  /*---------------------------------------------*/
  button {
      outline: none !important;
      border: none;
      background: transparent;
  }
  
  button:hover {
      cursor: pointer;
  }
  
  iframe {
      border: none !important;
  }
  
  
  .container-contact100 {
    width: 100%;  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: relative;
  }
  
  .wrap-contact100 {
    width: 550px;
    background: transparent;
    padding: 0px 0px 160px 0px;
  }
  
  .contact100-form {
    width: 100%;
  }
  
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input100 {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.74);
    border-radius: 31px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  
  .input100 {
    position: relative;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.74);
    border-radius: 31px;
    font-family: "Open Sans", "sans-serif";
    font-size: 18px;
    color: #8f8fa1;
    line-height: 1.2;
  }
  
  
  /*---------------------------------------------*/
  input.input100 {
    height: 62px;
    padding: 0 35px 0 35px;
  }
  
  
  textarea.input100 {
    min-height: 169px;
    padding: 19px 35px 0 35px;
  }
  
  /*------------------------------------------------------------------
  [ Focus Input ]*/
  
  .focus-input100 {
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 31px;
    background-color: rgb(218, 237, 248);
    pointer-events: none;
    
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.2s;
  }
  
  .input100:focus + .focus-input100 {
    width: calc(100% + 20px);
  }
  
  /*[ Button ]*/
  .container-contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
  }
  
  .contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 150px;
    height: 62px;
    background-color: transparent;
    border-radius: 31px;
    font-family: "Open Sans", "sans-serif";
    font-weight: 800;
    letter-spacing: 0.1rem;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
  }
  
  .contact100-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 31px;
    background-color: rgb(151, 108, 180);
    pointer-events: none;
    
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .contact100-form-btn:hover:before {
    background-color: #403866;
    width: calc(100% + 20px);
  }
  
  .thankyou h1{
  padding-bottom: 30px
  }
  
  .thankyou h6{
  font-size: 2rem
  }
  /*End contact*/
