@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,500,700');
@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');

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

html {
  font-size: 10px;
  font-family: 'Roboto Mono', monospace;
  color: #eee;
}

body {
  width: 100%;
  height: 100%;
  background-color: #09201e;
  text-align: center;
  
}

section {
  padding: 6rem 0;
}

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

section p {

    font-size: 1.8rem;
    font-weight: 200;
    width: auto;
    line-height: 1.5;
    word-spacing: 3px;
}

.container h4 {
  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: 3rem;
}

.section-heading h1 {
  font-family: 'Roboto Mono', monospace;
  font-size: 3.5rem;
  color: rgb(31, 130, 134);
  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 */
.navbar {
  padding-bottom: 10px;
  z-index: 100;
  background-color: #09201e;
  position: fixed;
  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.primary-border {
  color: #fff;
  border: 1px solid #09201e;
  border-radius: 20px;
  
}

.nav-links {
  z-index: 101;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  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: #09201e;
  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;
  }
  .social-media i{
    padding: 10px;
  }
 
}
@media screen and (min-device-width: 481px) and (max-device-width: 768px) { 
  
  .social-media i{
    padding: 10px;
  }


}

/* 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: 'Nerko One', cursive; */
  background: linear-gradient(to top,#00ffea 25%, #09201e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 1rem;
  user-select: none;
  line-height: 1.1;
}

.landing-text h6 {
  font-family: 'Roboto Mono', monospace;
  font-size: 3rem;
  font-weight: 200;
  /* margin: 5px; */
  margin-bottom: 2rem;
}

.landingbtn {
  margin: 0 auto;
  background-color: rgb(131, 108, 180);
  height: 6rem;
  width: 19rem;
  cursor: pointer;
  transition: 0.2s ease-in;
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;

}

.landingbtn p {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
}

.landingbtn:hover {
  transform: scale(1.05);
  background-color: rgb(134, 103, 161);
}

/* typewriter */
.txt-type>.txt {
  font-family: 'Nerko One', cursive;
  border-right: 0.2rem solid #777;
}


/*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(31, 131, 134, 0.644);
  font-size: 10rem;
}

.about-heading h6 {
  font-size: 2rem;
  font-weight: 300;
}

.profile-img {
  max-width: 30rem;
  flex: 1;
  margin: 0 3rem 6rem 0;
}

.profile-img img {
  border-radius: 10%;
}


.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: 2rem;
}

.social-media i {
  padding: 1rem;
  font-size: 5rem;
  transition: all 250ms;
}

.social-media i:hover {
  transform: scale(1.4);
}

.fa-facebook-square:hover {
  background: #2b4170; 
  background: -moz-linear-gradient(45deg, #2b4170 0%,#3b5998 25%,#0b214e 50%,  #2818bc 100%); 
  background: -webkit-linear-gradient(45deg, #2b4170 0%,#3b5998 25%,#0b214e 50%,#2818bc 100%); 
  background: linear-gradient(45deg, #2b4170 0%,#3b5998 25%, #0b214e 50%,#2818bc 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b4170', endColorstr='#2818bc',GradientType=1 );
  color:transparent;
  -webkit-background-clip: text;
  background-clip: text;
	
}

.fa-linkedin:hover{
  color: #4267b2;
}
.fa-instagram:hover{
  background: #f09433; 
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color:transparent;
  -webkit-background-clip: text;
  background-clip: text;
  
}

.fa-github:hover {
  color: rgb(51, 51, 51);
}
.fa-whatsapp:hover {
  color: rgb(4, 80, 14);
}

/*End about*/

/*Start services*/
.my-skills {
  margin-top: 1rem;
  display: flex;
  flex-flow: row;
  text-align: center;
}

.skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.skills h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 2rem -2px 2rem 0;
  font-size: 2rem;
}
.my-skills p{
  font-size: 1.6rem;
}
.icon-container {
  width: 10rem;
  height: 10rem;
  border: 3px solid #6c4a88;
  background-color: #a8a5a81a;
  margin-bottom: 2rem;
  display: flex;
  transform: rotate(45deg);
}

.icon-container i {
  color: white;
  font-size: 10rem;
  margin: auto;
  transform: rotate(-45deg);
}


.skillicons {
  margin-top: 1rem;
  font-size: 4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.skillicon-box {
  margin: 1rem;
  padding: 1rem;
}

.portfolio img:not(.extrapic), .about img, .corgis 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(153, 133, 173);

}


.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: #eee;
  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(211, 171, 230);
   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;
 }

@media all {


.copyright p {
  font-weight: 200;
  font-size: 1.4rem;
}

.copyright {
  width: 100%;
  text-align: center;
  border: white;
  background-color:#09201e;
  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 :hover {
  background: #f0106d; 
  -webkit-background-clip: text;
  background-clip: text;

  

}
.up i {
  color: black;
  font-size: 2rem;
  margin: 14px;
 

}
@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);
  }
}


@media screen and (max-width: 1120px) {

  .thumb{
    width: 30%;
    height: 180px;
  }

  .extrapic{
    width: 60%;
   }

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

  .about-details .nav-list {
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {

  section{
    padding: 6rem 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: 1.8rem;
  
      width: 320px;
    }
  }


  li {
    margin: 1.2rem 0
  }

  .about-heading h1 {
    font-size: 8rem;
  }

  .about-details i {
    font-size: 4 rem;
  }

  .about-details li {
    margin: 0 0.5rem;
  }

  .icon-container {
    width: 9rem;
    height: 9rem;
  }

  .icon-container i {
    font-size: 5rem;
  }

}

@media screen and (max-width: 600px) {


  .thumb {
    height: 130px;
   width: 45%;
  }

  .corgi{
    width: 130px;
    margin: 0 1rem;
  }

#shadowcorgi{
  display: none;
}

  .extrapic{
    width: 100%;
   }

 section p, .portfolio-long ul, .bio ul{
    font-size: 1.5rem;
    
  }
.about-details p{
  padding: 0.8rem;

}
  .landing-text h1 {
    font-size: 7rem;
  }

  .landingbtn {
    width: 17rem;
  }

  .landing-text {
    top: 30rem;
  }

  .about .container {
    flex-direction: column;
  }


  .profile-img {
    margin: 0 5rem 5rem;
  }

  .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;
  }



  .swiper-slide {
   

    order: 1; 
  }

}

/*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%;
}


#cond{
  color: rgb(142, 142, 204);
}
#cond:hover{
  color: rgb(114, 114, 173);
}


.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 0px 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*/