@import url("better-bootstrap.css");
@import url("boxes.css");

body {
    color: black;
    font-family: 'Spartan';
    width: 100vw;
    overflow-x: hidden;
}

body * {
    transition: .2s ease all;
}

.logo-minimalist {
    width: 2.5em;
    margin-right: 1em;
    margin-bottom: .5rem;
    filter: grayscale(100%) brightness(75%);
    transition: 0.5s ease all;
}

.navbar-light .logo-minimalist {
    filter: none;
}

.head {
    background: rgba(0, 0, 0, 0.35) url("../images/8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-blend-mode: darken;
    width: 100%;
    min-height: 600px;
    height: 100vh;
    color: white;
    margin-bottom: 1rem;
}

.head::before {
    content: "";
    display: block;
    width: 100%;
    height: 5em;
}

.navbar-right {
    margin: 1em auto;
    text-indent: 5em;
}

.navbar a:hover {
    color: white !important;
}

.head .vertical-center {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    min-height: calc(600px - 20%);
    height: calc(100vh - 100%);
}

.head .text {
    width: 15em;
    font-family: 'Segoe UI';
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.disable {
    display: none !important;
}

.aside-nav {
    z-index: 2;
    position: fixed;
    height: 100vh;
    width: 60%;
    right: 0;
    top: 0;
    background-color: white;
    text-align: center;
}

.aside-nav ul {
    padding: 2em 0;
}

.aside-nav li {
    padding: 2em;
}

.aside-nav .nav-toggle {
    margin: 0 7em 0 0;
}

.background-shade {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.fade-in-box {
    opacity: 0;
    transform: translateY(200px);
    transition: 0.5s ease-out all;
}

.in-view {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    padding-bottom: 10rem;
    width: 100vw;
}

h1 {
    color: #28a745;
    font-family: 'Segoe UI';
    font-weight: 800;
    text-align: center;
    text-emphasis-position: bottom;
    padding-bottom: 2rem;
}

h2 {
    padding-top: 1em;
}

.icon-open-menu {
    background: url("../images/menu.svg") no-repeat;
    background-size: 100%;
    width: 3em;
    height: 3em;
    cursor: pointer;
    transition: .5s ease all;
}

.navbar-dark .icon-open-menu {
    background: url("../images/menu-light.svg") no-repeat;
    background-size: 100%;
}

.icon-close-menu {
    background: url("../images/cross.svg") no-repeat;
    background-size: 100%;
    width: 3em;
    height: 3em;
    cursor: pointer;
}

#contact-us .col-md-3 {
    padding-top: .7em;
}

.popup {
    transition: .1s ease all;
    position: fixed;
    top: calc(50vh - 200px);
    left: calc(50vw - 45vw);
    width: 90vw;
    height: 400px;
    font-size: 13pt;
    border-radius: 3vw;
    background-color: white;
    display: flex;
    flex-flow: column nowrap;
    text-align: center;
    padding: 2em;
    box-shadow: 1px 2px 6px black;
    z-index: 1;
}