@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
    
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
}
img {
    max-width: 100%;
}
a {
    color: #4285f4;
}
.container {
    max-width: 1300px;
    padding: 0 24px;
    margin: auto;
}
.post-container {
    max-width: 1000px;
    overflow-x: hidden;
}
pre {
    overflow-x: scroll;
}
@media (max-width: 1100px) {
    .post-container {
        max-width: 100%;
    }
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 0;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    display: inline;
}
.site-logo {
    color: inherit;
    text-decoration: none;
    font-size: 24px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    margin-bottom: 12px;
}
.header-links {
    display: flex;
    justify-content: center;
    align-items: baseline;
    white-space: nowrap;
}
.header-link {
    display: flex;
    margin-right: 12px;
    margin-left: 12px;
    padding: 0;
    align-items: center;
    transition: color .2s;
    color: #2c2d36;
    font-weight: 700;
    text-decoration: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 24px;
    background: #EDEDED;
    color: #666;
    position: relative;
}
.hero-inner-text {
    margin: 42px;
}
.hero-social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-social-link svg {
    width: 24px;
    height: 24px;
}
.hero-social-link svg path {
    fill: #666;
}
.hero-social-link:hover svg path {
    fill: #333;
}
.hero-social-link:not(:last-child) {
    margin-right: 8px;
}
.hero-inner h1 {
    color: #333;
    font-size: 42px;
}
.hero-inner p {
    font-size: 22px;
}
.hero-ctas {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}
.hero-cta {
    width: max-content;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 1;
    box-sizing: border-box;
    font-weight: 500;
    border-radius: 0;
    padding: 0 25px;
    cursor: pointer;
    border: none;
    outline: 0;
    text-decoration: none;
    text-align: center;
    transition: background-color .2s ease-in-out,color .2s ease-in-out,box-shadow .2s ease-in-out,border .2s ease-in-out,transform .2s ease-in-out;
    border-radius: 25px;
    background-color: cadetblue;
    color: #fff;
}
@media (max-width: 1350px) {
    .hero-ctas .hero-cta {
        height: 48px;
        font-size: 20px;
    }
}
@media (max-width: 1250px) {
    .hero-ctas .hero-cta {
        padding: 0 15px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 1150px) {
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .hero-cta {
        max-width: 100%;
        width: 100%;
        font-size: 20px;
        height: 45px;
    }
}
.hero-cta:hover {
    box-shadow: inset 0 200px 200px 200px rgb(0,0,0,0.1);
    background-color: #f3ba52;
}
.featured-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.learning-track-courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}
.learning-track-course {
    text-decoration: none;
    opacity: 0.5;
    transition: .35s opacity ease-in-out;
}
.learning-track-course:hover,
.learning-track-course.no-selection {
    opacity: 1;
}
.learning-track-course h3 {
    color: #000;
}

.learning-track-course-cover {
    max-width: 350px;
}

.learning-track > p {
    margin-bottom: 32px;
}
footer {
    background-color: #ececec;
}

.blog-page-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-gap: 24px;
}
.post-grid, .related-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px,1fr));
    transition: 1s opacity ease-in-out;
}
.post-grid-post {
    padding: 16px;
    text-decoration: none;
    color: #333;
    transition: .35s opacity ease-in-out;
    opacity: 0.5;
}
.post-grid-post:hover,
.post-grid-post.no-selection {
    opacity: 1;
}

.post-grid-post-image {
    max-width: 350px;
    position: relative;
    width:300px;
    height:190px;
    background: lightgrey;
}
.post-grid-post-image img {
    object-fit: cover;
    object-position: center;
}
.post-grid-pagination {
    text-align: center;
}
.tag-cloud {
    display: grid;
    gap: 10px;
}
.tag {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    cursor: pointer;
    position: relative;
}
.tag a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.tag .close {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: grey;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
}
.tag.active {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    margin-right: 25px;
}
.tag-filter {
    margin-top: 25px;
}
.tag-filter hr {
    margin-bottom: 25px;
}
.tag-filter__title {
    text-transform: uppercase;
    font-size: 20px;
    color: #666;
}

img.loading {
    background-color: #444;
    animation: fading 1s infinite;
}
.image-container {
    overflow: hidden;
}
.image-container img {
    object-fit: cover;
    object-position: center;
}
@keyframes fading {
    0% {
        opacity: .1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: .1;
    }
}
.kg-image-card:not(.kg-width-wide) figcaption {
    max-width: 300px;
    text-align: center;
}
.kg-width-wide {
    width: 100%;
    margin: 0;
    text-align: center;
    clear: both;
}
.post-title + time {
    position: relative;
    top: -15px;
}
@media (min-width: 1440px) {
    section.hero {
        min-height: calc(100vh - 140px);
        display: flex;
    }
}

@media (max-width: 1400px) {
    .hero-inner h1 {
        font-size: 34px;
    }
    .hero-inner p {
        font-size: 20px;
    }
    .post-grid-post-image {
        max-width: 100%;
    }
    ul {
        padding-left: 24px;
    }
}

@media (max-width: 1200px) {
    .post-grid, .related-posts {
        grid-template-columns: repeat(2, minmax(100px,1fr));
    }
    .learning-track-course-cover {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 850px) {
    .post-grid, .related-posts {
        grid-template-columns: minmax(100px,1fr);
    }
}

@media (min-width: 769px) {
    .page-title-mobile {
        display: none;
    }
    .header-link:hover {
        transition: 0.5s all;
        transform: translateY(-2px);
    }
    .kg-image-card:not(.kg-width-wide):nth-of-type(odd) {
        float: left;
        clear: both;
        margin-left: 0;
    }
    .kg-image-card:not(.kg-width-wide):nth-of-type(even) {
        float: right;
        clear: both;
        margin-right: 0;
    }
    table {
        margin: auto;
        border-collapse: collapse;
        overflow-x: auto;
        display: block;
        width: fit-content;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
    .site-logo {
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        display: block;
        width: 100%;
        text-align: center;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .header-inner {
        flex-direction: column;
    }
    .hero-inner {
        display: flex;
        flex-direction: column-reverse;
        background-color: transparent;
        padding: 0;
    }
    .hero-inner-text {
        margin: 0 20px;
    }
    .hero-inner .image-container {
        max-height: 250px;
    }
    .hero-inner img {
        max-height: 400px;
        transform: translateY(-75px);
    }
    .blog-page-body {
        display: flex;
        flex-direction: column;
    }
    .sidebar {
        display: none;
    }
    h1.page-title {
        text-align: center;
    }
    .page-start-here .header-link-start-here,
    .page-about .header-link-about {
        display: none;
    }
    .learning-track-courses {
        grid-template-columns: repeat(2, 1fr);
    }
    body:not(.home-template) main {
        margin-top: 35px;
        border-top: 1px solid rgba(0, 0, 0, 0.3);
    }
    body:not(.home-template):not(.tag-template):not(.page-template):not(.post-template) .header-link-blog {
        display: none;
    }
    .tag-template .page-title-desktop {
        display: none;
    }
    .post-container iframe {
        max-width: calc(100vw - 48px - 1em);
        margin-left: calc(-24px - 1em);
    }
}
@media (min-width: 601px) {
    
}
@media (max-width: 600px) {
    .hero-cta {
        width: 100%;
    }
    .hero-social-links {
        justify-content: space-around;
        border-top: 1px solid;
        padding-top: 25px;
    }
    .hero-social-link svg {
        width: 50px;
        height: 50px;
    }
    .learning-track-courses {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .learning-track {
        border-top: 1px solid;
        margin-top: 20px;
    }
    .learning-track-course-cover {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .post-grid, .related-posts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .post-grid-post {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .post-container iframe {
        height: auto;
    }
}
.floating-ad.off {
    opacity: 0;
    bottom: -100%;
}
.floating-ad {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1;
    box-shadow: inset 0px 8px 8px -8px #CCC;
    transition: all 1s ease;
    max-width: 100vw;
}
.floating-ad .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    margin-bottom: 20px;
    column-gap: 20px;
}
.floating-ad h2 {
    margin-top: 0;
}
.floating-ad .image-container {
    grid-column: 2/3;
    grid-row: 1/4;
}
.floating-ad p {
    margin-bottom: 1.6rem !important;
}
div#floating-ad-countdown {
    position: absolute;
    right: 10px;
    top: 10px;
}
.floating-ad.static {
    position: static;
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
    background-color: #607D8B;
    color: white;
}
.floating-ad.static .container.post-container {
    color: white;
}
.floating-ad.static p a:not(.hero-cta) {
    color: currentColor;
}
@media (max-width: 800px) {
    .floating-ad .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .floating-ad h2 {
        font-size: 16px;
    }
    .floating-ad .image-container img {
        width: 100%;
        height: fit-content;
        max-width: 350px;
    }
    .floating-ad .hero-cta {
        width: 100%;
    }
    .floating-ad p {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    .floating-ad.static {
        padding-left: 0;
        padding-right: 0;
    }
}
