/**************************************/
/** Cooped Up Wings | JSA **/
/**************************************/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@400;700&display=swap');
@import url("https://use.typekit.net/cjx8btd.css");

* {
    box-sizing: border-box;
}

/*************************/
/** variable controller **/
/*************************/
:root {
	--coopedup-green: #ABD037;
	--coopedup-green2: #97b92c;
	--coopedup-brown: #6E2C2C;
	--coopedup-brown2: #451F1F;
	--coopedup-black: #000;
	--coopedup-white: #fff;
    --bg-image-height-0: 100%, 100vh;
    --bg-image-height-auto: auto;

    --h1-size: 65px;
    --h2-size: 34px;
    --h2-color: #0d385f;
    --h3-size: 40px;
    --h4-size: 40px;
    --h5-size: 20px;
    --paragraph-size: 30px;
    --paragraph-lh: 1.25;
    --paragraph-font: 'Roboto Condensed', sans-serif;
    --paragraph-span: 'Roboto Condensed', sans-serif;
	--copyright: 20px;
    --span-color: #000000;
    --main-bg-purple: #372550;
    --main-bg-orange: #D64300;
    --main-bg-lightblue: #91D2D1;
    --sig-series-color: #372550;
    --sig-series-span-color: #D64300;
    --dark-purple-ada: #372550; /* use for text on #84bfbe bkg */
	--menu-yellow: #FFC734;

    --margin-segment-2a: -67em;
    --margin-segment-2b: -67em;
    --margin-segment-2c: -75em;
    --margin-segment-3a: -4em;
    --margin-segment-3b: auto;
    --margin-segment-5a: auto;
    --margin-segment-5b: -40em;

	--bar-bites-width: 900px;
    --menu-width-lg: 700px;
    --menu-width-md: 90%;

    --footer-menu-size: 21px;
    --footer-input-border-color: #ccac41;

    --mobile-view-600: 600px;
}
/** variable controller end **/


body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
html, body, nav, ul {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
main {
    overflow-x: hidden;
}


h1 {
    font-size: var(--h1-size)!important;
    font-weight: 900;
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
}
h2, .address {
    font-size: var(--h2-size);
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-weight: 700;
	text-transform: uppercase;
}
.address{
  margin-bottom:1em;
}
h3 {
    font-size: var(--h3-size);
    font-family: 'Cubano', sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
	margin: 0;
}
h4 {
    font-family: 'Cubano', sans-serif;
    font-size: var(--h4-size);
    letter-spacing: 6px;
    margin: 0 0 10px;
    line-height: 1;
}
h5 {
    font-family: 'Cubano', sans-serif;
    font-size: var(--h5-size);
    letter-spacing: 1px;
    margin: 0 0 10px;
    line-height: 1;
}
h6 {
    font-family: 'Cubano', sans-serif;
    font-size: 26px;
}

p, span, em {
    font-family: var(--paragraph-font);
}
p {
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-lh);
    letter-spacing: 0.5px;
    margin: 0;
}
p span {
    display: block;
    line-height: 1;
    color: var(--span-color);
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
	font-weight: 900;
    font-size: 11px;
}
p.extra {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 2;
    letter-spacing: 0.5px;
    margin: 0;
    color: var(--main-corp-color);
    font-weight: 900;
}
ul, li {
    list-style: none;
}
ul, ol {
    font-family: var(--paragraph-font);
    font-size: var(--paragraph-size);
}
ul > li {
    line-height: 1.5;
}

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

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

.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-15 { padding-top: 15px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-50 { padding-top: 50px; }
.pt-70 { padding-top: 70px; }

.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-15 { padding-bottom: 15px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-50 { padding-bottom: 50px; }
.pb-70 { padding-bottom: 70px; }

.push1:hover, .push1:focus{
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.transition-05s {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.transition-1s {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.transition-2s {
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

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

a {
    color: #fff;
    border: none;
    text-decoration: none;
}
a:visited {
    color: #fff;
}

header a {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}
header a:after {
    display:block;
    content: '';
    border-bottom: solid 3px var(--main-corp-color);
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    height: 6px;
}
header a:hover:after {
    transform: scaleX(1);
}
header a.fromRight:after {
    transform-origin: 100% 50%;
}
header a.fromLeft:after{
    transform-origin:  0% 50%;
}

.header-bg {
    background: url('../imgs/Cooped-Up-Textured-Bg.jpg');
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 106px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
    @media (max-width: 1200px){
        .header-bg {
            background-size: 100% 18vh;
        }
    }
    @media (max-width: 768px){
        .header-bg {
            position: fixed;
            z-index: 2;
        }
    }

header {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}
header > .row {
    display: flex;
    width: 100%;
    z-index: 1;
    position: absolute;
}
    @media (max-width: 768px) {
        header > .row {
            position: fixed;
            box-shadow: 3px 3px 15px rgb(0 0 0 / 0.5);
            z-index: 2;
        }
    }
header > .row > * {
    width: 50%;
    text-align: center;
    /*margin: 4.5% auto;*/
}

header > .row > nav{
	/*margin: 2em auto;*/
	width: 100%;
	height: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
}
    @media (max-width: 1200px){
        header > .row > * {
            width: 100%;
            /*margin: 4.5% auto;*/
        }
    }
    /* @media (max-width: 700px){
        header > .row > * {
            margin: 9% auto;
        }
        header > .full > ul,
        header > .full > nav {
            margin: 6% auto;
        }
    } */

header > .row > .logo {
    align-content: flex-end;
	margin-top: 2%;
}
header > .row > .logo img {
    width: 65%;
}
    @media (max-width: 700px){
        header > .row > .logo img {
            width: 70%;
        }
    }
header ul li {
    font-family: var(--paragraph-font);
    font-weight: 900;
    text-transform: uppercase;
    list-style: none;
    text-align: center;
    display: inline-flex;
    margin: 0 50px;
    color:#fff;
}
    @media (max-width: 600px){
        header ul li {
            justify-content: center;
			width: 30%;
    		margin: 0;
    		padding: 0 28px;
        }
    }

header .row.small ul li a{
    color: #ffffff;

}

header .row.full ul li a, section#boxes .content_blue .elements{
    color: var(--menu-yellow);
}
header .row.full nav ul li a {
    color: #6E2C2C;
}

header .row.full ul li a.reduceMotionBtn{
	font-size: 0.8em;
	color: #fff;
}

header > .row > .logo img:hover,
header > .row > .logo img:focus {
    transform: scale(1.05);
    cursor: pointer;
}
section:not(#main){
    display: flex;
    flex-direction: column;
}

section.hero-image {
	background-image: url('../imgs/Cooped-Up-Wings-Hero.jpg');
    width: 100%;
    background-size: cover;
    height: 100%;
	height: 645px;
    background-repeat: no-repeat;
    background-position: center;
	margin-top: 100px;
	padding-top: 30px;
	justify-content: center;
}
    @media (max-width: 600px) {
        section.hero-image {
            height: 465px;
        }
    }
.hero-image h1 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 25px;
}
    @media (max-width: 600px) {
        .hero-image h1 {
            padding: 0 75px;
        }
    }
    @media (max-width: 440px) {
        .hero-image h1 {
            padding: 0 45px;
        }
    }

section.hero-image img {
	width: 100%;
	max-width: 250px;
	margin: auto;
}
@media (max-width: 330px){
	section.hero-image > img:first-child{
		max-width: 100%!important;
		width: 95%;
		top: 90px!important;
	}
}
h3.coopedup-subhead {
    text-align: center;
    color: var(--coopedup-white);
    width: 100%;
    max-width: 1250px;
    margin: 35px auto 0;
    padding: 7px 0;
    box-shadow: 38px 0px 0 0 rgb(169 198 33 / 1), -38px 0 0 0 rgb(169 198 33 / 1);
    background-color: rgb(169 198 33 / 1);
    display: flex;
}
h3.coopedup-subhead span {
    padding: 0 16px;
    line-height: 1.25;
}
    @media (max-width: 1300px) {
        section.hero-image {
            height: 735px;
        }
        h3.coopedup-subhead {
            box-shadow: none;
            background-color: transparent;
            flex-direction: column;

        }
        h3.coopedup-subhead div {
            box-shadow: 38px 0px 0 0 rgb(169 198 33 / 1), -38px 0 0 0 rgb(169 198 33 / 1);
            background-color: rgb(169 198 33 / 1);
            margin: 0 auto 18px;
            padding: 5px 0px 7px;
        }
        h3.coopedup-subhead span {
            display: none;
        }
        h3.coopedup-subhead div:nth-child(1) {
            transform: rotate(-1deg);
        }
        h3.coopedup-subhead div:nth-child(3) {
            transform: rotate(1deg);
        }
        h3.coopedup-subhead div:nth-child(5) {
            transform: rotate(1deg);
        }
    }
section#main {
    background: url(../links/homeimg/homeimg1.png) no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}


#sit-tight {
    background-image: url(/imgs/wood-bg.svg);
    background-size: cover;
    background-position: center;
    width: 100%;
    justify-content: center;
    padding: 35px 20px 85px;
}
#sit-tight div {
    margin: 0;
    text-align: center;
    color: var(--coopedup-white);
    letter-spacing: 6px;
}
#oodoordash {
    fill: #fff;
    width: 100%;
    max-width: 660px;
    margin: 11px auto 0;
}


#feeling {
    background-color: var(--coopedup-green);
    padding: 72px 20px 118px;
    justify-content: center;
    text-align: center;
    color: var(--coopedup-white);
}
#feeling h3 {
    /*color: var(--coopedup-brown);*/
    letter-spacing: 1px;
}
    @media (max-width: 600px) {
        #feeling h3 {
            font-size: 53px;
            padding-bottom: 15px;
        }
    }
#feeling p {
    max-width: 880px;
    margin: 0 auto;
    line-height: 1.25;
}
    @media (max-width: 600px) {
        #feeling p {
            font-size: 35px;
        }
    }


.menus-contain {
    display: flex;
    flex-flow: row nowrap;
    width: 750px;
    margin-left: auto;
    margin-right: auto;
}
    @media (max-width: 750px){
        .menus-contain {
            flex-flow: column nowrap;
            width: 100%;
        }
    }


.order-now {
    flex-flow: column nowrap;
    background-image: url(../imgs/order-now.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 336px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.order-now h4 {
    color: var(--coopedup-white);
}
#menu .order-now {
    margin-top: -46px;
    z-index: 1;
}

@media (max-width: 750px){
    #menu .order-now:first-child {
        margin-bottom: 55px;
    }
    .order-contain .order-now:first-child {
        margin-bottom: 15px;
    }
}

.order-now > span.pre {
    font-size: calc(var(--h4-font)+20px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-now:hover {
    transform: rotate(2deg);
}
.order-now:hover h4 {
    color: #f2ffca;
    z-index: 1;
}
.order-now:hover:after {
    content: "";
    background-color: rgb(0 0 0 / 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
}


.menubg {
    background-image: url(../imgs/menu-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 237px;
    height: 142px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--coopedup-white);
    margin: -3px auto 0;
}
.menubg h4 {
    margin-top: 48px;
    font-size: calc(var(--h4-size) - 3px);
}
.price {
    text-align: center;
    padding: 55px 0 0;
    color: var(--coopedup-green);
    text-transform: uppercase;
}
.price h4, .price h3 {
    font-size: calc(var(--h4-size) + 20px);
    color: var(--coopedup-green2);
}
.price h4 {
    background-color: #abd037;
    max-width: 440px;
    margin: 30px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3c2313;
    padding: 10px 10px;
    transform: rotate(1deg);
}
.price h4 div {
    display: flex;
    align-items: center;
}
.price h4 span {
    font-size: calc(var(--paragraph-size) - 11px);
}
    @media (max-width: 630px) {
        .price h4 {
            flex-direction: column;
            display: flex;
            font-size: calc(var(--h4-size) + 40px);
        }
    }
.wing-types {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 65px 20px 56px;
    color: var(--coopedup-brown);
}
    @media (max-width: 768px) {
        section#menu {
            padding-bottom: 50px;
        }
        .wing-types {
            flex-direction: column;
        }
    }
.wing-types h3 {
    font-size: var(--h4-size);
}
.wing-types p {
    font-size: 19px;
}
.wt-right p:nth-child(2) {
    font-size: 24px;
    font-weight: 900;
    margin: 6px auto;
}
.wt-left h3 {
    margin-bottom: 10px;
}
.wt-left {
    padding-right: 40px;
    text-align: center;
}
.wt-right {
    padding-left: 40px;
    border-left: 3px solid var(--coopedup-brown);
}
.wt-right p {
    text-transform: uppercase;
}
    @media (max-width: 768px) {
        .wt-left {
            padding: 0 20px 18px;
        }
        .wt-right {
            border-left: none;
            border-top: 3px solid var(--coopedup-brown);
            padding: 22px 20px 0;
            text-align: center;
        }
    }




.wings {
    display: flex;
}
    @media (max-width: 999px) {
        .wings {
            flex-direction: column;
        }
    }
.half {
    width: 47.5%;
}
.fourty {
    width: 40%;
}
.sixty {
    width: 60%;
}
.half:nth-child(1) {
    margin-right: 4%;
}
    @media (max-width: 999px) {
        .fourty {
            width: 100%;
        }
        .sixty {
            width: 100%;
        }
    }
    @media (max-width: 768px) {
        .half {
            width: 100%;
        }
    }
.wings-left {
    background: url(../imgs/textured-bg-lg.jpg);
    margin-right: 3%;
}
.wings-left-inner {
    display: flex;
    height: 100%;
    padding: 75px 50px 90px 0;
}
    @media (max-width: 999px) {
        .wings-left-inner {
            padding: 75px 0 90px;
        }
    }
.wings-right-inner {
    display: flex;
    height: 100%;
    padding: 75px 0 120px;
}
    @media (max-width: 999px) {
        .wings-right-inner {
            justify-content: center;
        }
    }
.wings-hero {
    background: url(../imgs/inferno-wings.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
    @media (max-width: 999px) {
        .wings-hero {
            height: 650px;
            background-position: center;
        }
    }
    @media (max-width: 768px) {
        .wings-left-inner {
            padding: 50px 0;
        }
        .wings-hero {
            margin: 0 40px;
            background-position: center;
        }
    }
.caption {
    margin: 30px 0 18px 20px;
    padding: 10px 17px;
    position: absolute;
}
.wings h6 {
    color: var(--coopedup-brown);
    margin: 0;
    background-color: var(--coopedup-green);
    padding: 10px 15px;
    transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    /*text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff;*/
}
.caption p {
    display: inline-block;
    text-transform: uppercase;
    font-size: calc(var(--paragraph-size) - 13px);
    color: var(--coopedup-white);
    background-color: var(--coopedup-green);
    margin-top: 4px;
    padding: 10px 15px;
    transform: rotate(1deg) translate(-11px, 0px);
    -moz-transform: rotate(1deg) translate(-11px, 0px);
    -webkit-transform: rotate(1deg) translate(-11px, 0px);
    -o-transform: rotate(1deg) translate(-11px, 0px);
    -ms-transform: rotate(1deg) translate(-11px, 0px);
}
h4.heat-top {
    position: relative;
    background-color: var(--coopedup-white);
    padding: 7px;
    font-size: 19px;
    text-align: center;
    margin: 0 auto -15px;
    width: 100%;
    max-width: 95px;
}
h4.heat-bottom {
    font-size: 18px;
    text-align: center;
    background-color: var(--coopedup-white);
    margin: -19px auto 0;
    width: 100%;
    max-width: 120px;
}
.wings-heat-outer {
    margin-right: 30px;
}
.wings-heat-meter {
    margin: 0 15px;
    border: 1px solid var(--coopedup-brown);
    padding: 18px 18px 32px;
    height: 100%;
}
    @media (max-width: 768px) {
        .wing-flavors {
            padding: 0 5px;
        }
        .wings-heat-outer {
            margin-right: 10px;
        }
        .wings-heat-meter {
            margin: 0 8px;
        }
    }
    @media (max-width: 550px) {
        .wings-heat-meter {
            padding: 10px 10px 25px;
        }
    }
.heat-meter-inner {
    background-image: url(../imgs/heat-indicator-bg2.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 90px;
    display: flex;
    justify-content: center;
}
    @media (max-width: 550px) {
        .heat-meter-inner {
            width: 75px;
        }
    }

#heatText {
    width: 55px;
    margin: 18px;
}
.wing-flav-inner {
    max-width: 592px;
    text-transform: uppercase;
    padding-right: 35px;
}
    @media (max-width: 768px) {
        .wing-flav-inner {
            padding-right: 25px;
        }
    }
.wing-flavors h4 {
    letter-spacing: 1px;
    color: var(--coopedup-brown);
}
.menu-item {
    margin-bottom: 20.5px;
}
.menu-contain span {
    color: var(--coopedup-brown);
    margin-left: 18px;
    display: flex;
}
.cu-one {
    color: #f2db4f
}
.cu-two {
    color: #fbce58;
}
.cu-three {
    color: #fcc352;
}
.cu-four {
    color: #F2913D;
}
.cu-five {
    color: #ef7c3a;
}
.cu-six {
    color: #EF6633;
}
.cu-seven {
    color: #EF4F2D;
}
.cu-eight {
    color: #ED3D2D;
}
.cu-nine {
    color: #ed2b28;
}
.cu-ten {
    color: #b5171e;
}


section#sides {
    color: var(--coopedup-white);
    margin-top: 28px;
    flex-direction: row;
}
    @media (max-width: 768px) {
        section#sides {
            flex-direction: column;
        }
    }
.sides-left {
    background: url('../imgs/Cooped-Up-Sides-Left.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 20%;
}
.sides-center {
    background-color: var(--coopedup-brown2);
}
.sides-right {
    background: url('../imgs/Cooped-Up-Sides-Right.jpg');
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    width: 20%;
}
.sides-inner {
    padding: 120px 88px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
    @media (max-width: 1200px) {
        .sides-inner {
            padding: 80px 30px;
        }
    }
    @media (max-width: 890px) {
        .sides-inner {
            flex-direction: column;
            padding: 80px 0 100px;
        }
    }
        @media (max-width: 768px) {
        .sides-left {
            width: 100%;
            height: 300px;
        }
    }
.sides-col-1 {
    width: 50%;
}
.sides-col-2 {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
    @media (max-width: 890px) {
        .sides-col-mobile {
            width: 100%;
        }
        .get-sides-mobile {
            padding-top: 55px;
            padding: 10px 30px 10px;
        }
    }
    @media (max-width: 768px) {
        .sides-col-2 {
            padding-top: 25px;
        }
    }

#sides h5 {
    color: var(--coopedup-green);
    margin-bottom: 20px;
}
.sides-item {
    margin-bottom: 33px;
}
.sides-item:last-child {
    margin-bottom: 0;
}
#sides span {
    font-size: 24px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    display: block;
}
#sides p {
    font-size: 14px;
}
.mobile-only, .mobile-only2 {
    display: none;
}
@media (max-width: 768px) {
    .mobile-only {
        display: block;
        width: 100%;
        margin: 100px auto 30px;
    }
    .mobile-only2 {
        display: block;
        width: 100%;
        margin: 60px auto 60px;
    }
}



.order-contain {
    background-color: rgb(255 255 255 / 0.46);
    padding: 20px;
    margin: 0 auto;
}
#doordash {
    fill: #fff;
    width: 100%;
    max-width: 433px;
    margin: 0 auto 26px;
}
#order-now {
    background: url(../imgs/bbq-wings.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 98px 20px 92px;
}
    @media (max-width: 415px) {
        #ordernow {
            width: 100%;
            padding: 15px;
        }
        .order-now {
            width: 100%;
            background-position: center;
        }
    }
    @media (max-width: 374px) {
        .order-now h4 {
            font-size: calc(var(--h4-size) - 8px);
            letter-spacing: 2px;
        }
    }





/**copyright**/
#copyright {
    background-color: #000;
    color: var(--foreground-color-1);
    text-align: center;
	padding: 25px 0;
    font-weight: 300;
}
#copyright p {
	font-size: var(--copyright);
}

@media (max-width: 700px){
    footer#footer {
        display: flex;
        flex-flow: column;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    }
}

footer.stick-bottom {
    margin: 0 auto;
    background: var(--coopedup-black);
    background-blend-mode: multiply;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    height: 110px;
}
footer p {
    font-size: 16px;
    padding: 0 20px;
}



/**transitions**/
header > .small {
    visibility: hidden;
    opacity: 0;
    background: #000;
}
    @media (max-width: 700px){
        header > .small,
        header > .small ul {
            display: flex;
            flex-flow: column wrap;
        }
    }

header > .small.row > * {
    margin: 0 auto;
    line-height: 5;
}
    @media (max-width: 700px){
        header > .small.row > * {
            line-height: unset;
        }
        header > .small.row > ul,
        header > .small.row > nav > ul {
            line-height: 2.2;
        }
        header > .small.row > ul {
            padding-top: 15px;
        }
        header > .small.row > nav > ul {
            padding-bottom: 15px;
        }
    }
header > .small.row a:hover,
header > .small.row a:focus{
    line-height: 1.5;
}
    @media (max-width: 700px){
        header > .small.row a:hover,
        header > .small.row a:focus {
            line-height: unset;
        }
    }
header > .small.row a:hover:after,
header > .small.row a:hover:focus {
    border-color: #fff;
}

@media only screen and (max-width: 1300px) {
	#p-1 ul {
		max-height: fit-content!important;
		width: 100%;
	}
	#p-1 li {
		width: 100%!important;
	}
}
@media only screen and (max-width: 900px) {

}
@media only screen and (max-width: 768px) {
	main section.hero-image img {
		width: 80%;
	}
	#copyright p {
		font-size: 12px;
	}
}