:root {
    --pro-green: #AADD66;
    --pro-yellow: #FDD000;
    --off-black: #222222;
    --off-white: #CDC7C7;
    --pro-red: #DB4646;
    --light-green: #6EA722;
    --ash: #C4C4C4;
    --sec-yellow: #E0DB11;
    --black: #000;
    --white: #fff;
    --font-lorimer : 'Lorimer';
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** font-face 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@font-face {
    font-family: 'Lorimer';
    src: url(../font/Lorimer_No2_Stencil.woff);
    font-weight: 700;
    font-style: normal;
}


body {
    font-family: "Barlow", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    color: var(--off-black)
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** pre-defined classes
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
h1, .h1 {
    font-size: 67px;
    line-height: 1;
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h2, .h2 {
    font-size: 36px;
    line-height: 120%;
    font-weight: 800;
    color: var(--off-black);
    font-family: "Barlow", sans-serif;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h3, .h3 {
    font-size: 30px;
    line-height: 120%;
    color: var(--off-black);
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

h4, .h4 {
    font-size: 26px;
    line-height: 120%;
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h5, .h5 {
    font-size: 22px;
    line-height: 140%;
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h6, .h6 {
    font-size: 18px;
    line-height: 140%;
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}


.lg-text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}

.md-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.sm-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.white .p, 
.white .lg-text,
.white .md-text,
.white .sm-text {
    color: var(--white);
}





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

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

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

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

.fs-normal {
    font-style: normal;
}

.fs-italic {
    font-style: italic;
}





.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;
    gap: 1rem;
} 

.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;
}
.gd {
    display: grid;
}
.gd-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gd-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}


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


.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;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-5 {
    margin-top: 5rem;
    margin-bottom: 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;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* Button */
.btn {
    padding: 12px 27px;
    background: #fff;
    color: var(--off-black);
    border: 3px solid #fff;
    width: fit-content;
    display: block;
    text-decoration: none !important;
    font-weight: 800;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all .25s linear;
}
.btn:hover {
    background: transparent;
    color: #fff;
}
.btn.sm {
    font-size: 16px;
}
.btn.green {
    color: var(--off-black);
    background: var(--pro-green);
    padding: 15px 30px;
}
.btn.green:hover {
    background: var(--pro-yellow);
}

.btn.dark {
    background: var(--off-black);
    color: #fff;
    border: 3px solid var(--off-black);
}
.btn.dark:hover {
    background: #fff;
    color: var(--off-black);
}
.btn.wh-border {
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
}
.btn.wh-border:hover {
    background: #fff;
    color: var(--off-black);
}
.btn.bk-border {
    border: 3px solid var(--off-black);
    background: transparent;
    color: var(--off-black);
}
.btn.bk-border:hover {
    background: var(--off-black);
    color: #fff
}


/* Overlay */

.overlay {
  position: relative;
}
.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: saturation;
}
.overlay img {
  width: 100%;
  filter: grayscale(100%) contrast(80%)
}
.overlay.green img {
   filter: grayscale(100%) brightness(60%); 
}
.overlay.green::after {
    background: #6EA722;
    mix-blend-mode: screen;
}
.overlay.dark::after {
    background-color: var(--off-black);
}

/* Layout */
.container {
    max-width: 1360px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.guttenberg-page {
    padding: 4rem 0;
}
.guttenberg-page h1,
.guttenberg-page h2,
.guttenberg-page h3,
.guttenberg-page h4,
.guttenberg-page h5, 
.guttenberg-page h6 {
	margin: 1rem 0 0.5rem;
    text-transform: uppercase;
}
.guttenberg-page ul li,
.guttenberg-page ol li {
	margin-bottom: .1em;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** 404 Page
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.error-404 {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-page-content h1 {
    font-size: 80px;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Header
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
#masthead {
    background-color: var(--off-black);
    min-height: 94px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.admin-bar #masthead {
    top: 32px;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.site-branding img {
    max-height: 24px;
    object-fit: contain;
    width: fit-content;
}

.header-adjust {
    min-height: 94px;
}


/* menu btn */
.menu-btn a {
    padding: 15px 45px;
    background: var(--pro-green);
    color: var(--off-black);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    transition: all .25s linear;
}
.menu-btn a:hover {
    background: var(--pro-yellow);
}


/* toggle memu */
.toggle-menu {
    display: none;
}
.toggle-menu-inner{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.toggle-menu-inner span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: transform .25s linear;
}
.toggle-menu.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

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

.toggle-menu.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}


/* Homepage header */
#masthead.homepage-header {
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--off-black) 0%, #00000000 100%);
    transition: all .25s linear;
}
#masthead.homepage-header .site-branding img {
    max-height: unset;
    width: 177px;
    transition: all .25s linear;
}
#masthead.homepage-header.scrolled {
    background-color: var(--off-black);
}
#masthead.homepage-header.scrolled .site-branding img {
    width: 110px;
}
#masthead.homepage-header.scrolled .main-header {
    padding: 10px 0;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Footer
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
#colophon {
    background-color: var(--off-black);
    padding: 36.5px 0;
    border-top: 2px solid var(--white)
}
.footer-logo-con img {
    max-height: 24px;
    object-fit: contain;
    width: fit-content;
}
#colophon .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#colophon .container a,
#colophon .container p,
#colophon .container div {
	color: var(--white);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.4;
}
.footer-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
#footer-menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 32px;
    list-style: none;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Post Details
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.post-page {
    padding: 100px 0;
}
.post-page .post-content-con {
    max-width: 874px;
    width: 100%;
    margin: 0 auto;
    gap: 100px;
    display: flex;
    flex-direction: column;
}
.post-page .entry-title {
    text-align: center;
	font-family: "Barlow", sans-serif !important;

}
.post-page .post-conten-con {
    text-align: center;
}
.post-date-and-hd {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.post-body {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
}
.post-page .post-content {
    font-size: 20px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 500;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
.post-page .post-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 500;
}
.post-page .post-content a {
    color: var(--black);
}
.post-date {
    font-size: 20px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.post-thumbnail {
    margin-bottom: 1.5rem;
}
.post-thumbnail img {
    width: 100%;
}
/* Social Share */
.social-share {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    left: 0;
    top: 150px;
}
.social-share a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--off-black);
    color: var(--black);
    transition: all .25s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;

}
.social-share a:hover {
    background-color: var(--off-black);
    color: var(--white)
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** responsive styles
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@media only screen and (max-width: 1024px) {
    /* GLobal */
    h1, .h1 {
        font-size: 50px;
    }

    h2, .h2 {
        font-size: 34px;
    }


    /* Header  */
    .toggle-menu {
        display: flex;
    }
    .site-branding img {
        max-width: 70%;
    }

    #primary-menu {
        display: flex;
        gap: 30px;
        position: fixed;
        max-width: 300px;
        width: 100%;
        background: var(--off-black);
        left: 0;
        top: 0;
        height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 50px;
        transition: all .3s linear;
        translate: -300px 0;
    }
    .active #primary-menu {
        translate: 0 0;
    }
    .menu-btn {
        width: 100%;
    }
    .menu-btn a {
        padding: 15px 30px;
        text-align: center;
    }
    .main-navigation a {
        font-size: 20px;
    }



}

@media only screen and (max-width: 998px) {
    /* Global */
    h1, .h1 {
        font-size: 40px;
    }

    h2, .h2 {
        font-size: 30px;
    }

    h3, .h3 {
        font-size: 28px;
    }

    h4, .h4 {
        font-size: 24px;
    }

    h5, .h5 {
        font-size: 22px;
    }

    h6, .h6 {
        font-size: 20px;
    }


    /* Footer */
    #colophon .container {
        flex-direction: column;
        gap: 40px;
    }

}


@media only screen and (max-width: 767px) {
    /* Gobal */
    h1, .h1 {
        font-size: 36px;
    }
    h2, .h2 {
        font-size: 26px;
    }

    h3, .h3 {
        font-size: 24px;
    }

    h4, .h4 {
        font-size: 22px;
    }

    h5, .h5 {
        font-size: 20px;
    }

    h6, .h6 {
        font-size: 18px;
    }

    /* Button */
    .btn {
        font-size: 18px;
    }
	
	/* 	guttenberg */
	.guttenberg-page {
		padding: 2rem 0 4rem;
	}

    /* Header */
    #masthead, .header-adjust {
        min-height: 70px;
    }
    #masthead.homepage-header .site-branding img {
        width: 100%;
        max-width: 106px;
    }
    #masthead.homepage-header.scrolled .site-branding img {
        max-width: 80px;
    }

    #primary-menu {
        height: auto;
        padding: 40px 20px 50px;
        max-width: 100%;
        translate: 0 -200%;
        transition: translate .4s linear;
        top: 69px;
    }
    .active #primary-menu {
        translate: 0 0;
    }
    .site-header.homepage-header #primary-menu {
        top: 100px;
    }
    .site-header.homepage-header.scrolled #primary-menu {
        top: 60px;
    }
    .main-navigation a {
        font-size: 36px;
    }
    

    /* Footer */
    #colophon {
        padding: 40px 0;
    }
    #colophon .container {
        align-items: flex-start;
        gap: 32px;
    }
    .footer-menu,
    #footer-menu {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    #colophon .container a, 
    #colophon .container p, 
    #colophon .container div {
        text-align: left;
        align-items: flex-start;
        text-decoration: none;
    }
    

    /* Single Post */
    .post-page {
        padding: 50px 0;
    }
    .post-page .post-content-con {
        gap: 30px;
    }
    .post-body {
        grid-template-columns: 100%;
    }
    .social-share {
        flex-direction: row;
        position: static;
        justify-content: center;
        margin-bottom: 45px;
    }
    .post-page .post-content p {
        font-size: 16px;
    }
    .post-date {
        font-size: 16px;
    }



}



