/* General Styles */
section.remove_top_spacing{
    padding-top: 0;
}

section.remove_bottom_spacing{
    padding-bottom: 0;
}

/***** Flexi Elements *****/

/* Accordion */
.accordion_section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.accordion_section .container {
    display: flex;
    flex-direction: column;
}

.accordion_section h2 {
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -0.96px;
    margin-bottom: 24px;
}

.accordion_section P {
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 56px;
}

.accordion_container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.accordion_section .accordion-item {
    background-color: #F8FCF5;
    border-radius: 8px;
    margin-bottom: 16px;
}

.accordion_section .accordion-item:hover{
    background-color: #edf8e7;
}

.accordion_section .accordion-item.active {
    border: 4px solid #006837;
}

.accordion_section button {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    color: #323E48;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    padding: 21px 0;
    padding-left: 16px;
}

.accordion_section button:hover,
.accordion_section button:focus {
    cursor: pointer;
    color: #323E48;
}

.accordion_section button .accordion-title {
    color: var(--Secondary-Green, #006837);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 22px; 
    padding: 0 32px;
    padding-left: 16px;
}

.accordion_section button .icon {
    display: flex;
    width: 36px;
    height: 36px;
    color: #006837;
    border-radius: 22px;
    position: relative;
}

.accordion_section button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 19px;
    left: 11px;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.accordion_section button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 11px;
    left: 19px;
    width: 2px;
    height: 18px;
    background: currentColor;
}

.accordion_section button[aria-expanded="true"] {
    color: #444;
}

.accordion_section button[aria-expanded="true"] .icon::after {
    width: 0;
}

/*.accordion_section button[aria-expanded="true"] > .icon {
    background-color: #2A708B;
}*/

/*.accordion_section button[aria-expanded="true"] .icon::before,
.accordion_section button[aria-expanded="true"] .icon::after {
    color: #fff;
}*/

.accordion_section .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion_section button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: unset;
    transition: all 200ms linear;
}

.accordion_section .accordion-content p {
    width: 100%;
    max-width: 90%;
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding-left: 32px;
    margin: 45px auto;
    margin-top: 0px;
}

.accordion_section .accordion-content p a{
    display: block;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; 
    text-decoration: none;
    margin-top: 40px;
}

.accordion_column.accordion_image {
    display: flex;
    justify-content: center;
}

.accordion_column.accordion_image img {
    display: block;
    max-width: 100%;
}

.accordion_cta_container{
    display: flex;
    align-items: center;
}

.accordion_section .cta{
    margin-top: 32px;
    margin-right: 32px;
}

.accordion_section .accordion_cta_container .cta:nth-child(2) a{
    background-color: #C398DC;
}

@media only screen and (max-width: 1200px) {

    .accordion_section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .accordion_section h2{
        font-size: 40px;
        line-height: 48px;
    }

    .accordion_section button .accordion-title {
        font-size: 24px;
        line-height: 32px;
    }

}

@media only screen and (max-width: 1080px) {

    .accordion_section .container {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 90%;
        padding-left: 0;
        margin: 0 auto;
    }

    .accordion_container {
        flex-direction: column-reverse;
        max-width: 100%;
        padding-left: 0%;
    }

    .accordion_section .accordion {
        width: 100%;
        background-color: transparent;
        margin-right: 0;
    }

       .accordion_column.accordion_image {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 60px;
    }

    .accordion_column.accordion_image img {
        width: 100%;
        object-fit: cover;
    }

}

@media only screen and (max-width: 767px) {


    .accordion_section button .accordion-title {
        font-size: 18px;
        line-height: 24px;
    }

    .accordion_section .accordion-content p{
        font-size: 16px;
        line-height: 24px;
    }

    .accordion_column.accordion_image {
        margin-top: 20px;
    }

    .accordion_section button {
        padding-left: 32px;
    }

}

/* Hero */
.hero_section .container{
    width: 100%;
    max-width: 100%;
    position: relative;
}

.hero_section .hero_image img {
    display: block;
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

.hero_section.small img{
    max-height: 430px;
}

.hero_section .hero_content {
    width: 1152px;
    max-width: 90%;
    padding-bottom: 64px;
    margin: 0 auto;
    position: absolute;
    bottom: 35%;
    left: 0;
    right: 0;
    z-index: 2;
}



.hero_section h1, .hero_section h2 {
    width: 400px;
    max-width: 90%;
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "GT Super Ds Trial";
    font-style: normal;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
}

.hero_section.large h1, .hero_section.large h2{
    font-size: 84px;
    line-height: 74px;
}

.hero_section h3{
    color: var(--Primary-Colours-Slate-Gray-500, #FFF);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1px;
}

.hero_section h4{
    color: var(--Primary-Colours-Slate-Gray-500, #FFF);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1px;
}

.hero_section h5{
    color: var(--Primary-Colours-Slate-Gray-500, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1px;
}

.hero_section h6{
    color: var(--Primary-Colours-Slate-Gray-500, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
}

.hero_section p {
    color: var(--Primary-Colours-Slate-Gray-500, #FFF);
    font-family: "area-normal", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-left: 0;
}

/*.hero_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(184, 0, 0, 0.05), rgba(255, 0, 0, 0.4));
    z-index: 1;
}*/

.hero_section .cta_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero_section .cta{
    max-width: fit-content;
    display: flex;
    align-items: flex-start;
    background: var(--Secondary-Purple, #C398DC);
    color: var(--Fireseal_Black, #000);
    text-align: center;
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    margin-top: 30px;
    margin-right: 16px;
}

.hero_section .cta:hover{
    background: #006837;
    color: var(--Fireseal_Black, #fff);
}

.hero_section .cta2{
    background: #C0D818;
    color: var(--Fireseal_Black, #000);
}

.hero_section .cta2:hover{
    background: #C398DC;
    color: var(--Fireseal_Black, #000);

}

/* Medium Layout */
.hero_section.medium .hero_image img {
    max-height: 800px;
    object-fit: cover;
    object-position: bottom;
}

.postid-202 .hero_section.medium .hero_image img {
    object-position: center;
}

.hero_section.medium .hero_content{
    width: 1380px;
    max-width: 90%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    margin: 0 auto;
    bottom: 50px;
    left: 50px;
    right: 0;
}

.hero_section.medium .hero_content .hero_content_editor {
    width: 545px;
    max-width: 90%;
    background: rgba(7, 44, 32, 0.80);
    backdrop-filter: blur(2px);
    padding: 40px 48px;
    margin: 0;
}

.hero_section.medium h4 {
    color: var(--Primary-Light-green, #C0D818);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-top: 8px;
    border-top: 1px solid var(--Primary-Light-green, #C0D818);
    margin: 0;
}

.hero_section.medium h1{
    max-width: 100%;
    width: 100%;
    color: var(--Secondary-White-green, #EDF8E7);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin: 16px 0;
}

.hero_section.medium p{
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

/* Small Layout */
.hero_section.small .hero_image img {
    max-height: 600px;
    object-fit: cover;
    object-position: bottom;
}

.hero_section.small .hero_content{
    width: 1380px;
    max-width: 90%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    margin: 0 auto;
    bottom: 50px;
    left: 50px;
    right: 0;
}

.hero_section.small .hero_content .hero_content_editor {
    width: 545px;
    max-width: 90%;
    background: rgba(7, 44, 32, 0.80);
    backdrop-filter: blur(2px);
    padding: 40px 48px;
    margin: 0;
}

.hero_section.small h4 {
    color: var(--Primary-Light-green, #C0D818);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-top: 8px;
    border-top: 1px solid var(--Primary-Light-green, #C0D818);
    margin: 0;
}

.hero_section.small h1{
    max-width: 100%;
    width: 100%;
    color: var(--Secondary-White-green, #EDF8E7);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin: 16px 0;
}

.hero_section.small p{
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

@media only screen and (max-width: 1200px) {
    
    .hero_section .hero_image{
        height: 100%;
    }    

    .hero_section .hero_image img {
        max-width: 100%;
        object-fit: cover;
        height: 100%;
        object-position: left;
    }

    .hero_section .hero_content {
        max-width: 90%;
        right: 0;
        padding: 5%;
    }

    .hero_section h1,
    .hero_section h2{
        font-size: 40px;
        line-height: 48px;
    }

}

@media only screen and (max-width: 991px) {

    .hero_section {
        height: auto;
    }

    .hero_section .hero_image img {
        height: 400px;
        object-position: center;
    }

    .hero_section h1,
    .hero_section h2{
        color: var(--Secondary-White-green, #EDF8E7);
        font-size: 52px !important;
        font-style: normal;
        font-weight: 400;
        line-height: 52px !important;
    }

    .hero_section h4{
        color: var(--Primary-Colours-Slate-Gray-500, #323E48);
        font-size: 22px;
        line-height: 30px;
        line-height: normal;
    }

    .hero_section p{
        font-size: 18px;
        line-height: 26px;
    }

    .hero_section .cta {
        font-size: 14px;
        line-height: 22px;
        padding: 12px 24px;
    }

    /* Medium Layout */
    .hero_section.medium .hero_content .hero_content_editor{
        padding: 32px 24px;
    }

    .hero_section.medium .hero_image img {
        height: 600px;
    }

    .hero_section.medium .hero_content{
        left: 0;
    }

    .hero_section.medium .hero_content .hero_content_editor{
        max-width: fit-content;
    }

    .hero_section.medium h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    /* Small Layout */
    .hero_section.small .hero_content{
        background: var(--Primary-Dark-Green, #072C20);
        backdrop-filter: blur(2px);
        position: static;
    }

    .hero_section.small .hero_content .hero_content_editor{
        max-width: 100%;
        background-color: transparent;
        padding: 32px 24px;
    }

    .hero_section.small .hero_image img {
        height: 400px;
    }

    .hero_section.small .hero_content{
        left: 0;
    }

    .hero_section.small .hero_content .hero_content_editor{
        max-width: fit-content;
    }

    .hero_section.small h1 {
        font-size: 32px;
        line-height: 40px;
    }

}

@media only screen and (max-width: 440px) {

    .hero_section.small .hero_content .hero_content_editor {
        width: fit-content;
        max-width: 300px;
    }

    .hero_section.small p{
        line-height: 24px;
    }

    .editor-content{
        max-width: 80%;
    }

}

/* Image Gallery */
.image_gallery .container{
    display: flex;
    align-items: center;
    padding: 64px 0;
}

.image_gallery h2 {
    min-width: max-content;
    color: var(--Fireseal_White, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 0;
    margin-right: 2vw;
}

.image_gallery .image_gallery_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.image_item {
    margin: 0 2vw;
    margin-bottom: 2vh;
}

@media only screen and (max-width: 1024px) {

    .image_gallery .container {
        flex-direction: column;
    }

    .image_gallery h2{
        margin-bottom: 40px;
    }

}

@media only screen and (max-width: 767px) {

    .image_item {
        width: 100%;
        margin: 15px auto;
        text-align: center;
    }

    .image_item img{
        max-width: 300px;
        margin: 0 auto;
    }

}


/* Products */
.products_section {
    position: relative;
}

.products_section .container {
    display: flex;
    justify-content: space-between;
    padding: 64px 0;
}

.products_section .section_column.left {
    width: calc(100% - 764px);
    margin-right: 10%;
}

.products_section .section_column.right{
    width: 764px;
    position: absolute;
    right: 0;
}

.products_section .editor{
    margin-bottom: 64px;
}

.products_section .editor h4{
    color: var(--Fireseal_LightGrey, #999);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.products_section .editor h2{
    color: var(--Fireseal_White, #FFF);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.products_section .editor p{
    color: var(--Fireseal_LightGrey, #999);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
}

.product_item {
    display: flex;
    align-items: center;
    background: var(--Fireseal_Red, #F02929);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
    padding: 40px 32px;
    margin-bottom: 64px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: relative;
}

.product_item:hover {
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    background: #ff4d00;
}

.product_item img{
    display: block;
    width: 232px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin-right: 50px;
}

.product_item .product_title{
    color: var(--Fireseal_Black, #000);
    font-family: "area-normal", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-top: 0;
    margin-bottom: 15px; 
}

.product_item .product_description{
    color: var(--Fireseal_Black, #000);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
}

.products_section .section_column.right img{
    max-width: 100%;
}

.products_section.vertical .section_column.left {
    width: 100%;
    margin-right: 0;
}

.products_section.vertical .editor {
    width: 872px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 32px;
}

.products_section.vertical .products_list {
    display: flex;
    flex-wrap: wrap;
}

.products_section.vertical .product_item {
    width: calc(33.333% - 64px);
    align-items: flex-start;
    background: var(--Fireseal_LightGrey, #999);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
    padding: 32px 0px;
    margin: 32px;
}

.products_section.vertical .product_item_column.text_column img{
    padding-right: 30px;
}

.products_section.vertical .product_item img {
    width: 152px;
    height: 176px;
    margin-right: 0;
    position: relative;
    left: -30px;
}

.product_item .product_arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 30px;
    width: auto;
    height: auto;
    margin-right: 0;
    display: none;
}

@media only screen and (max-width: 1640px) {

        .products_section.vertical .product_item .product_title {
            font-size: 30px;
            line-height: 38px;;
        }

}


@media only screen and (max-width: 1540px) {

        .products_section .section_column.left {
            width: calc(100% - 500px);
            margin-right: 10%;
        }


        .products_section .section_column.right{
            width: 500px;
        }

}

@media only screen and (max-width: 1340px) {

        .products_section .section_column.left {
            width: calc(100% - 400px);
            margin-right: 10%;
        }


        .products_section .section_column.right{
            width: 400px;
        }

        .products_section.vertical .product_item {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .products_section.vertical .product_item_column.text_column{
            padding: 5%;
        }

        .products_section.vertical .product_item_column{
            width: 100%;
        }

        .products_section.vertical .product_item_column.text_column {
            max-width: 90%;
            padding: 5%;
            padding-bottom: 0;
        }

        .products_section.vertical .product_item img {
            width: auto;
            left: 25px;
        }

}

@media only screen and (max-width: 1200px) {

    .products_section .container {
        flex-direction: column;
    }

    .products_section .section_column.left {
        width: 100%;
    }

    .products_section .section_column.right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: static;
    }

}

@media only screen and (max-width: 1200px) {

    .products_section.vertical .product_item {
        width: calc(50% - 64px);
    }

}

@media only screen and (max-width: 767px) {

    .product_item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 80%;
        padding: 10%;
    }

    .product_item img {
        display: block;
        width: auto;
        height: auto;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .products_section.vertical .product_item {
        width: 100%;
        max-width: 100%;
    }

    .products_section.vertical .product_item img {
        margin: 0;
    }

}


/* Post Carousel */
.post_carousel{
    padding: 64px 0;
}

.post_carousel .editor{
    margin-bottom: 64px;
}

.post_carousel h4{
    color: var(--Fireseal_LightGrey, #999);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; 
}

.post_carousel h4.position{
    color: var(--Fireseal_LightGrey, #999);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
}

.post_carousel h2{
    width: 1006px;
    max-width: 90%;
    color: var(--Fireseal_White, #FFF);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin: 0 auto;
}

.post_carousel p {
    color: var(--Fireseal_LightGrey, #999);
    text-align: left;
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.post_carousel .editor p{
    text-align: center;
}

.post_carousel .post_carousel_item {
    margin: 0 20px; 
}

.post_carousel .post_carousel_item a{
    color: #fff;
    text-decoration: none;
}

.post_carousel .post_carousel_image{
    height: 300px;
    overflow: hidden;
}

.post_carousel.team_member .post_carousel_image{
    height: 360px;
}

.post_carousel h3{
    color: var(--Fireseal_White, #FFF);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.post_carousel .excert{
    color: var(--Fireseal_LightGrey, #999);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.post_carousel .slick-arrow img{
    display: none;
}

.post_carousel .see_more{
    max-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Secondary_Yellow, #FC9F14);
    padding: 10px 24px;
    border-radius: 4px;
    margin-top: 50px;
}

.post_carousel .see_more span{
    color: #000;
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin-right: 10px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.post_carousel .see_more:hover{
    background: var(--Secondary_Yellow, #ff4d00);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.post_carousel .see_more:hover > span{
    color: #000;
}

.post_carousel .slick-arrow {
    background-color: rgba(255, 255, 255, 0.90);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
}

.post_carousel .slick-arrow:before{
    visibility: hidden;
}

.post_carousel .slick-prev {
    background-image: url(/wp-content/themes/matrixinternet2023/images/previous-page.svg);
}

.post_carousel .slick-next {
    background-image: url(/wp-content/themes/matrixinternet2023/images/next-page.svg);
}

@media only screen and (max-width: 767px) {

    .post_carousel .post_carousel_image img{
        display: block;
        margin: 0 auto;
    }

    .post_carousel h3{
        text-align: center;
    }

}


/* Text Editor Section */
.text_editor_section{
    padding: 96px 0;
}

.text_editor_section h2{
    color: var(--Base-Black, #000);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -1.2px;
}

.text_editor_section h3{
    color: var(--Base-Black, #000);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.2px;
    margin: 24px 0;
}

.text_editor_section h4{
    color: var(--Base-Black, #000);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1.2px;
}

.text_editor_section h5{
    color: var(--Base-Black, #000);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -1.2px;
}

.text_editor_section h6{
    color: var(--Base-Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -1.2px;
    margin: 0;
}

.text_editor_section p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
}

.text_editor_section.center .container{
    width: 1070px;
}

.text_editor_section.two_columns .container {
    display: flex;
    align-items: flex-start;
    width: 1400px;
    max-width: 90%;
}

.text_editor_section.two_columns h2,
.text_editor_section.two_columns h3,
.text_editor_section.two_columns h4,
.text_editor_section.two_columns h5,
.text_editor_section.two_columns h6{
    width: 667px;
    max-width: 90%;
}

.text_editor_section.two_columns .editor_container{
    padding: 0 5%;
}

.text_editor_section.two_columns .editor_container.right{
    max-width: 500px;
    padding-top: 50px;
}

@media only screen and (max-width: 1440px) {

    .text_editor_section.two_columns .editor_container {
        padding: 0 5%;
        width: 40%;
    }

}

@media only screen and (max-width: 828px) {

    .text_editor_section.two_columns .container {
        flex-direction: column;
    }

    .text_editor_section.two_columns .editor_container {
        padding: 0;
        width: 100%;
    }

    .text_editor_section {
        padding: 60px 0;
    }

    .text_editor_section.two_columns h2{
        width: 100%;
        max-width: 90%;
        font-size: 32px !important;
        line-height: 40px !important;
    }
 
    .text_editor_section.two_columns h3{
        width: 100%;
        max-width: 90%;
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .text_editor_section.two_columns h4 {
        width: 100%;
        max-width: 90%;
        font-size: 24px !important;
        line-height: 32px !important;
    }
 
    .text_editor_section.two_columns h5{
        width: 100%;
        max-width: 90%;
        font-size: 22px !important;
        line-height: 30px !important;
    }
 
    .text_editor_section.two_columns h6 {
        width: 100%;
        max-width: 90%;
        font-size: 20px !important;
        line-height: 28px !important;
    }

    .text_editor_section.two_columns .editor_container.right {
        max-width: 100%;
        padding-top: 0px;
    }

}

.text_editor_section.boxed{
    max-width: 80%;
    margin: 0 auto;
}

.text_editor_section.two_columns.boxed .editor_container.right {
    padding-top: 0px;
} 

.text_editor_section.two_columns.boxed p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.text_editor_section.two_columns.boxed ul{
    list-style-type: none;
    margin-top: 0;
}

.text_editor_section.two_columns.boxed li{
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 24px;
}

.text_editor_section.two_columns.boxed li a {
    display: flex;
    min-width: 300px;
    background-image: url('/wp-content/themes/matrixinternet2023/images/arrow-right-orange.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 90% 50%;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
}

@media only screen and (max-width: 991px) {

    .text_editor_section.boxed {
        max-width: 90%;
        margin: 0 auto;
        padding: 60px 0%;
    }

    .text_editor_section.two_columns.boxed .container{
        flex-direction: column;
    }

    .text_editor_section.two_columns.boxed .editor_container {
        flex-direction: column;
        padding: 0 5%;
        width: 100%;
        max-width: 90%;
    }

    .text_editor_section.two_columns.boxed ul {
        padding-left: 0;
        margin-top: 50px;
    }

    .text_editor h2 {
        font-size: 36px !important;
        line-height: 44px !important;
    }

    .single-program .text_editor{
        padding-bottom: 32px;
    }

}




/* Counters */
.counters{
    max-width: var(--maxw);
    background-color: #F8FCF5;
    font-family: "area-normal", sans-serif;
    margin-inline: auto;
    padding: 72px 0;
    padding-bottom: 48px;
  }

.counters .stats{
    background: var(--bg);
    border-radius: 18px;
    padding: 56px 22px 64px;
}

.counters .stats h2{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin-bottom: 56px;
}

.counters .grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.counters .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.counters .value{
    color: var(--Secondary-Green, #006837);
    text-align: center;
    font-size: 82px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
}

.counters .label{
    color: var(--Primary-Dark-Green, #072C20);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 24px;
}

.counters .dot{
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--ink);
    display: inline-block; margin-left: 6px; translate: 0 2px;
    opacity: .14;
}

@media only screen and (max-width: 1200px) {

    .counters .value {
        font-size: 60px;
        line-height: 70px;
    }

}

@media only screen and (max-width: 767px) {

    .counters {
        padding: 24px 0;
    }

    .counters .stats h2 {
        font-size: 36px;
        line-height: 44px;
        text-align: center;
    }

    .counters .grid {
        justify-content: center;
    }

    .counters .value {
        font-size: 50px;
        line-height: 60px;
    }

}

@media only screen and (max-width: 414px) {

    .counters .grid {
        flex-direction: column;
    }

    .counters .label {
        margin-top: 10px;
    }

}


/* Image with Editor */
.image_with_editor {
    padding: 144px 0;
}

.image_with_editor .img_editor_item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 160px;
}

.image_with_editor .img_editor_item:nth-child(2n+2){
    flex-direction: row-reverse;
}

.image_with_editor .img_editor_item .editor{
    max-width: 416px;
    padding: 72px;
}

.image_with_editor .img_editor_item .editor h2{
    color: var(--Base-Black, #000);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -1.2px;
}

.image_with_editor .img_editor_item .editor  p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.image_with_editor .img_editor_item .editor ul{
    padding-left: 0px;
    list-style-type: none;
    margin: 40px 0;
}

.image_with_editor .img_editor_item .editor  li{
    color: #323E48;
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
    background-image: url(/wp-content/themes/matrixinternet2023/images/carousel-arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    max-width: 360px;
}

.image_with_editor a.cta{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Primary-Colours-Deep-Purple-600, #35222E);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 24px;
    margin-top: 25px;
    max-width: fit-content;
}

/* Editor Left - Image on the Right */
.image_with_editor.editor_left_with_image_right .img_editor_item {
    flex-direction: row-reverse;
}

.image_with_editor.editor_left_with_image_right .img_editor_item:nth-child(2n+2){
    flex-direction: row;
}

/* BG Image Left - Editor on the right */
.image_with_editor.bg_image_left_with_editor_on_the_right{
    background-image: none;
}

.image_with_editor.bg_image_left_with_editor_on_the_right .container{
    width: 100%;
    max-width: 100%;
}

.image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item {
    justify-content: space-between;
    flex-direction: row-reverse;
}

.image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_column.image_column img{
    max-width: 100%;
}

.image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item:nth-child(2n+2){
    flex-direction: row;
}

.image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_column{
    margin-right: auto;
}

.editor_on_the_left_with_bg_image_right .img_editor_column.text_column{
    width: 40%;
}

.image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_item .editor {
    max-width: 512px;
    margin-left: auto;
}

.image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_item:nth-child(2n+2) .editor {
    margin-left: 0;
    margin-right: auto;
}

/* Editor Left - BG Image on the right */
.image_with_editor.editor_on_the_left_with_bg_image_right .container{
    width: 100%;
    max-width: 100%;
}

.image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_item {
    justify-content: space-between;
}

.image_with_editor.editor_on_the_left_with_bg_image_right h4{
    background: var(--Primary-Gradients-Deep-Purple-Dark, linear-gradient(45deg, #35222E 0%, #4C3041 100%));
    color: var(--Base-White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 28px;
    max-width: fit-content;
}

.image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_column.image_column img{
    max-width: 100%;
}

.image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_item .editor  li {
    background-image: url(/wp-content/themes/matrixinternet2023/images/arrow-right-orange.svg);
}

/* Image with Editor - BG Matrix Logo */
.image_with_editor.matrix_logo{
    background-image: url(/wp-content/themes/matrixinternet2023/images/case-studies-bg.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 100% 35%;
}

.editor_on_the_left_with_bg_image_right.matrix_logo {
    background-position: 0% 35%;
}

.image_with_editor.matrix_logo h4 {
    background: var(--Primary-Gradients-Deep-Purple-Dark, linear-gradient(45deg, #35222E 0%, #4C3041 100%));
    color: var(--Base-White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 28px;
    max-width: fit-content;
}

/* Image with Editor - Orange Vector */
.image_with_editor.orange_vector {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 20vh;
}

.image_with_editor.orange_vector .img_editor_item .editor h2,
.image_with_editor.orange_vector .img_editor_item .editor h3,
.image_with_editor.orange_vector .img_editor_item .editor h5,
.image_with_editor.orange_vector .img_editor_item .editor h6,
.image_with_editor.orange_vector .img_editor_item .editor p,
.image_with_editor.orange_vector .img_editor_item .editor li{
    color: #fff;
}

.image_with_editor.orange_vector .img_editor_item .editor li {
    background-image: url('/wp-content/themes/matrixinternet2023/images/arrow-right-white.svg');
}

.image_with_editor .counter_wrapper {
    display: flex;
    margin-top: 15px;
}

.image_with_editor .counter_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-right: 32px;
    margin-bottom: 20px;
}

.image_with_editor .counter_item:nth-child(3n+2) .counter_number.counter:before {
    content: '';
}

.image_with_editor .counter_item:nth-child(3n+3) .counter_number.counter:before {
    content: '';
}

.image_with_editor .counter_item:nth-child(3n+3) .counter_number.counter:after {
    content: '+';
}

.image_with_editor .counter_number_container{
    display: flex;
    align-items: center;
}

.image_with_editor .counter_number,
.image_with_editor .counter_number_sumbol {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -1.2px;
}

.image_with_editor .counter_text {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin-top: 10px;
    min-width: 100px;
}

@media only screen and (min-width: 1200px) {

    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_column.image_column{
        width: 60%;
    }

    .image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_column.image_column{
        width: 60%;
    }

}

@media only screen and (max-width: 1640px) {

    .matrix_logo img,
    .image_with_editor.orange_vector img{
        max-width: 800px;
    }

}

@media only screen and (max-width: 1440px) {

    .img_editor_column{
        width: 50%;
    }

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

    .image_with_editor .img_editor_item .editor h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .image_with_editor .img_editor_item {
        margin-bottom: 80px;
    }

}

@media only screen and (max-width: 1200px) {

    .image_with_editor .img_editor_column {
        width: 50%;
    }

    .editor_on_the_left_with_bg_image_right .img_editor_column.text_column {
        width: 50%;
    }

    .image_with_editor.orange_vector {
        background-size: cover;
        padding: 60px 0;
    }

}

@media only screen and (max-width: 991px) {

    .image_with_editor .img_editor_item .editor {
        max-width: 90%;
        padding: 0%;
    }

    .image_with_editor .img_editor_item .editor h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .image_with_editor .img_editor_item {
        flex-direction: column;
        margin-bottom: 0px;
    }

    .image_with_editor .img_editor_item:nth-child(2n+2) {
        flex-direction: column;
    }

    .image_with_editor {
        padding: 60px 0;
    }

    .img_editor_column{
        padding: 5%;
    }

    .image_with_editor .img_editor_column {
        width: 100%;
    }

    .editor_on_the_left_with_bg_image_right .img_editor_column.text_column {
        width: 100%;
    }

    .image_with_editor.editor_on_the_left_with_bg_image_right .container {
        max-width: 90%;
    }

    .image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_item .editor {
        max-width: 100%;
        margin-left: 0;
    }

    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item {
        flex-direction: column;
    }

    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item:nth-child(2n+2) {
        flex-direction: column;
    }

    .image_with_editor.orange_vector img {
        max-width: 100%;
    }

}


@media only screen and (max-width: 828px) {

    .img_editor_column {
        width: 100%;
    }

    .image_with_editor.editor_left_with_image_right .img_editor_item,
    .image_with_editor.editor_left_with_image_right .img_editor_item:nth-child(2n+2),
    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item,
    .image_with_editor.editor_on_the_left_with_bg_image_right .img_editor_item {
        flex-direction: column;
    }

    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_column {
        margin-right: 0;
    }

    .image_with_editor .img_editor_item .editor {
        margin: 0 auto;
    }

    .image_with_editor.orange_vector .img_editor_column{
        padding-bottom: 0;
    }

}


/* Post Hero */
.post_hero{
    background: linear-gradient(100deg, #C42F9E 7.65%, #00856A 99.19%);
    position: relative;
    padding-top: 170px;
    padding-bottom: 50px;
}

.post_hero .post_hero_content {
    display: flex;
    align-items: flex-start;
    padding-left: 12vw;
}

.post_hero .vector_image{
    position: absolute;
    left: 0;
    bottom: 0;
}

.post_hero .vector_image img{
   width: 40vw;
}

.post_hero .thumbnail{
    width: 50vw;
}

.post_hero .post_hero_text h2{
    margin-bottom: 0;
}

.post_hero .post_hero_text .title{
    color: var(--Base-White, #FFF);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; 
    text-transform: uppercase;
    text-decoration: none;
}

.post_hero .post_hero_text h3{
    margin-top: 0px;
}

.post_hero .post_hero_text .excerpt{
    color: var(--Base-White, #FFF);
    font-family: "area-normal", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.72px;
    text-decoration: none;
}

.post_hero .assigned_services li {
    color: var(--Primary-Colours-Slate-Gray-300, #fff);
    border: 2px solid var(--Primary-Colours-Slate-Gray-300, #fff);
}

.post_hero .permalink {
    display: inline-block;
    background: #FFF;
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding: 16px 40px;
    border: 2px solid var(--Base-White, #FFF);
    border-radius: 30px;
    margin-top: 10px;
}

.post_hero .permalink a{
   color: var(--Primary-Colours-Slate-Gray-500, #323E48);
   text-decoration: none;
}

@media only screen and (max-width: 1440px) {

    .post_hero .thumbnail {
        width: 45vw;
    }

}

@media only screen and (max-width: 1200px) {
    
    .post_hero .post_hero_content {
        padding-left: 0px;
    }

}

@media only screen and (max-width: 991px) {

    .post_hero {
        padding: 120px 0;
    }
    
    .post_hero .post_hero_content {
        flex-direction: column;
    }

    .post_hero .thumbnail {
        width: auto;
        max-width: 100%;
    }

    .post_hero_text{
        margin-top: 50px;
    }

    .post_hero  .vector_image{
        display: none;
    }

}

/* List */
.list_section{
    padding: 92px 0;
}

.list_section .container{
    width: 1400px;
    max-width: 90%;
    margin: 0 auto;
}

.list_section h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; 
}

.list_section h4{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.list_section .list_editor{
    max-width: 932px;
    margin-bottom: 56px;
}

.list_item{
    display: flex;
    align-items: flex-start;
    border-top: 1px solid #E0E2E4;
    padding: 35px 0;
    margin: 0 auto;
}

.list_item:last-child{
    border-bottom: 1px solid #E0E2E4;
}

.list_item_column{
    width: 50%;
}

.list_item_title{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    max-width: calc(50% - 50px);
    padding-right: 50px;
}

.list_item_title strong{
    color: #FF5200;
    font-weight: 700;
}

.list_item_text{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "area-normal", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}

.row .list_item{
    flex-direction: column;
}

.row .list_item_column{
    width: 100%;
}

.row .list_item_title{
    margin-bottom: 16px;
}


@media only screen and (max-width: 1024px) {

    .list_section h3{
        font-size: 24px;
        line-height: 32px; 
    }

}

@media only screen and (max-width: 828px) {

    .list_section h3{
        font-size: 24px;
        line-height: 32px; 
    }

    .list_item{
        flex-direction: column;
    }

    .list_item_column{
        width: 100%;
    }

    .list_item_title {
        max-width: 100%;
        padding-right: 0px;
        margin-bottom: 12px;
    }

}


/* Contact Form */
.contact_form{
    font-family: "area-normal", sans-serif;
}

.contact_form .container {
    display: flex;
    align-items: flex-start;
    padding: 64px 0;
    margin: 0 auto;
}

.contact_form .container .column.left{
    width: calc(40% - 64px);
    margin-right: 64px;
}

.contact_form .container .column.left div{
    display: flex;
    flex-wrap: wrap;
}

.contact_form .container .column.right{
    width: 60%;
}

.contact_form .container .column.left h4{
    color: var(--Fireseal_LightGrey, #fff);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.contact_form .container .column.left h2{
    color: var(--Fireseal_White, #C0D818);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px; 
}

.contact_form .container .column.left .contact_icon,
.contact_form .container .column.left .contact_icon p{
    display: flex;
    align-items: flex-start;
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    text-decoration: none;
    margin-bottom: 32px;
}

.contact_form .container .column.left .contact_icon p{
    margin-bottom: 0;
}

.contact_form .container .column.left .contact_icon img{
    margin-right: 8px;
    margin-bottom: 8px;
}

.contact_form .container .column.left p{
    color: var(--Fireseal_LightGrey, #fff);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 24px;
}

.contact_form .container .column.left p a{
    color: #C0D818;
    text-decoration: underline;
}

.contact_form .container .column.left li{
    color: #fff;
    margin-bottom: 10px;
}

.contact_form .container .column.left li a{
    color: #fff;
}

.contact_form .container .column.left  li img{
    position: relative;
    top: 3px;
    margin: 0 3px;
}

.contact_form .container .column.left .timetable{
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}

.contact_form .container .column.left .timetable_row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.contact_form .container .column.left .timetable_row .timetable_day{
    margin-right: 32px;
}

@media only screen and (max-width: 767px) {

    .contact_form .container .column.left h2 {
        font-size: 36px;
        line-height: 44px;
    }

}



.follow{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 32px;
}

.social{
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-left: 0;
}

.social li{
    margin-right: 16px;
}


.tell_us_about{
    display: flex;
    align-items: center;
    background: linear-gradient(105deg, rgba(224, 226, 228, 0.30) 36.41%, #E0E2E4 100%);
}

.tell_us_column.content{
    padding: 5%;
}

.tell_us_about h2{
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
}

.address_list{
    display: flex;
    align-items: center;
}

.tell_us_about .address{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.tell_us_about  h3{
    display: flex;
    align-items: center;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.tell_us_about h3 img{
    margin-right: 16px;
}

.tell_us_about  p{
    max-width: 270px;
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.tell_us_about  p a{
    display: flex;
    align-items: center;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.tell_us_about  p a img{
    margin-right: 12px;
}

.tell_us_column.map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 900px;
    background: linear-gradient(105deg, rgba(224, 226, 228, 0.30) 36.41%, #E0E2E4 100%);
    background-image: url('/wp-content/themes/matrixinternet2023/images/europe-map.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
}

.tell_us_about .wizard {
    margin-top: 20px;
}

.tell_us_about .wizard-step {
    display: none;
}

.tell_us_about .wizard-step.active {
    display: block;
}

.tell_us_about label{
    display: block;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
}

.relative_container{
    position: relative;
}

.tell_us_about button {
    display: flex;
    width: 140px;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 22px;
    border: 1px solid var(--Primary-Colours-Orange-400, #FF7533);
    background: var(--Primary-Colours-Orange-400, #FF7533);
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.relative_container button{
    position: absolute;
    right: 6px;
    bottom: 6px;
}

.tell_us_about button:hover{
    cursor: pointer;
}

.buttons_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.tell_us_about button.prev-step {
    background: #ccc;
    border: 1px solid #ccc;
}

.tell_us_about button.submit-form {
    background: #28a745;
}

.tell_us_about .checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;
}

#privacy_policy{
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

#privacy_policy:hover {
    cursor: pointer;
}

.tell_us_about .checkbox label {
    display: block;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    cursor: pointer;
}

.tell_us_about .checkbox label a {
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    text-decoration: none;
}

.tell_us_about .checkbox label a:hover{
    text-decoration: underline;
}

.tell_us_about .phone-input {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.tell_us_about .phone-input select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tell_us_about .phone-input input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tell_us_about input {
    display: flex;
    width: 532px;
    max-width: 90%;
    background: var(--Base-White, #FFF);
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-radius: 28px;
    border: 2px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
}

.tell_us_about input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.tell_us_about input::-moz-placeholder { /* Firefox 19+ */
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.tell_us_about input:-ms-input-placeholder { /* IE 10+ */
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.tell_us_about input:-moz-placeholder { /* Firefox 18- */
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

#budget{
    width: 100%;
    height: 56px;
    border-radius: 28px;
    border: 2px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
    margin-bottom: 10px;
    padding: 0 10px;
}

#message {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
}

.remove_map .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1343px;
    max-width: 90%;
    margin: 0 auto;
}

.tell_us_about.remove_map  .wizard-step {
    max-width: 428px;
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 56px 44px;
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
}

.tell_us_about.remove_map  input {
    width: 100%;
    max-width: calc(100% - 64px);
}

.tell_us_about.remove_map .checkbox label {
    font-size: 14px;
    line-height: 22px;
}

.tell_us_about.remove_map .checkbox label a {
    font-size: 14px;
    line-height: 22px;
}

.remove_map  .relative_container button {
    position: static;
    margin-top: 32px;
    padding: 16px 40px;
    border-radius: 30px;
    width: auto;
}

@media only screen and (max-width: 1680px) {

    .tell_us_column.map {
        height: 100vh;
        max-height: 600px;
    }

}

@media only screen and (max-width: 1200px) {

    .tell_us_column.content {
        padding: 5%;
        width: 40%;
    }

    .tell_us_column.map {
        width: 50%;
        height: 100vh;
        max-height: 600px;
    }

    .tell_us_about input {
        width: 100%;
        max-width: 90%;
        padding-right: 12px;
    }

}

@media only screen and (max-width: 991px) {

    .tell_us_about {
        flex-direction: column;
        padding: 60px 0;
    }

    .tell_us_column.content {
        padding: 0 5%;
        width: 90%;
    }

    .tell_us_column.map {
        width: 100%;
        height: 400px;
        padding: 50px;
        background-size: contain;
        margin-top: 50px;
    }
        
}

@media only screen and (max-width: 668px) {

    .tell_us_about .address {
        display: flex;
        align-items: center;
        flex-direction: column;
        align-items: flex-start;
    }

}


/* Address & Contact Form */
.contact_form h3 {
    color: var(--Primary-Light-green, #C0D818);
    font-family: "area-normal", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}

.contact_form .wpcf7-form {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
}

.contact_form .wpcf7 .form_row{
    display: flex;
    flex-direction: column;
    order: 2;
    margin-bottom: 0px;
}

.contact_form .form_row p {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.contact_form .form_row p a{
    color: #fff;
}

.contact_form .form_row label {
    width: calc(100% - 0px);
    color: var(--Fireseal_Black, #fff);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.contact_form .form_row .wpcf7-radio label{
    display: flex;
    flex-direction: row;
}

.contact_form .form_row .wpcf7-radio label input{
    margin-top: 7px;
}

.contact_form .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin: 0;
}

.contact_form .wpcf7-list-item-label{
    position: relative;
    top: 2px;
    left: 5px;
}

.contact_form .wpcf7-radio{
    display: block;
    margin-top: 24px;
}

.contact_form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
}

.contact_form .wpcf7-checkbox .wpcf7-list-item label{
    flex-direction: row;
}

.contact_form .wpcf7-checkbox .wpcf7-list-item label input{
    margin-top: 8px;
}

.contact_form .form_row .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.contact_form .wpcf7-response-output{
    display: flex;
    order: 1;
}

.contact_form h4 {
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 0;
}

.contact_form h5 {
    font-weight: 400;
    color: var(--Primary-Light-green, #C0D818);
    margin-top: 16px;
}

.contact_form .wpcf7 input[type="text"], .contact_form .wpcf7 input[type="email"], .contact_form .wpcf7 input[type="tel"], .contact_form .wpcf7 .wpcf7-select {
    width: calc(100% - 15px);
    height: 40px;
    background-color: transparent;
    color: var(--Fireseal_Black, #fff);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 0;
    border: 0 none;
    border-bottom: 1px solid #EDF8E7;
    margin-top: 0px;
    margin-bottom: 0px;
    outline: none;
}

.contact_form .wpcf7 input:hover{
    border-bottom: 1px solid #C398DC;
}

.contact_form .wpcf7 .wpcf7-select{
    width: calc(100% - 15px);
    min-height: 50px;
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.contact_form .wpcf7 .wpcf7-select:hover{
    cursor: pointer;
}

.contact_form .wpcf7 .wpcf7-select option {
    color: #000000;
}

.contact_form .wpcf7 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.contact_form .wpcf7::-moz-placeholder { /* Firefox 19+ */
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.contact_form .wpcf7:-ms-input-placeholder { /* IE 10+ */
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.contact_form .wpcf7:-moz-placeholder { /* Firefox 18- */
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
}

.contact_form .form_row.textarea{
    width: 100%;
    max-width: 100%;
}

.contact_form .form_row.textarea label{
    width: 100%;
    max-width: 100%;
}

.contact_form .form_row textarea {
    width: 100%;
    max-width: -webkit-fill-available;
    height: 200px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-top: 16px;
}

.contact_form .wpcf7 textarea:hover{
    border: 1px solid #C398DC;
}

.contact_form .form_row.checkbox p {
    align-items: center;
    justify-content: flex-start;
    display: flex;
    flex-direction: row;
    color: var(--Secondary-White-green, #EDF8E7);
    font-family: "area-normal", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 160% */
}

.contact_form .form_row.checkbox .wpcf7-form-control-wrap{
    width: auto;
}

.contact_form .form_row.checkbox .wpcf7-form-control.wpcf7-checkbox{
    display: flex;
}

.contact_form .form_row.checkbox label{
    flex-direction: row;
    width: auto;
    color: #FFF;
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin-right: 0px;
}

.contact_form .form_row.checkbox .wpcf7-list-item {
    margin-left: 0;
}

.contact_form .form_row.checkbox .wpcf7-list-item-label{
    display: none;
}

.contact_form .form_row.checkbox .wpcf7-list-item.first label{
    width: 24px;
    height: 24px;
    border-radius: 2px;
    margin-right: 16px;
}

.contact_form .form_row.checkbox input[type="checkbox" i] {
    width: 32px;
    border-radius: 8px;
    margin: 0;
}

.contact_form .form_row.checkbox input[type="checkbox" i]:hover{
    cursor: pointer;
}

.contact_form .form_row.checkbox a {
    color: #FFF;
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.contact_form .wpcf7 .form_row.submit{
    margin-bottom: 0;
}

.contact_form .form_row .wpcf7-submit {
    max-width: 100%;
    max-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Secondary_Orange, #C0D818);
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    padding: 24px 61px;
    border: 0 none;
    border-radius: 4px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.contact_form .form_row .wpcf7-submit:hover{
    background-color: #C398DC;
    cursor: pointer;
}

.contact_form .wpcf7 form .wpcf7-response-output{
    background-color: red;
    color: #fff;
    font-family: "area-normal", sans-serif;
    font-size: 24px;
    padding: 20px;
    width: 100%;
    max-width: 96%;
    margin: 20px 0;
    /*
    background-image: url(/wp-content/themes/matrixinternet2023/images/close-video.png);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 35px;
	*/
}

.contact_form.wpcf7 form.invalid .wpcf7-response-output, 
.contact_form .wpcf7 form.unaccepted .wpcf7-response-output, 
.contact_form .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: red;
}

.contact_form .wpcf7 form.sent .wpcf7-response-output {
    background-color: #46b450;
    color: #000;
}

.contact_form .wpcf7 form .wpcf7-response-output:hover{
    cursor: pointer;
}

.contact_form .wpcf7-response-output.hide{
    display: none;
}

.contact_form .wpcf7-spinner{
    position: absolute;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-family: "area-normal", sans-serif;
    font-weight: normal;
    font-size: 16px;
    display: block;
}

.wpcf7 span.hide{
    display: none;
}

.contact_form .wpcf7 .form_row.checkbox .wpcf7-not-valid-tip {
    position: absolute;
    min-width: max-content;
    bottom: -5px;
}


@media only screen and (max-width: 1080px) {

    .contact_form .container{
        flex-direction: column;
    }

    .contact_form .container .column.left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0px;
    }

    .contact_form .container .column.right {
        width: 100%;
    }

    .contact_form .form_row .wpcf7-submit {
        margin-top: 10px;
    }

}

@media only screen and (max-width: 668px) { 

    .contact_form .container .column.left {
        margin-bottom: 25px;
    }

    .contact_form .wpcf7 .form_row {
        margin-bottom: 0;
    }

    .contact_form .form_row p {
        flex-direction: column;
    }

    .contact_form .form_row.checkbox p {
        flex-direction: row;
    }

    .contact_form form.invalid  .form_row.checkbox p {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_form .form_row label {
        margin-bottom: 16px;
        width: 100%;
    }

    .contact_form .form_row.checkbox label{
        flex-wrap: wrap;
    }

}


/* Image with Editor */
.image_with_editor{
    background-color: #F8FCF5;
    display: flex;
    padding: 64px 0;
}

.image_with_editor .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image_with_editor.flex-start .container{
    align-items: flex-start;
}

.image_editor_column.image{
    width: 40%;
}

.image_editor_column.image img{
    display: block;
    max-width: 100%;
}

.image_editor_column.editor {
    width: 50%;
    max-width: 500px;
    padding: 0 5%;
}

.image_with_editor .editor h4{
    color: var(--Fireseal_LightGrey, #999);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.image_with_editor h2{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin-bottom: 24px;
}

.image_with_editor h6{
    color: var(--Secondary-Green, #006837); 
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding-top: 8px;
    border-top: 1px solid #006837;
    margin-bottom: 12px;
}

.image_with_editor p{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 25px;
}

.image_with_editor ul{
    padding-left: 40px;
}

.image_with_editor li{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
}

.image_with_editor blockquote{
    margin-left: 0;
    position: relative;
}

.image_with_editor blockquote:after{
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: -60px;
    background-image: url('/wp-content/themes/matrixinternet2023/images/blockquote.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 52px;
    height: 38px;
}

.image_with_editor blockquote p{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    font-size: 16px;
    line-height: 22px; 
}

.image_with_editor.image_right .container {
    flex-direction: row-reverse;
}

@media only screen and (min-width: 1200px) {

    .image_with_editor.image_right .image_editor_column.editor{
        padding-left: 0;
    }

    .image_with_editor.image_left .image_editor_column.editor{
        padding-right: 0;
    }

}

@media only screen and (max-width: 1024px) {

    .image_with_editor .container{
        flex-direction: column;
    }

    .image_with_editor.image_right .container{
        flex-direction: column;
    }

    .image_editor_column.image {
        width: 100%;
    }

    .image_editor_column.editor{
        width: 100%;
    }

    .image_editor_column.editor h2{
        color: var(--Primary-Dark-Green, #072C20);
        font-size: 30px !important;
        font-style: normal;
        font-weight: 400;
        line-height: 38px !important;
    }

    .image_editor_column.image img {
        display: block;
        max-width: 100%;
        margin: 5% auto;
    }

}

@media only screen and (max-width: 991px) {

    .image_with_editor {
        padding: 32px 0;
    }

    .image_with_editor blockquote{
        margin-top: 40px;
    }

    .image_with_editor blockquote p {
        font-size: 24px;
        line-height: 32px;
        margin-top: 40px;
    }

    .image_with_editor blockquote:after {
        top: -40px;
        left: 0px;
    }

}

/* Text Editor */
.text_editor{
    padding: 72px 0;
}

.text_editor .container {
    width: 1000px;
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
}

.text_editor h2{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin: 24px 0;
}

.text_editor h3{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin: 24px 0;
}

.text_editor h4{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin: 16px 0;
}

.text_editor h5{
    color: var(--Secondary-Green, #006837); 
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-top: 8px;
    border-top: 1px solid #006837;
}

.text_editor h6{
    color: var(--Secondary-Green, #006837);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.text_editor p{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 24px;
}

.text_editor ul{
    padding-left: 40px;
    margin-bottom: 24px;
}

.text_editor li ul{
    margin-bottom: 0;
}

.text_editor li{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 24px;
}

.text_editor img.aligncenter {
    display: block;
    margin: 0 auto;
}

.text_editor table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 100%;
    margin-bottom: 32px;
}

.text_editor th {
  background: #072c20;
  color: #f8fcf5;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  padding: 8px 12px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #072c20;
}

.text_editor th:nth-child(3),
.text_editor th:nth-child(4){
    text-align: right;
}

.text_editor td {
  background: #fff;
  color: #072c20;
  font-family: "area-normal", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 8px 12px;
  vertical-align: middle;
  border-bottom: 1px solid #cae1be;
}

@media only screen and (max-width: 767px) {

  .text_editor .table_container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .text_editor .table_container table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* allows flexible column sizing */
  }

  .text_editor .table_container th,
  .text_editor .table_container td {
    white-space: normal;       /* allow wrapping */
    word-wrap: break-word;     /* break long words if needed */
    padding: 8px;
    text-align: left;
    vertical-align: top;
  }

  /* Keep the first column readable on narrow screens */
  .text_editor .table_container td:first-child {
    min-width: 100px;
    font-weight: 600; /* optional: matches table headers’ strength */
  }

  .text_editor .cta a{
    margin-bottom: 24px;
  }

}



/* Card Section */
.cards_section{
    display: flex;
    padding: 72px 0;
}

.cards_section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.cards_section .editor{
    width: 100%;
}

.cards_section .editor h2 {
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin: 0;
    margin-bottom: 24px;
}

.cards_section .editor p{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 24px;
}

.cards_section .editor li{
    color: var(--Primary-Dark-Green, #072C20);
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 24px;
}

.cards_section .card_items_list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 24px;
    margin: 0 auto;
    margin-top: 56px;
}

.cards_section .card_item{
    width: calc(25% - 24px);
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cards_section .card_item .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.cards_section .card_item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards_section .card_content{
    position: absolute;
    bottom: 0;
    padding: 24px;
    z-index: 1;
}

.cards_section .card_content h3{
    color: var(--Secondary-White, #FFF);
    font-family: "area-normal", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.cards_section .card_content .card_text{
    color: var(--Secondary-White, #FFF);
    font-family: "area-normal", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400; 
    line-height: 20px;
}

.cards_section .card_item .card_link a {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FF7C00 0%, #FFA861 100%);
    color: var(--Primary-Blue-700, #000056);
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    padding: 6px 32px;
    border-radius: 4px;
    margin-top: 25px;
}

.cards_section .card_item .card_link a:hover{
    background: #dedeff;
    color: #090093;
}

.cards_section.layout_2 .container {
    width: 1280px;
    background: transparent;
}

.cards_section.layout_2 h2{
    color: var(--Primary-Blue-600, #090093);
    margin-right: 32px;
}

.cards_section.layout_2 .card_item {
    width: 235px;
    background: var(--Base-White, #FFF);
    border-radius: 8px;
    border: 1px solid var(--Primary-Blue-200, #DEDEFF);
    margin-right: 32px;
}

.cards_section.layout_2 .card_item:nth-child{
    margin-right: 0;
}

.cards_section.layout_2 .card_item .card_link a{
    background: var(--Gradient-Blue, linear-gradient(90deg, #090093 0%, #0600EB 100%));
    color: #FFF;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 6px 24px;
}

.cards_section.layout_2 .card_item .card_link a:hover{
    background: #090093;
}

.cards_section.layout_2 .card_item .card_link a img{
    margin-left: 8px;
    margin-right: 0;
}

.cards_section.layout_3 .card_items_list {
    margin-top: 24px;
}

.cards_section.layout_3 .card_item{
    height: auto;
}


@media only screen and (max-width: 1440px) {

    .cards_section .container{
        flex-wrap: wrap;
    }

    .cards_section h2{
        margin-bottom: 30px;
    }

    .cards_section .card_item{
        margin-bottom: 30px;
    }

}

@media only screen and (max-width: 1200px) {

    .cards_section{
        padding: 60px 0;
        padding-bottom: 80px;
    }

    .cards_section.layout_2 .container {
        max-width: 90%;
        flex-direction: column;
        padding: 0;
        margin: 0 auto;
    }

    .cards_section.layout_2 .card_item {
        width: 33.333%;
    }

}
    
@media only screen and (max-width: 1080px) {

    .cards_section .card_item {
        width: calc(50% - 12px);
    }

    .cards_section.layout_2 h2 {
        margin-right: 0;
        max-width: 100%;
    }

    .cards_section.layout_2 .card_items_list {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .cards_section.layout_2 .card_item {
        width: 100%;
        max-width: 300px;
        margin: 25px auto;
    }

}

@media only screen and (max-width: 828px) {
    
    .cards_section .card_items_list {
        flex-wrap: wrap;
    }

}

@media only screen and (max-width: 767px) {

    .cards_section .container{
        display: block;
    }

    .cards_section h2{
        text-align: center;
    }

    .cards_section .card_items_list{
        margin-top: 32px;
    }

    .cards_section .card_item {
        margin-bottom: 30px;
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 24px;
    }

    .cards_section .card_item .card_link a{
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        margin-top: 0;
    }

    .cards_section .card_item .card_link a {
        min-width: 120px;
        justify-content: center;
    }

    .cards_section.layout_2 .card_item .card_link a {
        padding: 6px 12px;
        min-width: 180px;
    }

    .cards_section.layout_2 .card_item{
        flex-direction: column;
    }

    .cards_section.layout_2 .card_link{
        display: block;
        margin-top: 25px;
    }

    .cards_section.layout_3 .card_item {
        width: 100%;
        padding-right: 0;
    }

}


@media only screen and (max-width: 414px) {

    .card_item img {
        width: 50px;
        margin-right: 20px;
    }

    .cards_section .card_item .card_link a {
        min-width: 110px;
    }

}



/* Making Expertise Count */
.expertise_count{
    background: var(--Secondary-White-Green-lighter, #F8FCF5);
    padding: 72px 0;
}

.expertise_count .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise_count h2{
    width: 100%;
    color: #072C20;
    font-family: "GT Super Ds Trial";
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin-bottom: 56px;
}

.expertise_count img{
    max-width: 90%;
    margin: 0 auto;
}

.expertise_count_column{
    width: 20%;
}

@media only screen and (min-width: 1025px) {

    .expertise_count img{
        margin-left: 0;
    }

    .hide_desktop{
        display: none;
    }

}

@media only screen and (max-width: 1024px) {

    .expertise_count h2{
        text-align: center;
    }

    .hide_mobile{
        display: none;
    }

}


/*.expertise_count_column span{
    display: block;
    text-align: center;
}

.expertise_count_column .number {
    color: var(--Secondary-Green, #006837);
    font-family: "area-normal", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    padding: 8px 32px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise_count_column .number small{
    color: var(--Secondary-Green, #006837);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    margin-left: 10px;
}

.expertise_count_column .text{
    color: var(--Primary-Dark-Green, #072C20);
    text-align: center;
    font-family: "area-normal", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 10px auto;
}

.expertise_count_column.column_1 .number{
    border-radius: 4px;
    border: 1px solid var(--Primary-Light-green, #C0D818);
}

.expertise_count_column.column_2 {
    background-image: url(../images/column2.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.expertise_count_column.column_2  .number{
    padding: 0;
}
*/


/***** Iframe *****/
.iframe_layout {
    display: flex;
    align-items: center;
    font-family: "area-normal", sans-serif;
    background-repeat: no-repeat;
    background-position: 100% 80%;
    position: relative;
    padding: 80px 0;
}

.iframe_layout.iframe_with_gradient {
    background: var(--Gradient-Gradient-2, linear-gradient(90deg, #2BD779 34.5%, #009889 100%));
}

.iframe_layout .section_container {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.iframe_layout .img_container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.iframe_layout .img_container img.play_button,
.iframe_layout .img_container img.close_video {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
    cursor: pointer;
}

.iframe_layout .img_container img.play_button {
    top: 40%;
}

.iframe_layout .img_container img.close_video {
    display: none;
    top: -30px;
    left: unset;
    right: -30px;
    transition-duration: 0;
}

.iframe_layout .img_container img.close_video.active {
    display: block;
}

.iframe_layout .iframe_container {
    position: relative;
    visibility: hidden;
    transition-duration: 0;
}

.iframe_layout .iframe_container.active {
    z-index: 4;
    visibility: visible;
    position: fixed;
    max-width: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 60%;
    top: 25%;
}

.iframe_layout iframe {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.iframe_layout .img_container img {
    max-width: 100%;
}

.iframe_layout .img_container img.preview_image {
    width: 100%;
    object-fit: cover;
}

.iframe_layout .preview_image.active,
.iframe_layout .img_filter.active {
    visibility: hidden;
}

.iframe_layout.active {
    background-color: transparent !important;
    z-index: 2;
}

.iframe_layout .iframe_editor_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 1100px;
    max-width: 90%;
    color: var(--Primary-Slate-500, #07072B);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.iframe_layout .iframe_editor_text{

}

.iframe_layout h2{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px; 
}

.iframe_layout h4{
    width: 100%;
    color: var(--Secondary-Green, #006837);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-top: 8px;
    border-top: 1px solid var(--Primary-Light-green, #006837);
}

.iframe_layout p{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    }

.bgcolor .iframe_editor_text h2,
.bgcolor .iframe_editor_text h3,
.bgcolor .iframe_editor_text h4,
.bgcolor .iframe_editor_text p {
    color: #fff;
}

.video_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
}

.video_overlay.active {
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
}

.iframe_layout .cards{
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-top: 32px;
}

.iframe_layout .card_image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 104, 55, 0.15);
}

.iframe_layout .card_image img{
    display: block;
    width: 32px;
}

.iframe_layout .card_title{
    color: var(--Secondary-Green, #006837);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
}

.iframe_layout .card_description{
    color: var(--Primary-Dark-Green, #072C20);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
}

.iframe_editor_text .cta{
    margin-top: 32px;
}

.iframe_layout.iframe_right .container{
    flex-direction: row-reverse;
}

@media only screen and (max-width: 1200px) {

    .iframe_layout .section_container.iframe_editor_text {
        max-width: 90%;
    }

}

@media only screen and (max-width: 962px) {

    .iframe_layout .container,
    .iframe_layout.iframe_right .container{
        flex-direction: column;
    }

    .iframe_layout .section_container {
        gap: 50px;
    }

}

@media only screen and (max-width: 767px) {

    .iframe_layout .img_container img.play_button {
        top: calc(50% - 30px);
    }

    .iframe_layout .img_container img.play_button {
        max-width: 60px;
    }

    .iframe_layout .iframe_container.active {
        max-height: 450px;
    }

    .iframe_layout .img_container img.close_video {
        max-width: 50px;
    }

    .iframe_layout .cards{
        flex-wrap: wrap;
    }

    .iframe_layout .card_content{
        width: 100%;
        margin-bottom: 24px;
    }

    .iframe_editor_text .cta {
        margin-top: 16px;
    }

}


/* Video Section */
.video_section {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 680px;
    overflow: hidden;
    background: #000;
}

.video_section iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; 
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: auto;
  z-index: 1;
}

.video_controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: .5rem;
  align-items: center;
  pointer-events: auto;
}

.pill_button {
  background: rgba(0,0,0,.6);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .65rem 1rem;
  font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}
.pill_button:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {

    .video_section {
      height: 400px;
  }

  .video_section iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    min-height: unset;
    min-width: unset;
  }

  .video_controls {
    right: 50%;
    bottom: 1rem;
    transform: translateX(50%);
  }

  .pill_button {
    padding: .55rem 1rem;
    font-size: 13px;
  }
}

@media (max-width: 668px) {

  .video_section {
    height: 50vh;
    max-height: 400px;
  }

  .pill_button {
    padding: .45rem .9rem;
    font-size: 12px;
  }
}