/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: Inter;
    src: url(../fonts/inter);
}*/

@font-face {
    font-family: 'PP Neue Montreal Book';
    font-style: normal;
    font-weight: normal;
    src: local('PP Neue Montreal Book'), url(../fonts/pp-neue-montreal-cufonfonts-webfont/ppneuemontreal-book.woff) format('woff');
}

@font-face {
    font-family: 'PP Neue Montreal Medium';
    font-style: normal;
    font-weight: normal;
    src: local('PP Neue Montreal Medium'), url(../fonts/pp-neue-montreal-cufonfonts-webfont/ppneuemontreal-medium.woff) format('woff');
}

@font-face {
    font-family: 'PP Neue Montreal Bold';
    font-style: normal;
    font-weight: normal;
    src: local('PP Neue Montreal Bold'), url(../fonts/pp-neue-montreal-cufonfonts-webfont/ppneuemontreal-bold.woff) format('woff');
}

.instrument-serif-regular {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.instrument-serif-regular-italic {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}


html {
    font-family: "PP Neue Montreal Book", sans-serif;
    color: #1b1e3e;
    scroll-behavior: smooth;
}

body {
    font-family: "PP Neue Montreal Book", sans-serif;
    /*    font-weight: 400;*/
    color: #1b1e3e;
}

h1, h2, h3, h4, h5 {
    font-family: "PP Neue Montreal Book", sans-serif;
    /*font-weight: 600;*/
}

h4.h4class, h3.h3class {
    color: #1b1e3e;
}

/*
.display-instrument{
    font-family: "instrument Serif", serif;
    font-size: 100px;
    width: fit-content;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.8px;
}
*/

.header-img {
    width: 60em;
    /*margin-top: 40px;
    margin-bottom: 50px;*/
    position: relative;
    top: 20em;
}

/*iPhone SE*/
@media (min-width: 375px) {
    div.container {
        width: auto;
    }
    .navbar > .container{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        align-content: center;
    }
    .navbar{
        margin-bottom: 2em;

    }
    .jarallax-container {
        justify-content: center;
        min-height: auto;
    }

}

@media (min-width: 576px) {
    .header-img {
        top: 10em;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }

    .navbar-collapse {

    }

    .navbar-2 {
        height: auto;
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .navbar {
        padding: 2rem 1rem;
    }

    .nav-item a.nav-link:hover {
        background: rgba(250, 250, 250, 1.0);
        border-radius: 32px;
        padding-left: 12px;
        padding-right: 12px;
        transition: all 1s ease;
        color: #1B1E2E;
    }

}

@media (max-width: 1920px) {

}

.personal-description-header {
    animation: slide_to_top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

}

/*
.row-header {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
    justify-content: center;
    align-content: center;
    align-items: center;
}
*/

p {
    font-family: "PP Neue Montreal Book", sans-serif;
    color: #1b1e3e;
}

.lead {
    font-family: "PP Neue Montreal Book", sans-serif;
}

h2.display-header-h2 {
    color: #ffffff;
    font-family: "PP Neue Montreal Bold", sans-serif;
    letter-spacing: 0.036em;
    text-transform: uppercase;
    font-size: 20px;
    justify-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

h3.display-header-h3 {
    color: #ffffff;
    font-family: "PP Neue Montreal Book", sans-serif;
    letter-spacing: 0.036em;
    text-transform: uppercase;
    font-size: 20px;
    justify-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
}

.navbar {
    animation: nav-delayed-slide 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 400ms;
}

.parallax-header-text {
    -webkit-animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes nav-delayed-slide {
    0% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        scroll-behavior: smooth;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 100%;
        scroll-behavior: smooth;
    }
}

@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        scroll-behavior: smooth;
    }
    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        scroll-behavior: smooth;
    }
}

@keyframes slide_to_top {
    0% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
        scroll-behavior: smooth;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 100%;
        scroll-behavior: smooth;
    }
}

.hero-section {
    /*    height:92vh;*/
    background: no-repeat center center/cover;
    background-attachment: fixed;
    background-color: #1B1E2E; /* fallback */
}


.navbar-custom {
    border-bottom: 0 transparent;
    border-radius: 32px;
    font-family: "PP Neue Montreal Book", sans-serif;
    font-size: 1rem;
}

.navbar-custom .navbar-toggler svg path {
    fill: #fff;
}

.navbar-custom.navbar-toggled-show .dropdown-toggle > svg.bg-dark * {
    fill: #fff;
}


a.nav-link:hover {
    background: rgba(250, 250, 250, 1.0);
    border-radius: 50rem;
    padding-left: 20px;
    padding-right: 20px;
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
    color: #1B1E2E;

}

a.nav-link {
    color: #ffffff;
    background: transparent;
    border-radius: 50rem;
    text-align: center;
}

.nav-home {
    color: #ffffff;
    padding-right: 20px;
    padding-left: 20px;
}

.navbar-on-dark {
    color: #fff;
}

.navbar-toggler svg path {
    fill: #fff;
}

.navbar-toggler svg path {
    fill: #fff;
}


.btn.primary-button {
    background: #1B1E2E;
    border: 1px solid #1C2145;
    color: #ffffff;
    border-radius: 50rem;
    font-family: "PP Neue Montreal Book", sans-serif;

}

.btn.primary-button:hover {
    background: #ffffff;
    color: #1B1E2E;
    border: 1px solid #F2F4F6;
    box-shadow: 0 2px 6px rgba(233, 239, 241, 0.2);
    transition: all 0.2s ease;
    transform: scale(1.05);
    font-size: initial;
    font-family: "PP Neue Montreal Medium", sans-serif;
}


.highlighting {
    display: inline;
    background: rgba(64, 139, 252, 0.25)
}

.highlight {
    background: rgba(64, 139, 252, 0.25)
}

.btn-tertiary {
    color: #fff;
    background-color: #408bfc;
    border-color: #408bfc;
}

section {
    padding: 4em 0;
}

.divider {
    border-bottom: 1px solid rgba(73, 80, 87, 0.1);
    margin-bottom: 40px;
}

.process-circleyellow {
    background: rgba(64, 139, 252, 0.05) !important;
}

h1.display-3 {
    color: #1b1e3e;
}


a.btn.btn-lg.btn-primary {
    color: #fff;
    background-color: #408bfc;
    border-color: #408bfc;
    border-radius: 96px;
}

a.btn.btn-lg.btn-primary:hover, .btn-primary:hover {
    border-style: solid;
    border-width: 1px;
    border-color: #ebebf0;
    border-radius: 96px;
    background-color: white;
    box-shadow: inset 0 -3px 5px 0 rgba(18, 20, 41, 0.04), 0 2px 6px 0 rgba(18, 20, 41, 0.06);
    color: #1b1e3e;
    font-weight: 500;
    transform-style: preserve-3d;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

a.btn.btn-md.btn-primary {
    color: #1b1e3e;
    border-color: #ebebf0;
    border-radius: 96px;
    background-color: white;
}

a.btn.btn-md.btn-primary:hover, .btn-primary:hover {
    border-style: solid;
    border-width: 1px;
    background-color: #408bfc;
    border-color: #408bfc;
    border-radius: 96px;
    box-shadow: inset 0 -3px 5px 0 rgba(18, 20, 41, 0.04), 0 2px 6px 0 rgba(18, 20, 41, 0.06);
    color: #ffffff;
    font-weight: 500;
    transform-style: preserve-3d;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

h1.display-4.text-dark, h2.display-5.text-dark, h1, h5, p.lead, div.h1, h4.mb-1, .h2, h4 {
    color: #1b1e3e !important;
}

.text-dark {
    color: #1b1e3e !important;
}


a.rounded-btn {
    padding: 18px 22px;
    border-style: solid;
    border-width: 1px;
    border-color: #ebebf0;
    border-radius: 96px;
    background-color: white;
    box-shadow: inset 0 -3px 5px 0 rgba(18, 20, 41, 0.04), 0 2px 6px 0 rgba(18, 20, 41, 0.06);
    color: #1b1e3e;
    font-weight: 500;
    transform-style: preserve-3d;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

a.rounded-btn:hover {
    color: white;
    background-color: #408bfc;
    border-color: #408bfc;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;

}

span.lead {
    color: #1b1e3e;
}

a.btn.back-to-top.btn-primary.btn-round.aos-init.aos-animate.blue-btn {
    color: white;
    background-color: #408bfc;
    border-color: #408bfc;
}

small a {
    color: #adb5bd
}

.imgsize {
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

