@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Hind+Vadodara:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
}

/* body text */
/*header text */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 40;
}

.nav-header {
  display: flex;
  flex-direction: row;
  background-color: #f9f6fe;
  padding: 20px 0px;
  padding-bottom: 10px;
  padding-left: 6%;
  position: relative;
  overflow-x: hidden;
  padding-right: 5%;
}

nav {
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 1;
}

#navbar {
  background-color: #f9f6fe;
  width: 100%;
  margin: 0 20px;
  justify-content: space-between;
}
#navbar .nav-logo {
  padding: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transform: perspective(1000px);
  z-index: 1;
  position: relative;
  padding-right: 10%;
}
#navbar .nav-links {
  text-transform: uppercase;
  font-size: 16px;
}
#navbar .nav-links:active {
  display: flex;
}

/* Active state styles for navigation items */
.nav-links:active {
  display: flex;
}

.nav-logo > a {
  padding-left: 0;
}

.nav-links {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.nav-links a {
  padding-left: 2em;
}
.nav-links a:active {
  transition-duration: 0.2s;
  transition-delay: 0s;
  text-decoration: underline;
}
.nav-links a:hover {
  color: #7A6191;
  outline: invert;
  font-size: 20px;
}
.nav-links a:focus {
  color: #7A6191;
  outline: invert;
  font-size: 20px;
  text-decoration: underline;
}

.hamburger-menu {
  display: none;
  color: #100303;
}

/*hamburger menu active states*/
.hamburger-menu.is-active #openHam {
  display: none;
}

.hamburger-menu.is-active #closeHam {
  display: block;
}

.nav-links.is-active {
  display: flex;
}

/* Styles for tablets (portrait and landscape) */
/* Styles for large screens */
/* Styles for small screens (phones) */
@media only screen and (max-width: 768px) {
  #navbar {
    position: relative;
  }
  .nav-header {
    overflow-x: visible;
    width: auto;
  }
  .hamburger-menu {
    display: flex;
    cursor: pointer;
  }
  .hamburger-menu #closeHam {
    display: none;
  }
  .nav-links {
    display: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    top: 80px;
    background-color: #f9f6fe;
    width: 100vw;
    height: 140px;
    gap: 2vh;
    border: 5px solid #f9f6fe;
    overflow-x: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .nav-links > a {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding: 0;
    margin: 0;
  }
  .nav-links > a:hover {
    font-size: 24px;
  }
  .nav-links.is-active {
    display: flex; /* Show navigation links when active */
    flex-flow: column;
    padding-left: 14%;
    margin-left: -15%;
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-links {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
  }
  .nav-links a:active {
    transition-duration: 0.2s;
    transition-delay: 0s;
    text-decoration: underline;
    font-weight: 600;
  }
  .nav-links a:hover {
    color: #7A6191;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 500;
  }
  .nav-links a:focus {
    color: #7A6191;
    outline: invert;
    font-size: 18px;
    text-decoration: underline;
  }
}
.contact-main-body {
  display: grid;
  padding: 10% 5%;
  margin: 5% 5%;
  position: static;
  height: 30vh;
}

#contact {
  margin-bottom: 10%;
}
#contact #contact-info {
  align-content: center;
}

#intro-section-me {
  margin-top: 0;
}

.contact-info {
  text-align: center;
}
.contact-info .contact-info-main {
  font-weight: 700;
  padding-bottom: 3%;
  text-transform: uppercase;
  font-size: 2em;
}
.contact-info-sub {
  font-size: 13px;
}
.contact-info-links a:hover {
  color: #7A6191;
  outline: invert;
  font-size: 1em;
}
.contact-info-links a:focus {
  color: #7A6191;
  outline: invert;
  font-size: 1em;
}

@media only screen and (max-width: 764px) {
  .contact-main-body {
    margin: 5% 0;
    height: 50vh;
  }
  #contact {
    align-self: center;
  }
  #intro-section-me {
    margin-top: 0;
  }
  #intro-section-me p {
    font-size: 0.9em;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info .contact-info-main {
    font-size: 0.9em;
  }
  .contact-info-sub {
    font-size: 0.6em;
  }
  .contact-info-links a:hover {
    font-size: 0.5em;
  }
  .contact-info-links a:focus {
    font-size: 0.5em;
  }
}
body {
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: #f9f6fe;
}
body p {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  color: #100303;
}

strong {
  font-weight: 500;
}

#southern-front {
  padding-top: 0px;
  padding-left: 26%;
  padding-right: 22%;
  padding-bottom: 100px;
}

.main-top-header {
  display: flex;
  position: relative;
  margin-bottom: 60px;
  background-color: #d2bfc1;
}
.main-top-header img {
  width: 80%;
  height: 660px;
  image-rendering: auto;
  margin: 0 9.5%;
}

mark.scroll-highlight-sf {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: linear-gradient(#e1c4d6, #e1c4d6);
  animation: mark-it linear;
  animation-fill-mode: forwards;
  animation-timeline: view();
  animation-iteration-count: 1;
  animation-range: contain 0% contain 55%;
}

@keyframes mark-it {
  0% {
    background-size: 0 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
#prj-summary, #prj-research, #prj-ideate, #prj-conclusion {
  height: auto;
  margin: 5% 20%;
  padding: 0 50px;
}

.prj-summary-heading h2 {
  font-size: 30px;
  color: #100303;
}

.prj-summary-role {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-top: 2px solid #100303;
  border-bottom: 2px solid #100303;
  margin-top: 50px;
}
.prj-summary-role .role, .prj-summary-role .project, .prj-summary-role .timeline, .prj-summary-role .tools {
  border-right: 1px solid #100303;
  padding: 10px 10px;
}
.prj-summary-role .role {
  border-left: 1px solid #100303;
}

.prj-design-process {
  margin-top: 50px;
}
.prj-design-process img {
  width: 50vw;
  padding: 40px 0;
  padding-left: -5%;
}

#prj-imagery {
  height: auto;
  padding: 50px 100px;
  padding-bottom: 0;
  background-color: rgba(191, 165, 172, 0.0549019608);
}

.image-group-r {
  display: grid;
  position: relative;
  -moz-column-gap: 60px;
       column-gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 60vw;
  padding-left: 20%;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-bottom: 100px;
  justify-items: end;
}

.image-group-l {
  display: grid;
  position: relative;
  -moz-column-gap: 60px;
       column-gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 60vw;
  padding-left: 20%;
  padding-bottom: 60px;
  margin-bottom: 100px;
  justify-items: start;
}

.image-group-r-text p, .image-group-l-text p {
  width: 100%;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 350;
}

.image-group-r-img img {
  width: 30vw;
}

.image-group-l-img img {
  width: 34vw;
}

#prj-research {
  height: auto;
  margin: 5% 20%;
  padding: 0 50px;
}

.prj-section-heading-main {
  margin-bottom: 40px;
}
.prj-section-heading-main h3 {
  font-size: 28px;
  color: #100303;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.2px;
  line-height: 40px;
  font-weight: 500;
}
.prj-section-heading-main hr {
  margin-top: 5px;
  margin-bottom: 15px;
  color: #100303;
  background-color: #100303;
}

.prj-research-body p, .prj-ideate-body p {
  padding-bottom: 16px;
}
.prj-research-body ul, .prj-ideate-body ul {
  font-size: 16px;
  font-style: normal;
  color: #100303;
  padding-left: 8%;
  list-style-type: square;
}
.prj-research-body li, .prj-ideate-body li {
  margin-left: 2%;
}

p.last-paragraph {
  padding-bottom: 0;
}

.prj-illustration {
  padding-bottom: 6%;
  text-align: center;
}
.prj-illustration img {
  max-width: 55vw;
}
.prj-illustration figcaption {
  font-size: 12px;
  font-style: italic;
  color: #100303;
}

.video-interactive-prototype {
  padding-top: 2%;
  padding-bottom: 50px;
  padding-left: 10.5%;
}
.video-interactive-prototype video {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  max-height: 500px;
  max-width: 800px;
}

/* Styles for tablets (portrait and landscape) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  #sf-product {
    margin-bottom: -30%;
  }
  .image-group-right, .image-group-left {
    display: grid;
    -moz-column-gap: 50px;
         column-gap: 50px;
    grid-template-columns: 2fr 2fr;
    position: relative;
  }
  .image-group-right .image-group-right, .image-group-right .image-group-left-text, .image-group-left .image-group-right, .image-group-left .image-group-left-text {
    margin-top: 30px;
    letter-spacing: 2px;
    white-space: normal;
    align-items: center;
  }
  .image-group-right .image-group-right h3, .image-group-right .image-group-left-text h3, .image-group-left .image-group-right h3, .image-group-left .image-group-left-text h3 {
    margin-top: 0;
    font-weight: 700;
    line-height: 1em;
  }
}
/* Styles for large screens */
/* Styles for small screens (phones) changes from max 600px*/
@media only screen and (max-width: 768px) {
  body p {
    font-size: 14px;
  }
  #sf-product {
    margin-bottom: -30%;
  }
  .image-group-right, .image-group-left {
    display: grid;
    -moz-column-gap: 50px;
         column-gap: 50px;
    grid-template-columns: 2fr 2fr;
    position: relative;
  }
  .image-group-right .image-group-right, .image-group-right .image-group-left-text, .image-group-left .image-group-right, .image-group-left .image-group-left-text {
    margin-top: 30px;
    letter-spacing: 2px;
    white-space: normal;
    align-items: center;
  }
  .image-group-right .image-group-right h3, .image-group-right .image-group-left-text h3, .image-group-left .image-group-right h3, .image-group-left .image-group-left-text h3 {
    margin-top: 0;
    font-weight: 700;
    line-height: 1em;
  }
  .main-top-header {
    display: flex;
    position: relative;
    margin-bottom: 60px;
    background-color: #d2bfc1;
  }
  .main-top-header img {
    width: 100vw;
    height: auto;
    image-rendering: auto;
  }
  #prj-summary, #prj-research, #prj-ideate, #prj-conclusion {
    margin: 5% 2%;
    padding-right: 30px;
    padding-left: 20px;
  }
  #prj-summary-heading {
    font-size: 28px;
  }
  .prj-summary-role {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 2fr 2fr;
    border-bottom: 2px solid #100303;
    border-top: 2px solid #100303;
    margin-top: 50px;
  }
  .prj-summary-role .role, .prj-summary-role .project, .prj-summary-role .timeline, .prj-summary-role .tools {
    border-right: 2px solid #100303;
    padding-left: 20px;
  }
  .prj-summary-role .role, .prj-summary-role .timeline {
    border-left: 2px solid #100303;
  }
  .prj-summary-role .role, .prj-summary-role .project {
    border-bottom: 2px solid #100303;
  }
  .prj-design-process {
    margin-top: 50px;
  }
  .prj-design-process img {
    width: 85vw;
    padding: 40px 0;
  }
  #prj-imagery {
    padding: 50px;
    padding-bottom: 0;
  }
  .image-group-r, .image-group-l {
    width: 75vw;
    padding-left: 5%;
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .image-group-r-text p, .image-group-l-text p {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 350;
  }
  .prj-section-heading-main h3 {
    font-size: 26px;
    text-align: center;
  }
  .prj-section-heading-main hr {
    width: 80px;
    margin: 0 42%;
  }
  .prj-research-body ul, .prj-ideate-body ul {
    font-size: 14px;
  }
  .prj-illustration img {
    max-width: 85vw;
  }
  .footer-bottom {
    display: hidden;
  }
}
#kisasa-body {
  background-color: #f1f5f5;
}

#kisasa-body #navbar {
  background-color: #f1f5f5;
}

.ri--arrow-up-circle-fill {
  display: inline-block;
  width: 3em;
  height: 3em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12S6.48 2 12 2m1 10h3l-4-4l-4 4h3v4h2z'/%3E%3C/svg%3E");
  background-color: rgba(25, 102, 84, 0.5);
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  cursor: pointer;
}

.ri--arrow-up-circle-fill:hover {
  background-color: #196654;
}

.main-top-header-kisasa {
  background-color: rgba(25, 102, 84, 0.3);
}

.project-header-image {
  width: 100vw;
  height: auto;
  image-rendering: auto;
  margin: 0;
}

#kisasa-body .nav-header {
  background-color: #f1f5f5;
}
#kisasa-body .nav-links a:hover {
  color: #196654;
}
#kisasa-body blockquote {
  color: #375454;
  border-left: 3px solid #375454;
}
#kisasa-body .fa--medium:hover, #kisasa-body .fa--linkedin:hover, #kisasa-body .ic--sharp-email:hover, #kisasa-body .mdi--github:hover, #kisasa-body .simple-icons--hashnode:hover {
  background-color: #196654;
}
@media only screen and (max-width: 768px) {
  #kisasa-body .nav-links {
    background-color: #f1f5f5;
    border: 5px solid #f1f5f5;
  }
}

mark.scroll-highlight {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: linear-gradient(#eecbb8, #eecbb8);
  animation: mark-it linear;
  animation-fill-mode: forwards;
  animation-timeline: view();
  animation-iteration-count: 1;
  animation-range: contain 0% contain 55%;
}

@keyframes mark-it {
  0% {
    background-size: 0 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
#kisasa-body .image-group-r-img img {
  width: 25vw;
}
#kisasa-body .image-group-l-img img {
  width: 25vw;
}
#kisasa-body .image-group-r {
  display: grid;
  position: relative;
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 60vw;
  padding-left: 15%;
  padding-top: 20px;
  padding-bottom: 45px;
  margin-bottom: 0;
  justify-items: normal;
}
#kisasa-body .image-group-l {
  display: grid;
  position: relative;
  -moz-column-gap: 20px;
       column-gap: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 60vw;
  padding-left: 20%;
  padding-bottom: 45px;
  margin-bottom: 0;
  justify-items: normal;
}
#kisasa-body .image-group-r-text p, #kisasa-body .image-group-l-text p {
  width: 100%;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 350;
}

#kisasa-body #prj-imagery {
  height: auto;
  padding: 50px 20px;
  padding-bottom: 0;
  margin: 0 auto;
  background-color: #e8efef;
}

#Kisasa-pg-images img {
  max-width: 70vw;
  margin-left: -15%;
}

.floating {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  bottom: 10%;
  margin-right: 6%;
  z-index: 99;
}

#kisasa-body .main-top-header {
  display: flex;
  position: relative;
  margin-bottom: 60px;
  background-color: #d2bfc1;
}
#kisasa-body .main-top-header img {
  width: 80%;
  height: 660px;
  image-rendering: auto;
  margin: 0 9.5%;
}

@media only screen and (max-width: 768px) {
  #Kisasa-pg-images img {
    max-width: 95vw;
    margin-left: -10%;
  }
  .floating {
    margin-right: 10%;
    bottom: 6%;
  }
  .ri--arrow-up-circle-fill {
    width: 2em;
    height: 2em;
    background-color: rgba(25, 102, 84, 0.6);
  }
}
@media only screen and (max-width: 768px) {
  #kisasa-body .image-group-r, #kisasa-body .image-group-l {
    width: 75vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  #kisasa-body .image-group-right, #kisasa-body .image-group-left {
    display: grid;
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-template-columns: 2fr 2fr;
    position: relative;
  }
  #kisasa-body .image-group-right #kisasa-body .image-group-right, #kisasa-body .image-group-right #kisasa-body .image-group-left-text, #kisasa-body .image-group-left #kisasa-body .image-group-right, #kisasa-body .image-group-left #kisasa-body .image-group-left-text {
    margin-top: 30px;
    letter-spacing: 2px;
    white-space: normal;
    align-items: center;
  }
  #kisasa-body .image-group-right #kisasa-body .image-group-right h3, #kisasa-body .image-group-right #kisasa-body .image-group-left-text h3, #kisasa-body .image-group-left #kisasa-body .image-group-right h3, #kisasa-body .image-group-left #kisasa-body .image-group-left-text h3 {
    margin-top: 0;
    font-weight: 700;
    line-height: 1em;
  }
}
footer {
  background-color: #100303;
  position: relative;
  z-index: 9999;
  padding-top: 1%;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 1%;
  display: flex;
  flex-direction: column;
  min-width: 85vh;
  bottom: 0;
}

.footer-top {
  display: flex;
  align-items: center;
  min-width: 100%;
}
.footer-top .socials {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}
.footer-top .socials a {
  padding: 5px;
}
.footer-top .content {
  text-transform: uppercase;
}
.footer-top .content a {
  padding-left: 0.2rem;
  color: #f7f7f7;
  font-size: 14px;
}

.footer-logo {
  padding-right: 1%;
}
.footer-logo a {
  padding: 0;
}

.footer-small {
  display: none;
}

.footer-bottom h6 {
  color: #f7f7f7;
  margin-top: 0;
  font-weight: 400;
  font-style: normal;
}
.footer-bottom .div-separator {
  width: 100%;
  height: 1px;
  background-color: #f7f7f7;
}

.fa--medium {
  display: inline-block;
  width: 1.17em;
  height: 0.9em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1792 1536'%3E%3Cpath fill='%23000' d='M597 293v1173q0 25-12.5 42.5T548 1526q-17 0-33-8L50 1285q-21-10-35.5-33.5T0 1205V65q0-20 10-34t29-14q14 0 44 15l511 256q3 3 3 5m64 101l534 866l-534-266zm1131 18v1054q0 25-14 40.5t-38 15.5t-47-13l-441-220zm-3-120q0 3-256.5 419.5T1232 1199L842 565l324-527q17-28 52-28q14 0 26 6l541 270q4 2 4 6'/%3E%3C/svg%3E");
  background-color: #f9f6fe;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding: 0 8px;
}

.fa--linkedin {
  display: inline-block;
  width: 1.03em;
  height: 0.9em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1536 1504'%3E%3Cpath fill='%23000' d='M349 497v991H19V497zm21-306q1 73-50.5 122T184 362h-2q-82 0-132-49T0 191q0-74 51.5-122.5T186 20t133 48.5T370 191m1166 729v568h-329V958q0-105-40.5-164.5T1040 734q-63 0-105.5 34.5T871 854q-11 30-11 81v553H531q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52t87-43.5T1157 474q171 0 275 113.5T1536 920'/%3E%3C/svg%3E");
  background-color: #f9f6fe;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding: 0 8px;
}

.ic--sharp-email {
  display: inline-block;
  width: 1.5em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M22 4H2v16h20zm-2 4l-8 5l-8-5V6l8 5l8-5z'/%3E%3C/svg%3E");
  background-color: #f9f6fe;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding: 0 8px;
}

.mdi--github {
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2'/%3E%3C/svg%3E");
  background-color: #f9f6fe;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding: 0 8px;
}

.simple-icons--hashnode {
  display: inline-block;
  width: 0.8em;
  height: 0.9em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m22.351 8.019l-6.37-6.37a5.63 5.63 0 0 0-7.962 0l-6.37 6.37a5.63 5.63 0 0 0 0 7.962l6.37 6.37a5.63 5.63 0 0 0 7.962 0l6.37-6.37a5.63 5.63 0 0 0 0-7.962M12 15.953a3.953 3.953 0 1 1 0-7.906a3.953 3.953 0 0 1 0 7.906'/%3E%3C/svg%3E");
  background-color: #f9f6fe;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding: 0 8px;
}

.fa--medium:hover, .fa--linkedin:hover, .ic--sharp-email:hover, .mdi--github:hover, .simple-icons--hashnode:hover {
  background-color: #7a6191;
}

/* Styles for small screens (phones) */
@media only screen and (max-width: 768px) {
  footer {
    width: 100%;
    padding: 2% 0;
    margin: 0;
    overflow: hidden;
    align-items: center;
    flex-direction: row;
    min-width: 0;
  }
  .footer-bottom, .footer-top {
    display: none;
  }
  .footer-small {
    display: inline-block;
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  .footer-small p {
    color: #f7f7f7;
  }
  .footer-logo-sm {
    padding-right: 1%;
  }
  .footer-logo-sm a {
    padding: 0;
  }
  .fa--medium {
    width: 1.17em;
    height: 1em;
  }
  .fa--linkedin {
    width: 1.03em;
    height: 1em;
  }
  .ic--sharp-email {
    width: 1.5em;
    height: 1.2em;
  }
  .mdi--github {
    width: 1em;
    height: 1.1em;
  }
  .simple-icons--hashnode {
    width: 1em;
    height: 1em;
  }
}
body {
  min-height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
  font-size: 20px;
  min-width: 100%;
  overflow-x: hidden;
}
body p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a {
  color: #100303;
  text-decoration: none;
  transition-duration: 0.2s;
  transition-delay: 0s;
  font-size: 16px;
  padding-left: 1em;
}

strong {
  font-weight: 500;
}

blockquote {
  color: #9a2c38;
  background-color: transparent;
  border-left: 3px solid #9a2c38;
  margin: 20px 0;
  margin-left: 40px;
  padding-left: 0;
  font-family: "EB Garamond", serif;
  display: block;
  max-width: 600px;
  float: none;
  clear: none;
  letter-spacing: 0.2px;
  padding: 40px;
  font-size: 22px;
  line-height: 38px;
  margin-right: auto;
}
blockquote ul, blockquote ol {
  color: #9a2c38;
}

main {
  display: block;
  position: relative;
}

.main-top-landing {
  height: auto;
  padding: 5px 0px;
  margin: 0 auto;
}

.project-holder-landing {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  height: 74vh;
  width: auto;
}

.intro-image-landing {
  justify-self: end;
  height: auto;
}

.intro-text-landing {
  justify-self: start;
  padding: 0 50px;
}
.intro-text-landing .intro-text-landing-header {
  font-weight: 700;
  font-family: "Playfair", serif;
  font-size: 4.5rem;
  margin-bottom: 5px;
  padding-bottom: 25px;
  letter-spacing: 1px;
}
.intro-text-landing .intro-text-landing-paragraph {
  margin-top: 10px;
  color: #100303;
  font-size: 15px;
  line-height: 30px;
  padding-right: 20%;
}

#intro-section-me {
  background-color: #100303;
  padding: 1.8% 2%;
  width: auto;
  margin-top: 5%;
  border: none;
  transition: transform 0.3s ease-in-out;
}
#intro-section-me a {
  margin: 0;
  padding: 0;
}
#intro-section-me p {
  color: #f7f7f7;
  font-family: "Playfair", serif;
  font-size: 1.01em;
  font-weight: 500;
}

#intro-section-me:hover {
  transform: scale(0.9);
}

.marquee-horizontal {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  justify-content: flex-start;
  background-color: #100303;
}

.track-horizontal {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-horizontal 40s linear infinite;
}

.marquee-text {
  color: #f7f7f7;
  font-size: 12px;
}

@keyframes marquee-horizontal {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.main-bottom-projects {
  height: auto;
  padding: 5px 0px;
  margin: 0 auto;
  margin-bottom: 2%;
}

.two-project-display {
  display: grid;
  gap: 2%;
  grid-template-columns: repeat(2, 1fr);
  width: auto;
  height: 60vh;
  margin-top: 2%;
  margin-bottom: 5px;
  padding-top: 0px;
  padding-bottom: 0;
}
.two-project-display .two-project-display-left {
  width: 49vw;
  height: 65vh;
}
.two-project-display .two-project-display-right {
  width: 49vw;
  height: 65vh;
}
.two-project-display .project-display-image {
  height: 55vh;
  background-size: cover;
  background-color: #e6cac3;
  transition: background-color 0.3s ease-in-out;
}
.two-project-display .project-display-name .two-project-display .project-display-name-title {
  text-transform: capitalize;
}
.two-project-display .project-display-name .two-project-display .project-display-name-subtitle {
  text-align: center;
}

.two-project-display-left, .two-project-display-right {
  transition: transform 0.4s ease-in-out; /* Smooth transition effect */
}

.two-project-display-right:hover {
  transform: scale(0.9); /* Scale down the image on hover (inverse zoom) */
}

.two-project-display-left:hover {
  transform: scale(0.9); /* Scale down the image on hover (inverse zoom) */
}

.project-display-image img {
  justify-items: center;
  padding-top: 5%;
}

.project-display-name {
  margin-bottom: 5%;
}
.project-display-name .project-display-name-title {
  font-weight: 600;
  font-size: 1.1em;
  text-transform: uppercase;
  padding-left: 2%;
  padding-top: 1%;
}
.project-display-name .project-display-name-subtitle {
  padding-left: 2%;
  font-weight: 400;
  opacity: 80%;
  font-size: 0.8em;
  padding-top: 0;
  padding-bottom: 2%;
  line-height: 20px;
}

.project-display-image:hover {
  background-color: #bfbac4;
}

#kisasa-cover {
  width: 60%;
  padding-left: 16%;
  padding-top: 2%;
}

#sf-cover {
  width: 85%;
  padding-left: 5%;
}

.projects-section {
  width: 100%;
  margin-top: 0;
  margin-bottom: 5px;
  padding-top: 30px;
  padding-bottom: 0;
  transition: #f7f7f7 0.3s;
  display: block;
}
.projects-section .project-image-container {
  width: 50vw;
  height: 100%;
  background-size: cover;
  background-color: antiquewhite;
  display: flex;
  position: relative;
}
.projects-section .project-name {
  display: block;
  margin-bottom: 10px;
}

.project-page-container {
  width: 100%;
  max-width: none;
  margin-top: 0;
  min-height: 0;
  margin: 25px auto 0;
  display: block;
  position: relative;
}
.project-page-container .halfcard-holder {
  width: 100vw;
  height: 60vh;
  flex-direction: row;
  display: flex;
}
.project-page-container .halfcard-holder a {
  padding-left: 0;
}
.project-page-container .w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.project-name {
  margin-left: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: block;
}
.project-name .project-title {
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 2px #100303;
  padding-bottom: 0;
  line-height: 26px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
.project-name .project-subtitle {
  padding-bottom: 20px;
  letter-spacing: 0;
  font-size: 14px;
}

/* Styles for smartphones (max-width 576px) */
@media (max-width: 576px) {
  .main-top, .projects-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .marquee-horizontal {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .project-holder {
    padding-left: 0;
  }
  .projects-section {
    display: flex;
  }
}
@media only screen and (max-width: 764px) {
  #project-holder-landing {
    display: none;
  }
  .project-holder-landing-small {
    display: grid;
    padding-bottom: 50px;
    align-items: center;
    height: auto;
    width: auto;
  }
  .intro-image-landing-small {
    justify-self: center;
  }
  .intro-image-landing-small img {
    height: 55vh;
  }
  .intro-text-landing-small {
    justify-self: start;
    padding-left: 8%;
  }
  .intro-text-landing-small .intro-text-landing-small-header {
    font-weight: 700;
    font-family: "Playfair", serif;
    font-size: 40px;
    margin-bottom: 2px;
    padding-bottom: 18px;
    letter-spacing: 1px;
  }
  .intro-text-landing-small .intro-text-landing-small-paragraph {
    color: #100303;
    font-size: 18px;
    line-height: 30px;
    opacity: 80%;
  }
  .main-top-landing {
    padding: 5px 0px;
  }
  .two-project-display {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: 90vh;
  }
  .two-project-display .two-project-display-left {
    width: auto;
    height: 30vh;
    padding: 5% 6%;
    margin: 2% 0;
    margin-left: 2%;
  }
  .two-project-display .two-project-display-right {
    width: auto;
    height: 30vh;
    padding: 5% 6%;
    margin: 2% 0;
    margin-left: 2%;
  }
  .two-project-display .project-display-image {
    height: 35vh;
  }
  .two-project-display .project-display-image img {
    padding-left: 0;
  }
  #kisasa-cover {
    width: 80%;
    padding-left: 8%;
    padding-top: 5%;
  }
  #sf-cover {
    width: 95%;
    padding-left: 2%;
    padding-top: 20%;
  }
}
@media only screen and (max-width: 500px) {
  #kisasa-cover {
    padding-top: 10%;
  }
}
@media only screen and (min-width: 500px) {
  #project-holder-landing-small {
    display: none;
  }
}
@media only screen and (min-width: 765px) and (max-width: 992px) {
  .intro-text-landing .intro-text-landing-header {
    font-size: 3.1rem;
  }
  .intro-text-landing .intro-text-landing-paragraph {
    padding-right: 0;
  }
  .two-project-display {
    height: 65vh;
  }
  #kisasa-cover {
    width: 90%;
    padding-left: 6%;
    padding-top: 10%;
  }
  #sf-cover {
    width: 98%;
    padding-left: 2%;
    padding-top: 25%;
  }
}
/* Mobile First development */
@media only screen and (max-width: 768px) {
  .marquee-horizontal {
    justify-content: space-between;
  }
}
/* For screens wider than 768px */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  body {
    width: 100vw;
    margin: 0;
    padding: 0;
  }
  .main-top-landing {
    padding: 5px 0px;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1440px) {
  .two-project-display {
    height: 40vh;
  }
  .two-project-display .two-project-display-left {
    width: 49vw;
    height: 40vh;
  }
  .two-project-display .two-project-display-right {
    width: 49vw;
    height: 40vh;
  }
  .two-project-display .project-display-image {
    height: 35vh;
  }
}/*# sourceMappingURL=main.css.map */