@media(min-width: 1366px) {
    .grecaptcha-badge {
        visibility: hidden !important;
    }

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

    .page-header {
        margin: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }

    .page-header h1 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .page-header h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 10px auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }

    .middle-a:hover {
        background: var(--color-accent);
    }

    .section-heading {
        font-size: 40px;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        margin: 50px auto;
    }

    .section {
        background: var(--color-secondary);
        margin: 0;
        padding: 50px 10%;
    }

    .first-section {
        margin: 0;
    }

    .white-section {
        background: var(--color-secondary);
    }

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

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

    .flex-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .reverse-flex-section {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .flex-section-text {
        max-width: 45%;
    }

    .flex-section-image {
        max-width: 45%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }

    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 30px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }

    .flex-section-text a:hover {
        background: var(--color-accent);
    }

    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 25px;
    }

    .non-click-gallery-image {
        width: 550px;
        height: 550px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 300px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery-image:hover {
        transform: scale(1.1);
    }

    .gallery-image:hover .enlarge {
        display: flex;
    }

    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .section-flex-right img {
        width: 400px;
    }

    .section-flex-right {
        max-width: 50%;
    }

    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 50px;
        width: 50%;
        min-width: 600px;
        height: auto;
        min-height: 600px;
    }

    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 45px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }

    .close-modal:hover {
        color: #231F20 !important;
    }
}

@media(max-width: 1366px) and (min-width: 1025px) {
    .grecaptcha-badge {
        visibility: hidden !important;
    }

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

    .page-header {
        margin: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }

    .page-header h1 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .page-header h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 10px auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }

    .middle-a:hover {
        background: var(--color-accent);
    }

    .section-heading {
        font-size: 40px;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        margin: 50px auto;
    }

    .section {
        background: var(--color-secondary);
        margin: 0;
        padding: 50px 5%;
    }

    .first-section {
        margin: 0;
    }

    .white-section {
        background: var(--color-secondary);
    }

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

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

    .flex-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .reverse-flex-section {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .flex-section-text {
        max-width: 45%;
    }

    .flex-section-image {
        max-width: 45%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }

    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 25px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }

    .flex-section-text a:hover {
        background: var(--color-accent);
    }

    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 25px;
    }

    .non-click-gallery-image {
        width: 500px;
        height: 500px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 240px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery-image:hover {
        transform: scale(1.1);
    }

    .gallery-image:hover .enlarge {
        display: flex;
    }

    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .section-flex-right img {
        width: 300px;
    }

    .section-flex-right {
        max-width: 50%;
    }

    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 50px;
        width: 60%;
        min-width: 500px;
        height: auto;
        min-height: 500px;
    }

    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 45px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }

    .close-modal:hover {
        color: #231F20 !important;
    }
}

@media(max-width: 1025px) and (min-width: 769px) {
    .grecaptcha-badge {
        visibility: hidden !important;
    }

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

    .page-header {
        margin: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }

    .page-header h1 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .page-header h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 10px auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }

    .middle-a:hover {
        background: var(--color-accent);
    }

    .section-heading {
        font-size: 30px;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        margin: 50px auto;
    }

    .section {
        background: var(--color-secondary);
        margin: 0;
        padding: 50px 5%;
    }

    .first-section {
        margin: 0;
    }

    .white-section {
        background: var(--color-secondary);
    }

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

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

    .flex-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .reverse-flex-section {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .flex-section-text {
        max-width: 45%;
    }

    .flex-section-image {
        max-width: 45%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }

    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 25px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }

    .flex-section-text a:hover {
        background: var(--color-accent);
    }

    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
    }

    .non-click-gallery-image {
        width: 450px;
        height: 450px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 240px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery-image:hover {
        transform: scale(1.1);
    }

    .gallery-image:hover .enlarge {
        display: flex;
    }

    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .section-flex-right img {
        width: 300px;
    }

    .section-flex-right {
        max-width: 50%;
    }

    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 50px;
        width: 70%;
        min-width: 500px;
        height: auto;
        min-height: 500px;
    }

    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 45px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }

    .close-modal:hover {
        color: #231F20 !important;
    }
}

@media(max-width: 769px) {
    .grecaptcha-badge {
        visibility: hidden !important;
    }

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

    .page-header {
        margin: 50px 0 0 0;
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }

    .page-header h1 {
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .page-header h2 {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        margin: 10px auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }

    .middle-a:hover {
        background: var(--color-accent);
    }

    .section-heading {
        font-size: 25px;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        margin: 50px auto;
    }

    .section {
        background: var(--color-secondary);
        margin: 0;
        padding: 50px 5%;
    }

    .first-section {
        margin: 50px 0 0 0;
    }

    .white-section {
        background: var(--color-secondary);
    }

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

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

    .flex-section {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .reverse-flex-section {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .flex-section-text {
        max-width: 100%;
    }

    .flex-section-image {
        max-width: 100%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }

    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 25px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: var(--font-color);
        line-height: 1.5;
    }

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }

    .flex-section-text a:hover {
        background: var(--color-accent);
    }

    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .non-click-gallery-image {
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 200px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }

    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery-image:hover {
        transform: scale(1.1);
    }

    .gallery-image:hover .enlarge {
        display: flex;
    }

    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .section-flex-right img {
        width: 200px;
    }

    .section-flex-right {
        max-width: 100%;
    }

    .full-screen {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .picture-modal {
        position: relative;
        background-color: #fff;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 5px;
        padding: 25px;
        width: 90%;
        min-width: 90vw;
        height: 400px;
        min-height: auto;
    }

    .close-modal {
        position: absolute;
        top: 2.5px;
        right: 15px;
        font-size: 35px;
        color: #000;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        cursor: pointer;
    }

    .close-modal:hover {
        color: #231F20 !important;
    }
}