/**
 * Imports
 */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/**
 * Custom Styles
 */
body, html {
    width: 100vw;
    height: 100vh;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    overflow: hidden;
}

h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 78px;
    color: #176BA9;
}

h2 {
    font-size: 42px;
    line-height: 56px;
    color: #7a7a7a;
}

h3 {
    font-size: 24px;
    line-height: 36px;
    color: #444;
}

#particles-js {
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    -moz-opacity: 0.40;
    -khtml-opacity: 0.40;
    opacity: 0.40;
    border-radius: 100%;
}

.bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
}

.bg .left, .bg .right {
    height: 85%;
    position: absolute;
    bottom: 0;
/*    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;*/
}

.bg .left {
    left: 0;
}

.bg .right {
    right: 0;
}

.bg .left img, .bg .right img {
    height: 100%;
}

header {
    width: 100vw;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar-light {
    background: transparent;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar a.nav-link {
    display: inline-block;
    font-size: 22px;
    color: #176BA9;
}

.navbar a.nav-link:not(:last-of-type) {
    margin-right: 0.5rem;
}

.content {
    text-align: center;
}

.content .row {
    height: 100vh;
}

.content .services {
    font-size: 16px;
    letter-spacing: 1px;
    color: #176BA9;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.subscribe-form input, .subscribe-form button {
    font-size: 18px;
}

.subscribe-form input[type="email"] {
    min-width: 200px;
    padding: 12px;
    border: 1px solid #ccc;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border: 2px solid #2F96E2;
}

.subscribe-form input[type="submit"] {
    padding: 14px 30px;
    background-color: #2F96E2;
    color: #fff;
    border: none;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-left: 0;
}

.subscribe-form input[type="submit"]:hover {
    background-color: #176BA9;
}

footer {
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    text-align: center;
    padding: 10px 0;
}


/** 
 * Tablet Styles 
 */
@media screen and (max-width: 972px) {
    .bg .left {
        left: -20%;
    }
    .bg .right {
        right: -20%;
    }
}

/** 
 * Smartphone Styles 
 */
@media screen and (max-width: 480px) {
    body, html {
        height: auto;
        overflow: visible;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .bg .left, .bg .right {
        height: 75%;
    }

    .bg .left {
        left: -40%;
    }

    .bg .right {
        right: -40%;
    }

    footer {
        font-size: 12px;
    }
}
