@media(min-width: 1366px) {
    .page-header {
        margin: 80px 0 0 0;
        padding: 100px 10%;
        width: 100%;
        height: 400px;
        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: 100px;
        font-weight: 800;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
    }
    .page-header h2 {
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        color: #fff;
        opacity: 0.8;
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
        display: inline-block;
        font-size: 25px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        opacity: 0.9;
    }
    .section-heading {
        font-family: "bebas-neue-pro-semiexpanded", sans-serif;
        font-size: 60px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--font-color);
        text-align: center;
        margin: 0 auto;
    }
    .section-sub-heading {
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto;
    }
    .section {
        margin: 0;
        padding: 50px 10%;
    }
    .first-section {
        margin: 80px 0 0 0;
    }
    .color-section {
        background: var(--color-primary);
    }
    .picture-section {
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        background-color: var(--color-primary);
    }
    .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 {
        max-width: 45%;
        border-radius: 10px;
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 60px;
        font-weight: 800;
        text-transform: uppercase;
        margin: 20px 0;
        color: var(--font-color);
    }
    .flex-section-text p {
        font-size: 16px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        opacity: 0.7;
        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-size: 20px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        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: 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: 250px;
        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%;
    }
    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }
    .article-item {
        position: relative;
        width: 100%;
    }
    .article-image {
        cursor: pointer;
        border-radius: 10px;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .article-content {
        padding: 20px 0;
    }
    .article-read-tag {
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--font-color);
        margin: 0;
    }
    .article-read-tag span {
        color: var(--color-primary);
    }
    .article-title {
        font-family: 'roboto', sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .article-title:hover {
        text-decoration: underline;
    }
    .article-description {
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: var(--color-primary);
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        text-decoration: none;
    }
    .proof-strip {
        width: 100%;
        margin: 0;
        padding: 50px 15%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: var(--color-primary);
    }
    .proof-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .proof-item h3 {
        margin: 0 auto;
        font-size: 40px;
        font-weight: 800;
        text-align: center;
        color: #fff;
    }
    .proof-item p {
        margin: 0 auto;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: #fff;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .step-item {
        background: var(--color-primary);
        border-radius: 10px;
        padding: 50px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 800;
        color: var(--color-primary);
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 800;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
}

@media(max-width: 1366px) and (min-width: 1025px) {
    .page-header {
        margin: 80px 0 0 0;
        padding: 100px 5%;
        width: 100%;
        height: 350px;
        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: 90px;
        font-weight: 800;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
    }
    .page-header h2 {
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        color: #fff;
        opacity: 0.8;
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
        display: inline-block;
        font-size: 25px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        opacity: 0.9;
    }
    .section-heading {
        font-family: "bebas-neue-pro-semiexpanded", sans-serif;
        font-size: 50px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--font-color);
        text-align: center;
        margin: 0 auto;
    }
    .section-sub-heading {
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto;
    }
    .section {
        margin: 0;
        padding: 50px 5%;
    }
    .first-section {
        margin: 70px 0 0 0;
    }
    .color-section {
        background: var(--color-primary);
    }
    .picture-section {
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        background-color: var(--color-primary);
    }
    .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 {
        max-width: 45%;
        border-radius: 10px;
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 60px;
        font-weight: 800;
        text-transform: uppercase;
        margin: 20px 0;
        color: var(--font-color);
    }
    .flex-section-text p {
        font-size: 16px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        opacity: 0.7;
        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-size: 20px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        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: 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: 250px;
        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%;
    }
    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }
    .article-item {
        position: relative;
        width: 100%;
    }
    .article-image {
        cursor: pointer;
        border-radius: 10px;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .article-content {
        padding: 20px 0;
    }
    .article-read-tag {
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--font-color);
        margin: 0;
    }
    .article-read-tag span {
        color: var(--color-primary);
    }
    .article-title {
        font-family: 'roboto', sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .article-title:hover {
        text-decoration: underline;
    }
    .article-description {
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: var(--color-primary);
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        text-decoration: none;
    }
    .proof-strip {
        width: 100%;
        margin: 0;
        padding: 50px 5%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: var(--color-primary);
    }
    .proof-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .proof-item h3 {
        margin: 0 auto;
        font-size: 40px;
        font-weight: 800;
        text-align: center;
        color: #fff;
    }
    .proof-item p {
        margin: 0 auto;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: #fff;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .step-item {
        background: var(--color-primary);
        border-radius: 10px;
        padding: 50px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 800;
        color: var(--color-primary);
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 800;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
}

@media(max-width: 1025px) and (min-width: 769px) {
    .page-header {
        margin: 80px 0 0 0;
        padding: 100px 5%;
        width: 100%;
        height: 350px;
        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: 80px;
        font-weight: 800;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
    }
    .page-header h2 {
        font-family: 'roboto', sans-serif;
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        color: #fff;
        opacity: 0.8;
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
        display: inline-block;
        font-size: 25px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        opacity: 0.9;
    }
    .section-heading {
        font-family: "bebas-neue-pro-semiexpanded", sans-serif;
        font-size: 40px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--font-color);
        text-align: center;
        margin: 0 auto;
    }
    .section-sub-heading {
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto;
    }
    .section {
        margin: 0;
        padding: 50px 5%;
    }
    .first-section {
        margin: 60px 0 0 0;
    }
    .color-section {
        background: var(--color-primary);
    }
    .picture-section {
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        background-color: var(--color-primary);
    }
    .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 {
        max-width: 45%;
        border-radius: 10px;
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 60px;
        font-weight: 800;
        text-transform: uppercase;
        margin: 20px 0;
        color: var(--font-color);
    }
    .flex-section-text p {
        font-size: 16px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        opacity: 0.7;
        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-size: 20px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        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: 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: 250px;
        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%;
    }
    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }
    .article-item {
        position: relative;
        width: 100%;
    }
    .article-image {
        cursor: pointer;
        border-radius: 10px;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .article-content {
        padding: 20px 0;
    }
    .article-read-tag {
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--font-color);
        margin: 0;
    }
    .article-read-tag span {
        color: var(--color-primary);
    }
    .article-title {
        font-family: 'roboto', sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .article-title:hover {
        text-decoration: underline;
    }
    .article-description {
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: var(--color-primary);
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        text-decoration: none;
    }
    .proof-strip {
        width: 100%;
        margin: 0;
        padding: 50px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: var(--color-primary);
    }
    .proof-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .proof-item h3 {
        margin: 0 auto;
        font-size: 40px;
        font-weight: 800;
        text-align: center;
        color: #fff;
    }
    .proof-item p {
        margin: 0 auto;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: #fff;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .step-item {
        background: var(--color-primary);
        border-radius: 10px;
        padding: 25px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 800;
        color: var(--color-primary);
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 800;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
}

@media(max-width: 769px) {
    .page-header {
        margin: 50px 0 0 0;
        padding: 100px 5%;
        width: 100%;
        height: 300px;
        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: 50px;
        font-weight: 800;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
    }
    .page-header h2 {
        font-family: 'roboto', sans-serif;
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: #fff;
        opacity: 0.8;
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
        display: inline-block;
        font-size: 25px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        opacity: 0.9;
    }
    .section-heading {
        font-family: "bebas-neue-pro-semiexpanded", sans-serif;
        font-size: 30px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--font-color);
        text-align: center;
        margin: 0 auto;
    }
    .section-sub-heading {
        font-family: 'roboto', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--font-color);
        opacity: 0.5;
        text-align: center;
        margin: 0 auto;
    }
    .section {
        margin: 0;
        padding: 50px 5%;
    }
    .first-section {
        margin: 50px 0 0 0;
    }
    .color-section {
        background: var(--color-primary);
    }
    .picture-section {
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
        background-color: var(--color-primary);
    }
    .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 {
        max-width: 100%;
        border-radius: 10px;
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 30px;
        font-weight: 800;
        text-transform: uppercase;
        margin: 20px 0;
        color: var(--font-color);
    }
    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: var(--font-color);
        opacity: 0.7;
        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-size: 20px;
        font-weight: 800;
        color: #ffffff;
        background: var(--color-primary);
        text-decoration: none;
        padding: 15px 20px;
        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: 0;
        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%;
    }
    .articles-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
    }
    .article-item {
        position: relative;
        width: 100%;
    }
    .article-image {
        cursor: pointer;
        border-radius: 10px;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .article-content {
        padding: 20px 0;
    }
    .article-read-tag {
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--font-color);
        margin: 0;
    }
    .article-read-tag span {
        color: var(--color-primary);
    }
    .article-title {
        font-family: 'roboto', sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .article-title:hover {
        text-decoration: underline;
    }
    .article-description {
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: var(--color-primary);
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        text-decoration: none;
    }
    .proof-strip {
        width: 100%;
        margin: 0;
        padding: 50px 5%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: var(--color-primary);
    }
    .proof-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .proof-item h3 {
        margin: 0 auto;
        font-size: 25px;
        font-weight: 800;
        text-align: center;
        color: #fff;
    }
    .proof-item p {
        margin: 0 auto;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        color: #fff;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(1, 100%);
        grid-gap: 50px;
    }
    .step-item {
        background: var(--color-primary);
        border-radius: 10px;
        padding: 25px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 800;
        color: var(--color-primary);
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 800;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
}