@charset "UTF-8";
/*
Theme Name: Workned theme
Theme URI: n/a
Author: YBOP
Author URI: https://youngbirdsofparadise.com/
Description: Workned custom theme!
Version: 1.0.0
Text Domain: workned-theme
*/

/*
	Table of content
    1. GENERAL
        1.1 Headings
        1.2 Text
        1.3 Lists
            1.3.1 Checklist
        1.4 Initials
        1.5 Buttons
        1.6 Socials
        1.7 Colors
        1.8 App stores logos
    2. HEADER
        2.1 Logo
        2.2 Menu
            2.2.1 Sub-menu
    3. MAIN
    4. FOOTER
        4.1 Top
        4.2 Middle
        4.3 Bottom
    RESIZE
*/

/* 1. GENERAL */
:root { 
    --grid-size-xl: 150rem;
    --grid-size-lg: 128rem;
    --grid-size-md: 108rem;
    --grid-size-sm: 74rem;
    --grid-size-xs: ;
    --grid-padding: 3rem;
    --color-black: #383838;
    --color-orange: #FF6F03;
    --color-lightorange: #FCEFE9;
    --color-darkorange: #DF6103;
    --color-purple: #735AAF;
    --color-lightpurple: #EBE8F4;
    --color-darkpurple: #564483;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus,
*:active {
    outline: none;
}

html {
	font-size: 62.5%;
}

body {
    font-family: 'Satoshi';
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;    
    font-smoothing: antialiased;
    color: var(--color-black);
    text-rendering: optimizeLegibility;
}

/* 1.1 Headings */
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: "Archivo", sans-serif; 
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

h1 {
    margin-bottom: 2rem;
    font-size: 7rem;
    line-height: 1;
}

h2,
h1.small {
    margin-bottom: 2rem;
    font-size: 4.5rem;
    line-height: 1.1;
}

h3,
h2.small {
    margin-bottom: 1rem;
    font-size: 3.2rem;
    line-height: 1.2;
}

h4,
h3.small {
    margin-bottom: .5rem;
    font-size: 2.6rem;
    line-height: 1.2;
}

h5 {
    margin-bottom: .5rem;
    font-size: 1.8rem;
    line-height: 1.3;
}

/* 1.2 Text */
p {
	margin: 0 0 3rem;
}

p:empty {
    display: none;
}

p:last-child {
    margin: 0;
}

a {
    color: var(--color-black);
    text-decoration: underline;
    transition: .3s;
}

a:hover {
    color: var(--color-orange);
}

blockquote {
    font-size: 2.4rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
}

.underline {
    text-decoration: underline;
}

/* 1.3 Lists */
ul,
ol {
    margin: 0 0 3rem;
    padding-left: 2rem;
}

/* 1.3.1 Checklist */
ul.checklist {
    list-style-type: none;
    padding-left: 0;
}

ul.checklist li {
    position: relative;
    padding-left: 3.5rem;
    font-family: "Archivo", sans-serif; 
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: 500;
}

ul.checklist li:not(:first-child) {
    margin-top: .5rem;
}

ul.checklist li::before {
    content: '';
    position: absolute;
    top: .3rem;
    left: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: var(--color-orange);
    background-image: url(assets/images/icon-checkmark-white.svg);
    background-repeat: no-repeat;
    background-position: center;
}

ul.checklist.purple li::before {
    background-color: var(--color-purple);
}

/* 1.4 Initials */
section {
    padding: 0 var(--grid-padding);
}

.row-fw,
.row-xl,
.row-lg,
.row-md,
.row-sm,
.row-xs {
    width: 100%;
    margin: 0 auto;
}

.row-xl {
    max-width: var(--grid-size-xl);
}

.row-lg {
    max-width: var(--grid-size-lg);
}

.row-md {
    max-width: var(--grid-size-md);
}

.row-sm {
    max-width: var(--grid-size-sm);
}

.row-xs {
    max-width: var(--grid-size-xs);
}

.pt-lg {
    padding-top: 12rem;
}

.pt-md {
    padding-top: 8rem;
}

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

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

.pb-lg {
    padding-bottom: 12rem;
}

.pb-md {
    padding-bottom: 8rem;
}

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

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

/* 1.5 Buttons */
.btn {
	display: inline-flex;
    margin-right: 1rem;
    padding: 1rem 2rem;
    border: .1rem solid var(--color-black);
    border-radius: .6rem;
    font-family: "Archivo", sans-serif; 
    font-optical-sizing: auto;
    font-size: 1.7rem;
    font-weight: 500;    
    line-height: 1.3;
    background-color: var(--color-black);
    color: white;
    text-decoration: none;
	transition: .3s;
}

.btn:hover {
    border-color: black;
    background-color: black;
    color: white;
}

.btn.purple {
    border-color: var(--color-purple);
    background-color: var(--color-purple);
}

.btn.purple:hover {
    border-color: var(--color-darkpurple);
    background-color: var(--color-darkpurple);
}

.btn.orange {
    border-color: var(--color-orange);
    background-color: var(--color-orange);
}

.btn.orange:hover {
    border-color: var(--color-darkorange);
    background-color: var(--color-darkorange);
}

.btn.outline {
    background-color: transparent;
    color: var(--color-black);
}

.btn.outline:hover {
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: white;
}

.btn.outline.white {
    border-color: white;
    color: white;
}

.btn.outline.white:hover {
    background-color: white;
    color: var(--color-black);
}

.btn.transparent {
    border-color: transparent;
    background-color: transparent;
    color: var(--color-black);
}

.btn.transparent:hover {
    text-decoration: underline;
}

.btn.transparent.white {
    color: white;
}

.btn.arrow::after {
    content: '\f178';
    margin-left: 1rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}

/* 1.6 Socials */
.socials {
    display: flex;
    gap: 2.5rem;
}

/* 1.7 Colors */
.bgcolor-white {
    background-color: white;
}

.bgcolor-lightpurple {
    background-color: var(--color-lightpurple);
}

.bgcolor-lightorange {
    background-color: var(--color-lightorange);
}

/* 1.8 App stores logos */
.logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.logos-wrapper a {
    display: flex;
}

.logos-wrapper img {
    max-height: 4rem;
}

/* 2. HEADER */
header {
    position: absolute;
    top: 0;
    z-index: 20;
    width: 100%;
    padding: 0 var(--grid-padding);
    border-bottom: .1rem solid #eee;
    background-color: white;
    transition: .2s;
}

header.header-light:not(.scrolled) {
    border-bottom-color: transparent;
    background-color: transparent;
}

header.scrolled {
    position: fixed;
}

header .container {
    padding: 1.7rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .2s;
}

header .col-l {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* 2.1 Logo */
header .logo {
    display: flex;
}

header .logo img {
    width: auto;
    height: 4.6rem;
}

header .logo img.logo-white {
    display: none;
}

header.header-light:not(.scrolled) .logo img.logo-color {
    display: none;
}

header.header-light:not(.scrolled) .logo img.logo-white {
    display: block;
}

/* 2.2 Menu */
header ul a {
    font-family: "Archivo", sans-serif; 
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
}

header ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 3rem;
}

header ul.menu > li {
    position: relative;
    padding: .5rem 0;
}

header ul.menu > li.menu-item-has-children::after {
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    font-size: 1.4rem;
    font-weight: 400;
    color: #aaa;
}

header.header-light:not(.scrolled) ul.menu > li.menu-item-has-children::after {
    color: white;
}

header ul.menu > li > a {
    font-size: 1.7rem;
    color: var(--color-black);
}

header.header-light:not(.scrolled) ul.menu > li > a {
    color: white;
}

header ul.menu > li:hover > a,
header ul.menu > li.current-menu-item > a {
    text-decoration: underline;
}

/* 2.2.1 Sub-menu */
header ul.sub-menu {
    position: absolute;
    top: 4rem;
    left: -2rem;
    list-style-type: none;
    min-width: 20rem;
    margin: 0;
    padding: 1.5rem 2rem;
    border-radius: .6rem;
    background-color: var(--color-black);
    display: none;
}

header ul.sub-menu::before {
    content: '\f0d8';
    position: absolute;
    top: -1rem;
    left: 3rem;
    font-family: "Font Awesome 5 Pro";
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-black);
}

header ul.menu > li.menu-item-has-children:hover > ul.sub-menu {
    display: block;
}

header ul.sub-menu li:not(:first-child) {
    margin-top: .75rem;
}

header ul.sub-menu a {
    display: block;
    position: relative;
    padding-right: 3rem;
    font-size: 1.6rem;
    color: white;
    white-space: nowrap;
}

header ul.sub-menu a::before {
    content: '\f178';
    position: absolute;
    top: .1rem;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    opacity: 0;
    transition: .2s;
}

header ul.sub-menu a:hover::before {
    opacity: 1;
}

header ul.sub-menu ul {
    display: none;
}
/* End */

header .col-r {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

header .text-wrapper > div {
    display: flex;
    align-items: center;
    gap: 3rem;
}

header .text-wrapper .mobile {
    display: none;
}

header .text-wrapper a {
    font-family: "Archivo", sans-serif; 
    font-optical-sizing: auto;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-black);
}

header .text-wrapper a.btn {
    color: white;
    margin: 0;
}

header.header-light:not(.scrolled) .text-wrapper a {
    color: white;
}

header .hamburger {
    width: 4.4rem;
    height: 3.2rem;
    background-color: white;
    justify-content: center;
    align-items: center;
    display: none;
}

/* 3. MAIN */
header.header-dark + main,
.single-post main {
    padding-top: 8rem;
}

/* 4. FOOTER */
footer {
    padding: 0 var(--grid-padding);
    background-color: var(--color-black);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

/* 4.1 Top */
footer .top {
    padding-top: 10rem;
    display: grid;
    grid-template-columns: repeat( 4, 1fr );
    grid-gap: 5rem;
    font-size: 1.6rem;
    line-height: 2;
}

/* 4.2 Middle */
footer .middle {
    padding-top: 10rem;
    display: grid;
    grid-template-columns: repeat( 4, 1fr );
    align-items: center;
    grid-gap: 5rem;
}

footer .middle .logo {
    grid-column: span 2;
    display: flex;
}

/* 4.3 Bottom */
footer .bottom {
    margin-top: 6rem;
    padding: 4rem 0;
    border-top: .1rem solid #5C5C5C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

/* RESIZE */
@media (max-width: 1340px) {
    /* 2. HEADER */
    header {
        position: sticky;
    }

    header.header-light:not(.scrolled) {
        border-bottom-color: #eee;
        background-color: white;
    }

    header .container {
        padding: 1.2rem 0;
    }

    /* 2.1 Logo */
    header .logo img {
        height: 3.4rem;
    }

    header.header-light:not(.scrolled) .logo img.logo-color {
        display: block;
    }
    
    header.header-light:not(.scrolled) .logo img.logo-white {
        display: none;
    }

    /* 2.2 Menu */
    header .menu-main-menu-container {
        display: none;
    }
    /* End */

    header .text-wrapper > div {
        gap: 2rem;
    }

    header .text-wrapper .desktop {
        display: none;
    }

    header .text-wrapper .mobile {
        display: flex;
    }

    header .text-wrapper a {
        font-size: 1.3rem;
    }

    header .text-wrapper a.btn {
        height: 3.2rem;        
        padding: 0 1rem;
        align-items: center;
    }

    header .hamburger {
        display: flex;
    }

    /* 3. MAIN */
    header.header-dark + main,
    .single-post main {
        padding-top: 0;
    }
}

@media (max-width: 1024px) {
    /* 1. GENERAL */
    :root { 
        --grid-padding: 2rem;
    }

    /* 1.1 Headings */
    h1,
    h1.small {
        font-size: 4.5rem;
        line-height: 1.1;
    }

    h2,
    h2.small {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 2.6rem;
        line-height: 1.2;
    }

    /* 1.4 Initials */
    .pt-lg {
        padding-top: 9rem;
    }

    .pt-md {
        padding-top: 7rem;
    }

    .pb-lg {
        padding-bottom: 9rem;
    }

    .pb-md {
        padding-bottom: 7rem;
    }

    /* 4. FOOTER */
    /* 4.1 Top */
    footer .top {
        grid-template-columns: repeat( 2, 1fr );
        grid-gap: 5rem 6rem;
    }

    /* 4.2 Middle */
    footer .middle {
        grid-template-columns: repeat( 2, 1fr );
        grid-gap: 5rem 6rem;
    }

    footer .middle .logos-wrapper {
        grid-column: span 2;
    }

    footer .middle .logo {
        grid-column: inherit;
    }
}

@media (max-width: 899px) {
    /* 1. GENERAL */
    body {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    /* 1.2 Text */
    p {
        margin: 0 0 2rem;
    }

    blockquote {
        font-size: 2rem;
        line-height: 1.3;
    }

    /* 1.1 Headings */
    h1 {
        margin-bottom: 1.5rem;
        font-size: 4rem;
    }

    h1.small {
        font-size: 2.8rem;
    }

    h2 {
        margin-bottom: 1.5rem;
        font-size: 2.6rem;
    }

    h2.small,
    h3 {
        margin-bottom: .5rem;
        font-size: 2.2rem;
    }

    h4 {
        font-size: 2rem;
    }

    h5 {
        font-size: 1.6rem;
    }

    /* 1.3 Lists */
    ul,
    ol {
        margin: 0 0 2rem;
    }

    /* 1.3.1 Checklist */
    ul.checklist li {
        font-size: 1.7rem;
    }

    ul.checklist li::before {
        top: .1rem;
    }

    /* 1.5 Buttons */
    .btn {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    /* 1. GENERAL */    
    /* 1.4 Initials */
    .pt-lg {
        padding-top: 7rem;
    }

    .pt-md {
        padding-top: 7rem;
    }

    .pb-lg {
        padding-bottom: 7rem;
    }

    .pb-md {
        padding-bottom: 7rem;
    }

    /* 4. FOOTER */
    /* 4.1 Top */
    footer .top {
        padding-top: 7rem;
    }

    /* 4.2 Middle */
    footer .middle {
        padding-top: 7rem;
    }
}

@media (max-width: 599px) {
    /* 1. GENERAL */
    :root { 
        --grid-padding: 1.5rem;
    }
}

@media (max-width: 499px) {
    /* 1. GENERAL */
    /* 1.5 Buttons */
    .btn {
        margin: 0 0 1rem;
        padding: 1.35rem 2rem;
        display: flex;
        justify-content: center;
    }

    .btn:last-child {
        margin: 0;
    }

    /* 4. FOOTER */
    footer .top {
        grid-gap: 5rem 3rem;
    }

    /* 4.2 Middle */
    footer .middle {
        grid-gap: 3rem;
    }

    footer .middle .logo img {
        width: 95%;
    }
}

/* FONT FACE */
@font-face {
    font-family: 'Satoshi';
    src: url('assets/fonts/Satoshi/400/Satoshi-Regular.eot');
    src: url('assets/fonts/Satoshi/400/Satoshi-Regular.woff2') format('woff2'),
        url('assets/fonts/Satoshi/400/Satoshi-Regular.woff') format('woff'),
        url('assets/fonts/Satoshi/400/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/fonts/Satoshi/700/Satoshi-Bold.eot');
    src: url('assets/fonts/Satoshi/700/Satoshi-Bold.woff2') format('woff2'),
        url('assets/fonts/Satoshi/700/Satoshi-Bold.woff') format('woff'),
        url('assets/fonts/Satoshi/700/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}