/* ---------------- base styles ---------------- */
*{
    margin: 0;
    padding: 0;

    /* ----- Color variables ----- */
    --primary-color: #61e786ff;
    --secondary-color: #1be7ffff;
    --extra-color: #efbdebff;
    --warning-color: #ffb800ff;
    --active-color: #ff5714ff;
    --text-color: #DDE8B9;
    --background: #0c0c0c;
    --light-black: #111;

    /* ------ Font variables ------ */
    --quicksand: 'Quicksand', sans-serif;
    --nunito: 'Nunito', sans-serif;
    --trispace: 'Trispace', sans-serif;

    /* ----- website texts ----- */
    --heading-font: var(--trispace);
    --body-font: var(--nunito);
    --rounded-text: var(--quicksand);

    /* ------- font sizes ------ */

    /* breakpoints */
    --large: 1440px;
    --regular: 1360px;
    --small: 1080px;
    --tablet: 960px;
    --smartphone: 520px;
    --pixel: 475px;
    --retina: 360px;
    
}

body{
    background: var(--background);
    color: var(--text-color);
    font-family: var(--quicksand);
    height: 2000px; 
    overflow-x: hidden;                                                                                                                                                                                                                                   ;
}
p{
    color: var(--text-color);
    font-size: 1.1em;
    line-height: 1.5em;
}
.logoimg{
    position: absolute;
    width: 350px;
    z-index: 11;
    margin-left: 40px;
    margin-top: 30px;
}
#geometry-wrapper{
    position: absolute;
    z-index: -999;
    width: 100%;
    padding: 0;
}
#content-wrapper{
    position: absolute;
    z-index: 10;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

/* ------------------//////// hero card ////////---------------- */
#hero{
    /* position: absolute; */
    margin: 120px auto;
    height: 680px;
    width: 100%;
    max-width: 1350px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 50px;
}
.heroimg{
    position: absolute;
    top: -100px;
    right: -40px;
    height: 780px;
}
.sphere-fintip{
    position: absolute;
    width: 180px;
    top: -70px;
    right: 510px;
    transform: skewX(-250deg);
    filter: contrast(2);
    animation: movearound 0.15s linear infinite;
}
#content{
    position: relative;
    padding: 40px;
    padding-top: 80px;
    max-width: 700px;
}
.hello{
    font-size: 1.6em;
    color: #fff;
    letter-spacing: 0.1em;
    margin: 10px 0px;
    font-family: var(--quicksand);
}
.tagline{
    font-size: 3em;
    line-height: 1.4em;
    margin: 20px 0px;
    padding-bottom: 20px;
    color: #777;
    font-family: var(--quicksand);
    font-weight: 700;
    max-width: 600px;
    /* background: rgba( 0, 0, 0, 0.18 ); */
}
#lead-cta{
    display: block;
    width: fit-content;
    margin-top: 30px;
    padding: 20px 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 1;
    border-radius: 40px;
    color: #000;
    font-family: var(--trispace);
    text-decoration: none;
    letter-spacing: 0.1em;
    font-weight: 700;
}
#lead-cta:hover{
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color));
    transform: scale(0.9);
    transition: 0.7s ease;
}
#lead-cta:focus{
    outline: none;
}
.text{
    color: #fff;
    font-size: 1.1em;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    max-width: 650px;
    font-family: var(--quicksand);
    margin: 10px 0px;
}

/* ------------------//////// structure ////////---------------- */
.section-flat{
    height: auto;
    width: 100%;
    max-width: 1350px;
    margin: 40px 0px;
}
.flat-heading{
    font-size: 6em;
    margin-bottom: 20px;
    color: rgba(239, 189, 235, 0.3);
    -webkit-text-stroke: 2px #efbdebff;
    font-family: var(--quicksand);
    margin-left: 50px
}
.card-wrapper{
    margin-top: 50px;
}
.card-row{
    padding: 50px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.card{
    height: auto;
    width: 300px;
    margin-bottom: 100px;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.card .icon {
    margin-top: -90px;
    padding: 30px 26px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}
.card .icon i {
    font-size: 36px;
    line-height: 1;
}
.card .icon:hover{
    animation: rotatefull 0.5s linear 1;
    transition: 2s ease;
}
.card .title {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.6em;
    font-family: var(--nunito);
    text-align: left;
    color: var(--secondary-color);
    letter-spacing: 2px;
}
.card .description {
    font-size: 1em;
    line-height: 1.4em;
    margin-bottom: 10px;
    text-align: left;
    font-family: var(--quicksand);
}
.section-boxed{
    height: auto;
    width: 100%;
    max-width: 1250px;
    padding: 50px;
    border-radius: 50px;
    margin: 40px auto;
}
.section-head{
    font-size: 6em;
    text-align: left;
    color: rgba(97, 231, 135, 0.3);
    -webkit-text-stroke: 2px #61e786ff;
    font-family: var(--quicksand);
}
.block-container{
    padding: 40px;
}
.subhead {
    display: block;
    font-family: var(--nunito);
    font-size: 1.4em;
    line-height: 1.8em;
    /* identical to box height */
    margin: 20px 60px;
    color: #FFFFFF;
}

/* ------------------//////// timeline design ////////---------------- */
.timeline {
    width: 100%;
    max-width: 1350px;
    height: auto;
    background: #fafcfd24;
    mix-blend-mode: normal;
    backdrop-filter: blur(15px);
    overflow: hidden;
    top: 144px;
    box-shadow: 0px 20px 53px -30px rgba(95, 102, 173, 0.566816);
    border-radius: 50px;
    border: 2px solid #ffffff34;
}
.timeline .section-head {
    margin: 50px 80px 50px 80px;
    margin-bottom: 20px;
    font-size: 6em;
    text-align: left;
    color: rgba(255, 255, 255, 0.4);
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    font-family: var(--quicksand);
}
.timeline .subhead{
    margin-left: 88px;
}
.timeline .box {
    width: 100%;
    height: auto;
    padding: 20px;
    background: #fbfcfd8c;
    margin-top: -3.7px;
}
.timeline .box .container {
    width: 100%;
    display: flex;
}
.timeline .box .container .lines {
    margin-left: 40px;
    margin-top: -150px;
}
.timeline .box .container .lines .dot {
    margin-top: -4px;
    width: 25px;
    height: 25px;
    background: linear-gradient(75deg, rgba(0, 0, 0), #535353);
    box-shadow: 10px 7px 15px rgb(3, 3, 3, 0.7);
    border-radius: 50%;
}
.timeline .box .container .lines .line {
    /* margin-top: -4px; */
    height: 160px;
    width: 7px;
    border-radius: 3px;
    opacity: 0.8;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0.9), rgba(3, 3, 3, 0.65));
    box-shadow: 10px 7px 12px rgb(3, 3, 3, 0.7);
    margin-left: 9px;
}
.timeline .box .container .cards {
    width: auto;
    margin-left: 25px;
    margin-top: -120px;
    transform: translateY(-50px);
}
.timeline .box .container .cards .card {
    width: 100%;
    height: 93px;
    padding-top: 25px;
    background: linear-gradient(55deg, rgb(255, 255, 255), rgb(126, 126, 126));
    background: #ccc;
    box-shadow: 16px 16px 15px #03030327;
    border: 1px solid #444;
    border-radius: 20px;
    margin-bottom: 30px;
}
.timeline .box .container .cards .card .degree {
    font-family: var(--trispace);
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin: 10px 25px 10px 25px;
    color: #090649;
    font-weight: 700;
}
.timeline .box .container .cards .card .degree .specialization {
    color: #0061b1;
}
.timeline .box .container .cards .card .college {
    font-family: var(--nunito);
    font-size: 1.2em;
    line-height: 1.4em;
    color: #5a1923;
    font-weight: 600;
    margin-left: 25px;
    margin-bottom: 10px;
}
.timeline .box .container .cards .card .year {
    font-family: var(--nunito);
    font-size: 1em;
    line-height: 1.2em;
    color: #006644;
    font-weight: 600;
    margin-left: 25px;
}

/* ------------//////// skills section design ////////------------- */
.skillsec{
    margin-top: 100px;
}
.skillsec .flat-heading{
    color: rgba(255, 87, 2, 0.15 );
    -webkit-text-stroke: 2px rgb(255, 87, 20);
}
.difficulties{
    margin: 20px 50px;
    width: fit-content;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 20px 60px;
    border-radius: 20px;
}
.difficulties h3{
    font-family: var(--nunito);
}
.exp{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 25px;
}
.exp label{
    margin-left: 15px;
    letter-spacing: 2px;
    font-family: var(--quicksand);
}
.beginner{
    width: 15px;
    height: 15px;
    background: linear-gradient(75deg, rgb(0, 141, 35), rgb(71, 255, 141));
    box-shadow: 3px 3px 15px rgba(21, 255, 118, 0.473);
    border-radius: 50%;
}
.intermediate{
    width: 15px;
    height: 15px;
    background: linear-gradient(75deg, rgb(158, 63, 0), rgba(255, 166, 0, 0.706));
    box-shadow: 3px 3px 15px rgba(255, 166, 0, 0.473);
    border-radius: 50%;
}
.advanced{
    width: 15px;
    height: 15px;
    background: linear-gradient(75deg, rgb(0, 47, 255), rgba(0, 204, 255, 0.753));
    box-shadow: 3px 3px 15px rgba(0, 204, 255, 0.753);
    border-radius: 50%;
}
.skill-wrapper{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    max-width: 1350px;
    padding: 50px 0px;
    flex-wrap: wrap;
}
.skill-card{
    width: 350px;
    margin: 0px auto;
    background: rgba(32, 32, 32, 0.3);
    box-shadow: 0 8px 32px 0 rgba(29, 29, 29, 0.37);
    backdrop-filter: blur( 6.0px );
    -webkit-backdrop-filter: blur( 6.0px );
    border: 2px solid rgba(59, 59, 59, 0.5);
    border-radius: 30px;
}
.skill-card:first-child{
    margin-left: 50px;
}
.skill-card h2{
    padding: 40px 40px 0px 40px;
    font-family: var(--nunito);
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    color: #dda900;
}
.skill-list{
    margin: 0;
    margin-top: -3.7px;
    padding: 40px;
    background: rgba(46, 46, 46, 0.425);
    border-radius: 0px 0px 30px 30px;
}
.skill-list .skill{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    font-family: var(--quicksand);
    color: #bbb;
    margin: 25px 0px;
}
.skill:first-child{
    margin-top: -15px;
}
.skill-list .skill li{
    list-style-type: none;
    display: inline;
}

/* ------------------///////// projects design /////////----------------- */
.prjsec{
    margin: 80px 0px;
}
.prjsec .flat-heading{
    margin-top: 50px;
    color: rgba(243, 167, 18, 0.15);
    -webkit-text-stroke: 2px rgb(243, 167, 18);
}
.slider{
    width: 100%;
    border: none;
    min-height: 500px;
    margin: 0px;
    overflow: hidden;
}
.slider .slide{
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 100px;
    clip-path: circle(0% at 0 50%);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}
.navigation{
    height: 1000px;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.slider:hover .navigation{
    opacity: 1;
}
.prev-btn, .next-btn{
    margin: 20px;
    z-index: 999;
    font-size: 2em;
    cursor: pointer;
    color: #000;
}
.prev-btn {
    margin: 5px;
    font-size: 1.5em;
    background: #ffd000;
    color: #000;
    padding: 10px 16px 10px 14px;
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(24, 24, 24, 0.7);
}
.next-btn {
    margin: 5px;
    font-size: 1.5em;
    background: #ffd000;
    color: #000;
    padding: 10px 14px 10px 16px;
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(24, 24, 24, 0.7);
}
.prev-btn:hover, .next-btn:hover{
    background: #000;
    color: #ffd000;
}
.mockupimg{
    margin-top: -300px;
    margin-left: 30px;
    height: 600px;
}
.project-contents{
    display: flex;
    padding-bottom: 20px;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    color: #111;
}
.prjcontent{
    padding: 50px 20px;
    font-family: var(--quicksand);
}
.prjtitle{
    font-size: 4em;
    font-weight: 700;
    font-family: var(--quicksand);
}
.prjcontent span{
    letter-spacing: 0.1rem;
    margin-right: 20px;
}
.prjcat{
    width: fit-content;
    text-align: center;
    background: #222;
    border-radius: 8px;
    box-shadow: 5px 5px 10px #111111d7;
    padding: 12px 20px;
    color: #ddd;
    margin: 20px 0px;
}
span.smalltitle{
    font-weight: 600;
    margin-right: 5px;
}
.prjskills{
    font-family: var(--nunito);
    font-weight: 400;
    padding: 10px;
    color: #000;
    margin-top: 20px;
}
.prjdur{
    font-weight: 600;
    padding: 10px;
    color: #000;
}
.abstract{
    font-family: var(--nunito);
    padding: 20px 10px;
    max-width: 600px;
    color: #000;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: 0.05rem;
    line-height: 1.6rem;
}
.elevatedmockup{
    height: 520px;
    margin-top: -300px;
}
.prjlink{
    display: block;
    background: #111;
    border-radius: 30px;
    box-shadow: 5px 5px 10px #111111d7;
    padding: 15px 40px;
    width: max-content;
    color: #00b3ff;
    text-decoration: none;
}
.prjlink:hover{
    background: #00b3ff;
    color: #111;
    transition: 0.8s ease;
    text-decoration: none;
}
#hshut{
    height: 700px;
    margin-top: -400px;
}
.hshutblock{
    margin-top: -40px;
    width: 50%;
}

/* ---- slider backgrounds ---- */
.slide:nth-child(1){
    background-image: url('../images/bgs/64.-Magic-Mint.jpg');
}
.slide:nth-child(2){
    background-image: url('../images/bgs/19.-Can-Can_1.jpg');
}
.slide:nth-child(3){
    background-image: url('../images/bgs/11.-Fuchsia_1.jpg');
}
.slide:nth-child(4){
    background-image: url('../images/bgs/50.-Columbia-Blue.jpg');
}
.slide:nth-child(5){
    background-image: url('../images/bgs/12.-Tumbleweed_1.jpg');
}
.slide:nth-child(6){
    background-image: url('../images/bgs/99.-Roman.jpg');
}
.slide:nth-child(7){
    background-image: url('../images/bgs/64.-Magic-Mint.jpg');
}
.slide:nth-child(8){
    background-image: url('../images/bgs/38.-Sky-Blue_1.jpg');
}


/* ------------------///////// experience section design /////////----------------- */
.experience{
    margin: 0px auto;
    margin-top: 100px;
    width: 90%;
    max-width: 1350px;
    height: auto;
    background: #fafcfd24;
    mix-blend-mode: normal;
    backdrop-filter: blur(15px);
    overflow: hidden;
    top: 144px;
    box-shadow: 0px 20px 53px -30px rgba(95, 102, 173, 0.566816);
    border-radius: 50px;
    border: 2px solid #ffffff34;
}
.experience .section-head {
    margin: 50px 80px 50px 80px;
    margin-bottom: 20px;
    font-size: 6em;
    text-align: left;
    color: rgba(0, 183, 255, 0.2);
    -webkit-text-stroke: 2px rgb(0, 183, 255);
    font-family: var(--quicksand);
}
.experience .box{
    margin-top: -3.7px;
}

/* --------------////////////// certification /////////////--------------- */
.certification{
    /* margin-top: 450px; */
}
.certification .flat-heading{
    -webkit-text-stroke: 2px #EEE4E1;
    color: #eee4e13b;
}
.certi-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.certi-row{
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 30px 100px;
}
.certi-desc{
    margin-left: 60px;
}
.cert{
    height: 200px;
    width: 260px;
    padding: 5px;
    margin-left: 10px;
    /* border: 2px solid #88ffd785; */
}
.certi-desc p{
    margin: 8px 0px;
}
.cert-title{
    font-family: var(--trispace);
    font-size: 2.2em;
    line-height: 2.6em;
    font-weight: 300;
    color: var(--secondary-color);
}
.certi-spec{
    color: var(--primary-color);
    font-family: var(--nunito);
    font-size: 1.2em;
    line-height: 1.6em;
    letter-spacing: 0.1rem;
    font-family: 200;
}
.certi-desc .org{
    color: #777;
}
.certi-desc .year{
    font-family: var(--quicksand);
    font-weight: 400;
    letter-spacing: 5px;
}

/* --------------////////////// resume download /////////////--------------- */
.center-section{
    margin-top: 50px;
    margin-bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.heading-center{
    text-align: center;
    font-size: 2.5em;
    font-family: var(--quicksand);
    color: #efbdebff;
}
.center-section .subhead{
    text-align: center;
    font-weight: 200;
    font-size: 1.2em;
    line-height: 1.8em;
}
.resumebtn{
    background: rgba(239, 189, 235, 0.247);
    border: 2px solid #efbdebff;
    color: #efbdebff;
    font-family: var(--quicksand);
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: 0.12rem;
    padding: 20px 50px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 5px 5px 15px rgba(99, 0, 90, 0.479);
}
.resumebtn:hover{
    background: #efbdebff;
    color: #000;
    font-weight: 600;
    transition: 0.6s ease;
}

/* ----------///////// footer design ////////---------- */
#footer{
    width: 100%;
    height: auto;
    /* max-width: 1350px; */
    /* margin: 30px auto;
    border-radius: 100px 60px 60px 60px; */
    background: url('../images/bgs/20.-Melanie.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#footer .center-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.footerlinks{
    margin: 7px 0px;
    font-family: var(--nunito);
    font-weight: 400;
    letter-spacing: 0.1rem;
    text-decoration: none;
    color: #000;
}
.footerlinks:last-child{
    margin-bottom: 30px;
}
.footerlinks:hover{
    color: #fff;
    transition: 0.5s ease;
}
.copyright{
    width: inherit;
    bottom: 30px;
    padding: 15px 0px;
    text-align: center;
    background: rgba(0, 0, 0, 0.726);
    border-top: 2px solid #222;
}
.copyright .footer-text{
    font-family: var(--nunito);
    font-weight: 400;
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
    color: #ccc;
}

/* ------------------------------------------------------
--------------------------- shapes ----------------------
--------------------------------------------------------- */
.tube{
    position: absolute;
    width: 300px;
    top: 50px;
    right: -100px;
    animation: moveup 3s linear infinite;
}
.sphere-dis{
    position: absolute;
    width: 500px;
    top: 100px;
    left: 100px;
    animation: movearound 8s linear infinite backwards;
}
.sphere-green{
    position: absolute;
    width: 300px;
    top: 3320px;
    left: -100px;
    animation: movearound 4s linear infinite;
}
.ring-moon{
    position: absolute;
    width: 500px;
    top: 1800px;
    right: 50px;
    animation: movearound 10s linear infinite;
}
.sphere-dotted{
    position: absolute;
    width: 200px;
    top: 1050px;
    right: 50px;
    animation: movearound 8s linear infinite;
}
.ring-purple{
    position: absolute;
    width: 100px;
    top: 3400px;
    right: 80px;  
    /* opacity: 0.8;   */
    animation: movearound 0.08s linear infinite;
}
.ring-orange{
    position: absolute;
    width: 300px;
    top: 600px;
    left: 600px;
    z-index: 12;    
    animation: movearound 10s linear infinite;
}
.ring-metal{
    position: absolute;
    width:400px;
    top: 4200px;
    right: 100px;
    animation: movearound 10s linear infinite;
}
.ring-blue{
    position: absolute;
    width: 300px;
    top: 1350px;
    left: 270px;    
    transform: skew(-20deg);
}
.blue-sphere{
    position: absolute;
    width: 400px;
    top: 5350px;
    right: 18%;    
    animation: movearound 10s linear infinite;
}

/* ------------------------------------------------------
------------------- color bg classes --------------------
--------------------------------------------------------- */
.blackglass{
    background: rgba( 0, 0, 0, 0.50 );
    box-shadow: 0 8px 32px 0 rgba(29, 29, 29, 0.37);
    backdrop-filter: blur( 6.0px );
    -webkit-backdrop-filter: blur( 6.0px );
    border: 1px solid rgba(105, 105, 105, 0.3);
}
.bluie{
    background: rgba( 63, 205, 199, 0.15 );
    box-shadow: 0 8px 32px 0 rgba(0, 153, 145, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(90, 255, 247, 0.3);
    color: #3fcdc7;
}
.pinkie{
    background: rgba(253, 108, 156, 0.15);
    box-shadow: 0 8px 32px 0 rgba(131, 0, 44, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(255, 155, 188, 0.3);
    color: #ff689b;
}
.orangie{
    background: rgba( 255, 87, 2, 0.15 );
    box-shadow: 0 8px 32px 0 rgba(145, 48, 0, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(255, 127, 63, 0.3);
    color: rgb(255, 87, 20);
}
.pirplie{
    background: rgba(167, 102, 219, 0.15);
    box-shadow: 0 8px 32px 0 rgba(99, 0, 180, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(210, 159, 255, 0.3);
    color: rgb(189, 143, 228);
}
.greenie{
    background: rgba( 97, 231, 134, 0.15 );
    box-shadow: 0 8px 32px 0 rgba(0, 126, 36, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(97, 231, 134, 0.3);
    color: #61e786;
}
.brownie{
    background: rgba( 243, 167, 18, 0.15 );
    box-shadow: 0 8px 32px 0 rgba(148, 99, 0, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba(255, 191, 63, 0.3);
    color: rgb(243, 167, 18);
}
.purpleglass{
    background: rgba(239, 216, 255, 0.219);
    box-shadow: 0 8px 12px 0 rgba(97, 0, 167, 0.24);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 2px solid rgba(200, 121, 255, 0.3);
    color: rgb(200, 121, 255);
}

/* ===================== animation keyframes ======================== */
@-webkit-keyframes ChangeGradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes ChangeGradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes ChangeGradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes ChangeGradient {
    0%{background-position:0% 50%}
    25%{background-position: 50% 50%;}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes moveahead{
    25%{
        right: -60px;
    }
    50%{
        right: -80px;
    }
    75%{
        right: -40px;
    }
    100%{
        right: -60px;
    }
}
@keyframes moveup{
    0%{
        margin-top: 0px;
    }
    35%{
        margin-top: 20px;
    }
    70%{
        margin-top: -20px;
    }
    100%{
        margin-top: 0px;
    }
}
@keyframes movearound{
    10%{
        transform: rotate(10deg);
    }
    20%{
        transform: rotate(45deg);
    }
    30%{
        transform: rotate(90deg);
    }
    40%{
        transform: rotate(135deg);
    }
    50%{
        transform: rotate(180deg);
    }
    60%{
        transform: rotate(225deg);
    }
    70%{
        transform: rotate(270deg);
    }
    80%{
        transform: rotate(300deg);
    }
    90%{
        transform: rotate(330deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes rotatefull{
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.changingGradient{
    background: linear-gradient(45deg,  #00b3ff, #e41efa, #ff3650, #f83a00, #ffd000, #27f353, #00ffaa, #4d0049);
    background-size: 1000% 1000%;
    -webkit-animation: ChangeGradient 7s ease infinite;
    -moz-animation: ChangeGradient 7s ease infinite;
    -o-animation: ChangeGradient 7s ease infinite;
    animation: ChangeGradient 7s ease infinite;

    /* text mask properties */
    /* background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}


/* ------------------------------------------------------
------------------- CSS Media Queries -------------------
--------------------------------------------------------- */
@media screen and (max-width: 1080px) {
    /* reset shapes */
    .tube{
        width: 200px;
        top: 50px;
        right: -100px;
    }
    .sphere-dis{
        width: 300px;
        top: 100px;
        left: 100px;
    }
    .sphere-green{
        width: 200px;
        top: 3450px;
        left: -80px;
    }
    .ring-moon{
        width: 350px;
        top: 2150px;
        right: 50px;
    }
    .sphere-dotted{
        width: 150px;
        top: 950px;
        right: 50px;
    }
    .ring-purple{
        width: 100px;
        top: 3300px;
        right: 80px;  
    }
    .ring-orange{
        width: 200px;
        top: 600px;
        left: 600px;
        z-index: 12;    
    }
    .ring-metal{
        width:300px;
        top: 4450px;
        right: 100px;
    }
    .ring-blue{
        width: 250px;
        top: 1350px;
        left: 270px;    
    }
    .blue-sphere{
        width: 400px;
        top: 5350px;
        right: 18%;    
    }

    #hero{
        height: auto;
        width: 90%;
        margin: 80px auto;
    }
    .heroimg{
        height: 500px;
        top: 180px;
        right: -100px;
    }
    .sphere-fintip{
        width: 160px;
        top: 160px;
        right: 250px;
    }
    .hello{
        font-size: 1.4em;
    }
    .tagline{
        max-width: 450px;
        font-size: 2.5em;
        line-height: 1.2em;
        margin: 10px 0px;
        padding-bottom: 10px;
        height: 2.2em;
    }
    .text{
        max-width: 450px;
    }
    .card-row{
        padding: 40px;
        justify-content: space-between;
    }
    .section-head, .flat-heading{
        font-size: 4em;
    }
    .timeline{
        width: 90%;
        height: auto;
    }
    .timeline .section-head{
        font-size: 4em;
    }
    .subhead{
        margin-right: 0px;
    }
    .timeline .box{
        padding: 5px;
    }
    .timeline .box .container .lines {
        margin-left: 20px;
        margin-top: -50px;
    }
    .timeline .box .container .lines .line{
        height: 180px;
    }
    .timeline .box .container .cards{
        margin-top: -40px;
    }
    .timeline .box .container .cards .card{
        height: auto;
        width: 80%;
    }
    .difficulties{
        margin-right: 0px;
    }
    .certi-row{
        margin: 30px 50px;
    }
    .certi{
        width: 30%;
    }
    .certi-desc{
        width: 60%;
        margin-left: 60px;
    }
    .cert-title {
        font-size: 2em;
        line-height: 1.4em;
        font-weight: 300;
        color: var(--secondary-color);
    }
}

@media screen and (max-width: 1030px){
    .navigation{
        height: 1200px;
    }
}

@media screen and (max-width: 980px){
    .skill-wrapper{
        flex-direction: column;
    }
    .skill-card:first-child{
        margin-left: auto;
    }
    .skill-card{
        width: 90%;
        margin: 20px auto;
    }
    .skill-card h2{
        margin-top: 50px;
        font-size: 2.2rem;
    }
    .skill-list .skill{
        font-size: 1.4rem;
    }
    .project-contents{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .mockupimg{
        height: 500px;
        margin-top: -300px;
    }
    .prjcontent{
        margin-top: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .mockup{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .prjcontent{
        width: 100%;
        padding: 40px 0px;
    }
    .prjtitle{
        text-align: center;
        font-size: 3em;
    }
    .prjdur{
        text-align: center;
    }
    .prjskills{
        text-align: center;
    }
    .abstract{
        text-align: center;
    }
    #hshut{
        margin-top: -350px;
        margin-left: -30px;
        height: 550px;
    }
    .hshutblock{
        margin-top: -50px;
    }
    .cert{
        height: 160px;
        width: 220px;
    }
    .certi-desc{
        margin-left: 30px;
    }
    .cert-title{
        font-size: 1.8em;
    }
    .center-section{
        margin-bottom: 60px;
    }
    .heroimg{
        height: 450px;
        top: 230px;
        right: -100px;
    }
    .experience{
        margin-top: 0px;
    }
    .sphere-fintip{
        width: 130px;
        top: 230px;
        right: 230px;
    }
    .prjsec .flat-heading{
        margin-top: 40px;
        text-align: center;
    }
    .prjsec .subhead{
        text-align: center;
    }
}

@media screen and (max-width: 860px) {
    /* reset shapes */
    .tube{
        width: 200px;
        top: 30px;
        right: -10px;
    }
    .sphere-dis{
        width: 300px;
        top: 90px;
        left: 130px;
    }
    .sphere-green{
        width: 200px;
        top: 4750px;
        left: -60px;
    }
    .ring-moon{
        width: 350px;
        top: 3400px;
        right: 50px;
    }
    .sphere-dotted{
        width: 150px;
        top: 1450px;
        right: 50px;
    }
    .ring-purple{
        width: 100px;
        top: 9000px;
        left: 80px;  
    }
    .ring-orange{
        width: 200px;
        top: 630px;
        left: 580px;
        z-index: 12;    
    }
    .ring-metal{
        width:400px;
        top: 5700px;
        right: -100px;
    }
    .ring-blue{
        width: 250px;
        top: 2250px;
        left: 270px;    
    }
    .blue-sphere{
        width: 400px;
        top: 7650px;
        right: -6%;    
    }
    .logoimg{
        width: 320px;
        margin: 15px;
    }
    #hero{
        width: 90%;
        height: auto;
        flex-direction: column-reverse;
        margin: 80px auto;

    }
    #content{
        max-width: 820px;
        padding-top: 10px;
    }
    .heroimg{
        position: static;
        height: 550px;
        margin: 0px;
        margin-top: 100px;
        margin-left: 30%;
    }
    .hello{
        font-size: 1.4em;
    }
    .tagline{
        max-width: inherit;
    }
    .text{
        max-width: inherit;
    }
    .sphere-fintip{
        width: 160px;
        top: 75px;
        right: 230px;
        transform: skewX(-250deg);
        filter: contrast(2);
        animation: movearound 0.15s linear infinite;
    }
    #lead-cta{
        padding: 25px 50px;
    }
    .flat-heading, .section-head{
        font-size: 3.5em;
    }
    .flat-heading{
        margin-left: 0px;
    }
    .card{
        padding: 30px;
        width: fit-content;
    }
    .timeline{
        width: 90%;
        height: auto;
    }
    .timeline .section-head{
        font-size: 3.5em;
    }
    .timeline .box{
        padding: 5px;
    }
    .timeline .box .container .lines {
        margin-left: 5px;
        margin-top: -50px;
    }
    .timeline .box .container .lines .line{
        height: 180px;
    }
    .timeline .box .container .cards{
        margin-top: -40px;
    }
    .timeline .box .container .cards .card{
        height: auto;
        width: 80%;
    }
    .subhead{
        margin-right: 0px;
    }
    .difficulties{
        margin-right: 0px;
        padding: 20px;
    }
    .exp label{
        margin-left: 5px;
    }
    .experience .box {
        margin-top: -3px;
    }
    #footer .center-text{
        align-items: flex-start;
        margin-left: 50px;
    }
    .footerlinks{
        font-size: 1.2em;
    }
    .footerlinks i{
        margin-right: 15px;
    }
    .navigation{
        height: 1100px;
    }
}

@media screen and (max-width: 820px) {
    .logoimg{
        width: 320px;
        margin: 15px;
    }
    .certification .flat-heading{
        text-align: center;
        margin-bottom: 50px;
    }
    .certi-row{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        margin: 30px auto;
    }
    .certi{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cert{
        margin: 10px auto;
    }
    .cert-title{
        text-align: center;
    }
    .certi-desc{
        width: 90%;
        margin: 10px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .center-section{
        margin-bottom: 80px;
    }
    .footer{
        width: 90%;
        padding: 5%;
    }
}

@media screen and (max-width: 620px) {
    main{
        overflow-x: hidden;
    }
    /* reset shapes */
    .tube{
        width: 150px;
        top: 3000px;
        right: -10px;
    }
    .sphere-dis{
        width: 250px;
        top: 120px;
        left: -10px;
    }
    .sphere-green{
        width: 200px;
        top: 4750px;
        left: -60px;
    }
    .ring-moon{
        width: 250px;
        top: 3500px;
        right: 50px;
    }
    .sphere-dotted{
        width: 150px;
        top: 1380px;
        right: 10px;
    }
    .ring-purple{
        width: 100px;
        top: 9000px;
        left: 80px;  
    }
    .ring-orange{
        width: 200px;
        top: 630px;
        left: 580px;
        z-index: 12;    
    }
    .ring-metal{
        width:300px;
        top: 5950px;
        right: -50px;
    }
    .ring-blue{
        width: 250px;
        top: 2250px;
        left: 270px;    
    }
    .blue-sphere{
        width: 300px;
        top: 7780px;
        right: -4%;    
    }
    #hero{
        margin-bottom: 40px;
    }
    .heroimg{
        position: static;
        height: 400px;
        margin: 0px;
        margin-top: 100px;
        margin-left: 20%;
    }
    .sphere-fintip{
        width: 130px;
        top: 80px;
        right: 48%;
        transform: skewX(-250deg);
        filter: contrast(2);
        animation: movearound 0.15s linear infinite;
    }
    .flat-heading, .section-head{
        font-size: 3em;
    }
    .timeline .section-head{
        font-size: 3em;
        margin-left: 30px;
        margin-top: 70px;
    }
    .timeline .subhead{
        margin-left: 30px;
        margin-bottom: 50px;
    }
    .timeline .box .container .lines {
        margin-left: 5px;
        margin-top: -50px;
    }
    .timeline .box .container .lines .line{
        height: 200px;
    }
    .timeline .box .container .lines .line:last-child{
        height: 120px;
    }
    .timeline .box .container .cards{
        margin-top: -40px;
    }
    .timeline .box .container .cards .card{
        height: auto;
        width: 80%;
    }
    .timeline .box .container .cards .card .degree {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
    .subhead{
        margin-right: 0px;
        margin: 20px auto;
    }
    .skillsec .flat-heading{
        margin-left: 30px;
        margin-bottom: 30px;
    }
    .skillsec .subhead{
        display: block;
        margin: 0px;
        margin-left: 30px;
    }
    .skill-card h2{
        font-size: 1.8rem;
    }
    .skill-list .skill {
        font-size: 1.2rem;
    }
    .difficulties{
        margin: 20px 30px;
        margin-right: 0px;
        padding: 5%;
        width: 80%;
        flex-direction: column;
    }
    .difficulties h3{
        font-size: 1.4em;
        margin: 20px 10px;
    }
    .exp{
        margin: 10px;
    }
    .exp label{
        margin-left: 5px;
        font-size: 1.2em;
    }
    .experience .flat-heading{
        font-size: 3em;
    }
    .experience .box {
        margin-top: -3px;
    }
    .experience .box .container .lines .line{
        height: 180px;
    }
    .mockupimg{
        height: 500px;
        margin-top: -250px;
    }
    .prjsec .flat-heading{
        margin: 20px auto;
    }
    .prjcontent{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px auto;
        width: 90%;
    }
    .hshutblock{
        margin-top: -30px;
    }
    .prjtitle{
        font-size: 3em;
        text-align: center;
    }
    .prjcat{
        font-size: 1em;
        padding: 8px 12px;
    }
    .prjcat span{
        margin-right: 3px;
    }
    .prjskills{
        margin-top: 5px;
        text-align: center;
    }
    .prjdur{
        text-align: center;
    }
    .abstract{
        display: block;
        text-align: center;
    }
    #hshut{
        margin-top: -300px;
        height: 500px;
        margin-left: -40px;
    }
    #footer .center-text{
        align-items: flex-start;
        margin-left: 50px;
    }
    .footerlinks{
        font-size: 1.2em;
    }
    .footerlinks i{
        margin-right: 15px;
    }
    .navigation{
        height: 1100px;
    }
}

@media screen and (max-width: 475px) {
    
    /* reset shapes */
    .tube{
        width: 150px;
        top: 3000px;
        right: -10px;
    }
    .sphere-dis{
        width: 200px;
        top: 120px;
        left: -10px;
    }
    .sphere-green{
        width: 160px;
        top: 4750px;
        left: -60px;
    }
    .ring-moon{
        width: 250px;
        top: 3500px;
        right: 50px;
    }
    .sphere-dotted{
        width: 150px;
        top: 1380px;
        right: 10px;
    }
    .ring-purple{
        width: 100px;
        top: 9000px;
        left: 80px;  
    }
    .ring-orange{
        width: 200px;
        top: 630px;
        left: 580px;
        z-index: 12;    
    }
    .ring-metal{
        width:300px;
        top: 5950px;
        right: -50px;
    }
    .ring-blue{
        width: 250px;
        top: 2250px;
        left: 270px;    
    }
    .blue-sphere{
        width: 300px;
        top: 7620px;
        right: -4%;    
    }
    .logoimg{
        width: 250px;
    }
    #hero{
        margin-bottom: 40px;
    }
    .heroimg{
        position: static;
        height: 350px;
        margin: 0px;
        margin-top: 60px;
        margin-left: 10%;
    }
    .sphere-fintip{
        width: 100px;
        top: 70px;
        right: 68%;
        transform: skewX(-250deg);
        filter: contrast(2);
        animation: movearound 0.15s linear infinite;
    }
    .hello{
        font-size: 1.2em;
        margin: 3px 0px;
    }
    .tagline{
        font-size: 1.8em;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .text{
        font-size: 1em;
    }
    #lead-cta{
        font-size: 0.8em;
        padding: 15px 25px;
        text-align: center;
    }
    .resumebtn{
        text-align: center;
        text-align: center;
        margin-left: 0px;
    }
    .flat-heading, .section-head{
        font-size: 2.5em;
        text-align: center;
        margin-left: 0px;
    }
    .timeline .section-head{
        font-size: 2.5em;
        margin-left: 30px;
        margin-top: 70px;
    }
    .timeline .subhead{
        margin-left: 30px;
        margin-bottom: 50px;
    }
    .timeline .box .container .lines {
        margin-left: -5px;
        margin-top: -60px;
    }
    .timeline .box .container .lines .line{
        height: 140px;
    }
    .timeline .box .container .lines .line:last-child{
        height: 120px;
    }
    .timeline .box .container .cards{
        margin-top: -40px;
    }
    .timeline .box .container .cards .card{
        height: auto;
        width: 80%;
    }
    .timeline .box .container .cards .card .degree {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
    .subhead{
        margin-right: 0px;
        margin: 20px auto;
        font-size: 1.1em;
    }
    .skillsec .flat-heading{
        margin-left: 30px;
        margin-bottom: 30px;
    }
    .skillsec .subhead{
        display: block;
        margin: 0px;
        margin-left: 30px;
    }
    .timeline .box .container .cards {
        margin-left: 0px;
    }
    .timeline .box .container .cards .card {
        width: 80%;
        height: auto;
        padding: 15px;
        margin: 15px auto;
    }
    .timeline .box .container .cards .card .degree {
        font-family: var(--trispace);
        font-size: 1.2rem;
        line-height: 1.6rem;
        margin: 10px;
    }
    .timeline .box .container .cards .card .college {
        font-size: 1em;
        line-height: 1.2em;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    .timeline .box .container .cards .card .year {
        font-size: 0.9em;
        line-height: 1.1em;
        margin-left: 10px;
    }
    .skill-list{
        margin-top: -4.7px;
    }

    .timeline .box .container .lines{
        visibility: hidden;
        display: none;
    }
    .timeline .box .container .lines .dot{
        visibility: hidden;
        display: none;
    }
    .degree{
        font-size: 1em;
    }
    .timeline .box .container .cards .card .college {
        font-size: 0.9em;
        line-height: 1.3em;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    #hshut{
        margin-top: -270px;
        margin-left: -20px;
    }
    .prjtitle{
        font-size: 2.4em;
    }
    .prev-btn {
        margin: 5px;
        font-size: 1.5em;
        background: #ffd000;
        color: #000;
        padding: 10px 16px 10px 14px;
        border-radius: 50%;
        box-shadow: 0px 0px 15px rgba(24, 24, 24, 0.7);
    }
    .next-btn {
        margin: 5px;
        font-size: 1.5em;
        background: #ffd000;
        color: #000;
        padding: 10px 14px 10px 16px;
        border-radius: 50%;
        box-shadow: 0px 0px 15px rgba(24, 24, 24, 0.7);
    }
    .prev-btn:hover, .next-btn:hover{
        background: #000;
        color: #ffd000;
    }
    .heading-center {
        font-size: 2em;
    }
    .center-section{
        margin: 40px 0px;
    }
    .center-section .subhead{
        font-size: 1em;
        line-height: 1.6em;
        padding: 20px;
    }
    .resumebtn{
        font-size: 1em;
        padding: 15px 30px;
        margin-top: 0px;
        border: 1px solid rgba(239, 189, 235, 0.5);
    }
}

@media screen and (max-width: 380px){
    .sphere-dotted{
        top: 1550px;
    }
    .heroimg{
        height: 320px;
        margin-top: 80px;
        margin-left: 2%;
    }
    .card-wrapper {
        margin-top: 80px;
    }
    .card-row, .card{
        padding: 20px;
    }
    .card .icon {
        margin-top: -69px;
    }
    .hello{
        font-size: 1em;
    }
    .tagline{
        font-size: 1.6em;
        line-height: 1.4em;
        margin-top: 0px;
    }
    .text{
        margin-top: 40px;
        font-size: 0.9em;
    }
    .ring-moon{
        top: 4300px;
    }
    #hero, .timeline{
        border-radius: 20px;
    }
    .flat-heading{
        margin-left: 10px;
        font-size: 2.2em;
        text-align: center;
        margin-bottom: 40px;
    }
    .skillsec .flat-heading {
        margin-left: 0px;
        margin-bottom: 40px;
    }
    .exp label {
        margin-left: 5px;
        font-size: 1em;
    }
    .difficulties h3 {
        font-size: 1.2em;
        margin: 10px 5px;
    }
    .difficulties {
        margin: 20px auto;
    }
    .timeline .box .container .lines{
        visibility: hidden;
        display: none;
    }
    .timeline .box .container .lines .dot{
        visibility: hidden;
        display: none;
    }
    .degree{
        font-size: 1em;
    }
    .timeline .box .container .cards .card .college {
        font-size: 0.9em;
        line-height: 1.3em;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    .mockupimg{
        height: 380px;
        margin-top: -200px;
    }
    #hshut{
        height: 380px;
        margin-top: -250px;
        margin-left: -20px;
    }
    .navigation{
        height: 1100px;
        margin: 0px;
    }
    .prjtitle{
        font-size: 2em;
    }
    .prjcat{
        font-size: 0.8em;
        line-height: 1.8em;
    }
    .prjskills{
        font-size: 1em;
    }
    .prjcontent{
        font-size: 1em;
    }
    .prev-btn, .next-btn {
        margin: 5px;
        font-size: 1em;
        background: #000;
        color: #fff;
        padding: 10px;
    }
    .cert-title{
        font-size: 1.4em;
    }
    .certi-spec{
        font-size: 1em;
    }
    .certi-desc, .year{
        padding: 4px 0px;
        font-size: 0.9em;
    }
    .heading-center{
        font-size: 1.8em;
    }
    .center-section{
        margin: 40px 0px;
    }
    .center-section .subhead{
        font-size: 1em;
        line-height: 1.4em;
        padding: 10px;
    }
    .resumebtn{
        font-size: 1em;
        padding: 15px 30px;
        margin-top: 20px;
        border: 1px solid rgba(239, 189, 235, 0.5);
    }
    .timeline .box .container .cards .card{
        margin: 15px auto;
        width: 90%;
        padding: 15px 0px 15px 15px;
        margin-left: 0px;
    }
    .skill-wrapper{
        padding: 10px 0px;
    }
    .skill-card h2 {
        margin-top: 20px;
        padding: 30px 30px 0px 30px;
        font-size: 1.4rem;
        letter-spacing: 0.1rem;
    }
    .skill-list {
        margin: 0;
        margin-top: -4.7px;
        padding: 20px;
        background: rgba(46, 46, 46, 0.425);
        border-radius: 0px 0px 30px 30px;
    }
    .skill-list .skill {
        font-size: 1rem;
        color: #eee;
    }
    #footer .center-text {
        display: block;
        margin: 10px;
        width: 100%;
        align-items: flex-start;
        padding: 20px;
    }
    .footerlinks {
        font-size: 1em;
        margin: 3px 0px;
        display: block;
    }
}