@font-face {
  font-family: Texgyre Heros CN;
  src: url('../fonts/texgyreheroscn-regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

#Box1 {
  margin-bottom: 1500px !important;
}

@font-face {
  font-family: Texgyre Heros;
  src: url('../fonts/texgyreheros-regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Texgyre Heros;
  src: url('../fonts/texgyreheros-italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Texgyre Heros CN;
  src: url('../fonts/texgyreheroscn-bolditalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Texgyre Heros CN;
  src: url('../fonts/texgyreheroscn-bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Texgyre Heros;
  src: url('../fonts/texgyreheros-bolditalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Texgyre Heros CN;
  src: url('../fonts/texgyreheroscn-italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Texgyre Heros;
  src: url('../fonts/texgyreheros-bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white-smoke: #f6f5f1;
  --midnight-blue: #1c2445;
  --dark-grey: #a6a5a3;
  --blue: #3269ff;
  --black-2: #333230;
  --white: white;
  --black: #0f0f0f;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--white-smoke);
  color: var(--midnight-blue);
  font-family: Texgyre Heros, sans-serif;
  font-size: 14px;
  line-height: 20px;

}

h1 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

p {
  color: #686868;
  max-width: 50ch;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: var(--dark-grey);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--blue);
}

ul {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
  display: flex;
  list-style: disc;
}

li {
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
}

label {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}

blockquote {
  background-image: url('../images/icons8_quote_2.svg');
  background-position: 0 8px;
  background-repeat: no-repeat;
  background-size: 30px;
  border-left: 5px #e2e2e2;
  max-width: 40ch;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: -40px;
  padding: 0 0 0 40px;
  font-family: Texgyre Heros CN, sans-serif;
  font-size: 29px;
  line-height: 1.4;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-style: italic;
}

.side-scroll-body {
  z-index: 1;
  height: 500vh;
  position: relative;
}

.side-scroll-track {
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.side-scroll-wrapper {
  flex-direction: row;
  width: 400vw;
  height: 100vh;
  display: flex;
}

.section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  padding: 50px;
}



.section.services {
  background-image: url('../images/Service-Half-Circle.svg');
  background-position: 95% 10%;
  background-repeat: no-repeat;
  background-size: auto 110%;
  position: relative;
  overflow: hidden;
}

.section.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  padding: 50px;
  overflow: visible; /* make sure parent doesn’t cut off */
  z-index: 1;
}

.section.contact {
  position: relative;
  overflow: hidden;
}

.container {
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container.navbar-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  max-width: none;
}

.container.project {
  z-index: 10;
  grid-column-gap: 100px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}


.contact-bar-link {
  color: var(--midnight-blue);
  margin-left: 15px;
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}

.contact-bar-link:hover {
  color: var(--blue);
}

.social-link {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  margin-right: 16px;
  display: flex;
}

.hero-text-wrapper {
  position: absolute;
  top: 50%;             /* push down halfway */
  left: 4vw;            /* distance from left edge (adjust as needed) */
  transform: translateY(-50%); /* pull up half of its height to center vertically */
  min-width: 700px;
  z-index: 200;
}


.image-offset-wrapper {
  flex: 0 0 auto; /* don’t let flex shrink it */
  width: auto; /* let it be as wide as needed */
  max-width: none; /* remove max width */
  position: relative;
  overflow: visible;
  z-index: 1;
  right: -100px;
  bottom: -5%;
}

 .home-hero-image {
  position: relative;
  width: 1400px; /* bigger size */
  height: auto;
  pointer-events: none;
  z-index: 1;
  object-fit: contain; /* optional for maintaining aspect */
  right: -450px;
}

.hero-logo {
  width: 100px;
  height: auto;
  margin: 20px 0 0 20px; /* adjust as needed */
  position: absolute;     /* optionally fix to top-left */
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.period {
  color: var(--blue);
  font-family: Lato, sans-serif;
}

.contact-details {
  z-index: 99999;
  background-color: var(--white-smoke);
  align-items: center;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
  position: fixed;
  inset: auto auto 50px 46px;
}

.section-h1 {
  margin-bottom: 20px;
  font-family: "owners", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
}

.section-h2 {
  margin-bottom: 20px;
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
}

.section-h6 {
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-h5 {
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 21px;
}

.section-h4 {
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 21px;
}

@media screen and (max-width: 1470px) {
    .work-link {
        margin-top: none;
    }
}

.ss-logo {
  width: 140px;
  margin-bottom: 60px;
  margin-left: 60px;
  margin-top: 60px;
}

.work-title {
  z-index: 10;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 23px;
  position: relative;
  color: var(--white);
}

.work-title.mini {
  font-size: 15px;
}

.work-summary {
  z-index: 10;
  color: #fffc;
  max-width: 30ch;
  margin-top: 15px;
  font-family: Work Sans, sans-serif;
  font-size: 14px;
  position: relative;
}

.work-thumbnail-overlay {
  z-index: 0;
  height: 15%;
  opacity: .85;
  position: absolute;
  inset: auto 0% 0%;
}

.work-thumbnail-logo {
  z-index: 10;
  filter: brightness(0%) invert();
  max-width: 110px;
  max-height: 50px;
  margin-bottom: 50px;
  position: relative;
}

.work-thumbnail-logo.mini {
  max-height: 35px;
  margin-bottom: 10px;
}

.work-star-1 {
  width: 20px;
}

.work-star-2 {
  width: 15px;
  position: absolute;
  inset: 45% 0% auto auto;
}

.contact-image-wrapper {
  align-items: flex-end;
  width: 50%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.contact-image-layer-1 {
  z-index: 0;
  position: relative;
}

.contact-image-layer-2 {
  z-index: 2;
  width: 80%;
  max-width: 80%;
  position: absolute;
  bottom: -20%;
  left: 4%;
}

.contact-image-layer-3 {
  z-index: 1;
  position: absolute;
}

.bullet-text {
  margin-bottom: 0;
  margin-left: 12px;
}

.service-icon {
  width: 24px;
  margin-top: 3px;
}

.contact-section-anchor {
  z-index: 0;
  width: 90vw;
  height: 100vh;
  position: absolute;
  inset: auto 0% 0%;
}

.button {
  background-color: #4169b2;
  text-transform: uppercase;
  border-radius: 30px;
  align-self: center;
  padding: 12px 25px;
  transition: box-shadow .2s;
  box-shadow: 0 1px 3px #00000030;
  font-family: "owners", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  
}

.button:hover {
  color: #fff;
  box-shadow: 0 10px 15px #00000030;
}

.button.mini {
  padding: 7px 18px;
  font-size: 12px;
}

.button.project-content {
  margin-top: 30px;
  font-size: 12px;
}

#mid {
  font-size: 20px;
  padding: 14px 30px;
}

.first-button {
  margin-top: 30px;
}

.contact-icon {
  width: 20px;
  margin-top: 5px;
  margin-right: 10px;
  color: #4169b2;
}

.contact-text {
  margin-bottom: 0;
}

.utility-section {
  padding: 100px 40px;
}

.contact-background-circle {
  z-index: -1;
  border: 1.5px solid var(--midnight-blue);
  border-radius: 50%;
  width: 90vw;
  height: 90vw;
  position: absolute;
  inset: auto -63% -50% auto;
}

.utility-section-title {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.service-list {
  margin-bottom: 50px;
}

.divider {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 12px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 400px;
  display: flex;
}

.service-illustration-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 55%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.service-image-layer-1 {
  z-index: 10;
  flex: none;
  position: relative;
  width: 100%;
  margin-left: 500px;
  inset: auto auto 0% 0%;
}

.service-image-layer-2 {
  z-index: 100;
  flex: none;
  width: 100%;
  max-width: 1000px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.service-image-layer-3 {
  align-self: flex-start;
  width: 700px;
}

.project-section {
  align-items: center;
  padding: 100px 50px;
  display: flex;
  position: relative;
}

.navbar {
  background-color: var(--white-smoke);
  align-items: center;
  height: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 10px 20px #0000000f;
}

.navbar-brand {
  order: -1;
  width: 40px;
}

.client-row {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.client-logo {
  filter: sepia();
  max-height: 30px;
  margin-right: 12px;
}

.project-hero-image {
  margin-top: 8%;
  z-index: 0;
  width: 700px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center; /* only works with flex, optional here */
 
}


.project-hero-image-overlay {
  opacity: .95;
  display: none;
  position: absolute;
  inset: 0%;
}

.project-h1 {
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1;
}

.project-client-name {
  margin-top: 9px;
  font-size: 22px;
  line-height: 30px;
}

.project-subtitle {
  color: #000;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.4;
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

.project-content-grid {
  grid-column-gap: 100px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

.project-summary {
    opacity: .6;
    color: var(--black-2);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    font-style: normal;
    color: #000;
    letter-spacing: 0.03em;
}

.project-sticky-column {
  position: sticky;
  top: 100px;
}

.rich-text-element h2 {
  font-weight: 700;
}

.rich-text-element figcaption {
  color: var(--dark-grey);
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}

.rich-text-element figure {
  min-width: 105%;
  margin-top: 30px;
  margin-bottom: 30px;
  left: -2.5%;
}

.work-section-anchor {
  z-index: 0;
  width: 90vw;
  height: 350vh;
  position: absolute;
  inset: auto 0% 0%;
}

.footer {
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-size: 12px;
  display: flex;
  background-color: var(--white-smoke); /* optional, but good for visibility */
  width: 100%;
}

.footer-text {
  margin-left: 10px;
  margin-right: 10px;
}

.footer-link {
  color: var(--blue);
}

.footer-link:hover {
  color: var(--dark-grey);
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.tutorial-steps-title {
  margin-top: 100px;
}

.tutorial-image {
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 10px 30px #00000026;
}

.assets-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 50px;
}

.assets-logo {
  height: 25px;
  margin-right: 10px;
}

.assets-row {
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}

.no-margin {
  margin-bottom: 0;
}

.assets-image-wrapper {
  border: 1px solid var(--dark-grey);
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.email-me-text {
  margin-top: 30px;
  margin-bottom: 0;
}

.email-me-link {
  color: var(--blue);
}

.password-input {
  background-color: #0000;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  min-width: 310px;
  font-size: 15px;
}

._404-paragraph {
  margin-bottom: 30px;
}

.styleguide-title {
  color: var(--blue);
  margin-top: 100px;
  margin-bottom: 50px;
}

.tutorial-line {
  background-color: #dbdad6;
  height: 1px;
  margin-top: 30px;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 95px;
  }

  .section.two {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .section-h1 {
    font-size: 85px;
  }

  .work-thumbnail-image {
    padding-left: 50px;
    padding-right: 50px;
  }

  .work-title {
    font-size: 28px;
    line-height: 27px;
  }

  .work-title.mini {
    font-size: 17px;
  }

  .work-summary {
    font-size: 16px;
  }

  .service-illustration-wrapper {
    max-width: 1000px;
    right: -5%;
  }

  .service-image-layer-3 {
    width: 450px;
  }

  .project-h1 {
    font-size: 70px;
  }

  .project-client-name {
    margin-top: 10px;
  }
}



@media screen and (min-width: 1440px) {

  .contact-image-layer-3 {
    width: 120%;
    max-width: 120%;
  }

  .contact-background-circle {
    width: 100vw;
    height: 100vw;
    bottom: -65%;
  }
}

@media screen and (max-width: 768px) {
  .button {
    display: block;       /* ensures it’s treated as a block element */
    margin-left: 20%;       /* centers it horizontally */
    text-align: center;    /* centers text inside the button (optional) */
    width: 300px;
    letter-spacing: 0.1em;
  }
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 65px;
  }

  .side-scroll-body {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: static;
    overflow: hidden;
  }

  .side-scroll-track {
    width: auto;
    height: auto;
    position: static;
    overflow: auto;
  }

  .side-scroll-wrapper {
    width: auto;
    height: auto;
    display: block;
  }

  .container.contact {
    z-index: 10;
    position: relative;
  }

  .contact-details {
    inset: 50px 50px auto auto;
  }

  .work-thumbnail-image {
    justify-content: flex-end;
    padding-bottom: 30px;
  }

  .ss-logo {
    width: 50px;
  }

  .work-thumbnail-overlay {
    height: 100% !important;
  }

  .work-star-2 {
    inset: auto auto 10% 30%;
  }

  .contact-image-wrapper {
    width: auto;
    margin-top: 130px;
    position: relative;
    right: auto;
  }

  .contact-image-layer-2 {
    width: 460px;
  }

  .contact-section-anchor {
    display: none;
  }

  .contact-background-circle {
    width: 100vw;
    height: 100vw;
    inset: auto -60% -20% auto;
  }

  .service-list {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .service-illustration-wrapper {
    width: auto;
    margin-top: 60px;
    position: relative;
  }

  .service-image-layer-1 {
    width: 320px;
    max-width: none;
  }

  .service-image-layer-2 {
    width: 400px;
    max-width: none;
  }

  .work-section-anchor {
    display: none;
  }
}

@media screen and (max-width: 768x) {
  blockquote {
    background-position: -2px -4px;
    margin-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .side-scroll-wrapper {
    overflow: hidden;
  }

  .section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section.two {
    flex-direction: column;
    grid-template-rows: auto 1fr 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-auto-columns: 1fr;
  }

  .section.home {
    padding-top: 30px;
  }

  .container.project {
    display: block;
  }

  .contact-details {
    top: 30px;
    right: 30px;
  }

  .work-link, .work-collection-item {
    min-height: 350px;
  }

  .work-thumbnail-image {
    justify-content: center;
    align-items: center;
  }

  .work-thumbnail-image.mini {
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .work-title.mini {
    font-size: 22px;
  }

  .work-thumbnail-overlay {
    height: 100%;
  }

  .work-thumbnail-logo, .work-thumbnail-logo.mini {
    margin-bottom: 20px;
  }

  .work-star-2 {
    bottom: 0%;
  }

  .utility-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-section {
    padding: 70px 30px;
    
  }

  .project-section.hero {
    color: #fff;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .navbar {
    padding-left: 30px;
    padding-right: 30px;
  }

  .client-logo {
    filter: brightness(200%) saturate(0%);
    max-height: 40px;
  }

  .project-hero-image {
    width: 100%;
  }

  .project-hero-image-overlay {
    display: block;
  }

  .project-h1 {
    font-size: 50px;
  }

  .project-content-grid {
    grid-template-columns: 1fr;
  }

  .project-summary {
    color: #fffc;
    font-size: 16px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-text {
    text-align: center;
    margin: 1px 0;
  }

  .assets-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .assets-image-wrapper {
    padding: 20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 15px;
  }

  .contact-bar-link {
    margin-left: 10px;
  }

  .contact-details {
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 30px;
    inset: auto 0% 0%;
    height: auto;
  }

  .section-h1 {
    font-size: 11vw;
  }

  .work-link, .work-collection-item {
    min-height: 280px;
  }

  .ss-logo {
    width: 40px;
  }

  .work-title, .work-title.mini {
    font-size: 20px;
  }

  .tutorial-steps-title {
    margin-top: 50px;
  }

  .assets-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .password-input {
    min-width: 200px;
  }
}

#w-node-bcc9ad82-5735-daeb-6222-a042f14814ee-542913fd {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_036034bb-8fb3-ac36-286d-cbf3befe550a-542913fd {
  align-self: start;
}

@media screen and (min-width: 1280px) {
  #hide {
     display: none;
  }
}

@media screen and (max-width: 1290px) {
  #hide {
     display: show;
  }
}

@media screen and (max-width: 1420px) {
  .service-image-layer-2, .service-image-layer-1 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
    .container.contact {
        margin-bottom: 250px;
    }
}

@font-face {
  font-family: 'Texgyre Heros CN';
  src: url('../fonts/texgyreheroscn-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros';
  src: url('../fonts/texgyreheros-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros';
  src: url('../fonts/texgyreheros-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros CN';
  src: url('../fonts/texgyreheroscn-bolditalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros CN';
  src: url('../fonts/texgyreheroscn-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros';
  src: url('../fonts/texgyreheros-bolditalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros CN';
  src: url('../fonts/texgyreheroscn-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Texgyre Heros';
  src: url('../fonts/texgyreheros-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



/* MY CHANGES */
/* ---------- */

/* Container setup */


/* Overlay style (initially invisible) */


h2#CV.section-h2 {
  margin-top: 40px;
}

#second.social-link.w-inline-block {
  margin-right: 0 !important;
}

.contact-details.project {
  inset: auto auto 50px 50%;
  transform: translateX(-50%);
}


 .grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* more flexible grid */
  gap: 20px; /* optional spacing */
}

#width {
  min-width: 1200px;
}

#a101 {
  opacity: .6;
  color: var(--black-2);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.3;
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
}

@media (min-width: 992px) {
  #football {
    width: 1100px;
    max-width: none;
    bottom: -8%;
    right: -35%;
    position: absolute;
  }
}


.project-h1 {
    margin-bottom: 20px;
    font-family: "owners", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    letter-spacing: 0.05em;
    font-size: 65px;
    z-index: 100;
}  

.bullets {
   list-style-type: circle;
}

.project-summary ul {
  list-style-type: disc;      /* Enables bullet points */
  padding-left: 20px;         /* Adds space before bullets */
  margin: 1em 0;  
  z-index: 1000;   
  display: block;         /* Optional spacing */
}

.buttonsp {
    margin-top: 50px;
    gap: 100px;
    justify-content: center;
    display: flex;
    width: 550px;
    text-align: center;
    position: relative;
}

.buttonss {
  background-color: var(--blue);
  text-transform: uppercase;
  border-radius: 30px;
  align-self: center;
  padding: 12px 25px;
  transition: box-shadow .2s;
  box-shadow: 0 1px 3px #00000030;
  font-family: "owners", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  
}

.middle {
  display: flex;
  justify-content: center;
}

#max {
  width: 100%;
}

.next {
  display: flex;
  align-items: center;
  gap: 40px; /* space between heading and text */
  margin-left: 20px;
}

.marg {
  margin-top: 15px;
}

.marg2 {
  margin-top: 10px;
  margin-bottom: 15px;
}

@media screen and (max-width: 1280px) {
  .project-head {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
    .project-h1 {
        min-width: 0 !important;
        max-width: 100%;
        font-size: 30px !important;
        margin: 0 auto;
        text-align: center;
        display: block;
    }
}

.project-hero-image2 {
    margin-top: 100px;
    z-index: 0;
    width: 800px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .project-hero-image2 {
        width: 400px;
        margin-top: -60px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1340px) {
    #proj2 {
        margin-top: 150px !important;
    }
}

  @media screen and (max-width: 768px) {.project-summary {
    opacity: .6;
    color: var(--black-2);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    font-style: normal;
    color: #000;
    letter-spacing: 0.03em;
}
  }

   @media screen and (max-width: 767px) {
    .project-subtitle {
        color: #000;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.4;
    font-family: "owners", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
}
  }

  @media screen and (max-width: 991px) {
  .buttonsp {
    display: flex;
    justify-content: center;     /* center buttons inside */
    flex-wrap: wrap;             /* wrap if too wide */
    gap: 20px;                   /* spacing between buttons */
    margin: 0 auto;
    width: 100%;
    margin-top: 50px;
  }

  .buttonsp a {
    width: 200px;
    margin: 0 20px; /* spacing between buttons */
    display: block;              /* optional consistent button width */
  }
}


@media screen and (max-width: 991px) {
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.work-link2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000002e;
  margin-bottom: 80px;
  max-width: 400px;
}

.work-pair {
  display: flex;
  justify-content: flex-start; /* align to left */
  align-items: flex-start;
  gap: 100px;                   /* spacing between columns */
  flex-wrap: wrap;
  margin-left: 150px;             /* stack on small screens */
}

.work-column {
  flex: 1 1 300px;    /* flex-grow, shrink, basis */
  max-width: 400px;   /* optional limit */
}

.skills-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
  font-family: "owners", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 21px;
}

.skills-row span {
  flex: 1;
  text-align: center;
}

.next2 {
  display: flex;
  flex-direction: column;
  gap: 20px; /* controls space between each row */
}

.section-h7 {
    font-family: "owners", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 21px;
    text-align: center;
}

.marg3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .work-pair {
    flex-direction: column;   /* Stack columns vertically */
    gap: 30px;                /* Smaller gap between stacked items */
    margin-left: 0;           /* Remove left margin on small screens */
    align-items: center;      /* Center items horizontally if you want */
  }
  
  .work-column {
    max-width: 100%;          /* Allow columns to fill container width */
    flex-basis: 100%;         /* Take full width */
  }
  
  .work-link2 {
    max-width: 100%;          /* Make sure boxes fill width */
    margin-bottom: 40px;      /* Space between boxes inside column */
  }
  .skills2 {
    margin-top: -30px;
  }
  .section-h6 {
    text-align: center;
  }

  #hide5 {
    margin-top: 0;
  }
}

@media screen and (min-width: 1400px){
  .work-pair {
    margin-left: 200px;
  }
}

@media screen and (min-width: 1600px){
  .work-pair {
    margin-left: 250px;
  }
}

@media screen and (min-width: 1800px){
  .work-pair {
    margin-left: 400px;
  }
}

@media screen and (min-width: 2000px){
  .work-pair {
    margin-left: 470px;
  }
}

@media screen and (min-width: 2200px){
  .work-pair {
    margin-left: 600px;
  }
}

@media screen and (min-width: 2400px){
  .work-pair {
    margin-left: 700px;
  }
}

@media screen and (min-width: 2600px){
  .work-pair {
    margin-left: 800px;
  }
}

@media screen and (min-width: 2800px){
  .work-pair {
    margin-left: 900px;
  }
}

.wide {
  min-width: 1000px;
}

@media screen and (max-width: 400px) {
    .project-hero-image2 {
        width: 300px;
        margin-top: -60px;
    }
}

@media screen and (max-width: 500px) {
    .button {
        display: block;
        margin-left: 20%;
        text-align: center;
        width: 200px;
        letter-spacing: 0.1em;
        font-size: 12px;
    }
}

@media screen and (max-width: 330px) {
    .button {
        display: block;
        margin-left: 20%;
        text-align: center;
        width: 200px;
        letter-spacing: 0.1em;
        font-size: 8px;
    }
}

.project3img {
  width: 100vw !important;
  margin-top: 290px;
}

.project3container {
  margin-top: 32%;
  margin-left: 8%;
  margin-right: 8%;
  max-width: none;
}

@media screen and (max-width: 540px) {
  .secondb {
   display: none !important;
  }
}

.box {
  margin-top: -50px;
  max-width: 500px;
  flex: 1 1 300px; /* grow/shrink/basis */
  z-index: 10443;
  position: relative;
}


/* SECTION 2 */

/* Base section styling */

/* Specific styling for .section.two */
.section.two {
  z-index: 10443;
  display: flex;
  flex-direction: column; /* stack header and boxes vertically */
  justify-content: flex-start; /* align children to top */
  align-items: center; /* center horizontally */
  gap: 20px; /* spacing */
  padding: 50px;
  position: relative;
  padding-bottom: 100px;
}

/* Header container in section.two */
.section.two > #w-node-c398eee0-916a-59fa-9a64-1ef3fe8a30b9-542913fa {
  width: 100%;
  max-width: 2000px;
  text-align: left; /* left align text */
  
}


/* New container for the three boxes */
.section.two > .box-container2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  height: 520px;
  gap: 40px;
  flex-wrap: wrap;
  box-sizing: border-box;
  z-index: 10443;
  margin-top: auto;
  margin-bottom: auto;
  align-self: flex-start;
}


/* Each box inside the box container */
.section.two > .box-container2 > .box {
  flex: 1 1 30%; /* grow, shrink, basis 30% */
  max-width: 33.33%;
  box-sizing: border-box;
  margin-top: 0; /* reset negative margins */
  min-width: 280px; /* prevent boxes from getting too small */
  position: relative;
  z-index: 10443;
  background-color: #f6f5f1;
}


/* General box styling */


/* Work collection styles */
.work-collection-list,
.work-collection-item {
  height: 100%;
  margin-bottom: 100px;
  z-index: auto;
  position: relative;
}

/* Link inside each box */
.work-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000002e;
  margin-bottom: 100px;
  max-width: 100%;
  z-index: 10443;
}

/* Overlay style (initially hidden) */
.work-thumbnail-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
   background-color: rgba(65, 105, 178, 0.8);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.work-thumbnail-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
  z-index: auto;
}

.work-thumbnail-overlay {
  z-index: 0;
  height: 15%;
  opacity: .85;
  position: absolute;
  inset: auto 0% 0%;
}

.work-thumbnail-image.mini {
  text-align: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

/* Animate overlay up on hover */
.work-thumbnail-image:hover::before {
  transform: translateY(0%);
}

/* Keep content on top */
.work-box,
.work-title,
.work-summary {
  position: relative;
  z-index: 2;
}

/* Background images */
#img1 {
  background-image: url('../images/PNGs/World2.png');
  z-index: 10444;
}

#img2 {
  background-image: url('../images/PNGs/Company2.png');
  z-index: 10444;
}

#img3 {
  background-image: url('../images/PNGs/Python.png');
  z-index: 10444;
}

/* You can add #img3 similarly if needed */
#img3 {
  background-image: url('../images/PNGs/Python.png');
  z-index: 10444;
}

.box-heading {
  position: absolute;
  top: 8px;   /* aligns with your previous margin-top */
  left: 10px; /* aligns with your previous margin-left */
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.02em;
  margin: 0; /* remove margin since positioning handles spacing */
  z-index: 3; /* make sure it’s above overlays */
  padding: 2px 6px; /* optional: small padding around the text */
}

.after-boxes-image {
  position: absolute;
  bottom: 17%;
  right: 0;
  width: 290px; /* increased from 220px */
  height: auto;
  z-index: 10500;
  transform: translate(58%, 20%); /* more to the right (X), same Y */
  pointer-events: none;
}


/* FIRST PAGE MEDIA */
/*------------------*/

@media screen and (max-width: 1900px) {
  .home-hero-image {
    width: 1200px;
    right: -390px;
    bottom: -50px;
  }
}

@media screen and (max-width: 1660px) {
  .home-hero-image {
    width: 900px;
    right: -390px;
    bottom: -50px;
  }
}

@media screen and (max-width: 1280px) {
  .home-hero-image {
    width: 800px;
    right: -340px;
    bottom: -140px;
  }
}

@media screen and (max-width: 1180px) {
  .home-hero-image {
    width: 700px;
    right: -290px;
    bottom: -160px;
  }
}

@media screen and (max-width: 991px) {
  .home-hero-image {
    bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .section.home {
    width: auto;
    min-width: auto;
    padding: 0;
    padding-bottom: 0;
  }

  .section-h1 {
    font-size: 60px;
    text-align: center;
    min-width: 500px;
    margin-top: 100px;
  }

  .heads {
    margin-top: 0 !important;
  }

  .section-h2 {
    font-size: 26px;
  }

  .home-hero-image {
    width: 100%;        /* Make image scale to wrapper width */
    height: auto;
    right: auto;
  }

  .hero-text-wrapper {
    top: 30%; /* or 35% — adjust as you like */
    min-width: auto; /* prevent it from overflowing on small screens */
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    width: 100%;
  }

  .hero-logo {
    left: 0;
    top: 0;
  }
  .first-button {
    margin-left: 0;
    margin-top: 10px;
    position: relative;
  }

  .image-offset-wrapper {
    top: 17%;
    right: auto; /* cancel out the negative right offset */
    max-width: 1500px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero-logo {
    width: 80px;
  }

   .first-button {
    top: 10px;
    margin: 0 auto;       /* horizontally center */
    text-align: center;   /* center text inside button if needed */
    width: 200px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .home-hero-image {
    width: 90%;
    margin: 80px auto 0 auto; /* top, left/right (auto centers), bottom */
    display: block;
  }
}

@media screen and (max-width: 600px) {
    .section-h1 {
     min-width: 0;
     max-width: 80%;
     font-size: 36px;
     margin: 0 auto;
     text-align: center;
     display: block;
   }
}

@media screen and (max-width: 479px) {
  .hero-logo {
    width: 70px;
  }
  .section.home {
    height: 80vh;
  }
  .section-h2 {
    font-size: 16px !important;
  }
  #mid {
    font-size: 16px;
    padding: 10px 10px;
  }
  #a102 {font-size: 12px !important;
  }
  .first1 {
  margin-top: 30px !important;
}
.margin {
  line-height: 1.3;
}
}

@media screen and (max-height: 880px) {
  .first-button {
    margin-bottom: 50px;
  }
}


/* SECOND PAGE MEDIA */
/*------------------*/

/* ---------------------------*/

.qualifications {
  max-width: none;
}

@media screen and (max-width: 1280px) {
  .mobile-hide {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .section.two {
    width: auto;
    min-width: auto;
    height: auto;
    top: -50px;
    padding-bottom: 0;
  }
  .section.two > .box-container2 > .box {
    max-width: 100%;
    flex-basis: auto;
    margin-bottom: 20px;
  }
  .section.two > .box-container2 {
    height: 862px;
  }
  .after-boxes-image {
    width: 240px;
    bottom: 18%;
  } 
  .section.two > #w-node-c398eee0-916a-59fa-9a64-1ef3fe8a30b9-542913fa {
    text-align: center;
  }
  #width {
    min-width: 0px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #a101 {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .coding {
    max-width: 100% !important;
  }
  .work-box, .work-thumbnail-image::before {
    display: none;
  }
  .work-summary {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .final {
    max-width: 50% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .section.two {
    top: -120px;
    padding: 50px 0 0 0;
  }
  .section.two > .box-container2 {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .section.two > .box-container2 > .box {
    width: 75%;
    aspect-ratio: 1 / 1;
    flex-basis: auto;
    margin-bottom: 0;
  }
  .work-collection-list, .work-collection-item {
    margin-bottom: 0;
  }
  #a101{
    text-align: center;
    font-size: 18px !important;
  }
  .after-boxes-image {
    width: 210px;
    bottom: 11%;
  }
}

@media screen and (max-width: 668px) {
  .after-boxes-image {
    bottom: 13%;
  }
}

@media screen and (max-width: 568px) {

  .after-boxes-image {
    bottom: 14%;
  }
}

@media screen and (max-width: 479px) {
  .section.two > .box-container2 > .box {
    width: 85%;
  }
  .after-boxes-image {
    display: none;
   }
   #width {
    margin-bottom: 20px;
  }
  #a101 {
    line-height: 1.4;
  }
  .section.contact {
    height: 780px !important;
  }
}

@media screen and (max-height: 800px) and (max-width: 500px){
  #width {
    margin-top: 50px;
  }
}

@media screen and (max-height: 860px) {
  .after-boxes-image {
    display: none;
  }
}


/* THIRD PAGE MEDIA */
/*------------------*/

/* ---------------------------*/

.page3 {
  margin-left: 5%;
}

@media screen and (min-width: 1660px) {
  .service-image-layer-1 {
    position: absolute;
    width: 590px !important;
    margin-left: 390px !important;
    }
  .service-image-layer-2 {
    width: 888px !important;
  }
}

@media screen and (min-width: 1280px) {
  .service-image-layer-1 {
    position: absolute;
    width: 430px;
    margin-left: 280px;
    }
  .service-image-layer-2 {
    width: 647px;
  }
}
@media screen and (min-width: 1024px) and (max-width:1280px) {
  .section.services {
  padding-left: 300px;
  }
  .service-image-layer-3 {
    display: none;
  }
  .home-hero-image {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .section.services {
    background-position: 0 0;
    background-size: 101%;
    width: auto;
    min-width: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  .service-image-layer-3 {
    width: 100%;
    display: flex;
    justify-content: center;    /* centers horizontally */
    align-items: center;        /* centers vertically */
    margin-top: -200px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 600px) {
    .head3 {
       max-width: 100%;
       margin-bottom: 20px;
    }
}
  

/* FOURTH PAGE MEDIA */
/*------------------*/

/* ---------------------------*/

@media screen and (max-width: 1400px) {
  #football {
    width: 900px;
  }
}


@media screen and (max-width: 1024px) {
  .section.contact {
    width: auto;
    min-width: auto;
    height: 1000px;
    padding-bottom: 0;
    position: relative;
    padding-top: 0;
  }
  .contact-image-wrapper {
    position: absolute;
    bottom: -8%;
    right: -10%;
    width: 700px;
  }
  #football {
    width: 100%;
  }
  .page3 {
    margin-left: 0;
  }
  .work-pair {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media screen and (max-width: 668px) {
  .a103 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 768px) {
  .second-button {
    top: 10px;
    text-align: center;
    width: 200px;
    margin-left: 0;
  }
  .page4 {
    margin-left: auto;
    margin-right: auto;
  }
  .section.services {
    top: -50px;
}
}
  
@media screen and (max-width: 668px) {
  .contact-image-wrapper {
    position: absolute;
    bottom: -6%;
    right: -10%;
    width: 600px;
  }
  .a103 {
    margin-top: 50px !important;
  }
  .service-image-layer-3 {
    margin-top: -130px;
  }
}

@media screen and (max-width: 568px) {
  .contact-image-wrapper {
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 500px;
  }
}

@media screen and (max-width: 479px) {
  .contact-image-wrapper {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 500px;
  }
}

@media screen and (max-width: 422px) {
  .contact-image-wrapper {
    width: 400px;
    bottom: 1%;
  }
  .section.contact {
    height: 680px !important;
  }
}

@media screen and (max-width: 330px) {
  .section.contact {
    height: 600px !important;
  }
}
@media screen and (max-width: 370px) {
  .contact-image-wrapper {
    width: 360px;
    bottom: 3%;
  }
}

@media screen and (max-width: 330px) {
  .contact-image-wrapper {
    width: 300px;
    bottom: 3%;
  }
}

@media screen and (min-width: 1440px) {

  .contact-image-layer-3 {
    width: 120%;
    max-width: 120%;
  }

  .contact-background-circle {
    width: 100vw;
    height: 100vw;
    bottom: -65%;
  }
}



/* PROJECT PAGE MEDIA */
/*------------------*/

/* ---------------------------*/
.line {
    flex: 1;
    max-width: 1200px;
    margin-left: 8%;
    margin-right: auto;
    margin-top: 1%;
}

@media screen and (max-width: 1280px) {
  .wide {
   min-width: auto;
    width: 100%;
  }
}

@media screen and (max-width: 1024px){
  .project-content-grid {
    grid-template-columns: 1fr;
  }
  .projectpage {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .project2 {
    font-size: 50px !important;
  }
}

@media screen and (max-width: 850px) {
  .wide {
   font-size: 58px;
  }
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .a103 {
   margin-top: 100px !important;
  }
}
@media screen and (max-width: 768px) {
  .line {
   margin-left: 0;
  }
  .projectpage {
    margin-left: auto !important;
    margin-top: 2% !important;
  }
  .project3img {
    margin-top: 250px;
}
.project3container {
  margin-right: 0;
  margin-left: 0;
  margin-top: 23%;
}

.project2container {
  margin-right: 0;
  margin-left: 0;
  margin-top: 20% !important;
}
}

@media screen and (max-width: 370px) {
  .wide {
   font-size: 25px !important;
  }
}

@media screen and (max-width: 420px) {
  .hero {
   padding-left: 0;
   padding-right: 0;
  }
  .head3 {
    font-size: 25px;
  }
  #width {
    font-size: 25px;
  }
}

@media screen and (max-width: 600px) {
  .navbar {
   padding: 10px;
  }
  .project-section {
   padding-left: 30px;
   padding-right: 30px;
  }
}

@media screen and (max-width: 480px) {
  .project-content-grid {
   text-align: center;
  }
}

.project2container {
    margin-top: 32%;
    margin-left: 8%;
    margin-right: 8%;
    max-width: none;
}

@media screen and (max-width: 1024px) {
  .project2container {
    margin-top: 25%;
  }
}

.first1 {
  margin-top: 50px;
  margin-bottom: 3px;
}

#a102 {
    opacity: .8;
    color: var(--black-2);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    font-family: "owners", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    letter-spacing: 0.05em;
    max-width: none;
}

#a104 {
    opacity: .8;
    color: var(--black-2);
    margin-top: 0;
    font-size: 18px;
    line-height: 1.6;
    font-family: "owners", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    letter-spacing: 0.05em;
    max-width: none;
}

.secondp {
  margin-bottom: 3px !important;
}

.list-rest {
  margin-bottom: 3px;
  margin-top: 30px;
}

.fixed-text {
  position: fixed;          /* fixed relative to viewport */
  top: 20px;                /* distance from top of viewport */
  left: 50%;                /* center horizontally */
  transform: translateX(-50%); /* center exactly */
  background: rgba(255, 255, 255, 0.8); /* optional background for readability */
  padding: 8px 16px;
  font-weight: 600;
  font-size: 1.2rem;
  z-index: 1000;            /* on top of other content */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.above-image-text {
  position: absolute;
  bottom: 50%;
  left: 0;
  margin: 0;
  margin-bottom: 50px;
  z-index: 10;
  min-width: 888px;
  text-align: center;
}

.a103 {
    opacity: .8;
    color: var(--black-2);
    margin-top: 180px;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.3;
    font-family: "owners", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    letter-spacing: 0.05em;
    max-width: none;
}

.margin {
  margin-top: 10%;
  margin-bottom: 5%;
}

.lastt {
  margin-top: 5%;
}

.nothing {
  margin-bottom: 0;
}

.Blue {
  color: #4169b2;
}

@media screen and (max-height: 1050px) {
  .above-image-text {
   margin-bottom: 70px;
  }
}

@media screen and (max-height: 950px) {
  .above-image-text {
   margin-bottom: 100px;
  }
  #a102 {
    font-size: 14px;
  }
  .list-rest {
    font-size: 25px;
  }
  .first1 {
    font-size: 25px;
  }
}

@media screen and (max-height: 880px) {
  .above-image-text {
   margin-bottom: 140px;
  }
}

@media screen and (max-width: 1660px) {
  .above-image-text {
   margin-bottom: -100px;
   width: 647px;
   max-width: 647px;
   min-width: 647px;
  }
}

@media screen and (min-width: 991px) {
.hidden {
  display: none;
}
}

@media screen and (max-width: 991px) {
  .projectpage {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 611px) {
  .project3img {
    margin-top: 300px;
  }
}

@media screen and (max-width: 459px) {
  .project3container {
    margin-top: 16%;
  }
}

@media screen and (max-width: 500px) {
  .project3img {
    margin-top: 320px;
  }
}

@media screen and (max-width: 395px) {
  .project3img {
    margin-top: 350px;
  }
}

@media screen and (max-width: 347px) {
  .project3img {
    margin-top: 380px;
  }
}

@media screen and (max-width: 316px) {
  .project3img {
    margin-top: 400px;
  }
}

@media screen and (max-width: 295px) {
  .project3img {
    margin-top: 430px;
  }
}

@media screen and (max-width: 768px) {
  .project1img {
    margin-top: 260px !important;
  }
}

@media screen and (max-width: 480px) {
  .project1img {
    margin-top: 250px !important;
  }
}

.project1img {
    width: 100vw !important;
    margin-top: 290px;
}

.project2img {
    width: 100vw !important;
    margin-top: 290px;
}

@media screen and (max-width: 991px) {
  .project2img {
    margin-top: 260px !important;
  }
}

@media screen and (max-width: 768px) {
  .project2img {
    margin-top: 230px !important;
  }
}

@media screen and (max-width: 500px) {
  .project2img {
    margin-top: 260px !important;
  }
}

@media screen and (max-width: 409px) {
  .project2img {
    margin-top: 280px !important;
  }
}

@media screen and (max-width: 370px) {
  .project2img {
    margin-top: 250px !important;
  }
}

@media screen and (max-width: 350px) {
  .project2img {
    margin-top: 280px !important;
  }
}

@media screen and (max-width: 479px) {
    .title {
        line-height: 1.3;
    }
    #a104 {
      font-size: 12px;
      margin-bottom: 6px !important;
    }
}

@media screen and (max-width: 991px) {
    .hidden {
       text-align: center;
    }
    .mobile-hidden {
      display: none;
    }
    .line-space2 {
      margin-bottom: 10px !important;
    }
    .project-sticky-column {
      position: static;
    }
  }

  @media screen and (max-width: 479px) {
    .hidden {
       font-size: 14px;
       padding-left: 10%;
       padding-right: 10%;
    }
    #a101{
    font-size: 14px !important;
  }
}

.line-space {
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    .section.contact {
      height: 960px;
    }
  }

  @media screen and (max-width: 600px) {
    .section.contact {
      height: 860px;
    }
    .section.services {
      padding-top: 80px;
    }
     .section.two {
      padding-top: 140px !important;
    }
    .section.contact {
      padding-top: 50px;
    }
  }

  @media screen and (max-width: 479px) {
    .button {
        width: 160px;
        font-size: 8px;
        padding: 6px 10px;
    }
    #max {
      width: 160px;
    }
    .section.services {
      padding-top: 80px;
    }
    .section.two {
      padding-top: 100px;
    }
    .section.contact {
      padding-top: 50px;
    }
  }

@media screen and (max-height: 1000px) {
#a104 {
  font-size: 14px;
}
}

  
@media screen and (max-height: 860px) {
.hero-text-wrapper, .image-offset-wrapper {
  margin-top: 60px; 
}
}

@media screen and (max-width: 418px) {
  .hideee {
   display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hideee {
   display: none;
  }
}

@media screen and (max-width: 479px) {
    .project3img {
        margin-top: 280px;
    }
}

@media screen and (max-width: 371px) {
    .project3img {
        margin-top: 300px;
    }
}

@media screen and (max-width: 321px) {
    .project3img {
        margin-top: 330px;
    }
}

@media screen and (min-width: 649px) {
    .one {
        display: none;
    }
}

@media screen and (min-width: 569px) {
    .two {
        display: none;
    }
}

@media screen and (min-width: 567px) {
    .three {
        display: none;
    }
}

@media screen and (min-width: 552px) {
    .four {
        display: none;
    }
}

@media screen and (min-width: 495px) {
    .five {
        display: none;
    }
}

@media screen and (max-width: 649px) {
    .nothingg1 {
        display: none;
    }
}

@media screen and (max-width: 569px) {
    .nothingg2 {
        display: none;
    }
}

@media screen and (max-width: 567px) {
    .nothingg3 {
        display: none;
    }
}

@media screen and (max-width: 552px) {
    .nothingg4 {
        display: none;
    }
}

@media screen and (max-width: 495px) {
    .nothingg5 {
        display: none;
    }
}

@media screen and (max-width: 1660px) and (max-height: 1000px) {
    .above-image-text {
        margin-bottom: -50px;
    }
}

@media screen and (max-width: 1660px) and (max-height: 900px) {
    .above-image-text {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1660px) and (max-height: 800px) {
    .above-image-text {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1660px) and (max-height: 1000px) {
    #football {
        width: 800px
    }
    #a104 {
      margin-bottom: 2px;
    }
}

@media screen and (max-width: 500px) and (max-height: 870px) { 
  .section.two {
     top: -40px;
}
}

@media screen and (max-width: 1660px) and (max-height: 870px) {
    .section-h2 {
       font-size: 16px;
    }
    #a104 {
      font-size: 10px;
    }
    .first1 {
      margin-top: 10px;
    }
    .work-link {
      margin-bottom: 0;
    }
    .work-collection-list, .work-collection-item {
      margin-bottom: 0;
    }
    .section.two {
      padding-bottom: 25px;
    }
}

@media screen and (max-width: 1660px) and (max-height: 690px) and (min-width: 991px) {
  .service-illustration-wrapper {
    display: none;
  }
}
    
@media screen and (max-width: 1660px) and (max-height: 870px) and (min-width: 991px) {
 .title {
      font-size: 32px !important;
    }
    .margin {
      font-size: 32px !important;
    }
  }

  @media screen and (max-width: 991px) and (max-height: 900px) {
  .image-offset-wrapper {
    margin-top: 160px;
  }
}
    