/* Header */

#main-header {
    padding: 20px 0;;
}

#nav-logo a {
    line-height: 0.8;
}

#nav-logo img {
    max-height: 75px;
    width: auto;
}

#site-navigation {
    margin: 0 0 0 auto;
}

#primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 1;
    gap: 30px;
}

#primary-menu li {
    line-height: 1;
}

#primary-menu li a {
    font-family: var(--flexible);
    font-weight: 400;
    font-size: 45px;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.75px;
    color: var(--white);
}

#primary-menu li.nav-btn a {
    color: var(--blue);
    background-color: var(--yellow);
    padding: 15px 30px 20px;
    line-height: 0.75;
}

.toggle-menu {
    display: none;
}



@media screen and (max-width: 768px){
    #nav-logo img {
        max-width: 80px;
    }

    #primary-menu li a {
        font-size: 35px;
    }

    #primary-menu li.nav-btn a {
        padding: 10px 20px 15px;
        line-height: 0.8;
    }
}


@media screen and (max-width: 600px){
    #main-header {
        padding: 10px 0;
    }

    #nav-logo img {
        max-width: 50px;
    }

    #primary-menu {
        gap: 20px;
    }

    #primary-menu li a {
        font-size: 25px;
    }

    #primary-menu li.nav-btn a {
        padding: 5px 10px 10px;
        line-height: 0.8;
    }
}









/* 
** Homepage 
*/


/* Hero section */
.home__hero-section-inner > div {
    width: 50%;
}

.home__hero-section-inner .content-block {
    padding: 50px 50px 60px 0;
}

.home__hero-section-inner .content-block h2 {
    line-height: 0.85;
    /* max-width: 450px; */
    font-size: 80px;
}

/* .home__hero-section-inner .content-block h2 span {
    display: block;
} */

.home__hero-section-inner .content-block .desc {
    letter-spacing: -0.4px;
    margin: 20px 0 30px;
}

.home__hero-section-inner .content-block p {
    margin: 0;
}

.home__hero-section .btn {
    display: block;
    font-size: 60px;
}

section.home__hero-section .img-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    background-color: #000000;
}
/*
section.home__hero-section .img-block img.hero-banner {
     position: absolute;
    left: -30px;
    bottom: 40px; 
}*/

.home__hero-section .img-block .hero-banner-icon {
    position: absolute;
    z-index: 1;
}

.home__hero-section .img-block .hero-banner-icon-dollar {
    left: -20px;
    max-width: 96px;
    top: 150px;
}

.home__hero-section .img-block .hero-banner-icon-up-1 {
    left: 35%;
    max-width: 130px;
    top: 150px;
}

.home__hero-section .img-block .hero-banner-icon-up-2 {
    right: 5px;
    max-width: 130px;
    top: 55%;
}

.home__hero-section .img-block .hero-banner-icon-money {
    left: 50px;
    max-width: 185px;
    bottom: 1px;
}

@media screen and (max-width: 768px){
    .home__hero-section-inner {
        flex-direction: column;
    }

    .home__hero-section-inner > div {
        width: 100%;
    }

    .home__hero-section-inner .content-block h2 {
        max-width: 100%;
        font-size: 75px;
    }

    section.home__hero-section .img-block img.hero-banner {
        position: relative;
        left: unset;
        bottom: unset;
    }

    .home__hero-section .img-block .hero-banner-icon-dollar {
        left: -10px;
        max-width: 75px;
        top: -50px;
    }

    .home__hero-section .img-block .hero-banner-icon-up-1 {
        left: 35%;
        max-width: 90px;
        top: -50px;
    }

    .home__hero-section .img-block .hero-banner-icon-up-2 {
        right: -5px;
        max-width: 100px;
        top: 35%;
    }

    .home__hero-section .img-block .hero-banner-icon-money {
        left: 50px;
        max-width: 120px;
        bottom: 1px;
    }
}


@media screen and (max-width: 600px){
    .home__hero-section-inner .content-block h2 {
        font-size: 50px;
    }

    .home__hero-section-inner .content-block {
        padding: 50px 0px 60px 0;
    }

    .home__hero-section .btn {
        font-size: 30px;
        padding: 10px 20px 15px;
    }

    .home__hero-section .img-block .hero-banner-icon-dollar {
        max-width: 50px;
        top: -20px;
    }

    .home__hero-section .img-block .hero-banner-icon-up-1 {
        max-width: 60px;
        top: -20px;
    }

    .home__hero-section .img-block .hero-banner-icon-up-2 {
        max-width: 55px;
    }

    .home__hero-section .img-block .hero-banner-icon-money {
        max-width: 70px;
    }
}





/* Ticker */
.home__ticker-section-inner {
    padding: 5px 0 15px;
}

.home__ticker-section-inner .h3 {
    line-height: 1;
}





/* Grid Items */
.home__grid-section-inner {
    padding: 80px 0 60px;
    gap: 22px;
}

.home__grid-section .grid-item {
    width: calc(33.33% - 15px);
    position: relative;
    border-radius: 8px;
}

.home__grid-section .grid-item-icon {
    position: absolute;
}

.home__grid-section .grid-item-0 .grid-item-icon {
    left: -30px;
    top: -20px;
    max-width: 82px;
}

.home__grid-section .grid-item-1 .grid-item-icon {
    left: -15px;
    top: -50px;
    max-width: 146px;
}

.home__grid-section .grid-item-2 .grid-item-icon {
    right: 25px;
    top: -35px;
    max-width: 60px;
}

.home__grid-section .grid-item-img {
    height: 275px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.home__grid-section .grid-item .grid-item-content {
    padding: 50px 20px;
    border-radius: 0 0 8px 8px;
}

.home__grid-section .grid-item h3 {
    line-height: 0.85;
    letter-spacing: 1.25px;
}

.home__grid-section .grid-item .desc {
    margin: 20px 10px 0;
}

@media screen and (max-width: 768px){
    .home__grid-section .grid-item-0 .grid-item-icon {
        left: -10px;
        max-width: 60px;
    }

    .home__grid-section .grid-item-1 .grid-item-icon {
        left: -15px;
        top: -30px;
        max-width: 100px;
    }

    .home__grid-section .grid-item-2 .grid-item-icon {
        right: 25px;
        top: -25px;
        max-width: 40px;
    }

    .home__grid-section .grid-item .grid-item-content {
        padding: 30px 20px;
        border-radius: 0 0 8px 8px;
    }
}


@media screen and (max-width: 600px){
    .home__grid-section-inner {
        padding: 60px 0 40px;
        gap: 35px;
        flex-direction: column;
    }

    .home__grid-section .grid-item {
        width: 100%;
    }

    .home__grid-section .grid-item-img {
        height: 220px;
        object-position: center top;
    }

    .home__grid-section .grid-item .desc {
        margin: 20px 0 0;
        font-size: 14px;
    }
}




/* Fullwidth section */
.home__fullwidth-section-inner {
    position: relative;
    padding: 80px 0 50px;
}

.home__fullwidth-section-inner h1 {
    line-height: 0.8;
    font-size: 125px;
    max-width: 1150px;
}

.home__fullwidth-section-inner h1 p {
    margin: 0;
}

.home__fullwidth-section-inner span.blue {
    display: block;
}

.home__fullwidth-section-inner img.icon-money, 
.home__fullwidth-section-inner img.icon-dollar {
    position: absolute;
    top: 40px;
}

.home__fullwidth-section-inner img.icon-money{
    max-width: 147px;
    left: 0;
}

.home__fullwidth-section-inner img.icon-dollar {
    max-width: 78px;
    right: 0;
}

.home__fullwidth-section-inner .desc {
    line-height: 1.2;
    margin: 20px 0 0;
}

@media screen and (max-width: 768px){
    .home__fullwidth-section-inner h1 {
        font-size: 75px;
        max-width: 85%;
    }

    .home__fullwidth-section-inner img.icon-money {
        max-width: 100px;
    }

    .home__fullwidth-section-inner img.icon-dollar {
        max-width: 55px;
    }

    .home__fullwidth-section-inner .desc {
        max-width: 500px;
        font-size: 20px;
    }
}

@media screen and (max-width: 600px){
    .home__fullwidth-section-inner h1 {
        font-size: 50px;
        max-width: 85%;
    }

    .home__fullwidth-section-inner img.icon-money {
        max-width: 70px;
        top: 20px;
    }

    .home__fullwidth-section-inner img.icon-dollar {
        top: 20px;
    }
}









/* Whats at Stake */
.home__whatstake-section-inner {
    position: relative;
    padding: 60px 0 70px;
}

.home__whatstake-section-inner h1 {
    line-height: 0.8;
    font-size: 125px;
}

.home__whatstake-section-inner h1 p {
    margin: 0;
}

.home__whatstake-section-inner span.blue {
    display: block;
}

.home__whatstake-section-inner .desc {
    max-width: 800px;
    margin: 0 auto;
}

.home__whatstake-cols-wrapper {
    margin: 60px 0 0;
}

.home__whatstake-cols {
    gap: 120px;
}

.home__whatstake-col h3 {
    font-size: 50px;
}

.home__whatstake-col-item {
    margin-top: 25px;
    gap: 25px;
    border: 1px solid rgb(0 0 0 / 5%);
    box-shadow: 0px 4px 3px rgb(0 0 0 / 10%);
    border-radius: 8px;
    padding: 35px 35px 35px 25px;
}

.home__whatstake-col-item img {
    height: 75px;
    width: auto;
}

.home__whatstake-col-item .notes {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.24px;
}

.home__whatstake-col-item .notes p {
    margin: 0;
}

@media screen and (max-width: 768px){
    .home__whatstake-section-inner h1 {
        font-size: 75px;
    }

    .home__whatstake-section-inner .desc {
        max-width: 500px;
        font-size: 20px;
    }

    .home__whatstake-cols {
        gap: 30px;
    }

    .home__whatstake-col h3 {
        font-size: 35px;
    }

    .home__whatstake-col-item {
        margin-top: 20px;
        gap: 20px;
        padding: 25px 25px 25px 15px;
    }

    .home__whatstake-col-item img {
        height: 55px;
    }

    .home__whatstake-col-item .notes {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px){
    .home__whatstake-section-inner h1 {
        font-size: 50px;
    }

    .home__whatstake-section-inner .desc {
        font-size: 18px;
    }

    .home__whatstake-cols {
        gap: 40px;
        flex-direction: column;
    }

}





/* Form section */
.home__form-section-inner {
    position: relative;
    padding: 60px 0 70px;
    gap: 40px;
}

.home__form-section-inner h2:not(.line) {
    line-height: 0.8;
    font-size: 100px;
    max-width: 400px;
}

.home__form-section-inner .content-block .desc {
    margin: 40px 0 0;
    max-width: 575px;
}

.form-block .form-heading {
    font-size: 50px;
    line-height: 1;
    max-width: 375px;
}

.home__form-section-inner .form-block {
    padding: 40px 40px 50px;
    border-radius: 8px;
    max-width: 670px;
}

div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil div#action_info, 
div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil div#logo_wrap {
    display: none !important;
}

div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil .letter #can_embed_form h2.line, 
div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil .letter #can_embed_form h4 {
    font-family: var(--flexible) !important;
    color: var(--black) !important;
    text-align: center !important;
    font-size: 45px !important;
    line-height: 0.75 !important;
    font-weight: 400 !important;
}

div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil .letter #can_embed_form h4 {
    font-size: 75px !important;
}

div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil #can_embed_form.can_float #form_col1, 
div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil #can_embed_form.can_float #form_col2 {
    float: none !important;
    width: 100% !important;
    clear: both !important;
}

div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil #can_embed_form.can_float #form_col1 *, 
div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil #can_embed_form.can_float #form_col2 * {
    font-family: var(--opensans) !important;
}

div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil #can_embed_form.can_float div#form_col2 input[type="submit"] {
    background-color: var(--blue) !important;
    font-family: var(--flexible) !important;
    font-size: 35px !important;
    letter-spacing: 1px !important;
}

@media screen and (max-width: 1100px){
    .home__form-section-inner .form-block {
        max-width: 550px;
    }
}


@media screen and (max-width: 768px){
    .home__form-section-inner {
        padding: 50px 0 60px;
        flex-direction: column;
    }

    .home__form-section-inner .form-block {
        max-width: 650px;
        margin: 40px auto 0;
    }

    .home__form-section-inner h2:not(.line) {
        font-size: 75px;
    }
}


@media screen and (max-width: 768px){
    .home__form-section-inner h2:not(.line) {
        font-size: 50px;
    }

    .form-block .form-heading {
        font-size: 35px;
    }

    .home__form-section-inner .form-block {
        margin: 0px auto;
    }

    div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil .letter #can_embed_form h2.line, 
    div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil .letter #can_embed_form h4 {
        font-size: 35px !important;
        line-height: 0.85 !important;
    }

    div#can-letter-area-tell-congress-no-more-giveaways-to-big-oil .letter #can_embed_form h4 {
        font-size: 50px !important;
    }

    .home__form-section-inner .form-block {
        padding: 30px 25px 30px;
    }
}



/* 
** Latest News
*/
.latest-news__list-wrapper {
    padding: 70px 0 50px;
    min-height: calc(100vh - 205px);
}

.latest-news__list-wrapper h3 {
    font-size: 50px;
}

.latest-news__list {
    margin: 25px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
}

.latest-news__list .latest-news__item {
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.latest-news__item h5 {
    font-family: var(--opensans);
    font-size: 24px;
    letter-spacing: -0.24px;
    line-height: 1.2;
    font-weight: 800;
    margin: 10px 0 15px;
}

.latest-news__item .item-metas {
    gap: 20px;
    font-size: 16px;
    margin: 15px 0 60px;
    line-height: 1.4;
}

.latest-news__item .item-metas .item-press-outlet {
    font-weight: 800;
}

.latest-news__item .item-link {
    font-size: 35px;
    line-height: 0.8;
    text-decoration: none;
}

.fobo-ajax-btn-wrapper {
    margin: 60px 0 0;
}

.fobo-ajax-btn-wrapper #btn-see-more {
    padding: 15px 50px 20px;
}


@media screen and (max-width: 768px){
    .latest-news__list-wrapper {
        padding: 50px 0 40px;
    }

    .latest-news__list {
        gap: 30px;
    }

    .fobo-ajax-btn-wrapper #btn-see-more {
        padding: 10px 40px 15px;
        font-size: 50px;
    }
}


@media screen and (max-width: 600px){
    .latest-news__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .latest-news__list .latest-news__item {
        padding: 25px;
    }

    .fobo-ajax-btn-wrapper #btn-see-more {
        padding: 10px 30px 15px;
        font-size: 35px;
    }

    .latest-news__item .item-link {
        font-size: 25px;
    }

    .latest-news__item .item-metas {
        margin: 15px 0 30px;
    }
}








/*
** Single Post
*/
.single-post main#primary .container {
    max-width: 875px;
    margin: 60px auto 120px;
}

.single-post main#primary h1.entry-title {
    font-size: 75px;
}

@media screen and (max-width: 600px){
    .single-post main#primary h1.entry-title {
        font-size: 50px;
    }
}







/*
** Privacy Policy
*/
.page-id-3 main#primary .container {
    max-width: 875px;
    margin: 60px auto 120px;
}

.page-id-3 main#primary h1.entry-title {
    font-size: 75px;
}

.page-id-3 .entry-content h2 {
    font-size: 50px;
}

@media screen and (max-width: 600px){
    .page-id-3 main#primary h1.entry-title {
        font-size: 50px;
    }

    .page-id-3 .entry-content h2 {
        font-size: 35px;
    }
}





/* Footer */
.site-footer {
    padding: 20px 0;
}

.site-footer .footer-left {
    gap: 20px;
}

.site-footer .footer-left .site-name {
    line-height: 0;
}

.site-footer .footer-left .powered-by {
    letter-spacing: -0.2px;
    line-height: 135%;
    text-underline-offset: 8px;
}

.site-footer .footer-right {
    gap: 30px;
}

.footer-right .link-privacy-policy {
    text-decoration: none;
}

@media screen and (max-width: 768px){
    .site-footer .footer-left .site-name img {
        max-width: 200px;
    }

    .site-footer .footer-left .powered-by {
        text-underline-offset: 5px;
        font-size: 12px;
    }

    .site-footer .footer-right {
        gap: 20px;
    }

    .footer-right .link-privacy-policy, 
    .footer-right span.copyright {
        font-size: 25px;
    }
}

@media screen and (max-width: 600px){
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .site-footer .footer-left {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .site-footer .footer-right {
        align-items: center;
        justify-content: center;
    }
}