@media(min-width: 1366px) {
    .page-header {
        margin: 170px 0 0 0;
        padding: 50px 5%;
        width: 100%;
        min-height: 400px;
        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.5);
    }

    .page-header h1 {
        margin: 0 auto;
        font-size: 60px;
        font-weight: 700;
        text-align: center;
        font-style: italic;
        color: var(--secondary-color);
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.1);
    }
    .page-header h2 {
        margin: 10px auto;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 25px;
        font-weight: 400;
        text-align: center;
        color: var(--secondary-color);
    }
    .faq-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
    }

    .faq-item {
        background: var(--secondary-color);
        border-radius: 3px;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
        padding: 20px;
        width: 700px;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
    }

    .faq-question {
        font-family: avenir-lt-pro, sans-serif;
        font-weight: 500;
        font-size: 25px;
        color: var(--primary-color);
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-icon {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        font-family: avenir-lt-pro, sans-serif;
        margin-top: 10px;
        display: none;
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
    }

    .faq-open .faq-icon {
        transform: rotate(180deg);
    }

    .faq-open .faq-answer {
        display: block;
    }
    
    .full-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 5%;
        z-index: 999999999999;
        background: rgba(0, 0, 0, 0.85);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pop-up {
        position: relative;
        background: #fff;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 500px;
        text-align: center;
    }

    #close-pop-up {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 40px;
        cursor: pointer;
    }

    .pop-up img {
        width: 240px;
    }

    .pop-up a {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: var(--accent-color);
        box-shadow: 5px 5px 0px #0cbd5c;
        text-decoration: none;
        margin: 20px auto 0 auto;
        padding: 15px 25px;
        text-align: center;
        border-radius: 3px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }

    .service-tile {
        position: relative;
        width: 100%;
        min-height: 450px;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
        background-size: cover;
        background-position: 50% 50%;
        border-radius: 3px;
    }

    .service-tile h3 {
        position: absolute;
        z-index: 1;
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        color: var(--secondary-color);
        text-align: left;
        top: 50px;
        left: 50px;
        margin: 0;
    }

    .service-tile a {
        position: absolute;
        z-index: 1;
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--accent-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 3px;
        bottom: 50px;
        right: 50px;
        margin: 0;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .icon-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 25px;
        border-radius: 3px;
    }

    .strip-item {
        position: relative;
        background-color: var(--off-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 25px 0;
        padding: 0 0 20px 0;
        border-radius: 3px;
    }

    .icon-item i {
        color: #fff;
        background-image: radial-gradient(#0cbd5c, var(--accent-color));
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }

    .strip-item img {
        width: 100%;
        border-radius: 3px 3px 0 0;
    }

    .strip-item a {
        display: inline-block;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        background-color: var(--primary-color);
        border-radius: 25px 2px 25px 2px;
        margin: 10px auto;
        padding: 15px 25px;
    }

    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(var(--off-color), var(--accent-color));
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }

    .icon-item h3,
    .strip-item h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--font-color);
        margin: 10px auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .icon-item h4,
    .strip-item h4 {
        font-family: source-serif-4-display, serif;
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 25px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--primary-color);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 30px;
        text-align: center;
        border-radius: 3px;
    }

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

    .masonry-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 600px;
        padding: 100px 20%;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        transition: 0.3s all ease-in-out;
    }

    .masonry-item:hover {}

    .masonry-item h3 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        max-width: 50%;
        color: #fff;
        font-style: italic;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .masonry-item h4 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        color: #fff;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }

    .masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 30px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }

    .tri-masonry {
        display: grid;
        grid-template-areas: "a b b""a b b""c c c""c c c";
        grid-template-rows: repeat(4, 200px);
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
        width: 100%;
        height: 800px;
        margin: 50px auto;
    }

    .quad-masonry {
        display: grid;
        grid-template-areas: "a b b""a b b""c c d""c c d";
        grid-template-rows: repeat(4, 200px);
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        height: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }
    
    .tri-masonry-item {
        min-height: auto;
        padding: 50px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 250px 50px rgba(0, 0, 0, 0.5);
        transition: 0.3s all ease-in-out;
    }

    .tri-masonry-item-1 {
        grid-area: a;
        background-position: 50% 0%;
    }

    .tri-masonry-item-2 {
        grid-area: b;
        background-position: 50% 50%;
    }

    .tri-masonry-item-3 {
        grid-area: c;
        background-position: 50% 50%;
    }

    .tri-masonry-item-4 {
        grid-area: d;
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        margin: 0;
    }

    .tri-masonry-item h4 {
        font-family: avenir-lt-pro, sans-serif;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        margin: 10px 0;
        opacity: 0.8;
    }

    .tri-masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 25px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 15px 0 0 0;
        border-radius: 3px;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .recommended-item,
    .article-item {
        position: relative;
        width: 100%;
    }

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

    .recommended-content,
    .article-content {
        padding: 20px 0;
    }

    .recommended-read-tag,
    .article-read-tag {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0;
    }

    .recommended-read-tag span,
    .article-read-tag span {
        color: var(--accent-color);
    }

    .recommended-title,
    .article-title {
        font-family: avenir-lt-pro, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--accent-color);
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5;
        margin: 5px 0;
    }

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

    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.8;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 10px 0;
        padding: 15px 20px;
        border-radius: 2px;
        background-color: var(--accent-color);
        color: #fff;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
    }

    .step-container {
        position: relative;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 25px 0;
    }

    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: auto;
        padding: 0;
        border: none;
    }

    .step img {
        height: 150px;
        margin: 0 auto;
    }

    .step h4 {
        font-size: 60px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .step h6 {
        font-size: 25px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .section-heading {
        font-style: italic;
        font-size: 50px;
        font-weight: 700;
        color: var(--accent-color);
        text-align: center;
        margin: 0 auto 75px auto;
    }

    .section-sub-heading {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 25px;
        font-weight: 400;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto 10px auto;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 10%;
        font-family: source-serif-4-display, serif;
        color: var(--font-color);
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }

    .section-text i {
        font-size: 3rem;
        color: var(--accent-color);
    }

    .section {
        margin: 0;
        padding: 100px 10%;
        background-repeat: no-repeat;
    }

    .white-section {
        background-color: #fff;
    }

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

    .first-section {
        background-color: var(--accent-color);
        z-index: 1;
        margin: 185px 0 0 0;
        position: relative;
        padding: 50px 10%;
        height: 250px;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .first-left {
        z-index: 1;
        max-width: 100%;
        padding-right: 25px;
    }

    .first-left h1 {
        font-size: 45px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #ffffff;
        margin: 0;
        line-height: 1.3;
    }

    .first-left h2 {
        font-family: source-serif-4-display, serif;
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        margin: 10px 0;
    }

    .first-left h3 {
        font-family: source-serif-4-display, serif;
        font-size: 20px;
        font-weight: 400;
        color: #ffffff;
        margin: 20px 0;
    }

    .first-left h3 a {
        color: inherit;
        font-size: inherit;
        text-decoration: none;
        font-weight: 500;
    }

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

    .first-section-a {
        position: relative;
        display: inline-block;
        cursor: pointer;
        animation: slightPulsate 1.7s ease-out;
        animation-iteration-count: infinite;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        border-radius: 2px;
        line-height: 0;
        margin: 10px 0;
        padding: 15px 30px;
        animation-iteration-count: infinite;
        background-color: var(--primary-color);
        box-shadow: 5px 5px 0px #db5050;
    }

    .first-img {
        display: block;
        height: 550px;
    }

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

    .picture-section {
        box-shadow: inset 0 0 0 2000px rgba(13, 33, 23, 0.9);
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/picture-background.jpg');
        background-color: var(--accent-color);
    }

    .left-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-1.jpg');
    }

    .right-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-2.jpg');
    }

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

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

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

    .flex-section-image {
        min-width: 400px;
        max-width: 45%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 3px;
    }

    .flex-section-text h2 {
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .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: 17px;
        font-weight: 400;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

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

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--accent-color);
        border-radius: 3px;
        text-decoration: none;
        padding: 15px 30px;
        transition: 0.2s all ease-in-out;
    }

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

    .logo-item {
        padding: 50px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        filter: grayscale(100%);
        opacity: 0.2;
        transition: 0.2s ease-in-out;
    }

    .logo-item:hover {
        filter: grayscale(0);
        opacity: 1;
    }

    .logo-item img {
        width: 150px;
        height: auto;
    }

    .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%;
    }
}

@media(max-width: 1366px) and (min-width: 1025px) {
    .page-header {
        margin: 170px 0 0 0;
        padding: 50px 5%;
        width: 100%;
        min-height: 350px;
        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.5);
    }

    .page-header h1 {
        margin: 0 auto;
        font-size: 55px;
        font-weight: 700;
        text-align: center;
        font-style: italic;
        color: var(--secondary-color);
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.1);
    }
    .page-header h2 {
        margin: 10px auto;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 25px;
        font-weight: 400;
        text-align: center;
        color: var(--secondary-color);
    }
    .faq-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
    }

    .faq-item {
        background: var(--secondary-color);
        border-radius: 3px;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
        padding: 20px;
        width: 700px;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
    }

    .faq-question {
        font-family: avenir-lt-pro, sans-serif;
        font-weight: 500;
        font-size: 25px;
        color: var(--primary-color);
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-icon {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        font-family: avenir-lt-pro, sans-serif;
        margin-top: 10px;
        display: none;
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
    }

    .faq-open .faq-icon {
        transform: rotate(180deg);
    }

    .faq-open .faq-answer {
        display: block;
    }
    
    .full-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 5%;
        z-index: 999999999999;
        background: rgba(0, 0, 0, 0.85);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pop-up {
        position: relative;
        background: #fff;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 500px;
        text-align: center;
    }

    #close-pop-up {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 40px;
        cursor: pointer;
    }

    .pop-up img {
        width: 240px;
    }

    .pop-up a {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: var(--accent-color);
        box-shadow: 5px 5px 0px #0cbd5c;
        text-decoration: none;
        margin: 20px auto 0 auto;
        padding: 15px 25px;
        text-align: center;
        border-radius: 3px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }

    .service-tile {
        position: relative;
        width: 100%;
        min-height: 450px;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
        background-size: cover;
        background-position: 50% 50%;
        border-radius: 3px;
    }

    .service-tile h3 {
        position: absolute;
        z-index: 1;
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        color: var(--secondary-color);
        text-align: left;
        top: 50px;
        left: 50px;
        margin: 0;
    }

    .service-tile a {
        position: absolute;
        z-index: 1;
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--accent-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 3px;
        bottom: 50px;
        right: 50px;
        margin: 0;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .icon-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 25px;
        border-radius: 3px;
    }

    .strip-item {
        position: relative;
        background-color: var(--off-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 25px 0;
        padding: 0 0 20px 0;
        border-radius: 3px;
    }

    .icon-item i {
        color: #fff;
        background-image: radial-gradient(#0cbd5c, var(--accent-color));
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }

    .strip-item img {
        width: 100%;
        border-radius: 3px 3px 0 0;
    }

    .strip-item a {
        display: inline-block;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        background-color: var(--primary-color);
        border-radius: 25px 2px 25px 2px;
        margin: 10px auto;
        padding: 15px 25px;
    }

    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(var(--off-color), var(--accent-color));
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }

    .icon-item h3,
    .strip-item h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--font-color);
        margin: 10px auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .icon-item h4,
    .strip-item h4 {
        font-family: source-serif-4-display, serif;
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 25px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--primary-color);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 30px;
        text-align: center;
        border-radius: 3px;
    }

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

    .masonry-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 600px;
        padding: 100px 10%;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        transition: 0.3s all ease-in-out;
    }

    .masonry-item:hover {}

    .masonry-item h3 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        max-width: 50%;
        color: #fff;
        font-style: italic;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .masonry-item h4 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        color: #fff;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }

    .masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 30px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }

    .tri-masonry {
        display: grid;
        grid-template-areas: "a b b""a b b""c c c""c c c";
        grid-template-rows: repeat(4, 150px);
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
        width: 100%;
        height: 600px;
        margin: 50px auto;
    }

    .quad-masonry {
        display: grid;
        grid-template-areas: "a b b""a b b""c c d""c c d";
        grid-template-rows: repeat(4, 150px);
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        height: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }
    
    .tri-masonry-item {
        min-height: auto;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 250px 50px rgba(0, 0, 0, 0.5);
        transition: 0.3s all ease-in-out;
    }

    .tri-masonry-item-1 {
        grid-area: a;
        background-position: 50% 0%;
    }

    .tri-masonry-item-2 {
        grid-area: b;
        background-position: 50% 50%;
    }

    .tri-masonry-item-3 {
        grid-area: c;
        background-position: 50% 50%;
    }

    .tri-masonry-item-4 {
        grid-area: d;
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-style: italic;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .tri-masonry-item h4 {
        font-family: avenir-lt-pro, sans-serif;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        margin: 10px 0;
        opacity: 0.8;
    }

    .tri-masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 25px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 15px 0 0 0;
        border-radius: 3px;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .recommended-item,
    .article-item {
        position: relative;
        width: 100%;
    }

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

    .recommended-content,
    .article-content {
        padding: 20px 0;
    }

    .recommended-read-tag,
    .article-read-tag {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0;
    }

    .recommended-read-tag span,
    .article-read-tag span {
        color: var(--accent-color);
    }

    .recommended-title,
    .article-title {
        font-family: avenir-lt-pro, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--accent-color);
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5;
        margin: 5px 0;
    }

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

    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.8;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 10px 0;
        padding: 15px 20px;
        border-radius: 2px;
        background-color: var(--accent-color);
        color: #fff;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
    }

    .step-container {
        position: relative;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 25px 0;
    }

    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: auto;
        padding: 0;
        border: none;
    }

    .step img {
        height: 150px;
        margin: 0 auto;
    }

    .step h4 {
        font-size: 50px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .step h6 {
        font-size: 20px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .section-heading {
        font-style: italic;
        font-size: 45px;
        font-weight: 700;
        color: var(--accent-color);
        text-align: center;
        margin: 0 auto 75px auto;
    }

    .section-sub-heading {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto 10px auto;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 5%;
        font-family: source-serif-4-display, serif;
        color: var(--font-color);
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }

    .section-text i {
        font-size: 3rem;
        color: var(--accent-color);
    }

    .section {
        margin: 0;
        padding: 100px 5%;
        background-repeat: no-repeat;
    }

    .white-section {
        background-color: #fff;
    }

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

    .first-section {
        background-color: var(--accent-color);
        z-index: 1;
        margin: 185px 0 0 0;
        position: relative;
        padding: 50px 5%;
        height: 250px;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .first-left {
        z-index: 1;
        max-width: 100%;
        padding-right: 25px;
    }

    .first-left h1 {
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #ffffff;
        margin: 0;
        line-height: 1.3;
    }

    .first-left h2 {
        font-family: source-serif-4-display, serif;
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        margin: 10px 0;
    }

    .first-left h3 {
        font-family: source-serif-4-display, serif;
        font-size: 20px;
        font-weight: 400;
        color: #ffffff;
        margin: 20px 0;
    }

    .first-left h3 a {
        color: inherit;
        font-size: inherit;
        text-decoration: none;
        font-weight: 500;
    }

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

    .first-section-a {
        position: relative;
        display: inline-block;
        cursor: pointer;
        animation: slightPulsate 1.7s ease-out;
        animation-iteration-count: infinite;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        border-radius: 2px;
        line-height: 0;
        margin: 10px 0;
        padding: 15px 30px;
        animation-iteration-count: infinite;
        background-color: var(--primary-color);
        box-shadow: 5px 5px 0px #db5050;
    }

    .first-img {
        display: block;
        height: 450px;
    }

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

    .picture-section {
        box-shadow: inset 0 0 0 2000px rgba(13, 33, 23, 0.9);
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/picture-background.jpg');
        background-color: var(--accent-color);
    }

    .left-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-1.jpg');
    }

    .right-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-2.jpg');
    }

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

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

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

    .flex-section-image {
        min-width: 400px;
        max-width: 45%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 3px;
    }

    .flex-section-text h2 {
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .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: 17px;
        font-weight: 400;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

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

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--accent-color);
        border-radius: 3px;
        text-decoration: none;
        padding: 15px 30px;
        transition: 0.2s all ease-in-out;
    }

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

    .logo-item {
        padding: 50px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        filter: grayscale(100%);
        opacity: 0.2;
        transition: 0.2s ease-in-out;
    }

    .logo-item:hover {
        filter: grayscale(0);
        opacity: 1;
    }

    .logo-item img {
        width: 150px;
        height: auto;
    }

    .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%;
    }
}

@media(max-width: 1025px) and (min-width: 769px) {
    .page-header {
        margin: 90px 0 0 0;
        padding: 50px 5%;
        width: 100%;
        min-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.5);
    }

    .page-header h1 {
        margin: 0 auto;
        font-size: 50px;
        font-weight: 700;
        text-align: center;
        font-style: italic;
        color: var(--secondary-color);
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.1);
    }
    .page-header h2 {
        margin: 10px auto;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 25px;
        font-weight: 400;
        text-align: center;
        color: var(--secondary-color);
    }
    .faq-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
    }

    .faq-item {
        background: var(--secondary-color);
        border-radius: 3px;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
        padding: 20px;
        width: 700px;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
    }

    .faq-question {
        font-family: avenir-lt-pro, sans-serif;
        font-weight: 500;
        font-size: 20px;
        color: var(--primary-color);
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-icon {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        font-family: avenir-lt-pro, sans-serif;
        margin-top: 10px;
        display: none;
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
    }

    .faq-open .faq-icon {
        transform: rotate(180deg);
    }

    .faq-open .faq-answer {
        display: block;
    }
    
    .full-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 5%;
        z-index: 999999999999;
        background: rgba(0, 0, 0, 0.85);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pop-up {
        position: relative;
        background: #fff;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 500px;
        text-align: center;
    }

    #close-pop-up {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 40px;
        cursor: pointer;
    }

    .pop-up img {
        width: 240px;
    }

    .pop-up a {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: var(--accent-color);
        box-shadow: 5px 5px 0px #0cbd5c;
        text-decoration: none;
        margin: 20px auto 0 auto;
        padding: 15px 25px;
        text-align: center;
        border-radius: 3px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }

    .service-tile {
        position: relative;
        width: 100%;
        min-height: 450px;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
        background-size: cover;
        background-position: 50% 50%;
        border-radius: 3px;
    }

    .service-tile h3 {
        position: absolute;
        z-index: 1;
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        color: var(--secondary-color);
        text-align: left;
        top: 25px;
        left: 25px;
        margin: 0;
    }

    .service-tile a {
        position: absolute;
        z-index: 1;
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--accent-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 3px;
        bottom: 25px;
        right: 25px;
        margin: 0;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .icon-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 25px;
        border-radius: 3px;
    }

    .strip-item {
        position: relative;
        background-color: var(--off-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 25px 0;
        padding: 0 0 20px 0;
        border-radius: 3px;
    }

    .icon-item i {
        color: #fff;
        background-image: radial-gradient(#0cbd5c, var(--accent-color));
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }

    .strip-item img {
        width: 100%;
        border-radius: 3px 3px 0 0;
    }

    .strip-item a {
        display: inline-block;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        background-color: var(--primary-color);
        border-radius: 25px 2px 25px 2px;
        margin: 10px auto;
        padding: 15px 25px;
    }

    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(var(--off-color), var(--accent-color));
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }

    .icon-item h3,
    .strip-item h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--font-color);
        margin: 10px auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .icon-item h4,
    .strip-item h4 {
        font-family: source-serif-4-display, serif;
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 25px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--primary-color);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 30px;
        text-align: center;
        border-radius: 3px;
    }

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

    .masonry-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 600px;
        padding: 100px 10%;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        transition: 0.3s all ease-in-out;
    }

    .masonry-item:hover {}

    .masonry-item h3 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        max-width: 50%;
        color: #fff;
        font-style: italic;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .masonry-item h4 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        color: #fff;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }

    .masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 30px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }

    .tri-masonry {
        display: grid;
        grid-template-areas: "a b b""a b b""c c c""c c c";
        grid-template-rows: repeat(4, 150px);
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
        width: 100%;
        height: 600px;
        margin: 50px auto;
    }

    .quad-masonry {
        display: grid;
        grid-template-areas: "a b b""a b b""c c d""c c d";
        grid-template-rows: repeat(4, 150px);
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        height: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }
    
    .tri-masonry-item {
        min-height: auto;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 250px 50px rgba(0, 0, 0, 0.5);
        transition: 0.3s all ease-in-out;
    }

    .tri-masonry-item-1 {
        grid-area: a;
        background-position: 50% 0%;
    }

    .tri-masonry-item-2 {
        grid-area: b;
        background-position: 50% 50%;
    }

    .tri-masonry-item-3 {
        grid-area: c;
        background-position: 50% 50%;
    }

    .tri-masonry-item-4 {
        grid-area: d;
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-style: italic;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .tri-masonry-item h4 {
        font-family: avenir-lt-pro, sans-serif;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 10px 0;
        opacity: 0.8;
    }

    .tri-masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 25px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 10px 0 0 0;
        border-radius: 3px;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .recommended-item,
    .article-item {
        position: relative;
        width: 100%;
    }

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

    .recommended-content,
    .article-content {
        padding: 20px 0;
    }

    .recommended-read-tag,
    .article-read-tag {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0;
    }

    .recommended-read-tag span,
    .article-read-tag span {
        color: var(--accent-color);
    }

    .recommended-title,
    .article-title {
        font-family: avenir-lt-pro, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--accent-color);
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5;
        margin: 5px 0;
    }

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

    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.8;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 10px 0;
        padding: 15px 20px;
        border-radius: 2px;
        background-color: var(--accent-color);
        color: #fff;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
    }

    .step-container {
        position: relative;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 25px 0;
    }

    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: auto;
        padding: 0;
        border: none;
    }

    .step img {
        height: 150px;
        margin: 0 auto;
    }

    .step h4 {
        font-size: 50px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .step h6 {
        font-size: 20px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .section-heading {
        font-style: italic;
        font-size: 40px;
        font-weight: 700;
        color: var(--accent-color);
        text-align: center;
        margin: 0 auto 75px auto;
    }

    .section-sub-heading {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto 10px auto;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 5%;
        font-family: source-serif-4-display, serif;
        color: var(--font-color);
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }

    .section-text i {
        font-size: 3rem;
        color: var(--accent-color);
    }

    .section {
        margin: 0;
        padding: 100px 5%;
        background-repeat: no-repeat;
    }

    .white-section {
        background-color: #fff;
    }

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

    .first-section {
        background-color: var(--accent-color);
        z-index: 1;
        margin: 80px 0 0 0;
        position: relative;
        padding: 50px 5%;
        height: 250px;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .first-left {
        z-index: 1;
        max-width: 100%;
        padding-right: 25px;
    }

    .first-left h1 {
        font-size: 35px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #ffffff;
        margin: 0;
        line-height: 1.3;
    }

    .first-left h2 {
        font-family: source-serif-4-display, serif;
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        margin: 10px 0;
    }

    .first-left h3 {
        font-family: source-serif-4-display, serif;
        font-size: 20px;
        font-weight: 400;
        color: #ffffff;
        margin: 20px 0;
    }

    .first-left h3 a {
        color: inherit;
        font-size: inherit;
        text-decoration: none;
        font-weight: 500;
    }

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

    .first-section-a {
        position: relative;
        display: inline-block;
        cursor: pointer;
        animation: slightPulsate 1.7s ease-out;
        animation-iteration-count: infinite;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        border-radius: 2px;
        line-height: 0;
        margin: 10px 0;
        padding: 15px 30px;
        animation-iteration-count: infinite;
        background-color: var(--primary-color);
        box-shadow: 5px 5px 0px #db5050;
    }

    .first-img {
        display: block;
        height: 350px;
    }

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

    .picture-section {
        box-shadow: inset 0 0 0 2000px rgba(13, 33, 23, 0.9);
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/picture-background.jpg');
        background-color: var(--accent-color);
    }

    .left-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-1.jpg');
    }

    .right-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-2.jpg');
    }

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

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

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

    .flex-section-image {
        min-width: 400px;
        max-width: 45%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 3px;
    }

    .flex-section-text h2 {
        font-style: italic;
        font-size: 35px;
        font-weight: 700;
        margin: 20px 0;
        color: var(--font-color);
    }

    .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: 17px;
        font-weight: 400;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

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

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--accent-color);
        border-radius: 3px;
        text-decoration: none;
        padding: 15px 30px;
        transition: 0.2s all ease-in-out;
    }

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

    .logo-item {
        padding: 50px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        filter: grayscale(100%);
        opacity: 0.2;
        transition: 0.2s ease-in-out;
    }

    .logo-item:hover {
        filter: grayscale(0);
        opacity: 1;
    }

    .logo-item img {
        width: 150px;
        height: auto;
    }

    .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%;
    }
}

@media(max-width: 769px) {
    .page-header {
        margin: 90px 0 0 0;
        padding: 50px 5%;
        width: 100%;
        min-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.5);
    }

    .page-header h1 {
        margin: 0 auto;
        font-size: 35px;
        font-weight: 700;
        text-align: center;
        font-style: italic;
        color: var(--secondary-color);
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.1);
    }
    .page-header h2 {
        margin: 10px auto;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 20px;
        font-weight: 400;
        text-align: center;
        color: var(--secondary-color);
    }
    .faq-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
    }

    .faq-item {
        background: var(--secondary-color);
        border-radius: 3px;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
    }

    .faq-question {
        font-family: avenir-lt-pro, sans-serif;
        font-weight: 500;
        font-size: 20px;
        color: var(--primary-color);
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-icon {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        font-family: avenir-lt-pro, sans-serif;
        margin-top: 10px;
        display: none;
        font-size: 15px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
    }

    .faq-open .faq-icon {
        transform: rotate(180deg);
    }

    .faq-open .faq-answer {
        display: block;
    }
    
    .full-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 5%;
        z-index: 999999999999;
        background: rgba(0, 0, 0, 0.85);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pop-up {
        position: relative;
        background: #fff;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    #close-pop-up {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 40px;
        cursor: pointer;
    }

    .pop-up img {
        width: 200px;
    }

    .pop-up a {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: var(--accent-color);
        box-shadow: 5px 5px 0px #0cbd5c;
        text-decoration: none;
        margin: 20px auto 0 auto;
        padding: 15px 25px;
        text-align: center;
        border-radius: 3px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }

    .service-tile {
        position: relative;
        width: 100%;
        min-height: 300px;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
        background-size: cover;
        background-position: 50% 50%;
        border-radius: 3px;
    }

    .service-tile h3 {
        position: absolute;
        z-index: 1;
        font-style: italic;
        font-size: 25px;
        font-weight: 700;
        color: var(--secondary-color);
        text-align: left;
        top: 25px;
        left: 25px;
        margin: 0;
    }

    .service-tile a {
        position: absolute;
        z-index: 1;
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--accent-color);
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 3px;
        bottom: 50px;
        right: 50px;
        margin: 0;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .icon-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .strip-item {
        position: relative;
        background-color: var(--off-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 25px 0;
        padding: 0 0 20px 0;
        border-radius: 3px;
    }

    .icon-item i {
        color: #fff;
        background-image: radial-gradient(#0cbd5c, var(--accent-color));
        width: 40px;
        height: 40px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    .strip-item img {
        width: 100%;
        border-radius: 3px 3px 0 0;
    }

    .strip-item a {
        display: inline-block;
        transition: 0.2s ease-out;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        background-color: var(--primary-color);
        border-radius: 25px 2px 25px 2px;
        margin: 10px auto;
        padding: 10px 20px;
    }

    .strip-item i {
        position: absolute;
        top: -25px;
        color: #fff;
        background-image: radial-gradient(var(--off-color), var(--accent-color));
        width: 50px;
        height: 50px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    .icon-item h3,
    .strip-item h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--font-color);
        margin: 10px auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .icon-item h4,
    .strip-item h4 {
        font-family: source-serif-4-display, serif;
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-color);
        background: var(--primary-color);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 30px;
        text-align: center;
        border-radius: 3px;
    }

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

    .masonry-section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .masonry-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 300px;
        padding: 50px 5%;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        transition: 0.3s all ease-in-out;
    }

    .masonry-item:hover {}

    .masonry-item h3 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        max-width: 50%;
        color: #fff;
        font-style: italic;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .masonry-item h4 {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
        color: #fff;
        font-family: avenir-lt-pro, sans-serif;
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }

    .masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 30px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }

    .tri-masonry {
        display: grid;
        /* grid-template-areas: "a b b" "a b b" "c c c" "c c c";
        grid-template-rows: repeat(4, 200px); */
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 25px;
        width: 100%;
        height: auto;
        margin: 50px auto;
    }

    .quad-masonry {
        display: grid;
        /* grid-template-areas: "a b b""a b b""c c d""c c d";
        grid-template-rows: repeat(4, 200px); */
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        height: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }
    
    .tri-masonry-item {
        min-height: 300px;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 200px 50px rgba(0, 0, 0, 0.5);
        transition: 0.3s all ease-in-out;
    }

    .tri-masonry-item-1 {
        /* grid-area: a; */
        background-position: 50% 0%;
    }

    .tri-masonry-item-2 {
        /* grid-area: b; */
        background-position: 50% 50%;
    }

    .tri-masonry-item-3 {
        /* grid-area: c; */
        background-position: 50% 50%;
    }

    .tri-masonry-item-4 {
        /* grid-area:dc; */
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-style: italic;
        font-size: 25px;
        font-weight: 700;
        margin: 0;
    }

    .tri-masonry-item h4 {
        font-family: avenir-lt-pro, sans-serif;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.99);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 10px 0;
        opacity: 0.8;
    }

    .tri-masonry-item a {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 15px 25px;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        margin: 0 0 0 0;
        border-radius: 3px;
        box-shadow: -1px -1px 4px rgba(0, 34, 68, 0.24);
    }

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

    .recommended-item,
    .article-item {
        position: relative;
        width: 100%;
    }

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

    .recommended-content,
    .article-content {
        padding: 20px 0;
    }

    .recommended-read-tag,
    .article-read-tag {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0;
    }

    .recommended-read-tag span,
    .article-read-tag span {
        color: var(--accent-color);
    }

    .recommended-title,
    .article-title {
        font-family: avenir-lt-pro, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--accent-color);
        font-size: 17px;
        font-weight: 500;
        line-height: 1.5;
        margin: 5px 0;
    }

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

    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.8;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 10px 0;
        padding: 15px 20px;
        border-radius: 2px;
        background-color: var(--accent-color);
        color: #fff;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
    }

    .step-container {
        position: relative;
        width: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 25px 0;
    }

    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        border: none;
    }

    .step img {
        height: 80px;
        margin: 0 auto;
    }

    .step h4 {
        font-size: 40px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 25px;
        font-weight: 700;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }

    .step h6 {
        font-size: 20px;
        font-weight: 500;
        color: var(--font-color);
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }

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

    .section-sub-heading {
        font-family: avenir-lt-pro, sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto 10px auto;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 5%;
        font-family: source-serif-4-display, serif;
        color: var(--font-color);
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }

    .section-text i {
        font-size: 2rem;
        color: var(--accent-color);
    }

    .section {
        margin: 0;
        padding: 50px 5%;
        background-repeat: no-repeat;
    }

    .white-section {
        background-color: #fff;
    }

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

    .first-section {
        background-color: var(--accent-color);
        z-index: 1;
        margin: 105px 0 0 0;
        position: relative;
        padding: 25px 5%;
        height: auto;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .first-left {
        z-index: 1;
        max-width: 100%;
        padding-right: 0;
    }

    .first-left h1 {
        font-size: 30px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #ffffff;
        margin: 0;
        line-height: 1.3;
    }

    .first-left h2 {
        font-family: source-serif-4-display, serif;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        margin: 10px 0;
    }

    .first-left h3 {
        font-family: source-serif-4-display, serif;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        margin: 20px 0;
    }

    .first-left h3 a {
        color: inherit;
        font-size: inherit;
        text-decoration: none;
        font-weight: 500;
    }

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

    .first-section-a {
        position: relative;
        display: inline-block;
        cursor: pointer;
        animation: slightPulsate 1.7s ease-out;
        animation-iteration-count: infinite;
        transition: 0.2s ease-out;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        border-radius: 2px;
        line-height: 0;
        margin: 10px 0;
        padding: 15px 30px;
        animation-iteration-count: infinite;
        background-color: var(--primary-color);
        box-shadow: 5px 5px 0px #db5050;
    }

    .first-img {
        display: block;
        width: 100%;
    }

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

    .picture-section {
        box-shadow: inset 0 0 0 2000px rgba(13, 33, 23, 0.9);
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/picture-background.jpg');
        background-color: var(--accent-color);
    }

    .left-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-1.jpg');
    }

    .right-abstract-section {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-image: url('../../assets/abs-2.jpg');
    }

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

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

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

    .flex-section-image {
        min-width: 100%;
        max-width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 3px;
    }

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

    .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: 400;
        margin: 20px 0;
        color: var(--font-color);
        line-height: 1.5;
    }

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

    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-family: source-serif-4-display, serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: var(--accent-color);
        border-radius: 3px;
        text-decoration: none;
        padding: 15px 30px;
        transition: 0.2s all ease-in-out;
    }

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

    .logo-item {
        padding: 25px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        filter: grayscale(100%);
        opacity: 0.2;
        transition: 0.2s ease-in-out;
    }

    .logo-item:hover {
        filter: grayscale(0);
        opacity: 1;
    }

    .logo-item img {
        width: 100px;
        height: auto;
    }

    .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%;
    }
}