/* || GLOBAL STYLING */
.hidden{
  display:none;
}

*{
  padding:0;
  margin:0;
  font-family: 'Rajdhani', sans-serif; 
}

html{
  scroll-behavior: smooth;
  overflow: scroll;
  overflow-x:hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

html, body{
  min-width: 413px;
  /* Fills the entire page. */
  padding:0;
  margin:0;
  user-select: none;
  font-family: 'Rajdhani', sans-serif !important;
  overflow-x:hidden;
}

/* .section{
  min-height: 900px;
  overflow-x:hidden;
} */

/* || SIDE-BAR STYLING */
#nav-scroll{
  /* animation: 1.25s ease-out 0s 1 fadeIn forwards;
  animation: 0.25s ease-out 0s 1 slideInFromLeft forwards; */
  /* Fixed positioning so it is static in same position on viewport regardless of scrolling to other contents*/
  position:fixed;
  /* Always on top so highest z-index */
  z-index:10;
  /* Controls animation speed for nav activation animation */
  transition: top 0.3s;
  /* Position in top left of screen */
  margin-top:260px;
  left:0;
  /* For dynamic adjustment of color of text contrasted according to background color */
  mix-blend-mode:difference;
}

/* Style for text items of nav bar */
#nav-scroll > a{
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7em;
  text-decoration: none;
  display: block;
  padding-bottom: 12px;
  padding-left: 10px;
  color: grey;
  /*for diff browser support*/
  -o-transition:.3s;
  -ms-transition:.3s;
  -moz-transition:.3s;
  -webkit-transition:.3s;
  /* Animation speed */
  transition:.3s;
}

/* Styling for sub items in projects items of nav bar */
.project-list-item > a{
  /* animation: 1.25s ease-out 0s 1 slideDown forwards; */
  color: grey;
  font-size: 0.8em;
  font-weight:bold;
  margin-left: 20px;
  margin-bottom: 5px;
  text-decoration: none;
  display: block;
  /*for diff browser support*/
  -o-transition:.3s;
  -ms-transition:.3s;
  -moz-transition:.3s;
  -webkit-transition:.3s;
  /* Animation speed */
  transition:.3s;
  /* transform: translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out; */
}

/* Styling for active item in nav bar */
.nav-active{
  border-left: 4px solid;
  font-weight: bold;
}

.nav-sub-item-active{
  border-left: 2px solid;
  padding-left: 5px;
  font-weight: bold;
}


/* || PARRALAX STYLING */
/* overriding some css for container, other css from bootstrap */
.container{
  width: 100%;
  left:0;
  right:0;
}

.parallax{
  /* min-height: 500px; */
  /* background: transparent;  */
}

/* Ensure that every content item intended to be on top of parallax backgrounds applies this class */
.info-on-parallax{
  z-index: 2;
  position: relative;
}

/* Each parallax section that can be scrolled to */
.section{
  position:relative;
  min-height:100vh;
  width:inherit;
  height:inherit;
}

/* || LOADERS AND BANNERS STYLING */
/* Styling for loading page */
#loader{
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 11;
  overflow: visible;
  background-color: rgb(250, 250, 250);
  animation: loadingFadeOut 0.5s ease-out forwards;
  animation-delay: 3s;
}

/* Cannot load warning styling */
#sorry{
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9;
  overflow: visible;
  background-color: rgb(250, 250, 250);
  visibility: hidden;
}

/* Welcome banner used in loading screen */
#welcome{
  animation: 1.5s ease-out 0s 1 fadeIn;
  font-family: 'Rajdhani', sans-serif;
  text-align: center;
  color:gray;
  font-size: 95px;
  margin-bottom:0;
  margin-top:300px;
}

/* Deprecated testing notice styling */
#test-notice{
  animation: 1.5s ease-out 0s 1 fadeIn;
  font-family: 'Rajdhani', sans-serif;
  text-align: center;
  color:lightgray;
  font-size: 65px;
  margin-top: -25px;
}

/* Loading gif positioning + animation parameters */
#loading-gif{
  animation: 1.5s ease-out 0s 1 fadeIn;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

/* || INTRO SECTION STYLING*/
#section-intro{
  /* min-height:100vh; minumum height of browser viewport height */
  background: #FFF;
  background-size: cover; /*covers area of entire container*/
}

/* Container for intro text in about section */
#intro-text{
  z-index: 2; /* Keep content of interest on second layer as parallax backgrounds are on layer 1 */
  position: relative; /* want to be able to orient relative to the section container which is area of viewport dimensions*/
  padding-top: 100px;
  margin-left: 380px;
  font-family: 'Rajdhani', sans-serif;
  text-align: left;
}

/* Styling for big name text on intro page */
#name{
  color:gray;
  font-size: 5.95em;
  margin-bottom:0;
  margin-top:0;
}

/* Sub heading to the name on intro page */
#occupation{
  color:darkgrey;
  font-size:4.05em;
  margin-top:-25px;
  margin-bottom:0;
  padding-bottom:0;
  padding-bottom:0;
}

/* Styling for hook of intro text */
#about-hook{
  font-size: 1.63em;
  color: gray;
  width: 700px;
}

/* Styling for main body of intro text */
#about-info{
  font-size: 1.5em;
  color: gray;
  width: 600px;
}

/* || SCHOOL SECTION STYLING */
#section-school{
  /* background: #000; */
  /* min-height: 100vh;  */
  position: relative;
}

/* Help make nav-bar */
#section-school::after{
  content: '';
  background: rgb(255, 241, 1);
  width: 130px;
  inset: 0;
  z-index: 1;
  position: absolute;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/* Main parallax content of school section */
#school-info{
  z-index: 2;
  position: relative;
  float:right;
  background-color: rgb(255, 241, 1);
}

/* || PROJECTS SECTION STYLING */
#section-projects{
  /* background: #000; */
  /* background:transparent; */
  /* min-height: 100vh; */
  position: relative;
}

/* Help make nav-bar */
#section-projects::after{
  content: '';
  background: rgb(0,0,0);
  width: 160px;
  inset: 0;
  z-index: 1;
  position: absolute;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

#project-item-container{
  height: 100vh;
  width: 100vw;
  /* border: 5px solid purple; */
  /* position: absolute; */
}

#project-item{
  /* border: 2px solid yellow; */
  padding: 10px 10px 20px 10px;
  padding-top: 5%;
  z-index: 3;
}

#project-item-content-container{
  /* border: 2px red solid; */
  position: relative;
  /* inset: 0; */
  margin: 0 auto;
  margin-top: 10px;
  width: 70%;
  max-width: 1200px;
  min-width: 930px;
  /* height: 75% */
}

#project-item-header{
  /* width: 900px; */
  height: 50px;
  inset: 0; 
  margin: auto;
  /* border: 1px solid red; */
  background:gray;
  opacity: 0.85;
  mix-blend-mode: lighten;
  z-index: 2;
  position: relative;
  margin-bottom: 5px;
}

#project-item-header-text{
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
  width:fit-content;
  float: left;
  margin: auto;
  font-size: 2.7em;
  color: white;
  padding-left: 7px;
  margin-bottom: -4px;
  /* font-weight: bolder; */
  /* border: 2px solid blue; */
  animation: 
  typing 3.5s steps(40, end),
  blink-caret .75s step-end infinite;
}

#blink{
  font-size: 2.4em;
  float:left;
  color: white;
  display:inline-block;
  animation: blinker 530ms linear infinite;
}

#project-item-content{
  /* width: 80%; */
  min-height: 550px;
  height: 90%;
  /* bottom:0; */
  inset: 0;
  margin: auto;
  /* border: 1px solid blue; */
  background:gray;
  z-index: 2;
  position: relative;
  opacity: 0.85;
  mix-blend-mode:lighten;
}

#project-item-content p{
  color: white;
  padding-left: 5px;
}

#project-item-content-text{
  font-weight: bold;
  padding:5px;
  font-size: 1.7em;
  /* border: 2px solid red; */
}

#project-item-content-footer{
  width: 57%;
  position: absolute;
  bottom: 0;
  font-weight: bolder;
  /* border: solid 1px red; */
  font-size: 1.55em;
}

#project-item-media-container{
  /* position: relative; */
  /* border: 2px solid blue; */
  /* margin: 0 auto; */
}

#project-item-content-media{
  min-width: 63%;
  min-height: 200px;
  max-width: 700px;
  max-height: 430px;
  /* width: 50%; */
  right: -20%;
  bottom: -23%;
  /* margin: auto; */
  /* border: 1px solid blue; */
  background:gray;
  z-index: 2;
  position: absolute;
  opacity: 1.0;
}

#project-item-media-photo-container{
  /* inset: 0; */
  /* position: relative; */
  /* float: right; */
  /* margin-top: 15px; */
  border: 2px solid blue;
  width: fit-content;
  height: fit-content;
  background:gray;
  z-index: 2;
  background: transparent;
  opacity: 1.0;
  margin: auto;
  float:right;
}

#project-item-media-container-photo{
  max-width: 50%;
}

#project-link-anchor{
  position: absolute;
  right: 10px;
  bottom: 10px;
  /* right: 80px;
  bottom: 130px; */
  text-decoration:none;
  /* border: solid 2px black; */
  padding: 5px;
  background-color: black;
  color: white; 
  /* margin-bottom: 5px; */
}

#project-link-anchor:hover{
  background-color: gray;
  color: black;
}

/* 
#iframe-container{
  overflow:hidden;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  width: 200%;
  left: -100%;
}

#project-item-content-media iframe{
  position:absolute;
  width:100%;
  height: 100%;
  left: 0;
  top: 0;
}
 */


/* #section-projects > p {
  color: grey;
  text-align: center;
  font-size: 40px;
} */

/* || CONTACT SECTION STYLING */
#section-contact{
  background: #FFF;
  /*fixed*/
  /* min-height: 100vh; */
}

/* #section-contact > p {

  color: grey;
  text-align: center;
  font-size: 40px;
} */

#freelance-list{
  font-size: 1.3em;
  position:relative;
  padding-left: 60px;
}

#freelance-contact{
  
}

/* || ANIMATIONS */
@keyframes slideInFromLeft{
  0%{
    transform: translateX(-50%);
  }
  100%{
    transform: translateX(0%);
  }
}

@keyframes fadeIn{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes fadeInSlow{
  0%{
    opacity:0;
  }
  50%{
    opacity:0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes loadingFadeOut{
  0%{
    opacity:1;
  }
  100%{
    opacity:0;
  }
}

@keyframes slideDown{
  0%{
    transform: translateY(-50%);
  }
  100%{
    transform: translateY(0%);
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}

/* The typewriter cursor effect */
/* @keyframes blink-caret {
from, to { border-color: transparent }
} */

/* RESPONSIVE ADJUSTMENTS ACCORDING TO TWITTER BOOTSTRAP STANDARD SIZES */
/* ============================================================================================================================================================== */
/* ============================================================================================================================================================== */
/********** larger than 1080p **********/
@media (min-width: 1921px) {
  #project-item{
    padding-top: 10%;
  }
}

/********** Extra extra large devices only **********/
@media (min-width: 1600px) {
  /* Large devices only || SCHOOL SECTION STYLING */
  #school-info{
    margin-top: 130px;
    margin-right: 130px;
  }

  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 2.6em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 350px;
    min-height: 130px;
  }

  #project-item-content{
    /* display: block; */
    height: fit-content;
    /* min-height: 600px; */
  }

  #project-item-header-text{
    font-size: 2.5em;
  }
  
  #blink{
    font-size: 2.5em;
  }
  
  #project-item-content-text{
    font-size: 1.5em;
  }
  
  #project-item-content-footer{
    font-size: 1.4em;
  }

  #project-item-media-container{
    position: relative;
    margin-top: 120px;
  }
}

/********** Extra large devices only **********/
@media (min-width: 1400px) and (max-width: 1600px) {
  /* Large devices only || SCHOOL SECTION STYLING */
  #school-info{
    margin-top: 110px;
    margin-right: 110px;
  }

  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 2.4em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 350px;
    min-height: 130px;
  }

  #project-item-content{
    /* display: block; */
    height: fit-content;
    /* min-height: 600px; */
  }

  #project-item-header-text{
    font-size: 2.5em;
  }
  
  #blink{
    font-size: 2.5em;
  }
  
  #project-item-content-text{
    font-size: 1.4em;
  }
  
  #project-item-content-footer{
    font-size: 1.3em;
  }

  #project-item-content-media{
    bottom: -15%;
  }
}

/********** Large devices only **********/
@media (min-width: 1200px) and (max-width: 1400px) {
  /* Large devices only || INTRO SECTION STYLING*/
  #intro-text{
    font-size: 0.9em;
  }

  #about-hook{
    width: 600px;
  }

  /* Large devices only || SCHOOL SECTION STYLING */
  #school-info{
    margin-top: 110px;
    margin-right: 110px;
  }

  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 2.4em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 350px;
    min-height: 130px;
  }

  .project-item{
    /* border: 2px solid yellow; */
    margin-left: 10%;
    /* width: 90%; */
    /* margin-right: 0; */
  }

  #project-item-content{
    /* display: block; */
    height: fit-content;
    min-height: 400px;
  }

  #project-item-content-media{
    /* min-height: 40%; */
    max-width: 50%;
    /* max-height: 50%; */
    position: relative;
    inset: 0;
    margin: auto;
    margin-top: 20px;
  }

  #project-item-content{
    /* display: block; */
    height: fit-content;
    /* min-height: 600px; */
  }

  #project-item-header-text{
    font-size: 2.5em;
  }
  
  #blink{
    font-size: 2.5em;
  }
  
  #project-item-content-text{
    font-size: 1.3em;
  }
  
  #project-item-content-footer{
    font-size: 1.2em;
  }
}

/********** Medium devices only **********/
@media (min-width: 992px) and (max-width: 1200px) {
  #nav-scroll{
    display:none;
  }
  /* Medium devices only || INTRO SECTION STYLING*/
  #intro-text{
    font-size: 0.8em;
    margin-left: 280px;
  }
  
  #about-hook{
    width: 550px;
  }

  /* Medium devices only || SCHOOL SECTION STYLING */
  #school-info{
    margin-top: 90px;
    margin-right: 90px;
  }
  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 2.0em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 350px;
    min-height: 130px;
  }

  /* Remove navbar colored background from these sections when collapsing */
  #section-school::after{
    z-index: -1;
  }

  #section-projects::after{
    z-index: -1;
  }

  .project-item{
    /* margin-top: 20px; */
    width: 100%;
  }

  #project-item-content-container{
    min-width: 90%;
    height: fit-content;
  }

  #project-item-content{
    display: block;
    min-height: 400px;
  }

  #project-item-content-media{
  right: 0;
  bottom: 25px;
  margin: auto;
  /* border: 1px solid blue; */
  background:gray;
  z-index: 2;
  position: relative;
  display: block;
  margin-top: 50px;
}

#project-item-header-text{
  font-size: 2.5em;
}

#blink{
  font-size: 2.5em;
}

#project-item-content-text{
  font-size: 1.4em;
}

#project-item-content-footer{
  font-size: 1.2em;
}
  
}

/********** Small devices only **********/
@media (min-width: 768px) and (max-width: 992px) {
  /* Small devices only || SIDE-BAR STYLING */
  #nav-scroll{
    display:none;
  }

  /* Small devices only || INTRO SECTION STYLING*/
  #intro-text{
    margin: auto;
    width: 80%;
    text-align: center;
  }

  #about-hook{
    font-size: 1.5em;
    width: 80%;
    margin-bottom:10px;
    margin: auto;
  }

  #about-info{
    font-size: 1.5em;
    width: 80%;
  }
    
  #intro-text p{
    /* width: 500px; */
    margin: auto;
  }

  /* Medium devices only || SCHOOL SECTION STYLING */
  #school-info{
    float:none;
    position: absolute;
    left:0;
    right: 0;
    margin: auto;
    margin-top: 100px;
    width: 70%;
  }

  #nav-scroll{
    display:none;
  }

  /* Remove navbar colored background from these sections when collapsing */
  #section-school::after{
    z-index: -1;
  }

  #section-projects::after{
    z-index: -1;
  }

  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 1.7em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 350px;
  }

  .project-item{
    /* margin-top: 20px; */
    width: 100%;
  }

  #project-item-content-container{
    min-width: 90%;
    height: fit-content;
  }

  #project-item-content{
    display: block;
    min-height: 400px;
  }

  #project-item-media-container{
    /* width: 20px; */
  }

  #project-item-content-media{
    right: 0;
    bottom: 25px;
    margin: auto;
    /* border: 1px solid blue; */
    background:gray;
    z-index: 2;
    position: relative;
    display: block;
    /* width: 20px; */
    margin-top: 50px;
    width: 75%;
    min-width: 33%;
  }

  #project-item-header-text{
    font-size: 2.0em;
  }

  #blink{
    font-size: 2.0em;
  }

  #project-item-content-text{
    font-size: 1.1em;
  }
  
  #project-item-content-footer{
    font-size: 1.1em;
  }

  #freelance-list{
    list-style-type: none;
    padding: 0;
  }

  #freelance-contact{
    font-size: 1.6em;
  }
}

/********** Extra small devices only **********/
@media (min-width: 479px) and (max-width: 768px) {
  /* Small devices only || SIDE-BAR STYLING */
  #nav-scroll{
    display:none;
  }

  /* Extra small devices only || INTRO SECTION STYLING*/
  #intro-text{
    font-size: 0.6em;
    margin: auto;
    width: 70%;
    min-width: 360px;
    text-align: center;
  }

  #name{
    padding-bottom: 10px;
  }

  #about-hook{
    margin-bottom:10px;
    padding-bottom: 10px;
    width: 100%;
    margin: auto;
  }
    
  #intro-text p{
    width: 100%;
    margin: auto;
  }
  /* Medium devices only || SCHOOL SECTION STYLING */
  #school-info{
    float:none;
    position: absolute;
    left:0;
    right: 0;
    margin: auto;
    margin-top: 100px;
    width: 400px;
  }

  #nav-scroll{
    display:none;
  }

   /* Remove navbar colored background from these sections when collapsing */
   #section-school::after{
    z-index: -1;
  }

  #section-projects::after{
    z-index: -1;
  }

  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 1.1em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 200px;
  }

  .project-item{
    /* margin-top: 20px; */
    width: 100%;
  }

  #project-item-content-container{
    min-width: 90%;
    height: fit-content;
  }

  #project-item-header-text{
    font-size: 1.5em;
  }

  #blink{
    font-size: 1.4em;
    padding-left:2px;
  }

  #project-item-content{
    display: block;
    min-height: 400px;
  }

  #project-item-content-media{
  right: 0;
  bottom: 25px;
  margin: auto;
  /* border: 1px solid blue; */
  background:gray;
  z-index: 2;
  position: relative;
  display: block;
  width: 90%;
  margin-top: 50px;
  }

  #project-item-media-photo-container{
    position: relative;
    /* width: fit-content; */
    margin-top: 10px;
    width: 100%;
  }

  #project-item-media-container-photo{
    position: absolute;
    right: 0;
    left: 0;
    max-width: 70%;
    margin: auto;
  }

  #project-item-content-text{
    font-size: 0.9em;
  }
  
  #project-item-content-footer{
    font-size: 0.9em;
  }

  #freelance-list{
    list-style-type: none;
    padding: 0;
  }

  #freelance-contact{
    font-size: 1.6em;
  }
}

/********** Super extra small devices Only :-) (e.g., iPhone 4) **********/
@media (max-width: 479px) {
  /* Small devices only || SIDE-BAR STYLING */
  #nav-scroll{
    display:none;
  }

  /* Super extra small devices Only || INTRO SECTION STYLING*/
  #intro-text{
    font-size: 0.4em;
    margin: auto;
    width: 70%;
    min-width: 360px;
    text-align: center;
  }

  #name{
    padding-bottom: 10px;
  }

  #about-hook{
    margin-bottom:10px;
    padding-bottom: 10px;
    width: 100%;
    margin: auto;
  }
    
  #intro-text p{
    width: 100%;
    margin: auto;
  }

  /* Medium devices only || SCHOOL SECTION STYLING */
  #school-info{
    float:none;
    position: absolute;
    left:0;
    right: 0;
    margin: auto;
    margin-top: 100px;
    width:350px;
  }

   /* Remove navbar colored background from these sections when collapsing */
   #section-school::after{
    z-index: -1;
  }

  #section-projects::after{
    z-index: -1;
  }

  /* Heading within school-info */
  #education-head{
    font-size: 1.43em;
  }

  /* Text within school-info content container */
  .school-info-text{
    font-family: 'Rajdhani', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    font-size: 0.8em;
    color: rgb(0, 61, 106);
  }

  /* Position logo relative to parent container #school-info */
  #bcit-logo{
    float:right;
    /* Too big by default so set upper limit for dimensions */
    max-width: 33%;
    max-height: 33%;
    /* Might have to remove if lower limit is too big for smaller devices */
    min-width: 150px;
  }

  .project-item{
    /* margin-top: 20px; */
    width: 100%;
  }

  #project-item-content-container{
    min-width: 90%;
    height: fit-content;
  }

  #project-item-content{
    display: block;
    font-size: 0.7em;
    min-height: 400px;
  }

  #project-item-header-text{
    font-size: 1.3em;
  }

  #blink{
    font-size: 1.4em;
    padding-left:2px;
  }

  #project-item-content-media{
  right: 0;
  bottom: 25px;
  margin: auto;
  /* border: 1px solid blue; */
  background:gray;
  z-index: 2;
  position: relative;
  display: block;
  width: 100%;
  margin-top: 50px;
}

#project-item-media-photo-container{
  position: relative;
  /* width: fit-content; */
  width: 100%;
}

#project-item-media-container-photo{
  position: absolute;
  right: 0;
  left: 0;
  max-width: 70%;
  margin: auto;
}

#project-item-content-text{
  font-size: 0.9em;
}

#project-item-content-footer{
  font-size: 0.9em;
}

  #freelance-list{
    list-style-type: none;
    padding: 0;
  }

  #freelance-contact{
    font-size: 1.6em;
  }

  #section-intro{
    margin: 0 auto;
  }
}

/* Resolution support cut off */
/* @media (max-width: 1000px) {
  #sorry{
    visibility: visible;
  }
} */

