/* COLORS
color: #08c79e;
color: #00B5B4;
color: #00A1C1;
color: #2C7DAB; USED TO BE #008AC0;
color: #585895;
*/

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    /*overflow-x: hidden;*/
}

main {
    position: relative;
    display: grid;
    justify-content: center;
    width: 100%;
}

ul {
    list-style-type: disc;
    padding-left: 30px;
}

li {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: white;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    transition: 1s;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(255,255,255);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #08c79e;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00B5B4;
}

/* #index-main {
    /* background-image: url(../assets/banner-index.jpg);
    background-repeat: no-repeat;
    background-size: cover; */
    /* background-color: #efe;
} */


section {
    display: grid;
    height: 100vh;
    width: 100%;
}

a {
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
}

.hide {
    padding: 0!important;
    margin: 0!important;
}

.module a {
    text-decoration: underline;
}

/* .green {
    color:#08c79e!important;
}

.greenblue {
    color:#00B5B4!important;
}

.blue {
    color:#00A1C1!important;
}

.midblue {
    color:#2C7DAB!important;
}

.perry {
    color:#585895!important;
} */

nav {
    display: grid;
    grid-template-columns: 90px auto 90px;
    z-index: 4;
    list-style-type: none;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
    background-color: rgb(8, 199, 158);
    height: 90px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.navHeight {
    height: 250px!important;
}

.navCorner {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
    box-shadow: none!important;
}

#navi .closebtn {
    position: absolute;
    top: 100px;
    right: 30px;
    font-size: 32px;
    margin-left: 50px;
    font-family: 'Outfit', sans-serif;
    color: white;
    text-shadow: 1px 1px rgb(0,0,0,0.3);
    text-decoration: none!important;
    display: none;
}

.smol-nav {
    display: none;
    grid-template-columns: 90px auto 90px;
    z-index: 4;
    list-style-type: none;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
    background-color: rgb(8, 199, 158);
    height: 90px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    /* transition: 1s; */
}

#navi, .navi {
    height: 0;
    width: 100%;
    /* position: fixed; */
    z-index: 3;
    top: 0;
    right: 0;
    background-color: #08c79e;
    overflow-y: hidden;
    transition: 0.5s;
    box-shadow: 0 0 .8rem 0 rgba(0,0,0,.3);
}

.navi-box h2 {
    font-size: 32px;
    font-family: 'Outfit', sans-serif;
    margin: 17px 5px;
}

.navi-box h2 a {
    color: white;
}

.navi-box {
    grid-template-rows: auto auto auto auto;
    row-gap: 5px;
    margin: 0 30px;
}

nav .stick {
    position: sticky;
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto auto auto;
    grid-gap: 5vw;
    width: auto;
    padding: 0 50px;
}

nav .item {
    position: relative;
    text-align: center;
    display: grid;
    align-items: center;
    cursor: pointer;
    float: left;
}

.smol-nav .item {
    position: relative;
    text-align: center;
    height: 80px;
    width: 81px;
    display: grid;
    align-items: center;
    cursor: pointer;
}

.x-nav {
    background: none!important;
    font-size: 32px;
    overflow: hidden;
}

.smol-nav .item .nav-open {
    background: linear-gradient(to bottom, #fff 0%, #fff 20%, transparent 20%, transparent 40%, #fff 40%,
    #fff 60%, transparent 60%, transparent 80%, #fff 80%, #fff 100%);
    padding: 5px;
    position: absolute;
    right: 19px;
    top: 32px;
    width: 33px;
    height: 22px;
    cursor: pointer;
    overflow-x: hidden; 
    border: 0;
}


nav .item p {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    color: white;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 30%);
    transition: 0.7s;
}

nav .item p:hover {
    transition: 0.7s;
    color: #EEE;
        text-shadow: 2px 2px 2px rgb(0 0 0 / 30%);
    cursor: pointer;
}

.pfp {
    width: 90px;
    height: auto;
    border-bottom-left-radius: 15px;
    border-right: 3px solid white;
}

#socs {
    align-items: center;
    display: grid;
    grid-template-columns: 25px 25px;
    grid-gap: 10px;
}

.soc {
    width: 25px;
    height: auto;
    float: left;
    margin-right: 5px;
}

.module {
    width: auto;
    max-width: 1000px;
    height: auto;
    background-color: rgb(8, 199, 158);
    border-radius: 15px;
    /* border: 4px solid #FFF; */
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
    padding: 30px;
    margin: 15px 10px;
    transition: 1s;
    display: grid;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 30%);
}
/* 
.module div {
    padding: 0 30px;
} */

.module-center {
    justify-content: center;
    align-items: center;
}

.module h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    color: white;
    padding-bottom: 3px;
}

.module h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    line-height: 36px;
    color: white;
    padding: 20px 0 16px 0;
}

.module h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 28px;
    color: white;
    padding: 18px 0 14px 0;
}

.module p {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: white;
    /* text-shadow: 1px 1px rgb(0,0,0,0.3); */
}

.module:nth-child(2), .module:nth-child(8) {
    background-color:#00B5B4!important;
}

.module:nth-child(3), .module:nth-child(7), .module:nth-child(9) {
    background-color:#00A1C1!important;
}

.module:nth-child(4), .module:nth-child(6), .module:nth-child(10) {
    background-color:#2C7DAB!important;
}

.module:nth-child(5), .module:nth-child(11) {
    background-color:#585895!important;
}

.module:last-child {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
    margin-bottom: 0!important;
}

.module-prev a, .module-next a {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: white;
    padding-bottom: 3px;
    text-decoration: none;
}

.module-prev {
    float: left;
}

.module-next {
    float: right;
}


.module-container {
    width: 100%;
}

.module-end {
    display: grid;
    grid-template-areas:
        'prev auto next';
    column-gap: 5vw;
    width: auto;
    text-align: left;
}

#bio {
    grid-template-areas: 
        'bio-title ico' 
        'bio-desc ico';
    row-gap: 0;
    column-gap: 10px;
    margin-top: 35px;
    padding-top: 35px;
    min-height: 190px;
}

#bio_title {
    height: 60px;
    grid-area: bio-title;
}

#bio_desc {
    max-width: 400px;
    grid-row: 2;
    height: 100px;
    grid-area: bio-desc;
}

#bio_img_con {
    grid-row: 1 / span 2;
    width: 160px;
    height: 160px;
    justify-self: right;
    grid-area: ico;
}

#bio_img {
    border-radius: 100px;
    width: 160px;
    height: 160px;
    border: 4px solid white;
}

#skills {
    grid-template-areas: 
        'title title'
        'brick-1 brick-2'
        'brick-3 .';
    column-gap: 10px;
}

.template {
    grid-template-areas: 
        'title title'
        'brick-1 brick-2'
        'brick-3 .';
    column-gap: 10px;
}

.info {
    row-gap: 10px;
}

.title {
    /* grid-column: 1 / span 3; */
    grid-area: title;
}

.titce {
    justify-content: center;
    text-align: center;
}

.title h1 {
    color: white;
}

.brick-1 {
    max-width: 400px;
    grid-area: brick-1;
}

.brick-2 {
    max-width: 400px;
    grid-area: brick-2;
}

.brick-3 {
    max-width: 400px;
    grid-area: brick-3;
}

.template-exp {
    grid-template-areas: 
        'title title'
        'exp-1 exp-1'
        'show-1 show-1'
        'capt-1 capt-1'
        'show-2 show-2'
        'capt-2 capt-2'
        'show-3 show-3'
        'capt-3 capt-3';
    column-gap: 10px;
    justify-items: center;
    justify-content: center;
}

.exp-1 {
    grid-area: exp-1;
    max-width: 700px;
    text-align: left;
    justify-self: center;
}

.exp-1 p {
    font-size: 18px;
    line-height: 28px;
}

.show-1 {
    grid-area: show-1;
    text-align: center;
    width: 75%;
}

.show-2 {
    grid-area: show-2;
    width: 75%;
}

.show-3 {
    grid-area: show-3;
    width: 75%;
}

.show-1 iframe, .show-2 iframe, .show-3 iframe, .show-1 video, .show-2 video, .show-3 video, .show-1 img, .show-2 img, .show-3 img {
    margin: 20px 0 0 0;
    padding: 0;
    width: 100%;
}

.capt-1 {
    grid-area: capt-1;
}

.capt-2 {
    grid-area: capt-2;
}

.capt-3 {
    grid-area: capt-3;
}

.capt-1 p, .capt-2 p, .capt-3 p {
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
    max-width: 700px;
    text-align: center;
}

.template-gallery {
    grid-template-columns: auto auto auto;
    column-gap: 10px;
    row-gap: 10px;
    justify-items: center;
    display: grid;
    justify-content: center;
}

.gal-img {
    display: grid;
    height: 150px;
    width: auto;
    padding: 10px 10px 0 10px;
}

.gal-capt {
    margin-bottom: 10px;
    font-size: 12px!important;
    font-style: italic;
    max-width: 50%;
    text-align: center;
}