*,
*::before,
*::after {
    box-sizing: border-box;
}

 * {
    margin: 0;
    padding: 0;
    border: 0;
} 

:root {
    --color-dark: #1B2622;
    --color-less-dark: #333;
    --color-light: #F2EDD5;
    --color-acc: #F2C185;
    --color-bg: #82A0AA;
}

html {
    cursor: pointer;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    overflow: overlay;
    cursor: default;
    min-height: 100vh;
    /*mobile viewport bug fix*/
    min-height: -webkit-fill-available;
}

a {
    text-decoration: none;
}

p {
    color: white;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px black;
}

.title span {
    font-weight: 400;
    display: block;
    font-size: .6em;
    margin-top: 1em;
}

.button { 
    display: inline-block;
    font-size: 1.25em;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    padding: .5em 1.5em;
    border-radius: 100vh;
    margin-top: 3em;
    color: white;
    background-color: #444;
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, .25);
    transition: 100ms ease-in-out;
    transition-property: box-shadow, color, background;
}

.button .button-content {
    margin-bottom: 3px;
}


.button:hover,
.button:focus {
    box-shadow: inset 4px 4px 4px 0 rgba(0, 0, 0, .5);
    background-color: #333;
    border-color: #fff;
    color: #eee;
}

.header {
    background-color: rgba(1, 1, 1, .75);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .25);
    position: fixed;
    width: 100%;
    z-index: 3;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    text-align: center;
}

.header ul a {
    display:inline-block;
    text-decoration: none;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-inline: 1rem;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-inline: 1rem;
    transition: 250ms ease-in-out;
    transition-property: background, color;
    color: var(--color-light);
    border-radius: 1em;
}

.header ul li {
    display: inline-block;
    font-weight: 700;
}

.header ul a::after {
    content: '';
    display: block;
    width: 100%;
    background-color:#aaa;
    height: 1.5px;
    border-radius: 100vh;
    width: 0%;
    margin-top: .1em;
    transition: 250ms ease-out;
}

.header ul a:hover::after,
.header ul a:focus::after {
    width: 100%;
}

.header ul a:hover,
.header ul a:focus {
    background-color: rgba(1, 1, 1, .5);
    color: #fff;
}

.header .logo {
    float: left;
    display: block;
    margin: .75em;
    opacity: .75;
    transition: 250ms ease-in-out;
    transition-property: opacity;
    max-height: 3em;
}

.header .logo:hover,
.header .logo:focus {
    opacity: 1;
}

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height 750ms ease-out;
    background-color: rgba(0, 0, 0, .5)
}

.header .menu-icon {
    position: relative;
    float: right;
    cursor: pointer;
}

.header .menu-icon .nav-icon {
    background: var(--color-light);
    display: block;
    height: 3px;
    width: 20px;
    position: relative;
    transition: background 500ms ease-in-out;
    margin: 2em;
    border-radius: 100vh;
}

.header .menu-icon .nav-icon::before {
    background: var(--color-light);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all 500ms ease-in-out;
    top: .4em;
    border-radius: 100vh;
}

.header .menu-icon .nav-icon::after {
    background: var(--color-light);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all 500ms ease-in-out;
    top: -.4em;
    border-radius: 100vh;
}

.header .menu-button {
    display: none;
}

.header .menu-button:checked ~ .menu {
    max-height: 6rem;
}

.header .menu-button:checked ~ .menu-icon .nav-icon {
    background: transparent;
}

.header .menu-button:checked ~ .menu-icon .nav-icon::before {
    transform: rotate(-45deg);
    top: 0;
}

.header .menu-button:checked ~ .menu-icon .nav-icon::after {
    transform: rotate(45deg);
    top: 0;
}

@media (min-width:42em) {

    .header ul a {
        padding: 1.5em 3em;
        margin: 0;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
        background-color: rgba(0, 0, 0, 0)
    }

    .header .menu-icon {
        display: none;
    }

    .header ul a:hover,
    .header ul a:focus {
    background-color: rgba(0, 0, 0, .5);
    }

    .home .home-container {
        padding-top: 7.5vh;
    }
}


@media (max-width:447px) {
    .header ul a {
        font-size: .8em;
    }

}

@media (max-width:322px) {
    .header ul a {
        margin-inline: .25rem;
    }

}

.home {
    background-image: url(/img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: white;
    padding-top: 35vh;
    text-align: center;
    height: 100vh;
}

.home .home-container {
    max-width: 90%;
    margin: 0 auto;
}

.home .home-container .home-content {

}

.footer {
    padding: .5em;
    width: 100%;
    /*position: fixed;*/
    bottom: 0px;
    background-color: rgba(1, 1, 1, .75);
    box-shadow: 0px -2px 4px 0 rgba(0, 0, 0, .25);
}

.footer .footer-logo {
    display: inline-block;
    opacity: .75;
    transition: 250ms ease-in-out;
    transition-property: opacity;
    max-height: 3em;
}
.footer .footer-logo:hover,
.footer .footer-logo:focus {
    opacity: 1;
}

.about{
    background-color: #222;
    text-align: center;
    min-height: 100vh;
}

.about .about-container {
    inset: 0;
    margin: 0 auto;
    max-width: 95%;
    padding: 1em;
    line-height: 1.3em;
    padding-bottom: 7.5rem;
}

.about .about-card {
    background-color: var(--color-less-dark);
    display: inline-block;
    width: 90%;
    margin-top: 8em;
    padding-bottom: 4em;
    box-shadow:inset 0px 0px 10px 3px rgba(0, 0, 0, .75);
}

.about .about-title {
    display: inline-block;
    color: var(--color-light);
    text-shadow: 2px 2px 4px black;
    padding-top: 1.75em;
    padding-bottom: 1.25em;
    font-weight: 700;
    font-size: 2.5rem;
}

.about .about-heading {
    display: inline-block;
    color: white;
    font-size: 1.5em;
    position: relative;
}

.about .about-heading::before {
    content: "";
    position: absolute;
    bottom: -.25em;
    height: 4px;
    width: 0%;
    opacity: 0;
    background: #aaa;
    border-radius: 100vh;
    transition: 500ms ease-out;
}

.about .about-heading:hover::before,
.about .about-heading:focus::before {
    width: 100%;
    opacity: 1;
}

.about-heading {
    color: #fff;
    margin: 1em;
}

.about-container ul {
    display: inline-block;
    list-style: none;
    color: #fff;
}

.about-container ul li{
    display: block;
    position: relative;
    padding: .25em 1em;
}

.about-container ul li span {
    position: relative;
    z-index: 10;
}

.about-container ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #fff;
    height: 100%;
    background: linear-gradient(to right, var(--color-less-dark), #555, var(--color-less-dark));
    opacity: 0;
    transition: 500ms ease-out;
    transform: scalex(0);
    transform-origin: center;
}

.about-container li:hover::after {
    transform: scale(1);
    width: 100%;
    opacity: 1;
}

::-webkit-scrollbar {
    width: 1.5em;
    height: 1em;
    background: transparent;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
    margin-top: 4.5em;
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .25);
    border-radius: 100vw;
    border: .3em solid transparent;
    background-clip: padding-box;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, .5);
}

.see-more {
    padding-top: 15vh;
}

.see-more-button {
    font-size: 1.25em;
    text-align: center;
    padding: .5em 1.5em;
    border-radius: 100vh;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .75);
    color:#ccc;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .5);
    border: none;
    transition: 250ms ease-out;
    transition-property: transform, box-shadow, background;
}

.see-more-button:hover,
.see-more-button:focus {
    transform:scale(105%);
    box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, .5);
    color: #eee;
}