:root {
    --ld-barlow: 'Barlow', sans-serif;
    --ld-yellow: #E8EA58;
    --ld-dark-gray: #4D5440;
    --ld-coral: #F16941;
    --ld-blue: #5371FF;
    --ld-white: #ffffff;
    --ld-alice-blue: #F0F3FF;
    --ld-dark: #231F21;
    --ld-light-yellow: #E8ECE1;

}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** font-face 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** pre-defined classes
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.font-barlow {
    font-family: var(--ld-barlow);
    font-style: normal;
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

h1, .h1 {
    font-size: 60px;
    line-height: 130%;
}

h2, .h2 {
    font-size: 45px;
    line-height: 125%;
}

h3, .h3 {
    font-size: 26px;
    line-height: 120%;
}

h4, .h4 {
    font-size: 20px;
    line-height: 140%;
}

h5, .h5 {
    font-size: 18px;
    line-height: 140%;
}

h6, .h6 {
    font-size: 16px;
    line-height: 140%;
}

.tt-upper {
    text-transform: uppercase;
}

.tt-lower {
    text-transform: lowercase;
}

.ta-center {
    text-align: center;
}

.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.fl {
    display: flex;
} 

.fl-ai-center {
    align-items: center;
} 

.fl-ai-fs {
    align-items: flex-start;
} 

.fl-ai-fe {
    align-items: flex-end;
} 

.fl-jc-sb {
    justify-content: space-between;
}

.fl-jc-fs {
    justify-content: flex-start;
}

.fl-jc-fe {
    justify-content: flex-end;
}

.fl-jc-center {
    justify-content: center;
}

.fl-dir-row {
    flex-direction: row;
}

.fl-dir-col {
    flex-direction: column;
}

.fl-dir-row-rev {
    flex-direction: row-reverse;
}

.fl-dir-col-rev {
    flex-direction: column-reverse;
}
.fl-wr-wrap {
    flex-wrap: wrap;
}
.gd {
    display: grid;
}
.gd-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}


.ld-yellow {
    color: var(--ld-yellow);
}

.ld-dark-gray {
    color: var(--ld-dark-gray);
}

.ld-blue {
    color: var(--ld-blue);
}

.ld-dark {
    color: var(--ld-dark);
}

.ld-white {
    color: var(--ld-white);
}

.ld-light-gray {
    color: var(--ld-light-gray);
}

.ld-coral {
    color: var(--ld-coral);
}

.ld-alice-blue {
    color: var(--ld-alice-blue);
}

.ld-light-yellow {
    color: var(--ld-light-yellow);
}


.bg-ld-yellow {
    background-color: var(--ld-yellow);
}

.bg-ld-dark-gray {
    background-color: var(--ld-dark-gray);
}

.bg-ld-blue {
    background-color: var(--ld-blue);
}

.bg-ld-dark {
    background-color: var(--ld-dark);
}

.bg-ld-white {
    background-color: var(--ld-white);
}

.bg-ld-light-gray {
    background-color: var(--ld-light-gray);
}

.bg-ld-coral {
    background-color: var(--ld-coral);
}

.bg-ld-alice-blue {
    background-color: var(--ld-alice-blue);
}

.bg-ld-light-yellow {
    background-color: var(--ld-light-yellow);
}


.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mx-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}
.sm-txt {
    font-size: 16px;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}


.btn-ld-default, 
ul#primary-menu li.ld-nav-cta a, 
.unrig__newsletter-wrapper #gform_submit_button_1 {
    position: relative;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--ld-barlow);
    color: var(--ld-white);
    padding: 15px 40px;
    background-color: var(--ld-dark);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 5px;
    transition: none;
    justify-content: center;
}

.btn-ld-default::after, 
ul#primary-menu li.ld-nav-cta a::after, 
.unrig__newsletter-wrapper #gform_submit_button_1::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
}

ul#primary-menu li.ld-nav-cta a::after {
    border-color: var(--ld-coral);
}

.btn-ld-default:hover,
ul#primary-menu li.ld-nav-cta a:hover {
    background-color: var(--ld-yellow);
    color: var(--ld-dark);
}

.a:active,
.a:visited,
.a:focus,
.btn-ld-default:active,
.btn-ld-default:visited,
.btn-ld-default:focus {
    color: var(--ld-white);
}

.btn-ld-default:hover::after, 
ul#primary-menu li.ld-nav-cta a:hover::after, 
.unrig__newsletter-wrapper #gform_submit_button_1:hover::after {
    border-color: var(--ld-yellow);
    background-color: transparent;
}

.btn-ld-coral {
    background-color: var(--ld-coral);
}

.btn-ld-coral::after {
    border-color: var(--ld-coral);
}

.btn-ld-coral:hover::after, 
ul#primary-menu li.ld-nav-cta a:hover::after {
    border-color: var(--ld-yellow);
    background-color: transparent;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** core
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
* {
    box-sizing: border-box;
}

body {
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--ld-barlow);
    font-size: 20px;
    line-height: 140%;
    color: var(--ld-dark);
}

.section {
    position: relative;
}

.wrapper {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.has-url {
    cursor: pointer;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** header
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
header#masthead {
    padding: 10px 0;
}

nav#site-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header#masthead .custom-logo-link img {
    height: 75px;
    width: auto;
}

ul#primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 45px;
    text-transform: uppercase;
}

ul#primary-menu li > ul::before {
    content: "";
    position: absolute;
    height: 20px;
    left: 0;
    top: -20px;
    display: block;
    width: 100%;
    z-index: 1;
}

ul#primary-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--ld-white);
    position: relative;
}

ul#primary-menu > li {
    padding: 19px 0;
}

ul#primary-menu li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: transparent;
    transition: all 0.5s ease-out;
}

ul#primary-menu li a:hover::after {
    background-color: var(--ld-light-yellow);
}

ul#primary-menu li.ld-nav-cta a {
    font-size: 13px;
    font-weight: 600;
    color: var(--ld-dark);
    background-color: var(--ld-coral);
}

ul#primary-menu li.ld-nav-cta a::before {
    border-color: var(--ld-coral);
}

ul#primary-menu li > ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    padding: 30px 40px;
    background-color: var(--ld-dark);
    border: 1px solid var(--ld-white);
    width: 275px;
}

ul#primary-menu li > ul::after {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    width: 1em;
    height: 1em;
    margin: 0 0 0 -0.5em;
    border: 1px solid var(--ld-white);
    border-width: 1px 1px 0 0;
    background: var(--ld-dark);
    font-size: 20px;
    line-height: 1;
    transform: rotate(-45deg);
    transform-origin: 0 0;
}

ul#primary-menu li.menu-item-has-children:hover > ul {
    display: flex;
    left: -100px;
    top: 75px;
}

ul#primary-menu li > ul > li > a {
    width: auto;
}

ul#primary-menu li.current-menu-item:not(.ld-nav-cta) a::after {
    background-color: var(--ld-light-yellow);
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** page: homepage
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
section.hero-section {
    height: calc(100vh - 101px);
    border-bottom: 5px solid var(--ld-dark);
}

section.hero-section > .wrapper {
    height: 100%;
    width: 100%;
}

section.hero-section .hero-section-wrapper {
    height: 100%;
    max-width: 50%;
    margin-right: auto;
    margin-left: 0;
    position: relative;
}

section.hero-section .hero-section-wrapper::before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: var(--ld-dark);
    position: absolute;
    right: -61px;
    transform: skewX(-8deg);
    z-index: 10;
}

section.hero-section .hero-section-wrapper::after {
    content: "";
    width: 120px;
    height: 100%;
    position: absolute;
    right: -60px;
    background-color: var(--ld-yellow);
    transform: skewX(-8deg);
}

section.hero-section .hero-section-content {
    gap: 24px;
    max-width: 600px;
}

section.hero-section .hero-section-content h1 {
    font-size: 80px;
    line-height: 110%;
}

section.hero-section .hero-section-content .btn-ld-default:hover {
    background-color: var(--ld-coral);
}

section.hero-section .hero-section-content .btn-ld-default:hover::after {
    border-color: var(--ld-coral);
}

.home-3cols-section .home-3cols-header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.home-3cols-section .home-3cols-listing {
    max-width: 1100px;
}

.home-3cols-section .home-3cols-listing > .home-3col-item {
    width: 30%;
}

.home-3cols-section .home-3cols-listing > .home-3col-item h3 {
    font-size: 26px;
}

.home-3cols-section .home-3cols-listing > .home-3col-item p {
    line-height: 1.75;
}

.home-3cols-section .home-3cols-listing > .home-3col-item img {
    height: 84px;
    width: auto;
    margin-bottom: 25px;
}

.unrig__video-wrapper {
    position: relative;
}

.unrig__video-wrapper iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.641;
}

.unrig__video-wrapper .video-overlay {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}

.unrig__video-wrapper .video-overlay::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    margin: 0;
    content: '';
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.4));
}

.unrig__video-wrapper .video-overlay .video-caption {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    gap: 50px;
}

.unrig__video-wrapper .video-overlay .video-caption .btn-play {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.unrig__video-wrapper .video-overlay .video-caption .btn-play::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    margin: 0 auto;
    border-radius: 50%;
    background: var(--ld-yellow);
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.unrig__video-wrapper .video-overlay .video-caption .btn-play i {
    position: relative;
    z-index: 5;
    font-size: 40px;
}

.unrig__video-wrapper .video-overlay:hover .video-caption .btn-play::before {
    transform: scale(0.9);
}

.unrig__video-wrapper .video-overlay .video-caption .video-heading {
    font-size: 32px;
}

#trigger-play {
    cursor: pointer;
}


@media screen and (min-width: 1900px){
    section.hero-section .hero-section-wrapper::before {
        right: -101px;
    }

    section.hero-section .hero-section-wrapper::after {
        right: -100px;
    }
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** page: Corporate Price Gouging
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.page-template-page-corporate-price-gouging section.hero-section .hero-section-wrapper {
    margin-right: 0;
    margin-left: auto;
}

.page-template-page-corporate-price-gouging section.hero-section .hero-section-wrapper::before {
    left: -61px;
    right: auto;
}

.page-template-page-corporate-price-gouging section.hero-section .hero-section-wrapper::after {
    background-color: var(--ld-dark-gray);
    left: -61px;
    right: auto;
}

.page-template-page-corporate-price-gouging section.hero-section .hero-section-content {
    gap: 12px;
    max-width: 450px;
    padding-top: 100px;
}

@media screen and (max-width: 1900px){
    .page-template-page-corporate-price-gouging section.hero-section .hero-section-wrapper::before {
        left: -101px;
        right: auto;
    }

    .page-template-page-corporate-price-gouging section.hero-section .hero-section-wrapper::after {
        left: -60px;
        right: auto;
        background-color: var(--ld-dark-gray);
    }
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** template: default page
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.dp__hero-section {
    position: relative;
    min-height: calc(50vh - 51px);
}

.dp__hero-section > .wrapper {
    min-height: calc(50vh - 51px);
}

.dp__hero-section .dp__hero-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp__hero-section h1 {
    font-size: 80px;
	text-align: center;
}

.section-page-content > .wrapper {
    max-width: 630px;
    line-height: 1.6;
}

.page-id-74 .section-page-content > .wrapper h3 {
    font-weight: 400;
}

.page-id-74 .section-page-content > .wrapper h3 a {
    color: var(--ld-dark);
    text-decoration: underline;
    font-weight: 400;
    font-size: 26px;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}
.page-id-74 .section-page-content > .wrapper h3 a:after {
    content: none;
}

.section-page-content > .wrapper a:not(.btn-ld-default) {
    text-decoration: none;
    position: relative;
    color: var(--ld-dark);
}

.section-page-content > .wrapper a:not(.btn-ld-default)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.section-page-content > .wrapper a:not(.btn-ld-default):hover::after {
    background-color: transparent;
}

.section-page-content > .wrapper article ul {
    margin-left: 0;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** single: resources
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section-resource-content .wrapper {
    max-width: 630px;
}

.section-resource-content article .ld-post-date {
    font-size: 12px;
    letter-spacing: 0.16em;
}

.section-resource-content article h1 {
    font-size: 80px;
    line-height: 80%;
}

.section-resource-content article .entry-content {
    position: relative;
}

.section-resource-content article .entry-content .wp-block-image {
    margin-bottom: 2rem;
}

.section-resource-content article .entry-content img {
    max-width: 294px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.section-resource-content > .wrapper a:not(.btn-ld-default) {
    text-decoration: none;
    position: relative;
    color: var(--ld-dark);
}

.section-resource-content > .wrapper a:not(.btn-ld-default)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.section-resource-content > .wrapper a:not(.btn-ld-default):hover::after {
    background-color: transparent;
}

.section-resource-content article .entry-content .ld-post-sharing {
    position: absolute;
    left: -100px;
    top: 0px;
    gap: 12px;
}

.section-resource-content article .entry-content .ld-post-sharing a {
    width: 40px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--ld-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.section-resource-content article .entry-content .ld-post-sharing a::after {
    display: none;
}

.section-resource-content article .entry-content .ld-post-sharing a:hover {
    background-color: var(--ld-dark);
    color: var(--ld-white);
}

.section-resource-content article .entry-content .ld-post-sharing a:hover::after {
    display: none;
}

.section-resource-content article .entry-content ul {
    margin-left: 0;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** page: news
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.news-listing__hero-section .wrapper,
.section-news-listing-content .wrapper {
    max-width: 1010px;
}
.news-listing__hero-section h1 {
    font-size: 80px;
}

.news-listing__hero-section a {
    position: relative;
    text-decoration: none;
    color: var(--ld-dark);
}

.news-listing__hero-section a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.news-listing__single {
    max-width: 590px;
    text-decoration: none;
    display: block;
}

.news-listing__single-inner {
    gap: 12px;
}

.news-listing__single .ld-post-date {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.news-listing__single:hover h3 {
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-listing__single:hover h3 {
    opacity: 0.8;
}
/* pagination */
.new-pagination {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.new-pagination a.page-numbers,
.new-pagination .current.page-numbers {
    background-color: var(--ld-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ld-white);
    padding: .5rem 1rem;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    transition: none;
    font-family: var(--ld-barlow);
}

.new-pagination a.page-numbers:after,
.new-pagination .current.page-numbers:after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
}
.new-pagination a.page-numbers:hover,
.new-pagination .current.page-numbers:hover {
    background-color: var(--ld-coral);
}
.new-pagination a.page-numbers:hover:after,
.new-pagination .current.page-numbers:hover:after {
    border: 1px solid var(--ld-coral);
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** single: news
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.section-news-content .wrapper {
    max-width: 840px;
}

.section-news-content .wrapper .entry-content {
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}

.section-news-content article .ld-post-date {
    font-size: 12px;
    letter-spacing: 0.16em;
}

.section-news-content article h1 {
    font-size: 80px;
    line-height: 110%;
}

.section-news-content .ld-news-custom-meta {
    max-width: 590px;
    margin: 0 auto;
}

.section-news-content .ld-news-custom-meta span.date, 
.section-news-content .press-contact .email {
    font-weight: 400;
    color: var(--ld-dark);
    position: relative;
}

.section-news-content .press-contact .email::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.section-news-content .press-contact .email:hover::after {
    background-color: transparent;
}

.section-news-content article .entry-content {
    position: relative;
}

.section-news-content article .entry-content .wp-block-image {
    margin-bottom: 2rem;
}

.section-news-content article .entry-content img {
    max-width: 294px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.section-news-content > .wrapper a:not(.btn-ld-default) {
    text-decoration: none;
    position: relative;
    color: var(--ld-dark);
}

.section-news-content > .wrapper a:not(.btn-ld-default)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.section-news-content > .wrapper a:not(.btn-ld-default):hover::after {
    background-color: transparent;
}

.section-news-content article .entry-content .ld-post-sharing {
    position: absolute;
    left: -100px;
    top: 0px;
    gap: 12px;
}

.section-news-content article .entry-content .ld-post-sharing a {
    width: 40px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--ld-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.section-news-content article .entry-content .ld-post-sharing a::after {
    display: none;
}

.section-news-content article .entry-content .ld-post-sharing a:hover {
    background-color: var(--ld-dark);
    color: var(--ld-white);
}

.section-news-content article .entry-content .ld-post-sharing a:hover::after {
    display: none;
}

.section-news-content article .entry-content ul {
    margin-left: 0;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** page: resources aka newsletter
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.newsletter-listing__hero-section h1 {
    font-size: 80px;
}

.newsletter-listing__hero-section a {
    position: relative;
    text-decoration: none;
    color: var(--ld-dark);
}

.newsletter-listing__hero-section a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.section-newsletter-listing-content .wrapper .dp-ajax-item-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.newsletter-listing__single {
    text-decoration: none;
    display: block;
    border: 1px solid #ddd;
    transition: all 0.4s ease;
    padding: 40px;
    position: relative;
}

.newsletter-listing__single::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    z-index: 1;
    height: 4px;
    background-color: var(--ld-yellow);
    transition: width 0.4s ease;
}

.newsletter-listing__single-inner {
    gap: 12px;
}

.newsletter-listing__single .ld-post-date {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.newsletter-listing__single:hover {
    box-shadow: inset 0 0 0 1px #dddddd, 0 15px 30px rgba(0,0,0,0.15);
}

.newsletter-listing__single:hover::after {
    width: 100%;
}

.newsletter-listing__single:hover h3 {
    transition: all 0.3s ease;
    text-decoration: none;
}

.newsletter-listing__single:hover h3 {
    opacity: 0.8;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** page: actions
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.page-template-page-actions .unrig__take-action-section {
    background-color: var(--ld-white) !important;
}

.page-template-page-actions .unrig__take-action-section .wrapper {
    width: 100%;
}

.page-template-page-actions .unrig__take-action-section h2 {
    display: none;
}

.page-template-page-actions .unrig__take-action-section .unrig__take-action-item h3 {
    min-height: unset;
}

.page-template-page-actions .unrig__take-action-section .unrig__take-action-item-content {
    border: 1px solid #ddd;
    border-top: none;
    padding: 30px;
}






/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** page: actions - sign up
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.page-template-page-sign-up header#masthead {
    display: none;
}

.page-template-page-sign-up .wrapper {
    max-width: 1220px;
}

.page-template-page-sign-up .section-action-signup-page-header {
    position: relative;
}

.page-template-page-sign-up .section-action-signup-page-header::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: block;
    background-color: var(--ld-white);
}

.page-template-page-sign-up .logo-wrapper a img {
    max-height: 75px;
    width: auto;
}

.page-template-page-sign-up .section-action-signup-page {
    position: relative;
}

.page-template-page-sign-up .section-action-signup-page::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: block;
    background-color: var(--ld-white);
}

.page-template-page-sign-up .left {
    padding-right: 80px;
    gap: 24px;
    width: 50%;
}

.page-template-page-sign-up .left .h3 {
    font-size: 32px;
}

.page-template-page-sign-up .left img {
    width: 100%;
}

.page-template-page-sign-up .right {
    padding-left: 80px;
    width: 50%;
    position: relative;
    z-index: 1;
}

.section-news-content > .wrapper a:not(.btn-ld-default)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.section-news-content > .wrapper a:not(.btn-ld-default):hover::after {
    background-color: transparent;
}

.page-template-page-sign-up .section-action-signup-page a {
    position: relative;
    text-decoration: none;
    color: var(--ld-dark);
}

.page-template-page-sign-up .section-action-signup-page a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-dark);
    transition: all 0.3s ease-out;
}

.page-template-page-sign-up .section-action-signup-page a:hover::after {
    background-color: transparent;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** section: newsletter
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.unrig__newsletter-wrapper {
    width: 40%;
}

.unrig__newsletter-wrapper .ginput_container_address {
    width: 100% !important;
}

.unrig__newsletter-wrapper .ginput_container_address .address_zip {
    width: 100%;
    padding: 0;
    display: block;
    margin-left: 6px;
}

.unrig__newsletter-wrapper input[type="text"], 
.unrig__newsletter-wrapper input[type="email"] {
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--ld-dark) !important;
    padding-left: 0 !important;
    font-size: 16px !important;
}

.unrig__newsletter-wrapper .gform-footer {
    position: relative;
}

.unrig__newsletter-wrapper .gform-footer::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 48px;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
    z-index: 1;
}

.unrig__newsletter-wrapper #gform_submit_button_1 {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-left: 0 !important;
    position: relative;
    z-index: 3;
}

.unrig__newsletter-wrapper .gform-footer:hover #gform_submit_button_1 {
    background-color: var(--ld-yellow) !important;
    color: var(--ld-dark) !important;
}

.unrig__newsletter-wrapper #gform_submit_button_1:hover::after, 
.unrig__newsletter-wrapper .gform-footer:hover::after {
    border-color: var(--ld-yellow) !important;
    background-color: transparent !important;
}







/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** section: campaigns
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.unrig__campaigns-wrapper {
    width: 100%;
}

.unrig__campaigns-item {
    position: relative;
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: 353px;
}
body.home .unrig__campaigns-item {
    max-width: unset;
}

.unrig__campaigns-item::after {
    content: "";
    position: absolute;
    left: -11px;
    top: 19px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 4px solid var(--ld-dark);
}

.unrig__campaigns-item.unrig__campaigns-item-blank {
    max-width: 300px;
}

.unrig__campaigns-item.unrig__campaigns-item-blank::after {
    display: none;
}

.unrig__campaigns-item-inner {
    border: 4px solid var(--ld-dark);
    padding: 40px;
    gap: 20px;
    position: relative;
    z-index: 10;
    min-height: 380px;
    overflow: hidden;
}

.unrig__campaigns-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.unrig__campaigns-item:hover img {
    transform: scale(1.15);
}

.unrig__campaigns-item:hover .btn-ld-default {
    background-color: var(--ld-yellow);
    color: var(--ld-dark);
}

.unrig__campaigns-item:hover .btn-ld-default::after {
    border-color: var(--ld-yellow);
}

.unrig__campaigns-item .unrig__campaigns-item-desc {
    font-size: 18px;
    color: var(--ld-white);
    position: relative;
    z-index: 2;
}

.unrig__campaigns-item .btn-ld-default {
    font-size: 13px;
}
.unrig__campaigns-wrapper .owl-carousel .owl-stage-outer {
    overflow: visible !important;
}
.unrig__campaigns-wrapper.in-view {
    animation-name: bannerhd;
    animation-duration: 1s;
}

.unrig__campaigns-section {
    overflow: hidden;
}
.unrig__campaigns-wrapper .owl-carousel, 
.unrig__campaigns-wrapper .owl-carousel .owl-item,
.unrig__campaigns-section .wrapper {
    position: static;
}

.unrig__campaigns-wrapper .owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--ld-white) !important;
    color: var(--ld-dark) !important;
    border-radius: 0 !important;
    position: absolute;
    left: 0;
    top: calc(50% - 25px);
    transition: opacity 0.4s ease;
}

.unrig__campaigns-wrapper .owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 0;;
}

.unrig__campaigns-wrapper .owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
}

.unrig__campaigns-wrapper .owl-carousel .owl-nav button:not(.disabled):hover {
    opacity: 0.75;
}







/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** section: follow us
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.dp__follow-us-section {
    border-top: 5px solid var(--ld-dark)
}

.dp__follow-us-wrapper > div {
    gap: 20px;
}

.dp__follow-us-wrapper > div .btn-ld-default {
    width: calc(25% - 15px);
}

.dp__follow-us-wrapper > div .btn-ld-default:hover {
    color: var(--ld-dark);
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** section: take action
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.unrig__take-action-wrapper {
    width: 100%;
}

.unrig__take-action-listing {
    gap: 40px;
}

.unrig__take-action-item {
    position: relative;
    width: calc(33% - 26px);
}

.unrig__take-action-item-inner {
    gap: 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.unrig__take-action-item-inner::before {
    content: "";
    display: block;
    width: 0%;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--ld-yellow);
    transition: width 0.4s ease;
    z-index: 2;
}

.unrig__take-action-item:hover .unrig__take-action-item-inner::before {
    width: 100%;
}

.unrig__take-action-item .img-outer {
    height: 240px;
    overflow: hidden;
}

.unrig__take-action-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.unrig__take-action-item:hover img {
    transform: scale(1.15);
}

.unrig__take-action-item-content {
    background-color: var(--ld-white);
    padding: 40px;
}

.unrig__take-action-item:hover .btn-ld-default {
    background-color: var(--ld-yellow);
    color: var(--ld-dark);
}

.unrig__take-action-item:hover .btn-ld-default::after {
    border-color: var(--ld-yellow);
}

.unrig__take-action-item h3 {
    position: relative;
    z-index: 2;
    min-height: 94px;
}

.unrig__take-action-item .btn-ld-default {
    font-size: 13px;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** section: resources
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.unrig__resources-wrapper {
    width: 100%;
}

.unrig__resources-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
}

.unrig__resources-item {
    position: relative;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.unrig__resources-item::after {
    content: "";
    position: absolute;
    left: -11px;
    top: 19px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 4px solid var(--ld-dark);
}

.unrig__resources-item.unrig__resources-item-blank::after {
    display: none;
}

.unrig__resources-item-inner {
    border: 4px solid var(--ld-dark);
    padding: 40px 35px;
    gap: 20px;
    position: relative;
    z-index: 10;
    /* min-height: 380px; */
    overflow: hidden;
    aspect-ratio: 385 / 480;
}

.unrig__resources-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--x, 50%) var(--y, 50%);
    object-position: top;
    transition: transform 0.6s ease;
}

.unrig__resources-item:hover img {
    transform: scale(1.05);
}

.unrig__resources-item .btn-ld-default {
    width: 120px;
    padding: 15px 5px;
}

.unrig__resources-item:hover .btn-ld-default {
    background-color: var(--ld-yellow);
    color: var(--ld-dark);
}

.unrig__resources-item:hover .btn-ld-default::after {
    border-color: var(--ld-yellow);
}

.unrig__resources-item .btn-ld-default {
    font-size: 13px;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** tariff tracking
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
body.page-id-403 .section-page-content > .wrapper {
    max-width: 1100px;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** footer
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.site-footer .footer-logo img {
    max-height: 75px;
    width: auto;
}

.site-footer .footer-social {
    gap: 15px;
    margin: 24px auto;
}

.site-footer .footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ld-white);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
}

.site-footer .footer-social a:hover {
    background-color: var(--ld-white);
    color: var(--ld-dark);
}

.site-footer .footer-social a:hover i {
    color: var(--ld-dark);
}

.site-footer .footer-social a i {
    font-size: 20px;
    color: var(--ld-white);
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer a:visited {
    color: var(--ld-white);
}

.site-footer .footer-emails {
    margin-top: 24px;
    gap: 6px;
}

.site-footer .footer-emails a, 
.site-footer .footer-link a, 
.site-footer .site-info a {
    text-decoration: none;
    font-size: 14px;
    color: var(--ld-white);
    position: relative;
}

.site-footer .footer-emails a::after, 
.site-footer .footer-link a::after, 
.site-footer .site-info a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    height: 1px;
    width: 100%;
    background-color: var(--ld-white);
    transition: all 0.3s ease-out;
}

.site-footer .footer-emails a {
    line-height: 1.2;
}

.site-footer .footer-emails a:hover::after, 
.site-footer .footer-link a:hover::after, 
.site-footer .site-info a:hover::after {
    background-color: transparent;
}

.site-footer .footer-copyright, 
.site-footer .site-info {
    font-size: 14px;
    line-height: 150%;
    margin-top: 3px;
}




/* Take action */
.embed-from-wrapper header.at-title,
.embed-from-wrapper h2 {
    display: none;
}
.embed-from-wrapper label {
    font-size: 13px;
    font-weight: 500 !important;
    line-height: 1.15;
    text-transform: uppercase;
    margin-top: 20px;
}

.embed-from-wrapper  input {
    margin-top: 10px !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    padding: 5px 10px !important;
    height: 45px !important;
}

.embed-from-wrapper  input[type='submit'] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 210px;
    height: auto;
    min-height: 50px;
    padding: 10px 30px !important;
    border: none;
    border-radius: 25px !important;
    box-shadow: inset 0 0 0 .5px var(--ld-dark-gray);
    background: var(--ld-dark-gray);
    background-color: var(--ld-dark-gray) !important;
    color: #fff;
    font: 700 16px / 20px var(--ld-barlow);
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    opacity: 1;
    transition: all .3s linear;
    font-weight: 700 !important;
}
.embed-from-wrapper input[type='submit']:hover {
    background: var(--ld-yellow);
    box-shadow: inset 0 0 0 .5px var(--ld-yellow);
    color: var(--ld-dark) !important;
    background-color: var(--ld-yellow) !important;
}

.embed-from-wrapper .ngp-form .at-form:not([id^=NVContributionForm]) input[type="checkbox"]+span:before {
    left: auto;
    border-radius: 0;
    float: left;
    content: '';
    width: 20px;
    height: 20px;
    margin: -4px 10px 0 -30px;
    border: 1px solid #ced4da;
    background: #fff;
    background-clip: content-box;
    font: 12px / 18px Icons;
    vertical-align: top;
    text-align: center;
}
.embed-from-wrapper input[type=checkbox]:checked+span:after {
    left: 2px;
    top: 2px;
    color: var(--ld-dark) !important;
}

.embed-from-wrapper #mc_embed_signup {
    width: 100% !important;
    max-width: 600px;
}

/* News List  */
.df-newsletter-listing {
    gap: 40px;
}
.df-news-btn a {
    text-align: center;
    color: var(--ld-dark) !important;
    text-underline-offset: 2px;
    font-weight: 600;
    text-decoration-thickness: 1px;
}

/* Default Page */
.without-banner h1 {
    font-size: 80px;
}

/* Animation */
/* Home */
.hero-section {
    animation-name: heroimg;
    animation-duration: 2s;
}
.hero-section-content {
    animation-name: bannerhd;
    animation-duration: 1s;
    animation-delay: .2s;
}
/* Campain page */
.dp__hero-section {
    overflow: hidden;
}

.dp__hero-section.in-view img {
    animation-name: bannerimg;
    animation-duration: 2s;
}

.dp__hero-section h1 {
    opacity: 0;
}
.dp__hero-section.in-view h1 {
    animation-name: bannerhd;
    animation-duration: 1s;
    animation-delay: 2s;
}
.dp__hero-section.hd-visible h1 {
    opacity: 1 !important;
}

/* News page */
.post-type-archive-news h1 {
    animation-name: bannerhd;
    animation-duration: 1s;
}
.section-news-listing-content,
.newsletter-listing__hero-section ,
.news-listing__hero-section ,
.section-newsletter-listing-content {
    animation-name: bannerhd;
    animation-duration: 1s;
}






/* The Costs of Tariffs */
.cost_of_tarrifs__grid-items {
    gap: 2rem;
}

.cost_of_tarrifs__grid-items .wp-block-group {
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 22px #eee;
    border-radius: 5px;
}

.cost_of_tarrifs__grid-items .wp-block-group i {
    color: #f16941;
    font-size: 30px;
    padding: 5px;
    width: 60px;
    height: 60px;
    background-color: rgb(241 105 65 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.cost_of_tarrifs__grid-items .wp-block-group h4 {
    font-size: 20px;
    line-height: 1.3;
    min-height: 80px;
}

.cost_of_tarrifs__grid-items .wp-block-group p {
    font-size: 16px;
    margin-bottom: 0;
}

.cost_of_tarrifs__gform_title {
    max-width: 450px;
    margin: 0 auto 30px;
}

.cost_of_tarrifs__gforms {
    /* max-width: 680px; */
    margin: 40px 0 0;
    padding: 20px 30px 60px;
    background-color: rgb(232 234 88 / 10%);
    border: 1px solid var(--ld-yellow);
}

.cost_of_tarrifs__gforms h2, 
.cost_of_tarrifs__gforms p {
    text-align: center;
}

.cost_of_tarrifs__gforms .gform_wrapper {
    max-width: 600px;
    margin: 20px auto 0;
}

.cost_of_tarrifs__gforms input#gform_submit_button_3 {
    position: relative;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--ld-barlow);
    color: var(--ld-white);
    padding: 15px 40px;
    background-color: var(--ld-dark);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 5px;
    transition: none;
    justify-content: center;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-left: 0 !important;
    position: relative;
    z-index: 3;
    width: 100%;
}

.cost_of_tarrifs__gforms .gform-footer:hover input#gform_submit_button_3 {
	background-color: var(--ld-coral);
}

.cost_of_tarrifs__gforms input#gform_submit_button_3::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
}

.cost_of_tarrifs__gforms .gform-footer {
    position: relative;
}

.cost_of_tarrifs__gforms .gform-footer::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 48px;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
    z-index: 1;
}

.cost_of_tarrifs__gforms legend.gfield_label, 
.cost_of_tarrifs__gforms label.gfield_label, 
.cost_of_tarrifs__gforms label.gform-field-label--type-sub {
    font-weight: bold;
    color: var(--ld-dark);
}

.cost_of_tarrifs__gforms .gform-footer:hover::after {
    border: 1px solid var(--ld-coral);
}

figure.wp-block-pullquote.cost_of_tarrifs__pullquote {
    padding: 2em;
}

figure.wp-block-table.cost_of_tarrifs__table a {
    text-decoration: underline !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 0.05rem !important;
}

figure.wp-block-table.cost_of_tarrifs__table a::after {
    display: none !important;
}

figure.wp-block-table.cost_of_tarrifs__table a:hover {
    text-decoration: none !important;
}

.cost_of_tarrifs__table table > tbody > tr:not(:first-child) > td:nth-child(3), 
.cost_of_tarrifs__table table > tbody > tr:not(:first-child) td:first-child {
    background-color: #f2f2f2;
}

.cost_of_tarrifs__table table > tbody > tr:first-child td {
    background-color: #ccc;
}


/*
**
** Template: No tax
*/
.page-template-page-no-tax .entry-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-template-page-no-tax .entry-content h2 {
    font-size: 75px;
    line-height: 106%;
}

.page-template-page-no-tax .entry-content .desc {
    font-size: 18px;
    line-height: 135%;
}

.page-template-page-no-tax .entry-content .notax-cta, 
.page-template-page-no-tax .hero-sec-form-wrapper .notax-cta {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-template-page-no-tax .entry-content .notax-cta:hover, 
.page-template-page-no-tax .hero-sec-form-wrapper .notax-cta:hover {
    background-color: var(--ld-dark);
    color: var(--ld-white);
}

.page-template-page-no-tax .entry-content .notax-cta .alt-text, 
.page-template-page-no-tax .hero-sec-form-wrapper .notax-cta .alt-text {
    display: none;
}

.page-template-page-no-tax .entry-content p:empty, 
.page-template-page-no-tax .entry-content div:empty {
    display: none;
}


/** Congress Member */
.page-template-page-congress-member .bg-ld-off-black {
    background-color: var(--ld-dark);
}

.page-template-page-congress-member .bg-ld-blue {
    background-color: var(--ld-blue);
}

.page-template-page-congress-member .bg-ld-yellow {
    background-color: var(--ld-yellow);
}

.page-template-page-congress-member .bg-ld-orange {
    background-color: var(--ld-coral);
}

.page-template-page-congress-member .bg-ld-olive {
    background-color: var(--ld-dark-gray);
}

.page-template-page-congress-member .bg-ld-off-black *,
.page-template-page-congress-member .bg-ld-olive *,
.page-template-page-congress-member .bg-ld-blue *,
.page-template-page-congress-member .bg-ld-orange * {
    color: #ffffff;
}

.unrig-cm__header .wrapper {
    max-width: 1060px;
    padding: 50px 20px;
}

.unrig-cm__header .wrapper h1 {
    font-size: 70px;
    font-weight: 800;
}

.page-template-page-congress-member h1 p,
.page-template-page-congress-member h2 p {
    margin: 0;
    font-weight: 800;
}


.unrig-cm__text-block .wrapper {
    max-width: 808px;
    padding: 50px 20px;
}

.unrig-cm__text-block.unrig-cm__text-block-4 .wrapper {
    padding-top: 0;
}

.unrig-cm__text-block .wrapper h2 {
    font-size: 45px;
    font-weight: 800;
}

.page-template-page-congress-member section.unrig-cm__text-block h2 a {
    color: rgba(35, 31, 33, 1);
}

.unrig-cm__header .wrapper h2 p {
    margin: 0;
    font-weight: 800;
}

.unrig-cm__text-block .wrapper .desc {
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 150%;
}


.unrig-cm__embed-code .wrapper {
    max-width: 894px;
    padding: 25px 20px 50px;
}

.unrig-cm__embed-code .wrapper .embed-code {
    margin: 1rem auto 0;
}

.unrig-cm__embed-code .wrapper .embed-code iframe {
    width: 100% !important;
    aspect-ratio: 1 / 0.565;
    height: unset;
}


.unrig-cm__cta-section .wrapper {
    padding: 80px 20px;
    max-width: 1110px;
}

.unrig-cm__cta-section .wrapper h2.h1 {
    font-size: 70px;
}

.unrig-cm__cta-section .wrapper h2.h1 p {
    line-height: 115%;
}

.unrig-cm__cta-section .wrapper .btn-ld-default {
    margin: 40px auto 0;
    max-width: 400px;
    width: 100%;
}

.unrig-cm__cta-section .wrapper .btn-ld-default:hover {
    background-color: var(--ld-coral) !important;
    color: var(--ld-white);
}

.unrig-cm__cta-section .wrapper .btn-ld-default:hover::after {
    border-color: var(--ld-coral) !important;
}


.unrig-cm__form-section .wrapper {
    padding: 50px 20px;
}

.unrig-cm__form-section .wrapper .form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--ld-dark);
    border-radius: 15px;
    padding: 40px;
}

.unrig-cm__form-section .wrapper .form-wrapper  h3.form-heading {
    font-size: 30px;
    margin: 0;
}

.unrig-cm__form-section .wrapper .form-wrapper input[type="text"],
.unrig-cm__form-section .wrapper .form-wrapper input[type="tel"], 
.unrig-cm__form-section .wrapper .form-wrapper select,  
.unrig-cm__form-section .wrapper .form-wrapper input[type="email"] {
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--ld-dark) !important;
    padding-left: 0 !important;
    font-size: 16px !important;
}

.unrig-cm__form-section .wrapper .form-wrapper .gform-footer {
    position: relative;
}

.unrig-cm__form-section .wrapper .form-wrapper #gform_submit_button_4 {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-left: 0 !important;
    position: relative;
    z-index: 3;
    position: relative;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--ld-barlow);
    color: var(--ld-white);
    padding: 15px 40px;
    background-color: var(--ld-dark);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 5px;
    transition: none;
    justify-content: center;
    width: 100% !important;
}

.unrig-cm__form-section .wrapper .form-wrapper .gform-footer::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
}

.unrig-cm__form-section .wrapper .form-wrapper .gform-footer:hover::after {
    border-color: var(--ld-coral);
}

.unrig-cm__form-section .wrapper .form-wrapper .gform-footer:hover #gform_submit_button_4 {
    background-color: var(--ld-coral);
}

.unrig-cm__form-section .wrapper .form-wrapper .gf-notice-text {
    font-size: 12px;
    line-height: 120%;
}

.unrig-cm__form-section .wrapper .form-wrapper span.ginput_full.address_line_1 {
    margin-bottom: 20px;
}



/* password protected form */
form.post-password-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 50px 15px;
}

.post-password-form input[name="post_password"] {
    border-radius: 0;
    height: 42px;
    border-color: #000;
    vertical-align: middle;
}

.post-password-form input[type="submit"] {
    font-size: 13px;
    font-weight: 600;
    color: var(--ld-dark);
    background-color: var(--ld-coral);
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    height: 42px;
    vertical-align: middle;
	cursor: pointer;
}



/* Page Template : Page */
.secondary-banner {
    padding: 2rem 1rem 0;
}
.secondary-banner .img {
    max-width:30vw;
    width: 100%;
}
.sec-banner-cons h1 {
    font-size: 6.5vw;
    letter-spacing: -0.06em;
    line-height: 1;
}
.sec-banner-cons h2 {
    letter-spacing: -0.06em;
    font-size: 3vw;
}
.full-width-img {
    width: 100%;
}

/* image and Content */
.section-img-con .wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.section-img-con .img {
    border-radius: 4px;
}

/* 3 Col Section */
.new-page-col-list .home-3col-item  {
    position: relative;
}
.new-page-col-list .col-inner {
    border: 4px solid var(--ld-dark);
    padding: 2rem 1rem;
    position: relative;
    background-color: var(--ld-alice-blue);
    width: 100%;
    height: 100%;
}
.new-page-col-list .home-3col-item:before {
    content: "";
    position: absolute;
    left: -11px;
    top: 19px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 4px solid var(--ld-dark);
}


@media screen and (max-width: 768px){
    .unrig-cm__header .wrapper h1, 
    .unrig-cm__cta-section .wrapper h2.h1 p {
        font-size: 36px;
    }

    .unrig-cm__text-block .wrapper h2,
    .unrig-cm__embed-code .wrapper h2 {
        font-size: 28px;
    }

    .unrig-cm__form-section .wrapper .form-wrapper {
        padding: 20px;
    }

    .unrig-cm__form-section .wrapper .form-wrapper  h3.gform-heading {
        font-size: 20px;
        margin: 0;
    }

    .unrig-cm__form-section .wrapper .form-wrapper #gform_submit_button_4 {
        padding: 15px;
    }

    /* Page Template : Page */
    .secondary-banner {
        padding: 20px 20px 40px;
    }
    .secondary-banner .img {
        max-width: 300px;
    }
    .sec-banner-cons h1 {
        font-size: 50px;
        letter-spacing: -0.02em;
        text-align: center;
    }
    .sec-banner-cons h2 {
        letter-spacing: -0.02em;
        font-size: 22px;
        text-align: center;
        margin: 10px auto;
    }

    /* image and Content */
    .section-img-con .wrapper {
        grid-template-columns: 100%;
        gap: 1rem;
    }
    .section-img-con .content {
        order: 2;
    }

}


@media screen and (max-width: 1400px) {
    .page-template-page-no-tax .entry-content .notax-cta, 
    .page-template-page-no-tax .hero-sec-form-wrapper .notax-cta {
        max-width: 94%;
    }
}

@media screen and (max-width: 1340px) {
    .page-template-page-no-tax .entry-content .notax-cta, 
    .page-template-page-no-tax .hero-sec-form-wrapper .notax-cta {
        font-size: 18px;
    }
}


@media screen and (max-width: 719px) {
    .page-template-page-no-tax .entry-content .notax-cta .org-text, 
    .page-template-page-no-tax .hero-sec-form-wrapper .notax-cta .org-text {
        display: none;
    }

    .page-template-page-no-tax .entry-content .notax-cta .alt-text, 
    .page-template-page-no-tax .hero-sec-form-wrapper .notax-cta .alt-text {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .page-template-page-no-tax .entry-content .notax-cta, 
    .page-template-page-no-tax .hero-sec-form-wrapper .notax-cta {
        max-width: 100%;
    }
}





@media screen and (max-width: 600px){
	.cost_of_tarrifs__grid-items {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}
	
	.cost_of_tarrifs__grid-items .wp-block-group h4 {
		min-height: unset;
	}
}





@keyframes bannerimg {
    from {
        transform: scale(2);
    }
    to {
        transform: scale(1);
    }
}
@keyframes bannerhd {
    from {
        transform: translate(0, 20%);
        opacity: 0;
    }
    to {
        transform: translate(0);
        opacity: 1;
    }
}

@keyframes heroimg {
    from {
        background-size: auto 120%;
    }
    to {
        background-size: auto 100%;
    }
}

/* Header */
#page > *:not(#mobile-menu) {
    transition: all .3s ease;
}

#mobile-menu .mb-nav-outer {
    background: var(--ld-white);
    height: 100vh;
    transform: translateX(100%);
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 9;
    right: 0;
}
.mb-nav-inner {
    padding: 30px;
}
#mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
#mobile-menu > li:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top-width: 0;
}
#mobile-menu > li {
    border-top: 1px solid #ddd;
    font-size: 16px;
}
#mobile-menu > li a {
    color: var(--ld-dark) !important;
    text-decoration: unset;
    padding: 15px 0;
    display: block;
    line-height: 1;
}

/* menu btn */
ul#mobile-menu li.ld-nav-cta a {
    font-size: 13px;
    font-weight: 600;
    color: var(--ld-white) !important;
    background-color: var(--ld-dark);
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: background-color .3s ease;
}
ul#mobile-menu li.ld-nav-cta a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--ld-dark);
    left: -5px;
    top: 5px;
}
ul#mobile-menu li.ld-nav-cta a:hover {
    background-color: var(--ld-yellow);
    color: var(--ld-dark) !important;
}
ul#mobile-menu li.ld-nav-cta a:hover::after {
    border: 1px solid var(--ld-yellow);
}
/* sub */ 
#mobile-menu ul {
    padding: 0;
    list-style: none;
    text-decoration: none;
    display: none;
}
#mobile-menu .menu-item-has-children {
    position: relative;
}
#mobile-menu .menu-item-has-children .submenu-toggle {
    position: absolute;
    top: 10px;
    right: 0;
    width: 30px;
    height: 20px;
}
.submenu-toggle img {
    width: 20px;
    object-fit: contain;
}

/* Toogle Menu */
.toggle-menu {
    display: none;
    cursor: pointer;
}
.toggle-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.toggle-menu-inner span {
    width: 20px;
    height: 3px;
    background-color: var(--ld-white);
}

.is-nav-active .toggle-menu .toggle-menu-inner span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.is-nav-active .toggle-menu .toggle-menu-inner span:nth-child(2) {
    opacity: 0;
}

.is-nav-active .toggle-menu .toggle-menu-inner span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.grecaptcha-badge { 
    visibility: hidden !important;
}



/* Password protected  */
body .post-password-required {
	padding: 3rem 20px !important;
}
.post-password-required form {
	text-align: center;
}
.post-password-required form label {
	font-weight: 600;
}
.post-password-required form input[type="password"] {
	border: 1px solid #000;
    padding: 10px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--ld-barlow);
    display: block;
    margin: 10px auto;
    max-width: 400px;
    width: 100%;
    font-weight: 500;
}
.post-password-required form input[type="submit"] {
	position: relative;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--ld-barlow);
    color: var(--ld-white);
    padding: 15px 40px;
    background-color: var(--ld-dark);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: none;
    justify-content: center;
	cursor: pointer;
	max-width: 400px;
    width: 100%;
}

.post-password-required form input[type="submit"]:hover {
	background-color: var(--ld-coral);
	color: var(--ld-dark);
}


/* Research Search */
.research-search-form {
    max-width: 500px;
    margin: 10px auto 30px;
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 95px;
}
.research-search-form input {
    padding: 10px 20px;
    border: 1px solid var(--ld-dark);
    border-radius: 0;
    color: var(--ld-dark);
    font-family: var(--ld-barlow);
    font-size: 16px;
    font-weight: 500;
    outline: 0 !important;
}
.research-search-form input::placeholder {
    color: var(--ld-dark-gray);
    font-weight: 400;
}
.research-search-form button {
    font-size: 16px;
    font-weight: 600;
    color: var(--ld-white);
    background-color: var(--ld-dark);
    font-family: var(--ld-barlow);
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-radius: 0;
    padding: 5px 10px 9px;
    border: 0;
    text-transform: uppercase;
    min-height: 46px;
}
.research-search-form button:hover {
    color: var(--ld-dark);
    background-color: var(--ld-coral);
}
.research-search-form button:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--ld-dark);
    transition: none;
    z-index: 1;
}
.research-search-form button:hover:after {
    border: 1px solid var(--ld-coral);
}


/* Responsive */


@media only screen and (max-width: 1279px) {
    /* Header */
    #masthead {
        z-index: 999;
        position: relative;
    }
    #masthead > div {
        padding: 0 20px;
        margin: 0 !important;
    }
    header#masthead .custom-logo-link img {
        height: 50px;
    }
    .menu-primary-menu-container {
        display: none;
    }
    .toggle-menu {
        display: block;
    }
    .is-nav-active #page > *:not(#mobile-menu) {
        transform: translateX(-300px);
    }
    body.is-nav-active #mobile-menu {
        display: block !important;
    }
    .mb-nav-overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: 8;
    }
    body.is-nav-active  #mobile-menu .mb-nav-outer {
        transform: translateX(0);
    }

    /* Campaign */
    .section.dp__follow-us-section {
        padding: 60px 0 0;
    }
    .page-template-page-corporate-price-gouging .section.hero-section {
        height: auto !important;
        overflow: hidden;
    }


    /* Footer  */
    .site-footer .footer-logo img {
        max-height: 150px;
    }


}

@media only screen and (max-width: 1023px) {
    /* Global */
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 38px;
    }
    .pt-5 {
        padding-top: 4rem;
    }
    .pb-5 {
        padding-bottom: 4rem;
    }
    .mb-5 {
        margin-bottom: 4rem;
    }
    .mt-5 {
        margin-top: 4rem;
    }


    /* HOme Banner */
    .section.hero-section .wrapper {
        padding: 0 !important;
    }
    

    /* News and details */
    .section-news-content .wrapper article .entry-header {
       padding: 0 20px;
    }
    .news-listing__hero-section h1,
    .section-news-content article h1,
    .newsletter-listing__hero-section h1,
    .without-banner h1 {
        font-size: 42px;
    }
    .section-news-content article .entry-content .ld-post-sharing {
        left: -50px;
    }
    .section-news-content .wrapper .entry-content,
    .section-news-content .ld-news-custom-meta {
        padding-left: 60px;
    }

    /* Resource */
    .section-newsletter-listing-content .wrapper .dp-ajax-item-listing {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .newsletter-listing__single {
        padding: 30px;
    }
    .ld-ajax-btn-wrapper {
        margin-top: 30px;
    }

    /* Campaign */
    .dp__follow-us-wrapper > div {
        flex-wrap: wrap;
    }
    .dp__follow-us-wrapper > div .btn-ld-default {
        width: calc(50% - 15px);
    }


    /* Action Page */
    .page-template-page-sign-up .section-action-signup-page {
        padding-bottom: 0;
    }
    .page-template-page-sign-up .section-action-signup-page-header {
        padding: 2rem 0;
    }
    .page-template-page-sign-up .logo-wrapper a img {
        max-height: 50px;
    }
    .page-template-page-sign-up .section-action-signup-page-header::after,
    .page-template-page-sign-up .section-action-signup-page::after {
        content: none;
    }
    .page-template-page-sign-up .wrapper {
        flex-wrap: wrap;
        width: 100%;
        padding: 0 !important;
    }
    .page-template-page-sign-up .left {
        width: 100%;
        max-width: 520px;
        justify-content: center;
        margin: 0 auto;
        padding-bottom: 1.5rem;
        padding: 0 20px 1.5rem;
    }
    .page-template-page-sign-up .section-action-signup-page-header > div {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .page-template-page-sign-up .right {
        width: 100%;
        background: #fff;
        padding: 4rem 0;
    }
    .page-template-page-sign-up .right .embed-from-wrapper {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /*  */
    .page-template-page-corporate-price-gouging section.hero-section .hero-section-content {
        padding-left: 0;
        z-index: 9;
    }

    /* Default Page */
    .df-newsletter-listing {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }





}

@media only screen and (max-width: 719px) {

    /* Global */
    p , body {
        font-size: 16px;
    }
    

    /* News + Details */
    .section-news-content article h1 {
        margin-bottom: 2rem;
    }
    .section-news-content .wrapper .entry-content {
        padding-left: 0;
    }
    .section-news-content .ld-news-custom-meta {
        padding-left: 0;
        font-size: 16px;
        text-align: center;
    }
    .section-news-content .wrapper article .entry-header {
        padding: 0;
    }
    .section-news-content article .entry-content .ld-post-sharing {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 30px;
    }

    /* Resource */
    .section-newsletter-listing-content .wrapper .dp-ajax-item-listing {
        grid-template-columns: 100%;
    }
    .section-newsletter-listing-content .ld-news-excerpt {
        font-size: 20px;
        line-height: 1.6;
    }


     /* Campaign */
    .dp__follow-us-wrapper > div .btn-ld-default {
        width: 100%;
    }


    /* Default Page */
    .df-newsletter-listing {
        grid-template-columns: 100%;
    }


    /* Footer  */
    .site-footer .footer-logo img {
        max-height: 100px;
    }
    .site-footer .footer-emails {
        flex-wrap: wrap;
    }
    .site-footer {
        padding-left: 10px;
        padding-right: 10px;
    }




}


@media only screen and (max-width: 500px) {
    /* Research Search */
    .research-search-form {
        grid-template-columns: 100%;
    }

}
