body {
    background-color: #000000;
    padding: 0px;
    margin: 0px;

    /* Webkits are needed to make it so that the text will not be selected or highlighed when it is clicked on */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer */
    -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/

    font-family: Calibri, sans-serif;

    overflow-x: hidden;
}





/* Scrollbar styles (only for Chrome and Safari) */
::-webkit-scrollbar {
  width: 14px;
  height: 12px;
}
::-webkit-scrollbar-track {
  border: 1px solid #FFFFFF;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #003780;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #000000;
}





/* Header */
/* Code for the top of the page that is used for the main logo and the navigation bar */
.div-mainheader {
    background-color: #AAAAAA;
    height: 300px;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 100px 100px;

    margin-top: 20px;
}
.div-imageframe {
    background-color: #000000;
    grid-area: 1 / 1 / span 3 / span 1;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}
.a-label {
    color: #FFFFFF;
    font-size: 18px;
    font-family: Arial, Verdana, geneva, sans-sarif;
    opacity: 0.8;

    grid-row: 1;
    grid-column: 2;

    justify-self: center;

    text-decoration: none;
}
.div-img {
    height: 150px;
    width: 400px;
    background-color: #000000;

    grid-column: 2;
    grid-row: 2;

    display: grid;

    grid-template-rows: 0.5fr 1.5fr 0.5fr;
    grid-template-columns: 0.5fr 1.5fr 0.5fr;

    margin-bottom: 4em;

    align-self: center;
    justify-self: center;
}
.animatecover {
    height: 150px;
    
    background-color: #000000;

    grid-row: 2;
    grid-column: 2;

    display: grid;
    z-index: 1;
}
.img-blackbox {
    max-width: 100%;
    height: auto;

    opacity: 0;

    grid-row: 2;
    grid-column: 2;

    display: grid;
    z-index: 0;
}
.div-navbar {
    background-color: #000000;

    height: 75px;

    border-top-style: solid;
    border-bottom-width: 1px;

    border-top-width: 1px;
    border-bottom-style: solid;

    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    
    z-index: 1000;

    /* margin-top: 100px; */
}
.ul-navbar {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: flex-start; /* This ensures that items start from the left */
    list-style-type: none; /* Removes the bullet points */
    padding-left: 50px;
}
.ul-navbar li {
    color: #FFFFFF;
    font-family: Calibri, sans-serif;
    font-size: 22px;

    margin: 10px;

    display: inline-block;
    cursor: default;
}
.ul-navbar li:hover {
    color: #FFFFFF;
}
.ul-navbar li a{
    color: #FFFFFF;
    text-decoration: none;
    transition: filter 300ms;
}
.ul-navbar li a:hover {
    filter: brightness(0.5);
}
.ul-navbar [class^='navbar-title-'] {
    margin-left: auto; /* This pushes the item to the right */
    /* margin-right: 80px; */
}
[class^='navbar-title-'] {
    position: absolute;
    right: 0; /* Aligns the stacked items to the right */
    top: 0; /* Start stacking from the top */
    z-index: 1; /* Start with a base z-index */
}
[class^='navbar-title-']:nth-child(5) {
    z-index: 2; /* Adjust z-index to stack on top */
}
[class^='navbar-title-']:nth-child(6) {
    z-index: 3; /* Each subsequent item has a higher z-index */
}



/* Body */
/* Swiper styling */
.swiper-container {
    position: relative;
    /* width: 100%;
    max-width: 100%; */
    height: 720px;
    overflow-x: hidden;
    overflow-y: hidden;
}
.swiper-wrapper {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    
}
.swiper-slide {
    background: #000000;
    justify-content: center;
    align-items: center;
    font-size: 60px;

    width: auto;

    grid-row: 1;
    grid-column: 1;    
}
.swiper-pagination-bullet {
    opacity: 1;
    background-color: #338AFF !important;
}
.swiper-slide img, .swiper-slide .content {
    max-width: 100%;
    height: auto;
}
.swiper-container, .swiper-container * {
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}


/* Body Cont. */
/* This contains styling for each for the 3 main sections on each page and also ...
... styling for their horizontal subsections of text and image. */
[class^="div-body-container"] {
    height: 720px;
    width: 100%;
    background-color: #000000;
    color: #FFFFFF;

    grid-row: 1;
    grid-column: 1;

    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}
[class^='div-container-text1-'] {
    grid-row: 1;
    grid-column: 1;

    align-self: center;
    justify-self: start;

    opacity: 0;

    z-index: 1;

    margin-top: 100px;
    margin-bottom: 0px;
    margin-left: 100px;
}
[class^='div-container-text2-'] {
    grid-row: 1;
    grid-column: 1;

    align-self: center;
    justify-self: end;

    opacity: 0;

    z-index: 1;

    margin-top: 100px;
    margin-bottom: 0px;
    margin-right: 100px;
}
[class^='div-container-text3-'] {
    grid-row: 1;
    grid-column: 1;

    align-self: center;
    justify-self: start;

    opacity: 0;

    z-index: 1;

    margin-top: 100px;
    margin-bottom: 0px;
    margin-left: 100px;
}
[class^='div-container-text'] h1 {
    font-size: 36px;
    font-family: Arial, Verdana, sans-sarif;
}
[class^='div-container-text'] p {
    font-size: 16px;
    font-family: Arial, Verdana, geneva, sans-sarif;
    width: 400px;
}
.img-body-mob{
    opacity: 0;
    pointer-events: none;
}
[class^='div-container-img1-'] {
    /* background-color: #AAAAAA; */
    max-width: 100%;
    height: auto;

    grid-row: 1;
    grid-column: 1;

    align-self: center;
    justify-self: end;

    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}
[class^='div-container-img2-'] {
    /* background-color: #AAAAAA; */
    max-width: 100%;
    height: auto;

    grid-row: 1;
    grid-column: 1;

    align-self: center;
    justify-self: start;

    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}
[class^='div-container-img3-'] {
    /* background-color: #AAAAAA; */
    max-width: 100%;
    height: auto;

    grid-row: 1;
    grid-column: 1;

    align-self: center;
    justify-self: end;

    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}
[class^='div-container-img1-'] img{
    max-width: 100%;
    height: auto;

    grid-row: 1;
    grid-column: 1;
    
    justify-self: end;
    align-self: center;

    opacity: 0.3;

    z-index: 0;
}
[class^='div-container-img2-'] img{
    max-width: 100%;
    height: auto;
    
    grid-row: 1;
    grid-column: 1;
    
    justify-self: start;
    align-self: center;

    opacity: 0.3;

    z-index: 0;
}
[class^='div-container-img3-'] img{
    max-width: 100%;
    height: auto;

    grid-row: 1;
    grid-column: 1;
    
    justify-self: end;
    align-self: center;

    opacity: 0.3;

    z-index: 0;
}





/* Footer */
.div-footer{
    background-color: #000000;

    border-style: solid;
    border-color: #FFFFFF;
    border-width: 1px;
    /* border-left: hidden;
    border-right: hidden; */

    margin-top: 0px;
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em;
    padding: 0.75em;

    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}
.div-footer-sub1{
    background-color: #FFFFFF;

    border-style: solid;
    border-color: #000000;
    border-width: 1px;

    grid-row: 1;
    grid-column: 1;
}
.div-footer-sub2{
    background-color: #000000;

    border-style: solid;
    border-color: #FFFFFF;
    border-width: 1px;

    grid-row: 2;
    grid-column: 1;

    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;

    padding-bottom: 50px;
}
.ul-sitemap-portfolio{
    grid-row: 1;
    grid-column: 1;
}
.ul-sitemap-projects{
    grid-row: 1;
    grid-column: 2;
}
.ul-sitemap-education{
    grid-row: 1;
    grid-column: 3;
}
.ul-sitemap-about{
    grid-row: 1;
    grid-column: 4;
}
[class^="ul-sitemap-"]{
    list-style-type: none;
    width: 2em;
}
[class^="ul-sitemap-"] li{
    color: #FFFFFF;
    font-size: 18px;
    font-family: calibri, cambria, sans;
}
[class^="ul-sitemap-"] li:hover{
    color: #AAAAAA;
    cursor: pointer;
}
[class^="ul-sitemap-"] li:nth-child(1){
    font-size: 22px;
    margin-bottom: 10px;
}
[class^="ul-sitemap-"] li:nth-child(1) a{
    color: #FFFFFF;
    text-decoration: none;
}
[class^="ul-sitemap-"] li:nth-child(1) a:hover{
    color: #AAAAAA;
    text-decoration: none;
}
.ul-linkslist{
    list-style-type: none;

    grid-row: 1;
    grid-column: 5;

    align-self: center;
    justify-self: center;
}
.ul-linkslist li{
    margin: 5px;
    float: left;
}
.ul-linkslist li:nth-child(1){
    color: #FFFFFF;
    font-size: 18px;
    font-family: calibri, cambria, sans;
}










/********** BREAKPOINTS **********/
/* Average Mobile Phones */
@media only screen and (max-width: 600px) {
    /* Header */
    .a-label{
        color: #FFFFFF;
        font-size: 18px;
        font-family: Arial, Verdana, geneva, sans-sarif;
        opacity: 0.8;
    
        grid-row: 1;
        grid-column: 2;
    
        justify-self: center;
    
        text-decoration: none;
    }
    .ul-navbar li{
        color: #FFFFFF;
        font-family: Calibri, sans-serif;
        font-size: 16px;

        margin: 10px;

        display: inline-block;
        cursor: default;
    }



    

    /* Body */
    .swiper-container {
        height: 360px;
    }

    [class^="div-body-container"] {
        height: 360px;
        background-color: #000000;
        color: #FFFFFF;
    
        grid-row: 1;
        grid-column: 1;
    
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }
    [class^='div-container-text']  {
        text-align: center;

        z-index: 1;
    }
    [class^='div-container-text'] h1 {
        text-align: center;
        font-size: 22px;
    }
    [class^='div-container-text'] p {
        justify-self: center;
        text-align: center;
        font-size: 14px;

        width: 300px;
    }
    [class^='div-container-text1-'] {
        grid-row: 1;
        grid-column: 1;
    
        align-self: center;
        justify-self: center;
    
        opacity: 0;
    
        margin-top: 100px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    [class^='div-container-text2-'] {
        grid-row: 1;
        grid-column: 1;
    
        align-self: center;
        justify-self: center;
    
        opacity: 0;
    
        margin-top: 100px;
        margin-bottom: 0px;
        margin-right: 0px;
    }
    [class^='div-container-text3-'] {
        grid-row: 1;
        grid-column: 1;
    
        align-self: center;
        justify-self: center;
    
        opacity: 0;
    
        margin-top: 100px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    [class^='div-body-container'] img {
        max-width: 100%;
        height: auto;

        grid-row: 1;
        grid-column: 1;
        z-index: 0;

        opacity: 0.3;

        justify-self: center;
        align-self: center;
    }
    [class^='div-container-img1-'] {
        display: none;
    }
    [class^='div-container-img2-'] {
        display: none;
    }
    [class^='div-container-img3-'] {
        display: none;
    }
    [class^='div-container-img1-'] img{
        display: none;
    }
    [class^='div-container-img2-'] img{
        display: none;
    }
    [class^='div-container-img3-'] img{
        display: none;
    }
    





    /* Footer */
    .div-footer{
        background-color: #000000;
    
        border-style: solid;
        border-color: #FFFFFF;
        border-width: 1px;
        /* border-left: hidden;
        border-right: hidden; */
    
        margin-top: 40px;
        padding: 10px;
    
        display: grid;
        grid-template-rows: 40px 1fr;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .div-footer-sub1{
        background-color: #FFFFFF;

        border-style: solid;
        border-color: #000000;
        border-width: 1px;

        grid-row: 1;
        grid-column: 1;
    }
    .div-footer-sub2{
        background-color: #000000;
    
        border-style: solid;
        border-color: #FFFFFF;
        border-width: 1px;
    
        grid-row: 2;
        grid-column: 1;
    
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
    [class^="ul-sitemap-"] li:nth-child(1){
        font-size: 20px;
        margin-bottom: 10px;
    }
    [class^="ul-sitemap-"] li:nth-child(2){
        font-size: 16px;
    }
    [class^="ul-sitemap-"] li:nth-child(3){
        font-size: 16px;
    }
    [class^="ul-sitemap-"] li:nth-child(4){
        font-size: 16px;
    }
    .ul-sitemap-portfolio{
        grid-row: 1;
        grid-column: 1;
    }
    .ul-sitemap-projects{
        grid-row: 1;
        grid-column: 2;
    }
    .ul-sitemap-education{
        grid-row: 2;
        grid-column: 1;
    }
    .ul-sitemap-about{
        grid-row: 2;
        grid-column: 2;
    }
    .ul-linkslist{
        list-style-type: none;
    
        grid-row: 2;
        grid-column: 3;
    
        align-self: center;
        justify-self: center;
    }
    .ul-linkslist li{
        margin: 5px;
        float: left;
    }
    .ul-linkslist li:nth-child(1){
        color: #FFFFFF;
        font-size: 18px;
        font-family: calibri, cambria, sans;
    }
}










/* Ultra-Thin Mobile Phones */
@media only screen and (max-width: 360px) {
    .main {
        min-width: 0;
    }
    /* Header */
    .div-img {
        height: 150px;
        width: 300px;
        background-color: #000000;
    
        grid-column: 2;
        grid-row: 2;
    
        display: grid;
    
        grid-template-rows: 0.5fr 1.5fr 0.5fr;
        grid-template-columns: 0.5fr 1.5fr 0.5fr;
    
        margin-bottom: 4em;
    
        align-self: center;
        justify-self: center;
    }
    .ul-navbar li {
        color: #FFFFFF;
        font-family: Calibri, sans-serif;
        font-size: 10px;
    
        margin: 10px;
    
        display: inline-block;
        cursor: default;
    }





    /* Body */
    [class^='div-container-text'] h1 {
        text-align: center;
        font-size: 18px;
    }
    [class^='div-container-text'] p {
        justify-self: center;
        text-align: center;
        font-size: 10px;

        width: 200px;
    }





    /* Footer */
    .div-footer {
        margin-top: 40px;
    }
    .div-footer-sub2{
        background-color: #000000;
    
        border-style: solid;
        border-color: #FFFFFF;
        border-width: 1px;
    
        grid-row: 2;
        grid-column: 1;
    
        display: grid;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr;
    }
    .ul-sitemap-portfolio{
        grid-row: 1;
        grid-column: 1;
    }
    .ul-sitemap-projects{
        grid-row: 2;
        grid-column: 1;
    }
    .ul-sitemap-education{
        grid-row: 3;
        grid-column: 1;
    }
    .ul-sitemap-about{
        grid-row: 4;
        grid-column: 1;
    }
    [class^="ul-sitemap-"] li:nth-child(1){
        font-size: 12px;
        margin-bottom: 10px;
    }
    [class^="ul-sitemap-"] li:nth-child(2){
        font-size: 10px;
    }
    [class^="ul-sitemap-"] li:nth-child(3){
        font-size: 10px;
    }
    [class^="ul-sitemap-"] li:nth-child(4){
        font-size: 10px;
    }
    .ul-linkslist{
        list-style-type: none;
    
        grid-row: 5;
        grid-column: 1;
    
        align-self: center;
        justify-self: center;
    }
}