@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: bandeins strange;
  src: url(/Assets/bandeins-strange-variable.ttf);
}

@keyframes fadein{
  0% { opacity: 0; }
  100% { opacity: 1; }

}


.cursor{
  width: 30px;
  height: 30px;
  border: 3px solid #5510ff;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.link-grow{
  transform: scale(2);
}

body {
  font-family: bandeins strange;
  font-size: 60px;
  line-height: 1.5;
  background-color: #d8d8d8;
  background-size: cover;
  margin: 0px 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}


.name {
  grid-column: 1 / span 4;
  color: #ffffff;
  position: fixed;
}

.name h1 {
  line-height: 1.2;
  font-size: 130px;
}

.contact {
  margin: auto;
  grid-column: 3 / span 8;
  color: #ffffff;
  transform: translateY(10%);
}

.contact h1 {
  line-height: 1.2;
  font-size: 130px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
}

.contact p{
  font-family: 'Commissioner', sans-serif;
  font-size: 35px;
  text-align: justify;
}
.contact a {
  font-family: 'Commissioner', sans-serif;
  font-weight: 500;
  color:  #ffeb00;
  font-size: 35px;
  text-align: justify;
  transition: 0.3s;
}
.contact a:hover{
  font-weight: 700;
  font-size:40px;
  }


.projectlist {
  grid-column: 6 / span 7;
  color: #ffffff;
  text-align: left;
  max-height: inherit;
  overflow: scroll; 
  position: relative;
}

.projectlist::-webkit-scrollbar {
  display: none;
}

.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 3px;
  -webkit-text-fill-color: transparent;
  font-size: 140px;
  line-height: 1.5;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 500;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 150px;
}

.projectlist li p{
  margin-left: 10px;
  font-size:0px;
  transition: font-size 0.5s;
}
.projectlist li img a p:hover + p{
  font-size:30px;
}


.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 30px;
  word-spacing: 4.5em;
  left: 50px;
  bottom: 60px;
  color: #ffffff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}


/* PROJECT PAGE CSS */


.logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 30px;
  transition: 1s;
  color: #ffffff;
  width: 190px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: 0 auto 0 auto;
}
.hero video {
  width: 100%;
  margin: 0 auto 0 auto;
}
.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 150px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin: auto 0 auto 0;
  line-height: 98%;
}

.projectabout {
  grid-column: 1 / span 6;
  padding-left: 20px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
}

.top-image {
  grid-column: 1 / span 12;
}

.top-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.left-image {
  grid-column: 2 / span 5;
  padding-top: 20%;
}

.left-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}
  
.left-image video {
  width: 100%;
  margin: 0 auto 0 auto;
}

.right-image {
  grid-column: 7 / span 5;
}

.right-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}
  
.right-image video {
  width: 100%;
  margin: 0 auto 0 auto;
}

.project-footer {
  position: fixed;
  bottom: 10px;
  color: #d8d8d8;
  padding-right: 20px;
  z-index: 3;
  left: -65px;
  transition: left 0.5s;
}


.project-footer h6 {
  background-color: #5510ff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  padding-right: 20px;
  padding-left: 90px;
  padding-bottom: 5px;
}
.project-footer h6 a {
  color: #d8d8d8;
  text-decoration: none;
  letter-spacing: 0;
  border-bottom: 0px solid #d8d8d8;
  transition: border-bottom 0.2s;
}

.project-footer a:hover {
  border-bottom: 5px solid #d8d8d8;
}





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

.name {
  grid-column: 1 / span 4;
   color: #ffffff;
}

.name h1 {
  line-height: 1.2;
  font-size: 100px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
}

.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 3px;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  line-height: 1.3;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 500;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 110px;
}

.projectlist li p{
  font-size:0px;
  transition: font-size 0.5s;
}
.projectlist li a:hover + p{
  font-size:20px;
}

.projectimg{
  display: none;
  position: relative;
  height: 350px;
  overflow: hidden;
  
}

.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 26px;
  word-spacing: 3.5em;
  left: 50px;
  bottom: 60px;
  color: #ffffff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 120px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}
  
  
  /* PROJECT PAGE CSS */

.logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 30px;
  transition: 1s;
  color: #ffffff;
  width: 190px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 150px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin: auto 0 auto 0;
}

.projectabout {
  grid-column: 1 / span 5;
  padding-left: 20px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
}

}




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

.name {
  grid-column: 1 / span 4;
  color: #ffffff;
}

.name h1 {
  line-height: 1.2;
  font-size: 90px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
}

.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 3px;
  -webkit-text-fill-color: transparent;
  font-size: 85px;
  line-height: 1.5;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 500;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 95px;
}

.projectlist li p{
  font-size:0px;
  transition: font-size 0.5s;
}
.projectlist li a:hover + p{
  font-size:20px;
}

.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 18px;
  word-spacing: 4.5em;
  left: 50px;
  bottom: 60px;
  color: #ffffff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 120px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}
  
  /* PROJECT PAGE CSS */

.logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 30px;
  transition: 1s;
  color: #ffffff;
  width: 190px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 150px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin: auto 0 auto 0;
}

.projectabout {
  grid-column: 1 / span 5;
  padding-left: 20px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
}

}


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

.name {
  grid-column: 1 / span 4;
  color: #ffffff;
}

.name h1 {
  line-height: 1.2;
  font-size: 80px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
}

.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 1px;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  line-height: 1.5;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 400;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 80px;
}

.projectimg{
  display: none;
  position: relative;
  height: 150px;
  overflow: hidden;
  
}

.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 18px;
  word-spacing: 4.5em;
  left: 50px;
  bottom: 60px;
  color: #ffffff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}
  
  
  
 .logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 30px;
  transition: 1s;
  color: #ffffff;
  width: 190px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 120px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin: auto 0 auto 0;
}

.projectabout {
  grid-column: 1 / span 7;
  padding-left: 20px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
} 
}




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

.name {
  grid-column: 1 / span 4;
  color: #ffffff;
}

.name h1 {
  line-height: 1.2;
  font-size: 80px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
}

.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 1px;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  line-height: 1;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 400;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 60px;
}



.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 26px;
  word-spacing: 1em;
  left: 50px;
  bottom: 60px;
  color: #ffffff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}


  
  /* PROJECT PAGE CSS */

.logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 30px;
  transition: 1s;
  color: #ffffff;
  width: 190px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 80px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin: auto 0 auto 0;
}

.projectabout {
  grid-column: 1 / span 12;
  padding-left: 20px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
}

  
}





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

.name {
  grid-column: 1 / span 4;
  color: #ffffff;
}

.name h1 {
  line-height: 1.2;
  font-size: 50px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
}

.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 1px;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  line-height: 1;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 400;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 50px;
}

.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 12px;
  word-spacing: 3.5em;
  left: 50px;
  bottom: 60px;
  color: #ffffff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 120px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}
  
  /* PROJECT PAGE CSS */

.logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 30px;
  transition: 1s;
  color: #ffffff;
  width: 120px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 80px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
  margin: auto 0 auto 0;
}

.projectabout {
  grid-column: 1 / span 12;
  padding-left: 20px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 40px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
}

  
.left-image {
  grid-column: 1 / span 12;
  padding-top: 20%;
}
.left-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}
  
.left-image video {
  width: 100%;
  margin: 0 auto 0 auto;
}

.right-image {
  grid-column: 1 / span 12;
}

.right-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}
.right-image video {
  width: 100%;
  margin: 0 auto 0 auto;
}
}


@media only screen and (max-width: 500px) {
.cursor{
  width: 0px;
  height: 0px;
  border: 0px solid #ffeb00;

}
  
  body{
    gap: 5px;
  }
  
.name {
  grid-column: 1 / span 3;
    transform: translate3d(0, 25%, 0px);
	height: 10%;
  color: #ffffff;
}

.name h1 {
  line-height: 1.2;
  font-size: 30px;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  
}
  
  .projectlist{
    grid-column: 4 / span 10;
  }
  
.projectlist li a {
  text-decoration: none;
  color: #ffffff;
  font-variation-settings: 'wght' 300, 'wdth' 300;
  -webkit-text-stroke: 1px;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  line-height: 1;
  transition: font-size 0.5s;
}

.projectlist li a:hover {
  font-variation-settings: 'wght' 500, 'wdth' 400;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 0px;
  font-size: 25px;
}

.footer {
  font-family: 'Commissioner', sans-serif;
  position: fixed;
  font-size: 6px;
  word-spacing: 4.5em;
  left: 20px;
  bottom: 5%;
  color: #ffffff;
  background-color: #5510ff;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: 0.35s;
  letter-spacing: 0;
}

.footer a:hover {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-bottom: 5px solid #ffeb00;
}
  
  
  
.logo {
  grid-column: 1 / span 8;
  padding-top: 50px;
  padding-left: 5px;
  transition: 1s;
  color: #ffffff;
  width: 100px;
}

.hero {
  grid-column: 1 / span 7;
}

.hero img {
  width: 100%;
  margin: auto auto;
  padding-top: 30px;
}

.projectname {
  grid-column: 9 / span 3;
  display: flex;
  justify-content: space-around;
}

.projectname h3 {
  color: #ffffff;
  font-size: 40px;
  text-align: left;
  writing-mode: sideways-lr;
  white-space: pre-wrap;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout {
  grid-column: 1 / span 12;
  padding-left: 5px;
}

.projectabout h4 {
  color: #ffffff;
  font-size: 20px;
  font-variation-settings: 'wght' 600, 'wdth' 100;
}

.projectabout p {
  font-family: 'Commissioner', sans-serif;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.75;
  font-variation-settings: 'wght' 600, 'wdth' 300;
}

.top-image {
  grid-column: 1 / span 12;
}

.top-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}

.left-image {
  grid-column: 1 / span 12;
  padding-top: 20%;
}
.left-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}
  
.left-image video {
  width: 100%;
  margin: 0 auto 0 auto;
}

.right-image {
  grid-column: 1 / span 12;
}

.right-image img {
  width: 100%;
  margin: 0 auto 0 auto;
}
.right-image video {
  width: 100%;
  margin: 0 auto 0 auto;
}
}
