/*import fonts from fonts.css file */
@import url(./fonts.css);
@import "scss.css";
@import "media.css";
@import "grid.css";

/* Logo */
.top_logo {
    text-align: center;
    padding-top: 20px;;
    color: white;
    font-size: calc(2.656vw + 15px);
    text-decoration: none;
}

.top_logo_under {
    text-align: center;
    color: white;
    font-size: calc(0.938vw + 15px);
    text-decoration: none;
}

.logo_a {
  text-decoration: none;
}

.top_logo_div {
  width: fit-content;
  height: fit-content;
  margin:  0 auto;
}
/* /Logo */

/* Navbar Desk */
ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-top: 65px;
  }

.nav_links {

    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.nav_a {
    text-decoration: none;
    font-size: calc(1.215vw + 6px);
    color: #FFFFFF;
    display: inline-block;
    position: relative;
}

.nav_slash {
    padding-right: 19px;
    padding-left: 13px;
    padding-bottom: 13px;
}

.nav_slash_black {
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 13px;
}

.nav_links:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0px;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav_links:hover:after{
  transform: scaleX(1);
  transform-origin: bottom left;
  align-items: center;
  text-decoration: none;
}

.nav_a:hover{
    color: white;
}

.nav_links1 {

  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.nav_links1:after{
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0px;
background-color: white;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
max-width: 80px;
}

.nav_links1:hover:after{
transform: scaleX(1);
transform-origin: bottom left;
align-items: center;
text-decoration: none;
}

.nav_links2 {

  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.nav_links2:after{
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0px;
background-color: white;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
max-width: 140px;
}

.nav_links2:hover:after{
transform: scaleX(1);
transform-origin: bottom left;
align-items: center;
text-decoration: none;
}

.nav_links3 {

  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.nav_links3:after{
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0px;
background-color: white;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
max-width: 105px;
}

.nav_links3:hover:after{
transform: scaleX(1);
transform-origin: bottom left;
align-items: center;
text-decoration: none;
}

.nav_links4 {

  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.nav_links4:after{
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0px;
background-color: white;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
max-width: 120px;
}

.nav_links4:hover:after{
transform: scaleX(1);
transform-origin: bottom left;
align-items: center;
text-decoration: none;
}



/* /Nav Desk */

/* Nav @mediascreen */
.nav_desk {
    visibility: visible;
  }
  .menu-icon {
      visibility: hidden;
  }

  @media screen and (max-width : 800px) {
    .menu-icon {
        visibility: visible;
    }
}

@media screen and (max-width : 800px) {
    .nav_desk {
        visibility: hidden;
    }

}
/* /Nav @mediascreen*/


/* Display Grid*/

#grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 200px));
  grid-gap: 66px;
  clear: both;
  padding-top: 7.031vw;



}
#grid > div {
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.grid_container {
    max-height: 210px;
    max-width: 370px;
    margin: 0 auto;
    z-index: 1000;
}

.grid_container:hover {
cursor: pointer;
}

.grid_img {
    width: 100%;
    height: 100%;

    transition: opacity 0.2s, transform 0.2s;
}

.grid_img2 {
  width: 100%;
  height: 100%;

  transition: opacity 0.2s, transform 0.2s;
}


.grid_panel {
    max-width: 1680px;
    height: fit-content;

    margin: 0 auto;
    
}

@media screen and (max-width : 1680px) {
  .grid_panel {
    max-width: 1242px;
  }
}

@media screen and (max-width : 1242px) {
  .grid_panel {
    max-width: 806px;
  }
}

@media screen and (max-width : 806px) {
  .grid_panel {
    max-width: 370px;
  }
}

@media screen and (max-width : 605px) {
  .grid_panel {
    max-width: 370px;
  }
}


.project_title {
  font-size: calc(0.23vw + 10px);
  color: #BCBEC0;
  text-align: left;
  padding-top: 0.521vw;
  margin-left: 3px;
  text-decoration: none;
  position: relative;
}

.grid_container:hover .project_title:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  align-items: center;
  text-decoration: none;

  display: inline-block;
  position: relative;
  transition-delay:0.3s;
}


.grid_container .project_title::after{
  content: '';
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 9px;
  left: 0px;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;

  display: inline-block;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width : 800px) {
  .grid_container {
    z-index: 0;
    padding-top: 0vw;
 }
 #grid {
   margin-top: -115px;
 }
 .container_nav {
  width: 100%;
  height: 120px;
  background-color: black;
  position:fixed;
  z-index: 10;
  top: 0;
}

.menu-icon {
  position: fixed;
  z-index: 11;
}

.nav_desk{
  padding-top: 95px;
}
}


@media screen and (max-width : 606px) {
  .grid_container {
      width: 61.056vw;
      height: 34.653vw;
      margin: 0 auto;
  }
}

@media screen and (max-width : 452px) {
    .container_nav {
      width: 100%;
      height: 95px;
      background-color: black;
      position:fixed;
      z-index: 10;
      top: 0;
  }
  #grid {
    margin-top: -180px;
  }
}


@media screen and (max-width : 429px) {
  .container_nav {
    width: 100%;
    height: 95px;
    background-color: black;
    position:fixed;
    z-index: 10;
    top: 0;
}
.top_logo {
  text-align: center;
  padding-top: 20px;;
  color: white;
  font-size: calc(1.756vw + 15px);
}

.top_logo_under {
  text-align: center;
  color: white;
  font-size: calc(0.038vw + 15px);
}

.project_title {
  font-size: calc(0.13vw + 14px);
}
}


@media screen and (max-width : 408px) {
  #grid {
      grid-template-columns: repeat(auto-fill, minmax(90.686vw, 1fr));
      grid-gap: 11.176vw;
    }

    .project_title {
      font-size: calc(0.13vw + 8px);
  }
  .menu-icon {
    size: 100px;
  }
  #grid {
    margin-top: -180px;
  }

  .container_nav {
    width: 100%;
    height: 95px;
    background-color: black;
    position:fixed;
    z-index: 10;
    top: 0;
  }
}
/* /Display Grid*/
.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000000000000000;
}

.full-img img {
  width: 90%;
  max-width: 500px;
}

.full-img span {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


.container_left {
  float: left;
  width: 52%;
  height: fit-content;
}

.container_right {
  float: right;
  width: 48%;
  height: fit-content;
}


.project_t_title {
  color: white;
  font-size: calc(1.667vw + 10px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding-left: 90px;
  padding-top: 6.51vw;
}

.project_t_info {
  color: white;
  font-size: calc(0.469vw + 10px);
  color: #adadad;;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-top: -3px;
  padding-left: 90px;
}

.about {
  color: white;
  font-size: calc(0.521vw + 10px);
  color: #BCBEC0;
  margin-top: 30px;
  padding-left: 90px;
  max-inline-size: 830px;
  padding-right: 70px;
}

.link_about{
  font-size: calc(0.365vw + 10px);
  color: #BCBEC0;
  text-decoration: none;
  padding-left: 90px;
}

.link {
  font-size: calc(0.313vw + 10px);
  color: #BCBEC0;
  text-decoration: none;
  padding-left: 90px;
}

.link:hover{
  color: #d3d3d3;
  text-decoration: none;
}

@media screen and (max-width : 800px) {
  .container_left {
    margin: 0 auto;
    width: 100%;
  }

  .container_right {
    margin: 0 auto;
    width: 100%;
    padding-top: 300px
  }

  .project_t_title{
    padding-top: 80px;
  }

  .about {
    padding-right: 70px;
  }
}

.grid_img {
  width: 100%;
  height: 100%;
  transition: opacity 0.2s, transform 0.2s;
}

.grid_img:hover {
  transition-delay: 0.3s;
  opacity: 0.8;
transform: scale(1.02);
}


