@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    max-width: 100%;
    overflow-x: hidden;
}

body {
    padding: 0;
    background-color: #f3f3f3;
    font-size: 100%;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
}
body::-webkit-scrollbar {
    display: none;
}


.title{
    display: flex;
    position: fixed;
    margin-top: 1.5%;
    margin-left: 3%;
}

.title h1{
    color: #1e1e1e;
    font-weight: 700; 
    font-size: 38px;   
    transition: .2s ease-in-out;
    font-style: bold;
}


.title h1:hover{
    color: 1e1e1e;
    transform: translateX(5%);
}


.title h1 a{
    color: #1e1e1e;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.title h1 a:hover{
    color: 1e1e1e;
    text-decoration: none;
}

.title-mobile{
    display: none;
}


.list{
    display: flex;
    position: fixed;
    top: 20%;
    left: 0;
    color: #1e1e1e;
    margin-left: 3%;
}


.list ul li{
    color: #946640;
    font-size: 20px;
    list-style: none;
    padding: 14px;
    transition: .2s ease-in-out;
    letter-spacing: .5px;
}

.list ul li.active{
    color: #946640;

    transform: translateX(10%);
    list-style: square;
}

.list ul li:hover{
    transform: translateX(10%);
    list-style: square;
    font-weight: 700;
}


.list ul li a{
    color: #1e1e1e;
    text-decoration: none;
    transition: .2s ease-in-out;
}


.list ul li a.active{
    color: #946640;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease-in-out;
    list-style: square;
}

.list ul li a:hover{
    color: #946640;
    text-decoration: none;
    list-style: square;
}

.rights{
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: 3%;
    margin-bottom: 1%;
}

.rights p{
    color: #1e1e1e;
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 1px;
}


/* Image gallery */

.container-name{
    padding: 35px 0px 10px;
    margin-left: 20%;
    display: block;
}


.container-name h1{
    color: #1e1e1e;
    font-size: 24px;
    font-weight: bold;
}

.container-name h2{
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 300;
}

.container-name h3{
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 400;
}

.accent{
    color: #1e1e1e;
    font-weight: 500;
}

.container {
    width: 80%;
    margin-left: 20%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* this is what controls how many columns there are*/
    grid-auto-rows: 350px;
    grid-gap: 5px;
    grid-auto-flow: row;
 

}

.container-bigger{
    width: 80%;
    margin-left: 20%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* this is what controls how many columns there are*/
    grid-auto-rows: 450px;
    grid-gap: 5px;
    grid-auto-flow: row;
}

.gallery-item {
    width: 100%;
    height: 100%;
    position: relative;

}

.gallery-item .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}




.gallery-item .image img {
    opacity: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: .5s ease-in-out;
}

.gallery-item:hover .image img {
    transform: scale(1.025);
}

.gallery-item .proj_name {
    text-align: center;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E9E9E9;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 2;
    transition: .5s ease-in-out;
}

.gallery-item:hover .proj_name {
    opacity: 1;
    padding: 1em;
    width: 100%;
}


@media (max-width: 1100px){

       
    html{
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        padding: 0;
        background-color: #f3f3f3;
        font-size: 100%;
        margin: 0;
        top: 0;
        left: 0;
        width: 100%;
    }
    body::-webkit-scrollbar {
        display: none;
    }
    
    .title{
      display: none;
      position: absolute;
      left: 30%;
      margin-top: 2%;
      margin-left: 0;
    }
    
    
    .title h1:hover{
        color: #1e1e1e;
        transform: translateX(5%);
    }
    
    
    .title h1 a{
        color: #1e1e1e;
        text-decoration: none;
        transition: .2s ease-in-out;
    }
    
    .title h1 a:hover{
        color: #1e1e1e;
        text-decoration: none;
    }
    
    
    .title h1{
        font-weight: 900;
        color: #1e1e1e;
    }
    
    

.title-mobile{
    display: block;
    position: fixed;
    bottom: 0;
    padding: 2%;
    margin-left: 0;
    height: auto;
    width: 100%;
    z-index: 0;
    background-color: #f3f3f3;
  }

  .title-mobile h1{
    font-weight: 500;
    text-align: center;
    font-size: 26px;
    color: #1e1e1e;
}

.title-mobile a{
    display: inline-block;
    height: 60px;
    width: 156px;
    background-color: transparent;
    font-size: 20px;
    text-align: center;
    line-height: 60px;
    border-radius: 12px;
    border-style: solid;
    border-width: 0px;
    border-color: #020202;
    color: #1e1e1e;
    transition: all 0.5s ease-in-out;
    margin: 02% 0 0;
    
}

  .title-mobile h1:hover{
      color: #1e1e1e;
      transform: translateX(0%);
  }
  
  
  .title-mobile h1 a{
      color: #1e1e1e;
      text-decoration: none;
      transition: .2s ease-in-out;
  }
  
  .title-mobile h1 a:hover{
      color: #1e1e1e;
      text-decoration: none;
  }
    
      
    
    .list{
      display: none;
      position: absolute;
      top: 16%;
      left: 24%;
      color: #1e1e1e;
      margin-left: 3%;
    }
    
    .list ul{
      text-align: center;
    }
    
    
    .list ul li{
        color: #1e1e1e;
        font-size: 20px;
        list-style: none;
        padding: 14px;
        transition: .2s ease-in-out;
        letter-spacing: .5px;
    }
    
    .list ul li.active{
        color: #1e1e1e;
    }
    
    .list ul li:hover{
        font-weight: 700;
    }
    
    
    .list ul li a{
        color: #1e1e1e;
        text-decoration: none;
        transition: .2s ease-in-out;
    }
    
    
    .list ul li a.active{
        color: #1e1e1e;
        text-decoration: none;
        transition: .2s ease-in-out;
        list-style: square;
    }
    
    .list ul li a:hover{
        color: #1e1e1e;
        text-decoration: none;
    }
    
    
    .accent{
        color: #1e1e1e;
        font-weight: 500;
    }
    
    
    .container {
        width: 100%;
        margin-left: 0%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* this is what controls how many columns there are*/
        grid-auto-rows: 160px;
        grid-gap: 5px;
        grid-auto-flow: row;
     
    
    }
    
    .container-bigger {
        width: 100%;
        margin-left: 0%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* this is what controls how many columns there are*/
        grid-auto-rows: 200px;
        grid-gap: 5px;
        grid-auto-flow: row;
     
    
    }
    
   .final-item {
    padding-bottom: 5rem; 
   }

.container-name{
    display: block;
    padding-top: 0;
    margin-top: 10%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 5%;
}
    
    .container-name h1{
        color: 1e1e1e;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }
    
    .container-name h2{
        color: #1e1e1e;
        font-size: 16px;
        font-weight: 300;
    }
    
    .container-name h3{
        color: #1e1e1e;
        font-size: 16px;
        font-weight: 400;
        text-align: justify;
    }
    
    .gallery-item {
        width: 100%;
        height: 100%;
        position: relative;
    
    }
    
    .gallery-item .image {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    
    
    
    .gallery-item .image img {
        opacity: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        transition: .5s ease-in-out;
    }
    
    .gallery-item:hover .image img {
        transform: scale(1.025);
    }
    
    .gallery-item .proj_name {
        text-align: center;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #E9E9E9;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 1px;
        pointer-events: none;
        z-index: 2;
        transition: .5s ease-in-out;
    }
    
    .gallery-item:hover .proj_name {
        opacity: 1;
        padding: 1em;
        width: 100%;
    }
    
    .rights{
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      margin-left: 12.5%;
      margin-bottom: 1%;
    }
    
}
