body {
    background-color: rgb(236, 152, 42);
}

.container
{
    background-color: rgb(236, 152, 42);
}

.row
{
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

@media (min-width: 1200px)
{
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px;
    }
}

.nopadding
{
    padding-top: 0px;
    padding-bottom: 0px;
}

.nomargin
{
    margin-top: 0px;
    margin-bottom: 0px;
}

a
{
    color: #ffffff;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.card
{
    background-color: rgb(194, 132, 50);
    height: 100%;
}

h1 {
    font-size: 64px;
}

.bg-1
{
    background-color: rgba(0, 0, 0, 0.15);
}

.center {
    margin: auto;
    /* width: 50%; */
}

.projects .row
{

    /* padding-top: 30px;
    padding-bottom: 30px; */
    min-height: 300px;
    border-bottom: solid 5px rgb(126, 117, 0);
    background-color: rgba(0, 0, 0, 0.15);
}

:not(pre) > code 
{
    padding: 2px 14px;
    background-color: cadetblue;
    color: black;
    border-radius: 12px;
}

p  
{
    font-size: 1.2rem;
}

.projects h1
{
    font-size: 2rem;
		margin-bottom: 0px;
}

.myslides-container
{
    position: relative;
    height: 100%;
    width: 100%;
    /* border: solid 5px rgb(252, 8, 8); */
}

.myslides-container.vertical
{
    position: relative;
    height: 100%;
    width: 100%;
}

.image
{
    display: block;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    height: 100%;
}

.image img
{
   
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: scale-down;
}

.image video
{
   
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image .vertical
{
    
}

.image .horizontal
{

}

.image.horizontal img
{
    display: block;
    margin: auto;

}

pre
{
    background-color: rgba(0, 0, 0, 0.171);
}






.vertical img
{

}

.myslides-container .hide
{
    display: none;
}



.myslides-container .btn {
    position: absolute;
    top: 50%;
    color: rgb(190, 190, 190);
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }

  
.myslides-container .btn-left {
    left: 0%;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}

.myslides-container .btn-right {
    left: 100%;
    transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
}

.container .btn:hover {
    background-color: black;
}

/* Make sure that padding behaves as expected */
.skillbar {
    box-sizing: border-box;
 
    font-weight: bold;
}
  
/* Container for skill bars */
.skillbar > .skillbar-container {
    margin-bottom: 10px;
}

.skillbar > .skillbar-container > .bar {
    line-height: 15px;
    min-height: 15px;
    width: 100%;

}

.skillbar > .skillbar-container > .bar > .skills {
    line-height: inherit;
    min-height: inherit;
    text-align: center;
    font-size: 13px;
    color: white;
    background-color: #25535F;
}
  


  
.gallery ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .gallery ul:after {
    content: "";
    display: block;
    flex-grow: 10;/* Prevent justify/stretch of last photo. 10 seems best */
  }
  .gallery li {
    height: 20vh;
    flex-grow: 1;
    margin: 0 0.5rem 0.5rem 0;
    list-style: none;/* override common/Normalize */
  }
  .gallery img {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    border: 2px solid rgba(221, 137, 27, 0.432);
    border-radius: 0.6rem;
    box-shadow: 0.3rem 0.3rem 0.3rem #655;
  }
  .gallery img:hover {
    border-color: rgb(20, 0, 204);
    box-shadow: 0.3rem 0.3rem 0.3rem #974;
  }
  
  /* Portrait: */
  @media (max-aspect-ratio: 1 / 1) {
    .gallery li {
      height: 30vh;
    }
  }
  
  /* Short screens: */
  @media (max-height: 480px) {
    .gallery li {
      height: 80vh;
    }
  }
  
  /* Smaller screens in portrait: */
  @media (max-aspect-ratio: 1 / 1) and (max-width: 480px) {
    .gallery ul {
      flex-direction: row;
    }
  
    .gallery li {
      height: auto;
      width: 100%;
    }
  
    .gallery img {
      width: 100%;
      max-height: 75vh;
      min-width: 0;
    }
  }

.fullscreen 
{
    width: 50%;
    height: 50%;
    position:absolute;
    top:0px;
    left:0px;
    margin: 0 auto;
}  

.fullscreen-modal
{
    display: none;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top:0px;
    left:0px;
    margin: auto;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.90);
    text-align: center;
}

.fullscreen-modal .image-container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
}

.fullscreen-modal img
{
    max-width: 90%;
}

.page-link
{
    color: black;
    background-color:rgba(99, 61, 11, 0.432);
    border: 1px solid #fd7c03;
}

.page-item.disabled .page-link {
    color: rgb(65, 65, 65);
    pointer-events: none;
    cursor: auto;
    background-color: rgba(99, 61, 11, 0.432);
    border: 1px solid #fd7c03;
}

#loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    z-index: 99999;
    transition: 1s;
}

#loader > .span{
    position: absolute;
    transform: translate(-50%, 50%);
    width: 120px; 
    height: 120px;
    top: 35%;
    border: 5px solid #262626;
    z-index: 1;
    animation: loaderAnimation 2.5s linear infinite;
}
#loader > .span:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #262626;
    animation: loaderAnimationBg 2.5s linear infinite;
}

@keyframes loaderAnimation {
    0% {
    transform: translate(-50%, 50%) rotate(0deg);
    }
    25% {
    transform: translate(-50%, 50%) rotate(180deg);
    }
    50% {
    transform: translate(-50%, 50%) rotate(180deg);
    }
    75% {
    transform: translate(-50%, 50%) rotate(360deg);
    }
    100% {
    transform: translate(-50%, 50%) rotate(360deg);
    }
}
@keyframes loaderAnimationBg {
    0% {
    height: 0;
    }
    25% {
    height: 0;
    }
    50% {
    height: 100%;
    }
    75% {
    height: 100%;
    }
    100% {
    height: 0;
    }
}

.navbar-nav {
    float: left;
    margin: 0;
    margin-left: 40%;
 }
 
 .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
    margin-left: 0;
 }


.pt-3 {
    padding-top: 1rem!important;
}

.position-sticky {
    position: -webkit-sticky!important;
    position: sticky!important;
}

.flex-column {
    flex-direction: column!important;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
    
}
.nav a
{
    color: rgba(0, 0, 0, 0.90);
}

.collapse:not(.show) {
    display: none;
}

.headerbar
{
    background-color: #fd7c03;
    position: fixed;
    top: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset 1px 0 0 rgb(0 0 0 / 10%);
    background-color: rgb(236, 152, 42, 0.9);
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.page-item.button
{
    min-width: 90px;
    text-align: center;
}