.mobile-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

@font-face {
  font-family: "cherry";
  src: url("../../fonts/cherry-font.woff2") format("woff2"), url("../../fonts/cherry-font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lgc";
  src: url("../../fonts/LouisGeorgeCafe.woff2") format("woff2"), url("../../fonts/LouisGeorgeCafe.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "lgc";
  color: #eaf6ff;
}

h1, h2, h3, h4 {
  font-family: "cherry";
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  color: #44CFCB;
  font-size: 16px;
}

p {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 48px;
  }
  h4 {
    font-size: 24px;
  }
  p {
    font-size: 20px;
  }
}
footer {
  background-color: #13283E;
  text-align: center;
}
footer h3 {
  text-align: left;
  display: inline-block;
  padding-bottom: 1%;
  margin-bottom: 1rem;
  border-bottom: 2px solid #44CFCB;
}

.footer-section {
  padding: 2rem;
}

#footer-text-con {
  padding: 2rem 0;
}

.footer-cta-con a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #eaf6ff;
}

#footer-socials-icons-con {
  display: flex;
  margin: auto;
}
#footer-socials-icons-con img {
  filter: brightness(0) invert(1);
  width: 75%;
}

.footer-closing-text {
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  #footer-logo-text-con {
    text-align: left;
  }
}
ul, li {
  margin: 0;
  padding: 0;
}

.sticky-mobile {
  border: none;
  z-index: 1000;
  background-color: transparent;
}

#logo {
  margin: 1rem;
}

#hamburger {
  position: fixed;
  top: 3%;
  right: 3%;
}

#hamburger, #close {
  cursor: pointer;
}
#hamburger svg, #close svg {
  width: 48px;
  height: 48px;
}

#hamburger:hover, #close:hover {
  background-color: #44CFCB;
  transition: 1s ease;
}

#hamburger:active, #close:active {
  background-color: #2A4494;
  transition: all 0.2s ease;
}

.overlay {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #eaf6ff;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.overlay.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  background-color: #2A4494;
}

#close {
  position: absolute;
  top: 3%;
  right: 4%;
}

.overlay nav {
  background-color: none;
}

.overlay ul {
  list-style-type: none;
  text-align: left;
}

.overlay li {
  margin-top: 30px;
  margin-bottom: 30px;
}

.overlay a {
  font-size: 18px;
  text-decoration: none;
  color: #eaf6ff;
}

.overlay a:hover {
  color: #44CFCB;
  transition: 0.5s ease;
}

.overlay a:active {
  color: #13283E;
  transition: 0.3s ease;
}

.overlay a img {
  width: 100%;
  max-width: 100px;
}

@media screen and (min-width: 768px) {
  #hamburger, #close {
    display: none;
  }
  .overlay {
    display: flex;
    height: auto;
    width: 100%;
    background-color: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .overlay nav {
    width: 100%;
    box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
  }
  .overlay nav ul {
    background-color: #2A4494;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .overlay li {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 30px;
  }
  .overlay nav li:first-child {
    margin-right: auto;
    margin-left: 30px;
  }
}
#contactForm {
  display: block;
}

.contact-field-con {
  display: flex;
  flex-direction: column;
}

#contact label {
  opacity: 0.5;
  padding-top: 30px;
  padding-bottom: 10px;
}

input {
  field-sizing: content;
  min-inline-size: 2ch;
  max-inline-size: 40ch;
}

input, textarea {
  padding: 20px;
  font-size: 20px;
  color: #FFF;
  background-color: #13283E;
  border: none;
}

input::placeholder, textarea::placeholder {
  color: #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 20px;
}

input:focus::placeholder, textarea:focus::placeholder {
  color: #44CFCB;
  transition: all 0.5s ease;
}

textarea {
  resize: none;
  height: 200px;
}

#submit {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  #contact label {
    padding-top: 50px;
    font-size: 150%;
  }
  input {
    font-size: 30px;
  }
  textarea {
    height: 300px;
  }
  #feedback-con {
    text-align: center;
    font-size: 150%;
  }
  #submit {
    margin-top: 4rem;
  }
}
#intro {
  font-family: "cherry";
  margin-top: 1rem;
}
#intro p {
  font-size: 200%;
  background-color: #13283E;
  padding: 1rem;
}

#intro-button-con {
  display: flex;
  align-items: center;
  background-color: #13283E;
}

.intro-button-box {
  cursor: pointer;
}

.intro-button-box:hover {
  transition: all 0.2s ease;
  transform: scale(110%);
}

.intro-button-box:active {
  transform: scale(90%);
}

.intro-button-box:nth-child(2) {
  margin-left: auto;
  margin-right: 1rem;
}

#hero-svg-con {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  #intro {
    margin-top: 15%;
  }
  #intro-button-con {
    margin-top: 15%;
  }
  #intro-button-con {
    background-color: transparent;
  }
  #intro-button-con svg {
    fill: #2A4494;
  }
  #hero-svg-con {
    width: 50%;
    position: absolute;
    top: 15%;
    right: 0;
  }
}
#about {
  position: relative;
  background-color: #13283E;
  border-radius: 2rem;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
  margin: 1rem;
  padding: 2rem;
  display: block;
}

#about-text-con a {
  text-decoration: none;
  color: #44CFCB;
  font-weight: bold;
  border-bottom: 1px solid #44CFCB;
}
#about-text-con p {
  margin: 2rem 0;
}

#about-icon-con {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.about-icon-box {
  flex: 0 0 calc(25% - 1rem);
  display: flex;
  flex-direction: column;
}
.about-icon-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #44CFCB;
}
.about-icon-box svg {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  #about {
    width: 70%;
    margin: auto;
    margin-top: 7rem;
  }
  .about-icon-box {
    flex: 0 0 calc(20% - 1rem);
  }
  .about-icon-box svg {
    width: 8rem;
    height: 8rem;
  }
}
#projects {
  position: relative;
}

#projects-text-con {
  background-color: #2A4494;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}
#projects-text-con p {
  margin: 1rem 0;
}

.project-box {
  position: relative;
  overflow: hidden;
}

.project-box-a {
  text-decoration: none;
  color: #eaf6ff;
  opacity: 1;
  transition: all 0.2s ease;
}
.project-box-a h3 {
  position: absolute;
  top: 20%;
  color: #44CFCB;
}
.project-box-a p {
  position: absolute;
  top: 35%;
}
.project-box-a h3, .project-box-a p {
  margin: 3rem;
  z-index: 2;
}

.project-selection-details {
  background-color: #2A4494;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.project-skills-p {
  width: 75%;
  margin: auto;
}

.project-selection-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(20%);
  z-index: 1;
  transition: all 0.2s ease;
}

.project-selection-image:hover {
  filter: brightness(100%);
  transform: scale(110%);
}

.link-con {
  display: flex;
}

.link-con img {
  max-width: 30px;
  height: fit-content;
}

#projects-button {
  background-color: #2A4494;
  text-align: right;
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  #projects {
    margin-top: 2rem;
  }
  #projects-project-con {
    display: flex;
    flex-direction: row;
  }
  .project-box {
    flex: 1;
    padding-bottom: 30rem;
    background-color: #2A4494;
  }
  .project-box-a h3 {
    top: 10%;
    color: #44CFCB;
  }
  .project-box-a p {
    top: 50%;
  }
  .project-skills-p {
    font-size: 75%;
  }
}
.case-study-box {
  border: 2px solid #44CFCB;
  border-radius: 1rem;
  margin: 2rem 0;
  padding: 3rem;
}

@media screen and (min-width: 768px) {
  .case-study-box {
    border: 4px solid #44CFCB;
    padding: 4rem;
  }
}
.hidden {
  display: none;
}

header {
  background-color: #2A4494;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
}

body {
  background-color: #13283E;
  background-image: url(../../images/bg-pattern-vector.svg);
  background-color: #FFF;
  background-repeat: repeat;
  background-size: cover;
}

.btn {
  background-color: #13283E;
  color: #44CFCB;
  border: 1px solid #44CFCB;
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 4px 4px 0px #44CFCB;
}

.btn:hover {
  background-color: #44CFCB;
  transition: 0.5s ease;
  color: #2A4494;
  scale: 110%;
}

.btn:active {
  background-color: #13283E;
  color: #44CFCB;
  box-shadow: 0 0 0;
  scale: 90%;
}

span {
  color: #44CFCB;
}

@media screen and (min-width: 768px) {
  #about h2 {
    text-align: right;
  }
}
#contact {
  display: block;
  background-color: #2A4494;
  margin-top: 4rem;
  padding: 4rem 2rem;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
}
#contact p {
  padding: 1rem;
}
#contact a {
  text-decoration: none;
  color: #44CFCB;
}

.req-p {
  text-align: center;
}

@media screen and (min-width: 768px) {
  #contact {
    margin-top: 8rem;
    padding: 4rem;
  }
  #contact p {
    padding: 2rem;
  }
}
#case-study-intro-con {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #2A4494;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
}
#case-study-intro-con h2, #case-study-intro-con p {
  margin: 1rem;
}

#case-study-filter-con {
  background-color: #13283E;
  margin: 4rem 0;
  padding: 2rem;
}

#case-study-con {
  background-color: #2A4494;
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
  margin: 1rem;
}
#case-study-con h2 {
  margin-bottom: 2rem;
}

#filter-tags-con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.filter-tags {
  flex: 1;
}
.filter-tags button {
  width: 6rem;
  height: 4rem;
  border-radius: 2rem;
  border: 2px solid #44CFCB;
  background-color: transparent;
  color: #44CFCB;
  cursor: pointer;
}

.case-study-anchor {
  text-decoration: none;
  color: #FFF;
  position: relative;
  display: block;
  width: 100%;
  height: 20rem;
}
.case-study-anchor img {
  object-fit: cover;
  z-index: -1;
}

.case-study-textbox {
  background-color: #13283E;
  position: absolute;
  bottom: 0;
  height: 50%;
}

@media screen and (min-width: 768px) {
  #case-study-intro-con {
    margin-top: 10rem;
    border-radius: 2rem;
  }
  #case-study-con {
    margin: 3rem;
  }
  #filter-tags-con {
    width: 50%;
    position: relative;
    margin: auto;
  }
}
.case-study-detail-con {
  margin: 1rem;
  padding: 1rem;
  background-color: #2A4494;
  box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.3);
}
.case-study-detail-con h2 {
  text-align: center;
  margin: 2rem 0;
}
.case-study-detail-con a {
  color: #FFF;
  text-decoration: none;
}
.case-study-detail-con img {
  aspect-ratio: 16/9;
  object-fit: cover;
  overflow: hidden;
  margin: 1rem;
}
.case-study-detail-con p {
  margin: 1rem;
}

.case-study-separator {
  margin: 2rem;
  background-color: #FFF;
  border-radius: 1rem;
  width: 80%;
  height: 1px;
}

.case-study-intro-box, .case-study-results, .case-study-problem, .case-study-solution {
  margin: 2rem 0;
}/*# sourceMappingURL=main.css.map */