/** base **/
body, html {
    font-family: 'Jost', sans-serif;
    scroll-behavior: smooth;
    font-style: normal;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-to {
    left: 50%;
    transform: translateY(-100%);
    background: black;
    color: white;
    height: 30px;
    left: calc(100% / 2 - 95px);
    padding: 10px 25px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.25s;
    display: flex;
    align-items: center;
}

a.accessibleClass {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s ease;
    cursor: pointer;
    display: flex;
    z-index: 0;
    height: 24px;
    width: 40px;
    padding-right: 10px;
}
a.accessibleClass:where(:hover,:focus) img {
    transform: scale(1.2);
}

.skip-to:focus {
    transform: translateY(0%);
}

/** 404 **/
section.error-404.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4.5rem;
}
@media (max-width: 799px){
    section.error-404.not-found {
        flex-direction: column;
    }
}

/** defaults **/
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
input[type="text"], input[type="email"],
input[type="url"], input[type="password"],
input[type="search"], input[type="number"],
input[type="tel"], input[type="range"],
input[type="date"], input[type="month"],
input[type="week"], input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"], textarea {
    border-radius: 0;
    padding: 1rem;
    color: var(--forest-green);
}
input[type="search"] {
    margin-bottom: 1rem;
}

select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 45px;
    width: 100%;
    padding: 5px;
    border-radius: 0;
}
main {
    display: inherit;
    min-height: 100%;
}

.post, .page,
.page-content,
.entry-content,
.entry-summary {
    margin: 0;
}

b, strong {
    font-weight: 800;
}

@media (max-width: 799px){
    .entry-content > :is(h1,h2,h3,h4,p,code,.wp-block-buttons) {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (max-width: 599px){
    body.single .entry-content > * {
        padding-left: 0;
        padding-right: 0;
    }
}
button#back_to_top {
    display: none;
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    border: none;
    outline: none;
    background-color: rgba(0,0,0,0.85);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    color: white;
    cursor: pointer;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    font-weight: 700;
}
.arrow-root {
    display: flex;
    height: 30px;
}
svg#arrowBack {
    width: 38px;
    transform: rotate(180deg);
}
ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.entry-content ul {
    margin-block-start: 1rem;
    margin-block-end: 1rem;
}
form h3 {
    font-size: var(--heading_3);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray1);
}
form tr {
    width: 100%;
    display: flex;
    flex-direction: column;
}
form input {
    width: 100%;
    line-height: 2;
}
form td[colspan="2"] {
    display: flex;
    align-self: center;
    padding: 1rem 0;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}
form [type="checkbox"], form [type="radio"] {
    height: 18px;
}
form label {
    width: 100%;
    font-weight: 700;
}
form button, form input[type="button"], form input[type="reset"], form input[type="submit"] {
    background-color: var(--yellow-main);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black;
    border: 4px solid var(--yellow-main);
    border-radius: 0;
    padding: 1rem 1.5rem;
    transition: 0.25s ease;
}
form :is(button, input[type="button"], input[type="reset"], input[type="submit"]):is(:hover,:focus){
    background-color: black;
    cursor: pointer;
    color: white;
    border-color: black;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border-radius: 0;
    border-color: var(--cityBlue3);
    font-family: 'Jost', 'Proxima Nova', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border: 3px solid var(--cityBlue3);
}
button:where(:hover,:focus), input[type="button"]:where(:hover,:focus),
input[type="reset"]:where(:hover,:focus), input[type="submit"]:where(:hover,:focus) {
    background-color: var(--cityBlue1);
    border-color: var(--cityBlue3);
}

small {
    font-size: 70%;
    letter-spacing: 2px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin: 0 0 1rem;
    padding: 0;
    color: black;
    letter-spacing: 0.5px;
}

html :where(h2,h3,h4) a {
    color: inherit;
}

h1 {
    font-size: var(--heading_1);
    line-height: unset;
}
@media (max-width: 1023px){
    h1 { font-size: calc(var(--heading_1) - 1rem);}
}
@media (max-width: 799px){
    h1 {
        font-size: calc(var(--heading_1) - 1.25rem);
        line-height: 1.25;;
    }
}
h2 {
    letter-spacing: 2px;
    font-size: var(--h2);
}
@media (max-width: 799px){
    /*h2 {*/
    /*    font-size: calc(var(--heading_2) - 1rem);*/
    /*}*/
}

h3 {
    font-size: var(--h3);
    color: var(--yellow-main);
}

h4 {
    font-size: var(--h4);
}

.stronger {
    font-weight: 800;
}

.nolink, .nolink a {
    text-decoration: none!important;
}
.noLink, .noLink a,
.noLink:is(:hover,:focus,:active),
.noLink a:is(:hover,:focus,:active) {
    text-decoration: none!important;
    pointer-events: none;
}

a {
    color: black;
    text-decoration: none;
}

a:hover, a:focus, a:visited {
    color: black;
    text-decoration: underline;
}

a, a:visited {
    font-weight: 700;
    text-decoration: underline;
}
a:is(:hover,:focus,:active) {
    color: var(--gray1);
    outline: 0;
}

a:focus {
    outline: thin dotted;
}

nav a {
    color: black;
    text-decoration: none;
}

p, ul, ol, em {
    color: black;
    font-size: var(--body_text_2);
    font-weight: 600;
    margin-top: 0;
    line-height: 1.5;
    font-family: 'Jost', 'helvetica', sans-serif;
}
pre {
    font-family: 'Jost', 'helvetica', sans-serif;
}
ul li {
    color: black;
    font-size: var(--body_1);
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Jost', 'Proxima Nova', sans-serif;
}

ol li {
    list-style: disc;
}

li > ul, li > ol {
    margin: 0;
}

p {
    font-size: 1rem;
}
p.large {
    font-size: calc(var(--body_text_1 + 5px));
}
p.small {
    font-size: calc(var(--body_text_1 - 4px));
    line-height: 1.5;
}

dfn, cite, em, i {
    color: black;
}

.visuallyhidden, .sr-only {
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

@media (max-width: 799px){
    .mobile-hide {
        position: absolute!important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
    }
}

.btn {
    background-color: transparent;
    border: 2px solid transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.entry-content button.link {
    background: var(--yellow-main);
    padding: 0;
    min-width: 120px;
    text-transform: uppercase;
    display: flex;
}
.entry-content button.link a {
    padding: 1rem;
    width: 100%;
}
.entry-content button.link:where(:hover,:focus) {
    background: var(--forest-green);
    color: white;
}
.entry-content button.link:where(:hover,:focus) * {
    background: var(--forest-green);
    color: white;
}
.entry-content button.link a {
    text-decoration: none;
}
.entry-content button.link a:where(:hover,:focus) {
    color: white;
}
.entry-content button.glider-dot.active {
    background: var(--yellow-main);
}

.mb-0 { margin-bottom: 0; }
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }

.mt-0 { margin-top: 0px; }
.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }

.p0 { padding: 0!important; }
.p5 { padding: 5px!important; }
.p10 { padding: 10px!important; }
.p15 { padding: 15px!important; }
.p20 { padding: 20px!important; }
.p25 { padding: 25px!important; }
.p30 { padding: 30px!important; }
.p35 { padding: 35px!important; }
.p50 { padding: 50px!important; }

.offset-min-20 {
    transform: translateY(-20px);
}
.offset-min-20-margin {
    margin-top: -20px;
}

.clip.c1 {
    padding: 1.5rem 3.5rem 1rem 3.25rem;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

p.site-description {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin: 1rem 0;
}

.wp-block-image { margin: 0; }

/****************/
/** effects **/
/****************/
body:not(.wp-admin) .lazy,
body:not(.wp-admin) .lazy img {
    background-image: none;
    opacity: 0;
}
.lazyFade,
.lazyFade img {
    display: flex;
    -webkit-transition: all 0.75s ease-in;
    transition: all 0.75s ease-in;
    opacity: 1;
}

@media (min-width: 800px) {
    .fadeDown {
        position: relative;
        -webkit-animation: 0.5s ease-out fadeDown;
        -moz-animation: 0.5s ease-out fadeDown;
        animation: 0.5s ease-out fadeDown;
        animation-fill-mode: forwards;
    }
}

.fadeToBlack {
    filter: grayscale(0);
    -webkit-animation: 1.25s ease-in-out fadeToBlack;
    -moz-animation: 1.25s ease-in-out fadeToBlack;
    animation: 1.25s ease-in-out fadeToBlack;
    animation-delay: 2.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeDown {
    0% {
        transform: translateY(-10rem);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0.4em);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeToBlack {
    0% {
        filter: grayscale(0);
    }
    100% {
        filter: grayscale(1);
    }
}

@media (min-width: 1200px){
    .floating {
        -webkit-animation: floating 2s ease-out alternate infinite;
        -moz-animation: floating 2s ease-out alternate infinite;
        animation: floating 2s ease-out alternate infinite;
    }
}

.border-effect {
    border: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.border-shadow-img img {
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.zoom1 {
    transition: 0.15s ease-in-out;
    transform: scale(1);
}
.zoom1:is(:hover,:focus) {
    transform: scale(1.1);
}

figcaption a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/** containers **/
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}


@media (min-width: 1280px) { /** match root **/
    .container {
        max-width: 90%;
        /* padding-left: 1rem;
        padding-right: 1rem; */
    }
}

@media (min-width: 1701px) { /** match root **/
    .container {
        max-width: 1600px;
    }
}

.container-full {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container-narrow {
    width: 100%;
    max-width: 1199px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.container-narrowist {
    width: 100%;
    max-width: 850px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 800px) and (max-width: 1279px) {
    .container-narrow {
        max-width: 95%;
    }
}

@media (max-width: 799px) {
    .container-narrow, .container-narrowist {
        max-width: 95%;
    }
}

.container-short {
    width: 100%;
    max-width: 825px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 800px) and (max-width: 1279px) {
    .container-short {
        max-width: 90%;
    }
}

@media (max-width: 799px) {
    .container-short {
        max-width: 90%;
    }
}

/** psuedo includes **/
.hasAfter:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--teal_darker);
    display: block;
    margin-top: 1rem;
}

.hasSmallAfter:after {
    content: "";
    width: 20px;
    height: 2.5px;
    background-color: var(--teal_darker);
    display: block;
    margin-top: 0.25rem;
}

/** header **/
header#masthead {
    background-color: var(--yellow-main);
    position: relative;
    top: 0;
    z-index: 2;
}

header#masthead .nav_flex {
    display: flex;
    min-height: 90px;
}
@media (max-width: 1199px){
    header#masthead .nav_flex {
        padding: 1rem;
    }
}
@media (max-width: 899px){
    header#masthead .nav_flex {
        flex-direction: column;
    }
}

@media (min-width: 1200px){
    header#masthead .site-branding:before {
        content: '';
        position: absolute;
        width: calc(100% + 9rem);
        clip-path: polygon(0 0, 100% 0, 80% 100%, 15% 100%);
        background-color: var(--yellow-main);
        top: 99%;
        left: -4.5rem;
        height: 60px;
        transition: 0.25s ease-out;
        pointer-events: none;

    }
    header#masthead.moved .site-branding:before {
        transform: translateY(-2rem);
        width: calc(100% + 4rem);
        left: -2rem;
    }

    header#masthead .site-branding a {
        display: flex;
        justify-content: center;
        position: relative;
        top: 1.5rem;
        min-width: 250px;
    }
    header#masthead .site-branding {
        position: relative;
        z-index: 2;
    }
    header#masthead img.custom-logo {
        width: 290px;
        transition: 0.15s ease-in-out;
    }
    header#masthead.moved img.custom-logo {
        width: 150px;
    }
}

@media (max-width: 1199px){
    header#masthead img.custom-logo {
        width: 80%;
        min-width: 125px;
    }
}

@media (max-width: 899px){
    header#masthead .site-branding {
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    header#masthead .site-branding a.custom-logo-link {
        display: flex;
        justify-content: center;
    }
}

header#masthead .main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
@media (min-width: 800px){
    header#masthead .main-navigation li {
        display: flex;
        transition: 0.25s ease-in-out;
        position: relative;
        width: auto;
    }
}
@media (max-width: 599px){
    header#masthead .main-navigation li {
        position: unset;
    }
}

header#masthead .main-navigation li a {
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 1rem;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
}
@media (min-width: 900px) and (max-width: 1199px){
    header#masthead .main-navigation li a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 899px){
    header#masthead .main-navigation {
        justify-content: center;
    }
    header#masthead .main-navigation li a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 599px){
    header#masthead .main-navigation li a {
        text-align: left;
        padding: 0;
        line-height: 4;
    }
}

@media (min-width: 600px){
    .main-navigation ul {
        justify-content: flex-end;
    }
}

.main-navigation li:where(:hover,:focus) {
    transform: scale(1.05);
}

.main-navigation li.current-menu-parent {
    transform: scale(1.15);
    position: relative;
    transition: width 0.5s ease-in-out;
}

.main-navigation li a:after, .current-menu-parent:after {
    content: '';
    background-color: black;
    display: flex;
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    transition: 0.25s ease;
    transform: translateX(-50%);
    left: 50%;
}

.main-navigation li a:where(:hover,:focus,:active),
.current-menu-parent > a, .current_page_item > a {
    color: var(--dark-green);
}
.main-navigation #primary-menu > li a:where(:hover,:focus,:active):after,
.main-navigation #primary-menu > li.current_page_item a:after,
.main-navigation #primary-menu > li.current-menu-parent > a:after,
.main-navigation #primary-menu > li.current_page_item > a {
    width: 80%;
}
@media (max-width: 599px){
    .main-navigation #primary-menu > li a:where(:hover,:focus,:active):after,
    .main-navigation #primary-menu > li.current_page_item a:after,
    .main-navigation #primary-menu > li.current-menu-parent > a:after,
    .main-navigation #primary-menu > li.current_page_item > a {
        width: 95%;
    }
}

.main-navigation ul ul {
    background-color: var(--yellow-main);
}
@media (max-width: 599px){
    .main-navigation ul ul {
        transform: translateX(-2.5rem);
        background-color: white;
    }
}
.main-navigation ul ul li.current_page_item a:after {
    width: 100%;
}
.main-navigation ul ul li.current_page_item a:where(:hover,:focus):after {
    width: 100%;
}

/** video **/
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/** submenu **/
ul.sub-menu {
    flex-direction: column;
}

/** forms **/
form label {
    margin-top: 1rem;
}
form label span input {
    margin-top: 1rem;
}

/** main **/
main#primary {
    min-height: 550px;
}

/** single **/
body.single main,
body.error404 main,
body.search main {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
}
body.single header h1 {
    margin-bottom: 2rem;
    line-height: 1.2;
}
body.single .entry-meta,
body.single main .single_body_img{
    margin-bottom: 1.5rem;
}

body.single main :where(.post-thumbnail, .post-thumbnail img) {
    width: 100%;
}

span.entry-date {
    display: flex;
    justify-content: center;
    border: 2px solid var(--yellow-main);
    padding: 1rem;
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: center;
}
span.entry-date > h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
}
span.entry-date > h4:not(:first-child) {
    margin-bottom: 0;
}

/** search **/
body.search article {
    margin: 2rem 0;
    padding: 2.5rem;
    border: 4px solid var(--dark-green);
}
body.search article:where(:first-child) {
    margin-top: 0;
}
body.search article:where(:last-child) {
    margin-top: 0;
}
body.search .entry-meta {
    margin-bottom: 1rem;
    font-weight: 700;
}
body.search .entry-meta span * {
    color: var(--yellow-main);
}

/** pagination **/
nav.navigation.post-navigation {
    width: 100%;
}
main ~ .pagination {
    display: flex;
    width: 100%;
    background-color: var(--dark-green);
}
main ~ .pagination .navigation .nav-links {
    width: 100%;
    padding: 2rem;
}
@media (max-width: 599px){
    main ~ .pagination .navigation .nav-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    main ~ .pagination .navigation .nav-links > div {
        margin: 0 0 1rem;
    }
}

.pages.bottom {
    display: flex;
    background-color: var(--dark-green);
    justify-content: center;
}
.pages.bottom a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 2rem 5px;
}

main ~ .pagination .navigation a {
    color: white;
}

/** footer **/
footer {
    background-color: var(--yellow-main);
}
footer .bottom {
    display: flex;
    padding: 5rem 0;
    gap: 3rem;
    justify-content: space-between;
}
@media (max-width: 899px){
    footer .bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5rem;
    }
}

footer .logo img {
    width: 350px;
}
footer .column.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .logo.column img {
    margin-bottom: 1rem;
}

footer .column.address {
    display: flex;
    flex-direction: column;
}
footer .column.address a:where(:hover,:foucs){
    color: white;
}
footer .column.address,
footer ul#footer_menu a {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: black;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
footer ul#footer-menu {
    display: flex;
    flex-direction: column;
}
footer ul#footer_menu a {
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.25s ease;
}
footer ul#footer_menu a:where(:hover,:focus) {
    color: white;
}

/** pages **/
html .page-template-page-yellow {
    background-color: var(--yellow-main);
}
html .page-template-page-yellow main#primary * {
    color: var(--dark-green);
}
html .page-template-page-yellow footer {
    background-color: var(--dark-green);
    color: white;
}
html .page-template-page-yellow footer :is(a, span, ul#footer-menu a, p) {
    color: white;
}
html .page-template-page-yellow footer .logo.column img {
    filter: invert(1);
}

/** pops **/
.popBG {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popRoot {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popRoot .popData {
    width: auto;
    height: auto;
    max-width: 750px;
    max-height: 100%;
    position: relative;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 799px){
    .popRoot .popData {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .popRoot .popData img {
        object-fit: cover;
    }
}

.popRoot .popData .inner {
    border: 8px solid var(--cityBlueSoft2-ADA2);
    padding: 2rem;
    position: relative;
    background-color: white;
    height: auto;
    overflow: hidden;
}
.popRoot .popData .topPop {
    display: flex;
}
@media (max-width: 799px){
    .popRoot .topPop {
        flex-direction: column;
    }
}

.popRoot .popData svg {
    cursor: pointer;
}
.popRoot .popData .topPop .r {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    justify-content: center;
    width: 100%;
}
@media (max-width: 799px){
    .popRoot .popData .topPop .r {
        padding: 1rem 0;
    }
}
.popRoot .popData .topPop .r h2 {
    line-height: 1.1;
    color: var(--dark1);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.popRoot .popData .topPop .r span {
    letter-spacing: 1px;
}
.popRoot .popData .topPop img {
    width: 100%;
    pointer-events: none;
}
@media (max-width: 799px){
    .popRoot .popData .topPop img {
        width: 100%;
    }
}
.popRoot .popData .bottomPop {
    padding: 2rem 0 0;
    max-height: 200px;
    overflow: scroll;
}
.popRoot .popData .bottomPop > * {
    padding: 2rem 0;
}
@media (max-width: 799px){
    .popRoot .popData .bottomPop {
        padding: 0;
        margin-top: 0;
    }
}
.popRoot .popData svg {
    width: 50px;
    position: absolute;
    z-index: 1;
    right: 2px;
    top: 2px;
}