@import url("https://fonts.googleapis.com/css?family=Roboto:300&display=swap");
/* Body Styling */

* {
  margin: 0;
  padding: 0;
}

.hidden {
  display: none;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Open sans", sans-serif;
  font-weight: 300 !important;
}

h2, h3, a, .footer-title {
  font-family: "Julius Sans One", sans-serif;
}

.footer-title {
  font-size: 2rem;
}

.headingTwo {
  text-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.searchbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search {
  display: inline-block;
}

.search button {
  background-color: #1b9cfc;
  text-decoration: none;
  color: white;
  border-radius: 0.25rem;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}

/* Opening Page */

#openingPage {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient( 45deg, rgba(56, 103, 214, 1), rgba(129, 236, 236, 1));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

main {
  background-color: #fff;
}

/* Opening Animation Large Screens */

#logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo path:nth-child(2) {
  stroke-dasharray: 436px;
  stroke-dashoffset: 436px;
  animation: line-anim 2s ease forwards;
}

#logo path:nth-child(3) {
  stroke-dasharray: 492px;
  stroke-dashoffset: 492px;
  animation: line-anim 2s ease forwards 0.1s;
}

#logo path:nth-child(4) {
  stroke-dasharray: 475px;
  stroke-dashoffset: 475px;
  animation: line-anim 2s ease forwards 0.2s;
}

#logo path:nth-child(5) {
  stroke-dasharray: 444px;
  stroke-dashoffset: 444px;
  animation: line-anim 2s ease forwards 0.3s;
}

#logo path:nth-child(6) {
  stroke-dasharray: 352px;
  stroke-dashoffset: 352px;
  animation: line-anim 2s ease forwards 0.4s;
}

#logo path:nth-child(7) {
  stroke-dasharray: 623px;
  stroke-dashoffset: 623px;
  animation: line-anim 2s ease forwards 0.5s;
}

#logo path:nth-child(8) {
  stroke-dasharray: 689px;
  stroke-dashoffset: 689px;
  animation: line-anim 2s ease forwards 0.6s;
}

#logo path:nth-child(9) {
  stroke-dasharray: 352px;
  stroke-dashoffset: 352px;
  animation: line-anim 2s ease forwards 0.7s;
}

#logo path:nth-child(10) {
  stroke-dasharray: 169px;
  stroke-dashoffset: 169px;
  animation: line-anim 2s ease forwards 0.8s;
}

#logo path:nth-child(11) {
  stroke-dasharray: 323px;
  stroke-dashoffset: 323px;
  animation: line-anim 2s ease forwards 0.9s;
}

#logo path:nth-child(12) {
  stroke-dasharray: 323px;
  stroke-dashoffset: 323px;
  animation: line-anim 2s ease forwards 1s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

/* Opening Animation Small Screens */

#logo2 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#logo2 path:nth-child(2) {
  stroke-dasharray: 231px;
  stroke-dashoffset: 231px;
  animation: line-anim 2s ease forwards;
}

#logo2 path:nth-child(3) {
  stroke-dasharray: 261px;
  stroke-dashoffset: 261px;
  animation: line-anim 2s ease forwards 0.1s;
}

#logo2 path:nth-child(4) {
  stroke-dasharray: 251px;
  stroke-dashoffset: 251px;
  animation: line-anim 2s ease forwards 0.2s;
}

#logo2 path:nth-child(5) {
  stroke-dasharray: 235px;
  stroke-dashoffset: 235px;
  animation: line-anim 2s ease forwards 0.3s;
}

#logo2 path:nth-child(6) {
  stroke-dasharray: 186px;
  stroke-dashoffset: 186px;
  animation: line-anim 2s ease forwards 0.4s;
}

#logo2 path:nth-child(7) {
  stroke-dasharray: 330px;
  stroke-dashoffset: 330px;
  animation: line-anim 2s ease forwards 0.5s;
}

#logo2 path:nth-child(8) {
  stroke-dasharray: 365px;
  stroke-dashoffset: 365px;
  animation: line-anim 2s ease forwards 0.6s;
}

#logo2 path:nth-child(9) {
  stroke-dasharray: 186px;
  stroke-dashoffset: 186px;
  animation: line-anim 2s ease forwards 0.7s;
}

#logo2 path:nth-child(10) {
  stroke-dasharray: 89px;
  stroke-dashoffset: 89px;
  animation: line-anim 2s ease forwards 0.8s;
}

#logo2 path:nth-child(11) {
  stroke-dasharray: 171px;
  stroke-dashoffset: 171px;
  animation: line-anim 2s ease forwards 0.9s;
}

#logo2 path:nth-child(12) {
  stroke-dasharray: 171px;
  stroke-dashoffset: 171px;
  animation: line-anim 2s ease forwards 1s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

/* Opening Animation Content */

.openingContent {
  position: absolute;
  height: auto;
  width: 90vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: -webkit-linear-gradient(45deg, transparent, #fff, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
  font-size: 3rem;
}

.openingContent p {
  padding: 2rem;
  border: 1px solid;
  border-image: linear-gradient( 90deg, transparent 0%, transparent 10%, #fff 25%, #fff 75%, transparent 90%, transparent 100%) 30;
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  color: #fff;
}

/* Scroll Down Arrow Button */

#sectionArrow {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

#sectionArrow::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 80%;
}

#sectionArrow a {
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font: normal 300 64px/1 "Josefin Sans", sans-serif;
  text-align: center;
  white-space: nowrap;
}

.demo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font: normal 400 20px/1 "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.demo a:hover {
  opacity: 0.5;
}

#sectionArrow a {
  padding-top: 70px;
}

#sectionArrow a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/* Header and Navigation */

#header {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 0px;
}

.navbar-brand {
  height: 2em;
  font-size: 3em;
  margin-left: 1rem;
}

#navbartext {
  font-family: "Julius Sans One", sans-serif;
}

.navigation {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
}

.nav-link {
  height: 2em;
  color: #444 !important;
  margin: 20px auto;
  font-size: 1.4rem;
  padding: 20px;
}

.nav-link:hover {
  color: #1b9cfc !important;
}

.gradient {
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Scroll Up Arrow Button */

#button {
  display: inline-block;
  background-color: #ff9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
  content: "TOP";
  font-family: "Julius Sans One", sans-serif;
  font-size: 1rem;
  line-height: 52px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/* Content Cards */

.module {
  transition: all 1s;
  opacity: 1;
  transform: translateY(-10px);
}

.hide-card {
  opacity: 0;
}

.content-card {
  padding: 2rem;
  border-radius: 0.5rem;
  position: relative;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1) inset;
}

.content-card:before, .content-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  top: 50%;
  bottom: 0;
  left: 10px;
  right: 10px;
  -moz-border-radius: 100px / 10px;
  border-radius: 100px / 10px;
}

.content-card:after {
  right: 10px;
  left: auto;
  -webkit-transform: skew(8deg) rotate(3deg);
  -moz-transform: skew(8deg) rotate(3deg);
  -ms-transform: skew(8deg) rotate(3deg);
  -o-transform: skew(8deg) rotate(3deg);
  transform: skew(8deg) rotate(3deg);
}

.portfolio>ul>li:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: transform 0.3s;
  transform: scale(1.001);
  transform: translateY(-8px);
}

/* Main Content */

h2 {
  background: -webkit-linear-gradient( 45deg, #3867d6, #81ecec, #81ecec, #81ecec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
  font-size: 3rem;
}

p {
  line-height: 1.8em;
}

.profile-pic {
  width: 100%;
  max-width: 300px;
  height: auto;
  padding-right: 1.5%;
  padding-bottom: 1.5%;
}

.main-container {
  margin: 2% 0px;
}

.main-content {
  padding: 0px;
}

.row {
  margin: 0px;
}

/* Portfolio Card Styling */

h5 {
  background: #1b9cfc;
  text-align: center;
  padding: 3%;
}

.card-img-overlay {
  padding: 0px;
  top: 75%;
}

.card {
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
  -webkit-box-shadow: 0 10px 6px -6px #777;
  -moz-box-shadow: 0 10px 6px -6px #777;
  box-shadow: 0 10px 6px -6px #777;
}

.card:hover {
  opacity: 0.5;
}

.showMore {
  font-size: 0.8em;
  text-align: center;
  color: #777;
  margin: 0;
  padding: 0;
}

/*Button Styling */

.button-container {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #e2e2e2;
  padding: 20px;
}

.portfolioContainerLink:hover {
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.portfolioContainerLink a {
  padding: 8px 15px;
}

.portfolio a {
  background-color: #1b9cfc;
  text-decoration: none;
  color: white;
  border-radius: 0.25rem;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}

.portfolio>ul {
  padding: initial;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1.5rem;
  list-style-type: none;
}

.portfolio>ul>li {
  border: 1px solid #e2e2e2;
  border-radius: 0.5rem;
  max-width: 530px;
}

.portfolio>ul>li>figure {
  max-height: 220px;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  position: relative;
}

.portfolio>ul>li>figure>img {
  width: 100%;
  height: 100%;
  max-height: 164px;
  object-fit: cover;
}

.portfolio>ul>li>figure>figcaption {
  position: absolute;
  bottom: 0;
  background-color: rgba(27, 156, 252, 0.7);
  width: 100%;
}

.portfolio>ul>li>figure>figcaption>h3 {
  color: white;
  padding: 0.75rem;
  font-size: 1.25rem;
}

.portfolio>ul>li>p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0rem 0.75rem;
  color: #666666;
  height: 144px;
  overflow: auto;
}

.portfolio>ul>li>div>a {
  padding: 0.5rem 1rem;
  margin: 0.5rem;
}

.portfolio img {
  transition-duration: 0.2s;
}

.portfolioPhoto:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  z-index: 0;
  transition: 0.5s;
}

/* Skills Styling */

.skill-header {
  margin: 15px 0px;
  font-weight: 700;
}

.skill {
  padding: 0rem;
  margin: 5px 0px;
  transition: transform 0.2s ease-in-out;
}

.skills-row {
  padding-bottom: 2rem;
}

.determinate {
  width: 0%;
  -webkit-transition: width 3s !important;
  transition: width 3s !important;
  transition-timing-function: ease-out !important;
}

.skill:hover {
  transform: scale(1.5) translate(15%);
}

/* Form Styling */

form .btn {
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  text-decoration: none;
  color: white;
  background-color: #1b9cfc;
  border-radius: 0.25rem;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
}

.formContainerLink {
  height: 100px;
  padding: 20px;
}

/* Footer */

footer {
  height: auto;
}

footer a:hover {
  text-decoration: none;
}

.contact-info {
  margin: 2rem 0rem 3rem 0rem;
}

.footer {
  font-size: 1rem;
}

.contact-info p, .contact-info a {
  line-height: 1rem;
}

.icon {
  margin: 0em 0.4em;
  transition: ease-in 200ms;
  font-size: 2.5em;
  color: #fff;
}

.icon:hover {
  transform: translateY(2px);
}

.icon:hover span {
  color: #444;
}

.footer-copyright {
  background: transparent;
}

.copyright {
  padding-bottom: 10px;
}

footer p, .footer-nav {
  font-size: 1rem;
  font-family: "Open sans", sans-serif;
  font-weight: 300 !important;
  display: block;
  margin-bottom: 1rem;
}

.footer-row {
  width: 75vw;
}

#top-button {
  font-size: 1rem;
  margin-bottom: 0px;
}

.footerPhoto {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 100%;
  margin-top: 3rem;
}

/* Styles and Effects Section */

.card-holder {
  display: grid;
  grid-gap: 1rem;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, auto));
}

.card-style {
  height: 230px;
  width: 240px;
  background-color: white;
  border-radius: 0.5rem;
  position: relative;
  box-shadow: 1px 1px 5px lightgrey;
  transition: all ease-in-out 150ms;
}

.card-heading {
  padding: 20px 0px;
  margin: 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  position: relative;
  display: block;
  font-size: 1.5em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-family: "Roboto", sans-serif;
}

.card-style:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #576574;
  position: absolute;
  box-shadow: 1px 1px 5px #444;
  top: 68px;
  z-index: 10;
}

.heading1 {
  background: linear-gradient(90deg, #ee5253, #f368e0);
}

.heading2 {
  background: linear-gradient(90deg, #f368e0, #ff9f43);
}

.heading3 {
  background: linear-gradient(90deg, #f368e0, #0abde3);
}

.heading4 {
  background: linear-gradient(90deg, #0abde3, #00d2d3);
}

.card-style>h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  text-align: center;
  color: #576574;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.card-style>p {
  padding: 0px 20px;
  text-align: center;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 1.2em;
}

.card-style:hover {
  transform: translateY(-8px) skewY(-2deg);
  box-shadow: 1px 1px 1px #576574, 10px 10px 10px #8395a7;
}

/* Shape hover effects */

.box {
  width: 100px;
  height: 100px;
  position: relative;
}

/* ----- Heart Shape ----- */

.heart {
  position: absolute;
  margin: auto;
  right: 0;
  bottom: 20px;
  left: 0;
  background-color: #f368e0;
  height: 50px;
  width: 50px;
  transform: rotate(-45deg);
  transition: all ease-out 300ms;
}

.heart::after {
  background-color: #f368e0;
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 25px;
  transition: all ease-out 500ms;
}

.heart::before {
  content: "";
  background-color: #f368e0;
  border-radius: 50%;
  position: absolute;
  width: 50px;
  height: 50px;
  top: -25px;
  left: 0px;
  transition: all ease-out 500ms;
}

.heart:hover::before {
  transform: scale(1.5) translate(-2px, -10px);
  opacity: 0;
}

.heart:hover::after {
  transform: scale(1.5) translate(10px, 2px);
  opacity: 0;
}

.heart:hover {
  transform: scale(2) rotate(-45deg) translate(-20px, 20px);
  opacity: 0;
}

/* ----- Ball Shape ----- */

#ball {
  width: 70px;
  height: 70px;
  margin: 50px auto;
  position: absolute;
  left: 15px;
  bottom: -35px;
  border-radius: 50%;
  background: linear-gradient(35deg, #f368e0, #0abde3);
  transition: all ease-out 300ms;
}

#ball:hover {
  left: 50px;
  opacity: 0;
}

/* ----- Square Shape ----- */

#square {
  width: 70px;
  height: 70px;
  margin: 50px auto;
  position: absolute;
  left: 15px;
  bottom: -35px;
  background: #0abde3;
  transition: all ease-out 300ms;
}

#square:hover {
  animation: square ease-in 1s;
  animation-direction: reverse;
}

@keyframes square {
  0% {
    box-shadow: 10px 10px 10px lightgrey;
    opacity: 0;
    transform: scale(1) rotate(0deg);
    border-radius: 0px;
  }
  50% {
    box-shadow: 10px 10px 25px lightgrey;
    transform: scale(1.1) rotate(45deg);
    opacity: 1;
    border-radius: 25%;
  }
  100% {
    box-shadow: 10px 10px 50px lightgrey;
    transform: scale(2) rotate(180deg);
    border-radius: 50%;
    opacity: 0;
    background-color: #00d2d3;
  }
}

/* ----- Rectangle Shape ----- */

.top-margin {
  margin-top: 1rem;
}

#rectangle {
  width: 160px;
  height: 70px;
  margin: 50px auto;
  position: absolute;
  left: -30px;
  bottom: -35px;
  background: #ee5253;
  transition: all ease-out 500ms;
}

#rectangle:hover {
  animation: rectangle linear 500ms;
  animation-fill-mode: forwards;
}

#rectangle:hover::before {
  content: "rectangle";
  font-size: 1.5rem;
  left: 15px;
  line-height: 70px;
  position: absolute;
  color: white;
  text-transform: uppercase;
}

@keyframes rectangle {
  0% {
    transform: scale(1) translate(0px, 0px) skewX(0deg);
    width: 160px;
  }
  25% {
    transform: scale(1) translate(0px, -15px) skewX(45deg);
  }
  50% {
    transform: scale(1) translate(20px, -35px) skewX(80deg);
    background-color: #fff;
  }
  75% {
    transform: scale(1) translate(0px, -15px) skewX(45deg);
    background-color: #f368e0;
  }
  100% {
    transform: scale(1) translate(0px, 0px) skewX(0deg);
    background-color: #f368e0;
  }
}

/* SVG ANIMATIONS */

/* MOBILE PHONE CHATTING ANIMATION */

.svg-images {
  margin-top: 2rem;
}

.comment-1 {
  animation: comment 3500ms infinite ease;
  animation-delay: 500ms;
  transform-origin: center;
  transform-box: fill-box;
}

.comment-2 {
  animation: comment2 3500ms infinite ease;
  animation-delay: 500ms;
  transform-origin: center;
  transform-box: fill-box;
}

.comment-3 {
  animation: comment3 3500ms infinite ease;
  animation-delay: 500ms;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes comment {
  0% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  50% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(0px);
    opacity: 1;
  }
}

@keyframes comment2 {
  0% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  30% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(0px);
    opacity: 1;
  }
}

@keyframes comment3 {
  0% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  10% {
    transform: scale(0) translateX(0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(0px);
    opacity: 1;
  }
}

/* CODING THOUGHT ANIMATION */

#thought1 {
  animation: thought 4500ms infinite linear;
  animation-delay: 500ms;
  transform-origin: center;
  transform-box: fill-box;
}

#thought2 {
  animation: thought 3500ms infinite linear;
  animation-delay: 1500ms;
  transform-origin: center;
  transform-box: fill-box;
}

#thought3 {
  animation: thought 3000ms infinite linear;
  animation-delay: 2000ms;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes thought2 {
  0% {
    opacity: 0;
    transform: translateY(60px) translateX(100px);
  }
  80% {
    opacity: 1;
    transform: translateY(10px) translateX(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes thought3 {
  0% {
    opacity: 0;
    transform: translateY(60px) translateX(80px);
  }
  80% {
    opacity: 1;
    transform: translateY(10px) translateX(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes thought {
  0% {
    opacity: 0;
    transform: translateY(60px) translateX(50px);
  }
  80% {
    opacity: 1;
    transform: translateY(10px) translateX(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(0px) translateX(0px);
  }
}

/* ONCLICK LOTTIE ANIMATIONS */

.animationContainer {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#svgContainer1, #svgContainer4 {
  height: 200px;
  width: 200px;
  position: absolute;
  top: -69px;
  right: -69px;
  background-color: transparent;
  z-index: 100;
}

#svgContainer2 {
  height: 200px;
  width: 200px;
  position: absolute;
  top: -71px;
  right: -82px;
  background-color: transparent;
  z-index: 100;
}

#svgContainer3 {
  height: 200px;
  width: 200px;
  position: absolute;
  top: -160px;
  right: -69px;
  background-color: transparent;
  z-index: 100;
}

.neoBtn {
  width: 62px;
  height: 62px;
  position: relative;
  border-radius: 18px;
  padding: 2px;
  box-shadow: 4px 2px 16px rgba(136, 165, 191, 0.48), -4px -2px 16px #ffffff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: ease-in 100ms;
}

.neoBtn:hover {
  box-shadow: 4px 2px 16px rgba(136, 165, 191, 0.9), -4px -2px 16px #ffffff;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(1px);
}

.neoBtn .inner-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: all 0.2s ease-in-out;
  display: grid;
  place-items: center;
}

.neoBtn .inner-wrapper i {
  user-select: none;
  transition: all 0.2s ease-in-out;
  font-size: 32px;
  position: relative;
  color: rgba(201, 215, 230, 0.8);
  text-shadow: 2px 2px 2px #d6e1ef99, 0 0 0 #000, 2px 2px 2px #d6e1ef00;
}

.neoBtn.active .inner-wrapper {
  box-shadow: inset 3px 3px 7px rgba(136, 165, 191, 0.48), inset -3px -3px 7px #ffffff;
}

.neoBtn.active .inner-wrapper i {
  color: black;
  text-shadow: 1px 1px 1px #d6e1ef99, 0 0 0 #000, 1px 1px 1px #d6e1ef00;
}

/* BANNERS */

@import url(https://fonts.googleapis.com/css?family=Oswald:400);
.banner {
  font-family: "Oswald", "Helvetica Neue", Helvetica;
  position: relative;
  z-index: 1;
  margin: 80px auto;
  width: 330px;
}

.banner .line {
  margin: 0 0 10px;
  width: 100%;
  height: 78px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  text-transform: uppercase;
  font-size: 3em;
  line-height: 78px;
  transform: skew(0, -15deg);
}

.banner .line:after, .banner .line:first-child:before {
  position: absolute;
  top: 44px;
  left: 0;
  z-index: -1;
  display: block;
  width: 330px;
  height: 78px;
  border-radius: 4px;
  background: rgba(180, 180, 180, 0.8);
  content: "";
  transform: skew(0, 15deg);
}

.banner .line:first-child:before {
  top: -10px;
  right: 0;
  left: auto;
}

.banner .line:first-child:before, .banner .line:last-child:after {
  width: 0;
  height: 0;
  border-width: 38px;
  border-style: solid;
  border-color: rgba(180, 180, 180, 0.8) rgba(180, 180, 180, 0.8) transparent transparent;
  background: transparent;
}

.banner .line:last-child:after {
  top: 12px;
  border-color: transparent transparent rgba(180, 180, 180, 0.8) rgba(180, 180, 180, 0.8);
}

.banner span {
  font-family: "Oswald", "Helvetica Neue", Helvetica;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: #666;
  text-shadow: 1px 1px 0 #444;
}

/* Media Queries */

@media screen and (max-width: 1323px) {
  #effects {
    display: none;
  }
}

/* Desktop Screen Size */

@media screen and (max-width: 1200px) {
  .navigation {
    justify-content: center;
  }
  .footerPhoto {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 100%;
    margin-top: 3rem;
  }
}

/* Iphone 6+ Screen Size */

@media screen and (max-width: 990px) {
  #logo2 {
    display: flex;
  }
  #logo {
    display: none;
  }
  .footerPhoto {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 100%;
    margin-top: 3rem;
  }
  #effects {
    display: none;
  }
}

/* Ipad Screen Size */

@media screen and (max-width: 768px) {
  .openingContent p {
    padding: 2rem;
    font-size: 2rem;
    border: 0px solid;
    border-image: linear-gradient( 90deg, transparent 0%, transparent 10%, #fff 25%, #fff 75%, transparent 90%, transparent 100%) 30;
  }
  .portfolio>ul>li {
    position: relative;
    border-radius: 0px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1) inset;
  }
  .footerPhoto {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 100%;
    margin-top: 0rem;
  }
}

@media screen and (max-width: 600px) {
  .navigation {
    display: none;
  }
  .portfolio>ul {
    display: block;
  }
  .portfolio>ul>li {
    margin: 2rem 0rem;
  }
  .footer-row {
    width: 100vw;
  }
  .search {
    display: block;
  }
  .searchbar {
    display: block;
  }
}

@media screen and (max-width: 414px) {
  .openingContent p {
    padding: 1rem;
    font-size: 1.25rem;
  }
  .content-card {
    padding: 1rem;
  }
  .navbar-brand {
    font-size: 2.5em;
  }
  .footerPhoto {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 100%;
    margin-top: 0rem;
  }
}

/* Iphone 5 Screen Size */

@media screen and (max-width: 320px) {
  .navbar-brand {
    font-size: 2em;
  }
  .headingTwo {
    font-size: 2em;
  }
}