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

@font-face {
    font-family: "NeueMontreal";
    src: url("../font/NeueMontreal-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

a{
    text-decoration: none;
    color: #000;
}

h1{
    font-size: 2.2em;
    font-family: "NeueMontreal";
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.3;

}

h2 {
    font-size: 1.8em;
    font-family: "NeueMontreal";
    -webkit-font-smoothing: antialiased;

}

h3{
    font-size: 1.5em;
    font-family: "NeueMontreal";
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased;


}

p{
    font-family: "NeueMontreal";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

a:hover{
    color: rgb(0, 255, 119);
    transition: 0.4s;
}

::-moz-selection {
    color: rgb(32, 32, 31);
    background: rgb(0, 255, 119);
  }
  
::selection {
    color: rgb(32, 32, 31);
    background: rgb(0, 255, 119);
}

body{
    width: 100%;
    font-family: "NeueMontreal";
    -webkit-font-smoothing: antialiased;
}

.container{
    width: 90%;
    margin: 0 auto;
}


  .logo-container{
    display: flex;
    justify-content: space-between;
    padding: 5vh 5vw 12vh 5vw;
  }

  .social-container{
    padding-top: 5vh;
    font-size: 1.3em;
    letter-spacing: 10px;
  }



  .ngd-circle{
    width: 100px;
    transform: translate(0, 0);
    animation: ngd_rotation 13s infinite linear;
  }

 @keyframes ngd_rotation{
    0%{
        transform: translate(0, 0) rotate(0deg);
    }
    100%{
        transform: translate(0, 0) rotate(360deg);
    }
 } 

.bg-caption{
    font-size: 2.6em;
    line-height: 1.4;
}

.project-container{
    position: relative;
    width: 100%;
    display: block;
    overflow-x: scroll;
   
}

.project-box-container{
    width:fit-content;
    display: flex;
}

.project-box{
    padding: 6vh 0;
    width: 46.6vw;
    padding-right: 40px;
}

.project-box:first-child{
    margin-left: 5vw;
}

.project-image{
    width: 100%;
    border-radius: 10px;
    
}

.arrow{
    position:relative;
    height: 4vh;
    top: 4vh;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#Layer_1{
    width: 70px;
}

p{
    padding: 10px 0;
    color: #7B7B7B;
}


.footer{
    height: 12vh;
    min-height: 80px;
    line-height: 12vh;
    display: flex;
    font-size: 1.3em;
    justify-content: space-between;
}

hr{
    border: 0.5px solid #000;
}

.hr-white {
    border: 0.5px solid #fff;
}


/* Media query */


@media (max-width: 1000px) {


    .project-box{
        padding: 6vh 0;
        width: 80vw;
        padding-right: 40px;
    }

    .bg-caption{
        font-size: 2.2em;
        line-height: 1.4;
        font-family: "NeueMontreal";
        -webkit-font-smoothing: antialiased;
        font-weight: 400;
    }

    .footer{
        font-size: 1.2em;
        font-family: "NeueMontreal";
        -webkit-font-smoothing: antialiased;
        font-weight: 400;
    }
}

@media (max-width: 700px) {


    .social-container{
        font-size: 1.4em;
        letter-spacing: 10px;
        padding-right: 4vw;
      }

    .logo-container{
        padding: 5vh 0 7vh 5vw;
      }

      .ngd-circle{
        width: 85px;
      }

    .project-box{
        padding: 6vh 0;
        width: 100vw;
        padding-right: 40px;
    }

    .project-info{
        padding-top: 5px;
    }

    .bg-caption{
        font-size: 1.9em;
        font-family: "NeueMontreal";
        -webkit-font-smoothing: antialiased;
        font-weight: 400;
    }

    .tagline-container{
        margin: 8px 0 15px 0;
    }
    .tagline{
        font-size: 0.5em;
        background-color: #7B7B7B;
    }

    .footer{
        font-size: 1em;
        font-family: "NeueMontreal";
        -webkit-font-smoothing: antialiased;
        font-weight: 400;
    }
}

.project-container {
    -ms-overflow-style: none; 
    scrollbar-width: none;   
}

.project-container::-webkit-scrollbar {
    display: none;  
}


.tagline-container{
    display: flex;
    gap:10px;
    margin: 15px 0 20px 0;
}

.tagline {
    font-size: 0.8em;
    padding: 6px 12px;
    border: 1px solid #000;
    border-radius: 50px;
    text-transform: uppercase;
    background-color: #fff;
    white-space: nowrap; ;
    margin: 0px;
    height: 30px;
    line-height: 20px;
}

.more-taglines {
    font-size: 0.8em;
    padding: 8px 12px;
    border-radius: 50px;
    background-color: #efeded;
    color: #a7a7a7;
    white-space: nowrap;
    display: none; 
    height: 30px;
    line-height: 20px;
}