*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  overflow: auto;
  background: #0c0b34;
  color: #fff;
  position: relative;
}

footer {
  background: rgba(0, 0, 0, 0.5);
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding-right: 144px;
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  footer {
    padding-right: 48px;
  }
}

a {
  color: #ec4289;
}

h1 {
  text-shadow: 3px 2px 2px #ec4289;
  font-size: calc(12px + 8vmin);
  margin: 16px 0;
}

h2 {
  text-shadow: 3px 2px 2px #ec4289;
  font-size: calc(12px + 4vmin);
  margin: 16px 0;
}

h3 {
  font-size: calc(12px + 4vmin);
  margin: 16px 0;
}

h4 {
  font-size: calc(12px + 1.5vmin);
  margin: 16px 0;
}

strong {
  color: #ec4289;
  font-weight: 900;
}

#thank-you-container {
  max-width: 500px;
  opacity: 0;
  border: 2px solid #ec4289;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: 0.5s opacity ease-in-out;
  padding: 16px;
  text-align: center;
  line-height: 20px;
  margin: 0 auto;
}
#thank-you-container p {
  margin: 8px 0;
}

.entry-gate {
  position: fixed;
  width: 100vw;
  height: 0;
  top: 0;
  opacity: 1;
  z-index: 1000;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.entry-gate.left {
  left: 0;
  border-top: 100vh solid #111;
  border-right: 100vh solid transparent;
  animation-name: slide-left;
}
.entry-gate.right {
  right: 0;
  border-bottom: 100vh solid #111;
  border-left: 100vh solid transparent;
  animation-name: slide-right;
}

.landing-view {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
}
.landing-view .landing-left {
  display: flex;
  width: 60%;
  padding: 54px 0;
  margin-right: 48px;
}
.landing-view .landing-left-content {
  max-width: 840px;
}
.landing-view .landing-left-content h3 {
  margin-bottom: 48px;
}
.landing-view .landing-left-content h3 span {
  color: #ec4289;
}
.landing-view .landing-left-content .social-links {
  margin-top: 32px;
  margin-bottom: 32px;
}
.landing-view .landing-left-content .social-links a {
  text-decoration: none;
}
.landing-view .landing-left-content .social-links img {
  margin-right: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.landing-view .landing-left-content .social-links img:hover {
  border: 1px solid;
}
.landing-view .landing-right {
  position: relative;
  width: 40%;
}
.landing-view .landing-right img.hero-image {
  width: 100%;
  max-width: 480px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
}
.landing-view #scroll-indicator {
  position: absolute;
  cursor: pointer;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  filter: invert(1) drop-shadow(0px 1px 3px rgba(255, 255, 255, 0.5));
  width: 100%;
  max-width: 64px;
  opacity: 0;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@media screen and (max-width: 1150px) {
  .landing-view .landing-right {
    display: none !important;
  }
  .landing-view .landing-left {
    width: 100%;
  }
}

#section-indicator {
  position: fixed;
  left: 150%;
  top: 50%;
  transform: translateY(-50%) translateX(-115%);
  width: 112px;
  z-index: 999;
  transition: 0.3s left ease-in-out;
}
@media screen and (max-width: 599px) {
  #section-indicator {
    display: none;
  }
}
#section-indicator div {
  height: 2px;
  margin: 32px 0;
  background: rgba(236, 66, 137, 0.25);
  box-shadow: 0px 3px 2px -1px rgba(0, 0, 0, 0.5);
  width: 100%;
  border-radius: 10px;
  position: relative;
  transition: 0.15s height ease-in-out;
  cursor: pointer;
}
#section-indicator div.active {
  background: #ec4289 !important;
}
#section-indicator div.active::before {
  opacity: 1;
}
#section-indicator div:hover:not(.active)::before {
  opacity: 0.75;
}
#section-indicator div::before {
  position: absolute;
  top: -20px;
  left: 5%;
  transform: translateX(0%);
  width: 100%;
  opacity: 0;
  transition: 0.25s opacity ease-in-out;
  content: attr(data-section-title);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 1px 2px #000000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #section-indicator div::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #section-indicator div {
    height: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  #section-indicator {
    width: 32px;
  }
}

#about-container {
  display: flex;
}
#about-container .about-col {
  width: 33%;
  padding-right: 36px;
}
#about-container .about-col p {
  font-weight: bold;
  line-height: 26px;
  margin: 8px 0;
  font-size: 20px;
}
#about-container .about-col:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}
#about-container .about-col:not(:first-child) {
  padding-left: 36px;
}
@media screen and (max-width: 1079px) {
  #about-container .about-col {
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #about-container .about-col {
    width: 100%;
  }
}
@media screen and (max-width: 1079px) {
  #about-container {
    flex-direction: column;
  }
}

.section {
  position: relative;
  padding: 108px 88px;
  min-height: 640px;
}
.section:not(#contact-section) {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 959px) {
  .section {
    padding: 64px 48px;
  }
}
@media screen and (max-width: 599px) {
  .section {
    padding: 48px 16px;
  }
}
.section .section-content {
  width: 100%;
}

#skills-section .section-content {
  display: flex;
  flex-direction: row;
}
#skills-section .section-content #tools-area {
  padding-left: 10vw;
}
#skills-section .section-content #tools-area ul {
  padding-inline-start: 60px;
}
#skills-section .section-content #tools-area ul li {
  list-style: none;
  position: relative;
  font-size: 20px;
  margin-bottom: 12px;
  opacity: 0;
  transition: 1.25s opacity ease-in-out;
}
#skills-section .section-content #tools-area ul li:before {
  content: "";
  width: 36px;
  height: 8px;
  background: #ec4289;
  box-shadow: -5px 0px 0px 0px white;
  position: absolute;
  left: -52px;
  top: 8px;
}
@media screen and (max-width: 1079px) {
  #skills-section .section-content {
    flex-direction: column;
  }
  #skills-section .section-content #tools-area {
    margin-left: 0px;
    margin-top: 36px;
    padding: 0;
  }
}

.skill-container {
  display: flex;
  flex-direction: column;
}
.skill-container label {
  font-weight: bold;
}
.skill-container:not(:first-child) label {
  margin-top: 8px;
}

.bar-container {
  width: 100%;
  max-width: 450px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  margin: 4px 0;
  box-shadow: 3px 4px 7px 1px rgba(0, 0, 0, 0.5);
  position: relative;
}
.bar-container .filling {
  height: 100%;
  width: 0;
  background: #ec4289;
  transition: 0.5s width ease-in-out, 1s opacity ease-in-out;
  opacity: 0;
}
.bar-container .filling:before {
  position: absolute;
  content: attr(data-width);
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.75);
  font-weight: bold;
  font-size: 20px;
}

.work-area {
  display: flex;
  flex-wrap: wrap;
}
.work-area .work-card {
  width: 100%;
  max-width: 300px;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  margin: 16px;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.5);
  transition: 0.25s transform ease-in-out;
}
.work-area .work-card:hover {
  transform: scale(1.15);
}
.work-area .work-card-header {
  text-align: center;
  font-size: 18px;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
}
.work-area .work-card-body {
  padding: 24px 16px;
  font-size: 18px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}
.work-area .work-card-footer {
  height: 48px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px;
}

#contact-form-container {
  width: 100%;
  margin: 32px auto;
  min-height: 550px;
  max-width: 500px;
  height: auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
#contact-form-container .form-header {
  height: 48px;
  font-size: 28px;
  line-height: 48px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  text-shadow: 2px 1px 1px #ec4289;
}
#contact-form-container form {
  position: relative;
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
  transition: 0.25s opacity ease-in-out;
}
#contact-form-container form .input-wrapper {
  margin: 16px 0;
  width: 100%;
}
#contact-form-container form label {
  display: block;
  font-size: 18px;
  font-weight: bold;
}
#contact-form-container form input {
  background: rgba(255, 255, 255, 0.1);
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  height: 36px;
  font-size: 18px;
  color: white;
  outline: none;
  width: 100%;
  padding: 0 8px;
}
#contact-form-container form input:focus {
  border-color: #ec4289;
}
#contact-form-container form textarea {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  resize: none;
  color: #fff;
  font-size: 18px;
}
#contact-form-container form textarea:focus {
  border-color: #ec4289;
}
#contact-form-container form button {
  background: #ec4289;
  border-width: 3px;
  border-style: solid;
  border-color: #ec4289;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  transition: 0.2s border-color ease-in-out;
  border-radius: 6px;
  padding: 16px 48px;
  font-weight: bold;
  outline: none;
  margin-top: 16px;
}
#contact-form-container form button:focus {
  border-color: #fff;
}
#contact-form-container form button:hover {
  cursor: pointer;
  background: #ec4289;
  border-color: #fff;
  color: #fff;
}
#contact-form-container form #errorMsg {
  display: none;
}
#contact-form-container #avatar {
  opacity: 0.15;
  width: 80%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.5s opacity ease-in-out;
}
#contact-form-container #successMsg {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 12px;
  text-align: center;
  padding: 0 24px;
  font-size: 20px;
  color: #ffffff;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes slide-left {
  0% {
    left: 0;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: -2000px;
    opacity: 0;
    display: none;
  }
}
@keyframes slide-right {
  0% {
    right: 0;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    right: -2000px;
    opacity: 0;
    display: none;
  }
}
::-webkit-scrollbar {
  display: none;
}

/*# sourceMappingURL=main.css.map */
