.grecaptcha-badge {
    visibility: hidden !important;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes growOut {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 200px;
    }
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media(min-width: 1366px) {
    .faq-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
        align-items: flex-start;
    }

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

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

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

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

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

    .faq-open .faq-answer {
        display: block;
    }
    
    .process-container {
        width: 700px;
        margin: 50px auto;
    }

    .process-item {
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .process-item i {
        color: var(--primary-color);
        font-size: 100px;
    }

    .process-item img {
        width: 200px;
    }

    .process-item h3 {
        font-family: anodyne, sans-serif;
        font-size: 25px;
        font-weight: 500;
        color: var(--font-color);
        margin: 20px auto;
        text-align: center;
    }

    .process-item li,
    .process-item p {
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        margin: 10px auto;
    }

    .services-container {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .service-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .service-item img {
        width: 500px;
        height: 500px;
        object-fit: cover;
        border-radius: 50%;
        border: 10px solid #fff;
    }
    .service-item h3 {
        position: relative;
        cursor: pointer;
        top: -50px;
        font-family: barlow, sans-serif;
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        background-color: var(--font-color);
        width: 400px;
        padding: 20px 40px;
        text-align: center;
        border-radius: 100px;
        transition: 0.2s all ease-in-out;
    }
    .service-item h3:hover {
        background-color: var(--primary-color);
        transform: translateY(-15px);
    }

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

    .areas-summary h3 {
        font-size: 20px;
        font-weight: 500;
        color: var(--font-color);
        text-align: center;
        margin: 0;
    }

    .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: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 20px;
        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;
    }

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

    .page-header img {
        width: 200px;
        height: auto;
        margin: 10px auto;
    }
    
    .page-header h1 {
        font-family: barlow, sans-serif;
        font-size: 50px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
        position: relative;
    }

    .page-header h2 {
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: var(--secondary-color);
        opacity: 0.8;
        margin: 10px auto;
        padding: 0;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        transition: 0.2s all ease-in-out;
    }

    .middle-a:hover {
        opacity: 0.9;
    }

    .section-heading {
        margin: 0 0 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .heading-icon {
        height: 150px;
        margin: 0 0 20px 0;
    }

    .heading-decoration {
        width: 200px;
        margin: 20px 0 0 0;
    }

    .section-heading h2 {
        font-family: barlow, sans-serif;
        font-size: 45px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        color: var(--primary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
    }

    .section-heading h3 {
        font-family: barlow, sans-serif;
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        color: var(--font-color);
        margin: 10px auto;
        padding: 0;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 10%;
        color: #fff;
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
    }

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

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

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

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

    .video-section video {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        margin: 0 auto;
    }

    .video-section p {
        width: 600px;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.8;
        color: var(--font-color);
        margin: 50px auto;
        text-align: center;
    }

    .video-section p i {
        font-size: 80px;
        color: var(--primary-color);
    }

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

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

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

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

    .left-abstract-section {
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.9);
        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 {
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .vertical-flex-section {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .flex-section-text {
        max-width: 45%;
    }

    .flex-section-image {
        object-fit: cover;
        width: 40%;
        height: auto;
        max-height: 500px;
        border-radius: 2px;
    }

    .flex-section-text h2 {
        font-family: barlow, sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary-color);
        margin: 10px 0;
        padding: 0;
    }

    .flex-section>.flex-section-text>h2,
    .flex-section>.flex-section-text>h3,
    .flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: right;
    }
    
    .reverse-flex-section>.flex-section-text>h2,
    .reverse-flex-section>.flex-section-text>h3,
    .reverse-flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: left;
    }

    .flex-section>.flex-section-text>p,
    .flex-section>.flex-section-text>ul {
        text-align: right;
    }
    
    .reverse-flex-section>.flex-section-text>p,
    .reverse-flex-section>.flex-section-text>ul {
        text-align: left;
    }

    .flex-section>.flex-section-text a {
        position: relative;
        /* left: 50%;
        transform: translateX(-50%); */
        float: right;
    }

    .reverse-flex-section>.flex-section-text a {
        position: relative;
        /* left: 50%;
        transform: translateX(-50%); */
        float: left;
    }
    
    .flex-section-text h3 {
        font-size: 25px;
        font-weight: 700;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 400;
        margin: 10px 0;
        color: var(--font-color);
        line-height: 1.7;
    }

    .flex-section-text ul {
        list-style: none;
        margin: 10px 0;
    }
    
    .flex-section-text li {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 400;
        margin: 0;
        color: var(--font-color);
        line-height: 1;
    }

    .flex-section-text a {
        position: relative;
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        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%;
    }

    .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: 15px;
        font-weight: 400;
        color: var(--font-color);
        margin: 0;
    }

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

    .recommended-title,
    .article-title {
        font-family: barlow, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 500;
        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.7;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 15px 30px;
        border-radius: 2px;
        background-color: var(--primary-color);
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        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: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }

    .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 {
        border-radius: 10px;
        min-height: auto;
        padding: 50px;
        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-4 {
        grid-area: d;
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 35px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .tri-masonry-item h4 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 500;
        margin: 0;
        opacity: 0.9;
    }

    .tri-masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        box-shadow: -1px 1px 6px rgba(0, 0, 0, 0.4);
        background-size: 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 20px 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, var(--primary-color));
        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: var(--font-color);
        margin: 10px auto;
        text-align: center;
    }

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

    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: var(--primary-color);
        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: 30px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .masonry-item h4 {
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }

    .masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}

@media(max-width: 1366px) and (min-width: 1025px) {
    .faq-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        align-items: flex-start;
    }

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

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

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

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

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

    .faq-open .faq-answer {
        display: block;
    }
    
    .process-container {
        width: 700px;
        margin: 50px auto;
    }

    .process-item {
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .process-item i {
        color: var(--primary-color);
        font-size: 100px;
    }

    .process-item img {
        width: 200px;
    }

    .process-item h3 {
        font-family: anodyne, sans-serif;
        font-size: 25px;
        font-weight: 500;
        color: var(--font-color);
        margin: 20px auto;
        text-align: center;
    }

    .process-item li,
    .process-item p {
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        margin: 10px auto;
    }

    .services-container {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .service-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .service-item img {
        width: 400px;
        height: 400px;
        object-fit: cover;
        border-radius: 50%;
        border: 10px solid #fff;
    }
    .service-item h3 {
        position: relative;
        cursor: pointer;
        top: -50px;
        font-family: barlow, sans-serif;
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        background-color: var(--font-color);
        width: 300px;
        padding: 20px 40px;
        text-align: center;
        border-radius: 100px;
        transition: 0.2s all ease-in-out;
    }
    .service-item h3:hover {
        background-color: var(--primary-color);
        transform: translateY(-15px);
    }

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

    .areas-summary h3 {
        font-size: 20px;
        font-weight: 500;
        color: var(--font-color);
        text-align: center;
        margin: 0;
    }

    .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: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 20px;
        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;
    }

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

    .page-header img {
        width: 200px;
        height: auto;
        margin: 10px auto;
    }
    
    .page-header h1 {
        font-family: barlow, sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
        position: relative;
    }

    .page-header h2 {
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: var(--secondary-color);
        opacity: 0.8;
        margin: 10px auto;
        padding: 0;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        transition: 0.2s all ease-in-out;
    }

    .middle-a:hover {
        opacity: 0.9;
    }

    .section-heading {
        margin: 0 0 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .heading-icon {
        height: 150px;
        margin: 0 0 20px 0;
    }

    .heading-decoration {
        width: 200px;
        margin: 20px 0 0 0;
    }

    .section-heading h2 {
        font-family: barlow, sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        color: var(--primary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
    }

    .section-heading h3 {
        font-family: barlow, sans-serif;
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        color: var(--font-color);
        margin: 10px auto;
        padding: 0;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 5%;
        color: #fff;
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
    }

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

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

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

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

    .video-section video {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        margin: 0 auto;
    }

    .video-section p {
        width: 600px;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.8;
        color: var(--font-color);
        margin: 50px auto;
        text-align: center;
    }

    .video-section p i {
        font-size: 80px;
        color: var(--primary-color);
    }

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

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

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

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

    .left-abstract-section {
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.9);
        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 {
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .vertical-flex-section {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .flex-section-text {
        max-width: 45%;
    }

    .flex-section-image {
        object-fit: cover;
        width: 40%;
        height: auto;
        max-height: 500px;
        border-radius: 2px;
    }

    .flex-section-text h2 {
        font-family: barlow, sans-serif;
        font-size: 35px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary-color);
        margin: 10px 0;
        padding: 0;
    }

    .flex-section>.flex-section-text>h2,
    .flex-section>.flex-section-text>h3,
    .flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: right;
    }
    
    .reverse-flex-section>.flex-section-text>h2,
    .reverse-flex-section>.flex-section-text>h3,
    .reverse-flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: left;
    }

    .flex-section>.flex-section-text>p,
    .flex-section>.flex-section-text>ul {
        text-align: right;
    }
    
    .reverse-flex-section>.flex-section-text>p,
    .reverse-flex-section>.flex-section-text>ul {
        text-align: left;
    }

    .flex-section>.flex-section-text a {
        position: relative;
        /* left: 50%;
        transform: translateX(-50%); */
        float: right;
    }

    .reverse-flex-section>.flex-section-text a {
        position: relative;
        /* left: 50%;
        transform: translateX(-50%); */
        float: left;
    }
    
    .flex-section-text h3 {
        font-size: 25px;
        font-weight: 700;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 400;
        margin: 10px 0;
        color: var(--font-color);
        line-height: 1.7;
    }

    .flex-section-text ul {
        list-style: none;
        margin: 10px 0;
    }
    
    .flex-section-text li {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 400;
        margin: 0;
        color: var(--font-color);
        line-height: 1;
    }

    .flex-section-text a {
        position: relative;
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        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%;
    }

    .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: 15px;
        font-weight: 400;
        color: var(--font-color);
        margin: 0;
    }

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

    .recommended-title,
    .article-title {
        font-family: barlow, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 500;
        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.7;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 15px 30px;
        border-radius: 2px;
        background-color: var(--primary-color);
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        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: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }

    .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 {
        border-radius: 10px;
        min-height: auto;
        padding: 50px;
        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-4 {
        grid-area: d;
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .tri-masonry-item h4 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 500;
        margin: 0;
        opacity: 0.9;
    }

    .tri-masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        box-shadow: -1px 1px 6px rgba(0, 0, 0, 0.4);
        background-size: 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 20px 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, var(--primary-color));
        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: var(--font-color);
        margin: 10px auto;
        text-align: center;
    }

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

    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: var(--primary-color);
        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: 30px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .masonry-item h4 {
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }

    .masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}

@media(max-width: 1025px) and (min-width: 769px) {
    .faq-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        align-items: flex-start;
    }

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

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

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

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

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

    .faq-open .faq-answer {
        display: block;
    }
    
    .process-container {
        width: 700px;
        margin: 50px auto;
    }

    .process-item {
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .process-item i {
        color: var(--primary-color);
        font-size: 100px;
    }

    .process-item img {
        width: 200px;
    }

    .process-item h3 {
        font-family: anodyne, sans-serif;
        font-size: 25px;
        font-weight: 500;
        color: var(--font-color);
        margin: 20px auto;
        text-align: center;
    }

    .process-item li,
    .process-item p {
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        margin: 10px auto;
    }

    .services-container {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .service-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .service-item img {
        width: 350px;
        height: 350px;
        object-fit: cover;
        border-radius: 50%;
        border: 10px solid #fff;
    }
    .service-item h3 {
        position: relative;
        cursor: pointer;
        top: -50px;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        background-color: var(--font-color);
        width: 320px;
        padding: 20px 40px;
        text-align: center;
        border-radius: 100px;
        transition: 0.2s all ease-in-out;
    }
    .service-item h3:hover {
        background-color: var(--primary-color);
        transform: translateY(-15px);
    }

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

    .areas-summary h3 {
        font-size: 15px;
        font-weight: 500;
        color: var(--font-color);
        text-align: center;
        margin: 0;
    }

    .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: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 20px;
        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;
    }

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

    .page-header img {
        width: 200px;
        height: auto;
        margin: 10px auto;
    }
    
    .page-header h1 {
        font-family: barlow, sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
        position: relative;
    }

    .page-header h2 {
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: var(--secondary-color);
        opacity: 0.8;
        margin: 10px auto;
        padding: 0;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        transition: 0.2s all ease-in-out;
    }

    .middle-a:hover {
        opacity: 0.9;
    }

    .section-heading {
        margin: 0 0 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .heading-icon {
        height: 150px;
        margin: 0 0 20px 0;
    }

    .heading-decoration {
        width: 200px;
        margin: 20px 0 0 0;
    }

    .section-heading h2 {
        font-family: barlow, sans-serif;
        font-size: 35px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        color: var(--primary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
    }

    .section-heading h3 {
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: var(--font-color);
        margin: 10px auto;
        padding: 0;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 5%;
        color: #fff;
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
    }

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

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

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

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

    .video-section video {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        margin: 0 auto;
    }

    .video-section p {
        width: 90%;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.8;
        color: var(--font-color);
        margin: 50px auto;
        text-align: center;
    }

    .video-section p i {
        font-size: 80px;
        color: var(--primary-color);
    }

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

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

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

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

    .left-abstract-section {
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.9);
        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 {
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .vertical-flex-section {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .flex-section-text {
        max-width: 45%;
    }

    .flex-section-image {
        object-fit: cover;
        width: 40%;
        height: auto;
        max-height: 500px;
        border-radius: 2px;
    }

    .flex-section-text h2 {
        font-family: barlow, sans-serif;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary-color);
        margin: 10px 0;
        padding: 0;
    }

    .flex-section>.flex-section-text>h2,
    .flex-section>.flex-section-text>h3,
    .flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: right;
    }
    
    .reverse-flex-section>.flex-section-text>h2,
    .reverse-flex-section>.flex-section-text>h3,
    .reverse-flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: left;
    }

    .flex-section>.flex-section-text>p,
    .flex-section>.flex-section-text>ul {
        text-align: right;
    }
    
    .reverse-flex-section>.flex-section-text>p,
    .reverse-flex-section>.flex-section-text>ul {
        text-align: left;
    }

    .flex-section>.flex-section-text a {
        position: relative;
        /* left: 50%;
        transform: translateX(-50%); */
        float: right;
    }

    .reverse-flex-section>.flex-section-text a {
        position: relative;
        /* left: 50%;
        transform: translateX(-50%); */
        float: left;
    }
    
    .flex-section-text h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 400;
        margin: 10px 0;
        color: var(--font-color);
        line-height: 1.7;
    }

    .flex-section-text ul {
        list-style: none;
        margin: 10px 0;
    }
    
    .flex-section-text li {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 400;
        margin: 0;
        color: var(--font-color);
        line-height: 1;
    }

    .flex-section-text a {
        position: relative;
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        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%;
    }

    .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: 15px;
        font-weight: 400;
        color: var(--font-color);
        margin: 0;
    }

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

    .recommended-title,
    .article-title {
        font-family: barlow, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 500;
        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.7;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 15px 30px;
        border-radius: 2px;
        background-color: var(--primary-color);
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        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: auto;
        margin: 50px auto;
        grid-gap: 50px;
    }

    .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 {
        border-radius: 10px;
        min-height: auto;
        padding: 50px;
        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-4 {
        grid-area: d;
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .tri-masonry-item h4 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 500;
        margin: 0;
        opacity: 0.9;
    }

    .tri-masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        box-shadow: -1px 1px 6px rgba(0, 0, 0, 0.4);
        background-size: 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 20px 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, var(--primary-color));
        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: var(--font-color);
        margin: 10px auto;
        text-align: center;
    }

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

    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: var(--primary-color);
        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: 30px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .masonry-item h4 {
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 600;
        margin: 0;
    }

    .masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}

@media(max-width: 769px) {
    .faq-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-start;
    }

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

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

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

    .faq-answer {
        margin-top: 10px;
        display: none;
        font-family: barlow, sans-serif;
        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;
    }
    
    .process-container {
        width: 100%;
        margin: 50px auto;
    }

    .process-item {
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .process-item i {
        color: var(--primary-color);
        font-size: 100px;
    }

    .process-item img {
        width: 200px;
    }

    .process-item h3 {
        font-family: anodyne, sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: var(--font-color);
        margin: 20px auto;
        text-align: center;
    }

    .process-item li,
    .process-item p {
        font-size: 17px;
        font-weight: 400;
        color: var(--font-color);
        margin: 10px auto;
    }

    .services-container {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }
    .service-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .service-item img {
        width: 290px;
        height: 290px;
        object-fit: cover;
        border-radius: 50%;
        border: 10px solid #fff;
    }
    .service-item h3 {
        position: relative;
        cursor: pointer;
        top: -50px;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        background-color: var(--font-color);
        width: 290px;
        padding: 15px 20px;
        text-align: center;
        border-radius: 100px;
        transition: 0.2s all ease-in-out;
    }
    .service-item h3:hover {
        background-color: var(--primary-color);
        transform: translateY(-15px);
    }

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

    .areas-summary h3 {
        font-size: 14px;
        font-weight: 500;
        color: var(--font-color);
        text-align: center;
        margin: 0;
    }

    .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: var(--primary-color);
        margin: 0 auto;
    }

    .step h5 {
        font-size: 20px;
        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;
    }

    .page-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 65px 0 0 0;
        padding: 25px 5%;
        width: 100%;
        min-height: 350px;
        background-size: cover;
        background-position: 50% 40%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.65);
    }

    .page-header img {
        width: 150px;
        height: auto;
        margin: 10px auto;
    }
    
    .page-header h1 {
        font-family: barlow, sans-serif;
        font-size: 35px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
        position: relative;
    }

    .page-header h2 {
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        color: var(--secondary-color);
        opacity: 0.8;
        margin: 10px auto;
        padding: 0;
    }

    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        margin: 10px 0;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        transition: 0.2s all ease-in-out;
    }

    .middle-a:hover {
        opacity: 0.9;
    }

    .section-heading {
        margin: 0 0 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .heading-icon {
        height: 150px;
        margin: 0 0 20px 0;
    }

    .heading-decoration {
        width: 200px;
        margin: 20px 0 0 0;
    }

    .section-heading h2 {
        font-family: barlow, sans-serif;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        color: var(--primary-color);
        margin: 10px auto;
        padding: 0;
        text-align: center;
    }

    .section-heading h3 {
        font-family: barlow, sans-serif;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        color: var(--font-color);
        margin: 10px auto;
        padding: 0;
    }

    .section-text {
        margin: 0 auto;
        padding: 0 5%;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
    }

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

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

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

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

    .video-section video {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        margin: 0 auto;
    }

    .video-section p {
        width: 100%;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.8;
        color: var(--font-color);
        margin: 25px auto;
        text-align: center;
    }

    .video-section p i {
        font-size: 60px;
        color: var(--primary-color);
    }

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

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

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

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

    .left-abstract-section {
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.9);
        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 {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

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

    .vertical-flex-section {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .flex-section-text {
        width: 100%;
    }

    .flex-section-image {
        object-fit: cover;
        width: 80%;
        height: auto;
        max-height: 500px;
        border-radius: 2px;
    }

    .flex-section-text h2 {
        font-family: barlow, sans-serif;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary-color);
        margin: 10px 0;
        padding: 0;
    }

    .flex-section>.flex-section-text>h2,
    .flex-section>.flex-section-text>h3,
    .flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: center;
    }
    
    .reverse-flex-section>.flex-section-text>h2,
    .reverse-flex-section>.flex-section-text>h3,
    .reverse-flex-section>.flex-section-text>h4 {
        font-family: barlow, sans-serif;
        text-align: center;
    }

    .flex-section>.flex-section-text>p,
    .flex-section>.flex-section-text>ul {
        text-align: center;
    }
    
    .reverse-flex-section>.flex-section-text>p,
    .reverse-flex-section>.flex-section-text>ul {
        text-align: center;
    }

    .flex-section>.flex-section-text a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        float: center;
    }

    .reverse-flex-section>.flex-section-text a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        float: center;
    }
    
    .flex-section-text h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        color: var(--font-color);
    }

    .flex-section-text p {
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 400;
        margin: 10px 0;
        color: var(--font-color);
        line-height: 1.7;
    }

    .flex-section-text ul {
        list-style: none;
        margin: 10px 0;
    }
    
    .flex-section-text li {
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 400;
        margin: 0;
        color: var(--font-color);
        line-height: 1;
    }

    .flex-section-text a {
        position: relative;
        display: inline-block;
        margin: 10px auto;
        font-family: barlow, sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 2px;
        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%;
    }

    .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: 15px;
        font-weight: 400;
        color: var(--font-color);
        margin: 0;
    }

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

    .recommended-title,
    .article-title {
        font-family: barlow, sans-serif;
        display: inline-block;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 500;
        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.7;
        margin: 0;
    }

    .recommended-button,
    .article-button {
        display: inline-block;
        margin: 15px 0;
        padding: 15px 30px;
        border-radius: 2px;
        background-color: var(--primary-color);
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        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;
        grid-gap: 50px;
    }

    .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 {
        border-radius: 10px;
        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-4 {
        /* grid-area:dc; */
        background-position: 50% 50%;
    }

    .tri-masonry-item h3 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
    }

    .tri-masonry-item h4 {
        color: var(--secondary-color);
        font-family: barlow, sans-serif;
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        opacity: 0.9;
    }

    .tri-masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        box-shadow: -1px 1px 6px rgba(0, 0, 0, 0.4);
        background-size: 100%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 20px 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, var(--primary-color));
        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: var(--font-color);
        margin: 10px auto;
        text-align: center;
    }

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

    .strip-item a {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        background: var(--primary-color);
        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;
        text-transform: uppercase;
        margin: 0;
    }

    .masonry-item h4 {
        color: #fff;
        font-family: barlow, sans-serif;
        font-size: 17px;
        font-weight: 600;
        margin: 0;
    }

    .masonry-item a {
        font-family: barlow, sans-serif;
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 25px 0 0 0;
        border-radius: 2px;
    }
}