body {
    background-color: #FCFCFC;
}

a:hover {
    color: #FCFCFC;
    text-decoration: none;
}

/* ************************ RESUME ITEMS *********************** */

.resume-item:first-of-type {
    margin-top: 0px;
}

.resume-item:last-of-type {
    margin-bottom: 0px;
}

.resume-item {
    margin: 80px auto;
    width: 90%;
    max-width: 1200px;
    text-align: left;
    
}

.resume-item-image-container {
    width: 150px;
    min-height: 50px;
    padding: 0px 20px 0px 0px;
    margin-bottom: 15px;
    text-align: right;
}

.resume-item-image {
    max-width: 150px;
    max-height: 100%;
/*
    position: absolute;
    top: 10px;
    right: 20px;
*/
    display: inline;
}

.resume-item-content {
    position: relative;
}

.item-title {
    font-size: 28px;
    color: #2F2F2F;
    margin-bottom: 0px;
}

.item-subtitle {
    font-size: 16px;
    margin-bottom: 0px;
    color: #05396B;
    font-weight: 500;
    margin-bottom: 10px;
}

.item-info {
    font-size: 16px;
    color: #2F2F2F;
    margin-bottom: 0px;
}

.action-row {
    margin: 0px auto;
    display: flex;
    align-items: center; /* Vertical align */
    justify-content: center; /* Horizontal align */
}

/* ************************ HEADER *********************** */

.header {
    min-height: 500px;
    background: url("../img/dots.png"), rgb(101,158,188);
    background: url("../img/dots.png"), linear-gradient(103deg, rgba(101,158,188,1) 0%, rgba(2,67,129,1) 100%);
    margin: 0px 0px 0px 0px;
}

.header-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 350px;
}

.header-image-col {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Centering y-axis */
  align-items: flex-end;
  padding: 50px 50px 50px 50px;
}

.header-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Centering y-axis */
    max-width: 1000px;
    padding: 50px 50px 50px 0px;
}

h1 {
    color: #FCFCFC;
    font-size: 65px;
    letter-spacing: 12px;
    font-weight: 200;
    margin-bottom: 30px;
}

h2 {
    color: #FCFCFC;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.action-button {
    width: 70%;
    max-width: 300px;
    height: 70px;
    background-color: #05396B;
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 25px;
    outline: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    align-items: center; /* Vertical align */
    justify-content: center; /* Horizontal align */
}

.active-button:focus, .active-button:active {
    outline: none;
    text-decoration: none;
    color: white;
}
/* ************************ GALLERY *********************** */

.gallery {
    width: 80%;
    margin: 80px auto;
}

.gallery-item {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.gallery-item-width-limiter {
    max-width: 550px;
}

.gallery-item img {
    width: 100%;
    max-width: 225px;
    max-height: 225px;
    margin-bottom: 20px;
}

.gallery .row {
    margin-bottom: 60px;
}

.gallery-item:last-of-type {
    margin-bottom: 0px;
}

.gallery-round-images img {
    border-radius: 15px;
}

/* ************************ NAVIGATION BAR *********************** */
.navbar {
    padding-top: 20px;
    min-height: 100px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #FCFCFC;
}

.navbar-brand p {
    color: #868686;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 0px;
}

.navbar-nav {
    float: right;
    margin-left: auto!important;
    margin-right: 0px!important;
}

.nav-item {
    margin-right: 20px;
}

.nav-link {
    color: #868686;
}

.active .nav-link {
 color: #575757 !important;
}

.navbar-toggler, .navbar-toggler:focus {
    border: none;
    outline: none;
}

.navbar-collapse.collapse.show {
    margin-top: 20px;
}

.navbar-collapse.collapsing {
    margin-top: 20px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link:active {
    color: #868686;
}

/* ************************ SECTIONS *********************** */

section {
    text-align: center;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

h3 {
    font-size: 50px;
    font-weight: 600;
    color: #4887B0;
    margin-bottom: 100px;
    letter-spacing: 6px;
}

.primary-section {
    background-color: #FCFCFC;
}

.secondary-section {
    background-color: #F0F7FA;
}