* {
  margin: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
::selection {
    background-color: rgba(186, 21, 28, 0.5);
 }

 .aboutSection p::selection {
    background-color: rgba(203, 203, 203, 0.3);
 }
html{
    overflow-x: clip;
    scroll-behavior: smooth;
    overscroll-behavior: none;
    font-family: 'Inter', sans-serif;
    background-color: #000000;
}

body{
      overflow-x: hidden;
      /* background-color: rgb(255, 255, 255); */
}

.navbar{
  width: 100vw;
  /* height: 90px; */
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.navBackground{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background-color: transparent;
  z-index: 1;
}

.navBackground.scrolled{
  background-color: white;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background-color: rgb(255, 255, 255);
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.collapsibleNav{
  z-index: 2;
}

.collapsibleNav a{
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  font-weight: 600;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: text-decoration ease-in-out 0.15s, scale ease-in-out 0.15s;
  display: flex;
}

.collapsibleNav a:hover{
  /* text-decoration: underline; */
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  /* scale: 1.05; */
  scale: 1.1;
}

.collapsibleNav ul{
  list-style-type: none;
  display: flex;
}



#logo{
  padding-left: 9.5px;
  max-height: fit-content;
  z-index: 2;
  display: flex;
}

#logo img{
    /* shape-rendering: geometricPrecision; */
}


.navbar a img{
  /* height: 70px; */
  height: 80px;
}

.navbar.scrolled a{
  color: black;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: text-decoration ease-in-out 0.15s, scale ease-in-out 0.15s;
}

.hamburger{
  display: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 60px;
  z-index: 2;
}

.bar{
  height: 2px;
  width: 29px;
  background-color: rgb(255, 255, 255);
  margin: 6px 0;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.bar.scrolled{
  background-color: black;
}

.hero{
  width: 100vw;
  height: 100svh;
    /* top: 0;
  bottom: 0;
  left: 0;
  right: 0; */
  /* height: 110lvh; */
  overflow: hidden;    
}

.heroImage {
  width: 100%;
  /* min-height: 100svh; */
  height: 100svh;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  /* position: fixed; */
  position: absolute;
  /* top: 0;
  bottom: 0;
  left: 0;
  right: 0; */
  z-index: -1;
  /* transition: 0.3s ease-in-out; */
  transition: 0.8s ease-in-out;
}

.heroImage.active {
  opacity: 1;
}

.hero .topOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  /* height: 10lvh; */
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.35) 0%, 
    rgba(0, 0, 0, 0.10) 10%,
    rgba(0, 0, 0, 0.05) 15%,
    rgba(0, 0, 0, 0) 30%
  );
  pointer-events: none; 
    /* position: fixed; */
      z-index: -1;
}

.hero .bottomOverlay {
  /* display: none; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    /* height: 110lvh; */
  height: 100svh;
  background: linear-gradient(
    to top, 
    rgba(0, 0, 0, 0.35) 0%, 
    rgba(0, 0, 0, 0.10) 10%,
    rgba(0, 0, 0, 0.05) 15%,
    rgba(0, 0, 0, 0) 30%
  );
  pointer-events: none; 
    /* position: fixed; */
      z-index: -1;
}
.jobTitle{
    position:absolute;
      top: 92svh;
      /* top: 112svh; */
      left: 5vw;
      color: white;
      font-size: large;
      font-weight: 500;
      opacity: 0;
      transition: 0.3s ease-in-out;
}

.jobTitle.active {
  opacity: 1;
}



.chevronDown{
    position:absolute;
      top: 90svh;
      /* top: 110svh; */
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s ease-in-out;
}
.chevronDown:hover {
  transform: translate3d(-50%, 15px, 0);
  transition: 0.2s ease-in-out;
  /* animation: bounce 7s ease-in-out; */
}
@keyframes bounce {
  2.5% { transform: translate3d(-50%, 25px, 0); }
  5% { transform: translate3d(-50%, 0px, 0); }
  7.5% { transform: translate3d(-50%, 25px, 0); }
  10% { transform: translate3d(-50%, 0px, 0); }
}

.chevronDown img{
    width: 120px;
    height: 120px;
}

.content{
  background-color: rgb(255, 255, 255);
  /* background-color: #f6f6f6; */
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10vh;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  overflow-x: clip;
}

.aboutSection{
    height: fit-content;
    width: 55vw;
    /* height: 45vh; */
    /* width: 55rem; */
    margin-top: 10vh;
    background-color: #ba151c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(-25px);
    opacity: 0;
    transition: ease-in-out 0.6s;
}

.aboutSection.visible{
  transform: translateX(0);
  opacity: 1;
}

.aboutSection p {
    color: white;
    padding: 4rem;
    /* padding: 4.5rem; */
    /* font-size: 1.15rem; */
    font-size: 1rem;
    line-height: 1.6;
}

#about{
    scroll-margin-top: 120px;
}

.summaryGrid{
    flex: 1;
    /* height: 45vh; */
    /* width: 55rem; */
    margin-top: 10vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    opacity: 0;
    transform: translateX(25px);
    transition: ease-in-out 0.6s;
}

.summaryGrid.visible{
  transform: translateX(0);
  opacity: 1;
}

.summaryItem{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  transition: ease-in-out 0.15s;
}

/* .summaryItem:hover{
  scale: 1.025;
} */


.summaryItem img{
    height: 100px;
}

.summaryItem h4{
    max-width: 280px;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.8;
}

.section{
    height: fit-content;
    width: 90vw;
    margin-top: 10vh;
    background-color: #171717;
    color: white;
    text-align: center;
    padding: 1.5em;
    padding-bottom: 6em;
    padding-top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(-25px);
    opacity: 0;
    /* transition: ease-in-out 0.6s; */
    transition: ease-in-out 0.6s;
    visibility: hidden;
}

.section.visible{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  /* animation: slideIn 0.6s ease-in-out; */
}

  /* animation: bounce 7s ease-in-out; */

@keyframes slideIn {
  0% { transform: translate3d(-25, 0px, 0); }
  100% { transform: translate3d(0, 0px, 0); }
}


.section.right.visible{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  background-color: #171717;
}

.section h1{
  margin-top: 1em;
  margin-bottom: 0.8em;
  /* margin-bottom: 17.5px; */
}
.section h2{
  margin-top: 35px;
  margin-bottom: 28px;
  font-size:35px;
  /* margin-bottom: 17.5px; */
}
.section h3{
  /* margin-top: 35px; */
  margin-bottom: 7.2px;
  font-size:24px;
  /* margin-bottom: 17.5px; */
}





h1{
    font-size: 35px;
    margin-bottom: 17.5px;
}
#director{
  scroll-margin-top: 150px;
}

.column{
  text-align: left;
  padding-left: 3em;
  padding-right: 3em;
  width: 28%;
  /* border: solid 1px white; */
  transition: ease-in-out 0.15s;
}
table{
 color: white;
}

.sectionContent.services{
  justify-content: space-around;
}

/* .column:hover{
  scale: 1.025;
} */

.column.director{
  width: 50%;
  padding-bottom: 0px;
}

.column.director:hover{
  scale: 1;
}


.column table {
  border-collapse: separate;
  border-spacing: 0px 15px;
  width: 100%;
  /* padding-bottom: 30px; */
  /* border: solid 1px white; */
}

.column table tbody{
  display: table-row-group;
  width: 100%;
}

.rightColumn{
  text-align: right;
}

.spacer{
  height: 30px;
}
.column h2{
  margin-bottom: 0.3em;
}


.column ul{
  /* line-height: 2em; */
    line-height: 2.3em;
}

.section.right{
    margin-left: auto;
    transform: translateX(25px);
    visibility: hidden;
}

.sectionContent{
  display: flex;  
  /* flex-wrap: wrap; */
}

/* .sectionContent.service{
  justify-content:space-around;
} */

.sectionWrapper{
    overflow-x: hidden;
    max-height: fit-content;
    width: 100vw;
    position: relative;
    display: flex;
}

.break{
    flex-basis: 100%;
    height: 0;
}

#services{
    scroll-margin-top: 150px;
}

.projects{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 7vh;
}

#projects{
    scroll-margin-top: 150px;
    opacity: 0;
    /* transform: translateX(25px); */
    transition: ease-in-out 0.6s;
}

#projects.visible{
    opacity: 1;
    /* transform: translateX(0px); */
}


.projectCategory{
  width: fit-content;
  margin-left: auto;
  margin-right: 50px;
  border: none;
  font-size: medium;
  cursor: pointer;
}

.projects h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: 35px;
  margin-bottom: 0;
}

/* .projects h1 {
  margin-left: 50px;
  margin-right: auto;
  font-size: 100px;
} */

/* .projectGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-auto-rows: auto;
  row-gap: 17px;
  column-gap: 25px;
  gap: 25px;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 30px;
} */

.projectGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* grid-template-rows: 1fr 1fr 1fr 1fr; */
  grid-auto-rows: auto;
  /* row-gap: 17px; */
  /* column-gap: 25px; */
  gap: 25px;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 30px;
  height: fit-content;
}

.projectGrid p{
  border: #171717 1px solid;
}

.featured
{
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
  width: 100%;
  /* aspect-ratio: unset; */
  /* max-height: 95.920%; */
}


.featured a h3{
  font-size: x-large;
  top:85%
}



.projectImage{
  aspect-ratio: 3 / 2;
  overflow: hidden;
  /* overflow: clip; */
  position: relative;
  transition: ease-in-out 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

    /*Added*/
    height: 100%;
    width: 100%;
    display: none;
}

.projectImage:hover{
  /* filter:brightness(0.6); */
  /* grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset; */
  scale: 1.02;
  cursor: pointer;
}

.projectImage h3{
  color: white;
  position:absolute;
  margin-top: auto;
  top: 80%;
  transform: translate(-150%, -50%);
  /* background-color: #171717; */
  background-color: #ba151c;
  padding: 15px;
  font-weight: 200;
  transition: ease-in-out 0.2s;
  font-size: medium;
    /* font-size: 14px; */
  max-width: 80%;
}

.projectImage h4{
  color: white;
  position:absolute;
  top: 85%;
  transform: translate(-150%, -50%);
  background-color: #ba151c;
  padding: 15px;
  font-weight: 200;
  transition: ease-in-out 0.2s;
}

.projectImage:hover h3{
    transform: translate(0%, -50%);
}

.projectImage:focus h3{
    transform: translate(0%, -50%);
}

.projectImage:hover h4{
    transform: translate(0%, -50%);
}

.projectImage img{
  width: 100%;
  min-height: 100%;
  /* aspect-ratio: 3 / 2; */
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges; */
  
}

.paginationControls{
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.paginationControls button{
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: 3rem;
  transition: ease-in-out 0.1s;
}

.paginationControls button:hover{
  scale:1.3;
}


.paginationControls p{
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.pagination{
  display: flex;
  align-items: center;
}
.pagination img{
  width: 35px;
  height: auto;
}


footer {
  background-color: #171717;
  /* background-color: #2c0304; */
  /* background-image:url("Assets/Averi\ Crane\ transparent.png");
  background-size: 50%;
  background-position: left; */
  /* height: 60vh; */
  min-height: fit-content;
  /* background-repeat: no-repeat; */
  /* overflow: hidden; */
  position: relative;
  display: flex;

}

.footerBackground{
  position: absolute;
  /* transform: translateX(-2%); */
  /* min-width: 50%; */
  min-height: 100%;
  max-height: 100%;
  height: auto;
  opacity: 0.03;
  z-index: 1;
  filter: blur(1px);
}

.footerName{
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 600;
}

.footerColumn{
  display: flex;
  flex-direction: column; 
  /* margin-top: 75px;
  margin-bottom: 75px; */
      margin-top: 4.5vw;  
  margin-bottom: 4.5vw; 
  /* margin-left: 80px;  
  margin-right: 80px;  */
    margin-left: 4.5vw;  
  margin-right: 4.5vw; 
  color: white;
  z-index: 1000;
  width: 50%;
}

.contactForm{
  display: flex;
  flex-direction: column;
}

.contactForm input{
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
}

.contactForm input:active{
  outline-color: #8f8e8e
}
.contactForm input:focus{
  outline-color: #8f8e8e
}
.contactForm button{
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  width: fit-content;
  height: fit-content;
  border-radius: 0;
  border: none;
  background-color: #ba151c;
  color: white;
  transition: ease-in-out 0.2s;
  /* margin-left: auto; */
}

.contactForm button:hover{
  cursor: pointer;
  scale: 1.05;
}

.contactForm textarea{
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
}

.contactForm textarea:active{
  outline-color: #8f8e8e
}
.contactForm textarea:focus{
  outline-color: #8f8e8e
}
#message{
  height: 19vh;
}

.socialIcon{
  width: 35px;
}

.inlineFooterIcon{
  width: 12px;
}
.infoLine{
  margin-bottom: 5px;
  text-decoration: none;
  color: white;
}

.errorMessage{
  /* padding-top: 10px; */
  /* margin-left: auto; */
  color: #ed6b25;
  font-size: 0.9rem;
  /* margin-right: 10px; */
  /* display: none; */
}


/* .footerOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.60) 0%, 
    rgba(0, 0, 0, 0) 60%
  );
  pointer-events: none; 
      z-index: 1000;
} */



@media (max-width: 1100px) {
  .hamburger{
    display: block;
  }
  .collapsibleNav{
    margin: 0;
    padding: 0;
    position: fixed;
    background-color: white;
    top: 90px;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
  }
  .collapsibleNav a {
    color: black;
    padding-top: 25px;
    padding-bottom: 25px;
  }
    .collapsibleNav img {
      width: 20px;
  }
  .collapsibleNav ul {
    flex-direction: column;
    padding: 0;
  }
  .collapsibleNav li{
  margin-left: auto;
  margin-right: auto;
  }
  .collapsibleNav.open {
    transform: translateY(0);
    z-index: 0;
  }
  .hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }


  .aboutSection{
    width: 100vw;
    margin-top: 0px ;
    transform: translateX(0px);
  }
  .summaryGrid{
    row-gap: 50px;
    transform: translateX(0px);
  }

  .sectionContent{
  flex-wrap: wrap;
  }
  .column{
    width: 70%;
    margin-right: auto;
    padding-bottom: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
  }
  .column.director{
  width: 100%;
  }
  
  .projectGrid{
    grid-template-columns: 1fr 1fr;
  }
  
.featured
{
  grid-column: span 1;
  grid-row: span 1;
  min-height: 100%;
  width: 100%;
  /* aspect-ratio: unset; */
  /* max-height: 95.920%; */
}

.featured a h3{
  font-size: medium;
  top:85%
}

.footerBackground{
  height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
}



@media (max-width: 750px) {
  .navbar{
  height: 80px;
}

.navBackground{
  height: 80px;
}

  .collapsibleNav{
    top: 80px;
  }
.navbar a img{
  /* height: 70px; */
  height: 60px;
}
.hamburger{
  margin-left: auto;
  margin-right: 45px;
}

.jobTitle{
  font-size: 11px;
}

.chevronDown img{
    width: 80px;
    height: 80px;
}

#about{
  scroll-margin-top: 150px;
}
.aboutSection p {
    padding: 2.5rem;
    font-size: 0.9rem;
}

.summaryGrid{
    scale: 90%;
    margin-top: 5vh;
}

.summaryItem h4 {
    font-size: 0.8rem;
}

.leftSection, .rightSection{
    width: 100vw;
    height: fit-content;
    margin-top: 5vh;

}

.section.left{
    margin-right:5vw;
    margin-bottom:5vw;
}

.section.right{
    margin-left:5vw;
}

.sectionContent{
  flex-wrap: wrap;
}
.projectGrid{
  grid-template-columns: 1fr;
}

.footerBackground{
  height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.column .service{
  text-align: left;
  width: 100%;
  /* border: solid 1px white; */
}
.column .service ul{
  text-align: left;
  width: 100%;
  /* border: solid 1px white; */
}
.column .service li{
  text-align: left;
  width: 100%;
  /* border: solid 1px white; */
}
.featured{
  grid-column: span 1;
  grid-row: span 1;
  min-height: 100%;
  width: 100%;
  /* aspect-ratio: unset; */
  /* max-height: 95.920%; */
}

.featured a h3{
  font-size: medium;
}

.projectGrid {
  margin-left: 15px;
  margin-right: 15px;
  gap: 15px;
  margin-top: 10px;
}

.projects{
  margin-top: 70px;
  margin-bottom: 70px;
}

.projectCategory{
  margin-right: 25px;
}
.footerColumn{
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;  
  margin-right: auto; 
  width: 85vw;
}

.footerColumn.top{
  margin-bottom: 0px;
}
footer {
  display: flex;
  flex-direction: column;
}
.footerName{
  font-size: 20px;
}
.infoLine{
  font-size: 0.75rem;
}
.footerBackground{
  min-height: 40%;
  max-height: 40%;
  opacity: 0.04;
  display: none;
}

.summaryGrid{
    margin-top: 0vh;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}

.section.right{
    /* margin-bottom: 10vh; */
    margin-bottom: 70px;
}

.section.left{
    margin-bottom: 0%;
}

.column.service{
  width: 100%;
}
.column.director{
  padding-left: 0%;
  padding-right: 0%;
  width: 100%;
}

.column.service{
  margin-right: 0%;
  /* padding-right: 0%; */
}


.section{
    margin-top: 0vh;
}

.section{
    /* background-color: #ba151c; */
}

.hero{
  height: 120svh;
}
.heroImage {
  height: 120svh;
}

.hero .topOverlay {
  height: 120svh;
}

.hero .bottomOverlay {
  height: 120svh;
    background: linear-gradient(
    to top, 
    rgba(0, 0, 0, 0.50) 0%, 
    rgba(0, 0, 0, 0.40) 10%,
    rgba(0, 0, 0, 0.30) 15%,
    rgba(0, 0, 0, 0.20) 20%,
    rgba(0, 0, 0, 0) 30%
  );
}

.projectImage:hover h1{
    transform: translate(none);
}
.projectImage:hover{
    scale: 1.0;
}
.content{
 padding-bottom: 0%;
}
}

@media (max-width: 352px) {
  .hamburger{
    margin-left: auto;
    margin-right: auto;
  }
}

@media (orientation: landscape) and (max-width: 1000px) {
  .summaryGrid{
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .projectGrid{
    grid-template-columns: 1fr 1fr;
  }
.infoLine{
  font-size: 9px;
}
.footerName{
  font-size: 25px;
}
}
@media (orientation: landscape) and (max-width: 1000px) {
  .summaryGrid{
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .projectGrid{
    grid-template-columns: 1fr 1fr;
  }
.infoLine{
  font-size: 14px;
}
.footerName{
  font-size: 25px;
}
.column.service ul li{
  font-size: 0.7em;
  line-height: 1.9em;
}
.column.director table tr td{
  font-size: 0.8em;
}
}
@media (min-width: 450px)and (max-width: 750px){
  .summaryGrid{
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .projectGrid{
    grid-template-columns: 1fr 1fr;
  }
.infoLine{
  font-size: 9px;
}
.footerName{
  font-size: 25px;
}

}

@media (orientation: landscape) and (max-width: 932px) {
  
}

@media (max-width: 1600px) {
  .aboutSection p{
    font-size: 14px;
  }

  .column.service ul li{
    font-size: 0.95em;
    line-height: 2em;
  }

  .projectImage h3{
    font-size: 14px;
  }

  .featured a h3{
    font-size: large;
  }
}

.captchaMessage{
  font-size: 11px;
  margin-right: auto;
}


.captchaMessage a{
  color: white;
}
.grecaptcha-badge { 
  visibility: hidden; 
}

/* *::-webkit-scrollbar-track
{
	border-radius: 10px;
  background: transparent;
} 

*::-webkit-scrollbar
{
	width: 12px;
	/* background-color: rgba(203, 203, 203, 0.7); */
  /* overflow: overlay;
} */

/* *::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #ba151c;
} */ 

.privacyPolicyLink{
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  text-decoration: none;
  font-size: 11px;
}

.privacyPolicyLink:hover{
  text-decoration: underline;
}
.privacyPolicyLink:focus{
  text-decoration: underline;
}





