/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: >0.1%,defaults,not dead
*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
}

@font-face {
    font-family: lemonmilk;
    src: url(Fonts/LEMONMILK-Medium.otf);
}
body {
    background-color: var(--color2);
    font-family: Arial, Helvetica, sans-serif;
}
.content {
    width: 100%;
    padding: 128px 10% 0;
    height: 100%;
}
/* ----------------------Tablet Content---------------------- */
@media screen and (max-width:1024px){
.content {
    padding: 128px 15% 0;
}

}/* ----------------------Mobile Content---------------------- */
@media screen and (max-width:600px){

    .content {
        padding: 128px 16px 0;
    }
}
.content > h1 {
    margin-bottom: 60px;
    padding-top: 16px;
}
.fullpage {
    height: 100dvh;
    width: 100vw;


}

:root {
    --color1: black;
    --color2: white;
    --color3: #6d6d6d;
    
}

h1 {
    font-family: lemonmilk;
    font-size: 40px;
    color: var(--color1);
    text-align: center;
}
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: var(--color2);
    font-weight: bold;
   
}
h4 {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color1);
    font-size: 24px;
    margin-bottom: 4px;
}
h5 {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color3);
    font-size: 20px;
    margin: 0px 0 18px;
    font-weight: normal;
}

.design-page-content img {
    opacity: 0;
    transform: translateY(100px);
    transition: .5s ease;
  }
  .design-page-content img.visible {
    opacity: 1;
    transform: none;
  
  }
  .design-page-content video {
    opacity: 0;
    transform: translateY(100px);
    transition: .5s ease;
  }
  .design-page-content video.visible {
    opacity: 1;

    transform: none;
  
  }

/* -------------------------Animations------------------------- */
@-webkit-keyframes logospin {
    0% {
       -webkit-transform: rotate(-360deg) scale(.3);
        opacity: 0%;
  
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        opacity: 100%;
    }
}
@keyframes logospin {
    0% {
       -webkit-transform: rotate(-360deg) scale(.3);
        opacity: 0%;
  
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        opacity: 100%;
    }
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

@keyframes fadein {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}
/* --------------------------Page Loader-------------------------- */
#loading {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    align-items: center;
    
    background-color: var(--color2);
    z-index: 1000;
  }
  
  #loading-image {
    margin: auto;
    z-index: 1000;
    width: 5%;
    -webkit-animation: loading 3s cubic-bezier(0.175, 0.885, 0.32, 1) infinite;
            animation: loading 3s cubic-bezier(0.175, 0.885, 0.32, 1) infinite;
    -webkit-filter: invert(100%);
            filter: invert(100%);
  }

  @-webkit-keyframes loading {
    0%{
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
  }

  @keyframes loading {
    0%{
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
  }
/* --------------------------Homepage-------------------------- */
.homepage {
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
    
}

/* .gradient{
    width:100%;
    height:100%;
  
    position: absolute;
    z-index: -1;
    background: linear-gradient(130deg, var(--color3), white);
    opacity: .1;
    background-size: 200% 400%;
    background-position: center center;
    animation: rotate-gradient 20s ease infinite;
}
@keyframes rotate-gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
  } */
.home {
    background-color: var(--color1);
}
.homepage-content {
    width: 80%;
height: 100vh;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    align-items: center;

}
.landing-logo {
    width: 35%; 
    grid-row: 2/3;
    z-index: 99;
}
#landinglogo {
    fill: white;
    width: 100%;
   
 cursor: pointer;
 


}
#heading {
    grid-column: span 3;
    grid-row: 3/4;
    font-size: 32px;
}

#homelink {
    color: var(--color2);
    font-family: lemonmilk;
    font-size: 24px;
    text-decoration: none;
 grid-row: 2/3;
    position: relative;
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    /* transition: .2s ease; */
    
}
#homelinktwo {
    color: var(--color2);
    font-family: lemonmilk;
    font-size: 24px;
    text-decoration: none;
 grid-row: 2/3;
    position: relative;
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    /* transition: .2s ease; */
    
}
@-webkit-keyframes beat {
    0%,
    100% {
      opacity:.4;
    
    }
    50% {
      opacity:1;
     
    }
  }
@keyframes beat {
    0%,
    100% {
      opacity:.4;
    
    }
    50% {
      opacity:1;
     
    }
  }
  #gradient
{
  width: 100%;
  min-height: 100vh;
  padding: 0px;
  margin: 0px;
  box-shadow: inset 0 0 200px hsla(0,0%,0%,.4);
position: absolute;
}

  /* .gradient {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100dvh;
  }
  .gradient-inner {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
  
    
    transition: 500ms ease-in;
    transition-property: --color1, --color2, --color3;
    background: linear-gradient(45deg, var(--color3), var(--color1), var(--color4));
    position: relative;
    overflow: hidden;
    color: white;
  
  }
  
  .gradient-inner::before {
    content: "";
    position: absolute;
    background: radial-gradient(circle, var(--color4), var(--color1));
    filter: blur(20vw) brightness(1.5);
    left: 0%;
    top: 5%;
    width: 50%;
    height: 30%;
    border-radius: 400px;
    animation: blob 20s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transform-origin: 60%;
  }
  
  .gradient-inner::after {
    content: "";
    position: absolute;
    background: radial-gradient(circle, var(--color4), var(--color1));
    filter: blur(20vw) brightness(1.5);
    left: 60%;
    top: 20%;
    width: 30%;
    height: 50%;
    border-radius: 400px;
    animation: blob 25s infinite cubic-bezier(0.215, 0.61, 0.355, 1) reverse;
    transform-origin: 60%;
  }
  

 
@keyframes blob {
    0% {
      translate: 0 0;
      rotate: 0deg;
    }
    30% {
      rotate: 40deg;
    }
    50% {
      transform: translate(90%, 40%);
    }
    80% {
      rotate: 90deg;
    }
  }
  
  @property --color-a {
    syntax: "<color>";
    inherits: true;
    initial-value: transparent;
  }
  
  @property --color-b {
    syntax: "<color>";
    inherits: true;
    initial-value: transparent;
  }
  
  @property --color-c {
    syntax: "<color>";
    inherits: true;
    initial-value: transparent;
  }  */

  


/* .homepage a::before {
    position: absolute;
    opacity: 0;
    width: 0%;
    height: 4px;
    content: '';
    background: var(--color2);
    left: 0px;
    top: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
} */

/* .homepage a:hover::before {
    opacity: 1;
    width: 100%;
} */


/* ----------------------Tablet Home---------------------- */
@media screen and (max-width:1024px){
    
    .homepage-content {
     padding-top: 5%;
     padding-bottom: 5%;
     grid-template-columns: 100%;
     grid-template-rows: 30% 40% 30%;
     /* a {
         margin-block: 10%;
     } */
    }
    .landing-logo {
     width: 100%;
        height: 100%;
   

    }
    #landinglogo {
        -o-object-fit: contain;
           object-fit: contain;
        height: 100%;
    }
    #homelink, #homelinktwo {
     grid-row: unset;
    }
    #heading {
     grid-column: unset;
     grid-row: unset;
     font-size: 24px;
     align-self: last baseline;
    
    }
 
 }


/* ----------------------Mobile Home---------------------- */
@media screen and (max-width:600px){
   .homepage-content {
   
    grid-template-rows: 30% 40% 30%;
    /* a {
        margin-block: 10%;
    } */
   }
   .homelinks {
    display: none !important;
    }
    .landing-logo {
        height: 80%;
       } 
   #heading {
    grid-column: unset;
    grid-row: unset;
    font-size: 24px;
    align-self: last baseline;
   
   }

}
/* --------------------Hamburger-------------------- */
header {
   padding: 0 30px;
   position: fixed;
   width: 100%;
   height: 84px;
   background-color: var(--color2);
   z-index: 999;
   
}
.home header {
    background-color: transparent !important;
}
.hamburger {
    z-index: 996;
}
.hamburger.is-active .line:nth-child(1){
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hamburger.is-active .line:nth-child(3){
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.homemenu .line{
     
        background-color: var(--color2) !important;
    
}
.hamburger:hover{
    cursor: pointer;
  }
.hamburger .line{
    width: 50px;
    height: 5px;
    background-color: var(--color1);
    display: block;
    margin: 8px;
    transition: all 0.3s ease-in-out;
  }
  .header {
    display: grid;
    grid-template-columns: 66px 1fr 66px;
    width: 100%;
    align-items: center;
    height: 84px;
  }
  .header-logo {
    display: flex;
width: 100%;
 
  justify-content: center;
  align-content: center;
  
  }
  .header-logo a {
    display: flex;
    align-items: center;
      width: 28px;
  }
  .header-logo svg {
   height: 47px;
    fill: var(--color1);
  z-index: 996;
  }
.homelogo {
    display: none !important;
}
  /* -----------------------Nav----------------------- */
  .navbar {
    background-color: rgba(255, 255, 255, 0.7);
display: none;
    width: 100vw;
    height: 100vh;
    z-index: 995;
 position: absolute;
 top: 0;
 left: 0;
 padding: 84px 0 0 30px;
  }
  .navbar ul {
    list-style: none;
  }
  .navbar li {
    color: var(--color1);
    font-family: lemonmilk;
    font-size: 30px;
    
    line-height: 80px;
    position: relative;
    
  }
  .navbar a {
    color: var(--color1);
    font-family: lemonmilk;
    font-size: 30px;
    text-decoration: none;
    line-height: 80px;
    position: relative;
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    transition: .2s ease;
    padding: 0 5px;
  
  }


.navbar a::before {
    position: absolute;
    opacity: 0;
    width: 0%;
    height: 4px;
    content: '';
    background: var(--color1);
    left: 0px;
    top: 50%;
    transition: all 0.2s ease-in-out;
}

.navbar a:hover::before {
    opacity: 1;
    width: 100%;
}
.navbar a:hover {
    color: var(--color1);
    
}
.accordion::before {
    position: absolute;
    opacity: 0;
    width: 0%;
    height: 4px;
    content: '';
    background: var(--color1);
    left: 0px;
    top: 50%;
    transition: all 0.2s ease-in-out;
}

.accordion:hover::before {
    opacity: 1;
    width: 100%;
}
.accordion:hover {
    color: var(--color1);
    
}
.--open {
opacity: 100%;
display: block;

}

.accordion {
    display: inline;
    cursor: pointer;
    padding-left: 5px;
  
    transition: all 0.4s ease-out;
}
.panel {
    display: none;
  }
  .panel li {
   
    line-height: 40px !important;
  }
  .panel a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 40px !important;
    font-size: 20px;
  }

 
    .home .navbar {
        background-color: rgba(0, 0, 0, 0.7) !important;
        

    }
    .home a {
        color: var(--color2) !important;
    }
    .home .accordion {
        color: var(--color2) !important;
    }
    .home .accordion::before {
        background-color: var(--color2) !important;
    }
    .home .navbar a::before {
        background-color: var(--color2) !important;
    }
    .home header {
        background-color: transparent !important;
    }
  


  /* ----------------------Mobile Header---------------------- */
@media screen and (max-width:600px) {

header {
    padding: 0 16px;
}
.hamburger .line {
    width: 40px;
    height: 4px;
    background-color: var(--color1);
    display: block;
    margin: 6.4px 0;
    
  }
  .header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    width: 100%;
    align-items: center;
    height: 84px;
  }
  .header-logo svg {
    height: 37.6px;
  }
  .header-logo a {
    width: 22px;
  }
.navbar {
    padding: 84px 0 0 16px;
    background-color: rgb(255, 255, 255);
}

    .home .navbar {
        background-color: rgb(255, 255, 255) !important;
        

    }
    .home a {
            color: var(--color1) !important;
        }
    .home .accordion {
        color: var(--color1) !important;
    }
    .home .accordion::before {
        background-color: var(--color1) !important;
    }
    .home .navbar a::before {
        background-color: var(--color1) !important;
    }
    .home .hamburger.is-active .line{
        background-color: var(--color1) !important;
      }
  }




/* ----------------------Design Page---------------------- */

.work-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

.design-grid-item {
    width: 100%;
   
    position: relative;

  
 
    
}
.design-grid-item a{
    width: 100%;
    height: 100%;
    display: block;
  }
  .design-grid-item video{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
}
.design-grid-item img {
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    
       object-fit: cover;
}
.design-grid-item.half img {
   
    aspect-ratio: 2/1;
    
}
.design-grid-item.full img {
     
    aspect-ratio: 4/1;
    
}
.design-grid-item:hover .design-grid-overlay{
   
        opacity: 1;
    
}
.design-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
   padding-left: 40px;
    justify-content: center;
    opacity: 0;
    transition: .3s ease;
    z-index: 5;
    color: var(--color2) !important;
  
    
}
.design-grid-overlay h4 {
    font-weight: 100;
    color: var(--color2) !important;
    font-size: 20px;
    text-align: left;
    margin: 6px 0 40px;
}
.design-grid-overlay p {
    color: var(--color2) !important;
    display: flex;
}
.design-grid-overlay p::after {
    font-family: FontAwesome;
    content: '\f0da';
    font-size: 20px;
    padding-left: 7px;
}
/* ----------------------Tablet Design Page---------------------- */
@media screen and (max-width:1024px) {
    h1 {
        font-size: 4.5vw;
    }

    .work-grid {
        width: 100%;
  
        
    }
    .work-grid .third {
        grid-column: span 3 !important;
    }
    .design-grid-item.third img {
        aspect-ratio: 2/1;
        
        
    }


}

/* ----------------------Mobile Design Page---------------------- */
@media screen and (max-width:600px) {
    h1 {
        font-size: 4vw;
    }

   
       .work-grid .half {
            grid-column: span 6;
        }
       .work-grid .third {
            grid-column: span 6 !important;
        }
       .work-grid .full img {
            aspect-ratio: 2/1 !important;
        }
    
    
}



/* ----------------------About Page---------------------- */

 p {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        color: var(--color1);
    }
.about-inner {
    width: 100%;
    margin: auto;
    display: grid;
grid-template-columns: 50% 40%;
column-gap: 10%;
  grid-template-rows: auto 1fr;
  
  grid-template-areas: 
  "title portrait"
  "bio portrait";
    
    
}
.bio-text {
    margin-bottom: 30px;
}
.bio {
    grid-area: bio;
}
.about-inner h1 {
    text-align: left;
    margin-bottom: 30px;
}

.education {
    line-height: 28px;
   }
.portrait {
    width: 100%;
    grid-area: portrait;
  height: calc(100dvh - 150px);
   
}
.portrait img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.services {
    display: flex;
    margin-top: 18px;
    width: 100%;
    
   
    
}
.services>div {
    width: 50%;
}
.services ul {
    list-style: none !important;
}
.services li {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color1);
    font-size: 16px;
    line-height: 24px;
}
.services a {
    text-decoration: none !important;
    color: var(--color1) !important;

}
.educationtext {
    width: 100%;
    /* padding: 20px 0 0; */
    display: none;
    
   
    
    
}
.educationtext ul {
    list-style: none !important;
}
.educationtext h4 {
    font-family: Arial, Helvetica, sans-serif;
color: var(--color1);
font-size: 18px;
margin: 0 !important;
}
.educationtext h5 {
     
    font-size: 18px;
}
.educationpanel {
    height: 125px;
}
.educationaccordion {
    cursor: pointer;
margin-bottom: 18px;
    font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        color: var(--color1);
}

.educationaccordion::after {
    font-family: FontAwesome;
    content: "\f0d7";
    font-size: 20px;
  padding-left: 7px;
}

.educationaccordion.opened::after {
   
    content: "\f0d8";
  
}
.about-title {
    grid-area: title;
    height: min-content;

}

/* ----------------------Tablet About Page---------------------- */
@media screen and (max-width:1024px){
    .about-inner {
       
        grid-template-columns: 1fr;
        grid-template-areas: 
        "title"
        "portrait"
        "bio";
     }
  
    .bio {
       
        margin-bottom: 60px;
        margin-top: 60px;
    }
    .portrait {
        width: 100%;
       
        
    }
    .portrait img{
        width: 100%;
        aspect-ratio: 1/1;
        -o-object-fit: cover;
           object-fit: cover;
    }
    
    }
    
/* ----------------------Mobile About Page---------------------- */
@media screen and (max-width:600px){
.about-inner {
    width: 100%;
   
}
.bio {
    width: 100%;
    margin-bottom: 60px;
    margin-top: 60px;
}
.portrait {
    width: 100%;
 
    
    
}
.portrait img{
    width: 100%;
  
}
}

/* ----------------------Design Page Individual---------------------- */
/* .design-page-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
   justify-content: space-between;
   align-items: center;
  
} */

.expand-content {
    display: none;

}
.expanded {
    display: block;
}
.expand-open::after,
.expand-open .expand-open-tile::after,
.expand-content .expand-hide::after,
.expand-trigger::after {
  font-family: FontAwesome;
  content: "\f0d7";
  font-size: 20px;
  padding-left: 7px;
  transition: 0.2s;
}

.expand-trigger.expanded::after {
    content: "\f0d8";
}
.expand-trigger.expanded:after {
    content: "\f0d8";
  }
  .expand-content .expand-hide:after {
    content: "\f0d8";
  }
.expand-trigger {
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
        color: var(--color1);

        width: -webkit-fit-content;

        width: -moz-fit-content;

        width: fit-content;
}
.expand-trigger::after {
    font-family: FontAwesome;
    content: "\f0d7";
    font-size: 20px;
  padding-left: 7px;
}
.description-inner {
    padding: 0px 0 20px;
    width: 50%;
    
}
.description-inner p {
    margin-bottom: 20px;
}
.description-inner h4 {
    font-size: 22px !important;
}
.twocolumn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 20px;
    width: 100%;
    
}
.twocolumn img, video {
    width: 100%;
}
.threecolumn {
   
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;
    justify-items: center;
    gap: 20px;
    width: 100%;
    
}
.threecolumn img, video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.sixcolumn {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    align-items: center;
    justify-items: center;
    gap: 20px;
    width: 100%;
    
    
   
}
.sixcolumn img, video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
 .half {
        grid-column: span 3;
    }
    .third {
        grid-column: span 2;
    }
    .twothird {
        grid-column: span 4;
       
    }
    .full {
        grid-column: span 6;
    }
.onethird {
    grid-column: span;
}
.twothirds {
    grid-column: span 2;
    
    -o-object-fit: cover;
    
       object-fit: cover;
}
.fullwidth {
    grid-column: 1/3;
}
.fullwidththirds {
    grid-column: span 3;
}
.fullcenter {
    padding-inline: 20%;
}

.personalphotogsubgrid {
    display: flex;
   flex-direction: column;
    width: 100%;   
    justify-content: space-evenly;
 
}
.personalphotogsubgrid:nth-of-type(1) {
    gap: 10px;
}
.personalphotogsubgrid:nth-of-type(2) {
    gap: 20px;
}
.padding15 {
    padding: 15%;
}
.padding20 {
    padding: 20%;
}
.positionbottom {
    -o-object-position: bottom;
       object-position: bottom;
}
.position75 {
    -o-object-position: 50% 75%;
       object-position: 50% 75%;
}
.project-description {
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-column: 1/3;
}
.testimonial {
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
    width: 100% !important;
    
}
.testimonial a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--color1);
    text-decoration: none;
}
.silva {
    gap: 5%;
    margin-bottom: 100px;
}
#HTlogo {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/1;
}

#dailytenlogo {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/1;
}
.square {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/1;
}

.makesocialssubgrid {
    display: flex;
    flex-direction: column;
    height: 100%;
   gap: 100px;
    justify-content: center;
}
.photographyHome {
    margin: auto;
    display: flex;
    width: 100%;
    padding: 40px 0 40px;
    align-items: center;
    justify-content: center;
    
}
.photographyHome a {
    font-family: lemonmilk;
    font-size: 20px;
    color: var(--color1);
    text-decoration: none;
}
.project-footer-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0 40px;
    align-items: center;
    
   
} 
.project-footer-buttons a {
    font-family: lemonmilk;
    font-size: 20px;
    color: var(--color1);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.project-footer-buttons a:nth-child(1)::before {
    font-family: FontAwesome;
    content: '\f0d9';
    font-size: 26px;
    padding-right: 7px;
}
.project-footer-buttons a:nth-child(3)::after {
    font-family: FontAwesome;
    content: '\f0da';
    font-size: 26px;
    padding-left: 7px;
}
.project-footer-buttons a:nth-child(3) {
    justify-content: flex-end;
}
.designhomebtn {
        border: var(--color1) solid 2px;
        border-radius: 10px;
        padding: 3px 15px;
        justify-self: center;
        text-align: center;
        transition: .3s ease;
    }
.designhomebtn:hover {
    color: var(--color2);
    background-color: var(--color1);
}

.fivetwo {
    aspect-ratio: 5/2;
    -o-object-fit: cover;
       object-fit: cover;
}
.threeone {
    aspect-ratio: 3/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.threetwo {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
}
.threefour {
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
}
.fourthree {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
}
.fivethree {
    aspect-ratio: 5/3;
    -o-object-fit: cover;
       object-fit: cover;
}
.fivefour {
    aspect-ratio: 5/4;
    -o-object-fit: cover;
       object-fit: cover;
}
.onetwo {
    aspect-ratio: 1/2;
    -o-object-fit: cover;
       object-fit: cover;
}
.threefive {
    aspect-ratio: 3/5;
    -o-object-fit: cover;
       object-fit: cover;
}

.testimoniallink {
    text-decoration: underline !important;
}

/* ---------------------- Contact Page ---------------------- */

.contact-inner {
    margin: auto;
    width: 100%;
    display: flex;
    
    
    
    
}
.contact-inner >div {
    width: 50%;
}
.contact-inner a {
    text-decoration: none !important;
}
.contact-inner ul {
    list-style: none !important;
    margin-bottom: 60px;
}
.contact-inner li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--color1);
    font-weight: normal;
    line-height: 24px;
}
.contact-inner>div:nth-child(2){
    padding-left: 150px;
    
}
.contactform {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: var(--color1);
    margin-block: 50px;
  
    
    
    
    

}
.contactform input:not(#submit), textarea{
    background: none;
    outline: none;
    border: none;
    border-bottom: var(--color1) solid 2px !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: var(--color1);
    font-weight: normal;
   margin-bottom: 40px;
   padding-bottom: 5px;
}
::-webkit-input-placeholder {
    color: var(--color1);
    font-size: 16px;
    opacity: 1;
}
::-moz-placeholder {
    color: var(--color1);
    font-size: 16px;
    opacity: 1;
}
::placeholder {
    color: var(--color1);
    font-size: 16px;
    opacity: 1;
}
#submit {
    font-size: 18px;
    color: var(--color2);
    background-color: var(--color1);
    border: var(--color2) 2px solid;
    border-radius: 10px;
    padding: 10px 30px;
 
    width: -webkit-fit-content;
 
    width: -moz-fit-content;
 
    width: fit-content;
    transition: .2s ease;
    cursor: pointer;
}
#submit:hover {
    color: var(--color2);
    background-color: var(--color1);
}
.contact-socials{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: auto;
    
    
}
.contact-socials a {
    background-color: var(--color1);
    border-radius: 20px;
    width: 60px;
    height: 60px;
    display: block;
    padding: 10px;
}
.contact-socials svg {
    width: 100%;
    
    fill: var(--color2);
}
label {
    font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        color: var(--color1);
        font-weight: bold;
        margin-bottom: 20px;
}
/* ---------------------- Tablet Contact Page ---------------------- */

@media screen and (max-width:1024px) {
    .contact-inner {
        flex-direction: column;
    }
        .contact-inner>div:nth-child(1){
            
                width: 100%;
        }
    
    
            .contact-inner>div:nth-child(2){
                width: 100%;
                display: flex;
                justify-content: space-between;
                padding-left: 0;
              padding-left: 0px;
            }
        
}


/* ---------------------- Mobile Contact Page ---------------------- */

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

.contact-inner li {
    line-height: 28px;
}

}



/* ---------------------- Tablet Design Page Individual---------------------- */

@media screen and (max-width:1024px) {
    .project-description {
        grid-column: 1/2;
    }
  .description-inner {
    width: 100%;
  }
   .testimonial {
    grid-template-columns: 100%;
    grid-template-rows: max-content max-content;
    gap: 20px;
  }
    
}

/* ---------------------- Mobile Design Page Individual---------------------- */

@media screen and (max-width:600px) {
    .twocolumn {
        grid-template-columns: 100%;
        align-items: center;
        justify-items: center;
        row-gap: 20px;
        column-gap: 0;
        width: 100%;
        
        
        
    }
    .silva {
        margin-bottom: 0;
        padding: 0 10vw;
        gap: 10vw;
     }
    
 .twocolumn img, video {
    width: 100%;
    grid-column: 1/2;
}
.twocolumn .fullwidth {
    grid-column: 1/2;
}
.twocolumn .threecolumn {
    display: flex;
    flex-direction: column;
}
 .twothirds {
    aspect-ratio: 3/2;
 }
 .crimestoppers-column {
    display: flex;
    flex-direction: column;
 }
 .sixcolumn {
    display: flex;
    flex-direction: column;
 }
 .project-footer-buttons a {
    
        font-size: 3.5vw;
    
 }
 .designhomebtn {
    font-size: 3.5vw !important;
}
}


/* ----------------------Testimonials---------------------- */
.testimonials-mobile {
    display: none;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "testimonial-trigger testimonial"
    "testimonial-trigger testimonial"
    "testimonial-trigger testimonial"
    "testimonial-trigger testimonial"
    "testimonial-trigger testimonial";
    column-gap: 80px;
    row-gap: 20px;
    padding: 0px 0 80px;
}
.testimonial-trigger {
    border-bottom: 2px solid var(--color3);
    width: 100%;
    height: min-content;
    grid-column: 1/2;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    height: 76px;
}
.testimonial-trigger::after {
    font-family: FontAwesome;
    content: "\f0da";
    font-size: 30px;
align-self: center;
color: var(--color3);
transition: .3s ease;
}
.testimonial-trigger:hover::after {
    
color: var(--color1);
}
.testimonial-trigger:focus::after {
    
    color: var(--color1);
    }
.testimonial-text {
    display: none;
    padding: 20px 0;
    grid-area: testimonial;
    
    overflow: hidden;
    transition: 0.3s ease-in;
}
.testimonial-text:nth-of-type(4) {
    padding-top: 96px;
}
.testimonial-text:nth-of-type(6) {
    padding-top: 192px;
}
.testimonial-text:nth-of-type(8) {
    align-self: flex-end;
    padding-bottom: 96px;
}
.testimonial-text:nth-of-type(10) {
    align-self: flex-end;
}
.testimonials .expand-trigger {
    margin-bottom: 10px;
}

  

    .testimonial-trigger:focus+.testimonial-text {
        display: block;
        transition: .5s ease-in;
        transition-delay: .3s;
    }

/* ---------------------- Tablet Testimonials---------------------- */

@media screen and (max-width:1024px) {
    .testimonials-mobile {
        display: flex;
        flex-direction: column;
        gap: 80px;
        padding: 0px 0 80px;
    }
    .testimonials-mobile>div {
        border-bottom: 2px solid var(--color3);
        width: 100%;
        height: min-content;
    }
    .testimonials-mobile .expand-content {
        padding: 20px 0;
    }
    .testimonials-mobile .expand-trigger {
        margin-bottom: 10px;
    }
    .testimonials {
        display: none;
    }
}
  
/* ---------------------- Mobile Testimonials---------------------- */

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