@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

/* ----------------------------
### BASICS & FONTS
---------------------------- */

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

body {
    font-family: 'Quicksand', sans-serif;
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1600 - 300)));
    line-height: 1.68;
    background-repeat: repeat;
    background-blend-mode: overlay;
    border-radius: 10px;
    margin: auto;
    background-attachment: fixed;
    background: #fbfbfb;
}

html {
    font-size: 62.5%;
}

ol, ul {
    padding-left: 4rem;
    margin: 4rem auto;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
}


p > a {
    font-weight: bold;
}

h1 {
    font-size: calc(34px + (52 - 34) * ((100vw - 300px) / (1600 - 300)));
    text-align: center;
    margin-bottom: 5rem;
    line-height: 1.2;
}

h2 {
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 300;
}

h3 {
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 4rem;
}

.aligncenter {
    margin: 4rem auto;
    display: block;
}

h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
}

details[open] {
  margin-bottom: 1.5em;
}

summary h3 {
  font-size: 1.1em;
  display: inline;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 4rem;
}
th, td {
	border: 1px solid;
	padding: 2rem;
}

th {
	background: var(--accent);
	color: #fff;
	border-color: #000;
	text-align: left;
}

@media(max-width: 1000px) {
    h2 {
        font-size: 3rem;
    }
    article .content-inner {
        padding: 4rem 0;
    }
}
/* ----------------------------
### CLASSES USED BY JS
---------------------------- */

.section-cover {
	background-color: var(--dark-background);
}

.background-tile {
	background-repeat: repeat;
	background-image: var(--body-background-image);
	background-color: var(--dark-background);
	background-attachment: fixed;
}

.background-photo {
    background-image: var(--body-background-image);
    background-color: var(--dark-background);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.background-cover-photo .section-cover {
    background-size: cover;
    background-image: var(--header-background-image);
    background-color: var(--dark-background);
    background-position: center;
}
.background-cover-tile .section-cover {
	background-repeat: repeat;
	background-image: var(--header-background-image);
	background-color: var(--dark-background);
}

.background-tile .content-area {
    padding-top: 0;
}
.background-photo .content-area {
    padding-top: 0;
}

.background-tile article,
.background-tile .widget {
    box-shadow: none;
}

.background-photo article,
.background-tile .widget {
    box-shadow: none;
}

.default-background-image {
	background-image: var(--body-background-image);
	background-color: var(--dark-background);
	background-size: cover;
	background-attachment: fixed;
}
.default-cover-image .section-cover {
	background-image: var(--header-background-image);
	background-color: var(--dark-background);
	background-size: cover;
	background-attachment: scroll;
	background-position: center;
}
/* ----------------------------
### CONTENT GRID
---------------------------- */

.content-area {
	display: grid;
	grid-template-columns: 1fr 400px;
	grid-gap: 8rem;
	padding: 8rem;
}


@media(max-width: 1400px) {
    .content-area {
    	grid-template-columns: 1fr 350px;
    	grid-gap: 6rem;
	    padding: 6rem;
    }
}

@media(max-width: 1200px) {
    .content-area {
    	grid-template-columns: 1fr 320px;
    	grid-gap: 4rem;
	    padding: 4rem;
    }
}

@media(max-width: 1000px) {
    .content-area {
    	grid-template-columns: 1fr;
    	grid-gap: 0;
	    padding: 2rem;
    }
}

/* ----------------------------
### ARCHIVES
---------------------------- */

.archive-page-title {
	padding: 4rem;
	display: block;
	background: var(--accent);
	color: #fff;
}
/* ----------------------------
### ARTICLE
---------------------------- */
.widget
 {
    box-shadow: 0 7px 8px -3px #eaeaea;
}
.widget {
	margin-bottom: 4rem;
}
article {
    box-shadow: 0 7px 8px -3px #eaeaea;
}
article {
	margin: 0 auto 8rem;
	position: relative;
	z-index: 100;
	border-top: 20px solid;
}

article .content-inner {
    max-width: 860px;
    margin: auto;
    width: 80%;
    padding: 8rem 0;
}

article h2,
article h3 {
    margin-top: 4rem;
}

article .entry-title {
  margin-top: 0;
  margin-bottom: 4rem;
}
article .entry-title a {
	text-decoration: none;
	font-weight: bold;
	font-size: 4.5rem;
	margin-bottom: 4rem;
	color: inherit;
}
article .entry-footer {
	padding-top: 4rem;
	border-top: 1px solid;
	margin-top: 4rem;
}
article .entry-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
article .post-categories {
	margin-bottom: 1.5rem;
}
article .post-category {
	text-decoration: none;
	padding: 0.5rem 1rem;
	display: inline-block;
	font-size: 1.7rem;
}

article .post-tag {
	border: 1px solid #e1e1e1;
	color: #9f9f9f;
	text-decoration: none;
	padding: 0.5rem 1rem;
	display: inline-block;
	font-size: 1.7rem;
	text-transform: capitalize;
}

article .post-tags ul,
article .post-categories ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

@media(max-width: 1000px) {
    article {
    	margin: 0 auto 4rem;
    }
}


.post-navigation {
	padding: 8rem;
	background: var(--accent);
}

.post-navigation.nav-both .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-navigation a {
    color: #fff;
}
.post-navigation .next-post {
  text-align: right;
}
/* ----------------------------
### SIDEBAR
---------------------------- */

.widget-title {
	display: block;
	text-align: center;
	padding: 2rem;
	font-weight: bold;
}

.widget-content {
	width: 80%;
	margin: auto;
  padding: 4rem 0;
}

.widget-content > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-content > ul > li > a {
  text-decoration: none;
  display: block;
  font-size: 1.7rem
}

.widget-content > ul > li {
  border-bottom: 1px solid;
  padding: 1.5rem 0;
}

.widget-content > ul > li:first-of-type {
  padding-top: 0;
}
.widget-content > ul > li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

/* ----------------------------
### SITE HEADER
---------------------------- */

.site-header {
    padding: 2rem 0;
}
.site-header > .content-inner > ul > li > a {
    color: #FFF;
    text-decoration: none;
}
.site-header > .content-inner {
    max-width: 1400px;
    margin: auto;
    width:  80%;
}
.site-header > .content-inner > ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* ----------------------------
### SITE FOOTER
---------------------------- */

.site-footer {
	min-height: 200px;
	display: flex;
	align-items: center;
	align-content: center;
	text-align: center;
	justify-content: center;
	border-top: 20px solid;
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------
### SECTION: COVER
---------------------------- */

.section-cover {
    color: #fff;
    display: flex;
    align-items: center;
    background-blend-mode: overlay;
}
.home .section-cover {
    min-height: 60vh;
}
.section-cover > .content-inner {
    max-width: 1400px;
    margin: auto;
    padding: 8rem 0;
    width: 80%;

}
.section-cover .site-title {
	text-align: left;
	margin-bottom: 0.5rem;
	font-size: 5rem;
	font-weight: bold;
	line-height: 1.2;
}
.section-cover .site-description {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
}
.section-cover .read-more a {
	text-decoration: none;
	font-size: 1.7rem;
	font-weight: bold;
	border: 1px solid;
	padding: 1rem 2rem;
	border-radius: 4px;
}
.section-cover .home-link {
    text-decoration: none;
	display: flex;
	flex-direction: column;
}
@media(max-width:800px) {
    .section-cover {
        min-height: unset;
    }
}

/* ----------------------------
### PRIVACY POLICY
---------------------------- */
.privacy .content-area {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 8rem;
	padding: 0 8rem 8rem;
}

/* ----------------------------
### KEY TAKEAWAYS
---------------------------- */
.key-takeaways ul {
  padding: 0;
  margin: 0;
}
.key-takeaways li {
	list-style: none;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 4rem 0;
}
/* ----------------------------
### FAQS
---------------------------- */
.faqs details {
  background: rgba(0,0,0,0.01);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

/* ----------------------------
### BLOCK QUOTE
---------------------------- */
blockquote {
	border-left: 10px solid;
	padding: 2rem;
	margin-bottom: 4rem;
	background: rgba(0,0,0,0.05);
	margin-top: 4rem;
}

blockquote p {
  margin: 0;
}

/* ----------------------------
### COLORS / IMAGES
---------------------------- */
body {
	color: #111;
}
article .entry-content a {
    color: var(--accent);
}
article {
	border-color: var(--accent);
}
article {
	background-color: var(--light-background);
}
blockquote {
    border-color: var(--accent);
}
.widget {
	background-color: var(--light-background);
}
.widget-title {
	background-color: var(--accent);
	color: #fff;
}
.widget-content > ul > li {
	border-color: var(--accent);
}
.widget-content > ul > li > a {
	color: inherit;
}
article .entry-content a {
    color: var(--accent);
}
article .entry-footer {
	border-color: var(--accent);
}
article .post-category {
	background: var(--accent);
	color: #fff;
}
article .post-tag {
    border-color: var(--accent);
	color: var(--accent);
}
.section-cover .read-more a {
	border-color: #fff;
	background: var(--accent);
	color: #fff;
}
.section-cover .home-link {
    color: #fff;
}
.site-header {
     background-color: var(--accent);   
}
.site-footer {
	border-color: var(--accent);
	background-color:var(--light-background);
}