@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #111111;
    --secondary: #e7e49f;
    --shades: rgb(234, 230, 230);
    --bg: #111111;
    --clr-1: #055eed;
    --clr-2: #ce3f6a;
    --clr-3: #e7e49f;
    --clr-4: #93c572;
    --blur: 0.5rem;
    --fs: clamp(2rem, 10vw, 4rem);
    --ls: clamp(-1.75px, -0.25vw, -3.5px);
}

@media (max-width: 767px) {
    html {
        overflow-x: clip;
    }
}

html {
    font-family: "Fira Sans", system-ui;
    -webkit-font-smoothing: antialiased;
    padding: 0.625rem 0;
    background: linear-gradient(
            to bottom right,
            transparent 48%,
            #efefef 48%,
            #efefef 52%,
            transparent 52%
        ),
        linear-gradient(
            to bottom left,
            transparent 48%,
            #efefef 48%,
            #efefef 52%,
            transparent 52%
        );
    background-size: auto, auto;
    background-size: 0.25rem 0.25rem;
}

body {
    color: rgb(8, 8, 8);
    line-break: auto;
    font-family: "Fira sans", "Helvetica Neue", Helvetica;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" on;
}

a {
    text-decoration: none;
    color: #efefef;
}

.subheading h1 {
    width: fit-content;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    font-size: 30px;
    letter-spacing: 0.5px;
    color: white;
    margin-top: 30px;
    font-weight: 200;
    background-color: var(--primary);
    text-transform: uppercase;
    column-span: all;
}

.headline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.425rem;
    font-size: 24px;
    font-weight: 400;
}

.header {
    height: 100vh;
    position: relative;
}

.header h1 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    overflow: hidden;
}

.header h1 {
    color: var(--shades);
}

.header {
    background-color: var(--primary);
}

header h1 {
    font-size: 54px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: var(--ls);
    position: relative;
    overflow: hidden;
    background: var(--bg);
    margin: 0;
    max-height: 100vh;
}

.navbar {
    background-color: var(--primary);
    -webkit-box-shadow: 0 0.875rem 0.875rem 0.875rem rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0.875rem 0.875rem -0.875rem rgba(0, 0, 0, 0.75);
    box-shadow: 0 0.875rem 0.875rem -0.875rem rgba(0, 0, 0, 0.75);
}
.sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hidden {
    display: none;
}

.display__logo {
    font-size: 3.5rem;
    margin-bottom: 0;
    margin-top: 0;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

nav {
    position: relative;
    margin-bottom: 50px;
}

.nav__items {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 5px;
}

.nav__link {
    color: var(--shades);
    text-decoration: none;
}

.brand {
    margin: 0;
    font-size: 1.45em;
}

.brand a {
    padding: 0.625rem 0.938rem;
    text-align: center;
    display: block;
}

.logo {
    display: inline-block;
    padding-top: 0.2rem;
    padding-bottom: 0;
    margin-right: 1rem;
    line-height: inherit;
    color: white;
    margin-left: 0.563rem;
}

.logo::before {
    display: inline-block;
    vertical-align: auto;
    color: white;
}

.brand .nav__link,
.nav__items .nav__link {
    padding: 0.625rem 0.938rem;
    text-align: center;
    display: block;
}

.nav__items .nav__link {
    color: var(--shades);
    font-size: 0.99rem;
}

.nav__items .nav__link:hover {
    color: var(--secondary);
}

@media (min-width: 767px) {
    .navbar,
    .nav__items {
        display: flex;
    }
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    header h1 {
        font-size: 18px;
        padding: 5px;
    }
    .header {
        height: 50vh;
        position: relative;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background-color: var(--primary);
        opacity: 0;
        transition: all 0.2s ease;
        pointer-events: none;
    }
    .nav .nav__items {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        max-height: fit-content;
        padding-inline-start: 0;
    }
    .nav .nav__items .nav__item {
        display: block;
        float: none;
        width: 100%;
        text-align: right;
        margin-bottom: 0.625rem;
    }
    .nav .nav__items .nav__item:nth-child(1) a {
        transition-delay: 0.1s;
    }

    .nav .nav__items .nav__item:nth-child(2) a {
        transition-delay: 0.2s;
    }

    .nav .nav__items .nav__item:nth-child(3) a {
        transition-delay: 0.3s;
    }

    .nav .nav__items .nav__item:nth-child(4) a {
        transition-delay: 0.4s;
    }
    .nav .nav__items .nav__item:nth-child(5) a {
        transition-delay: 0.5s;
    }

    .nav .nav__items .nav__item:nth-child(6) a {
        transition-delay: 0.6s;
    }

    .nav .nav__items .nav__item .nav__link {
        padding: 0.625rem 25px;
        opacity: 0;
        color: var(--secondary);
        font-size: 18px;
        font-weight: 600;
        transform: translateY(-1.25rem);
        transition: all 0.2s ease;
    }
    .nav .nav__items .nav__item .nav__link:hover {
        color: #fcfcfc;
    }
    .nav__open {
        position: absolute;
        right: 0.625rem;
        top: 5px;
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
    }
    .nav__open i {
        display: block;
        width: 1.11rem;
        height: 2px;
        background-color: var(--secondary);
        border-radius: 2px;
        margin-left: 0.625rem;
    }
    .nav__open i:nth-child(1) {
        margin-top: 16px;
    }
    .nav__open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav__open i:nth-child(3) {
        margin-top: 4px;
    }
}

#nav:checked + .nav__open {
    transform: rotate(45deg);
}

#nav:checked + .nav__open i {
    background-color: var(--shades);
    transition: transform 0.2s ease;
}

#nav:checked + .nav__open i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}

#nav:checked + .nav__open i:nth-child(2) {
    opacity: 0;
}

#nav:checked ~ .nav__item a {
    display: block !important;
}

#nav:checked + .nav__open i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav {
    z-index: 9990;
    opacity: 1;
    pointer-events: auto;
}

#nav:checked ~ .nav ul li a {
    opacity: 1;
    transform: translateY(0);
}

/*
[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}
[data-pagination] {
  line-height: 1;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  margin: 1em auto;
  text-align: center;
  transition: font-size 0.2s ease-in-out;
}
[data-pagination] ul {
  list-style-type: none;
  display: inline;
  margin: 0;
  padding: 0.5em;
}
[data-pagination] ul li {
  display: inline-block;

  width: auto;
  border-radius: 3px;
}

[data-pagination] i {
  font-size: inherit;
}

[data-pagination] > a {
  font-size: 100%;
}
[data-pagination] a {
  color:var(--primary);
  text-decoration: none;
  font-size: 100%;
  padding: 0.5em;
}
[data-pagination] a:focus,
[data-pagination] a:hover {
  color:var(--secondary);
  text-decoration: none;
}
[data-pagination] li.current {
  background-color: var(--primary);
  color: var(--secondary);
}
/* Disabled & Hidden Styles */
/*
[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 350px) {
  [data-pagination] {
    font-size: 10pt;
  }
}
@media (min-width: 500px) {
  [data-pagination] {
    font-size: 12pt;
  }
}
@media (min-width: 700px) {
  [data-pagination] {
    font-size: 12pt;
  }
}
@media (min-width: 900px) {
  [data-pagination] {
    font-size: 15pt;
  }
}
*/

.subheading span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.425rem;
    font-size: 33px;
    letter-spacing: 0.5px;
    color: white;
    margin-top: 60px;
    margin-bottom: 30px;
    background-color: var(--primary);
    text-transform: uppercase;
    column-span: all;
}

.subhead2 span {
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 24px;
    color: var(--primary);
    color: white;
    background-color: var(--primary);
    text-transform: uppercase;
    column-span: all;
    opacity: 90%;
    font-weight: 400;
}

h2 {
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--secondary);
    background-color: var(--primary);
    text-transform: uppercase;
    column-span: all;
    opacity: 90%;
    font-weight: 300;
}

.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    mix-blend-mode: darken;
    pointer-events: none;
}

.aurora__item {
    overflow: hidden;
    position: absolute;
    width: 60vw;
    height: 60vw;
    background-color: var(--clr-1);
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    filter: blur(var(--blur));
    mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
    top: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
    background-color: var(--clr-3);
    right: 0;
    top: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
    background-color: var(--clr-2);
    left: 0;
    bottom: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
    background-color: var(--clr-4);
    right: 0;
    bottom: -50%;
    animation: aurora-border 5s ease-in-out infinite,
        aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0% {
        top: 0;
        right: 0;
    }

    50% {
        top: 100%;
        right: 75%;
    }

    75% {
        top: 100%;
        right: 25%;
    }

    100% {
        top: 0;
        right: 0;
    }
}

@keyframes aurora-2 {
    0% {
        top: -50%;
        left: 0%;
    }

    60% {
        top: 100%;
        left: 75%;
    }

    85% {
        top: 100%;
        left: 25%;
    }

    100% {
        top: -50%;
        left: 0%;
    }
}

@keyframes aurora-3 {
    0% {
        bottom: 0;
        left: 0;
    }

    40% {
        bottom: 100%;
        left: 75%;
    }

    65% {
        bottom: 40%;
        left: 50%;
    }

    100% {
        bottom: 0;
        left: 0;
    }
}

@keyframes aurora-4 {
    0% {
        bottom: -50%;
        right: 0;
    }

    50% {
        bottom: 0%;
        right: 40%;
    }

    90% {
        bottom: 50%;
        right: 25%;
    }

    100% {
        bottom: -50%;
        right: 0;
    }
}

@keyframes aurora-border {
    0% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }

    25% {
        border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
    }

    50% {
        border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
    }

    75% {
        border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
    }

    100% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }
}

.band {
    max-width: 100%s;
    margin: 0.625rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 0.625rem;

    @media (min-width: 30em) {
        grid-template-columns: 1fr 1fr;
    }

    @media (min-width: 60em) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background: white;
    text-decoration: none;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    top: 0;
    transition: all 0.1s ease-in;
    &:hover {
        top: -2px;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    }

    article {
        padding: 2px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    article h1 {
        background-color: transparent;
        color: var(--primary);
        font-weight: 500;
        text-transform: uppercase;
    }

    h1 {
        font-size: 24px;
        font-family: "Fira Sans";
        margin: 1px;
        column-span: all;
        background: black;
        color: white;
        padding-left: 1rem;
        text-transform: uppercase;
    }
    p {
        line-height: 1.6rem;
        padding: 0 0.5rem;
        font-family: "Fira Sans";
        text-overflow: ellipsis;
    }
    span {
        color: var(--primary);
        letter-spacing: 0.01em;
    }

    .thumb {
        padding-bottom: 0;
        background-size: cover;
        background-position: center center;
        filter: contrast(70%);
        filter: saturate(180%);
        overflow: hidden;
        position: relative;
        transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
    }

    .thumb:hover {
        filter: grayscale(0) contrast(1);
    }
}

.item-1 {
    @media (min-width: 60em) {
        grid-column: 1 / span 2;

        h1 {
            font-size: 27px;
        }
    }
}

/* singlepost image style */

hr {
    border: 0;
    height: 2px;
    margin-top: 1rem;
    margin-bottom: 20px;
    width: 90%;
    background: linear-gradient(147deg, #055eed, #ce3f6a);
}

.img-section {
    height: auto;
    width: 60%;
    padding: 0.625rem;
    object-fit: cover;
    cursor: pointer;
    object-fit: cover;
    border-radius: 5px;
}

.article_card {
    margin: 30px 30px;
    max-width: 900px;
    border-radius: 5px;
    display: flex;
    box-shadow: 0 5px 1.25rem 0.625rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.flex_card {
    flex: 0 3 30%;
}

.article_img {
    width: 100%;
    cursor: pointer;
    object-fit: cover;
    border-radius: 0%;
}

.category_name {
    background-color: var(--primary);
    text-transform: uppercase;
    flex: 0 0 40px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgb(255, 255, 255);
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cty-btn {
    background: var(--secondary);
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px;
    border: none;
    width: auto;
    height: auto;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    margin-left: auto;
    cursor: pointer;
}

.article_title {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.01em;
}

.article_title a {
    font-weight: 500;
    color: #111111;
}

.article_area {
    background-color: #fff;
    flex: 1;
    padding: 0.625rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.article_description {
    font-size: 0.938rem;
    font-family: "Fira sans";
    text-align: left;
    display: block;
}

@media only screen and (max-width: 768px) {
    .article_description {
        display: none;
    }

    .article_title {
        display: flex;
        align-items: center;
        text-transform: uppercase;
        font-size: 8px;
    }

    .article_img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .btn {
        display: none;
    }

    .category_name {
        background-color: var(--primary);
        text-transform: uppercase;
        flex: 0 0 30px;
        padding: 10px;
        font-size: 0.938rem;
        font-weight: 400;
        letter-spacing: 2px;
        color: rgb(255, 255, 255);
        writing-mode: vertical-lr;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
}

.article_details {
    display: contents;
    margin: auto;
}

.writer_name {
    font-size: 12px;
    margin-right: auto;
    display: flex;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
}

.read_more {
    background: var(--primary);
    padding: 0.625rem;
    border: none;
    width: auto;
    height: auto;
    border-radius: 5px;
    font-size: 0.938rem;
    color: white;
    box-shadow: 0 4px 1.25rem;
    margin-left: auto;
    cursor: pointer;
    &:hover {
        box-shadow: 0 5px 0.625rem rgba(44, 44, 44, 0.5);
        color: var(--secondary);
    }
}

.social-tags ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}

.social-tags li + li {
    margin-left: 0.5rem;
}

.social-tags a {
    border: 0.063rem solid lighten(#333, 40%);
    border-radius: 3px;
    color: lighten(#333, 40%);
    font-size: 0.75rem;
    height: 1.5rem;
    line-height: 1.5rem;
    letter-spacing: 0.063rem;
    padding: 0 0.5rem;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    width: 5rem;
}
.art1-0 {
    max-width: 800px;
    background-color: var(--primary);
    color: #ffffff;
    margin: 0%;
    padding-left: 0.625rem;
    display: flex;
}

.art1-0 h1 {
    font-size: 90px;
}

.nl-area {
    padding: 0.625rem;
}

.nl-cont {
    background-color: rgb(255, 255, 255);
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 1.25rem rgba(36, 36, 36, 0.2);
}

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    width: auto;
    max-height: auto;
    border-radius: 0.625rem;
}

.subscribe__title {
    font-weight: 300;
    font-size: 26px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #111111;
    color: var(--secondary);
    padding: 10px;
    text-transform: uppercase;
}

.subscribe__copy {
    max-width: 450px;
    text-align: center;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.grid-wrapper {
    grid-template-columns: repeat(12, 1fr);
}

.grid-items {
    grid-column: span 4;
}

.form {
    margin-bottom: 25px;
}

.form__email {
    padding: 12px 18px;
    border-radius: 5px;
    border: 1px solid var(--primary);
    width: 110%;
    font-size: 15px;
    color: #0f121f;
}

.form__email:focus {
    outline: 0.063rem solid var(--primary);
}

.form__button {
    background: var(--primary);
    cursor: pointer;
    padding: 0.625rem;
    border: none;
    width: 150px;
    height: 45px;
    border-radius: 5px;
    font-size: 1.125rem;
    color: white;
    box-shadow: 0 4px 1.25rem rgba(53, 53, 53, 0.7);
}

.form__button:hover {
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.7);
}

.notice {
    margin-top: 20px;
    width: 490px;
    font-size: 12px;
    padding-bottom: 30px;
}

.blog-container {
    box-shadow: hsla(0, 0, 0, 0.2) 0 4px 2px -2px;
    margin: 38px auto;
    width: auto;
    @media screen and (min-width: 480px) {
        width: 28rem;
    }
    @media screen and (min-width: 767px) {
        width: 40rem;
    }
    @media screen and (min-width: 959px) {
        width: 50rem;
    }
}

.blog-container a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.2s ease;
    &:hover {
        color: var(--secondary);
        background-color: var(--primary);
        padding: 2px;
    }
}

.blog-cover {
    object-fit: fill;
    background-size: cover;
    border-radius: 5px 5px 0 0;
    height: 30rem;
    box-shadow: inset hsla(0, 0, 0, 0.2) 0 64px 64px 16px;
}

.blog-author {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
}

.blog-author img {
    border-radius: 45%;
    content: "";
    display: inline-block;
    height: 20px;
    margin-left: 0.9rem;
    position: relative;
    top: 5px;
    width: 20px;
    font-size: 12px;
}

.blog-author span {
    color: var(--primary);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 7px;
}

.blog-body {
    margin: 0 auto;
    width: 90%;
}

.video-body {
    height: 100%;
    width: 100%;
}

.blog-title {
    width: auto;
    text-align: left;
}

.blog-title h1 a {
    color: white;
    font-weight: 100;
}

.blog-title span a {
    color: white;
    font-weight: 100;
}

.blog-summary p {
    color: lighten(#333, 10%);
}

.article-head {
    width: 100%;
    max-width: 600;
    position: relative;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0.625rem;
    background-size: 0 auto;
}

.article-body {
    width: 100%;
    max-width: 800px;
    font-family: "Fira Sans";
    padding: 3vw;
    margin: 0.625rem auto;
    box-shadow: 0 0 300px rgb(222, 222, 222);
    background: #fff;
}

.article-body p {
    line-height: 1.6rem;
    padding: 0 1.5rem;
}

.blog-category {
    background: var(--secondary);
    text-transform: uppercase;
    float: right;
    padding: 0.3rem;
    font-weight: 600;
}

.blog-footer {
    border-top: 0.063rem solid lighten(#333, 70%);
    margin: 0 auto;
    padding-bottom: 0.125rem;
    width: 80%;
}

.blog-footer ul {
    list-style: none;
    display: flex;
    flex: row wrap;
    justify-content: flex-end;
    padding-left: 0;
}

.blog-footer li:first-child {
    margin-right: auto;
}

.blog-footer li + li {
    margin-left: 0.5rem;
}

.blog-footer li {
    color: lighten(#333, 40%);
    font-size: 0.75rem;
    height: 1.5rem;
    letter-spacing: 0.063rem;
    line-height: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    & a {
        color: lighten(#333, 40%);
    }
}

.published-date {
    border: 0.063rem solid lighten(#333, 40%);
    border-radius: 3px;
    padding: 0 0.5rem;
}

img {
    height: 100%;
    max-width: 100%;
    vertical-align: middle;
    object-fit: cover;
    object-position: center;
    border-radius: 0.15rem;
    filter: contrast(80%) saturate(110%) brightness(1.2);
    overflow: hidden;
    transition: filter 0.2s cubic-bezier(0.43, 0.41, 0.22, 0.91),
        transform 0.2s cubic-bezier(0.43, 0.41, 0.22, 0.91);
    &:hover {
        filter: grayscale(0) contrast(1);
    }
}

@media (max-width: 768px) {
    img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: auto;
    }
    .blog-cover {
        object-fit: fill;
        background-size: cover;
        border-radius: 5px 5px 0 0;
        height: auto;
        box-shadow: inset hsla(0, 0, 0, 0.2) 0 64px 64px 16px;
    }

    .notice {
        margin-top: 20px;
        width: auto;
        text-align: center;
        font-size: 12px;
        padding-bottom: 30px;
    }
}

.fig-img {
    width: 100%;
    filter: grayscale(1) contrast(0.75);
    transition: 0.75s;
}
.fig-img:hover {
    filter: grayscale(0) contrast(1);
}

figcaption {
    font-size: 0.75rem;
    cursor: pointer;
}

.box-area {
    margin-top: 60px;
    width: 100%;
}

.top__trending {
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    margin: 0;
    height: 100%;
}

figure.top-trend {
    font-family: "Fira Sans";
    position: relative;
    margin: 12px;
    min-width: 300px;
    max-width: 380px;
    width: 100%;
    color: #333;
    text-align: left;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.top-trend * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

figure.top-trend img {
    float: right;
    max-width: 42%;
    vertical-align: middle;
    border-radius: 0 8px 8px 0;
}

figure.top-trend figcaption {
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px 0 0 8px;
}

figure.top-trend blockquote {
    position: relative;
    padding: 0.625rem 0.938rem 0.625rem 0.938rem;
    font-size: 0.7em;
    font-weight: 500;
    text-align: left;
    font-size: 0.938rem;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
}

.btn {
    background: var(--primary);
    padding: 7px;
    border: none;
    width: auto;
    height: auto;
    border-radius: 5px;
    font-size: 12px;
    color: white;
    box-shadow: 0 4px 20px rgba(53, 53, 53, 0.7);
    margin-left: auto;
    text-transform: uppercase;
    text-decoration: none;
}

.btn--block {
    display: block;
    width: 100%;
}

.btn:hover {
    box-shadow: 0 5px 0.625rem rgba(44, 44, 44, 0.5);
    color: var(--secondary);
}

@media only screen and (max-width: 768px) {
    .btn {
        background: var(--primary);
        padding: 5px;
        border: none;
        width: auto;
        height: auto;
        border-radius: 5px;
        font-size: 11px;
        color: white;
        box-shadow: 0 4px 1.25rem rgba(53, 53, 53, 0.7);
        margin-left: auto;
        text-transform: uppercase;
        text-decoration: none;
    }
    .btn:hover {
        box-shadow: 0 5px 0.625rem rgba(44, 44, 44, 0.5);
        color: var(--secondary);
    }
}

.cards__item {
    display: flex;
    padding: 1rem;
    @media (min-width: 1.25rem) {
        width: 50%;
    }
    @media (min-width: 56rem) {
        width: 33.3333%;
    }
}

.card__image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    filter: contrast(70%);
    filter: saturate(180%);
    overflow: hidden;
    position: relative;
    transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);

    &::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
}
@media (min-width: 40rem) {
    &::before {
        padding-top: 66.6%;
    }
}

.card__title {
    color: #444;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card__text {
    flex: 1 1 auto;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* contact us */

.contact-us {
    max-width: 41.25rem;
    margin: 50px auto;
    text-align: center;
}

.feedback-input {
    color: var(--primary);
    background: #fff;
    font-weight: 500;
    font-size: 0.938rem;
    border-radius: 5px;
    line-height: 22px;
    border: 0.063rem solid var(--primary);
    transition: all 0.3s;
    padding: 0.625rem;
    margin-bottom: 0.938rem;
    margin-top: 0.938rem;
    width: 100%;
    box-sizing: border-box;
    outline: 0;
}

.feedback-input:focus {
    border: 0.063rem solid #602525;
}

textarea {
    height: 150px;
    line-height: 150%;
    resize: vertical;
}

.contact-btn {
    margin-top: 0;
    text-transform: uppercase;
    background: var(--primary);
    cursor: pointer;
    padding: 0.625rem;
    border: none;
    width: 50%;
    height: 48px;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 1.25rem rgba(53, 53, 53, 0.7);
}

.contact-btn:hover {
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.6);
    color: var(--secondary);
    font-size: 1.25rem;
    transition: 0.3s;
}

.footer {
    height: auto;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 20px;
    background-color: var(--primary);
}

.blog-section {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem;
}

.scrollable-articles {
    width: 60%;
    overflow-y: scroll;
    max-height: 222vh;
}

.scrollable-articles article {
    margin-bottom: 1.25rem; /* Add space between articles */
    padding: 0.625rem;
    border-bottom: 0.063rem solid #ddd;
}

.sticky-article {
    width: 35%;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .sticky-article {
        display: none;
    }
}

.sticky-article article {
    position: sticky;
    top: 1.25rem;
    padding: 1.25rem;
    background-color: #f9f9f9;
    border: 0.063rem solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.sticky-article h3 {
    font-size: 24px;
    font-weight: 300;
    background-color: #e7e49f;
    text-transform: uppercase;
}

.sticky-article img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.625rem;
    object-fit: cover;
}

@media (max-width: 768px) {
    .scrollable-articles {
        width: 100%;
        overflow-y: scroll;
    }

    .sticky-article article {
        position: relative; /* Remove sticky behavior */
        visibility: hidden;
        box-shadow: none; /* Optional: simplify visuals for mobile */
    }

    .scrollable-articles article,
    .sticky-article article {
        margin-bottom: 1.25rem;
    }
}

.blog_cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards__items {
    display: flex;
    padding: 1rem;
    @media (min-width: 40rem) {
        width: 50%;
    }
    @media (min-width: 56rem) {
        width: 33.3333%;
    }
}

.blog__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.blog__title {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: capitalize;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
    background-color: #111111;
    opacity: 90%;
    color: white;
}

.blog__para {
    font-size: 0.938rem;
    line-height: 1.5px;
    line-height: 1.5;
    margin-bottom: 0.625rem;
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
}

.link__ {
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
    text-transform: capitalize;
}

.link__:hover {
    text-decoration: double;
    font-size: 16px;
    transition: 0.5s ease;
}

figure.post__more {
    font-family: "Fira Sans";
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 310px;
    width: 100%;
    color: #232020;
    background-color: #efefef;
    text-align: left;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding-inline: 10px;
}

figure.post__more .author {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5px 25px;
    color: var(--clr-2);
    background-color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

figure.post__more .author span {
    opacity: 0.8;
    margin: 0;
    font-weight: 600;
}

figure.post__more * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.post__more img {
    max-width: 100%;
    vertical-align: middle;
    object-fit: cover;
}

figure.post__more p {
    max-width: 100%;
    text-align: center;
}

.more__tags {
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    margin: 0;
    height: 100%;
}

.mvog-footer {
    position: relative;
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 13px;
}

.brand-logo {
    text-transform: uppercase;
    font-size: 2rem;
    &:hover {
        color: #efefef;
    }
}

.logo-footer {
    height: 15vh;
    padding-top: 30px;
    padding-bottom: 20px;
    position: relative;
    background-color: var(--primary);
    overflow: hidden;
}

.logo-footer span {
    font-size: 33px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
    margin: auto;
}

.row-mvog {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #efefef;
}

.text-style h2 {
    width: 60%;
    font-size: 15px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .text-style {
        width: auto;
        text-align: center;
        margin: 0 auto;
    }
}

.col-mvog {
    width: 100%;
    color: var(--secondary);
    display: block;
}

.col-mvog span {
    display: block;
    font-size: 15px;
    margin-bottom: 7px;
    text-transform: uppercase;
    color: #efefef;
}

.col-mvog ul {
    list-style-type: none;
    padding: 0;
    display: inline-flex;
    gap: 30px;
}

.col-mvog li {
    margin: 5px 0;
}

.col-mvog a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
    &:hover {
        text-decoration: underline;
        color: white;
    }
}

.sm-links-mvog img {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sm-links-mvog img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.copyright {
    text-align: center;
    width: 100%;
    height: 11vh;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .col-mvog {
        width: 100%;
        color: var(--secondary);
        display: block;
        font-size: 11px;
    }
    .col-mvog span {
        font-size: 12px;
    }

    .sm-row-mvog {
        margin: 10px 0;
    }
}

.grid-container {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 5px;
}

.infinite-scroll {
    display: flex;
    animation: scroll 50s linear infinite;
    &:hover {
        animation-play-state: paused;
    }
}

.article_card {
    flex: 0 0 250px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 1.25rem 0.625rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cty_card {
    display: flex;
    align-items: stretch;
    min-width: 100px;
    max-width: 150px;
    border-radius: 5px;
    box-shadow: 0 5px 1.25rem 0.625rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 10px;
}

.cty_img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0); /* Start at the first box */
    }
    100% {
        transform: translateX(-100%); /* Scroll the entire width */
    }
}

.key-highlight {
    margin-top: 30px;
    font-weight: 400;
    background-color: var(--clr-3);
    font-size: 15px;
    font-style: italic;
}

blockquote.key-quote {
    position: relative;
    display: inline-block;
    background: #f6f3da;
    padding: 2rem 3rem 3rem 4rem; /* Use relative units */
    border-radius: 0.5rem;
    font-family: "Fira Sans", sans-serif;
    color: #333;
    font-style: italic;
    text-align: left;
    margin-bottom: 1.1rem;

    /* Responsive box-shadow */

    transition: box-shadow 0.3s ease;

    &:hover {
        box-shadow: 0.1rem 0.1rem 0.5rem #999, 0.2rem 0.2rem 0.6rem #999,
            0.3rem 0.3rem 0.7rem #999;
    }

    /* Left quote */
    &::before {
        content: "❝";
        font-style: italic;
        position: absolute;
        top: -1rem; /* Responsive positioning */
        left: 1rem;
        font-family: "Fira Sans", serif;
        font-size: 3rem; /* Use responsive font size */
        color: var(--clr-2);
    }

    /* Right quote */
    &::after {
        content: "❞";
        font-style: italic;
        position: absolute;
        bottom: -1rem; /* Adjusted to align dynamically */
        right: 1rem;
        font-family: "Fira Sans", serif;
        font-size: 3rem; /* Use responsive font size */
        color: var(--clr-4);
    }

    /* Adjust padding and font size for larger screens */
    @media (min-width: 768px) {
        padding: 3rem 4rem 4rem 5rem;
        font-size: 1.2rem;
        &::before,
        &::after {
            font-size: 3rem;
        }
    }

    /* Adjust padding and font size for smaller screens */
    @media (max-width: 480px) {
        padding: 1.2rem 2rem 2rem 2.5rem;
        font-size: 1rem;
        &::before,
        &::after {
            font-size: 2.3rem;
        }
    }
}
