@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #FFFFFF !important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1300px !important;
}

img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a:link, a:visited {
    color: #2a8648;
    text-decoration: none;
}

a:hover, a:active {
    color: #686868;
}

/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/

/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/


/* Site Headers */

h1, h2, h3, h4, h5, h6 {
    color: #2a8648;
    /*font-family: all-round-gothic, sans-serif;*/
    font-weight: 700;
    font-style: normal;
    font-family: poppins, sans-serif;
}

h1 {
    font-size: 2.3em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

h2 {
    font-size: 2.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 1.9em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.4em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.logo-size {
    width: 70%;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.navbar {
    font-size: 1.2em;
}

.navbar:after {
    content: "";
    display: block;
    height: 10px;
    background-color: green;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
}

.navbar-brand {
    width: 78%;
}

.nav-link {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}


.dropdown-item.hover, .dropdown-item:hover {
    background-color: #2a8648;
    color: #FFFFFF;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
    margin-top: 45px;
    font-size: .9em;
    border-radius: 0px;
}


.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #96c93e;
}

.image-wrap {
    width: 230%;
    height: 99vw;
    margin: 0 auto;
    overflow: hidden;
    top: 6px;
    position: relative;
}

.image-wrap img {
    width: 100%;
    animation: move 40s ease;
    /* Add infinite to loop. */

    -ms-animation: move 40s ease;
    -webkit-animation: move 40s ease;
    -o-animation: move 40s ease;
    -moz-animation: move 40s ease;
    position: absolute;
}

.carousel-caption {
    top: 30px;
    left: 0;
    right: 0;
}

.carousel-caption h1 {
    font-weight: bold;
    font-size: 1.5em;
    color: #2a8648;
    max-width: 1080px;
}

.carousel-caption .lead {
    color: #333333;
    font-size: 1em;
    max-width: 1080px;
}

#services {
    margin-top: 0px;
}

#services h2 {
    color: #2a8648;
    font-weight: bold;
    font-size: 1.3em;
    max-width: 1080px;
}

#services p {
    font-size: 1.1em;
    line-height: 1.5em;
}

.feature-card h3 {
    margin-top: 40px;
    font-size: 1.7em;
}

.feature-card:hover #up-svg g,
.feature-card:hover #mid-svg g,
.feature-card:hover #down-svg g {
    stroke: #11b0ab;
}

#overview h1 {
    font-size: 3.4em;
}


#about h2 {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 4em;
}

.btn {
    border-radius: 30px;
    padding-top: 10px;
    font-size: 1.1em;
    font-family: "Poppins", sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-primary {
    background-color: #2a8648;
    border-color: #2a8648;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background-color: #11b0ab !important;
    color: #FFFFFF;
}

.btn-outline-primary {
    border-color: #2a8648;
    color: #2a8648;
}

.btn-outline-primary:hover {
    background-color: #2a8648;
    color: #FFFFFF;
}


.btn-outline-secondary {
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

.btn-outline-secondary:hover {
    background-color: #11b0ab;
    color: #FFFFFF;
}

.btn-info {
    border-radius: 0px;
    border: none;
}

.btn-info:hover {
    border: none;
}

.btn-info:link {
    color: #FFFFFF !important;
}

.btn-info:visited {
    color: #FFFFFF !important;
}


.blurb-header-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: 0px;
    height: 199px;
    opacity: 60%;
}

.page-blurb-title {
    color: #FFFFFF !important;
    position: absolute;
    top: 45%;
    font-size: 2em;
}

.blurb-button {
    position: absolute;
    bottom: 40px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.feature-card {
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s;
    min-height: 730px;
}

.feature-card:hover {
    transform: translateY(-20px);
}

#net-zero {
    padding-top: 90px !important;
    padding-bottom: 130px !important;
}

.upstream {
    padding-top: 10px !important;
    padding-bottom: 80px !important;
}


.module-image {
    margin-top: -170px;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.cta-container {
    margin-top: -10px;
}

.larger-font {
    font-size: 3em;
}

.large-font {
    font-size: 1em;
}

.content-margin-top {
    margin-top: 6.1rem;
}

.upstream-midstream-downstream-buttons {
    background: #2a8648;
    display: none;
}

.mid-nav {
    display: block;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 8px;
    margin-bottom: 8px;
}

.menus {
    margin-top: 43px;
    padding-left: 10px;
}

.menus a {
    position: relative;
    display: inline-block;
    width: 31%;
    font-size: 1.2em;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 7em;
    padding-left: 7em;
    text-align: center;
    text-align: center;
}

.menus a:hover {
    background-color: #2a8648;
    color: #FFFFFF;
}

.gr-border-right {
    border-right: 2px solid #2a8648;
}

.gr-border-left {
    border-left: 2px solid #2a8648;
}
.menu-active {
    background-color: #faf8f4;
}

.upstream-menu {
}

.midstream-menu {
    margin-left: -5px;
}

.downstream-menu {
    margin-left: -5px;
}

.mobile-bg {
    display: block;
    width: 100%;
    background-color: #faf8f4;
}


.overlay-margins {
    margin-top: -460px !important;
    margin-bottom: -65px !important;
}

.bg-black {
    background-color: #000000;
}

.bg-light-green {
    background-color: #bdd98c;
}

.bg-neutral {
    background-color: #F9F6F3;
}

.mid-down {
    min-height: 420px;
}

.alert-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.alert {
    margin-bottom: 0px !important;
}

.btn-bottom {
    position: absolute;
    bottom: 20px;
}

.bio-pic {
    margin-top: 26px;
    padding: 22px;
}

.overview-col {
    min-height: 640px;
}

.social-col {
    min-height: 340px;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform-origin: bottom left;
        -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        -o-transform-origin: bottom left;
        transform-origin: bottom left;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        /* IE 9 */

        -webkit-transform: scale(1.0);
        /* Safari and Chrome */

        -o-transform: scale(1.0);
        /* Opera */

        -moz-transform: scale(1.0);
        /* Firefox */
    }
    100% {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        /* IE 9 */

        -webkit-transform: scale(1.2);
        /* Safari and Chrome */

        -o-transform: scale(1.2);
        /* Opera */

        -moz-transform: scale(1.2);
        /* Firefox */
    }
}

.sticky .top-bar {
    max-height: 140px;
    z-index: 4000;
}

.sticky .logo-size {
    width: 35%;
}

.sticky .fa-phone {
    display: inline-block;
}

.sticky .phone-number {
    display: none;
}

.sticky .search-bar {
    margin-bottom: 10px;
}

.sticky .navbar-nav .dropdown-menu {
    margin-top: 30px;
}

.user-panel .card-body {
    padding: 1rem;
}

#message-outer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 5000;
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .upstream {
        padding-top: 100px !important;
    }

    .content-margin-top {
        margin-top: 7.9rem;
    }

    .large-font {
        font-size: 1.25em;
    }

    .carousel-caption h1 {
        font-size: 2.5em;
    }

    #services h2 {
        font-size: 2.2em;
    }

    .carousel-caption .lead {
        font-size: 1em;
    }

    .image-wrap {
        width: 164%;
        height: 66vw;
        top: 0px;
    }

    .logo-size {
        width: 45%;
    }

    .page-blurb-title {
        font-size: 4.5em;
    }

    .large-font {
        font-size: 1.25m;
    }

    .mid-nav {
        display: inline-block;
        margin-left: 2px !important;
        margin-right: 2px !important;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .blurb-header-bg {
        height: 450px;
    }

    .overlay-margins {
        margin-top: -460px !important;
        margin-bottom: 145px !important;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    .navbar-brand {
        width: 100%;
    }

    .carousel-caption h1 {
        font-size: 3em;
    }

    #services h2 {
        font-size: 2.8em;
    }

    .carousel-caption .lead {
        font-size: 1.1em;
    }

    .image-wrap {
        height: 70vw;
        top: auto;
    }


}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .carousel-caption h1 {
        font-size: 3.6em;
    }

    #services h2 {
        font-size: 3.5em;
        padding-right: 90px;
    }

    .carousel-caption .lead {
        font-size: 1.2em;
    }

    .image-wrap {
        width: 110%;
        height: 48vw;
        top: 0px;
    }

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

    .carousel-caption h1 {
        font-size: 4em;
    }

    #services h2 {
        font-size: 3.8em;
        padding-right: 60px;
    }

    .carousel-caption .lead {
        font-size: 1.3em;
    }

    #services {
        margin-top: -54px;
    }

    .image-wrap {
        width: 100%;
        height: 46vw;
        top: -40px;
    }

}

