
/* Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&display=swap');


/* --------------General Style------------- */
body{
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;

}
* {

    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

::before, ::after{
box-sizing: border-box;
}
.section{
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 12px 15px;
    display: block;
    position: fixed;
    left: 250px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.section.active{
    opacity: 1;
    z-index: 2;
}

.section-title{
    background-color: white;
}

.row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
}

.container{
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(87, 87, 87, 0.10);
}
/*
.hidden{
    display: none! important;
}*/

/* --------------Aside------------- */
.aside{
    width: 250px;
    background-color: #FFFFFF;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    border-right: 0px solid #EBEBEB;
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgba(87, 87, 87, 0.10);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.aside .logo{
    display: flex;
    margin-top: 20px;
}

.aside .logo a{
font-size: 30px;
margin-left: 15px;
line-height: 120%;
font-weight: 700;
background-color: #FFFFFF;
color: #313131;
text-decoration: none;
}


.aside .logo  img{
    margin: 0px 0px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    float: left;
    
}


.aside .nav-toggler{
    height: 40px;
    width: 40px;
    border: 3px solid #dddddd;
    cursor: printer;
    position: fixed;
    left: 60px;
    top: 40px;
    z-index: 11;
    border-radius: 4px;
    background-color: white;
    /* display: -ms-flexbox;
    display: flex; */
    display: none;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.aside .nav-toggler span{
    height: 2px;
    width: 20px;
    display: inline-block;
    background-color: #313131;
    position: relative;
}

.aside .nav-toggler span::before{
    background-color: #313131;
    content:'';
    height: 2px;
    width: 20px;
    position: absolute;
    top: -7px;
    left: 0;
}
.aside .nav-toggler span::after{
    background-color: #313131;
    content:'';
    height: 2px;
    width: 20px;
    position: absolute;
    top: 7px;
    left: 0;
}

.aside .nav {

   list-style: none;
   vertical-align: middle;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);

}

.aside .nav li{
    display: block;
}

.aside .nav li a {
    font-size: 18px;
    display: flex;
    font-weight: 500;
    color: #313131;
    text-decoration: none;
    line-height: 350%;
    -webkit-transition: padding-left 0.5s ease;
    transition: padding-left 0.5s ease;
}

.aside .nav li a:hover{
    color: #313131; 
    font-weight: 700;
    padding-left: 12px;
}

.aside .nav li a.active{
    color: #313131;
    font-weight: 700;
    padding-left: 12px;
}
    

 .aside .copyright-text {
     background-color: #FFFFFF;
     font-size: 12px;
     font-weight: 500;
     position: absolute;
     bottom: 0;
     margin-bottom: 12px;
     color: #a3a3a3;
 }

  .website-design {
    background-color: #FFFFFF;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    right: 0px;
    margin-top: 60px;
    max-width: 250px;
    right: -100%;
    transform: translateX(-100%);
    color: #a3a3a3;
    text-align: right;
}


/* --------------------------------------index------------------------------------- */

.index{
    min-height: 100vh;
    height: auto;
    display: -ms-flexbox;
}

.index .container {
height:auto;
min-height: 100%;
display: flex;
}

.index .container .intro{
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
    max-height: 400px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #313131;
}

.index .intro h1{
    font-size: 36px;
    color: #313131;
    }

 .index .intro p{
    margin: 0;
    line-height: 1.7;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    max-width: 650px;
    }

    .index .container .portrait {
        max-width: 450px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 650px;
        margin-right: 25px;
    }

    .index .container .portrait img{
        width: 100%;
        background-size: contain;
    }
    


/* --------------------------------------Work------------------------------------- */

.work{
    min-height: 100vh;
    display: flex;
    display: -ms-flexbox;
    padding-top: 12px;
    position: absolute;


}
.work .container{
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
    color: #313131; 
    max-width: 100%;
    height: auto;
    max-height: 100%;
}


.work .work-items{

    vertical-align: middle;
    margin-left: 50px;
    position: absolute;
    margin-top: 50px;
}

.work .work-item-img {
    float: left;
    padding: 10px 13px;
}

.work .work-item-img img{
    max-height: 275px;
    max-width: 325px;
}

/* --------------------------------------Work Sites------------------------------------- */

.work-site{
    min-height: 100vh;
    display: flex;
    display: -ms-flexbox;
}
.work-site h1{
    font-size: 40px;
}

.work-site .container{
    padding: 53px 100px;
    padding-bottom: 30px;
    height: auto;
}
.work-site .intro{
    max-width: 320px;
    position: relative;
    margin-top: -230px;
    margin-left: 30px;
    color: white;
}

.work-site .container .details{
    margin-top: -208px;
    height: 299px;
    width: 230px;
    position: absolute;
    right: 145px;
    max-width: 300px;
    background-color: rgb(58, 58, 58, 0.8);
    color: white;
    padding: 30px;
}

.work-site .details {
    font-weight: 500;
    line-height: 200%;
    font-size: 16px; 
}

.work-site .details .year{
    font-weight: 600;
    line-height: 200%;
    font-size: 22px; 
}
.work-site .details .client{
    font-weight: 600;
    line-height: 200%;
    font-size: 20px; 
}

.work-site .resbrief{
    margin-top: 130px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    
}

.work-site .resbrief >*{
    padding: 10px;
    margin: 10px;
    flex: 1 100%;
}

.work-site .resbrief .brief{
    max-width: 350px;
    
}

.work-site .resbrief .respon{
    max-width: 350px;

}

.work-site .abstract{
    max-width: 810px;
    font-size: 19px;
    line-height: 160%;
    font-weight: 600;
    width: 100%;
    background-color: #f5f5f5;
    padding: 30px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
}

.work-site .resbrief p{
    font-weight: 600;
    color: #313131;
}

.work-site .content p,h2{
    color: #313131;
}


.work-site h2{
    font-size: 20px;
    margin-bottom: 10px;
}

.work-site .content {
    padding: 30px;
}

.content img{
    object-fit: contain;
    width: 100%;
    max-width: 750px;
    margin-top: 20px;
    height: auto;
    margin-bottom: 15px;
}

.work-site .content p{
    font-weight:600 ;
    line-height: 160%;
}

.work-site .process p{
    max-width: 750px;
}

.work-site .results p{
    max-width: 750px;
}

.work-site .figure-text{
    font-size: 12px;
    margin-top: -7px;
}

/* --------------------------------------Unity------------------------------------- */
.Unity .container .unitybg{
    height: 300px;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
}
.work-site .Unity .container .content .results img{
    max-width: 750px;
    margin-left: 0px;
}

.work-site .Unity .details img{
    width: 125px;}

    .work-site .figure-text-u{
        font-size: 12px;
        margin-top: -15px;
    }
/* --------------------------------------Macad------------------------------------- */
.Macad .header-shape{
    height: 300px;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    background-color:#3EAECD;
}

.work-site .Macad .container .details{
    margin-top: -202px;
    height: 300px;
    width: 230px;
}

.work-site .Macad .details img{
    width: 150px;}

 .work-site .figure-text-dr{
        font-size: 12px;
        margin-top: -30px;
    }

/* --------------------------------------Knowledge------------------------------------- */

.Knowledge .intro{
    max-width: 380px;
    position: relative;
    margin-top: -266px;
    margin-left: 30px;
    color: white;
}

.Knowledge .container .bg-knowledge{
    height: 300px;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
}

.work-site .Knowledge .container .details{
    margin-top: -232px;
}

.work-site .Knowledge .container .content .process img{
    max-width: 600px;
    margin-left: 75px;
}

.work-site .Knowledge .details img{
    width: 125px;}

/* --------------------------------------OnYourSide------------------------------------- */
.Onyourside .header-shape{
    height: 300px;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    background-color:#17233D;
}
.work-site .Onyourside .container .details{
    margin-top: -202px;
    height: 300px;
    width: 230px;
}

.Onyourside .intro h1{
    font-family: 'Playfair Display', serif;
    color: #F2EFE4;
}

.Onyourside .intro p{
    color: #F6855C;
}

.work-site .Onyourside .details img{
    width: 125px;
}


/* --------------------------------------Moonlight------------------------------------- */
.Moonlight .header-shape{
    height: 300px;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    background-color:#CA6818;
}

.Moonlight .container .details{
    margin-top: -178px;
    height: 300px;
    width: 230px;
}

.details .departments{
    line-height: 150%;
}

.work-site .Moonlight .container .content .process img{
    max-width: 500px;
    margin-left: 75px;
}

.disclaimer{
    font-weight: 600;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    background-color: #CA6818;
}

.work-site .Moonlight .details img{
    width: 80px;}



/* --------------------------------------Contact------------------------------------- */

.contact{
    min-height: 100vh;
    display: flex;
    display: -ms-flexbox;
}

.contact .contact-list {
    list-style: none;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #313131;
}

.contact .contact-list li {
    margin-bottom: 10px;
}

.contact .contact-list li a{
    font-weight: 600;
    color: #313131;
    text-decoration: none;
    line-height: 200%;
    margin-bottom: 30px;
}

/* --------------Responsive------------- */

@media (max-width:2200px){
    .work .work-items{
        width: 1200px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width:1428px){
    .work {
        height:1000px;
    }
    .work .work-items{
        width: 920px;
        left: 50%;
        transform: translateX(-50%);
    }

    .work .work-item-img img{
        max-width: 255px;
    }
}

@media (max-width: 1318px){
    .work-site .resbrief{
        margin-left: 50px;
        margin-right: 50px;
    }

    .work-site .resbrief .brief{
        max-width: 750px;
    }
    .work-site .resbrief .respon{
        max-width: 750px;
    
    }
}

@media (max-width: 1199px){
    .aside{
        left:-250px;
         }

    .aside.open{
        left: 0px;
    }

    .aside .nav-toggler{
        display: -ms-flexbox;
        display: flex;
        }
    
    .aside .nav-toggler.open{
        left: 270px;
    }
    

    .main content, .section{
        left:0px;
    }

    .index .index-content .intro{
        padding-left: -250px;
    }

    .index .index-content .intro {
        display: block;
        margin-left: 0;
    }

    .work {
        height:1000px;
    }
    .work-site .Knowledge .container .content .process img{
        margin-left: 0px;
        object-fit: contain;
        width: 100%;
        max-width: 750px;
        margin-top: 20px;
        height: auto;
        margin-bottom: 15px;
    }
    .work-site .resbrief .brief{
        max-width: 750px;
        
    }
    
    .work-site .resbrief .respon{
        max-width: 750px;
    
    }

    .work-site .Moonlight .container .content .process img{
        margin-left: 0px;
        object-fit: contain;
        width: 100%;
        max-width: 750px;
        margin-top: 20px;
        height: auto;
        margin-bottom: 15px;
    }
    .work .work-items{
        width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }

    .work .work-item-img img{
        max-width: 325px;
    }
    
}

@media (max-width:1000px){
        .index .container {
        height:auto;
        min-height: 100%;
        }

        .index .container .portrait{
            margin-top: -150px;
            margin-left: 50px;
        }

        .index .container .intro{
            text-align: left;
            padding-left: 50px;
            padding-right: 50px;
            max-height: 400px;
            margin-top: 280px;
            color: #313131;
        }
        .index .container{
            height: 1100px;
        }

        .work .work-items{
            width: 800px;
            left: 50%;
            transform: translateX(-50%);
        }
    
        .work .work-item-img img{
            max-width: 325px;
        }
}

@media (max-width:730px){

    .work {
        height:1600px;
    }
    .work .work-items{
        width: 450px;
        left: 50%;
        transform: translateX(-50%);
    }
    .index .container{
        height: 1400px;
    }
    
}

@media (max-width:650px){
    .index .container{
        height: 1400px;
    }
}
@media (max-width: 530px) {


    .contact .contact-list {
        padding-left: 25px;
    }

    .contact p,a{
        font-size: 12px;
    }

    .contact h1{
        font-size:20px;
    }

    .work-site .container{
        padding-left: 20px;
        padding-right: 20px;
    }

    .work-site .resbrief{
        top: 900px;
    }
}

@media (max-width: 450px) {
    .index .container .intro{
        margin-top: 210px;
    }
}

@media (max-width: 370px) {
    .index .container .intro{
        margin-top: 210px;
    }
}