/* global */

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

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: "montserrat", sans-serif;
}

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

/* end of global */

@media(min-width: 1366px) {
    .service-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 700px;
    }
    .service-container img {
        width: 400px;
    }
    .service-container h2,
    .service-container h3,
    .service-container h4 {
        color: #444444;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin: 20px auto;
    }
    .service-container p,
    .service-container div,
    .service-container span {
        color: #444444;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        margin: 10px auto;
    }
    .service-container a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        margin: 50px 0 0 0;
        border-radius: 2px;
    }
    .step-container {
        position: relative;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: auto;
        padding: 0;
        border: none;
    }
    .step img {
        width: 200px;
        height: 200px;
        border-radius: 100px;
        object-fit: cover;
        margin: 10px auto;
    }
    .step h4 {
        font-size: 50px;
        font-weight: 700;
        color: #1111ba;
        margin: 0 auto;
    }
    .step h5 {
        font-size: 20px;
        font-weight: 700;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }
    .step h6 {
        font-size: 25px;
        font-weight: 500;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }
    .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: 3px;
        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-size: 16px;
        font-weight: 500;
        color: #444444;
        margin: 0;
    }
    .recommended-read-tag span,
    .article-read-tag span {
        color: #1111ba;
    }
    .recommended-title,
    .article-title {
        display: inline-block;
        text-decoration: none;
        color: #1111ba;
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .recommended-title:hover,
    .article-title:hover {
        text-decoration: underline;
    }
    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: #444444;
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: #1111ba;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
    }
    .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);
        width: 100%;
        height: 800px;
        margin: 50px auto;
    }
    .tri-masonry-item {
        min-height: auto;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 150px 75px rgba(0, 0, 0, 0.7);
        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 h3 {
        color: #fff;
        font-size: 35px;
        font-weight: 700;
        margin: 0;
    }
    .tri-masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .tri-masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
    .strip-container {
        margin: 100px auto 50px auto;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 100px;
    }
    .strip-item {
        position: relative;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 50px 25px 25px 25px;
        border-radius: 3px;
    }
    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(#d1464b, #1111ba);
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }
    .strip-item h3 {
        font-size: 25px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #444444;
        margin: 10px auto;
        text-align: center;
    }
    .strip-item h4 {
        font-size: 15px;
        font-weight: 500;
        color: #444444;
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }
    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        margin: 10px auto;
        padding: 10px 30px;
        text-decoration: none;
        text-align: center;
    }
    .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.4);
        transition: 0.3s all ease-in-out;
    }
    .masonry-item:hover {
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }
    .masonry-item h3 {
        max-width: 50%;
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        margin: 0;
    }
    .masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}

@media(max-width: 1366px) and (min-width: 1025px) {
    .service-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 700px;
    }
    .service-container img {
        width: 400px;
    }
    .service-container h2,
    .service-container h3,
    .service-container h4 {
        color: #444444;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin: 20px auto;
    }
    .service-container p,
    .service-container div,
    .service-container span {
        color: #444444;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        margin: 10px auto;
    }
    .service-container a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        margin: 50px 0 0 0;
        border-radius: 2px;
    }
    .step-container {
        position: relative;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: auto;
        padding: 0;
        border: none;
    }
    .step img {
        width: 200px;
        height: 200px;
        border-radius: 100px;
        object-fit: cover;
        margin: 10px auto;
    }
    .step h4 {
        font-size: 50px;
        font-weight: 700;
        color: #1111ba;
        margin: 0 auto;
    }
    .step h5 {
        font-size: 20px;
        font-weight: 700;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }
    .step h6 {
        font-size: 20px;
        font-weight: 500;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }
    .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: 3px;
        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-size: 16px;
        font-weight: 500;
        color: #444444;
        margin: 0;
    }
    .recommended-read-tag span,
    .article-read-tag span {
        color: #1111ba;
    }
    .recommended-title,
    .article-title {
        display: inline-block;
        text-decoration: none;
        color: #1111ba;
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .recommended-title:hover,
    .article-title:hover {
        text-decoration: underline;
    }
    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: #444444;
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: #1111ba;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
    }
    .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);
        width: 100%;
        height: 600px;
        margin: 50px auto;
    }
    .tri-masonry-item {
        min-height: auto;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 150px 75px rgba(0, 0, 0, 0.7);
        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 h3 {
        color: #fff;
        font-size: 35px;
        font-weight: 700;
        margin: 0;
    }
    .tri-masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .tri-masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
    .strip-container {
        margin: 100px auto 50px auto;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 100px;
    }
    .strip-item {
        position: relative;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 50px 25px 25px 25px;
        border-radius: 3px;
    }
    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(#d1464b, #1111ba);
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }
    .strip-item h3 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #444444;
        margin: 10px auto;
        text-align: center;
    }
    .strip-item h4 {
        font-size: 15px;
        font-weight: 500;
        color: #444444;
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }
    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        margin: 10px auto;
        padding: 10px 30px;
        text-decoration: none;
        text-align: center;
    }
    .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.4);
        transition: 0.3s all ease-in-out;
    }
    .masonry-item:hover {
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }
    .masonry-item h3 {
        max-width: 50%;
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        margin: 0;
    }
    .masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}

@media(max-width: 1025px) and (min-width: 769px) {
    .service-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 700px;
    }
    .service-container img {
        width: 400px;
    }
    .service-container h2,
    .service-container h3,
    .service-container h4 {
        color: #444444;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin: 20px auto;
    }
    .service-container p,
    .service-container div,
    .service-container span {
        color: #444444;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        margin: 10px auto;
    }
    .service-container a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        margin: 50px 0 0 0;
        border-radius: 2px;
    }
    .step-container {
        position: relative;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    .step {
        display: flex;
        flex-direction: column;
        justify-content: column;
        align-items: center;
        width: auto;
        padding: 0;
        border: none;
    }
    .step img {
        width: 200px;
        height: 200px;
        border-radius: 100px;
        object-fit: cover;
        margin: 10px auto;
    }
    .step h4 {
        font-size: 50px;
        font-weight: 700;
        color: #1111ba;
        margin: 0 auto;
    }
    .step h5 {
        font-size: 20px;
        font-weight: 700;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }
    .step h6 {
        font-size: 20px;
        font-weight: 500;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }
    .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: 3px;
        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-size: 16px;
        font-weight: 500;
        color: #444444;
        margin: 0;
    }
    .recommended-read-tag span,
    .article-read-tag span {
        color: #1111ba;
    }
    .recommended-title,
    .article-title {
        display: inline-block;
        text-decoration: none;
        color: #1111ba;
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .recommended-title:hover,
    .article-title:hover {
        text-decoration: underline;
    }
    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: #444444;
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: #1111ba;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
    }
    .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);
        width: 100%;
        height: 600px;
        margin: 50px auto;
    }
    .tri-masonry-item {
        min-height: auto;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 150px 75px rgba(0, 0, 0, 0.7);
        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 h3 {
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }
    .tri-masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .tri-masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
    .strip-container {
        margin: 100px auto 50px auto;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 100px;
    }
    .strip-item {
        position: relative;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 50px 25px 25px 25px;
        border-radius: 3px;
    }
    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(#d1464b, #1111ba);
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }
    .strip-item h3 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #444444;
        margin: 10px auto;
        text-align: center;
    }
    .strip-item h4 {
        font-size: 15px;
        font-weight: 500;
        color: #444444;
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }
    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        margin: 10px auto;
        padding: 10px 30px;
        text-decoration: none;
        text-align: center;
    }
    .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.4);
        transition: 0.3s all ease-in-out;
    }
    .masonry-item:hover {
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }
    .masonry-item h3 {
        max-width: 100%;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }
    .masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}

@media(max-width: 769px) {
    .service-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 700px;
    }
    .service-container img {
        width: 290px;
    }
    .service-container h2,
    .service-container h3,
    .service-container h4 {
        color: #444444;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin: 20px auto;
    }
    .service-container p,
    .service-container div,
    .service-container span {
        color: #444444;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.5;
        margin: 10px auto;
    }
    .service-container a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        margin: 50px 0 0 0;
        border-radius: 2px;
    }
    .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 {
        width: 200px;
        height: 200px;
        border-radius: 100px;
        object-fit: cover;
        margin: 10px auto;
    }
    .step h4 {
        font-size: 50px;
        font-weight: 700;
        color: #1111ba;
        margin: 0 auto;
    }
    .step h5 {
        font-size: 20px;
        font-weight: 700;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 1px;
    }
    .step h6 {
        font-size: 20px;
        font-weight: 500;
        color: #444444;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.5px;
    }
    .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: 3px;
        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-size: 16px;
        font-weight: 500;
        color: #444444;
        margin: 0;
    }
    .recommended-read-tag span,
    .article-read-tag span {
        color: #1111ba;
    }
    .recommended-title,
    .article-title {
        display: inline-block;
        text-decoration: none;
        color: #1111ba;
        font-size: 20px;
        font-weight: 600;
        margin: 5px 0;
    }
    .recommended-title:hover,
    .article-title:hover {
        text-decoration: underline;
    }
    .recommended-description,
    .article-description {
        font-size: 15px;
        font-weight: 400;
        color: #444444;
        line-height: 1.5;
        opacity: 0.7;
        margin: 0;
    }
    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 10px 30px;
        border-radius: 2px;
        background-color: #1111ba;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
    }
    .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);
        width: 100%;
        height: auto;
        margin: 50px auto;
    }
    .tri-masonry-item {
        min-height: 300px;
        padding: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 100px 75px rgba(0, 0, 0, 0.7);
        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 h3 {
        color: #fff;
        font-size: 25px;
        font-weight: 700;
        margin: 0;
    }
    .tri-masonry-item h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .tri-masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 17px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
    .strip-container {
        margin: 100px auto 50px auto;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 100px;
    }
    .strip-item {
        position: relative;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 50px 25px 25px 25px;
        border-radius: 3px;
    }
    .strip-item i {
        position: absolute;
        top: -50px;
        color: #fff;
        background-image: radial-gradient(#d1464b, #1111ba);
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }
    .strip-item h3 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #444444;
        margin: 10px auto;
        text-align: center;
    }
    .strip-item h4 {
        font-size: 15px;
        font-weight: 500;
        color: #444444;
        opacity: 0.9;
        margin: 10px auto;
        text-align: center;
        line-height: 1.5;
    }
    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: #1111ba;
        margin: 10px auto;
        padding: 10px 30px;
        text-decoration: none;
        text-align: center;
    }
    .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.4);
        transition: 0.3s all ease-in-out;
    }
    .masonry-item:hover {
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }
    .masonry-item h3 {
        max-width: 100%;
        color: #fff;
        font-size: 25px;
        font-weight: 700;
        margin: 0;
    }
    .masonry-item h4 {
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        margin: 0;
        opacity: 0.85;
    }
    .masonry-item a {
        display: inline-block;
        background-color: #1111ba;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}