@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    /* --text-color: white; */
    --top-content: #2F4F4F;
    --font-detail: #2F4F4F;
    --header-details: white;
    --main-background: white;
    --box-shadow: rgba(73, 52, 52, 0.12);
    --nav-background: #2F4F4F;
}

/************************************Dark Mode************************************/
.darkmode{
    /* --text-color: white; */
    --top-content: #2B2A2A;
    --font-detail: whitesmoke;
    --main-background: #2B2A2A;
    --box-shadow: rgba(109, 104, 104, 0.12);
    --nav-background: #1a1818;
}

#theme-switch{
    cursor: pointer;
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 25px;
    right: 80px;
}
#theme-switch i{
    font-size: 1rem;
    color: var(--header-details);
}
#theme-switch i:last-child{
    display: none;
}
.darkmode #theme-switch i:first-child{
    display: none;
}
.darkmode #theme-switch i:last-child{
    display: block;
}


*{
    margin: 0px;
    padding: 0px;
    box-sizing: 0px;
    list-style: none;
}

/************************************Scroll Behavior Smooth************************************/
html{
    scroll-behavior: smooth;
    scroll-padding: var(--scroll-padding, 5rem);
    container-type: scroll-state;
    container-name: page;
}

/************************************ScrollBar Change Color************************************/
::-webkit-scrollbar{
    width: 0.9rem;
    background-color: rgb(34, 40, 49);
}

::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: rgb(49, 54, 63);
    transition: .5s;
}

::-webkit-scrollbar-thumb:hover{
    border: 1px solid var(--box-shadow);
    background-color: var(--top-content);
}

/************************************Navigation************************************/
body nav{
    position: sticky;
    top: 0;
    max-width: 100%;
    height: 100px;
    z-index: 100;
    background-color: var(--nav-background);
    display: flex;
    align-items: center;
    /* box-shadow: 0px 0px 10px 0px white; */
    /* box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1); */
    transition: all 80ms ease-out;
}

body nav.scrolled{
    box-shadow: 0px 1px 6px var(--box-shadow);
}
/**********LOGO**********/
body nav #rjrlogo{
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
}
body nav #rjrlogo img{
    height: 100px;
    width: 100px;
    margin-right: 10px;
}
body nav h1{
    cursor: default;
    font-family: 'Nata Sans';
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-left: 200px;
    transition: .3s;
}
body nav h1 span{
    color: white;
    /* filter: drop-shadow( 1px 1px 3px white); */
}
body nav h1:hover{
    transform: scale(1.1);
    filter: drop-shadow( 1px 1px 3px white);
}


/**********Navigation Unordered List**********/
body nav ul{
    position: absolute;
    width: 50%;
    height: 70px;
    right: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/**********Navigation Links**********/
body nav ul a{
    font-family: 'Nata Sans';
    font-weight: 400;
    font-size: 1.5rem;
    filter: drop-shadow(1px 1px 3px white); 
    text-decoration: none;
    color: var(--header-details);    
    height: 40px;
    position: relative;
}
body nav ul a::after{
    position: absolute;
    content: '';
    background-color: white;
    border-radius: 30px;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: .5s;
}
body nav ul a:hover::after{
    width: 100%;
}

body nav ul .nav-item{
    position: relative;
    width: 30px;
    height: 40px;
    position: relative;
}

body nav ul .nav-item .fa-file{
    font-size: 1.5rem;
}

body nav ul .nav-item #resumeicon{
    display: block;
}

.nav-item:hover .tooltip-resume{
    opacity: 1;
    visibility: visible;
}

.tooltip-resume{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -60%;
    top: 55px;
    border: 1px solid var(--top-content);
    padding: 4px 10px;
    border-radius: 5px;
    background-color: white;
    color: var(--nav-background);
    font-family: 'Nata Sans';
    transition: opacity .3s linear;
}

.tooltip-resume::before{
    content: "";
    position: absolute;
    border: 10px solid;
    top: -19px;
    left: 30%;
    border-color: transparent transparent white;
}

body nav .navicon{
    background-color: transparent;
    border: none;
    position: absolute;
    right: 100px;
    display: none;
}
/* body nav .navicon .fa-file{
    cursor: pointer;
    color: white;
    font-size: 3rem;
} */

body nav .navicon .fa-bars:hover{
    filter: drop-shadow(1px 1px 3px white);
}

body nav .ham-menu{
    cursor: pointer;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 30px;
    right: 100px;
    display: none;
}
body nav .ham-menu span{
    height: 5px;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
body nav .ham-menu:hover{
    filter: drop-shadow(1px 1px 3px white);
}
body nav .ham-menu span:nth-child(1){
    top: 20%;
}
body nav .ham-menu span:nth-child(3){
    top: 80%;
}
body nav .ham-menu.active span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
}body nav .ham-menu.active span:nth-child(2){
    opacity: 0;
}
body nav .ham-menu.active span:nth-child(3){
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
}

/************************************Header************************************/
body header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    height: 990px;
    position: relative;
    background-color: var(--nav-background);
    transform: -50%;
    opacity: 0;
    transition: 800ms ease;
}
body header.show{
    transform: 0%;
    opacity: 1;
}


/**********My Photo**********/
body header .mypic{
    position: absolute;
    width: 600px;
    right: 30px;
    bottom: 0;
}

body header .wrappersonalinfo{
    max-width: 60%;
    height: 620px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 200px;
    transition: .5s ease-in-out;
}

/**********My Quote**********/
body header .wrappersonalinfo .quote{
    color: var(--header-details);
    font-size: 7.5rem;
    font-family: 'Nata Sans';
    font-weight: 400;
    filter: drop-shadow(1px 1px 10px white);
    margin-bottom: 100px;
}

/**********My Name**********/
body header .wrappersonalinfo .myname{
    color: var(--header-details);
    font-size: 4rem;
    font-family: 'Nata Sans';
    font-weight: 300;
    filter: drop-shadow(1px 1px 5px white);
}

/**********My Course**********/
body header .wrappersonalinfo .mycourse{
    color: var(--header-details);
    font-size: 2.2rem;
    font-family: 'Nata Sans';
    font-weight: 200;
    filter: drop-shadow(1px 1px 3px white);
    text-transform: uppercase;
    margin-bottom: 100px;
}

/**********Passionate**********/
body header .wrappersonalinfo .passionate{
    color: var(--header-details);
    font-size: 3.3rem;
    font-family: 'Nata Sans';
    font-weight: 200;
}
body header .wrappersonalinfo .passionate span{
    filter: drop-shadow(1px 1px 5px white);
}



/************************************Main**********************************/
body main{
    max-width: 100%;
    background-color: var(--main-background);
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/**********About Me**********/
body main #Aboutme{
    max-width: 80%;
    height: 500px;
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    align-items: center;  
    padding-top: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: 1000ms ease;
}
body main #Aboutme.show{
    transform: translateY(0px);
    opacity: 1;
}

body main #Aboutme h1{
    font-family: 'Nata Sans';
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--font-detail);
    margin-bottom: 20px;
}
body main #Aboutme h3{
    font-family: 'Nata Sans';
    font-size: 1.2rem;
    text-align: center;
    color: var(--font-detail);
}

body main #Aboutme aside{
    width: 100%;
    display: flex;
    flex-direction: row;
    /* border: 1px solid grey; */
    /* transition-delay: 300ms; */
    transform: translateY(100px);
    opacity: 0;
    transition: 800ms ease;
}
body main #Aboutme aside.show{
    transform: translateY(0px);
    opacity: 1;
}


/**********My Journey**********/
body main #Aboutme aside #myjourney{
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    /* border: 1px solid black; */
}

body main #Aboutme aside #myjourney h2{
    font-family: 'Nata Sans';
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--font-detail);
}
body main #Aboutme aside #myjourney h3{
    font-family: 'Nata Sans';
    font-size: 1.2rem;
    text-align: justify;
    color: var(--font-detail);
    text-indent: 50px;
    margin-top: 20px;
}

/**********My Approach**********/
body main #Aboutme aside #myapproach{
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px; 
    /* border: 1px solid black; */
}
body main #Aboutme aside #myapproach h2{
    font-family: 'Nata Sans';
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--font-detail);
}
body main #Aboutme aside #myapproach h3{
    font-family: 'Nata Sans';
    font-size: 1.2rem;
    text-align: justify;
    color: var(--font-detail);
    text-indent: 50px;
    margin-top: 20px;
}


/**********Core Competencies**********/
body main #corecompetencies{
    max-width: 80%;
    height: 400px;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px; 
    margin-bottom: 50px;
    transform: translateY(100px);
    opacity: 0;
    transition: 800ms ease;
}
body main #corecompetencies.show{
    transform: translateY(0px);
    opacity: 1;
}
body main #corecompetencies h1{
    font-family: 'Nata Sans';
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--font-detail);
}
body main #corecompetencies h1 i{
    padding-right: 10px;
    /* border: 1px solid red; */
}

/**********Cores**********/
body main #corecompetencies #core{
    max-width: 100%;
    /* border: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
body main #corecompetencies #core .corebox{
    cursor: default;
    max-width: 35%;
    height: 100px;
    background-color: whitesmoke;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;  
    /* border: 1px solid red; */
    transform: translateY(5px);
    transition: .5s ease;
}
body main #corecompetencies #core .corebox:hover{
    transform: translateY(0px);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
}
body main #corecompetencies #core .corebox span{
    font-size: 1.5rem;
    color: var(--top-content);
}
body main #corecompetencies #core .corebox h1{
    font-family: 'Nata Sans';
    font-size: 1.5rem;
    color: var(--top-content);
    margin-bottom: 20px;
}
body main #corecompetencies #core .corebox h3{
    font-family: 'Nata Sans';
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    color: var(--top-content);
}

/**********My Projects**********/
body main #myprojects{
    max-width: 60%;
    /* border: 1px solid blue;  */
    border-radius: 20px;
    margin-bottom: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: 800ms ease;
}
body main #myprojects.show{
    transform: translateY(0px);
    opacity: 1;
}
body main #myprojects h1{
    font-family: 'Nata Sans';
    font-size: 3rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-top: 30px;
}
body main #myprojects h2{
    font-family: 'Nata Sans';
    font-size: 1rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}

body main #myprojects #projectbox{
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
body main #myprojects .projbox{
    width: 30%;
    height: 470px;
    background-color: whitesmoke;
    border-radius: 10px;
    /* border: 1px solid blue; */
    transition: .5s;
}
body main #myprojects .projbox:hover{
    transform: translateY(-10px);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
}
body main #myprojects .projbox .imageproj{
    display: flex;
    overflow: hidden;
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* border: 1px solid red; */
}
body main #myprojects .projbox .imageproj img{
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: .3s;
}
body main #myprojects .projbox .imageproj img:hover{
    transform: scale(1.1);
}
body main #myprojects .projbox .details{
    max-width: 100%;
    height: 230px;
    /* border: 1px solid red; */
    position: relative;
    padding: 20px;
}
body main #myprojects .projbox .details .techtool-list{
    display: flex;
    gap: 5px;
    padding: 10px 0 0 0;
    margin-bottom: 10px;

    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: horizontal;

    /* display: flex;
    flex-wrap: wrap;
    overflow: visible; */
    /* border: 1px solid red; */
}
body main #myprojects .projbox .details .techtool-list li{
    cursor: default;
    font-family: 'Nata Sans';
    font-size: .9rem;
    font-weight: 400;
    color: white;
    background-color: var(--top-content);
    padding: 5px 10px;
    border-radius: 5px;
    transition: .5s;
}
body main #myprojects .projbox .details .techtool-list li:hover{
    transform: translateY(-3px);
}

body main #myprojects .projbox .details .title{
    font-family: 'Nata Sans';
    font-weight: 600;
    font-size: 1rem;
    color: var(--top-content);
}
body main #myprojects .projbox .details  .desc{
    font-family: 'Nata Sans';
    font-weight: 300;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    text-indent: 50px;
    color: var(--top-content);
    --max-lines: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--max-lines);
    line-clamp: var(--max-lines);
}

body main #myprojects .projbox .details .btnlink{
    /* border: 1px solid red; */
    width: 95%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    margin-left: 8px;
    position: relative;
}

body main #myprojects .projbox .details .btnlink button{
    cursor: pointer;
    width: 20%;
    height: 30px;
    background-color: transparent;
    border-radius: 5px;
    border: 3px solid var(--top-content);
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: .5s ease;
}
body main #myprojects .projbox .details .btnlink button:hover{
    transform: scale(1.1);
}
body main #myprojects .projbox .details .btnlink button a{
    font-family: 'Nata Sans';
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--top-content);
}

body main #myprojects .projbox .details .btnlink .fa-arrow-up-right-from-square{
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--top-content);
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: .5s ease;
    padding: 5px;
}
body main #myprojects .projbox .details .btnlink .fa-arrow-up-right-from-square:hover{
    transform: scale(1.1);
}

/**********Education & Experience**********/
body main #educationexperience{
    width: 60%;
    height: 800px;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px; 
    margin-bottom: 100px;
    transform: translateY(100px);
    opacity: 0;
    transition: 800ms ease;
}
body main #educationexperience.show{
    transform: translateY(0px);
    opacity: 1;
}
body main #educationexperience h1{
    font-family: 'Nata Sans';
    font-size: 3rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-bottom: 20px;
}
body main #educationexperience .txteducexp{
    text-align: center;
    font-family: 'Nata Sans';
    font-size: 1rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-bottom: 20px;
}

body main #educationexperience #eduexpbox{
    width: 90%;
    height: 600px;
    border-radius: 10px;
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
    margin: 10px;
    gap: 50px;
}
/**********Education**********/
body main #educationexperience #eduexpbox .education{
    width: 50%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
body main #educationexperience #eduexpbox .education h1{
    font-family: 'Nata Sans';
    font-size: 2rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-top: 10px;
}
body main #educationexperience #eduexpbox .education .educationlist{
    width: 80%;
    height: 490px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 3px solid var(--nav-background);
    padding: 10px;
    gap: 10px;
}

body main #educationexperience #eduexpbox .education .educlist{
    width: 90%;
    max-height: auto;
    background-color: whitesmoke;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    color: white;
    transition: .5s ease;
    position: relative;
    /* border: 1px solid red; */
}
body main #educationexperience #eduexpbox .education .educlist::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% + -10px);
    right: calc(100% + 13px);
    background-color: var(--nav-background);
    border-radius: 50%;
}
body main #educationexperience #eduexpbox .education .educlist:hover{
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
}
body main #educationexperience #eduexpbox .education .educlist h2{
    font-family: 'Nata Sans';
    font-size: 1.5rem;
    color: var(--top-content);
}
body main #educationexperience #eduexpbox .education .educlist h3{
    font-family: 'Nata Sans';
    font-size: 1.2rem;
    color: var(--top-content);
}


/**********Experience**********/
body main #educationexperience #eduexpbox .experience{
    width: 50%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
body main #educationexperience #eduexpbox .experience h1{
    font-family: 'Nata Sans';
    font-size: 2rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-top: 10px;
}
body main #educationexperience #eduexpbox .experience .experiencelist{
    width: 80%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 3px solid var(--nav-background);
    scrollbar-width: thin;
    padding: 10px;
    gap: 10px;
}
body main #educationexperience #eduexpbox .experience .explist{
    width: 90%;
    max-height: auto;
    background-color: whitesmoke;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    color: white;
    transition: .5s ease;
    position: relative;
    /* border: 1px solid red; */
}
body main #educationexperience #eduexpbox .experience .explist::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% + -10px);
    right: calc(100% + 13px);
    background-color: var(--nav-background);
    border-radius: 50%;
}
body main #educationexperience #eduexpbox .experience .explist:hover{
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
}
body main #educationexperience #eduexpbox .experience .explist h2{
    font-family: 'Nata Sans';
    font-size: 1.5rem;
    color: var(--top-content);
}
body main #educationexperience #eduexpbox .experience .explist h3{
    font-family: 'Nata Sans';
    font-size: 1.2rem;
    color: var(--top-content);
}

/**********Word Motivation**********/
body main #wordmotivation{
    width: 100%;
    height: 400px;
    background-color: var(--nav-background);
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: 800ms ease;
}
body main #wordmotivation.show{
    transform: translateY(0px);
    opacity: 1;
}
body main #wordmotivation .wrapword{
    width: 100%;
    text-align: center;
}
body main #wordmotivation .wrapword h1{
    font-family: 'Nata Sans';
    font-size: 2.5rem;
    font-weight: 300;
    filter: drop-shadow( 1px 1px 3px white);
    color: white;
    text-transform: uppercase;
}
body main #wordmotivation .wrapword h1 span{
    font-size: 1.5rem;
}

/**********Contacts**********/
body main #contacts{
    max-width: 60%;
    height: 850px;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: 800ms ease;
}
body main #contacts.show{
    transform: translateY(0px);
    opacity: 1;
}
body main #contacts h1{
    font-family: 'Nata Sans';
    /* font-weight: 400; */
    font-size: 3rem;
    color: var(--font-detail);
    text-transform: uppercase;
    margin-top: 10px;
}
body main #contacts h2{
    font-family: 'Nata Sans';
    /* font-weight: 400; */
    font-size: 1rem;
    color: var(--font-detail);
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

/**********Form Message Email**********/
body main #contacts form{
    max-width: 70%;
    background-color: whitesmoke;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    /* border: 1px solid blue; */
}
body main #contacts form input{
    font-family: 'Nata Sans';
    font-size: 1rem;
    color: var(--nav-background);
    border-radius: 10px;
    width: 45%;
    height: 40px;
    outline: none;
    border: none;
    padding-left: 20px;
}
body main #contacts form textarea{
    width: 91%;
    font-family: 'Nata Sans';
    font-size: 1rem;
    color: var(--top-content);
    border-radius: 10px;
    padding: 20px;
    border: none;
    outline: none;
}
body main #contacts form button{
    cursor: pointer;
    width: 97%;
    height: 50px;
    background-color: var(--nav-background);
    border-radius: 10px;
    border: none;
    color: white;
    font-family: 'Nata Sans';
    font-size: 1rem;
}

body main #contacts #contactdetails{
    max-width: 73%;
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    /* align-items: center; */
    gap: 10px;
    /* border: 1px solid blue; */
    border-radius: 10px;
}
body main #contacts #contactdetails .socialmedia{
    width: 50%;
    height: 170px;
    background-color: var(--nav-background);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    /* border: 1px solid red; */
}

/**********Social Media**********/
body main #contacts #contactdetails .socialmedia h1{
    font-family: 'Nata Sans';
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
}
body main #contacts #contactdetails .socialmedia h3{
    font-family: 'Nata Sans';
    font-size: 1rem;
    font-weight: 300;
    color: white;
    text-align: center;
}
body main #contacts #contactdetails .mediaicon{
    width: 80%;
    height: 50px;
    /* border: 1px solid red; */
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
body main #contacts #contactdetails .mediaicon i{
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    width: 45px;
    height: 45px;
    align-content: center;
    border: 1px solid white;
    border-radius: 10px;
    transition: .2s;
}
body main #contacts #contactdetails .mediaicon i:hover{
    transform: scale(1.1);
    filter: drop-shadow(1px 1px 5px white);
}

/**********Email Address**********/
body main #contacts #contactdetails .emailaddress{
    width: 50%;
    height: 170px;
    background-color: var(--nav-background);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 30px;
    gap: 15px; 
    /* border: 1px solid red; */
}

body main #contacts #contactdetails .email{
    width: 100%;
    height: 100px;
    background-color: whitesmoke;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 5px; */
    /* margin-bottom: 10px; */
    transition: .5s;
}
body main #contacts #contactdetails .email:hover{
    transform: translateY(-5px);
    filter: drop-shadow(1px 1px 5px white);
}
body main #contacts #contactdetails .email i{
    font-size: 2.5rem;
    color: var(--top-content);
}

body main #contacts #contactdetails .email .wrapboxemail{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* border: 1px solid black; */
}
body main #contacts #contactdetails .email .wrapboxemail label{
    font-family: 'Nata Sans';
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--top-content);
    text-transform: uppercase;
    gap: 10px;
}
body main #contacts #contactdetails .email .wrapboxemail a{
    text-decoration: none;
    font-family: 'Nata Sans';
    font-size: .9rem;
    color: var(--top-content);
}

/**********Location**********/
body main #contacts #contactdetails .location{
    width: 100%;
    height: 100px;
    background-color: whitesmoke;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 5px; */
    transition: .5s;
}
body main #contacts #contactdetails .location:hover{
    transform: translateY(-5px);
    filter: drop-shadow(1px 1px 5px white);
}
body main #contacts #contactdetails .location .wrapboxlocation{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* border: 1px solid black; */
}
body main #contacts #contactdetails .location i{
    font-size: 2.5rem;
    color: var(--top-content);
}
body main #contacts #contactdetails .location .wrapboxlocation label{
    font-family: 'Nata Sans';
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--top-content);
    text-transform: uppercase;
    gap: 10px;
}
body main #contacts #contactdetails .location .wrapboxlocation a{
    text-decoration: none;
}
body main #contacts #contactdetails .location .wrapboxlocation a h3{
    cursor: pointer;
    font-family: 'Nata Sans';
    font-weight: 400;
    font-size: .8rem;
    color: var(--top-content);
}

/**********Back to Top Button**********/
body main .back-to-top{
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--top-content);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, .5);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 100;

    /* Hidden by default = slides in from right */
    transform: translateX(80px);
    transition: transform .5s ease, background 0.2s;
}
body main .back-to-top:hover{
    filter: drop-shadow( 1px 1px 3px white);
}

/* Scroll-State: Show button when page can be scrolled up */
@container page (scroll-state(scrollable: top)){
    body main .back-to-top{
        transform: translateX(0);
    }
}

/************************************Footer************************************/
body footer{
    background-color: var(--nav-background);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body footer h1{
    font-family: 'Nata Sans';
    font-weight: 300;
    font-size: 1.5rem;
    font-weight: 400;
    filter: drop-shadow(1px 1px 3px white);
    color: white;
}



/************************************Responsive Media Query************************************/

/*****************Desktop Extra Large Screen ViewSize*****************/
@media (max-width: 1640px){
    /**********LOGO**********/
    body nav h1{
        margin-left: 100px;
    }

    /**********Navigation Links**********/
    body nav ul{
        width: 60%;
        right: 100px;
    }
    body nav ul a{
        font-size: 1.3rem;
    }

    #theme-switch{
        right: 50px;
    }

    /************************************Header************************************/
    /**********My Photo**********/
    body header .mypic{
        width: 500px;
        right: 0px;
    }
    body header .wrappersonalinfo{
        height: 620px;
        left: 200px;
    }
    /**********My Quote**********/
    body header .wrappersonalinfo .quote{
        font-size: 5.5rem;
    }
    /**********My Name**********/
    body header .wrappersonalinfo .myname{
        font-size: 3rem;
    }
    /**********My Course**********/
    body header .wrappersonalinfo .mycourse{
        font-weight: 200;
    }
    /**********Passionate**********/
    body header .wrappersonalinfo .passionate{
        font-size: 3rem;
    }

    /**********About Me**********/
    body main #Aboutme{
        height: 520px;
    }
    body main #Aboutme h1{
        font-size: 2.5rem;
    }
    /**********My Journey**********/
    body main #Aboutme aside #myjourney{
        height: 290px;
    }
    /**********My Approach**********/
    body main #Aboutme aside #myapproach{
        height: 290px;
    }

    /**********Core Competencies**********/
    body main #corecompetencies h1{
        font-size: 2.5rem;
    }
    body main #corecompetencies #core .corebox h1{
        font-size: 1rem;
    }
    body main #corecompetencies #core .corebox h3{
        font-size: .8rem;
    }

    /**********My Projects**********/
    body main #myprojects{
        max-width: 80%;
        /* border: 1px solid red; */
    }
    body main #myprojects h1{
        font-size: 2.5rem;
    }

    body main #myprojects .projbox .details .title{
        font-size: 1rem;
        font-weight: 600;
    }

    /**********Education & Experience**********/
    body main #educationexperience{
        width: 80%;
    }

    body main #educationexperience #eduexpbox .education .educlist::before{
        right: calc(100% + 12px);
    }

    body main #educationexperience #eduexpbox .experience .explist::before{
        right: calc(100% + 12px);
    }

    /**********Word Motivation**********/
    body main #wordmotivation .wrapword h1{
        font-size: 2rem;
    }
    body main #wordmotivation .wrapword h1 span{
        font-size: 1rem;
    }

    /**********Contacts**********/
    body main #contacts{
        max-width: 80%;
    }

    /**********Email Address**********/
    body main #contacts #contactdetails .email i{
        font-size: 2rem;
    }
    body main #contacts #contactdetails .email .wrapboxemail label{
        font-size: 1rem;
    }
    body main #contacts #contactdetails .email .wrapboxemail a{
        font-size: .8rem;
    }

    /**********Location**********/
    body main #contacts #contactdetails .location i{
        font-size: 2rem;
    }
    body main #contacts #contactdetails .location .wrapboxlocation label{
        font-size: 1rem;
    }
}

/*****************Desktop Screen ViewSize*****************/
@media (max-width: 1240px){
    /**********Navigation Links**********/
    body nav ul{
        right: 50px;
        gap: 30px;
    }
    body nav ul a{
        height: 30px;
        font-size: 1rem;
    }

    #theme-switch{
        top: 25px;
        right: 40px;
    }

    /************************************Header************************************/
    
    /**********My Photo**********/
    body header .mypic{
        width: 500px;
        right: 0px;
    }
    body header .wrappersonalinfo{
        height: 620px;
        left: 100px;
    }
    /**********My Quote**********/
    body header .wrappersonalinfo .quote{
        font-size: 4.5rem;
        margin-bottom: 100px;
    }
    /**********My Name**********/
    body header .wrappersonalinfo .myname{
        font-size: 2.5rem;
    }
    /**********My Course**********/
    body header .wrappersonalinfo .mycourse{
        font-size: 1.5rem;
        font-weight: 200;
    }
    /**********Passionate**********/
    body header .wrappersonalinfo .passionate{
        font-size: 2rem;
    }

    /**********About Me**********/
    body main #Aboutme{
        height: 600px;
    }
    /**********My Journey**********/
    body main #Aboutme aside #myjourney{
        height: 380px;
    }
    /**********My Approach**********/
    body main #Aboutme aside #myapproach{
        height: 380px;
    }

    /**********Core Competencies**********/
    body main #corecompetencies h1{
        font-size: 2.5rem;
    }
    body main #corecompetencies #core .corebox h1{
        font-size: 1rem;
    }
    body main #corecompetencies #core .corebox h3{
        font-size: .8rem;
    }

    /**********My Projects**********/
    body main #myprojects{
        max-width: 90%;
    }
    body main #myprojects h1{
        font-size: 2.5rem;
    }

    body main #myprojects .projbox .details .title{
        font-size: 1rem;
    }

    body main #educationexperience h1{
        font-size: 2rem;
    }

    body main #educationexperience #eduexpbox .education .educationlist{
        height: 450px;
    }

    body main #educationexperience #eduexpbox .education .educlist::before{
        right: calc(100% + 5px);
    }

    body main #educationexperience #eduexpbox .education .educlist h2{
        font-size: 1.5rem;
    }
    body main #educationexperience #eduexpbox .education .educlist h3{
        font-size: 1rem;
    }

    body main #educationexperience #eduexpbox .education .experiencelist{
        height: 450px;
    }

    body main #educationexperience #eduexpbox .experience .explist::before{
        right: calc(100% + 5px);
    }
    body main #educationexperience #eduexpbox .experience .explist h2{
        font-size: 1.5;
    }
    body main #educationexperience #eduexpbox .experience .explist h3{
        font-size: 1rem;
    }

    /**********Word Motivation**********/
    body main #wordmotivation .wrapword h1{
        font-size: 1.5rem;
    }
    body main #wordmotivation .wrapword h1 span{
        font-size: 1rem;
    }

    /**********Contacts**********/
    body main #contacts{
        max-width: 90%;
    }

}

/*****************Laptop Screen ViewSize*****************/
@media (max-width: 1080px){
    /************************************Navigation************************************/
    body nav{
        height: 80px;
    }
    /**********LOGO**********/
    body nav #rjrlogo img{
        height: 70px;
        width: 70px;
    }
    body nav h1{
        font-size: 1.5rem;
    }
    /**********Navigation Unordered List**********/
    body nav ul{
        background-color: var(--top-content);
        /* flex-direction: column; */
        width: 100%;
        height: 100px;
        top: 80px;
        right: 0;
        overflow: hidden;
        transition: all .8s;
        box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
    }
    body nav ul a{
        color: white;
    }

    .tooltip-resume{
        display: none;
    }

    #theme-switch{
        top: 20px;
        right: 100px;
    }

    body nav .ham-menu{
        top: 25px;
        right: 50px;
        display: block;
    }

    /************************************Header************************************/
    body header{
        height: 600px;
    }

    /**********My Photo**********/
    body header .mypic{
        width: 350px;
        right: 0px;
    }
    body header .wrappersonalinfo{
        height: 300px;
        left: 80px;
        top: 50px;
    }
    /**********My Quote**********/
    body header .wrappersonalinfo .quote{
        font-size: 3.5rem;
        margin-bottom: 80px;
    }
    /**********My Name**********/
    body header .wrappersonalinfo .myname{
        font-size: 2rem;
    }
    /**********My Course**********/
    body header .wrappersonalinfo .mycourse{
        font-size: 1rem;
        font-weight: 200;
        margin-bottom: 50px;
    }
    /**********Passionate**********/
    body header .wrappersonalinfo .passionate{
        font-size: 2rem;
    }

    /**********About Me**********/
    body main #Aboutme{
        height: 800px;
    }
    body main #Aboutme h1{
        font-size: 2rem;
    }
    body main #Aboutme aside{
        flex-direction: column;
        /* border: 1px solid red; */
    }   
    /**********My Journey**********/
    body main #Aboutme aside #myjourney{
        height: 230px;
    }
    body main #Aboutme aside #myjourney h2{
        font-size: 2rem;
    }
    /**********My Approach**********/
    body main #Aboutme aside #myapproach{
        height: 230px;
    }
    body main #Aboutme aside #myapproach h2{
        font-size: 2rem;
    }

    /**********Core Competencies**********/
    body main #corecompetencies h1{
        font-size: 2rem;
    }
    body main #corecompetencies #core .corebox h1{
        font-size: .8rem;
    }
    body main #corecompetencies #core .corebox h3{
        font-size: .8rem;
    }

    /**********My Projects**********/
    body main #myprojects{
        max-width: 90%;
    }
    body main #myprojects h1{
        font-size: 2rem;
    }
    body main #myprojects #projectbox{
        display: flex;
        flex-wrap: wrap;
    }
    body main #myprojects .projbox{
        width: 35%;
    }
    body main #myprojects .projbox .details .title{
        font-size: 1rem;
    }
    body main #myprojects .projbox .details .desc{
        font-size: .8rem;
    }
    body main #myprojects .projbox .details .btnlink button{
        width: 23%;
    }

    /**********Education & Experience**********/
    body main #educationexperience{
        width: 90%;
        height: 740px;
    }
    body main #educationexperience h1{
        font-size: 2rem;
    }

    body main #educationexperience #eduexpbox{
        height: 550px;
    }
    /**********Education**********/
    body main #educationexperience #eduexpbox .education h1{
        font-size: 1.5rem;
    }
    body main #educationexperience #eduexpbox .education .educlist::before{
        right: calc(100% + 6px);
    }
    body main #educationexperience #eduexpbox .education .educlist:hover{
        box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
    }
    body main #educationexperience #eduexpbox .education .educlist h2{
        font-size: 1.2rem;
    }
    body main #educationexperience #eduexpbox .education .educlist h3{
        font-size: .9rem;
    }

    /**********Experience**********/
    body main #educationexperience #eduexpbox .experience h1{
        font-size: 1.5rem;
    }
    body main #educationexperience #eduexpbox .experience .explist::before{
        right: calc(100% + 6px);
    }
    body main #educationexperience #eduexpbox .experience .explist:hover{
        box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.12);
    }
    body main #educationexperience #eduexpbox .experience .explist h2{
        font-size: 1.5rem;
    }
    body main #educationexperience #eduexpbox .experience .explist h3{
        font-size: 1rem;
    }

    /**********Word Motivation**********/
    body main #wordmotivation{
        height: 200px;
    }
    body main #wordmotivation .wrapword h1{
        font-size: 1.2rem;
    }
    body main #wordmotivation .wrapword h1 span{
        font-size: 1rem;
    }

    /**********Contacts**********/
    body main #contacts{
        max-width: 90%;
        height: 1050px;
    } 
    body main #contacts h1{
        font-size: 2rem;
    }

    /**********Form Message Email**********/
    body main #contacts form input{
        width: 44%;
    }

    body main #contacts #contactdetails{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* border: 1px solid blue; */
    }
    body main #contacts #contactdetails .socialmedia{
        width: 92%;
        height: 130px;
    }

    /**********Social Media**********/
    body main #contacts #contactdetails .socialmedia h1{
        font-size: 1rem;
    }
    body main #contacts #contactdetails .socialmedia h3{
        font-size: .8rem;
    }

    /**********Email Address**********/
    body main #contacts #contactdetails .emailaddress{
        width: 92%;
    }
    body main #contacts #contactdetails .email i{
        font-size: 2rem;
    }
    body main #contacts #contactdetails .email .wrapboxemail label{
        font-size: 1rem;
    }
    body main #contacts #contactdetails .email .wrapboxemail a{
        font-size: 1rem;
    }

    /**********Location**********/
    body main #contacts #contactdetails .location i{
        font-size: 2rem;
    }
    body main #contacts #contactdetails .location .wrapboxlocation label{
        font-size: 1rem;
    }
    body main #contacts #contactdetails .location .wrapboxlocation a h3{
        font-size: 1rem;
    }

    /************************************Footer************************************/
    body footer h1{
        font-size: 1rem;
    }
}

/*****************Mobile/Tablet Screen ViewSize*****************/
@media (max-width: 780px){
    /**********LOGO**********/
    body nav h1{
        margin-left: 50px;
    }

    /**********Navigation Unordered List**********/
    body nav ul{
        gap: 25px;
    }
    body nav ul a{
        height: 30px;
        font-size: .8rem;
    }

    body nav .ham-menu{
        right: 50px;
    }

    /************************************Header************************************/
    body header{
        height: 500px;
    }

    /**********My Photo**********/
    body header .mypic{
        width: 250px;
        right: 0px;

    }
    body header .wrappersonalinfo{
        height: 300px;
        top: 50px;
        left: 40px;
    }
    /**********My Quote**********/
    body header .wrappersonalinfo .quote{
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    /**********My Name**********/
    body header .wrappersonalinfo .myname{
        font-size: 1.5rem;
    }
    /**********My Course**********/
    body header .wrappersonalinfo .mycourse{
        font-size: .8rem;
        font-weight: 200;
        margin-bottom: 50px;
    }
    /**********Passionate**********/
    body header .wrappersonalinfo .passionate{
        font-size: 1rem;
    }

    /**********About Me**********/
    body main #Aboutme{
        height: 900px;
        margin-bottom: 20px;
        /* border: 1px solid red; */
    }
    body main #Aboutme h1{
        font-size: 2rem;
    }
    body main #Aboutme h3{
        font-size: 1rem;
    }
    body main #Aboutme aside{
        flex-direction: column;
        /* border: 1px solid red; */
    }   
    /**********My Journey**********/
    body main #Aboutme aside #myjourney{
        height: 280px;
    }
    body main #Aboutme aside #myjourney h2{
        font-size: 1.5rem;
    }
    body main #Aboutme aside #myjourney h3{
        font-size: 1rem;
    }
    /**********My Approach**********/
    body main #Aboutme aside #myapproach{
        height: 280px;
    }
    body main #Aboutme aside #myapproach h2{
        font-size: 1.2rem;
    }
    body main #Aboutme aside #myapproach h3{
        font-size: 1rem;
    }

    /**********Core Competencies**********/
    body main #corecompetencies{
        height: 700px;
        /* border: 1px solid red; */
    }
    body main #corecompetencies h1{
        font-size: 2rem;
    }
    /**********Cores**********/
    body main #corecompetencies #core .corebox{
        max-width: 70%;
        height: 100px;
        padding: 20px;  
        /* border: 1px solid red; */
    }
    body main #corecompetencies #core .corebox h1{
        font-size: .8rem;
    }
    body main #corecompetencies #core .corebox h3{
        font-size: .8rem;
    }

    /**********My Projects**********/
    body main #myprojects{
        max-width: 90%;
        margin-bottom: 100px;
        /* border: 1px solid red; */
    }
    body main #myprojects h1{
        font-size: 2rem;
    }
    body main #myprojects #projectbox{
        flex-wrap: wrap;
        display: flex;
        gap: 40px;
        /* border: 1px solid red; */
    }
    body main #myprojects .projbox{
        width: 50%;
        height: 480px;
        /* border: 1px solid red; */
    }
    body main #myprojects .projbox img{
        height: 150px;
    }
    body main #myprojects .projbox .details .title{
        font-size: 1rem;
    }
    body main #myprojects .projbox .details {
        height: 210px;
    }
    body main #myprojects .projbox .details .btnlink{
        height: 50px;
        margin-left: 5px;
    }
    body main #myprojects .projbox .details .btnlink button{
        width: 30%;
    }
    body main #myprojects .projbox .details .btnlink .fa-arrow-up-right-from-square{
        font-size: 1rem;
    }


    /**********Education & Experience**********/
    body main #educationexperience{
        width: 90%;
        height: 1100px;
    }
    body main #educationexperience h1{
        font-size: 2rem;
    }

    body main #educationexperience #eduexpbox{
        height: 1000px;
        flex-direction: column;
        align-items: center;
    }
    /**********Education**********/
    body main #educationexperience #eduexpbox .education{
        width: 90%;
    }
    body main #educationexperience #eduexpbox .education .educlist{
        height: 440px;
    }
    body main #educationexperience #eduexpbox .education .educlist::before{
        right: calc(100% + 8px);
    }

    /**********Experience**********/
    body main #educationexperience #eduexpbox .experience{
        width: 90%;
    }
    body main #educationexperience #eduexpbox .experience .explist{
        height: 440px;
    }
    body main #educationexperience #eduexpbox .experience .explist::before{
        right: calc(100% + 8px);
    }

    /**********Word Motivation**********/
    body main #wordmotivation .wrapword{
        width: 90%;
        text-align: center;
    }
    body main #wordmotivation .wrapword h1{
        font-size: 1rem;
    }
    body main #wordmotivation .wrapword h1 span{
        font-size: .8rem;
    }

    /**********Contacts**********/
    body main #contacts{
        height: 1000px;
    } 
    body main #contacts h1{
        font-size: 2rem;
    }
    body main #contacts h2{
        font-size: .8rem;
        text-align: center;
    }

    /**********Form Message Email**********/
    body main #contacts form input{
        width: 41%;
        font-size: .8rem;
    }
    body main #contacts form textarea{
        font-size: .8rem;
    }
    body main #contacts form button{
        font-size: .8rem;
    }
    body main #contacts #contactdetails .socialmedia{
        width: 92%;
        height: 130px;
    }
    /**********Social Media**********/
    body main #contacts #contactdetails .socialmedia h1{
        font-size: 1rem;
    }
    body main #contacts #contactdetails .socialmedia h3{
        font-size: .8rem;
    }

    body main #contacts #contactdetails .mediaicon i{
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }

    /**********Email Address**********/
    body main #contacts #contactdetails .emailaddress{
        width: 92%;
    }
    body main #contacts #contactdetails .email i{
        font-size: 1.5rem;
    }
    body main #contacts #contactdetails .email .wrapboxemail a{
        font-size: .8rem;
    }

    /**********Location**********/
    body main #contacts #contactdetails .location i{
        font-size: 1.5rem;
    }
    body main #contacts #contactdetails .location .wrapboxlocation a h3{
        font-size: .8rem;
    }

    body main .back-to-top{
        right: 1rem;
    }
}

/*****************Mobile Screen ViewSize*****************/
@media (max-width: 480px){
    /**********LOGO**********/
    body nav #rjrlogo img{
        height: 60px;
        width: 60px;
    }
    body nav h1{
        font-size: 1.5rem;
        margin-left: 30px;
    }

    /**********Navigation Unordered List**********/
    body nav ul{
        flex-direction: column;
        height: 400px;
        gap: 25px;
        /* border: 1px solid red; */
    }
    body nav ul a{
        font-size: 1.3rem;
    }

    body nav .navicon .fa-bars{
        font-size: 1.5rem;
    }

    /************************************Header************************************/
    body header{
        height: 400px;
    }

    /**********My Photo**********/
    body header .mypic{
        width: 180px;
        right: 0px;
    }
    body header .wrappersonalinfo{
        height: 300px;
        top: 50px;
        left: 40px;
    }
    /**********My Quote**********/
    body header .wrappersonalinfo .quote{
        font-size: 1.5rem;
        margin-bottom: 50px;
    }
    /**********My Name**********/
    body header .wrappersonalinfo .myname{
        font-size: 1rem;
    }
    /**********My Course**********/
    body header .wrappersonalinfo .mycourse{
        font-size: .6rem;
        font-weight: 200;
        margin-bottom: 50px;
    }
    /**********Passionate**********/
    body header .wrappersonalinfo .passionate{
        font-size: .8rem;
    }

    /**********About Me**********/
    body main #Aboutme{
        height: 820px;
    }
    body main #Aboutme h1{
        font-size: 1.5rem;
    }
    body main #Aboutme h3{
        font-size: .8rem;
    }
    body main #Aboutme aside{
        flex-direction: column;
        /* border: 1px solid red; */
    }   
    /**********My Journey**********/
    body main #Aboutme aside #myjourney{
        height: 250px;
    }
    body main #Aboutme aside #myjourney h2{
        font-size: 1.2rem;
    }
    body main #Aboutme aside #myjourney h3{
        font-size: .8rem;
    }
    /**********My Approach**********/
    body main #Aboutme aside #myapproach{
        height: 250px;
    }
    body main #Aboutme aside #myapproach h2{
        font-size: 1.2rem;
    }
    body main #Aboutme aside #myapproach h3{
        font-size: .8rem;
    }

    /**********Core Competencies**********/
    body main #corecompetencies{
        height: 880px;
        /* border: 1px solid red; */
    }
    body main #corecompetencies h1{
        font-size: 1.5rem;
    }
    /**********Cores**********/
    body main #corecompetencies #core .corebox{
        height: 150px;
    }
    body main #corecompetencies #core .corebox h1{
        font-size: 1rem;
    }
    body main #corecompetencies #core .corebox h3{
        font-size: .8rem;
    }


    /**********My Projects**********/
    body main #myprojects{
        max-width: 90%;
    }
    body main #myprojects h1{
        font-size: 1.5rem;
    }
    body main #myprojects h2{
        font-size: .8rem;
        text-align: center;
    }
    body main #myprojects .projbox{
        width: 70%;
        height: 430px;
    }
    body main #myprojects .projbox img{
        height: 150px;
    }
    body main #myprojects .projbox .details .title{
        font-size: .8rem;
    }
    body main #myprojects .projbox .details{
        height: 150px;
    }
    body main #myprojects .projbox .details .btnlink .fa-arrow-up-right-from-square{
        font-size: 1rem;
    }

    /**********Education & Experience**********/
    body main #educationexperience h1{
        font-size: 1.5rem;
    }
    body main #educationexperience .txteducexp{
        font-size: .8rem;
    }
    /**********Education**********/
    body main #educationexperience #eduexpbox .education .educlist::before{
        width: 15px;
        height: 15px;
        right: calc(100% + 8px);
    }

    /**********Experience**********/
    body main #educationexperience #eduexpbox .experience .explist::before{
        width: 15px;
        height: 15px;
        right: calc(100% + 8px);
    }

    /**********Contacts**********/
    body main #contacts{
        height: 1000px;
    } 

    body main #contacts h1{
        font-size: 1.5rem;
    }

    /**********Form Message Email**********/
    body main #contacts form input{
        width: 38%;
    }
    body main #contacts #contactdetails .socialmedia{
        width: 92%;
        height: 130px;
    }

    /**********Email Address**********/
    body main #contacts #contactdetails .email .wrapboxemail label{
        font-size: .8rem;
    }
    body main #contacts #contactdetails .email .wrapboxemail a{
        font-size: .6rem;
    }

    /**********Location**********/
    body main #contacts #contactdetails .location .wrapboxlocation label{
        font-size: .8rem;
    }
    body main #contacts #contactdetails .location .wrapboxlocation a h3{
        font-size: .6rem;
    }

    body main .back-to-top{
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/*****************Mobile Extra Small Screen ViewSize*****************/
@media (max-width: 360px){
    /**********Navigation Unordered List**********/
    
    body nav ul a{
        font-size: 1.3rem;
    }

    #theme-switch{
        top: 20px;
        right: 65px;
    }

    body nav .ham-menu{
        top: 25px;
        right: 25px;
        display: block;
    }

    /************************************Header************************************/
    body header{
        height: 400px;
    }

    body nav ul .nav-item .fa-file{
        font-size: 1.5rem;
        height: 35px;
    }
    
    /**********My Photo**********/
    body header .mypic{
        width: 150px;
        right: 0px;
    }
    body header .wrappersonalinfo{
        height: 300px;
        top: 50px;
        left: 30px;
    }
    /**********My Quote**********/
    body header .wrappersonalinfo .quote{
        font-size: 1.5rem;
        margin-bottom: 50px;
    }
    /**********My Name**********/
    body header .wrappersonalinfo .myname{
        font-size: 1rem;
        margin-bottom: 5px;
    }
    /**********My Course**********/
    body header .wrappersonalinfo .mycourse{
        font-size: .6rem;
        font-weight: 200;
        margin-bottom: 50px;
    }
    /**********Passionate**********/
    body header .wrappersonalinfo .passionate{
        font-size: .7rem;
    }

    /**********About Me**********/
    body main #Aboutme{
        height: 950px;
    }
    body main #Aboutme h1{
        font-size: 1.5rem;
    }
    body main #Aboutme h3{
        font-size: .8rem;
    }
    body main #Aboutme aside{
        flex-direction: column;
        /* border: 1px solid red; */
    }   
    /**********My Journey**********/
    body main #Aboutme aside #myjourney{
        height: 310px;
    }
    body main #Aboutme aside #myjourney h2{
        font-size: 1.2rem;
    }
    body main #Aboutme aside #myjourney h3{
        font-size: .8rem;
    }
    /**********My Approach**********/
    body main #Aboutme aside #myapproach{
        height: 310px;
    }
    body main #Aboutme aside #myapproach h2{
        font-size: 1.2rem;
    }
    body main #Aboutme aside #myapproach h3{
        font-size: .8rem;
    }

    /**********Core Competencies**********/
    body main #corecompetencies{
        height: 750px;
    }
    body main #corecompetencies h1{
        font-size: 1.5rem;
    }
    /**********Cores**********/
    body main #corecompetencies #core .corebox{
        height: 130px;
    }
    body main #corecompetencies #core .corebox h1{
        font-size: 1rem;
    }
    body main #corecompetencies #core .corebox h3{
        font-size: .8rem;
    }

    /**********My Projects**********/
    body main #myprojects .projbox{
        height: 440px;
    }
    body main #myprojects .projbox .details{
        height: 200px;
    }


    /**********Education & Experience**********/
    body main #educationexperience{
        height: 1300px;
    }
    body main #educationexperience h1{
        font-size: 1.rem;
    }
    body main #educationexperience h2{
        font-size: .8rem;
    }
    body main #educationexperience #eduexpbox{
        height: 1500px;
    }
    /**********Education**********/
    body main #educationexperience #eduexpbox .education{
        height: 700px;
    }
    body main #educationexperience #eduexpbox .education .educationlist{
        height: 600px;
    }
    body main #educationexperience #eduexpbox .education .educlist{
        height: 600px;
    }
    body main #educationexperience #eduexpbox .education .educlist::before{
        right: calc(100% + 5px);
    }

    /**********Experience**********/
    body main #educationexperience #eduexpbox .experience{
        height: 400px;
    }
    body main #educationexperience #eduexpbox .experience .experiencelist{
        height: 300px;
    }
    body main #educationexperience #eduexpbox .experience .explist{
        height: 300px;
    }
    body main #educationexperience #eduexpbox .experience .explist::before{
        right: calc(100% + 5px);
    }

    /**********Contacts**********/
    body main #contacts{
        height: 1010px;
    } 

    /**********Form Message Email**********/
    body main #contacts form input{
        width: 37%;
    }
    body main #contacts #contactdetails .socialmedia{
        height: 150px;
    }

    body main #contacts #contactdetails .mediaicon i{
        font-size: 1rem;
        width: 40px;
        height: 30px;
    }

    /**********Email Address**********/
    body main #contacts #contactdetails .email i{
        font-size: 1rem;
    }

    /**********Location**********/
    body main #contacts #contactdetails .location i{
        font-size: 1rem;
    }

    body main .back-to-top{
        bottom: 6.5rem;
        right: .6rem;
    }


    /************************************Footer************************************/
    body footer h1{
        font-size: .8rem;
    }

}
