/*
super green= #34fdb4
ice green= #cafff1
less green= #25bd87
mean green= #197d59

better red= #f43a6f
red handed= #C00E21

royal purple= #5d33c8
deep purple= #211248, rgba(33,18,72,1)
deeper purple= #0C0619, rgba(12,6,25,1)

almost white= #efefef;
grey= #333333;
*/

body{/* display: flex; *//* width: 100%; *//* height: 100%; */padding-bottom: 20px;margin-bottom: 20px;background-color: #0c0619;background: rgba(12,6,25,1);background: -moz-linear-gradient(-33deg, rgba(12,6,25,1) 0%, rgba(33, 18,72,1) 100%);background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(12,6,25,1)), color-stop(100%, rgba(33, 18,72,1)));background: -webkit-linear-gradient(-33deg, rgba(12,6,25,1) 0%, rgba(33, 18,72,1) 100%);background: -o-linear-gradient(-33deg, rgba(12,6,25,1) 0%, rgba(33, 18,72,1) 100%);background: -ms-linear-gradient(-33deg, rgba(12,6,25,1) 0%, rgba(33, 18,72,1) 100%);background: linear-gradient(135deg, rgba(12,6,25,1) 0%, rgba(33, 18,72,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#211248', endColorstr='#5d33c8', GradientType=1 );font-family: 'Open Sans', Arial, sans-serif;font-weight: 400;font-size: 16px;color: #efefef;}

strong{
    font-weight: 700;
}

.containd{
    padding: 2% 10%;
}

p, li{
    line-height: 1.5em;
}

section{
    padding-top: 50px;
}

h1,h2{
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #34fdb4;
}

h1{
    font-size: 2em;
    margin: 14px 0px;
}

h2{
    font-size: 1.5em;
    margin: 12px 0px;
}

h3{
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    margin: 8px 0px;
/*    color: #cafff1;*/
}

p{
    max-width: 640px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

li{
    margin-bottom: 10px;
}

/*using transition all intead of color*/
/*otherwise acc-diamond-h transition doesnt work*/
a{
    text-decoration: none;
    color: #f43a6f;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

a:hover{
    color: #34fdb4;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

img{
    border-radius: 0.1em;
    -moz-border-radius: 0.1em;
    -webkit-border-radius: 3px;
    box-shadow: 1px 1px 8px rgba(12,6,25,1);
}

a img{
    box-shadow: none;
}

/*special utility classes*/

/*note is used for decorating subtext*/
/*this particularly applies to "In Progress" tags*/
.note{
    color: #5d33c8;
    background: rgba(12,6,25,0.5);
    padding: 5px;
    font-weight: 400;
    font-style: italic;
    border-radius: 0.1em;
    -moz-border-radius: 0.1em;
    -webkit-border-radius: 0.1em;
}

.note:before{
    content: "*";
}

.acc-diamond-v{
    display: block;
    position: relative;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    margin: auto;
    margin-bottom: 16px;
    border: 8px solid transparent;
    border-bottom: 16px solid #34fdb4;
}

.acc-diamond-v:after{
    display: block;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 16px;
    left: -8px;
    border: 8px solid transparent;
    border-top: 16px solid #25bd87;
}

a:hover .acc-diamond-v{
    display: block;
    position: relative;
    width: 0;
    height: 0;
    top: -30px;
    left: -30px;
    margin: auto;
    margin-bottom: 16px;
    border: 8px solid transparent;
    border-bottom: 16px solid #f43a6f;
    transform-origin: bottom;
    transform: rotate(-90deg);
    transition: all 0.3s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

a:hover .acc-diamond-v:after{
    display: block;
    position: absolute;
    content: "Go";
    width: 0;
    height: 0;
    top: 56px;
    left: -8px;
    border: 8px solid transparent;
    border-top: 16px solid #c00e21;
    transition: all 0.3s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.acc-diamond-h{
    display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    margin: 0 20px 0 20px;
    top: 4px;
    border-top: 8px solid transparent;
    border-left: 16px solid #f43a6f;
    border-bottom: 8px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.acc-diamond-h:after{
    display: block;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: -16px;
    border-top: 8px solid #c00e21;
    border-right: 16px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

a:hover .acc-diamond-h{
    border-top: 8px solid transparent;
    border-left: 16px solid #34fdb4;
    border-bottom: 8px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

a:hover .acc-diamond-h:after{
    border-top: 8px solid #25bd87;
    border-right: 16px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.acc-tris:before{
    display: inline-block;
    position: relative;
    content: "";
    width: 0;
    height: 0;
    margin-right: 20px;
    border: 8px solid transparent;
    border-right: 16px solid #34fdb4;
}

.acc-tris:after{
    display: inline-block;
    position: relative;
    content: "";
    width: 0;
    height: 0;
    margin-left: 20px;
    border: 8px solid transparent;
    border-left: 16px solid #25bd87;
}

.acc-tri-l{
    display: block;
    /* position: absolute; */
    content: "";
    width: 0;
    height: 0;
    top: 16px;
    left: -8px;
    border: 8px solid transparent;
    border-right: 16px solid #c00e21;
}

.acc-tri-r{
    display: block;
    /* position: absolute; */
    content: "";
    width: 0;
    height: 0;
    top: 16px;
    left: -8px;
    border: 8px solid transparent;
    border-left: 16px solid #c00e21;
}


/*scrn utilities are used to span an img screenshot of a website or app*/
/*these will usually be wrapped with an anchor, hence the hover state and opacity*/
.scrn{
    display: block;
    position: relative;
    background-color: #efefef;
    background-color: #0C0619;
    margin-bottom: 5%;
    opacity: 0.8;
    border-radius: 0.1em;
    -moz-border-radius: 0.1em;
    -webkit-border-radius: 0.1em;
    box-shadow: 1px 1px 8px rgba(12,6,25,1);
}

/*dim is added to scrn to override opacity on scrns with no anchor*/
.scrn.dim{
    opacity: 0.3;
}

.scrn-desk{
    padding: 4% 4% 8% 4%;
    
}

.scrn-mob{
    max-width: 200px;
    padding: 5% 1% 7% 1%;
}

a .scrn:hover{
    opacity: 0.9;
}

.usage-list{
    display: block;
    max-width: 400px;
    margin: auto;
    font-weight: 700;
}

.usage-list li{
    display: inline-block;
    position: relative;
    height: auto;
    margin: 4px 12px;
    color: #211248;
}

.usage-list li:before{
    display: inline-block;
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
    padding: 0px 10px;
    background-color: #34fdb4;
    z-index: -1;
    transform: skew(-10deg);
    -moz-transform: skew(-10deg);
    -webkit-transform: skew(-10deg);
    
}

#intro{
/*    min-height: 100vh;*/
    padding-bottom: 120px;
}

#intro .row:first-child{
    margin-top: 10%;
    
}

.intro-logo{
    box-shadow: none;
}

#intro h1{
    margin-top: 60px;
    color: #efefef;
}

#intro a{
    margin-top: 10%;
}

#bio{
/*    min-height: 100vh;*/
    padding-bottom: 120px;
}

#bio ul{
    margin-right: 10%;
}

#projects{
/*    min-height: 100vh;*/
    padding-bottom: 120px;
}

#projects .row:last-child{
/*    background-color: #211248;*/
    margin-top: 100px;
    font-size: 1.5em;
}

#projects .project{
    padding-bottom: 70px;
}

.project h3{
    margin-top: 10%;
}

.bg-img{
    display: block;
    position: absolute;
    width: 100%;
    height: 1875px;
    opacity: 0.25;
    z-index: -1;
}

.bg-head{
    top: 0px;
    left: 0px;
    background: no-repeat  center/50% url(../img/head.png);
    background-position: 100% 0%;
}

.bg-grow{
    top: 120vh;
    left: 0px;
    background: no-repeat  center/40% url(../img/grow.png);
    background-position: 50% 0%;
}


.bg-build{
    top: 250vh;
    left: 0px;
    background: no-repeat  left/100% url(../img/build.png);
    background-position: -25vw 0%;
}

/*
.bg-grow_2{
    position: absolute;
    top: 535vh;
    left: 0px;
    background: no-repeat  center/200% url(../img/grow.png);
    background-position: 50% -70%;
}
*/

@media (max-width: 480px){
    
    .row{
        margin-bottom: 7px;
    }
    
    .col{
        margin-bottom: 7px;
        padding-right: 3%;
    }
    
    .containd{
        padding: 0 3% 0 6%;
    }
    
/*    possibly move the breakpoint col modifiers to containd.css*/
/*    .mxs-whole reperesents element that should be whole on extra-small screens*/
    .mxs-whole{
        width: 100%;
    }
    
    .mxs-third{
        width: 33.33%;
    }
    
    body{
        font-size: 0.7em;
    }
    
    h1{
        font-size: 1.2em;
        margin: 15px 0px;
    }

    h2{
        font-family: 'Raleway', Arial, sans-serif;
        font-size: 1em;
        margin: 12px 0px;
    }

    h3{
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 0.9em;
        margin: 8px 0px;
    }

    p{
        max-width: 375px;
        margin-bottom: 10px;
    }
    
    li{
        margin-bottom: 5px; 
    }
    
    #intro{
    padding-bottom: 20px;
}
    
    #intro p{
        margin-left: 0px;
    }
    
    #intro h1{
        margin-top: 80px;
    }
    
    .intro-logo{
        display: block;
        width: 70px;
        margin-bottom: 20px;
    }
    
    #intro .row:first-child{
        margin-top: 20%;
    }
/* 
    #intro .row:last-child{
        align-items: baseline;
    } */
    
    #projects .scrn-desk{
        width: 60%;
    }
    
    .bg-head{
        display: inline-block;
        position: absolute;
        width: 100%;
        top: 0px;
        left: 0px;
        background: no-repeat  center/200% url(../img/head.png);
        background-position: -100px -20px;
        opacity: 0.2;
    }

    .bg-grow{
        display: inline-block;
        position: absolute;
        width: 375px;
        top: 115vh;
        left: 0;
        background: no-repeat  center/100% url(../img/grow.png);
        opacity: 0.2;
    }

    .bg-build{
        display: inline-block;
        position: absolute;
        width: 375px;
        top: 175vh;
        left: 0;
        background: no-repeat  center/100% url(../img/build.png);
        opacity: 0.2;
    }

}