@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppins";
  src: url("../fonts/poppins.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  overflow-x: hidden
}

section {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden
}

svg { 
  width: 100%;
  height: auto;
  display: block;
}

#page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.flex-con {
  display: flex;
  flex-direction: row;
}

.hidden {
  display: none;
}

h2, h3, p, a {
  color: rgb(238, 238, 238);
}

h2, h3, a, summary {
  margin: 0;
  margin-bottom: 20px;
  font-family: "poppins";
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

p, li, label {
  font-size: 16px;
  font-family: "montserrat";
}

form {
  margin-bottom: 50px;
}

@media screen and (min-width: 575px) {
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 28px;
  }
  p, li {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 28px;
  }
  p, li {
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 36px;
  }
  p, li {
    font-size: 24px;
  }
}
footer {
  margin-top: 100px;
  background-color: #161616;
  color: white;
  padding: 20px 0;
}

#footer-nav ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  text-align: left;
  padding: 0;
}
#footer-nav ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  font-size: 24px;
}
#footer-nav ul li a:hover {
  color: #02A64D;
  cursor: pointer;
}

#footer-socials, #hero-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-social-img {
  width: 25%;
  margin: 5px;
  transition: 0.2s all ease-in-out;
}
.footer-social-img:hover {
  transform: scale(105%);
  cursor: pointer;
}

#footer-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

#footer-name {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: "poppins";
}

#footer-copyright {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  #footer-nav ul {
    flex-direction: row;
  }
  #footer-nav ul li {
    margin-right: 20px;
  }
  #footer-nav ul li a {
    font-size: 30px;
  }
  #footer-name {
    font-size: 40px;
  }
}
@media screen and (min-width: 1000px) {
  #footer-nav ul {
    flex-direction: row;
  }
  #footer-nav ul li {
    margin-right: 35px;
  }
  #footer-nav ul li a {
    font-size: 35px;
  }
  #footer-name {
    font-size: 75px;
  }
}
header {
  background-color: #161616;
  padding: 20px 0;
}

#main-nav {
  align-self: center;
}
#main-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 25px;
}
#main-nav ul li {
  margin: 15px 0;
  text-align: center;
}
#main-nav ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
}
#main-nav ul li a:hover {
  color: #02A64D;
}

#burger-menu {
  margin: auto 15px;
  display: block;
  transition: transform 0.2s ease;
  width: 60%;
  height: auto;
}

#burger-menu:hover {
  cursor: pointer;
}

#header-logo {
  margin: auto 25px;
  width: 100%;
  height: auto;
}

.burger-rotated {
  transform: rotate(-90deg);
}

@media screen and (min-width: 575px) {
  #main nav ul li a {
    font-size: 18px;
  }
  #burger-menu {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #main-nav {
    display: block;
  }
  #main-nav ul {
    flex-direction: row;
  }
  #main-nav ul li a {
    font-size: 16px;
  }
  #burger-menu {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  #main-nav {
    display: block;
  }
  #main-nav ul {
    flex-direction: row;
  }
  #main-nav ul li a {
    font-size: 20px;
  }
  #burger-menu {
    display: none;
  }
}
.hero-image {
  align-items: center;
}

.hero-image-text {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .hero-image {
    align-items: end;
  }
}
@media screen and (min-width: 1000px) {
  .hero-image {
    align-items: end;
  }
}
.gradient-text {
  background: linear-gradient(90deg, #02A64D, #1E75BC);
  background-size: 100%;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  display: inline-block;
}

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

.gradient-con-left {
  justify-content: left;
  text-align: left;
}

.project-card, .client-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.project-card:hover {
  cursor: pointer;
}

.client-card {
  background-color: white;
  border: solid 10px #161616;
  display: flex;
  border-radius: 100%;
  width: 320px;
  aspect-ratio: 1/1;
  justify-content: center;
  align-content: center;
  margin: 0;
  padding: 0;
}

.project-card img {
  display: block;
  width: 100%;
  height: auto;
}

.home-client-img {
  width: 75%;
  aspect-ratio: 1/1;
}

.project-card .overlay, .client-card .overlay {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  text-align: center;
}

.project-card:hover .overlay, .client-card:hover .overlay {
  opacity: 1;
}

.project-overlay-title, .client-overlay-name {
  font-family: "poppins";
  font-weight: bold;
}

.project-overlay-title, .project-overlay-discipline, .client-overlay-name {
  font-size: 16px;
}

.client-card .overlay {
  text-align: center;
  justify-content: center;
  align-items: center;
  text-wrap: wrap;
}
.client-card .overlay a {
  margin: 10px;
}

@media screen and (min-width: 575px) {
  .project-overlay-title, .project-overlay-discipline, .client-overlay-name {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .project-overlay-title, .project-overlay-discipline, .client-overlay-name {
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .project-overlay-title, .project-overlay-discipline, .client-overlay-name {
    font-size: 24px;
  }
}
.case-study-con {
  border-radius: 25px;
  background-color: #161616;
  padding: 0;
  margin-bottom: 25px;
}
.case-study-con .flex-con {
  justify-content: space-between;
}

.case-study-image {
  border-radius: 25px 25px 0px 0;
  margin: 0;
  width: 100%;
}

#projects-case-studies {
  margin-top: 100px;
}
#projects-case-studies h2 {
  text-align: center;
}
#projects-case-studies a {
  text-align: left;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}
#projects-case-studies a:hover {
  cursor: pointer;
  transform: scale(102%);
}
#projects-case-studies a:hover p {
  color: #02A64D;
}

.study-info-con {
  margin: 0 15px 30px 15px;
}

.case-study-title {
  font-family: "poppins";
  font-size: 16px;
  margin: auto 0;
}

.case-study-arrow {
  font-size: 3em;
  font-weight: bold;
  font-family: "poppins";
  text-align: right;
  margin: auto 0;
}

.case-study-roles {
  font-size: 0.8em;
}

@media screen and (min-width: 575px) {
  .case-study-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .case-study-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .case-study-title {
    font-size: 25px;
  }
}
.timeline-entry {
  display: flex;
}
.timeline-entry img {
  width: 4%;
}

.timeline-title {
  font-size: 1.5em;
  font-family: "poppins";
  font-weight: bold;
  margin: 10px;
}

.timeline-work {
  margin: 10px;
}

.timeline-date {
  font-size: 0.7em;
  font-style: italic;
  margin: 10px;
}

@media screen and (min-width: 575px) {
  .timeline-entry img {
    width: 5%;
  }
}
@media screen and (min-width: 768px) {
  .timeline-entry img {
    width: 7%;
  }
}
@media screen and (min-width: 1000px) {
  .timeline-entry img {
    width: 5%;
  }
}
.dynamic-on {
  display: block !important;
}

.dynamic-off {
  display: none !important;
}

.dynamic-button-on {
  background-color: #02A64D;
}

.dynamic-button-off {
  background-color: #161616;
}

#dynamic-software {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#dynamic-software img {
  width: 25%;
  margin: 15px;
}

#dynamic-skills {
  color: white;
}
#dynamic-skills ul {
  margin-top: 10px;
  margin-bottom: 40px;
}
#dynamic-skills ul li {
  font-size: 1em;
}

.skills-main-point {
  font-family: "poppins";
  margin-bottom: 20px;
  font-weight: bold;
}

#player-container {
  text-align: center;
}
#player-container h2 {
  margin-top: 50px;
  font-size: 24px;
}

:root {
  --plyr-color-main: #02A64D;
  --plyr-control-icon-size: 10px;
  --plyr-control-radius: 1px;
  --plyr-font-family: Helvetica, Arial, sans-serif;
}

#demo-reel-frame {
  border: solid 10px #161616;
}

#projects-demo-timestamps {
  display: flex;
  justify-content: space-between;
}
#projects-demo-timestamps ul {
  margin: 50px 10px;
  padding: 0;
  list-style: none;
}
#projects-demo-timestamps ul li {
  margin-bottom: 20px;
  color: white;
}

@media screen and (min-width: 575px) {
  #player-container h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  #player-container h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1000px) {
  #player-container h2 {
    font-size: 48px;
  }
}

.study-hero-con {
    background-color: rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    text-align: center;
    height: 500px;
    background-image: var(--bg-mob);
}

@media screen and (min-width: 575px) {
    .study-hero-con {
        background-image: var(--bg-sm);
    }
}

@media screen and (min-width: 768px) {
    .study-hero-con {
        background-image: var(--bg-tab);
    }
}

@media screen and (min-width: 1000px) {
    .study-hero-con {
        background-image: var(--bg-desk);
    }
}


#study-intro {
  margin-top: 200px;
  align-items: center;
}
#study-intro span {
  font-family: "poppins";
  font-weight: bold;
}

.study-link:hover {
  color: #02A64D;
}

#study-background {
  margin-top: 200px;
  align-items: center;
}
#study-background h2 {
  text-align: center;
}
#study-background p, #study-background img {
  margin-top: 50px;
  width: 100%;
}
#study-background img {
  border-radius: 30px;
}

#study-project {
  margin-top: 300px;
  align-items: center;
}
#study-project h2 {
  text-align: center;
  margin-bottom: 50px;
}
#study-project img {
  border-radius: 30px;
  width: 100%;
}

#study-issues-fixes {
  margin-top: 150px;
}

.study-issues-list {
  margin-top: 100px;
}
.study-issues-list ul li {
  color: white;
  margin: 25px 0;
}
.study-issues-list img {
  align-self: flex-end;
}

#study-project-process {
  margin-top: 200px;
  align-items: center;
}

#study-project-process-images {
  margin-top: 25px;
}
#study-project-process-images img {
  margin-top: 25px;
}

#study-results {
  margin-top: 200px;
}
#study-results h2 {
  text-align: center;
  margin-bottom: 50px;
}
#study-results img {
  border-radius: 30px;
  margin-top: 25px;
  width: 100%;
}
#study-results ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
#study-results ul li {
  color: white;
  margin: 25px 0;
  text-align: center;
  font-size: 24px;
}
#study-results ul li span {
  font-weight: bold;
}

.bordered-image {
  border: 1px solid white;
}

#study-stats {
  align-items: center;
}

#study-results-impact {
  margin-top: 100px;
}

#study-reflection {
  margin: 100px 0;
}

#study-site-links {
  margin: 200px 0;
}

@media screen and (min-width: 575px) {
  #study-results ul li {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  #study-results ul li {
    text-align: left;
    font-size: 28px;
  }
}
@media screen and (min-width: 1000px) {
  #study-results ul li {
    text-align: left;
    font-size: 36px;
  }
}

#home-hero-con {
  background-image: url("../images/home-hero-mob.jpg");
  background-color: rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-blend-mode: darken;
  background-repeat: no-repeat;
}

#home-hero-image {
  text-align: center;
  padding: 100px 0;
}

#hero-button {
  background-color: #161616;
  padding: 25px 50px;
  margin: 25px auto;
  border-radius: 25px;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
}
#hero-button:hover {
  cursor: pointer;
  background-color: #02A64D;
  transform: scale(105%);
}

#homepage-intro {
  margin-top: 100px;
}

#demo-reel-con {
  margin-top: 50px;
}

.home-study-roles {
    
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 33.33%;
    justify-content: center;
    
}

.home-study-roles p {
    
    font-size: 0.7em;
    padding: 10px;
    border: solid 2px #919191;
    border-radius: 15px;
    margin: 5px 5px;
    
}

#home-profile-image {
  border-radius: 50%;
  width: 90%;
  aspect-ratio: 1/1;
  margin-bottom: 75px;
}

#greeting-info {
  text-align: center;
  margin-top: 50px;
}

#home-site-links {
  margin-top: 200px;
}

#home-about {
  margin-top: 200px;
}

#home-about-resume-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#home-about-resume {
    text-decoration: none;
    text-align: center;
    align-content: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #161616;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
    width: 75%;
}

#home-about-resume:hover {
    transform: scale(105%);
    background-color: #02A64D;
}

.stat-box-con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 10px;
}

.stat-box {
  background-color: #161616;
  text-align: center;
  align-content: center;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1/1;
  border-radius: 25px;
  padding: 10px;
}

.stat-box-stat {
  font-size: 14px;
  font-family: "poppins";
  margin: 10px;
}

.stat-box-desc {
  font-size: 0.7em;
  margin: 10px;
}

#home-about-text {
  text-align: left;
  align-self: center;
  display: flex;
  flex-direction: column;
}
#home-about-text a {
  text-decoration: none;
  color: #161616;
  padding: 25px 100px;
  margin-top: 25px;
  border-radius: 25px;
  border: none;
  background-color: #d9d9d9;
  transition: all 0.2s ease-in-out;
}
#home-about-text a:hover {
  background: linear-gradient(90deg, #02A64D, #1E75BC);
  cursor: pointer;
  transform: scale(110%);
  color: white;
}

#home-services {
  margin-top: 200px;
}

#home-services h2 {
  text-align: center;
  margin-bottom: 75px;
}

.service-card {
  padding: 50px 25px;
  margin-bottom: 50px;
  background-color: #161616;
  border-radius: 30px;
}
.service-card img {
  width: 15%;
  display: block;
  margin-bottom: 25px;
}

#multipurpose-box {
  margin-top: 250px;
}
#multipurpose-box button {
  color: white;
  font-size: 1.3em;
  padding: 30px 50px;
  border-radius: 30px;
  border: none;
  width: 100%;
  margin-top: 50px;
  transition: 0.2s all ease-in-out;
}
#multipurpose-box button:hover {
  cursor: pointer;
  background-color: #1E75BC;
  transform: scale(102%);
}

#dynamic-box {
  background-color: #161616;
  border-radius: 25px;
  padding: 30px;
  margin-top: 100px;
}

#home-skills {
  margin-top: 200px;
  align-items: center;
}

#home-skill-box {
  text-align: center;
}
#home-skill-box p {
  font-size: 13px;
}
#home-skill-box h2 {
  font-size: 40px;
}

#home-skill-image {
  border-radius: 30px;
  width: 100%;
}

#home-clients {
  margin-top: 200px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  max-width: none;
}

#home-client-list {
  width: 200%;
  margin: 0;
  padding: 0;
  margin-top: 50px;
  margin-bottom: 150px;
  display: flex;
  justify-content: space-evenly;
}

#home-verse {
  margin-bottom: 100px;
  text-align: center;
}

#home-verse-passage {
  font-size: 36px;
  font-family: "poppins";
}

#contact-form {
  margin-top: 30px;
  margin-bottom: 200px;
}

#contact-form-heading {
  font-family: "poppins";
  margin-bottom: 0;
}

.contact-con {
    margin: 25px;
}

#contact-form {
    
    margin-right: 25px;
    
}

#contact-form label {
    color: white;
}

#contact-form input, #contact-form textarea {
  padding: 20px;
  width: 100%;
  margin-top: 15px;
  background-color: black;
  color: white;
  border: solid white 2px;
  border-radius: 25px;
  font-family: "poppins";
}

#contact-form textarea {
  height: 100px;
}

#form-feedback {
    
    margin-left: 25px;
    
}

#submit {
  background: #d9d9d9;
  color: #161616;
  transition: 0.2s all ease-in-out;
  margin-left: 25px;
}

#submit:hover {
  background: linear-gradient(90deg, #02A64D, #1E75BC);
  cursor: pointer;
  transform: scale(105%);
}

@media screen and (min-width: 575px) {
  #home-hero-con {
    background-image: url("../images/home-hero-sm.jpg");
  }
  #home-hero-image {
    align-items: center;
  }
  #greeting-info {
    text-align: left;
    align-self: center;
    margin-top: 0;
  }
  .home-link-title {
    font-size: 16px;
  }
  .stat-box-stat {
    font-size: 20px;
  }
  .stat-box-desc {
    font-size: 1em;
  }
  #home-skill-box {
    text-align: left;
  }
  #home-skill-box p {
    font-size: 36px;
  }
  #home-skill-box h2 {
    font-size: 60px;
  }
  #home-verse-passage {
    font-size: 48px;
  }
  #contact-form-heading {
    font-size: 48px;
  }
}
@media screen and (min-width: 768px) {
  #home-hero-con {
    background-image: url("../images/home-hero-desk.jpg");
  }
  #home-hero-image {
    align-items: center;
    text-align: center;
  }
  #greeting-info {
    text-align: left;
    align-self: center;
    margin-top: 0;
  }
  .home-link-title {
    font-size: 28px;
  }
  .home-link-button {
    font-size: 28px;
  }
  .stat-box-stat {
    font-size: 22px;
  }
  .stat-box-desc {
    font-size: 0.6em;
  }
  #home-skill-box {
    text-align: left;
  }
  #home-skill-box p {
    font-size: 36px;
  }
  #home-skill-box h2 {
    font-size: 65px;
  }
  #dynamic-box {
    margin-top: 0;
  }
  #home-clients {
    text-align: left;
  }
  #home-verse-passage {
    font-size: 48px;
  }
  #contact-form-heading {
    font-size: 48px;
  }
}
@media screen and (min-width: 1000px) {
  #home-hero-con {
    background-image: url("../images/home-hero-desk.jpg");
  }
  #home-hero-image {
    align-items: center;
    text-align: center;
  }
  #greeting-info {
    text-align: left;
    margin-top: 0;
  }
  .home-link-title {
    font-size: 36px;
  }
  .home-link-button {
    font-size: 36px;
  }
  .stat-box-stat {
    font-size: 35px;
  }
  .stat-box-desc {
    font-size: 1em;
  }
  #home-skill-box {
    text-align: left;
  }
  #home-skill-box p {
    font-size: 36px;
  }
  #home-skill-box h2 {
    font-size: 80px;
  }
  #dynamic-box {
    margin-top: 0;
  }
  #home-clients {
    text-align: left;
  }
  #home-verse-passage {
    font-size: 60px;
  }
  #contact-form-heading {
    font-size: 60px;
  }
}
.admin-page {
  color: white;
}
.admin-page p {
  font-size: 0.8em;
}
.admin-page label, .admin-page input {
  display: block;
  margin-bottom: 20px;
}
.admin-page input, .admin-page textarea {
  width: 100%;
  font-family: "poppins";
}
.admin-page textarea {
  height: 200px;
}
.admin-page summary:hover {
  cursor: pointer;
}
.admin-page details details {
  margin-left: 20px;
}/*# sourceMappingURL=main.css.map */