html {scroll-behavior: smooth;}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: neue-haas-grotesk-text, helvetica, sans-serif;
    color: #303030;
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: none;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

h1 {
    font-family: neue-haas-grotesk-display, helvetica, sans-serif;
    font-weight: 600;
}

h2 {
    font-family: neue-haas-grotesk-display, helvetica, sans-serif;
}

h3 {
    font-family: neue-haas-grotesk-display, helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
}

h4 {
    font-family: neue-haas-grotesk-display, helvetica, sans-serif;
}

h5 {
    font-family: neue-haas-grotesk-display, helvetica, sans-serif;
}

#home-nav {
    padding-top: 30vh;
}

#main-body {
    padding-top: 16vh;
}

.home-logo {
    margin-right: 25px;
}
.home-items h2 {
    width:13em;
    margin-left:4px;
}

.home-nav-item {
    font-weight: inherit;
    color: inherit;
}

.home-nav-item:visited {
    color: inherit;
}

.home-nav-item:hover {
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

.home-nav-item:active {
    color: inherit;
}

.home-logo-sm {
    margin: 3vh;
    display: none;

}

.main-logo-sm {
    margin: 3vh 3vh 3vh 0;
    display: inline;
    visibility: visible;
}

.my-links {
    font-weight: bold;
}

.my-links a {
    margin:10px;
}

.item1-bg,
.item2-bg,
.item3-bg,
.item4-bg,
.item5-bg {
    position: fixed;
    object-fit: cover;
    z-index: -1;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    height: 100%;
    width: 100vw;
}

.main-items {
    margin-right: 15vw;
}

.sm-icon {
    color: #7c7c7c;
}

.iconset {
    margin-left:-20px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .home-items h2 {
        width: 8em;
        margin-left:4px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    .home-logo {
        display: none;
    }

    .home-items {
        padding-left: 3vh;
    }

    .home-logo-sm {
        display: inline;
        visibility: visible;
    }

    #home-nav,
    #main-body {
        padding-top: 15vh;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {}