.navbar {
    margin-bottom: 0px;
}

body.scrolled .page-header {
    margin-bottom: 46px;
    position: initial;
}

.home-section {
    background-image: url(/assets/img/eabg.png);
    padding: 20px 0px;
    min-height: 100vh;
    color: #fff;
    background-attachment: fixed !important;
    background-size: cover !important;
    display: flex;
    align-items: center;
    background-position: center !important;
}

.home-section#section-intro {
    /*background-color: #212328;*/
    /*min-height: calc(100vh - 232px); with header*/
    /*min-height: calc(100vh - 84px);*/
    background: url("/assets/img/home/bg/intro.png");
}

.home-section#section-about {
    /*background: #934357;*/
    background: url("/assets/img/home/bg/about_2.png");
}

.home-section#section-portfolio {
    /*background: #457339;*/
    background: url("/assets/img/home/bg/portfolio_3.png");
}

.home-section#section-resume {
    /*background: #2f5374;*/
    background: url("/assets/img/home/bg/resume.png");
}

.home-section#section-contact {
    /*background: #b2702c;*/
    background: url("/assets/img/home/bg/contact.png");
}

.home-section .box {
    /*background: #ffffff47;*/
    background: #00000073;
    box-shadow: 0px 2px 20px 0px #0f0f0f;
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 4px;
    border: 1px solid #00000052;
    margin: 0px 10px;
}

.section-content {
    display: flex;
    width: 100%; /* was 96% */
}

.section-content .section-image-container {
    width: 50%;
    display: flex;
    align-items: center;
}

.section-content .section-image-container.text-right {
    justify-content: flex-end;
}

.section-content .section-image {
    max-height: 300px;
}

.section-content .section-info {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.home-links {
    display: flex;
}

.home-links a {
    width: 25%;
    font-size: 16px; /* was 20px */
    text-decoration: none;
    color: var(--accent-color);
    transition: 0.2s;
    text-shadow: 0px 1px 5px #000;
    padding: 20px 10px;
    margin: 20px 30px;
    border-radius: 8px;
}

.home-links a i {
    font-size: 40px; /* was 60px */
}

.home-links a p {
    margin: 10px 0px;
}

.home-links a:hover {
    color: #fff;
    transition: 0.2s;
    text-shadow: 0px 1px 10px #000;
}

.section-info .button {
    margin-top: auto;
}

.section-info .button:hover {
    background: rgba(244,67,54,0.3);
    outline-offset: 6px;
    outline: 1px solid var(--accent-color);
}

.section-info .info-icon {
    text-align: center;
    color: var(--accent-color);
    margin-top: 16px;
    font-size: 38px;
    /*display: none;*/
}

.page-header {
    display: none;
}

.page-footer {
    box-shadow: 0px 2px 20px 0px #000;
}

.navbar {
    box-shadow: 0px 2px 20px 0px #00000094;
    position: fixed;
	z-index: 1;
}

.navbar-item-dropdown .dropdown-menu {
    box-shadow: 0px 1px 8px 0px #000000;
}

img.intro-photo {
    width: 100px;
    height: auto;
    border-radius: 100%;
    box-shadow: 0px 0px 15px -3px var(--accent-color-dark);
}

.info-box-image {
    width: calc(100% + 40px);
    overflow: hidden;
    margin: -10px -20px 0px -20px;
    border-bottom: 1px solid #000;
}

.info-box-image:hover img {
    transform: scale(1.1);
    transition: all ease 1s;
}

.info-box-image img {
    width: 100%;
    transition: all ease 1s;
}

.section-header h1 {
    color: var(--accent-color);
    text-shadow: 0px 1px 8px #000;
    font-weight: 500;
}

.section-header {
    width: 100%;
    height: 90px;
}

.section-content.display-column {
    flex-direction: column;
}

.section-content.display-column .section-info {
    width: 100%;
    margin-bottom: 25px;
}

@media screen and (max-width: 850px)
{
    .section-info .info-icon {
        display: inline-block;
    }
    
    .section-content .section-image-container {
        display: none;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .section-content .section-info {
        width: 75%;
        margin: 8px auto;
    }
}

@media screen and (max-width: 650px)
{
    .home-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}