/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: area-normal, sans-serif;
}

#particles-js canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

p {
    line-height: 1.7;
}

.come-in {
    transform: translateY(150px);
    animation: come-in 0.8s ease forwards;
}

.come-in:nth-child(odd) {
    animation-duration: 0.6s;
    /* So they look staggered */
}

@keyframes come-in {
    to {
        transform: translateY(0);
    }
}

/* end of global */

@media(min-width: 1366px) {
    .regular-page-splide {
        position: relative;
        padding: 0 !important;
        width: 800px !important;
    }

    .splide__arrows {
        position: absolute;
        bottom: -20px;
        right: 40px;
        display: flex;
        gap: 8px;
    }

    .splide__arrow {
        background: transparent;
        border: none;
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .splide__arrow:hover {
        background: transparent;
        opacity: 0.7;
    }

    .splide__arrow svg {
        stroke: #ffffff;
        stroke-width: 2.5px;
        fill: none;
        width: 20px;
        height: 20px;
    }

    .first-fold-slide {
        border-radius: 5px;
        position: relative;
        width: 100%;
        height: 400px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-fold-slide-text {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .first-fold-slide h3 {
        margin: 0;
        text-align: right;
        font-family: montserrat, sans-serif;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 700;
        color: var(--secondary-color);
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.72);
    }

    .first-fold-slide h4 {
        margin: 0;
        text-align: right;
        font-size: 15px;
        font-weight: 800;
        color: var(--secondary-color);
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.96);
    }

    .first-article {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 50px 0;
    }

    .first-article-left {
        width: auto;
        margin: 0 25px 0 0;
    }

    .first-article-right {
        margin: 0 0 0 25px;
    }

    .first-article-image {
        width: 441px;
        height: 300px;
        margin: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-article a {
        font-size: 25px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        cursor: pointer;
        margin: 0;
        line-height: 0;
        line-height: 1.7;
    }

    .first-article a:hover {
        text-decoration: underline;
    }

    .first-article h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 10px 0;
    }

    .first-article h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 0 20px 0;
    }

    .first-article p {
        font-size: 17px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
        line-height: 1.7;
    }

    .title-tags {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin: 10px 0;
    }

    .title-tags span {
        color: var(--primary-color);
        font-size: 15px;
        font-weight: 700;
        margin: 5px 10px 0 0;
    }

    .article-count {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
    }

    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }

    .article-item {
        position: relative;
        width: 100%;
        background: var(--off-color);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease-out;
    }

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 36px rgba(0, 0, 0, 0.12);
    }

    .article-image {
        border-radius: 20px 20px 0 0;
        cursor: pointer;
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .article-content {
        padding: 25px;
    }

    .article-read-tag {
        font-size: 15px;
        font-weight: 700;
        color: var(--accent-color);
        margin: 0;
    }

    .article-title {
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 700;
        margin: 5px 0;
    }

    .article-title:hover {
        text-decoration: underline;
    }

    .article-description {
        font-size: 15px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
    }

    .pagination-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .previous-next {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
    }

    .pagination-container span {
        font-size: 20px;
        font-weight: 700;
        color: var(--font-light);
    }

    .page-number-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .page-number-container a {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 10px;
    }

    .page-number-container span {
        font-size: 20px;
        font-weight: 700;
        color: var(--font-light);
        margin: 0 10px;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .regular-page-splide {
        position: relative;
        padding: 0 !important;
        width: 700px !important;
    }

    .splide__arrows {
        position: absolute;
        bottom: -20px;
        right: 40px;
        display: flex;
        gap: 8px;
    }

    .splide__arrow {
        background: transparent;
        border: none;
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .splide__arrow:hover {
        background: transparent;
        opacity: 0.7;
    }

    .splide__arrow svg {
        stroke: #ffffff;
        stroke-width: 2.5px;
        fill: none;
        width: 20px;
        height: 20px;
    }

    .first-fold-slide {
        border-radius: 5px;
        position: relative;
        width: 100%;
        height: 350px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-fold-slide-text {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .first-fold-slide h3 {
        margin: 0;
        text-align: right;
        font-family: montserrat, sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-weight: 700;
        color: var(--secondary-color);
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.72);
    }

    .first-fold-slide h4 {
        margin: 0;
        text-align: right;
        font-size: 15px;
        font-weight: 800;
        color: var(--secondary-color);
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.96);
    }

    .first-article {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 50px 0;
    }

    .first-article-left {
        width: auto;
        margin: 0 25px 0 0;
    }

    .first-article-right {
        margin: 0 0 0 25px;
    }

    .first-article-image {
        width: 400px;
        height: 300px;
        margin: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-article a {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        cursor: pointer;
        margin: 0;
        line-height: 0;
        line-height: 1.7;
    }

    .first-article a:hover {
        text-decoration: underline;
    }

    .first-article h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 10px 0;
    }

    .first-article h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 0 20px 0;
    }

    .first-article p {
        font-size: 16px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
        line-height: 1.7;
    }

    .title-tags {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin: 10px 0;
    }

    .title-tags span {
        color: var(--primary-color);
        font-size: 15px;
        font-weight: 700;
        margin: 5px 10px 0 0;
    }

    .article-count {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
    }

    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }

    .article-item {
        position: relative;
        width: 100%;
        background: var(--off-color);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease-out;
    }

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 36px rgba(0, 0, 0, 0.12);
    }

    .article-image {
        border-radius: 20px 20px 0 0;
        cursor: pointer;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .article-content {
        padding: 25px;
    }

    .article-read-tag {
        font-size: 15px;
        font-weight: 700;
        color: var(--accent-color);
        margin: 0;
    }

    .article-title {
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0;
    }

    .article-title:hover {
        text-decoration: underline;
    }

    .article-description {
        font-size: 15px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
    }

    .pagination-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .previous-next {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
    }

    .pagination-container span {
        font-size: 20px;
        font-weight: 700;
        color: var(--font-light);
    }

    .page-number-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .page-number-container a {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 10px;
    }

    .page-number-container span {
        font-size: 20px;
        font-weight: 700;
        color: var(--font-light);
        margin: 0 10px;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .regular-page-splide {
        position: relative;
        padding: 0 !important;
        width: 450px !important;
    }

    .splide__arrows {
        position: absolute;
        bottom: -20px;
        right: 40px;
        display: flex;
        gap: 8px;
    }

    .splide__arrow {
        background: transparent;
        border: none;
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .splide__arrow:hover {
        background: transparent;
        opacity: 0.7;
    }

    .splide__arrow svg {
        stroke: #ffffff;
        stroke-width: 2.5px;
        fill: none;
        width: 20px;
        height: 20px;
    }

    .first-fold-slide {
        border-radius: 5px;
        position: relative;
        width: 100%;
        height: 280px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-fold-slide-text {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .first-fold-slide h3 {
        margin: 0;
        text-align: right;
        font-family: montserrat, sans-serif;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary-color);
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.72);
    }

    .first-fold-slide h4 {
        margin: 0;
        text-align: right;
        font-size: 15px;
        font-weight: 800;
        color: var(--secondary-color);
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.96);
    }

    .first-article {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 25px 0;
    }

    .first-article-left {
        width: auto;
        margin: 0 25px 0 0;
    }

    .first-article-right {
        margin: 0 0 0 25px;
    }

    .first-article-image {
        width: 400px;
        height: 300px;
        margin: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-article a {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        cursor: pointer;
        margin: 0;
        line-height: 0;
        line-height: 1.7;
    }

    .first-article a:hover {
        text-decoration: underline;
    }

    .first-article h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 10px 0;
    }

    .first-article h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 0 20px 0;
    }

    .first-article p {
        font-size: 15px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
        line-height: 1.7;
    }

    .title-tags {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin: 10px 0;
    }

    .title-tags span {
        color: var(--primary-color);
        font-size: 15px;
        font-weight: 700;
        margin: 5px 10px 0 0;
    }

    .article-count {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
    }

    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }

    .article-item {
        position: relative;
        width: 100%;
        background: var(--off-color);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease-out;
    }

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 36px rgba(0, 0, 0, 0.12);
    }

    .article-image {
        border-radius: 20px 20px 0 0;
        cursor: pointer;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .article-content {
        padding: 25px;
    }

    .article-read-tag {
        font-size: 15px;
        font-weight: 700;
        color: var(--accent-color);
        margin: 0;
    }

    .article-title {
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0;
    }

    .article-title:hover {
        text-decoration: underline;
    }

    .article-description {
        font-size: 15px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
    }

    .pagination-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .previous-next {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
    }

    .pagination-container span {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-light);
    }

    .page-number-container {
        display: none;
        flex-direction: row;
        justify-content: space-between;
    }

    .page-number-container a {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 10px;
    }

    .page-number-container span {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-light);
        margin: 0 10px;
    }
}

@media(max-width: 769px) {
    .regular-page-splide {
        position: relative;
        padding: 0 !important;
        width: 100% !important;
    }

    .splide__arrows {
        position: absolute;
        bottom: 20px;
        right: 60px;
        display: flex;
        gap: 8px;
    }

    .splide__arrow {
        background: transparent;
        border: none;
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .splide__arrow:hover {
        background: transparent;
        opacity: 0.7;
    }

    .splide__arrow svg {
        stroke: #ffffff;
        stroke-width: 2.5px;
        fill: none;
        width: 20px;
        height: 20px;
    }

    .first-fold-slide {
        border-radius: 5px;
        position: relative;
        width: 100%;
        height: 260px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-fold-slide-text {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .first-fold-slide h3 {
        margin: 0;
        text-align: right;
        font-family: montserrat, sans-serif;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 700;
        color: var(--secondary-color);
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.72);
    }

    .first-fold-slide h4 {
        margin: 0;
        text-align: right;
        font-size: 14px;
        font-weight: 800;
        color: var(--secondary-color);
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.96);
    }

    .first-article {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 25px 0;
    }

    .first-article-left {
        width: 100%;
        margin: 0 0 5px 0;
    }

    .first-article-right {
        margin: 5px 0 0 0;
    }

    .first-article-image {
        width: 100%;
        height: 260px;
        margin: 0;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .first-article a {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        cursor: pointer;
        margin: 0;
        line-height: 0;
        line-height: 1.7;
    }

    .first-article a:hover {
        text-decoration: underline;
    }

    .first-article h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 5px 0;
    }

    .first-article h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-color);
        margin: 5px 0;
    }

    .first-article p {
        font-size: 14px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
        line-height: 1.7;
    }

    .title-tags {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 5px 0;
    }

    .title-tags span {
        color: var(--primary-color);
        font-size: 15px;
        font-weight: 700;
        margin: 5px 5px 0 0;
    }

    .article-count {
        font-size: 20px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
    }

    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }

    .article-item {
        position: relative;
        width: 100%;
        background: var(--off-color);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease-out;
    }

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 36px rgba(0, 0, 0, 0.12);
    }

    .article-image {
        border-radius: 20px 20px 0 0;
        cursor: pointer;
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .article-content {
        padding: 20px;
    }

    .article-read-tag {
        font-size: 14px;
        font-weight: 700;
        color: var(--accent-color);
        margin: 0;
    }

    .article-title {
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 17px;
        font-weight: 700;
        margin: 5px 0;
    }

    .article-title:hover {
        text-decoration: underline;
    }

    .article-description {
        font-size: 14px;
        font-weight: 600;
        color: var(--font-light);
        margin: 0;
    }

    .pagination-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .previous-next {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
    }

    .pagination-container span {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-light);
    }

    .page-number-container {
        display: none;
        flex-direction: row;
        justify-content: space-between;
    }

    .page-number-container a {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 10px;
    }

    .page-number-container span {
        font-size: 15px;
        font-weight: 700;
        color: var(--font-light);
        margin: 0 10px;
    }
}