@font-face {
  font-family: "Quicksand-Bold";
  src: url("fonts/Quicksand-Bold.ttf");
  font-style: normal;
  font-family: "Quicksand-Regular";
  src: url("fonts/Quicksand-Regular.ttf");
  font-style: normal;
  font-family: "Quicksand-Light";
  src: url("fonts/Quicksand-Light.ttf");
  font-style: normal;
  font-family: "Quicksand-SemiBold";
  src: url("fonts/Quicksand-SemiBold.ttf");
  font-style: normal;
  font-family: "Quicksand-Medium";
  src: url("fonts/Quicksand-Medium.ttf");
  font-style: normal;
  font-family: "LexendDeca-Bold";
  src: url("fonts/LexendDeca-Bold.ttf");
  font-style: normal;
  font-family: "LexendDeca-Light";
  src: url("fonts/LexendDeca-Light.ttf");
  font-style: normal;
  font-family: "LexendDeca-Extralight";
  src: url("fonts/LexendDeca-ExtraLight.ttf");
  font-style: normal;
  font-family: "LexendDeca-Medium";
  src: url("fonts/LexendDeca-Medium.ttf");
  font-style: normal;
  font-family: "LexendDeca-Regular";
  src: url("fonts/LexendDeca-Regular.ttf");
  font-style: normal;
  font-family: "LexendDeca-SemiBold";
  src: url("fonts/LexendDeca-SemiBold.ttf");
  font-style: normal;
  font-family: "LexendDeca-Thin";
  src: url("fonts/LexendDeca-Thin.ttf");
  font-style: normal;
  font-family: "QuincyCF-Black";
  src: url("fonts/QuincyCF-Black.ttf");
  font-style: normal;
  font-family: "QuincyCF-Bold";
  src: url("fonts/QuincyCF-Bold.ttf");
  font-style: normal;
  font-family: "QuincyCF-Text";
  src: url("fonts/QuincyCF-Text.ttf");
  font-style: normal;
  font-family: "QuincyCF-Light";
  src: url("fonts/QuincyCF-Light.ttf");
  font-style: normal;
  font-family: "QuincyCF-Regular";
  src: url("fonts/QuincyCF-Regular.ttf");
  font-style: normal;
  font-family: "QuincyCF-Thin";
  src: url("fonts/QuincyCF-Thin.ttf");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  font-family: "LexendDeca-Regular";
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  background: white;
}

img {
  border-radius: 5px;
}

header {
  background: #F5EDE1;
  width: 100%;
  height: 17vh;
  display: flex;
  align-items: center;
  padding: 0 5vw;
}

header .logo {
  font-size: 1.8rem;
  margin-left: 2vw;
  text-wrap: nowrap;
  white-space: nowrap;
}

header nav ul {
  display: flex;
  margin-left: 1vw;
}

header nav ul li a {
  font-family: "LexendDeca-Light";
  font-weight: 300;
  flex: 1;
  display: inline-block;
  color: #171108;
  padding: 7px 0;
  margin: 0 2vw;
  border: 3px solid transparent;
  transition: 0.2s;
}

header nav ul li a:hover,
header nav ul li a.active {
  border-bottom-color: white;
}

.hamburger {
  cursor: pointer;
  display: none;
}

.hamburger div {
  width: 30px;
  height: 4px;
  margin: 5px 0;
  background: #171108;
}

@media only screen and (max-width: 900px) {
  header {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 700px) {
  .hamburger {
    display: block;
    margin-left: 35vw;
  }
  header nav {
    position: absolute;
    width: 100%;
    left: -100%;
    top: 17vh;
    width: 100%;
    height: 83vh;
    background: #fff;
    padding: 30px;
    transition: 0.3s;
  }
  header #nav_check:checked ~ nav {
    left: 0;
  }
  header nav ul {
    display: block;
  }
  header nav ul li a {
    margin: 5px 0;
    font-size: 1.425rem;
    font-family: "LexendDeca-Light";
  }
  header nav ul li a:hover,
  header nav ul li a.active {
    border-bottom-color: #F5EDE1;
  }
}
/* Apply flexbox to the hero section */
.hero-section {
  display: flex;
  flex-direction: row; /* Display text and image side by side */
  justify-content: center;
  align-items: center; /* Center items vertically */
  background-color: #F5EDE1;
  height: auto;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8vw;
  padding-top: 0;
}

.hero-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1vh;
}

#hero-title {
  font-family: "QuincyCF-Text";
  font-size: 3rem; /* Adjust the font size as needed */
  color: #171108; /* Set the desired text color */
}

#hero-info {
  font-family: "LexendDeca-Light";
  font-size: 0.9rem;
  color: #171108; /* Set the desired text color */
  width: 40%;
  word-wrap: break-word;
  letter-spacing: 0.5px;
}

/* Style for the Download Resume button */
button {
  font-family: "LexendDeca-Light";
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 1em; /* Adjust the font size as needed */
  background-color: #EED461; /* Set the desired button background color */
  color: #171108; /* Set the desired button text color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #e8c425;
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Style for the hero image */
.hero-img img {
  width: 80%;
  height: auto;
}

@media only screen and (max-width: 1100px) {
  .hero-inner {
    padding-top: 10vh;
  }
  #hero-info {
    width: 70%;
  }
}
@media only screen and (max-width: 900px) {
  .hero-img {
    display: none;
  }
  .hero-section {
    height: 87vh;
  }
  .hero-text {
    max-width: 80%;
  }
  #hero-info {
    width: 70%;
  }
  .hero-inner {
    padding: 0;
  }
}
@media only screen and (max-width: 560px) {
  .hero-section {
    padding: 0;
  }
  #hero-title {
    font-size: 2.3rem;
  }
  .hero-inner {
    padding: 0;
  }
  #hero-info {
    width: 90%;
  }
}
.portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20vh;
  padding-bottom: 20vh;
  gap: 3vh;
}

.portfolio-header a {
  font-family: "QuincyCF-Bold";
  font-size: 3rem;
}

.portfolio-card {
  width: 85vw;
  height: 45vh;
  background-color: #F5EDE1;
  border-radius: 5px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  display: flex;
  justify-content: flex-start;
}

.portfolio-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.portfolio-card-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 2vw;
  gap: 2vw;
}

.portfolio-card-inner img {
  height: 235px;
  width: 350px;
  object-fit: fill;
}

.portfolio-card-side-2 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2vh;
}

.portfolio-card-side-2 #card-tag {
  padding: 3px;
  background-color: #171108;
  color: white;
  border-radius: 3px;
  font-family: "LexendDeca-Light";
  font-size: 0.8rem;
}

.portfolio-card-side-2 #card-title {
  font-family: "QuincyCF-Regular";
  font-weight: 300;
  font-size: 2rem;
}

.portfolio-feature {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1vw;
}

.portfolio-feature #feature-name {
  font-size: 1rem;
  font-family: "LexendDeca-Regular";
  text-wrap: nowrap;
}

.portfolio-feature #feature-description {
  font-size: 0.9rem;
  font-family: "LexendDeca-Light";
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 1000px) {
  .portfolio-card {
    justify-content: center;
  }
  .portfolio-card-inner img {
    height: 180px;
    width: 270px;
  }
}
@media only screen and (max-width: 800px) {
  .portfolio-card {
    height: 35vh;
  }
  .portfolio-card-side-2 .portfolio-feature:last-of-type {
    display: none;
  }
  .portfolio-card-inner img {
    height: 155px;
    width: 235px;
    object-fit: fill;
  }
  .portfolio-feature {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .portfolio-card-side-2 #card-title {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 440px) {
  .portfolio-card {
    height: auto;
  }
  .portfolio-card-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  .portfolio-card-inner img {
    height: 144px;
    width: 216px;
  }
  .portfolio-card-side-2 {
    justify-content: center;
    align-items: center;
  }
  .portfolio-card-side-2 #card-title {
    text-align: center;
  }
}
.protfolio-section-2 {
  width: 85vw;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  flex-wrap: wrap;
}

.portfolio-card-type-2 {
  height: 32vh;
  width: 27vw;
  background-color: #F5EDE1;
  border-radius: 5px;
  padding-bottom: 3vh;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-card-type-2:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.portfolio-card-type-2-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding-left: 2vw;
  padding-right: 2vw;
}

.portfolio-card-type-2-inner img {
  height: 120px;
  width: 80px;
  object-fit: cover;
}

.portfolio-card-type-2-side-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1vh;
}

.portfolio-card-type-2-side-2 #card-tag-2 {
  padding: 3px;
  background-color: #171108;
  color: white;
  border-radius: 3px;
  font-family: "LexendDeca-Light";
  font-size: 0.8rem;
}

.portfolio-card-type-2-side-2 #card-title-2 {
  font-family: "QuincyCF-Regular";
  font-weight: 400;
  font-size: 1.8rem;
}

.portfolio-card-2-feature #feature-name-card-2 {
  font-size: 1rem;
  font-family: "LexendDeca-Regular";
  text-wrap: nowrap;
}

.portfolio-card-2-feature #feature-card-2-description {
  font-size: 0.9rem;
  font-family: "LexendDeca-Light";
  letter-spacing: 0.5px;
}

.portfolio-card-2-feature {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  flex-wrap: nowrap;
}

.portfolio-card-2-feature #feature-card-2-description p {
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 1000px) {
  .portfolio-card-2-feature {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .portfolio-card-type-2 {
    width: 85vw;
    gap: 2vw;
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .portfolio-card-2-feature {
    display: flex;
  }
  .portfolio-card-type-2-inner img {
    height: 155px;
    width: 235px;
    object-fit: fill;
  }
}
@media only screen and (max-width: 560px) {
  .portfolio-card-type-2-side-2 #card-title-2 {
    font-size: 1.6rem;
  }
  .portfolio-card-2-feature {
    display: none;
  }
}
@media only screen and (max-width: 440px) {
  .portfolio-card-type-2 {
    height: auto;
    justify-content: center;
  }
  .portfolio-card-type-2-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  .portfolio-card-type-2-inner img {
    height: 144px;
    width: 216px;
  }
  .portfolio-card-type-2-side-2 {
    justify-content: center;
    align-items: center;
  }
  .portfolio-card-type-2-side-2 #card-title-2 {
    font-size: 1.4rem;
    text-align: center;
  }
}
.view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  cursor: pointer;
  white-space: nowrap;
}

.view-all p {
  font-size: 1.1rem;
  white-space: nowrap;
}

.view-all p:hover {
  text-decoration: underline;
}

.view-all img {
  height: auto;
  width: 1rem;
}

.divider-section-container {
  margin-bottom: 20vh;
}

.divider-section {
  height: auto;
  width: 100%;
  background-color: #F5EDE1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vh;
  color: #171108;
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.divider-section #divider-section-header {
  font-family: "QuincyCF-Black";
  font-size: 2.5rem;
  text-align: center;
}

.divider-section #divider-section-info {
  font-family: "LexendDeca-Light";
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 70vw;
  word-wrap: break-word;
  letter-spacing: 0.03rem;
  text-align: center;
}

.divider-section button:hover {
  background-color: #e8c425;
}

@media only screen and (max-width: 560px) {
  .divider-section #divider-section-header {
    font-size: 2rem;
  }
}
.my-stories-section {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vh;
  padding-bottom: 20vh;
}

.my-stories-card-1 {
  width: 85vw;
  height: auto;
  background-color: #F5EDE1;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.my-stories-card-1-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2vw;
  gap: 2vh;
}

.my-stories-card-1-side-2 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}

.my-stories-card-1-inner img {
  height: 220px;
  width: 50%;
  object-fit: cover;
}

.my-stories-card-1-side-2 #story-card-tag {
  padding: 3px;
  background-color: #171108;
  color: white;
  border-radius: 3px;
  font-family: "LexendDeca-Light";
  font-size: 0.8rem;
}

.my-stories-card-1-side-2 #story-card-title {
  font-family: "QuincyCF-Regular";
  font-size: 1.7rem;
}

.my-stories-card-1-side-2 #story-card-description {
  font-size: 0.9rem;
  font-family: "LexendDeca-Light";
  letter-spacing: 0.5px;
}

.my-stories-card-1-side-2 button:hover {
  background-color: #e8c425;
}

@media only screen and (max-width: 880px) {
  .my-stories-card-1-side-2 #story-card-description {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .my-stories-card-1 {
    justify-content: center;
  }
  .my-stories-card-1-side-2 #story-card-description {
    display: block;
    font-size: 0.8rem;
  }
  .my-stories-card-1-inner img {
    width: 100%;
    object-fit: cover;
  }
  .my-stories-card-1-inner {
    flex-direction: column;
  }
}
.my-stories-inter-section {
  width: 85vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5vw;
  flex-wrap: wrap;
}

.my-stories-card-2 {
  flex: 3;
  height: auto;
  background-color: #F5EDE1;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.my-stories-card-2-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding: 2vw;
}

.my-stories-card-2 img {
  height: 150px;
  width: 50%;
  object-fit: cover;
}

.my-stories-card-2-side-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.my-stories-card-2-side-2 #story-card-2-tag {
  padding: 3px;
  background-color: #171108;
  color: white;
  border-radius: 3px;
  font-family: "LexendDeca-Light";
  font-size: 0.8rem;
}

.my-stories-card-2-side-2 #story-card-2-title {
  font-family: "QuincyCF-Regular";
  font-size: 1.7rem;
}

.my-stories-card-2-side-2 #story-card-description {
  display: none;
  font-size: 0.9rem;
  font-family: "LexendDeca-ExtraLight";
  letter-spacing: 0.5px;
}

.my-stories-card-2-side-2 button:hover {
  background-color: #e8c425;
}

@media only screen and (max-width: 880px) {
  .my-stories-inter-section {
    flex-direction: column;
    gap: 3vh;
  }
  .my-stories-card-2 img {
    height: 220px;
    width: 50%;
    object-fit: cover;
  }
  .my-stories-card-2-side-2 {
    gap: 0;
  }
}
@media only screen and (max-width: 560px) {
  .my-stories-card-2-inner {
    flex-direction: column;
  }
  .my-stories-card-2 img {
    width: 100%;
  }
  .my-stories-card-2-side-2 #story-card-description {
    display: block;
    font-size: 0.8rem;
    font-family: "LexendDeca-Light";
    letter-spacing: 0.5px;
  }
}
.my-stories-card-3 {
  flex: 1;
  height: auto;
  background-color: #F5EDE1;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-stories-card-3-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}

.my-stories-card-3-inner img {
  display: none;
  width: 50%;
  object-fit: cover;
}

.my-stories-card-3-side-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.my-stories-card-3-side-2 #story-card-3-tag {
  padding: 3px;
  background-color: #171108;
  color: white;
  border-radius: 3px;
  font-family: "LexendDeca-Light";
  font-size: 0.8rem;
}

.my-stories-card-3-side-2 #story-card-3-title {
  font-family: "QuincyCF-Regular";
  font-size: 1.7rem;
}

.my-stories-card-3-side-2 #story-card-description {
  display: none;
}

.my-stories-card-3-side-2 button:hover {
  background-color: #e8c425;
}

@media only screen and (max-width: 880px) {
  .my-stories-card-3-inner {
    gap: 2vw;
  }
  .my-stories-card-3-inner img {
    display: block;
    height: 220px;
    width: 50%;
  }
  .my-stories-card-3-side-2 {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 560px) {
  .my-stories-card-3-inner {
    flex-direction: column;
  }
  .my-stories-card-3-inner img {
    width: 100%;
  }
  .my-stories-card-3-side-2 #story-card-description {
    display: block;
    font-size: 0.8rem;
    font-family: "LexendDeca-Light";
    letter-spacing: 0.5px;
  }
}
.footer {
  height: auto;
  width: 100%;
  bottom: 0;
  background-color: #F5EDE1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 85vw;
  gap: 5vw;
  flex-wrap: wrap;
  padding-top: 15vh;
  padding-bottom: 20vh;
}

.footer-inner-section-1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.footer-inner-section-1 p {
  font-family: "QuincyCF-Bold";
  font-size: 1.6rem;
  text-wrap: nowrap;
  text-decoration: none;
  white-space: nowrap;
}

.footer-inner-section-1 a {
  text-decoration: none;
  font-family: "LexendDeca-Light";
  font-size: 0.9rem;
  color: #171108;
  letter-spacing: 0.5px;
}

.footer-inner-section-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.footer-inner-section-2 p {
  font-family: "QuincyCF-Bold";
  font-size: 1.6rem;
  text-wrap: nowrap;
  text-decoration: none;
}

.footer-inner-section-2 a {
  font-family: "LexendDeca-Light";
  font-size: 0.9rem;
  text-decoration: none;
  color: #171108;
  letter-spacing: 0.5px;
}

.footer-inner-section-3 {
  flex: 5;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.footer-inner-section-3 p {
  font-family: "QuincyCF-Bold";
  font-size: 1.6rem;
  white-space: no-wrap;
}

.footer-inner-section-3 #footer-description {
  font-family: "LexendDeca-Light";
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-inner-section-1 {
    justify-content: center;
    align-items: center;
  }
  .footer-inner-section-2 {
    justify-content: center;
    align-items: center;
  }
  .footer-inner-section-3 {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.sticky-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
}

.sticky-footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.sticky-social-section {
  background-color: #CECDCD;
  height: 100%;
  flex: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding-top: 2vh;
  padding-bottom: 2vh;
}

.sticky-social-section img {
  height: 22px;
  width: 22px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: 0;
}

.sticky-social-section a {
  margin: 0;
  padding: 0;
  border: 0;
}

.sticky-consultation-section {
  height: 100%;
  background-color: #EED461;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
}

.sticky-consultation-section a {
  text-decoration: none;
  color: #171108;
}

@media only screen and (max-width: 768px) {
  .sticky-social-section {
    display: none;
  }
  .sticky-consultation-section {
    width: 100%;
  }
}
/*
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  display: none;
}

.tooltip-container:hover .tooltip {
  display: block;
}
*/
.about_me_title {
  background-color: #F5EDE1;
  height: auto;
  width: 100%;
}

.about_me_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10vh;
  padding: 10vw;
  padding-bottom: 5vw;
}

.about_me_title_text p {
  font-family: "QuincyCF-Bold";
  font-size: 3.5rem;
}

.about_me_container img {
  width: 90%;
  height: auto;
}

.about_me_description {
  margin-top: 10vh;
  margin-bottom: 10vh;
  height: auto;
  width: 100%;
}

.about_description {
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.about_description p {
  font-family: "LexendDeca-ExtraLight";
  letter-spacing: 0.5px;
  font-size: 1rem;
  line-height: 3rem;
}

.section-portfolio-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10vw;
  padding-right: 10vw;
}

.portfolio-page-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15vh;
  padding-bottom: 5vh;
}

.portfolio-page-header p {
  font-family: QuincyCF-Bold;
  color: #171108;
  font-size: 3rem;
}

.portfolio-page-card {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10vh;
  background-color: #F5EDE1;
  border-radius: 5px;
  margin-bottom: 10vh;
}

.portfolio-page-card-inner {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vh;
  padding: 10vh;
}

.portfolio-page-card-inner img {
  width: 70vw;
  height: 40vh;
  object-fit: cover;
  border-radius: 5px;
}

.portfolio-card-text-part {
  width: 70vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1vh;
}

.portfolio-card-text-part #card-header-information {
  font-family: LexendDeca-Light;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.portfolio-page-card-inner #card-header {
  font-family: QuincyCF-Regular;
  font-size: 2rem;
}

.portfolio-page-card button:hover {
  background-color: #e8c425;
}

@media only screen and (max-width: 900px) {
  .portfolio-card-text-part #card-header-information {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .portfolio-card-text-part #card-header {
    font-size: 1.6rem;
  }
  .portfolio-page-card-inner {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}

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