:root {
    --secondary: rgba(55, 70, 100, 1);
    --primary: rgba(110, 140, 200, 1);
    --tertiary: rgba(20, 175, 175, 1);
}

* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

p {
    margin: 10px 0 !important;
    overflow: hidden;
}

body {
    background: aliceblue;
}

.text {
    text-align: justify;
}

h1, h2, h3, h4, h5 {
    overflow: hidden;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

form {
    margin: 10px !important;
}

.card {
    background: aliceblue;
}

header {
    overflow-y: scroll;
}

.section {
    overflow: hidden;
}

.margin-none {
    margin: 0;
    padding: 0;
}

.main-header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    color:aliceblue;
    height: 100vh;
    min-height: 900px;
    position: relative;
    animation: change 30s infinite;
}

.contact-background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: url("images/app_map.jpg");
}

.main-btn {
    background-color: var(--primary);
    width: 10vw;
    height: 2.5vh;
    font-size: 1em;
    font-weight: lighter;
    min-width: 200px;
    min-height: 75px;
    margin: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.override-primary {
    color: var(--primary) !important;
}

.main-btn:nth-child(2) {
    transition-delay: 200ms;
}

.form-btn {
    background-color: var(--primary);
}

.form-btn:hover {
    background-color: var(--tertiary);
}

.collapsible-header {
    transition: all 0.25s;
}

.collapsible-header:hover {
    color: var(--primary);
}

.link {
    color: var(--primary);
    margin: none;
}

.link:hover {
    color: var(--tertiary)
}

.main-header .showcase {
    padding-top: 100px;
}

nav {
    height: 10vh;
    line-height: 10vh;
    min-height: 100px;
    max-height: 150px;
}

.navbar-fixed {
    height: 10vh;
    min-height: 100px;
    max-height: 150px;
}*

.nav-link {
    height: 10vh;
    min-height: 100px;
    max-height: 150px;
}

.nav-a {
    height: 10vh;
    min-height: 100px;
    max-height: 150px;
}


.nav-js {
    transition: .4s ease-out;
}

.nav-scrolled {
    color: var(--primary);
    background: aliceblue;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.grey-blue {
    background: var(--primary);
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


.no-border {
    border: hidden;
}

.rounded {
    border-radius: 5px;
}

.overlay {
    background: rgba(160, 160, 200, 0.45);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.scroll-btn {
    position: absolute;
    bottom: 5%;
    left: 50%;
    opacity: 0.33;
}

.logo-container {
    padding: 10px;
}

.hidden {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(-100%);
    transition: all 1s;
}

.hidden_load {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(-100%);
    transition: all 1s;
}

.hidden_r {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(100%);
    transition: all 1s;
}

.hidden_i {
    opacity: 0;
    filter: blur(2px);
    transform: translatey(20%);
    transition: all 2s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden_nav {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-100%);
    transition: all 2s;
}

.show_nav {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


p:nth-child(2) {
    transition-delay: 200ms;
}

p:nth-child(3) {
    transition-delay: 400ms;
}

p:nth-child(4) {
    transition-delay: 600ms;
}

p:nth-child(5) {
    transition-delay: 800ms;
}

a:nth-child(2) {
    transition-delay: 1000ms;
}

a:nth-child(3) {
    transition-delay: 2000ms;
}


.logo {
    margin-top: 5px;
    height: 9vh;
    min-height: 90px;
    max-height: 135px;
    width: auto;
}

.image {
    width: 20vw;
    height: auto;
    padding: 10px;
    min-width: 250px;
    float: left;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

label {
    margin-left: 1rem !important;
}

.extra-padding-top {
    padding-top: 1rem;
}

.input-field.error {
    border-color: red;
}

.input-field.success {
    border-color: green;
}

#loader {
    background: aliceblue;
    height: 100vh;
    width: 100vw;
    position: fixed;
    overflow: hidden;
    z-index: 100;
    transition: 0.5s ease-out;
}


@keyframes change{
    0%
    {
        background-image: url(images/sacramento_day.jpg);
    }
    33%
    {
        background-image: url(images/sanfrancisco_day.jpg);
    }
    40%
    {
        background-image: url(images/sanfrancisco_day.jpg);
    }
    66%
    {
        background-image: url(images/losangeles_day.jpg);
    }
    73%
    {
        background-image: url(images/losangeles_day.jpg);
    }
    100%
    {
        background-image: url(images/sacramento_day.jpg);
    }
}