/*******
* Colour variables
*******/
/*******
* Other Variables
******/
body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-weight: 800;
  font-size: 40px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 50px;
}

h3 {
  font-size: 24px;
}

a {
  text-decoration: none;
}

.pseudo-button {
  font-size: 24px;
  font-weight: 500;
}

.custom-nav .navbar-brand a {
  transition: all 0.5s ease-in-out !important;
  font-size: 40px !important;
  font-weight: 500 !important;
}
@media (max-width: 768px) {
  .custom-nav .navbar-brand a {
    font-size: 24px !important;
  }
}
.custom-nav a {
  color: #fbfbff;
  font-size: 18px !important;
}
.custom-nav a.brand-link, .custom-nav a.nav-link {
  -webkit-text-decoration: underline 2px transparent;
          text-decoration: underline 2px transparent;
  text-underline-offset: 10px;
}
.custom-nav a.brand-link.active, .custom-nav a.nav-link.active {
  text-decoration-color: #197aae;
  color: #fbfbff !important;
}

.scrolling-nav .navbar-brand a {
  font-size: 24px !important;
}

.social-links a {
  font-weight: 300;
  font-style: italic;
}

.page-copy {
  font-size: 24px;
  font-weight: 300;
}

body {
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 100vh;
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 1921px) {
  main {
    gap: 320px;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

/* I realise I could probably do all this with a ready made library like bootstrap but with the limited amount of 
/* things I need this seems just as quick as learning one of those (Although I should really learn Bootstrap better at some point).
/* Based off a document I've been expanding over the semester.
*/
/*
    Grid
*/
.grid {
  display: grid;
}

/* 
    Flex classes
*/
.flex-c {
  display: flex;
  flex-direction: column;
}

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

.flex-r.wrap {
  flex-wrap: wrap !important;
}

.flex-r.wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/*
    Align & Justify
*/
.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-evenly {
  align-items: space-evenly;
}

.align-between {
  align-items: space-between;
}

.align-around {
  align-items: space-around;
}

.align-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-self-start {
  align-self: start;
}

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: end;
}

.align-self-stretch {
  align-self: stretch;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-stretch {
  justify-self: stretch;
}

/*
    Padding
*/
.top-level-indent {
  padding-left: 4em !important;
  padding-right: 4em !important;
}
@media (max-width: 991px) {
  .top-level-indent {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
}
@media (max-width: 768px) {
  .top-level-indent {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
  }
}
@media (max-width: 555px) {
  .top-level-indent {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
}
@media (max-width: 465px) {
  .top-level-indent {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
}

/*
    Sizing
*/
.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.large-component-width {
  max-width: 800px;
}

.standard-component-width {
  max-width: 560px;
}

.smaller-component-width {
  max-width: 400px;
}

/*
    Spacing
*/
.gap-xxs {
  gap: 4px;
}

.gap-xs {
  gap: 16px;
}

.gap-sm {
  gap: 24px;
}

.gap-md {
  gap: 40px;
}

.gap-lg {
  gap: 80px;
}

.gap-xl {
  gap: 160px;
}

.radius-sm {
  border-radius: 5px;
}

.radius-md {
  border-radius: 10px;
}

.radius-lg {
  border-radius: 20px;
}

.show-interact:hover {
  cursor: pointer;
}

.height-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.height-match {
  height: match-parent;
}

.raise {
  z-index: 2;
}

.absolute {
  position: absolute;
}

.discrete {
  background: none;
  border: none;
}

.no-list-style {
  list-style-type: none;
  padding: 0;
}

body {
  background: #111120;
  color: #fbfbff;
}

.loader {
  width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 10px;
  position: relative;
  height: 290px;
  justify-content: space-between;
}
.loader .spinner,
.loader .spinner:before,
.loader .spinner:after {
  background: #fbfbff;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader .spinner {
  color: #fbfbff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader .spinner:before,
.loader .spinner:after {
  position: absolute;
  top: 0;
  content: "";
}
.loader .spinner:before {
  left: -1.5em;
  animation-delay: -0.32s;
}
.loader .spinner:after {
  left: 1.5em;
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

.message {
  align-self: center;
  padding: 1em;
  margin: 1em;
  border-radius: 0.25rem;
  width: 100%;
  text-align: center;
}

.error-message {
  background: #B1060F;
}

.info-message {
  background: #b3521a;
}

.success-message {
  background: #06b13f;
}

.pseudo-button {
  background: linear-gradient(#197aae, 80%, #0C4869);
  padding: 6px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.4rem;
  border: 1px solid #0C4869;
  transition: 0.5s;
  color: #fbfbff;
}

.pseudo-button:hover {
  color: #fbfbff !important;
  box-shadow: 3px 3px 3px #000;
}

.discrete-button {
  width: -moz-fit-content !important;
  width: fit-content !important;
  background: none !important;
  border: none !important;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  color: #fbfbff;
}

.disabled-button {
  opacity: 0.5;
}

.blue-text {
  color: #197aae;
}

.divider {
  background: linear-gradient(#197aae, 80%, #0C4869);
  width: 75%;
  height: 5px;
  margin-top: 150px;
  border-radius: 0.4rem;
  box-shadow: 3px 3px 3px #000;
}
@media (max-width: 425px) {
  .divider {
    width: 85%;
  }
}

.large-divider {
  width: 90%;
  height: 10px;
  margin-top: -5px;
  z-index: 1;
  position: relative;
}
@media (max-height: 600px) {
  .large-divider {
    margin-top: 100px;
  }
}
@media (max-height: 450px) {
  .large-divider {
    margin-top: 200px;
  }
}

.input-error {
  border-color: #B1060F !important;
}

.page-copy {
  align-self: center;
  justify-self: center;
  margin-top: 100px;
}

.custom-nav {
  display: flex;
  gap: 100px;
  padding: 0 !important;
  padding-top: 50px !important;
  padding-bottom: 10px !important;
  align-items: center;
  width: 100%;
  position: relative;
  transition: 0.5s;
  z-index: 1;
}
@media (max-width: 991px) {
  .custom-nav {
    background: #111120;
  }
}
.custom-nav .container-fluid {
  width: 100% !important;
  padding: 0 !important;
}
.custom-nav .navbar-brand {
  color: #fbfbff;
  margin-right: 90px;
  margin-left: 30px;
}
@media (max-width: 991px) {
  .custom-nav .navbar-brand {
    margin-right: 0;
  }
}
.custom-nav .navbar-nav {
  list-style-type: none;
  gap: 50px;
}
@media (min-width: 1110px) {
  .custom-nav .navbar-nav {
    gap: 90px;
  }
}
@media (max-width: 991px) {
  .custom-nav .navbar-nav {
    justify-content: space-evenly;
    align-items: baseline;
    padding-top: 10px;
    padding-bottom: 20px;
    gap: 10px !important;
    height: 60vh;
  }
}
@media (max-height: 600px) {
  .custom-nav .navbar-nav {
    gap: 5px !important;
    padding-top: 5px;
    padding-bottom: 10px;
    height: 40vh;
  }
}
.custom-nav .navbar-nav a {
  transition: 0.5s;
  color: #fbfbff;
}
.custom-nav .navbar-nav a:hover {
  color: #197aae;
}
.custom-nav .navbar-nav .active {
  color: #197aae !important;
}
.custom-nav .navbar-toggler {
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .custom-nav {
    justify-content: space-between;
    gap: 0;
  }
}
.custom-nav .collapse, .custom-nav .collapsing {
  padding-left: 30px !important;
}
@media (max-width: 991px) {
  .custom-nav .collapse, .custom-nav .collapsing {
    box-shadow: 3px 3px 3px #000;
  }
}

.scrolling-nav {
  background: #111120;
  position: fixed;
  z-index: 2;
  padding-top: 25px !important;
  padding-bottom: 10px !important;
  transition: 0.5s ease;
  margin-top: 0;
  box-shadow: 3px 3px 3px #000;
}
.scrolling-nav .show {
  background: #111120;
}

.navbar-toggler, .navbar-toggler:focus {
  border: none !important;
  box-shadow: none;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(251, 251, 255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#header-banner {
  min-height: 100vh;
  width: 100%;
  background-image: url("/assets/image/banner-image.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fbfbff;
}
@media (max-width: 1111px) {
  #header-banner {
    background-position: right center;
  }
}
#header-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: absolute;
  left: 10%;
  top: 35%;
  width: 800px;
  max-width: 95%;
  align-items: center;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media (max-width: 1111px) {
  #header-banner .banner-content {
    left: 30px;
    align-self: center;
  }
}
@media (max-width: 900px) {
  #header-banner .banner-content {
    width: 80%;
  }
}
#header-banner .banner-content .banner-text {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 30px;
  height: -moz-fit-content;
  height: fit-content;
  align-items: center;
  position: relative;
}
@media (max-width: 1111px) {
  #header-banner .banner-content .banner-text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  #header-banner .banner-content .banner-text {
    width: 90%;
  }
}
#header-banner .banner-content.hidden {
  opacity: 0;
  transform: translateX(-50%);
  transition: 0.5s ease-out;
}
#header-banner .banner-content.show {
  opacity: 1;
  transform: translateX(0%);
}
#header-banner .language-select {
  padding-bottom: 2em;
}
@media (min-width: 991px) {
  #header-banner .language-select {
    display: none;
  }
}

.projects-container {
  width: 100%;
  max-width: 1300px;
  gap: 50px;
}

.project-item {
  max-width: 500px;
  width: 30%;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .project-item {
    width: 45%;
  }
}
@media (max-width: 900px) {
  .project-item {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .project-item {
    width: 95%;
  }
}

.project-item.hidden {
  opacity: 0.1;
  transform: translateY(25%);
  transition: 1s ease-in-out;
}

.project-item.show {
  opacity: 1;
  transform: translateY(0%);
}

.project-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 0.2rem;
}

.project-details {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  background: rgba(17, 17, 32, 0.9411764706);
  width: 100%;
  height: 300px;
  margin: 0 auto;
  transition: 0.5s;
  padding: 1rem;
  color: #fbfbff;
  border-radius: 0.2rem;
}
.project-details .project-links {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: baseline;
}
.project-details .project-links a {
  color: #fbfbff;
  text-decoration: underline;
}
.project-details .project-links img {
  width: 40px;
}

.project-item:hover {
  cursor: pointer;
}
.project-item:hover .project-links a {
  visibility: visible;
}

.project-call-item {
  text-align: center;
  justify-content: flex-end;
}

.project-item:hover .project-details {
  opacity: 1;
}

.project-item:not(:hover) .project-details {
  opacity: 0;
}

.skills-container {
  width: 80%;
  max-width: 800px !important;
  gap: 1em !important;
}
@media (max-width: 1024px) {
  .skills-container {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .skills-container {
    width: 85%;
  }
}
@media (max-width: 500px) {
  .skills-container {
    width: 95%;
  }
}

.skill-item {
  justify-content: flex-end;
  padding: 1rem;
  gap: 10px;
  width: 100px;
  height: 114px;
  font-size: 0.75rem;
  transition: box-shadow 0.5s;
}
.skill-item .skill-icon {
  width: 48px;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .skill-item {
    height: 80px;
    width: 60px;
    padding: 0.5rem;
  }
  .skill-item .skill-name {
    display: none;
  }
  .skill-item .skill-icon {
    width: 48px;
  }
}

.skill-item.hidden {
  opacity: 0.1;
  transform: translateY(50%);
  transition: 1s ease-out;
}

.skill-item.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-group {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: space-evenly;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .contact-group {
    width: 90%;
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }
}
.contact-group #contact-form {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .contact-group #contact-form {
    width: 100%;
  }
}
.contact-group #contact-form div {
  display: flex;
  flex-direction: column;
}
.contact-group #contact-form div button {
  align-self: center;
}
.contact-group #contact-form input, .contact-group #contact-form textarea {
  background: #383844;
  border: 2px solid #111120;
  color: #fbfbff;
  box-shadow: 3px 3px 3px #000;
}
.contact-group #contact-form textarea {
  height: 150px;
}
.contact-group #contact-form button {
  width: 100%;
  background: #197aae;
}
.contact-group .contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-group .contact-social .social-links {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 100px;
  box-shadow: 3px 3px 3px #000;
  padding: 2em;
}
.contact-group .contact-social .social-links li {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .contact-group .contact-social .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-left: 0 !important;
    gap: 30px;
    margin-top: 0;
  }
}
.contact-group .contact-social .social-links a {
  display: flex;
  gap: 10px;
  color: #fbfbff;
  align-items: center;
}
.contact-group .contact-social .social-links a img {
  width: 30px;
}
@media (max-width: 768px) {
  .contact-group .contact-social .social-links a .icon-text {
    display: none;
  }
  .contact-group .contact-social .social-links a img {
    width: 40px;
    height: 40px;
  }
}

.about-content {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row !important;
  width: 80%;
  max-width: 1200px;
  align-items: top;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column !important;
    align-items: center;
    gap: 50px;
    width: 100%;
  }
}
.about-content .bio-image {
  width: 300px;
  height: 300px;
  background-image: url("/assets/image/author-image.jpg");
  background-size: cover;
  border-radius: 0.2rem;
}
.about-content .bio-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .about-content .bio-text {
    width: 80%;
  }
}
@media (max-width: 550px) {
  .about-content .bio-text {
    width: 95%;
  }
}

.services-container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1300px !important;
  width: 100%;
}
.services-container .service-item {
  padding: 1rem;
  align-items: baseline !important;
  justify-content: baseline !important;
  background: #0C4869;
  border-radius: 0.25rem;
  width: 45%;
  gap: 30px !important;
  position: relative;
  align-self: stretch;
}
@media (max-width: 991px) {
  .services-container .service-item {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .services-container .service-item {
    width: 95%;
  }
}
.services-container .service-item .service-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.services-container .service-item .service-content ul, .services-container .service-item .service-content p {
  z-index: 1;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.services-container .service-item .service-icon {
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  width: 30%;
  z-index: 0;
}
.services-container .service-item .service-icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .services-container .service-item .service-icon {
    opacity: 60%;
    width: 20%;
    bottom: 1rem;
  }
}
@media (max-width: 550px) {
  .services-container .service-item .service-icon {
    width: 35%;
  }
}
.services-container .service-item#photography, .services-container .service-item#online-consulting {
  background: #4A6D80;
}
@media (max-width: 991px) {
  .services-container .service-item#online-consulting {
    background: #0C4869;
  }
  .services-container .service-item#authoring {
    background: #4A6D80;
  }
}

section, article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  padding-top: 100px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.container .container-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2em 0;
  gap: 15px;
  margin-top: 50px;
  background: linear-gradient(#197aae, 80%, #0C4869);
}
footer a {
  color: #fbfbff;
}
footer a:hover,
footer a:focus {
  color: #fbfbff;
  text-decoration: underline;
}

.language-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.language-select div {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.language-select img {
  width: 30px;
}/*# sourceMappingURL=style.css.map */