img {
  width: 50%;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 10px;
  margin-bottom: 5px;
}

p {
  margin: 0 0 10px;
}

body {
    background-color: black;
    font-family: Inter, sans-serif;
    font-weight: 500;
    color: white;
    margin: 0;
}
.nav-container {
    display: flex;
    align-items: center;
}
.company {
    font-weight: 500;
    font-size: 1.2rem;
}
nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}
nav svg {
    height: 2rem;
    margin-right: 1rem;
}
nav h1 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
nav h1 span {
    margin-left: 0.5rem;
}
nav button {
    font-weight: 700;
    background-color: white;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 1.1rem;
    font-size: 1.1rem;
    cursor: pointer;
}

nav button:hover {
-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
-webkit-mask-size: 200%;
animation: shine 2s infinite;
}


.nav-item {
    margin-right: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    text-emphasis: none;
}


.nav-gradient {
  color: #3df57d;
  background-image: -webkit-linear-gradient(45deg, #3df57d 0%, #317bc4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  -webkit-background-size: 200% 200%;
  transition: background-position 0.5s ease-in-out;
  background-position: 50% 0;
}

.nav-gradient:hover {
  background-position: 100% 0;
}

@keyframes gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}


.nav-item:hover {
    color: #b0b0b0;
}

.nav-items {
    display: flex;
    align-items: center;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 14rem);
}

.center-text {
  margin-top: 10vh;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.center-text p {
    margin-top: 13rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    text-align: center;
    padding: 0 1.5rem;
    font-weight: 700;
}
.home-arrow {
display: block;
margin: 0 auto;
margin-bottom: 8rem;
cursor: pointer;
}


.container {
    display: flex;
    align-items: center;
    margin: 7rem 4rem;
    
}

.container-image {
  width: 50%;
  margin: 0 3rem;
}

.container .container-image img {
    width: 100%;
    height: auto;
}

.container .text {
    margin: 0 3rem;
    width: 60%;
}

.container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.container p {
    font-size: 1.2rem;
    line-height: 1.5;
}
.contact-text {
    margin-top: 12rem;
    margin-left: 7rem;
    font-size: 2rem;
    text-align: left;
    font-weight: 600;

}

.contact-text h2 {
    margin: 0;
    font-weight: inherit;
}
.email {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
    text-decoration: underline;
    font-size: 4rem;
}

.email a {
    font-weight: 600;
    color: rgb(255, 255, 255);
}


.email a:hover {
-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
-webkit-mask-size: 200%;
animation: shine 2s infinite;
}

@-webkit-keyframes shine {
from {
    -webkit-mask-position: 150%;
}

to {
    -webkit-mask-position: -50%;
}
}
footer {
margin-top: 10rem;
margin-left: 3rem;
margin-right: 3rem;
margin-bottom: 2rem;
}

.footer-line {
border: 4px solid rgb(255, 255, 255);
}

.footer-text {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
font-size: 1.2rem;
font-weight: 600;
}

.left-text {
text-align: left;
line-height: 1.5;
}

.left-text a {
text-decoration: underline;
color: rgb(255, 255, 255);
}

.left-text a:hover {
    color: #b0b0b0;
}

.right-icons {
display: flex;
justify-content: flex-end;
align-items: center;
}

.right-icons a {
margin-left: 1.5rem;
}

.right-icons img {
width: 2rem;
height: 2rem;
}
/* Media queries for smaller screens */
@media only screen and (max-width: 768px) {
nav {
    flex-direction: column;
    align-items: center;
}
.nav-container {
    margin-bottom: 1rem;
}
.company {
    margin-right: 0;
}
.contact-us {
    margin-top: 1rem;
}

.arrow {
    margin-top: 2rem;
}

.container {
    flex-direction: column;
    align-items: center;
}
.text {
    margin-top: 2rem;
    text-align: center;
    min-width: 80%;
}
img {
    margin-top: 2rem;
    width: 100%;
    min-width: 80%;
    max-width: 400px;
}

.contact-text {
    margin-top: 2rem;
    margin-left: 0;
    text-align: center;
}

.email {
    margin-top: 1rem;
    text-align: center;
    font-size: 2rem;
}

.hero {
        max-width: 100%;
        margin: 0;
    }

}

.nav-container a {
    text-decoration: none;
    color: white;
    text-emphasis: none;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 7rem;
}

.post {
  width: 27%;
  margin-bottom: 20px;
}

.post-image {
  width: 100%;
  height: auto;
}

.post-image img {
  height: 100%;
  max-width: 100%;
  width: auto;
  border-radius: 8.25px;
}

.post h3 {
  margin-top: 5px;
  font-size: 18px;
  margin-bottom: 0;
}

.post p {
  margin-top: 1px;
  font-size: 14px;
}

.headshots {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 7rem;
    align-items: center;
}
.headshot {
    width: 30%;
    height: auto;
  }
  
.headshot-image img {
    width: 100%;
    height: auto;
}
  .headshot-text {
    margin-top: 3px;
    text-align: left;
  }

  .headshot-text p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 1px;
  }

  .approach {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10rem 7rem;
  }
  .approach-text {
    flex: 2;
  }
  .approach-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .approach-text p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
  }
  .approach-image {
    flex: 1;
    text-align: right;
  }
  .approach-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
  }

  .body-text {
    padding: 0 2rem;
  }

  .page-title-center {
    margin-top: 8rem;
    text-align: center;
    font-size: 3rem;
    padding: 0 1.5rem;
    font-weight: 700;
  }

  .mb-3 {
    margin-bottom: 3rem;
  }

  .page-description-center {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.3rem;
    padding: 0 1.5rem;
    font-weight: 700;
    margin: 0 8.5rem;
    margin-bottom: 3rem;
  }

  .page-title-left {
    margin-top: 8rem;
    text-align: left;
    font-size: 3rem;
    padding: 0 1.5rem;
    font-weight: 700;
  }

  .blog-date p {
    margin-top: 8rem;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 500;
    padding-left: 1.6rem;
  }

  .blog-title {
    text-align: left;
    font-size: 3rem;
    padding: 0 1.5rem;
    font-weight: 700;
  }

  .blog-title p {
    margin-bottom: 0;
  }

  .blog-author {
    text-align: left;
    font-size: 1.6rem;
    padding: 0 1.5rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 3rem;
  }

  a {
    color: inherit;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5rem;
    margin: 0 7rem;
  }
  
  @media screen and (min-width: 600px) {
    .blog-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .blog-item {
    display: flex;
    flex-direction: column;
  }
  
  .post-thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .post-thumbnail img {
    height: 100%;
    max-width: 100%;
    width: auto;
    border-radius: 8.25px;
  }
  
  .blog-item h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .blog-item p {
    margin: 0;
    margin-top: 0.1rem;
    font-size: 0.8rem;
    color: #999;
    text-decoration-color: #999;
  }

  .project {
    display: flex;
    align-items: center;
    margin: 6rem 12rem;
}
.project img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-right: 4rem;
}
.project .accordion-container {
    flex: 1;
    margin-top: 0;
}

.project .accordion-container h1, .project .accordion-container .h1, .project .accordion-container h2, .project .accordion-container .h2, .project .accordion-container h3, .project .accordion-container .h3 {
  margin: 0;
}

.project-arrow {
  margin-left: 3rem;
}

.blog-text {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 1.6rem;
}

.blog-hero {
  max-width: 1000px;
  margin: 0 auto;
  min-height: calc(100vh - 14rem);
}

.blog-item a {
  text-decoration: none;
}

.blog-item a:hover {
  text-decoration: underline;
}

.blog-item a:hover p {
  text-decoration: underline;
  text-decoration-color: #999;
}

.post a {
  text-decoration: none;
}

.post a:hover {
  text-decoration: underline;
}

.post a:hover p {
  text-decoration: underline;
  text-decoration-color: #999;
}

.project a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.project a:hover h2{
  text-decoration: underline;
}

.gallery-title {
  margin-left: 7rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.right-icons img:hover {
  color: #b0b0b0; 
}

.mail-form-container {
  margin-left: 1.6rem;
}

.mail-form {
  margin: 0 8rem;
  border: 5px solid #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.mail-form h2 {
  margin: 0;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.body-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body-form {
  width: 70%;
  max-width: 600px;
}

.text-gradient {
  color: #3df57d;
  background-image: -webkit-linear-gradient(45deg, #3df57d 0%, #317bc4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  -webkit-background-size: 200% 200%;
  transition: background-position 0.5s ease-in-out;
  background-position: 50% 0;
}

.text-gradient:hover {
  background-position: 100% 0;
}