/* General Classes */
.page_builder{
    display: flex;
    flex-direction: column;
}


section.remove_top_spacing{
    padding-top: 0;
}

section.remove_bottom_spacing{
    padding-bottom: 0;
}

/* General Classes - Pagination */
.page-numbers {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    list-style-type: none;
    color: #000;
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    text-decoration: none;
}

.page-numbers li{
    margin: 0 16px;
}

.page-numbers.prev img,
.page-numbers.next img{
    background: #E0E2E4;
    padding: 16px;
    border-radius: 50%;
}

.page-numbers.next img{
    background: #FF7533
}



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

/* Accordion */
.accordion_section {
    background-image: url('/wp-content/themes/matrixinternet2023/images/faq-bg.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 100% 70%;
    padding-top: 120px;
    padding-bottom: 120px;
}

.accordion_section .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding-left: 10%;
}

.accordion_section h2 {
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    margin-bottom: 35px;
}

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

.accordion_column{
    width: 50%;
}

.accordion_section .accordion {
    background-color: #fff;
    margin-right: 50px;
}

.accordion_section .accordion-item {
    border-radius: 8px;
    border: 1px solid var(--Primary-Colours-Slate-Gray-300, #8E959A);
    margin-bottom: 16px;
}

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

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

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

.accordion_section button .accordion-title {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    padding: 0 32px;
}

.accordion_section button .icon {
    display: flex;
    width: 32px;
    height: 32px;
/*    background-color: #fff;*/
    color: #21282F;
    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 {
    color: var(--S4R-Primary-Slate-400, #536B7E);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin: 45px auto;
    margin-top: 15px;
    width: 100%;
    max-width: 80%;
}

.accordion_section .accordion-content p a{
    display: block;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    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%;
}

@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: 10px;
    }

}

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

.hero_section .hero_image img {
    display: block;
    max-width: 1510px;
    border-radius: 5px 5px 0 0px;
}

.hero_section .hero_image video {
    display: block;
    max-width: 80%;
    border-radius: 5px 5px 0 0px;
    margin-left: auto;
}

.hero_section .hero_content {
    max-width: 440px;
    background-color: #fff;
    padding: 56px;
    position: absolute;
    bottom: 0;
    right: 10%;
}

.hero_section h1,
.hero_section h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    margin-top: 0;
}

.hero_section h1 strong, 
.hero_section h2 strong{
    color: #000;
}

.hero_section h4 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.hero_section.text_on_the_right h1{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.tax-service_type .hero_section.text_on_the_right h1,
.single-service .hero_section.text_on_the_right h1{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Bold";
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.hero_section.text_on_the_right h1 strong{
    color: var(--Primary-Colours-Slate-Gray-500, #000);
    font-family: "IBM Plex Sans Bold";
}

.hero_section .hero_content_editor {
    display: flex;
    align-items: flex-start;
}

.hero_section.full_image .hero_content_editor {
    align-items: center;
}

.hero_section.text_on_the_right .hero_content_editor {
    flex-direction: column;
}

.hero_section.text_on_the_right .hero_content_editor {
    display: flex;
    align-items: flex-start;
}

.hero_section p {
    max-width: 230px;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.hero_section p strong{
    color: var(--Primary-Colours-Slate-Gray-300, #8E959A);
    font-family: "IBM Plex Sans Medium";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; 
    letter-spacing: -0.72px;
}

.hero_section.text_on_the_right p {
    max-width: 450px;
    margin-left: 0;
    margin-bottom: 16px;
}

.hero_section.full_image{
    padding-bottom: 10vw;
}

.hero_section.full_image .hero_image img {
    max-width: 100%;
}

.hero_section.full_image .hero_content {
    max-width: fit-content;
    right: unset;
    left: 10%;
    bottom: -10vw;
}

.hero_section.full_image .hero_content_editor h1 {
    display: flex;
    align-items: center;
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 42px;
    font-style: normal;
    line-height: 48px;
    letter-spacing: -0.84px;
    max-width: 767px;
}

.hero_section.full_image .hero_content_editor h1 code{
    color: var(--Primary-Colours-Orange-500, #FF5200);
    font-family: "IBM Plex Sans";
    font-size: 250px;
    font-style: normal;
    font-weight: 700;
    line-height: 250px; 
    letter-spacing: -5px;
    margin-right: 40px;
}

.hero_section.full_image p {
    min-width: 300px;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 42px;
    line-height: 48px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.96px;
}

.hero_section.full_image p strong{
    color: var(--Primary-Colours-Slate-Gray-500, #000);
    font-family: "IBM Plex Sans Bold";
    font-weight: 700;
    font-size: 42px;
    line-height: 48px;
}

.hero_section.text_on_the_left .hero_image img {
    margin-left: auto;
}

.hero_section.text_on_the_left .hero_content {
    max-width: 460px;
    background-color: #fff;
    padding: 56px;
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 0%;
}

.hero_section.text_on_the_left .hero_content_editor h1{
    display: flex;
    flex-direction: column;
}

.hero_section.text_on_the_left .hero_content_editor h1 code{
    color: var(--Primary-Colours-Orange-500, #FF5200);
    font-family: "IBM Plex Sans Bold";
    font-size: 260px;
    font-style: normal;
    font-weight: 700;
    line-height: 200px;
    letter-spacing: -5.2px;
    margin-left: 10px;
    margin-bottom: 40px;
}

.hero_section .cta{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Primary-Colours-Deep-Purple-600, #35222E);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 16px 40px;
    margin-top: 25px;
}

.hero_section .cta:hover{
    background: #000;
    color: #fff;
}

.hero_section.text_on_the_left .hero_content_editor {
    flex-direction: column;
    align-items: flex-start;
}

.hero_section.text_on_the_left p{
    max-width: 100%;
    margin-left: 0;
}

.hero_section.text_on_the_left .hero_content_editor h1 code.small{
    font-size: 120px;
    line-height: 90px;
    margin-top: 30px;
}

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

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

    .hero_section.text_on_the_left .hero_content {
        width: 80%;
        max-width: 90%;
        padding: 50px 5%;
        position: absolute;
        bottom: 0;
        left: 0%;
        right: 0%;
        margin: 0 auto;
    }

    .hero_section.text_on_the_left .hero_content_editor h1 {
        margin-bottom: 0;
    }

    .hero_section.text_on_the_left .hero_content_editor h1 code{
        font-size: 200px;
        line-height: 200px;
        margin-bottom: 0px;
        margin-left: 0;
    }

      .hero_section.text_on_the_left.has_video .hero_content {
        position: relative;
        top: -100px;
        padding-bottom: 0;
    }

    .hero_section .hero_image video{
        max-width: 100%;
    }

}

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

    .hero_section .hero_image img {
        max-width: 80%;
    }

    .hero_section .hero_content {
        max-width: 600px;
        right: 0%;
    }

}

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

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

    .hero_section.full_image .hero_content_editor h1 code,
    .hero_section.text_on_the_left .hero_content_editor h1 code {
        font-size: 200px;
        line-height: 250px;
    }

}

@media only screen and (max-width: 1380px) {
    
    .hero_section.full_image .hero_content_editor h1 code, .hero_section.text_on_the_left .hero_content_editor h1 code {
        font-size: 150px;
        line-height: 150px;
    }

}

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

    .hero_section {
        height: 100vh;
        max-height: 800px;
    }

    .hero_section .container{
        height: 100%;
    }
    
    .hero_section .hero_image{
        height: 100%;
    }    

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

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

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

    .hero_section.full_image .hero_content_editor h1 code,
    .hero_section.text_on_the_left .hero_content_editor h1 code {
        font-size: 150px;
        line-height: 200px;
    }

    .hero_section p strong {
        display: inline-block;
        margin-top: 15px;
    }

    .hero_section.has_video {
        max-height: fit-content;
    }

    .hero_section.has_video .hero_image {
        height: auto;
    }

    .hero_section.text_on_the_left.has_video .hero_content {
        max-width: 90%;
        margin-left: 0;
        top: 0;
    }

    .hero_section.text_on_the_left.has_video .hero_content_editor h1 code.small {
        line-height: 128px;
        margin-top: 0px;
    }

    .hero_section.video-expand-layout{
        height: auto;
    }

}

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

    .hero_section {
        height: auto;
        max-height: unset;
    }

    .hero_section .hero_image {
        height: auto;
    }

    .hero_section .hero_image img {
        height: auto;
    }

    .hero_section .hero_content {
        position: static;
        max-width: calc(100% - 100px);
        padding: 50px;
    }

    .hero_section.text_on_the_left .hero_content {
        position: static;
        max-width: 90%;
        width: 100%;
    }

    .hero_section.full_image .hero_content {
        left: 0;
        bottom: -50px;
    }

    .hero_section.text_on_the_left .hero_content{
        max-width: 100%;
        width: 100%;
        padding: 5%;
        position: static;
    }

    .hero_section h1,
    .hero_section h2{
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .hero_section h4{
        color: var(--Primary-Colours-Slate-Gray-500, #323E48);
        font-family: "IBM Plex Sans";
        font-size: 20px;
        line-height: normal;
    }

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

    .hero_section.full_image .hero_content_editor h1 code,
    .hero_section.text_on_the_left .hero_content_editor h1 code {
        font-size: 100px;
        line-height: 120px;
        margin-left: 0;
        margin-bottom: 0;
    }

    .hero_section.full_image .hero_content_editor h1{
        margin-bottom: 0;
    }

    .hero_section.full_image{
        padding-bottom: 0;
    }

    .hero_section.text_on_the_right  .hero_content {
        max-width: calc(100% - 100px);
        padding-bottom: 0;
        margin-left: auto;
        position: relative;
        top: -50px;
    }

}

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

    .hero_section .hero_content {
        padding: 50px 25px;
    }
    
    .hero_section.full_image .hero_content_editor h1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero_section.full_image .hero_content_editor h1 code,
    .hero_section.text_on_the_left .hero_content_editor h1 code {
        font-size: 60px;
        line-height: 50px;
    }

    .hero_section p strong {
        font-size: 20px;
        line-height: 28px;
    }

    .hero_section.text_on_the_left p {
        max-width: 90%;
    }

}

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

    .hero_section.full_image .hero_content_editor h1 code,
    .hero_section.text_on_the_left .hero_content_editor h1 code,
    .hero_section.text_on_the_left.has_video .hero_content_editor h1 code.small {
        font-size: 50px;
        line-height: 60px;
    }

    .hero_section .hero_image img {
        min-height: 300px;
    }

}

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

    .hero_section .hero_content_editor{
        flex-direction: column;
    }

    .hero_section.full_image .hero_content_editor {
        align-items: flex-start;
    }

}

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

    .hero_section.text_on_the_right  .hero_content {
        max-width: calc(100% - 70px);
    }

}


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

.post_carousel.post .editor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    max-width: 100%;
}

.post_carousel h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 48px;
}

.post_carousel p {
    width: 1404px;
    max-width: 90%;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.post_carousel.bgcolor h2,
.post_carousel.bgcolor h3,
.post_carousel.bgcolor h4,
.post_carousel.bgcolor h5,
.post_carousel.bgcolor h6{
    color: #fff !important;
}

.post_carousel .cta a {
    max-width: fit-content;
    display: flex;
    align-items: center;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 30px;
    margin-top: 30px;
    margin-right: 48px;
}

.post_carousel .cta a:hover {
    background: #ff3e01;
    /*padding: 12px 36px;
    border: 4px solid #ffba99;*/
}

.post_carousel .post_carousel_image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 83px;
    max-width: 250px;
    margin: 0 auto;
}

.post_carousel .post_carousel_image img {
    width: 100%;
    max-height: 83px;
    object-fit: contain;
    max-width: calc(100% - 64px);
    margin: 0 auto;
}

.post_carousel .slick-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px;
    border-radius: 50%;
    z-index: 2;
}

.post_carousel .slick-prev.slick-arrow{
    background-color: #E0E2E4;
}

.post_carousel .slick-next.slick-arrow{
    background-color: #FF5200;
}

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

/* Partner */
.post_carousel.partner .container.heading{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.post_carousel.partner h4{
    color: var(--Base-White, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
}

.post_carousel.partner h2 {
    max-width: 857px;
    color: var(--Base-White, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    text-align: left;
}

/* Case Study */
.post_carousel.case_study .post_carousel_item {
    display: flex;
    height: 680px;
}

.post_carousel.case_study .post_carousel_item a {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
}

.post_carousel.case_study .post_carousel_text {
    width: 450px;
    max-width: calc(100% - 80px);
    padding: 40px;
}

.post_carousel.case_study .post_carousel_text h3{
    color: #323E48;
    font-family: "IBM Plex Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; 
    letter-spacing: -0.72px;
    margin: 0;
    margin-bottom: 16px;
}

.post_carousel.case_study.gradient2  .post_carousel_text h3{
    font-family: "IBM Plex Sans Medium";
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

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

.post_carousel.case_study .post_carousel_text p{
    color: #323E48;
    font-family: "IBM Plex Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.post_carousel.case_study.bgcolor .post_carousel_text p {
    color: #fff;
}

.post_carousel.case_study .post_carousel_text .case_study_permalink {
    background: #fff;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding: 16px 40px;
    border-radius: 30px;
    border: 2px solid var(--Base-White, #FF7533);
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    margin-top: 8px;
}

.post_carousel.case_study .post_carousel_text .case_study_permalink:hover{
    background: #000;
    color: #fff;
    border: 2px solid var(--Base-White, #000);
}

.post_carousel.case_study.gradient2 .post_carousel_text .case_study_permalink:hover{
    border: 2px solid transparent;
}

.post_carousel.case_study.bgcolor .post_carousel_text .case_study_permalink {
    background: #fff;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    border: 2px solid var(--Base-White, #fff);
}

.post_carousel.case_study .post_carousel_image img {
    width: 1259px;
    max-width: 100%;
    height: auto;
    max-height: unset;
    object-fit: contain;
    margin: 0 auto;
}

.post_carousel.case_study .post_carousel_image {
    display: flex;
    align-items: center;
    height: auto;
    width: 50%;
    max-width: 50%;
}

.post_carousel.case_study .slick-arrow {
    background-color: #FF7533;
}

.post_carousel.case_study.bgcolor .slick-arrow {
    background-color: #fff;
}

.post_carousel.case_study .slick-prev.slick-arrow {
    position: absolute;
    top: unset;
    bottom: 0;
    left: 15vw;
}

.post_carousel.case_study .slick-next.slick-arrow {
    position: absolute;
    top: unset;
    bottom: 0;
    left: calc(15vw + 70px);
}

.post_carousel.case_study .slick-dots {
    bottom: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60vw;
    max-width: 90%;
    margin-left: auto;
    margin-right: 0;
    right: 0;
}

.post_carousel.case_study .slick-dots li {
    margin: 0 5px;
}

.post_carousel.case_study .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #D9D9D9;
    padding: 0;
    transition: all 0.3s ease;
}

.post_carousel.case_study .slick-dots li button::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #D9D9D9;
    opacity: 1;
    transition: all 0.3s ease;
}

.post_carousel.case_study .slick-dots li.slick-active {
    width: 80px;
    background-color: #D9D9D9;
    background-image: url('/wp-content/themes/matrixinternet2023/images/dot-bg.png');
    background-repeat: no-repeat;
    border-radius: 6px;
    position: relative;
    top: -4px;
    height: 12px;
}

.post_carousel.case_study .slick-dots li.slick-active button::before {
    display: none;
}

.post_carousel.case_study .slick-dots li.slick-active button {
    visibility: hidden;
    display: none;
}

.post_carousel.gradient{
    background-image: url('/wp-content/themes/matrixinternet2023/images/post-carousel-gradient.webp');
    background-position: top;
    background-repeat: no-repeat;
}

.post_carousel.gradient2 {
    background-image: url('/wp-content/themes/matrixinternet2023/images/post-carousel-gradient2.webp');
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
    top: -1px;
}

.post_carousel.gradient h2,
.post_carousel.gradient h3,
.post_carousel.gradient h4,
.post_carousel.gradient h2,
.post_carousel.gradient p{
    color: #fff !important;
}

.post_carousel.gradient2 h2,
.post_carousel.gradient2 h3,
.post_carousel.gradient2 h4,
.post_carousel.gradient2 h2,
.post_carousel.gradient2 p{
    color: #fff !important;
}

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

.post_carousel.case_study.gradient .post_carousel_text .case_study_permalink,
.post_carousel.case_study.gradient2 .post_carousel_text .case_study_permalink{
    background: #fff;
    color: #323E48;
    transition: background 0.3s ease, color 0.3s ease;
}

.post_carousel.case_study.gradient .post_carousel_text .case_study_permalink:hover,
.post_carousel.case_study.gradient2 .post_carousel_text .case_study_permalink:hover {
    box-shadow: 0 0 0 4px rgba(255,168,127,0.75);
    -webkit-box-shadow: 0 0 0 4px rgba(255,168,127,0.75);
    -moz-box-shadow: 0 0 0 4px rgba(255,168,127,0.75);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.post_carousel.case_study.gradient .slick-arrow,
.post_carousel.case_study.gradient2 .slick-arrow{
    background-color: #fff;
}

/* Post Carousel - Technology */
.post_carousel.technology .heading{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.post_carousel.technology h2{
    margin-bottom: 0;
}

.post_carousel.technology .cta a{
    margin-top: 0;
}


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

    .post_carousel.case_study .post_carousel_item a {
        overflow: hidden;
    }

    .post_carousel.case_study .post_carousel_text {
        width: 50%;
        max-width: calc(50% - 80px);
        padding: 40px;
    }

   /* .post_carousel .post_carousel_image {
        width: 50%;
    }

    .post_carousel.team_member .post_carousel_image {
        width: auto;
    }*/

}

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

    .post_carousel.case_study{
        padding-top: 60px;
    }  

}

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

    .post_carousel h2{
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .post_carousel.case_study .post_carousel_item {
        height: auto;
    }

    .post_carousel.case_study .post_carousel_item a {
        flex-direction: column;
    }

    .post_carousel .post_carousel_image {
        width: 100%;
    }

   .post_carousel.case_study .post_carousel_image {
        width: 100%;
    }

    .post_carousel.gradient2 {
        padding-top: 0px;
    }

    .post_carousel.case_study .post_carousel_image img {
        margin: 0;
    }

    .post_carousel.case_study .post_carousel_text {
        width: 100%;
        max-width: 100%;
        padding: 5% 0;
        margin-bottom: 30px;
    }

    .post_carousel.case_study .slick-dots {
        width: 100%;
        max-width: 100%;
    }

    .post_carousel.case_study .slick-dots li.slick-active {
        width: 12px;
        background-color: #21282F;
        background-image: unset;
        background-repeat: no-repeat;
        border-radius: 6px;
        position: relative;
        top: -4px;
        height: 12px;
    }

    .post_carousel.case_study .slick-prev.slick-arrow {
        left: 10%;
    }

    .post_carousel.case_study .slick-next.slick-arrow {
        left: unset;
        right: 10%;
    }

}

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

    .post_carousel.case_study .post_carousel_image {
        max-width: 100%;
    }

    .post_carousel h2{
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .post_carousel.partner .container.heading {
        align-items: center;
    }


}


/* Post */
.post_carousel.post .heading {
    display: flex;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.post_carousel.post h2{
    margin-bottom: 10px;
}

.post_carousel.post .heading .heading_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.post_carousel.post .post_carousel_item {
    margin-right: 48px;
}

.post_carousel.post .post_carousel_item a{
    text-decoration: none;
}

.post_carousel.post .post_carousel_image {
    max-width: -webkit-fill-available;
    height: 255px;
}

.post_carousel.post .post_carousel_image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    margin: 0;
}

.post_carousel.post .post_carousel_text{
    border-radius: 0px 0px 4px 4px;
    background: var(--Primary-Colours-Slate-Gray-50, #F5F5F6);
    padding: 32px;
}

.post_carousel.post h3 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 12px;
}

.post_carousel.post .post_carousel_item p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.post_carousel.post .slick-arrow {
    top: unset;
    bottom: -100px;
}

.post_carousel.post .slick-prev.slick-arrow{
    left: 46%;
}

.post_carousel.post .slick-next.slick-arrow {
    left: calc(46% + 70px);
}

/* Team Member */
.post_carousel.team_member .heading{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.post_carousel.team_member h2 {
    margin-bottom: 10px;
    color: #fff;
    font-family: "IBM Plex Sans Medium";
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    text-align: left;
}

.post_carousel.team_member p {
    color: var(--Primary-Colours-Slate-Gray-500, #fff);
}

.post_carousel.team_member .heading .heading_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.post_carousel.team_member .post_carousel_item {
    margin-right: 48px;
}

.post_carousel.team_member .post_carousel_item a{
    text-decoration: none;
}

.post_carousel.team_member .post_carousel_image {
    max-width: 300px;
    height: 460px;
    margin-left: 0;
    position: relative;
}

.post_carousel.team_member .country {
    width: 40px;
    height: 27px;
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-size: cover;
}

.post_carousel.team_member .country.argentina {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/argentina.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.basque_country {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/bascue.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.czechia {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/czechia.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.estonia {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/estonia.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.france {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/france.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.germany{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/germany.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.greece{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/greece.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.india {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/india.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.ireland {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/ireland.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.italy{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/italy.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.mauritius{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/mauritius.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.poland{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/poland.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.spain{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/spain.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.serbia{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/serbia.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.slovenia{
   background-image: url('/wp-content/themes/matrixinternet2023/images/flags/slovenia.svg');
   background-repeat: no-repeat;
   background-size: contain;
}

.post_carousel.team_member .country.ukraine {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/ukraine.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .country.united_states {
    background-image: url('/wp-content/themes/matrixinternet2023/images/flags/usa.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.post_carousel.team_member .post_carousel_image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

.post_carousel.team_member .post_carousel_text {
    padding: 24px 0;
}

.post_carousel.team_member h3 {
    color: var(--Base-White, #FFF);
    font-family: "IBM Plex Sans Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin-top: 0;
    margin-bottom: 12px;
}

.single-service .post_carousel.team_member h3{
    color: #323E48;
}

.post_carousel.team_member .post_carousel_item p.position{
    color: var(--Primary-Colours-Slate-Gray-100, #000);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.post_carousel.team_member.bgcolor .post_carousel_item p.position{
    color: #fff;
}

.post_carousel.team_member .slick-arrow {
    top: unset;
    bottom: -100px;
}

.post_carousel.team_member .slick-prev.slick-arrow{
    left: 46.5%;
}

.post_carousel.team_member .slick-next.slick-arrow {
    left: calc(46.5% + 70px);
}


/* Show Filters */
.post_carousel.team_member.show_filters {
    padding-bottom: 0px;
}

.post_carousel.team_member .department-tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.post_carousel.team_member .department-tabs .filter_by{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-right: 28px;
    margin-bottom: 25px;
}

.post_carousel.team_member .dept_tab_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.post_carousel.team_member .department-tabs .dept-tab{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: transparent;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 32px;
    border-radius: 28px;
    border: 2px solid var(--Primary-Colours-Orange-300, #FFA073);
    margin: 0 4px;
    margin-bottom: 25px;
}

.post_carousel.team_member .department-tabs .dept-tab.active,
.post_carousel.team_member .department-tabs .dept-tab:hover{
    cursor: pointer;
    background: var(--Primary-Gradients-Orange-Dark, linear-gradient(45deg, #FF7533 0%, #FFA073 100%));
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
}

.post_carousel.team_member.show_filters .post_carousel_image {
    max-width: fit-content;
    height: 500px;
}

.post_carousel.team_member.show_filters .post_carousel_image img {
    object-fit: cover;
    object-position: top;
}

.post_carousel.team_member.show_filters h3 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.post_carousel.team_member.show_filters .post_carousel_item p.position {
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.post_carousel.team_member.show_filters .slick-arrow {
    bottom: 50%;
}

.post_carousel.team_member.show_filters .slick-prev.slick-arrow {
    left: -25px;
}

.post_carousel.team_member.show_filters .slick-next.slick-arrow {
    left: unset;
    right: 25px;
}

.post_carousel.team_member.show_filters .dropdown_arrow {
    display: none;
}

/* Testimonial */
.post_carousel.testimonial .heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.post_carousel.testimonial h2 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    text-align: left;
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    max-width: calc(100% - 50px);
    margin: 0 auto;
    margin-bottom: 30px;
}

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

.post_carousel.testimonial .slick-initialized .slick-slide{
    display: flex;
    padding: 10px;
    text-align: center;
    margin-right: 15px;
    margin-left: 15px;
}

.post_carousel.testimonial a {
    display: inline-block;
    width: 100%;
    max-width: calc(100% - 112px);
    background: var(--Base-White, #FFF);
    text-align: left;
    text-decoration: none;
    padding: 56px;
    border-radius: 8px;
    border: 1px solid var(--Primary-Colours-Slate-Gray-300, #8E959A);
}

.post_carousel.testimonial .testiomonial_text{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 32px;
    background-image: url('/wp-content/themes/matrixinternet2023/images/quote2.png');
    background-size: 62px;
    background-repeat: no-repeat;
    background-position: 0 0;
    padding-top: 20px;
    padding-left: 80px;
}

.post_carousel.testimonial .testiomonial_text p{
    width: 300px;
    text-align: left;
}

.post_carousel.testimonial .testiomonial_name,
.post_carousel.testimonial .testiomonial_position{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-left: 80px;
}

.post_carousel.testimonial .testiomonial_position{
    margin-bottom: 24px;
}

.post_carousel.testimonial .testimonial_image img {
    max-height: unset;
    width: 320px;
    max-width: 100%;
    margin: 0;
    margin-top: 32px;

}

.post_carousel.testimonial .testimonial_image img {
    max-height: unset;
    width: 130px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    display: block;
    margin-left: 0;
    margin-bottom: 24px;
}

.post_carousel.testimonial .slick-prev {
    left: 0;
}

.post_carousel.testimonial .slick-next {
    right: 0;
}

.post_carousel.testimonial .cta a {
    max-width: fit-content;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Base-Black, #000);
    margin: 0 auto;
    display: block;
    padding: 16px 40px;
    border: 2px solid var(--Base-White, #FF7533);
    border-radius: 30px;
    margin-bottom: 60px;
}

.post_carousel.testimonial .cta a:hover{
    background: #000;
    color: #fff;
    border: 2px solid var(--Base-White, #000);
}

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

    .post_carousel.team_member.show_filters {
        padding-top: 0px;
    }

}

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

    .post_carousel.testimonial a {
        max-width: 90%;
        padding: 5%;
    }

}

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

     .post_carousel.team_member.show_filters {
        padding-top: 60px;
        padding-bottom: 0;
    }

}  

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

    .post_carousel {
        padding: 60px 0;
    }

   .post_carousel.testimonial .testiomonial_text {
        padding-top: 60px;
        padding-left: 0px;
        font-size: 24px;
        line-height: 32px;
        max-width: 90%;
        margin: 0 auto;
    }

    .post_carousel.testimonial p{
        text-align: left;
    }

    .post_carousel.testimonial .testiomonial_name, .post_carousel.testimonial .testiomonial_position{
        text-align: left;
        padding-left: 0px;
    }

    .post_carousel p {
        width: 100%;
        max-width: 90%;
        font-size: 18px;
        line-height: 26px;
    }

    .post_carousel .post_carousel_image {
        max-width: 280px;
        margin: 0 auto;
    }

    .post_carousel .post_carousel_image img{
        max-width: 200px;
    }

    .post_carousel.partner  .post_carousel_image img {
        max-width: fit-content;
    }

    .post_carousel.case_study .post_carousel_image img {
        max-height: 300px;
    }

    .post_carousel.case_study .post_carousel_text p {
        font-size: 20px;
        line-height: 28px;

    }

    .post_carousel.gradient2 {
        margin-bottom: 60px;
    }

    .post_carousel.case_study.gradient .post_carousel_text .case_study_permalink, 
    .post_carousel.case_study.gradient2 .post_carousel_text .case_study_permalink {
        width: 267px;
        max-width: calc(100% - 84px);
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .post_carousel.case_study .slick-next.slick-arrow {
        right: 33%;
        left: unset;
    }

    .post_carousel.case_study .slick-prev.slick-arrow {
        right: unset;
        left: 33%;
    }

    .post_carousel .cta a {
        font-size: 16px;
        line-height: 24px;
        margin-right: 0;
    }

    .post_carousel .slick-prev {
        left: -20px;
    }

    .post_carousel.technology .slick-prev {
        left: 0;
    }

    .post_carousel .slick-next {
        right: -20px;
    }

    .post_carousel.technology .slick-next {
        right: 0px;
    }

    /* Post */
    .post_carousel {
        padding-bottom: 80px;
    }

    .post_carousel.post{
        padding-bottom: 30px;
    }  

    .post_carousel.post .heading {
        margin-bottom: 40px;
    }

    .post_carousel.post .post_carousel_item a {
        display: block;
        max-width: 320px;
        margin: 0 auto;
    }

    .post_carousel.post .post_carousel_item p {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .post_carousel.post .post_carousel_item {
        margin-right: 0;
    }

    .post_carousel.post .post_carousel_image {
        max-width: 100%;
        height: 300px;
    }

    .post_carousel.post .slick-arrow {
        bottom: 45%;
    }

    .post_carousel.post .slick-prev.slick-arrow{
        left: 0;
    }

    .post_carousel.post .slick-next.slick-arrow {
        left: unset;
        right: 0;
    }

    /* Team Member */
    .post_carousel.team_member .post_carousel_text{
        text-align: center;
    }

    .post_carousel.team_member .post_carousel_item {
        margin-right: 0;
    }

    .post_carousel.team_member .editor{
        max-width: 100%;
    }

    .post_carousel.team_member .heading {
        justify-content: center;
        margin-bottom: 35px;
    }

    .post_carousel.team_member p {
        font-size: 16px;
        line-height: 24px;
    }

    .post_carousel.team_member .cta{
        margin: 0 auto;
    }

    .post_carousel.team_member .post_carousel_image {
        height: 350px;
        margin: 0 auto;
    }

    .post_carousel.team_member .post_carousel_image img {
        object-position: center;
    }

    .post_carousel.team_member .country{
        left: 33px;
    }

    .post_carousel.team_member .post_carousel_item p.position {
        margin: 0;
    }

    .post_carousel.team_member .slick-arrow {
        top: unset;
        bottom: -50px;
    }

    .post_carousel.team_member .slick-prev.slick-arrow {
        left: 0%;
    }

    .post_carousel.team_member .slick-next.slick-arrow {
        left: unset;
        right: 0;
    }

    .post_carousel.team_member.show_filters {
        padding-top: 40px;
    }

    .post_carousel.team_member .department-tabs {
        margin-bottom: 35px;
    }

    .post_carousel.team_member.show_filters .department-tabs .filter_by {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .post_carousel.team_member.show_filters .dept-select-mobile{
        display: flex;
        align-items: flex-start;
        gap: 8px;
        background: var(--Primary-Gradients-Orange-Dark, linear-gradient(45deg, #FF7533 0%, #FFA073 100%));
        color: var(--Primary-Colours-Slate-Gray-600, #21282F);
        font-family: "IBM Plex Sans Medium";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        padding: 8px 16px 8px 24px;
        padding-right: 40px;
        border: 0 none;
        border-radius: 28px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .post_carousel.team_member.show_filters .dropdown_arrow {
        display: block;
        position: relative;
        right: 30px;
    }

    .post_carousel.team_member.show_filters .post_carousel_image {
        height: 416px;
    }

    .post_carousel.team_member .post_carousel_text {
        max-width: 233px;
        text-align: left;
        padding-bottom: 0;
        margin: 0 auto;
    }

    .post_carousel.team_member.show_filters .post_carousel_item p.position {
        margin-left: 0;
    }

    .post_carousel.team_member.show_filters .slick-prev.slick-arrow {
        left: 0;
    }

    .post_carousel.team_member.show_filters .slick-next.slick-arrow {
        right: 0;
    }

    /* Testimonial */
    .post_carousel.testimonial h2 {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .post_carousel.testimonial a {
        width: 100%;
        max-width: 90%;
        padding: 5%;
        padding-top: 25px;
    }

    .post_carousel.testimonial p {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        line-height: 26px;
        text-align: center;
    }

    .post_carousel.testimonial .testiomonial_text p{
        width: calc(100% - 10px);
        margin: 0 auto;
    }

    .post_carousel.testimonial .testiomonial_name, .post_carousel.testimonial .testiomonial_position {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .post_carousel.testimonial .testimonial_image img {
        max-height: unset;
        width: 160px;
        max-width: 100%;
        margin: 15px auto;
    }

}

/* Post Grid List */
.post_grid_section{
    padding: 72px 0;
}

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

.post_grid_section h4{
    color: #21282F;
    font-family: "IBM Plex Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.post_grid_section p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
}

/* Post Grid List - Technology */
.post_grid_section .technology_filter {
    display: flex;
    justify-content: flex-start;
    background: var(--Base-White, #FFF);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    list-style: none;
    border-radius: 8px;
    padding: 32px;
    margin: 32px 0;
}

.post_grid_section .filter_item{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
    margin-right: 48px;
}

.post_grid_section .filter_item.active{
    font-weight: 600;
}

.post_grid_section .filter_item:hover{
    cursor: pointer;
}

.post_grid_section .technology_filter .filter_item[data-filter="all"] {
    position: relative;
}

.post_grid_section .technology_filter .filter_item[data-filter="all"]:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    right: -30px;
    width: 24px;
    background-image: url('/wp-content/themes/matrixinternet2023/images/filter-arrow-right.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}

.post_grid_section .post_grid_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 32px;
}

.post_grid_section .post_grid_list .post_grid_item{
    flex: calc(25% - 64px);
    margin-bottom: 24px;
}

.post_grid_section .post_grid_list .post_grid_item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.post_grid_section .post_grid_list .post_grid_image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post_grid_section .post_grid_list .post_grid_image img{
    max-height: 100%;
}

.post_grid_section .post_grid_list .post_grid_title{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
    margin: 16px 0;
}

.post_grid_section .post_grid_list .post_grid_excerpt{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    max-width: 312px;
}

.post_grid_section .post_grid_list .post_grid_taxonomy{
    display: none;
}

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

    .post_grid_section.technology{
        padding-bottom: 0;
    } 

    .post_grid_section.technology .post_grid_item{
        margin-bottom: 70px;
    }

    .post_grid_section.technology .post_grid_item.support-service {
        margin-bottom: 0px;
    }

}

/* Post Grid List - Case Study */
.post_grid_section.case_study {
    position: relative;
    z-index: 1;
}

.post_grid_section.case_study .editor {
    width: 100%;
    max-width: 100%;
    margin: 56px 0;
}

.post_grid_section.case_study .editor h1{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.post_grid_section.case_study .editor h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 76px;
    letter-spacing: -1.44px;
}

.post_grid_section.case_study .editor h2 strong{
    font-family: "IBM Plex Sans Bold";
    font-weight: 700;
}

.post_grid_section.case_study .editor p{
    max-width: 100%;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.post_grid_section.case_study .case_study_grid{
    display: flex;
    flex-direction: column;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg h3.case_study_title,
.post_grid_section.case_study.layout_2 .case_study_item.has_bg .case_study_excerpt p,
.post_grid_section.case_study.layout_2 .case_study_item.full_width_first_item.has_bg .assigned_services li{
    color: #323E48;
    border-color: #323E48;
}

.post_grid_section.case_study .container {
    display: flex;
    flex-wrap: wrap;
    background-image: url('/wp-content/themes/matrixinternet2023/images/case-studies-bg.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 16% 35%;
}

.post_grid_section.case_study .case_study_item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: calc(50% - 50px);
    margin: 60px 25px;
}

.post_grid_section.case_study .case_study_item:first-child{
    width: 100%;
    align-items: center;
    flex-direction: row;
}

.post_grid_section.case_study .case_study_item img {
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    max-height: 600px;
}

.post_grid_section.case_study .case_study_item .case_study_text {
    padding: 56px 104px;
    margin-left: 60px;
}

.post_grid_section.case_study .case_study_item:first-child .case_study_text{
    background-color: #fff;
    margin-left: 0;
}

/*.post_grid_section.case_study .case_study_item:nth-child(2n+2){
    margin-top: 200px;
}*/

.post_grid_section.case_study .case_study_title{
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; 
    text-transform: uppercase;
    margin-bottom: 0px;
}

.post_grid_section.case_study .case_study_excerpt{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; 
    letter-spacing: -0.72px;
    max-width: 300px;
}

.assigned_services {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 32px;
}

.assigned_services li{
    color: var(--Primary-Colours-Slate-Gray-300, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
    padding: 12px;
    border-radius: 30px;
    border: 2px solid var(--Primary-Colours-Slate-Gray-300, #656E76);
    margin-right: 12px;
    margin-bottom: 12px;
}

.assigned_services li a{
    color: var(--Primary-Colours-Slate-Gray-300, #656E76);
    text-decoration: none;
}

.case_study_permalink {
    max-width: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Base-Black, #000);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    padding: 10px 42px;
    border-radius: 24px;
    overflow: hidden;
}

.case_study_permalink:hover {
    background: #ff3e01;
    padding: 6px 38px;
    border: 4px solid #ffba99;
}

/*.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: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 24px;
    margin-top: 0px;
    max-width: fit-content;
}

.image_with_editor a.cta:hover {
    background: #ff3e01;
    border: 4px solid #ffba99;
    padding: 8px 28px;
}*/

.post_grid_section.case_study .all_case_studies {
    display: flex;
    align-items: center;
    color: var(--Primary-Colours-Orange-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    margin: 0 auto;
}

.post_grid_section.case_study .all_case_studies img{
    background-color: #FF5200;
    padding: 16px;
    border-radius: 32px;
    margin-left: 16px;
}

.post_grid_section.case_study .no_case_studies{
    margin: 0 auto;
}


/* Post Grid List - Services */
.post_grid_section.service {
    padding: 104px 0;
}

.post_grid_section.service .heading{
    flex-direction: column;
    margin: 0;
}

.services_list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 48px;
}

.post_grid_section.service .service_item {
    width: calc(33.333% - 160px);
    margin-right: 160px;
    margin-bottom: 16px;
}

.post_grid_section.service .service_item a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
}

.post_grid_section.service .service_item a img{
    margin-left: 10px;
}


/* Post Grid - Team Member */
.post_grid_section.team_member .post_carousel {
    padding-bottom: 0;
}

.post_grid_section.team_member .post_carousel.row_2{
    padding-top: 60px;
}

.post_grid_section.team_member .directors{
    display: flex;
    align-items: center;
}

.directors .post_carousel_container {
    display: flex;
}

.post_grid_section.team_member .directors .column{
    width: 50%;
}

.post_grid_section.team_member .directors .slick-track{
    width: 100% !important;
}

.post_grid_section.team_member .post_carousel.team_member .directors .post_carousel_item {
    margin-right: 48px;
    width: calc(50% - 48px) !important;
}

.post_grid_section.team_member .post_carousel.team_member p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
}

.post_grid_section.team_member .post_carousel.team_member .directors h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -1.2px;
}

.post_grid_section.team_member .post_carousel.team_member h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-weight: 700;
}

.post_grid_section.team_member .post_carousel.team_member .post_carousel_item p.position{
    min-height: 70px;
    color: #656E76;
}

.post_grid_section.team_member .cta{
    max-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: 24px;
    padding: 12px 32px;
    margin-top: 44px;
}

.post_grid_section.team_member .cta:hover{
    background: #000;
    color: #fff;
}

.post_grid_section.team_member .jeff_sheridan{
    position: relative;
}

.post_grid_section.team_member .jeff_sheridan:before {
    position: absolute;
    top: 30px;
    left: -10px;
    content: '';
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 28.592px;
    font-style: normal;
    font-weight: 700;
    line-height: 35.74px;
    letter-spacing: -0.572px;
    background-image: url('/wp-content/themes/matrixinternet2023/images/quote.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 90% 50%;
    width: 118px;
    height: 109px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post_grid_section.team_member .rest_of_members{
    display: flex;
    flex-wrap: wrap;
}

.post_carousel.team_member .post_carousel_item{
    width: calc(25% - 48px);
}

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

    .post_grid_section.case_study .case_study_item .case_study_text {
        padding: 56px 80px;
        border-radius: 4px;
        border: 2px solid var(--Primary-Colours-Orange-400, #FF7533);
        margin-left: 60px;
        position: relative;
        top: -75px;
    }

    .post_grid_section.case_study .case_study_item .case_study_title {
        margin-top: 50px;
    }

    .post_grid_section.case_study .case_study_item:first-child .case_study_text {
        top: 0;
        left: -50px;
    }

    .post_grid_section.case_study .case_study_item:first-child .case_study_title {
        margin-top: 0px;
    }

}

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

   .post_grid_section.team_member .post_carousel .post_carousel_image {
        width: 100%;
    }

}

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

    .post_grid_section.team_member .directors {
        flex-direction: column;
    }

    .post_grid_section.team_member .directors .column {
        width: 100%;
    }

   .post_grid_section.team_member .post_carousel.team_member .post_carousel_item{
        width: calc(33% - 48px);
    }

    .post_grid_section.team_member{
        padding-top: 0;
    } 
   
    .post_grid_section.case_study .case_study_item img {
        max-width: 100%;
        object-fit: contain;
        height: auto;
    }

    .post_grid_section.case_study .case_study_item .case_study_text{
        padding: 32px;
    }



}

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

    .post_grid_section.case_study{
        padding: 0px 0;
    }

    .post_carousel.technology {
        padding: 60px 0;
    }

   .post_grid_section.team_member .post_carousel.team_member .post_carousel_item{
        width: calc(50% - 48px);
    }

    .post_grid_section.case_study .case_study_item:first-child .case_study_column {
        width: 50%;
    }

    .post_grid_section.case_study .case_study_item{
        margin: 30px 0;
    }

    .post_grid_section.case_study .case_study_item .case_study_text{
        margin-left: 0;
    }

}

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

    .post_grid_section.case_study .case_study_item{
        margin-top: 0;
    }

    .post_grid_section.case_study .case_study_item:nth-child(2n+2) {
        margin-top: 0px;
    }

    .post_grid_section.case_study .case_study_item .case_study_text {
        margin-left: 0;
    }

    .post_grid_section .assigned_services{
        flex-wrap: wrap;
    }

    .assigned_services li{
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .assigned_services li:last-child{
        margin-right: 0;
    }

}

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

    .post_grid_section.team_member {
        padding: 0;
    }

    .post_grid_section.service .service_item {
        width: calc(50% - 50px);
        margin-right: 50px;
    }

    .post_grid_section.team_member .post_carousel{
        padding: 30px 0;
    }

    .post_grid_section.team_member .post_carousel.team_member .directors .post_carousel_item {
        margin-right: 48px;
        width: calc(50% - 0px) !important;
    }

    .post_grid_section.team_member .post_carousel.team_member .directors .post_carousel_item:nth-child(2n+2){
        margin-right: 0;
    }

    .post_grid_section.team_member .post_carousel.team_member .post_carousel_item {
        width: calc(50% - 24px);
    }

    .post_grid_section.team_member .post_carousel.team_member .post_carousel_item:nth-child(2n+2) {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .post_grid_section.case_study .editor p{
        margin-bottom: 20px;
    }

}

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

    .post_grid_section.case_study .case_study_item:first-child .case_study_column {
        width: 50%;
    }

    .post_grid_section.case_study .case_study_item:first-child {
        flex-direction: column;
    }

    .post_grid_section.case_study .case_study_item:first-child .case_study_column {
        width: 100%;
        padding: 0;
    }

    .post_grid_section.case_study .container {
        flex-direction: column;
    }

    .post_grid_section.case_study .case_study_item {
        width: 100%;
        margin: 30px 0;
    }

    .post_grid_section.service {
        padding: 60px 0;
    }

}

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

    .post_grid_section.case_study .all_case_studies{
        margin-bottom: 50px;
    }

    .post_grid_section.service .service_item {
        width: calc(90% - 0px);
        margin: 0 auto;
        margin-bottom: 20px;
        margin-left: 0;
    }

    .post_grid_section {
        padding: 60px 0;
    }

    .post_grid_section h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .post_grid_section .technology_filter{
        flex-direction: column;
    }

    .post_grid_section .filter_item {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .post_grid_section .filter_item:last-child{
        margin-bottom: 0;
    }

    .post_grid_section .technology_filter .filter_item[data-filter="all"]:after{
        display: none;
    }

    .post_grid_section h4 {
        font-size: 24px;
        line-height: 32px;
    }

    .post_grid_section.team_member .directors .slick-track {
        display: flex;
        flex-direction: column;
    }

    .post_carousel.team_member .directors .post_carousel_text{
        text-align: center;
    }

    .post_grid_section.team_member .directors .column {
        flex-direction: column;
    }

    .post_carousel.team_member .directors .post_carousel_image img {
        object-position: top;
    }

    .post_grid_section.team_member .post_carousel.team_member .directors h2{
        margin-top: 25px;
    }

    .post_grid_section.team_member .post_carousel.team_member .directors .post_carousel_item {
        width: 300px !important;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .post_grid_section.team_member .directors .column {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .post_grid_section.team_member .rest_of_members {
        flex-direction: column;
    }

    .post_grid_section.team_member {
        padding-top: 60px;
    }

    .post_grid_section.team_member .post_carousel{
        padding: 60px 0;
        padding-top: 0;
    }

    .post_grid_section.team_member .post_carousel.team_member .post_carousel_item {
        width: 100%;
        margin-bottom: 25px;
    }

    .post_grid_section.team_member .post_carousel.team_member .post_carousel_item p.position{
        min-height: unset;
        font-size: 20px;
        line-height: 28px;
    }

    .post_grid_section.team_member .post_carousel.team_member .directors .post_carousel_item:nth-child(2n+2){
        margin: 0;
    }

    .post_carousel.team_member h3{
        margin-bottom: 0;
    }

}

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

    .post_grid_section .post_grid_list{
        flex-direction: column;
    }

    .post_grid_section .post_grid_list .post_grid_item{
        width: 100%;
    }

    .post_grid_section .post_grid_list .post_grid_excerpt {
        max-width: 100%;
    }

}


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

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

.text_editor_section h2{
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -1.2px;
    margin: 24px 0;
}

.text_editor_section h2 strong{
    font-family: "IBM Plex Sans Bold";
    font-weight: 700;
}

.text_editor_section h3{
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans Medium";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -1.2px;
    margin: 16px 0;
}

.text_editor_section h4{
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans Bold";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -1.2px;
}

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

.text_editor_section h6{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

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

.text_editor_section.boxed p {
    margin-bottom: 35px;
    max-width: 932px;
}

.text_editor_section li{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    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;
}

.text_editor_section .cta {
    display: block;
    background: #fff;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 30px;
    border: 2px solid var(--Base-White, #FF7533);
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    margin-top: 16px;
    max-width: fit-content;
}

.text_editor_section .cta:hover{
    background: #000;
    color: #fff;
    border: 2px solid var(--Base-White, #000);
}

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

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

    .text_editor_section.boxed{
        padding-bottom: 0;
    }

}

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

    .text_editor_section.center .container{
        width: 100%;
        max-width: 90%;
    }

}

@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: 30px 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;
    }

}

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

    .text_editor_section.center .container{
        max-width: 90%;
    }

}

.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: "IBM Plex Sans";
    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: "IBM Plex Sans";
    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: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
}

.text_editor_section.two_columns.boxed li a:hover {
    text-decoration: underline;
    text-decoration-color: #FF5200;
    text-decoration-thickness: 2px;
}


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

    .text_editor_section.boxed {
        max-width: 90%;
        margin: 0 auto;
        padding: 30px 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: 0px;
    }

}


/* Cards */
.cards_section {
    padding: 140px 0;
}

.cards_section .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cards_section h2 {
    color: #323e48;
    width: 100%;
    text-align: center;
}

.card_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: calc(50% - 160px);
    background-color: #F7F7F8;
    padding: 40px;
    margin: 40px;
}

.card_title{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Bold";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 16px;
}

.card_text{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
    width: 90%;
    max-width: 400px;
    margin: 0;
}

.card_cta{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    padding: 12px 32px;
    border: 2px solid transparent;
    border-radius: 30px;
    margin-top: 16px;
    max-width: fit-content;
}

.card_cta:hover{
    background: #000;
    color: #fff;
}

.cards_section .all_case_studies {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Primary-Colours-Orange-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 80px;
}

.cards_section .all_case_studies img {
    background-color: #FF5200;
    padding: 16px;
    border-radius: 32px;
    margin-left: 16px;
}

.cards_section video{
    max-width: 240px;
}

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

    .card_item:nth-child(2n+2){
        position: relative;
        top: 60px;
    }

}

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

    .card_item_column img{
        max-width: 150px;
        margin-top: 15px;
    }


}

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

    .cards_section .container {
        padding: 60px 0;
    }

    .card_item {
        flex-direction: column;
        width: 38%;
        padding: 3%;
        margin: 3%;
    }

}

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

    .card_item {
        flex-direction: column-reverse;
    }

}

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

    .cards_section {
        padding: 60px 0;
    }

    .cards_section .container {
        padding: 0px 0;
    }

    .cards_section .all_case_studies {
        margin-top: 0px;
    }

}

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

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

    .card_item {
        width: 100%;
        max-width: 90%;
        flex-direction: column;
        padding: 5%;
        margin: 20px 0px;
    }

    .home .cards_section{
        padding-bottom: 60px;
    }

    .home .cards_section .container {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .home .cards_section .all_case_studies {
        margin-top: 0;
        /*margin-bottom: 60px;*/
    }

}

/* Counters */
.counters {
    padding-bottom: 269px;
    margin-top: 200px;
    position: relative;
}

.counters_vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.counters .editor_container{
    width: 1620px;
    max-width: calc(90% - 256px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    padding: 88px 128px;
    margin: 0 auto;
}

.counters .editor_container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    top: -88px;
}

.counters .editor_item:first-child {
    flex: 1 1 100%;
}

.counters .editor_item:not(:first-child) {
    flex: 1 1 calc(33.33% - 16px);
    box-sizing: border-box;
}

.counters .editor_item h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
}

.counters .editor_item h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.counters .editor_item h4{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;
}

.counters .editor_item:nth-child(1){
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.counters .editor_item p{
    margin: 0;
    max-width: 100%;
}

.counters .editor_item{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.counters_container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 30px;
}

.counters_heading{
    color: var(--Base-White, #FFF);
    font-family: "IBM Plex Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.counter_item_container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.counter_number_container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 237px;
}

.counter_number.counter{
    color: var(--Base-White, #FFF);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 82px;
    font-style: normal;
    font-weight: 700;
    line-height: 82px;
    letter-spacing: -1.64px;
    position: relative;
}

.counter_symbol{
    color: var(--Primary-Colours-Orange-500, #fff);
    font-family: "IBM Plex Sans";
    font-size: 82px;
    font-style: normal;
    font-weight: 700;
    line-height: 82px;
    letter-spacing: -1.64px;
}

.counter_item{
    width: 15%;
    padding: 0 70px;
    border-right: 1px solid #fff;
    margin-bottom: 70px;
}

.counter_item:last-child{
    border-right: none;
}

.counter_text{
    color: var(--Base-White, #FFF);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    margin-top: 20px;
}

.counters.no_bg{
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 0;
}

.counters.no_bg .counter_item {
    width: calc(20% - 1px);
    border-right: 1px solid #B7BBBF;
    padding: 0 2.5%;
}

.counters.no_bg .counter_column {
    align-items: flex-start;
}

.counters.no_bg .counter_text {
    color: #21282F;
    text-align: left;
}

.counters.no_bg .counter_item_container {
    align-items: flex-start;
}

.counters.no_bg .counter_number.counter{
    color: #FF5200;
}

.counters.no_bg  .counter_symbol{
    color: var(--Primary-Colours-Orange-500, #FF5200);
}

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

     .counters.no_bg .counter_item_container{
        flex-wrap: wrap;
     }

    .counters .editor_container {
        max-width: 90%;
        padding: 5%;
    }

    .counters .editor_item:not(:first-child) {
        flex: 1 1 calc(33.33% - 30px);
        box-sizing: border-box;
        padding: 15px;
    }

    .counters_container {
        margin-top: 0;
        margin-bottom: 50px;
    }

}

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

    .counters.no_bg .counter_item {
        width: calc(40% - 1px);
        padding: 0 5%;
    }

    .counters .editor_container {
        top: 0;
    }

    .counters_container {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }

 }

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

    .counters {
        background-position: bottom;
        padding-bottom: 80px;
        margin-top:100px;
    }

    .counter_item {
        width: calc(50% - 101px);
        padding: 0 50px;
        margin-bottom: 50px;
    }

    .counters.no_bg .counter_item {
        display: flex;
        justify-content: center;
        width: calc(40% - 1px);
        padding: 0 5%;
        border-right: 1px solid #B7BBBF;
    }

    .counter_item_container {
        flex-wrap: wrap;
    }

}

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

    .counters_heading {
        text-align: center;
    }

    .counters .editor_item h3 {
        margin: 10px 0;
    }

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

    .counter_item_container {
        justify-content: space-evenly;
    }

    .counters_container {
        margin-top: 60px;
    }


}

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

       .counters {
        background-image: none;
        background-color: #FF5200;
        background-size: cover;
        background-position: center;
        padding-top: 60px;
        margin-top: 60px;
        padding-bottom: 30px;
    }

    .counters_heading {
        color: var(--Base-White, #fff);
        text-align: center;
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .counters .editor_item:not(:first-child) {
        padding: 0 12px;
    }

    .counter_item{
        border-right: none;
    }

    .counter_item_container {
        justify-content: center;
    }

    .counters_container {
        margin-bottom: 0;
    }

    .counter_number.counter {
        color: var(--Base-White, #fff);
        font-size: 60px;
        font-weight: 700;
        line-height: 70px;
    }

    .counters.no_bg{
        background-color: #fff;
        padding: 60px 0;
    }

    .counters.no_bg .counter_item_container{
        flex-direction: column;
    }

    .counters.no_bg .counter_item {
        border-right: none;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .counters.no_bg .counter_column {
        align-items: center;
    }

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

    .single-case_study .counter_number_container{
        min-width: 200px;
    }

    .counters.no_bg .counter_text {
        text-align: center;
    }

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

    .counter_item_container{
        flex-direction: column;
    }

}




/* 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:last-child{
    margin-bottom: 0 !important;
}

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

.image_with_editor .img_editor_item .editor {
    max-width: 500px;
    padding: 0 40px;
}

.image_with_editor .img_editor_item .editor h2 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 0;
}

.image_with_editor .img_editor_item .editor h2 strong{
    font-family: "IBM Plex Sans Bold";
    color: #000;
}

.image_with_editor .img_editor_item .editor h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 0;
}

.image_with_editor .img_editor_item .editor h4 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Bold";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.image_with_editor.orange_vector .img_editor_item .editor h4 {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item .editor h4{
    color: #fff;
}

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

.image_with_editor .img_editor_item .editor p:last-child{
    margin-bottom: 0;
}

.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: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
    max-width: 360px;
}

.image_with_editor .img_editor_item .editor ul li{
    background-image: url(/wp-content/themes/matrixinternet2023/images/carousel-arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.image_with_editor .img_editor_item .editor  li a{
    color: #21282F;
    text-decoration: none;
}

.image_with_editor .img_editor_item .editor li a:hover{
    padding-bottom: 1px;
    border-bottom: 2px solid #FF7533;
}

.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: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 24px;
    margin-top: 0px;
    max-width: fit-content;
}

.image_with_editor a.cta:hover{
    background: #ff3e01;
    border: 4px solid #ffba99;
    padding: 8px 28px;
}

/* 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.text_column{
    margin-right: auto;
}

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

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

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

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

    .image_with_editor .img_editor_item .editor {
        padding: 56px 104px;
        border-radius: 4px;
        border: 2px solid var(--Primary-Colours-Orange-400, #FF7533);
        position: relative;
        left: -60px;
    }

    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item:nth-child(2n+2) .editor {
        left: 60px;
    }

}

/* 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-family: "IBM Plex Sans";
    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 {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.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%;
    position: relative;
    z-index: 2;
}

.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-family: "IBM Plex Sans";
    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 {
    padding-top: 250px;
    position: relative;
}

.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.orange_vector .img_editor_item .editor li a{
    color: #fff;
}

.image_with_editor.orange_vector .img_editor_item .editor li a:hover{
    text-decoration: underline;
}

.image_with_editor.orange_vector .orange_circle {
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

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

.image_with_editor .counter_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.333% - 32px);
    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;
    font-family: "IBM Plex Sans";
}

.image_with_editor .counter_number,
.image_with_editor .counter_number_sumbol {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    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: "IBM Plex Sans";
    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%;
    }

    .tax-service_type .image_with_editor.orange_vector .img_editor_column.text_column{
        margin-left: auto;
    }

    .tax-service_type .image_with_editor.orange_vector {
        margin-top: -250px;
        z-index: 0;
    }

}

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

    .image_with_editor .counter_wrapper {
        flex-wrap: wrap;
    }

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

}

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

    .image_with_editor .img_editor_item .editor {
        max-width: 100%;
        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: 0px 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 .container {
        max-width: 90%;
    }

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

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

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

    .image_with_editor.bg_image_left_with_editor_on_the_right .img_editor_item:nth-child(2n+2) .img_editor_column.text_column {
        margin-left: 0;
    }

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

    .image_with_editor.orange_vector .orange_circle {
        object-fit: cover;
    }

}

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

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

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

}

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

    .image_with_editor.orange_vector {
        background-color: #FF5200;
        padding: 60px 0;
    }

    .image_with_editor.orange_vector .img_editor_item .editor li {
        max-width: 90%;
    }

    .image_with_editor .img_editor_item .editor h2{
        margin-top: 15px;
    }

    .image_with_editor .img_editor_item .editor p{
        margin-top: 15px;
    }

    .image_with_editor .counter_item{
        width: 100%;
        max-width: 300px;
        align-items: center;
        margin: 0 auto;
        margin-bottom: 32px;
    }

    .image_with_editor .counter_text{
        text-align: center;
    }

    .image_with_editor a.cta {
        display: block;
        margin: 0 auto;
        margin-top: 35px;
    }

}


/* 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: "IBM Plex Sans";
    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: "IBM Plex Sans";
    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: "IBM Plex Sans";
    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;
}

.post_hero .permalink a .hidden{
    position: absolute;
    opacity: 0;
}

.post_hero_cta .all_case_studies {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Primary-Colours-Orange-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 80px;
}

.post_hero_cta .all_case_studies img {
    background-color: #FF5200;
    padding: 16px;
    border-radius: 32px;
    margin-left: 16px;
}

@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;
    }


}

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

    .post_hero .assigned_services {
        flex-wrap: wrap;
    }

    .post_hero_cta .all_case_studies {
        margin-top: 32px;
    }

    .home .post_hero_cta .all_case_studies {
        margin-bottom: 60px;
    }

}

/* 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-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; 
}

.list_section h4{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    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_section .list_editor h2{
    color: #323e48;
}

.list_section .list_editor p{
    font-family: "IBM Plex Sans";
    font-size: 24px;
    line-height: 36px;
}

.list_item{
    display: flex;
    align-items: flex-start;
    border-top: 1px solid #E0E2E4;
    padding: 24px 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: "IBM Plex Sans Medium";
    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-family: "IBM Plex Sans Bold";
    font-weight: 700;
}

.list_item_text{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    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: 1680px) {
    
    .list_section.no-padding-top-1680{
        padding-top: 0;
    }

}

@media only screen and (max-width: 1200px) {
    
    .list_item_title{
        font-size: 40px;
        line-height: 48px;
    }

}


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

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

}

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

    .list_section {
        padding: 50px 0;
    }

    .list_item_title {
        font-size: 32px;
        line-height: 40px;
    }

}

@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;
    }

}

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

    .list_section .list_editor {
        margin-bottom: 35px;
    }

}

/* Tell us About */
.tell_us_about {
    display: flex;
    align-items: center;
    background: linear-gradient(105deg, rgba(224, 226, 228, 0.30) 36.41%, #E0E2E4 100%);
    z-index: 11;
}

.tax-service_type .tell_us_about,
.single-service .tell_us_about{
    background: transparent;
}

.tell_us_column.content{
    padding: 5%;
}

.tell_us_about h2{
    color: var(--Primary-Colours-Slate-Gray-600, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; 
    letter-spacing: -0.96px;
    max-width: 350px;
}

.tell_us_about h2 strong{
    color: #000;
    font-family: "IBM Plex Sans Bold";
    font-weight: 700;
}

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

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

.address_item{
    margin-right: 60px;
}

.tell_us_about  h3{
    display: flex;
    align-items: center;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    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{
    width: 32px;
    margin-right: 16px;
}

.tell_us_about  p{
    max-width: 270px;
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    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: "IBM Plex Sans";
    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 #form-message{
    font-family: "IBM Plex Sans";
}

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

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

.tell_us_about .wizard-step.active:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.tell_us_about .wizard-step:last_child{
    display: flex;
    justify-content: space-evenly;
}

.tell_us_about label{
    display: block;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    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: 25px;
    border: 4px solid transparent; /* consistent width */
    background: var(--Primary-Colours-Orange-400, #FF7533);
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    box-sizing: border-box; /* important to keep sizing consistent */
    transition: background 0.3s, border-color 0.3s;
}

.tell_us_about button:hover {
    background: #ff3e01;
    border-color: #ffba99; /* only change color, not size */
}

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

.tell_us_about button:hover{
    cursor: pointer;
}

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

.tell_us_about button.prev-step {
    border: 1px solid #E0E2E4;
    background: rgba(255, 255, 255, 0.00);
}

.tell_us_about button.submit-form {
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
}

.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: "IBM Plex Sans";
    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: "IBM Plex Sans";
    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 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tell_us_about .phone-input select {
    width: 100px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 72px;
    margin-right: 20px;
}

.tell_us_about .phone-input select:hover{
    cursor: pointer;
}

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

.tell_us_about input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 532px;;
    background: var(--Base-White, #FFF);
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 20px 32px;
    border-radius: 32px;
    border: 2px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
}

.tell_us_about input#phone_number{
    height: 54px;
}

.tell_us_about input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 150% */
    position: relative;
    top: 1px;
}

.tell_us_about input::-moz-placeholder { /* Firefox 19+ */
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    top: 1px
}

.tell_us_about input:-ms-input-placeholder { /* IE 10+ */
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    top: 1px
}

.tell_us_about input:-moz-placeholder { /* Firefox 18- */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    top: 1px
}

#budget{
    width: 100%;
    height: 72px;
    background-image: url('/wp-content/themes/matrixinternet2023/images/budget-arrow.svg');
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: 97% 50%;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    border: 2px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 0 10px;
    -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   padding-left: 15px;
}

#budget:hover{
    cursor: pointer;
}

#message {
    width: calc(100% - 20px);
    height: 100px;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 10px;
    border: 2px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
    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 {
    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;
}

.tell_us_about .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.tell_us_about .flexi_map_container .container{
    max-width: 100%;
}

.tell_us_about #flexi_map p{
    color: var(--Primary-Colours-Slate-Gray-500, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -1.44px;
    margin: 7.5px 0;
}

.tell_us_about #flexi_map p span{
    margin-right: 7.5px;
}

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

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

}

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

    .tell_us_about.open_map{
        flex-direction: column;
    }

    .flexi_map_container{
        width: 600px;
        max-width: 100%;
        margin: 0 auto;
        margin: 60px 0;
    }

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

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

    .home .tell_us_about {
        margin-bottom: 120px;
    }

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

    .tell_us_about input {
        width: -webkit-fill-available;
    }

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

    .tell_us_about.remove_map  .wizard-step {
        max-width: 80%;
        padding: 10%;
    }

    .tell_us_about.remove_map  .wizard-step {
        width: 100%;
        max-width: calc(100% - 60px);
        padding: 30px;
    }

    #budget {
        max-width: calc(100% - 16px);
    }

    .tell_us_about .buttons_container{
        flex-wrap: wrap;
    }

    .home .tell_us_about {
        margin-bottom: 60px;
    }

}

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

    .relative_container button {
        position: static;
        margin-top: 10px;
        margin-left: auto;
        width: -webkit-fill-available;
    }

}


/* BG with text */
.bg_with_text .container {
    height: 100vh;
    max-height: 713px;
    background-repeat: no-repeat;
    background-position: right;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bg_with_text .container .editor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    left: 10vw;
}

.bg_with_text .container .editor  h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 76px; /* 105.556% */
    letter-spacing: -1.44px;
    max-width: 500px;
}

.bg_with_text .container .editor  h2 strong{
    color: #000;
}

.bg_with_text .container .editor h4{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.bg_with_text .container .editor p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.bg_with_text  img{
    max-width: 100%;
}

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

    .bg_with_text .container .editor{
        left: 0;
    }

}

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

    .bg_with_text .container {
        height: auto;
        max-height: unset;
        flex-direction: column;
    }

    .bg_with_text .container .editor{
        width: 100%;
        max-width: 100%;
    }

    .bg_with_text .container .editor {
        left: 0;
    }

    .bg_with_text .container .editor h2{
        margin-bottom: 10px;
    }

    .bg_with_text .img_container{
        width: 100%;
    }

    .bg_with_text .container img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-top: 25px;
    }

}

/* Timeline */
.timeline_section{
    position: relative;
    padding-top: 120px;
}

.timeline_section .timeline_bg{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    max-width: 500px;
}

.timeline_section h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
    margin-bottom: 150px;
}

.timeline_section .timeline-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.timeline_section .timeline-nav-wrapper{
    position: relative;
    width: 1440px;
    max-width: 90%;
    margin: 0 auto;
}

.timeline_section .timeline-line {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #323E48;
    z-index: 0;
    width: 95%;
    margin: 0 auto;
}

.timeline_section .timeline-nav-wrapper .timeline_arrow{
    position: absolute;
    left: 0;
    top: -10px;
}

.timeline_section .timeline-nav-wrapper .timeline_arrow.right{
    left: unset;
    right: 0;
}

.timeline_section .timeline-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: color 0.3s;
    margin: 0 40px;
}

.timeline_section .timeline-dot .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #8E959A;
    margin-bottom: 5px;
    transition: background 0.3s;
    position: absolute;
    top: -8px;
    z-index: 2;
}

.timeline_section .timeline-dot.active .dot{
    width: 38px;
    height: 38px;
    top: -15px;
}

.timeline_section .timeline-dot  .decate{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    position: absolute;
    top: -70px;
}

.timeline_section .timeline-dot.active .dot {
  background: #FF5200;
}

.timeline_section .timeline-dot .year {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 40px;
}

.timeline_section .timeline-slider {
  width: 90%;
  margin: auto;
}

.timeline_section .timeline-card {
  background: #FFF;
  text-align: left;
  padding: 40px;
  border: 3px solid #4C3041;
  border-radius: 8px;
  margin: 0 15px;
}

.timeline_section .timeline-card.slick-current.slick-active,
.timeline_section .timeline-card.slick-current.slick-center{
  border: 3px solid #FF5200;
}

.timeline_section .timeline-card .date{
    color: var(--Primary-Colours-Slate-Gray-300, #8E959A);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
    margin-bottom: 0;
}

.timeline_section .timeline-card h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 16px;
}

.timeline_card_editor{
    max-width: 600px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 24px;
      line-height: 32px;
      color: #333;
}

.timeline_section .timeline-card .timeline_card_editor img{
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 16px;
    object-fit: cover;
    border-radius: 50%;
}

.timeline_section .timeline-card .timeline_card_editor p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
    margin: 0;
}


.timeline_section .slick-arrow{
    z-index: 1;
}

.timeline_section .slick-arrow:before, 
.timeline_section .slick-arrow:before{
    font-size: unset;
}

.timeline_section .slick-arrow img{
    background-color: #FF7533;
    padding: 16px;
    border-radius: 100px;
}




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

    .timeline_section .slick-arrow.slick-prev{
        left: 0;
    }

    .timeline_section .slick-arrow.slick-next{
        right: 25px;
    }

}

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

    .timeline_section{
        padding-top: 60px;
    }

    .timeline_section .timeline-dot {
        margin: 0 5px;
    }

    .timeline_section .slick-arrow {
        position: absolute;
        top: 30%;
    }

    .timeline_section .slick-prev{
        left: -20px;
    }


    .timeline_section .slick-next{
        right: 30px;
    }

    .timeline_section .slick-arrow{
        top: 70%;
    }

    .timeline_section .slick-arrow.slick-next{
        right: 50px;
    }

}

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

    .timeline_section .timeline-card{
        height: 0;
        opacity: 0;
    }

    .timeline_section .timeline-card.slick-current{
        height: auto;
        opacity: 1;
    }

    .timeline_section {
        padding: 60px 0;
    }

    .timeline_section h2{
        margin-bottom: 100px;
    }

    .timeline_card_editor {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .timeline_section .timeline-card .timeline_card_editor img {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .timeline_section .timeline-dot {
        margin: 0 0px;
    }

    .timeline_section .timeline-dot .dot{
        width: 16px;
        height: 16px;
        top: -4px;
    }

    .timeline_section .timeline-dot.active .dot {
        width: 24px;
        height: 24px;
        top: -8px;
    }

    .timeline_section .timeline-nav{
        gap: 1.2rem;
    }

    .timeline_section .slick-arrow img {
        padding: 8px;
    }


}



/* Featured Case Study */
.featured_case_study h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    margin-top: 0;
    margin-bottom: 16px;
}

.featured_case_study .featured_case_term {
    display: inline-block;
    background: var(--Primary-Gradients-Deep-Purple-Dark, linear-gradient(45deg, #35222E 0%, #4C3041 100%));
    color: var(--Base-White, #FFF);
    font-family: "IBM Plex Sans";
    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;
    margin-right: 8px;
    margin-bottom: 8px;
}

.featured_case_study .img_editor_item .editor {
    max-width: 600px;
    padding: 0 50px;
}

.featured_case_study .img_editor_item .editor p {
    margin: 0;
    margin-bottom: 16px;
}

.featured_case_study a.cta{
    margin-top: 25px;
}

.featured_case_study .additional_case_info {
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    padding: 56px;
}

.featured_case_study .additional_case_info .testimonial_block {
    display: flex;
    flex-direction: column;
    background-image: url('/wp-content/themes/matrixinternet2023/images/quote-2.svg');
    background-size: 62px;
    background-repeat: no-repeat;
    background-position: 0 0;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    padding: 20px 80px;
    padding-right: 20px;
    margin: 0;
}

.featured_case_study .additional_case_info .testimonial_block footer{
    display: flex;
    flex-direction: column;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
    margin-top: 30px;
}

.featured_case_study .counter_number, 
.featured_case_study .counter_number_sumbol {
    color: var(--Primary-Colours-Orange-500, #FF5200);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 82px;
    font-style: normal;
    font-weight: 700;
    line-height: 82px; 
    letter-spacing: -1.64px;
}

.featured_case_study .counter_text{
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.featured_case_study.bg_image_left_with_editor_on_the_right .img_editor_column.image_column img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

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

    .featured_case_study .img_editor_item .editor{
        padding: 56px 104px;
        border-radius: 4px;
        border: 2px solid var(--Primary-Colours-Orange-400, #FF7533);
    }

}

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

    .featured_case_study h3 {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .featured_case_study .additional_case_info {
        flex-direction: column;
    }

    .featured_case_study .additional_case_info .testimonial_block {
        font-size: 24px;
        line-height: 32px;
        padding: 0;
        padding-top: 60px;
        padding-bottom: 0;
        padding-left: 0;
        margin: 0;
    }

    .featured_case_study .additional_case_info .testimonial_block footer {
        margin-top: 10px;
    }

    .featured_case_study .counter_number, .featured_case_study .counter_number_sumbol {
        font-family: "IBM Plex Sans";
        font-size: 60px;
        line-height: 70px;
    }

}

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

    .featured_case_study {
        padding-bottom: 30px;
    }

    .featured_case_study .img_editor_item .editor {
        max-width: 100%;
        padding: 0;
    }

    .featured_case_study.bg_image_left_with_editor_on_the_right .img_editor_column.image_column img {
        height: auto;
    }

    .featured_case_study .img_editor_column.text_column {
        margin-top: 20px;
    }

    .featured_case_study .additional_case_info {
        max-width: 90%;
        display: flex;
        align-items: flex-start;
        padding: 56px 5%;
    }

}

/* Blog Section */
.blog_section {
    background-image: url(/wp-content/themes/matrixinternet2023/images/case-studies-bg.png);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: 120% 2%;
    margin-top: 100px;
}

.blog_section .heading {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 1345px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.blog_section .heading_column{
    /*width: 50%;*/
    width: 100%;
}

.blog_section .heading h4{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog_section .heading h1{
    color: var(--Base-Black, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 76px;
    letter-spacing: -1.44px;
    margin-top: 0;
    margin-bottom: 24px;
}

.blog_section .heading h1 strong{
    font-family: "IBM Plex Sans Bold";
    font-weight: 700;
    color: #000;
}

.blog_section .heading p{
    font-family: "IBM Plex Sans";
    margin-left: 0;
    margin-bottom: 24px;
}


.blog_section .heading .category_filter{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0;
}

.blog_section .heading .category_filter li  {
    display: flex;
    align-items: center;
    width: calc(33% - 64px);
    max-width: max-content;
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    padding: 0;
    border-radius: 28px;
    border: 2px solid var(--Primary-Colours-Orange-300, #FFA073);
    margin-bottom: 8px;
    margin-right: 8px;
}

.blog_section .heading .category_filter li  a{
    color: #21282F;
    text-decoration: none;
    padding: 12px 32px;
}

.blog_section .heading .category_filter li.active,
.blog_section .heading .category_filter li:hover{
    background: var(--Primary-Gradients-Orange-Dark, linear-gradient(45deg, #FF7533 0%, #FFA073 100%));
    border: 2px solid transparent;
}

.blog_section .heading .category_filter li:hover{
    cursor: pointer;
}

.blog_section .search_filter {
    margin-top: 1rem;
}

.blog_section .post_search_input {
    width: 100%;
    max-width: 300px;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    padding: 16px 24px 16px 16px;
    border-radius: 4px;
    border: 1px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
    background: var(--Base-White, #FFF);
    background-image: url('/wp-content/themes/matrixinternet2023/images/filter-search.svg');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 16px 50%;
    padding-left: 48px;
}

.blog_section .post_search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    top: 1px;
}

.blog_section .post_search_input::-moz-placeholder { /* Firefox 19+ */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    top: 1px
}

.blog_section .post_search_input:-ms-input-placeholder { /* IE 10+ */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    top: 1px
}

.blog_section .post_search_input:-moz-placeholder { /* Firefox 18- */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    top: 1px
}

.blog_section .blog_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.blog_section .blog_item {
    width: calc(50% - 80px);
    margin: 0 40px;
    margin-bottom: 40px;
}

.blog_section .blog_item a{
    color: #000;
    text-decoration: none;
}

.blog_section .blog_item_image{
    width: 100%;
    height: 367px;
    position: relative;
}

.blog_section .blog_item_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_section .blog_item_text{
    padding: 24px 40px;
}

.blog_section .blog_item_title{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.96px;
    margin-bottom: 16px;
}

.blog_section .blog_item_title a{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
}

.blog_section .blog_item_excerpt{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.blog_section .blog_item_excerpt a{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
}

.blog_section .blog_item_taxonomy{
    display: none;
    border-radius: 40.509px;
    background: var(--Base-White, #FFF);
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 17.723px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.266px;
    padding: 10.127px 20.254px;
    position: absolute;
    bottom: 20px;
    left: 20px;

}

.blog_section .blog_item_image .blog_item_taxonomy{
    display: block;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_taxonomy{
    display: block;
}

.blog_section .top_articles .blog_item:nth-child(2n+2) {
    margin-top: 80px;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_taxonomy,
.blog_section .top_articles .blog_item:nth-child(2) .blog_item_taxonomy{
    position: static;
    background: var(--Primary-Colours-Slate-Gray-100, #E0E2E4);
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    max-width: fit-content;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_image .blog_item_taxonomy,
.blog_section .top_articles .blog_item:nth-child(2) .blog_item_image .blog_item_taxonomy{
    display: none;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_image{
    height: auto;
}

.blog_section .top_articles .blog_item:nth-child(1) {
    width: calc(100% - 0px);
    margin-bottom: 0;
}

.blog_section .top_articles .blog_item:nth-child(1) a {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_text {
    padding: 24px 40px;
    max-width: 450px;
}

.blog_section .top_articles .blog_item:nth-child(2) {
    width: calc(100% - 0px);
    max-width: 85%;
    margin: 0 auto;
    margin-top: 40px;
}

.blog_section .top_articles .blog_item:nth-child(2) a {
    display: flex;
}

.blog_section .top_articles .blog_item:nth-child(2) .blog_item_image{
    height: 501px;
}

.blog_section .top_articles .blog_item:nth-child(2) .blog_item_image img{
    height: auto;
}

.blog_section .top_articles .blog_item:nth-child(2) .blog_item_text{
    margin-top: 80px;
}

.blog_section .div_before_third_item{
    width: 1394px;
    max-width: 80%;
    margin: 0 auto;
}


/* Adjustment blog page */

.blog_section .top_articles .blog_item:nth-child(1){
    display:flex;
    flex-direction: row-reverse;
}

.blog_section .top_articles .blog_item:nth-child(2){
    display:flex;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_image,
.blog_section .top_articles .blog_item:nth-child(2) .blog_item_image{
    max-width: 65%;
    height:100%;
}

.blog_section .top_articles .blog_item:nth-child(2) .blog_item_image{
    margin-bottom: 80px;
}

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_text,
.blog_section .top_articles .blog_item:nth-child(2) .blog_item_text{
    max-width: 35%;
}

.blog_section .top_articles .blog_item:nth-child(2) .blog_item_text{margin-top:32px;}


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

    .blog_section .heading .category_filter li {
        width: calc(33% - 64px);
    }
    

}

@media only screen and (max-width: 1440px) {
    
    .blog_section .div_before_third_item {
        max-width: 90%;
    }

    .blog_section .blog_item_title{font-size:42px;line-height: 56px;}

}

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

    .blog_section .heading {
        flex-direction: column;
        align-items: center;
    }

    .blog_section .heading_column {
        width: 100%;
    }

    .blog_section .top_articles .blog_item:nth-child(2) .blog_item_text {
        margin-top: 0;
    }

}

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

    .blog_section .heading {
        margin-bottom: 50px;
    }

    .blog_section .heading h1 {
        font-size: 60px;
        line-height: 68px;
        margin-bottom: 15px;
    }

    .blog_section .top_articles .blog_item:nth-child(1) .blog_item_image, .blog_section .top_articles .blog_item:nth-child(2) .blog_item_image{
        max-width:100%;
        height:auto;
        margin:0;
    }

    .blog_section .top_articles .blog_item:nth-child(1) {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .blog_section .top_articles .blog_item:nth-child(1) a {
        display: flex;
        flex-wrap: wrap;
    }

    .blog_section .top_articles .blog_item:nth-child(1) .blog_item_text {
        max-width: 100%;
    }

    .blog_section .top_articles .blog_item:nth-child(2) {
        width: 100%;
        max-width: 100%;
    }

    .blog_section .top_articles .blog_item:nth-child(2) a {
        display: flex;
        flex-wrap: wrap;
    }

    .blog_section .top_articles .blog_item:nth-child(2) .blog_item_image {
        height: auto;
    }

    .blog_section .div_before_third_item {
        max-width: 100%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .blog_section .blog_item_title {
        font-size: 40px;
        line-height: 50px;
    }

    .blog_section .blog_item_text {
        padding: 24px;
    }

}

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

    .blog_section .heading h1 {
        font-size: 50px;
        line-height: 58px;
    }

    .blog_section .blog_item_title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .blog_section .top_articles .blog_item:nth-child(1) .blog_item_text{
        padding-left: 0;
    }

    .blog_section .blog_item_text {
        padding-left: 0;
    }

    .blog_section .blog_item {
        width: calc(50% - 40px);
        margin: 0 20px;
    }

    .blog_section .top_articles .blog_item:nth-child(1),
    .blog_section .top_articles .blog_item:nth-child(2){
        display:block;
    }

    .blog_section .top_articles .blog_item:nth-child(2) .blog_item_text{
        max-width:100%;
    }

    .blog_section .top_articles .blog_item:nth-child(1) a{
        flex-direction: row;
    }

    .blog_section .heading .category_filter li a{
        padding: 12px 24px;
    }

}

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

     .blog_section .heading h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .blog_section .heading .category_filter li {
        display: flex;
        justify-content: center;
        width: calc(50% - 16px);
        min-width: calc(50% - 16px);
        margin-bottom: 16px;
    }

    .blog_section .heading .category_filter li a{padding:12px 16px;}

    .blog_section .post_search_input{
        max-width: -webkit-fill-available;
    }

    .blog_section .blog_list {
            flex-direction: column;
    }

    .blog_section .blog_item {
        width: 100%;
        margin: 0;
    }

    .blog_section .div_before_third_item {
        margin-top: 0;
    }

    .blog_section .top_articles .blog_item:nth-child(1) .blog_item_image,
    .blog_section .top_articles .blog_item:nth-child(2) .blog_item_image,
    .blog_section .blog_item_image  {
        height: 300px;
        overflow: hidden;
    }

    .blog_section .top_articles .blog_item:nth-child(1) .blog_item_image,
    .blog_section .top_articles .blog_item:nth-child(2) .blog_item_image{
        height:auto;
    }

    .blog_section .top_articles .blog_item:nth-child(2) .blog_item_image img {
        height: 100%
    }

    .blog_section .top_articles .blog_item:nth-child(2){
        margin-top: 0;
    }

    .blog_section .blog_item{
        margin-bottom: 25px !important;
    }

}

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

    .blog_section .heading .category_filter li {
        width: calc(50% - 32px);
        max-width: -webkit-fill-available;
        padding: 10px;
    }

}


/* Single Post */
.single-post .hero_section {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
}

.single-post .hero_section.text_on_the_left .hero_content {
    left: 0;
}

.single-post .hero_section.text_on_the_left .hero_content p {
    display: flex;
    align-items: center;
}

.single-post .post_reading_time{
    display: flex;
    align-items: center;
}

.single-post .post_reading_time img{
    margin-left: 32px;
    margin-right: 4px;
}

.single-post .post_reading_time #listen-btn {
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    border: none;
}

.single-post .post_reading_time #listen-btn:hover{
    cursor: pointer;
    text-decoration: underline;
}

.single-post .section_container {
    width: 1240px;
    max-width: 90%;
    margin: 0 auto;
}

.single-post .post_excerpt {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 64px 0;
    margin-bottom: 32px;
    margin: 80px auto;
    margin-bottom: 32px;
}

.single-post .post_excerpt p{
    max-width: 100%;
}

.single-post .image_with_editor {
    padding: 24px 0;
}

.single-post .image_with_editor .img_editor_item {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.single-post .image_with_editor .img_editor_item .editor {
    padding: 40px 80px;
}

.single-post .image_with_editor .img_editor_item .editor h2 {
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.single-post .image_with_editor .img_editor_item .editor  p {
    margin: 24px 0;
}

.single-post .text_editor_section {
    padding: 24px 0;
}

.single-post .text_editor_section h1{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.single-post .text_editor_section h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.single-post .text_editor_section h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.single-post .text_editor_section h4{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.single-post .text_editor_section h5{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.single-post .text_editor_section h6{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.72px;
    margin-top: 0;
}

.single-post .text_editor_section p {
    max-width: 100%;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 32px;
}

.single-post .text_editor_section p img{
    display: block;
}

.single-post .author_social_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-top: 32px;
    border-top: 1px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
}

.single-post .user-profile{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.single-post .user-profile img{
    border-radius: 50%;
}

.single-post .user-profile h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-left: 32px;
}

.single-post .post_social{
    display: flex;
    align-items: center;
}

.single-post .addtoany_list a{
    margin: 0 16px;
}

.single-post .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
    background-color: #FF7533 !important;
    padding: 4px;
}

.single-post .addtoany_share_save{
    display: none;
}

.single-post .related_posts_section{
    width: 1620px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 192px;
    margin-bottom: 120px;
}

.single-post .related_posts_section h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; 
}

.single-post .related_posts_section h2 span{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    margin-left: 24px;
}

.single-post .related_posts {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.single-post .related_post_item{
    width: 33.333%;
}

.single-post .related_post_item a{
    text-decoration: none;
}

.single-post .related_post_item .blog_item_image {
    height: 293px;
}

.single-post .related_post_item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post .related_post_item h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans Medium";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    margin-top: 24px;
    margin-bottom: 0;
}

.single-post .related_post_item p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 16px;
}

.single-post .newsletter_section {
    width: 1492px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--Base-White, #FFF);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 56px 64px;
    border-radius: 8px;
}

.single-post .newsletter_section h2{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; 
    margin-top: 30px;
}

.single-post .newsletter_section h2 span{
    display: block;
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 20px; 
}

@media only screen and (max-width: 1440px) {
    
    .single-post .img_editor_column {
        width: 45%;
    }

    .single-post .related_posts_section {
        margin-top: 100px;
        margin-bottom: 100px;
    }

}

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

    .single-post .image_with_editor .img_editor_item .editor{
        padding: 0;
    }

}

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

    .single-post .img_editor_column {
        width: 45%;
    }

    .single-post .related_post_item h3 {
        font-size: 24px;
        line-height: 32px;
    }

}

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

    .single-post .image_with_editor .img_editor_item .editor{
        padding: 0;
    }

    .single-post .hero_section.text_on_the_left .hero_content_editor h1{
        margin-bottom: 12px;
    }
  
    .single-post .post_excerpt p {
        max-width: 90%;
        margin: 0 auto;
    }

    .single-post .image_with_editor {
        padding: 0;
    }

    .single-post .img_editor_column {
        padding: 0;
    }

    .single-post .text_editor_section {
        padding: 0px 0;
    }

    .single-post .text_editor_section h2{
        margin-bottom: 15px;
    }

    .single-post .author_social_container {
        flex-wrap: wrap;
    }

    .single-post .addtoany_list a {
        margin: 0px 7.5px;
    }

    .single-post .newsletter_section {
        max-width: 90%;
        padding: 50px 5%;
    }

    .single-post .newsletter_section h2{
        margin-top: 0;
    }

    .single-post .hero_section.text_on_the_left .hero_content {
        max-width: 90%;
        padding: 5%;
    }

    .single-post .post_excerpt{
        margin: 32px 0;
    }

    .single-post .img_editor_column {
        width: 100%;
    }

    .single-post .img_editor_column img {
        width: 100%;
        object-fit: cover;
        margin-bottom: 40px;
    }

    .single-post .related_posts_section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .single-post .related_posts{
        flex-direction: column;
    }

    .single-post .related_post_item{
        width: 100%;
    }

    .single-post .related_post_item img {
        height: 300px;
    }

}


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

    .single-post .post_social {
        flex-direction: column;
    }

    .single-post .share_this_post{
        margin: 15px 0;
    }

}

/* Hero Section Video Animation */
.hero_section.animation {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 60px;
    position: relative;
    overflow: visible;
    max-height: max-content;
}

.hero_section.animation  .video_circle {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: -1;
}

.hero_section.animation .hero_content {
    position: static;
    background-color: transparent;
}

.hero_section.animation.video_playing .hero_content {
    display: none;
}

.hero_section.animation.full_image .hero_content_editor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero_section.animation.full_image .hero_content_editor h1{
    display: block;
    max-width: 764px;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans Medium";
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
}

.hero_section.animation.full_image .hero_content_editor h1 strong{
    font-family: "IBM Plex Sans Medium";
    font-weight: 500;
    background-image: url('/wp-content/themes/matrixinternet2023/images/underline.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0% 82%;
}

.hero_section.animation.full_image .hero_content_editor p{
    margin-left: 0;
    margin-bottom: 25px;
}

.hero_section.animation.full_image.video_playing .hero_content_editor p{
    color: #fff;
}

.hero_section.animation .video-container {
    width: 50%;
    object-fit: contain;
    position: relative;
    transition: all 1s ease;
    border-radius: 20px;
    overflow: hidden;
}

.hero_section.animation.video_playing .video-container {
  width: 300px;
  height: 400px;
}

.hero_section.animation .video-container.expand {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.hero_section.animation .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 1s ease;
}

.hero_section.animation .thumbnail.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hero_section.animation .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero_section.animation .thumbnail img:hover{
    cursor: pointer;
}

.hero_section.animation.video_playing .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_section.animation .video-container video {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  display: block;
}

.hero_section.animation .video-container.playing video {
  opacity: 1;
}

.hero_section.animation #closeBtn{
    display: none;
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-image: url('/wp-content/themes/matrixinternet2023/images/pause.png');
    background-size: 32px;
    background-repeat: no-repeat;
    border: 0 none;
    position: absolute;
    top: 16px;
    right: 16px;
}

.hero_section.animation #closeBtn:hover{
    cursor: pointer;
}

.hero_section.animation.video_playing #closeBtn{
    display: block;
    z-index: 3;
}

.hero_section.animation #closeBtn .fa{
    visibility: hidden;
    opacity: 0;
}

.hero_section.animation.video_playing .video_circle{
    display: none;
}

.hero_section.animation.video_playing{
    padding-bottom: 0;
}

.hero_section.animation .hero_ctas_container{
    display: flex;
    align-items: center;
}

.hero_section.animation .hero_cta{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans Medium";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    border: 2px solid #FF9461;
    border-radius: 30px;
    padding: 16px 40px;
    margin-right: 12px;
}

.hero_section.animation .hero_cta:hover{
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    border: 4px solid #ffba99;
    padding: 14px 38px;
}

.hero_section.animation .hero_cta.secondary{
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
}

@media only screen and (min-width: 1200px) {
    
    .hero_section.animation.video_playing .hero_content {
        display: none;
        position: absolute;
        display: block;
        bottom: 0%;
        left: 2%;
        z-index: 3;
    }

}


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

    .hero_section.animation.full_image .hero_content_editor h1 {
        font-size: 70px;
        line-height: 88px;
        margin-bottom: 35px;
    }

}

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

    .hero_section.animation.full_image .hero_content_editor h1 {
        font-size: 60px;
        line-height: 68px;
    }

}


@media only screen and (max-width: 1200px) {
    
    .hero_section.animation .hero_ctas_container {
        flex-wrap: wrap;
    }

    .hero_section.animation .hero_cta {
        margin-bottom: 16px;
    }

}

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

    .hero_section.animation.full_image .hero_content_editor h1 {
        font-size: 50px;
        line-height: 58px;
    }

    .hero_section.animation .hero_ctas_container {
        flex-wrap: wrap;
    }

    .hero_section.animation .hero_cta{
        margin-bottom: 25px;
    }

}

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

    .hero_section.animation{
        flex-wrap: wrap;
    }

    .hero_section.animation .video-container {
        width: 100%;
    }

    .hero_section.animation.full_image .hero_content_editor h1 {
        font-size: 40px;
        line-height: 48px;
    }

}

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

    .hero_section.animation .hero_cta {
        width: -webkit-fill-available;
        padding: 16px;
    }

}


/* Send CV */
.send_cv{
    padding: 120px 0;
    position: relative;
}

.send_cv .send_cv_row{
    display: flex;
    align-items: center;
}

.send_cv .editor {
    width: 442px;
    max-width: 80%;
    margin-right: 50px;
}

.send_cv .editor h2{
    color: var(--Base-Black, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 68px; 
    letter-spacing: -1.2px;
}

.send_cv .editor h2 strong{
    color: var(--Base-Black, #000);
    font-family: "IBM Plex Sans Bold";
}

.send_cv .editor p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-left: 0;
}

.send_cv_column.image{
    width: 1120px;
}

.send_cv .double_image{
    display: flex;
    align-items: center;
    position: relative;
}

.send_cv .double_image img{
    max-width: 100%;
}

.send_cv .double_image .small_image{
    position: absolute;
    right: 50px;
}

.send_cv::after {
    content: '';
    width: 100%;
    height: 310px;
    background-color: #F5F5F6;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

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

    .send_cv_row{
        width: 1600px;
        margin: 0 auto;
    }

    .send_cv_row.bottom{
        width: 1400px;
        margin-top: 60px;
    }

    .send_cv_column.image {
        width: 60%;
    }

}

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

    .send_cv .double_image .small_image {
        right: 0;
        bottom: 10%;
        max-width: 50%;
    }

}

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

    .send_cv .send_cv_row {
        flex-direction: column;
    }

    .send_cv .send_cv_column {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 25px 0;
    }

    .send_cv .editor {
        margin: 0px auto;
    }

    .send_cv_column.image {
        max-width: 90%;
    } 

    .send_cv .double_image img {
        margin-bottom: 0px;
    }

    .send_cv .double_image .small_image {
        bottom: 0%;
    }

}

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

    .send_cv {
        padding: 0px 0;
    }

    .send_cv .send_cv_row {
        align-items: flex-start;
        padding: 0 10px;
    }

    .send_cv .send_cv_row.top{
        flex-direction: column-reverse;
    }

    .send_cv .send_cv_column{
        width: 100%;
        max-width: 100%;
    }

    .send_cv .send_cv_column.image {
        display: flex;
        justify-content: flex-start;
    }

    .send_cv .editor {
        margin-left: 0;
        margin-bottom: 0px;
    }

    .send_cv .send_cv_row.top .editor {
        margin-top: 75px;
    }

    .send_cv .send_cv_row.bottom .editor {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

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

    .send_cv .double_image img {
        max-width: 70%;
        display: block;
        margin-left: 0;
        margin-bottom: 0px;
    }

     .send_cv .double_image .small_image {
        width: 100%;
        max-width: 50%;
        object-fit: cover;
        bottom: -30%;
    }

}

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

    .send_cv .send_cv_row {
        padding: 0px;
    }

    .send_cv .editor {
        width: 100%;
        max-width: 100%;
    }

}

/* Send CV Form */
.send_cv .form_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.send_cv .wpcf7{
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 56px 64px;
}

.send_cv .wpcf7 h3{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin: 0;
}

.send_cv .linked_in p{
    margin-left: 0;
}

.send_cv .linked_in p a{
    max-width: fit-content;
    display: flex;
    align-items: center;
    color: var(--Primary-Colours-Deep-Purple-600, #35222E);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 24px;
    border: 2px solid #FF9461;
}

.send_cv .linked_in img{
    margin-right: 8px;
}

.send_cv .form_row p{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 32px;
}

.send_cv .form_row p.full{
    width: 100%;
    margin-right: 0;
}

.send_cv .form_row p:last-child{
    margin-right: 0;
}

.send_cv .form_row label{
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.send_cv .form_row input{
    width: 100%;
    max-height: 60px;
    max-width: calc(100% - 30px);
    background-color: #fff;
    padding: 22px 15px;
    border: 1px solid #B7BBBF;
    border-radius: 4px;
    margin-bottom: 0;
}

 .send_cv .form_row select{
    width: 100%;
    max-width: calc(100% - 0px);
    max-height: unset;
    -webkit-appearance: none;  /* For Safari/Chrome */
    -moz-appearance: none;     /* For Firefox */
    appearance: none;          /* For modern browsers */
    background-image: url('/wp-content/themes/matrixinternet2023/images/select.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 24px;
    background-color: #fff;
    color: var(--Primary-Colours-Slate-Gray-400, #656E76) !important;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 15px 15px;
    border: 1px solid #B7BBBF;
    border-radius: 4px;
    margin-bottom: 0;
    cursor: pointer;
}


.send_cv .form_row textarea{
    width: 100%;
    max-width: calc(100% - 32px);
    border-radius: 4px;
    border: 1px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
    background: var(--Base-White, #FFF);
    padding: 16px;
}

.send_cv .form_row ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.send_cv .form_row ::-moz-placeholder { /* Firefox 19+ */
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.send_cv .form_row :-ms-input-placeholder { /* IE 10+ */
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.send_cv .form_row :-moz-placeholder { /* Firefox 18- */
    color: var(--Primary-Colours-Slate-Gray-400, #656E76);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.send_cv .codedropz-upload-handler{
    border-radius: 30px;
    border: 2px solid #FF9461;
}

.send_cv .codedropz-upload-inner h3,
.send_cv .codedropz-upload-inner span{
    display: none;
}

.send_cv .codedropz-upload-inner .cd-upload-btn{
    color: var(--Primary-Colours-Deep-Purple-600, #35222E);
    font-family: "IBM Plex Sans Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    position: relative;
}

.send_cv .cd-upload-btn:before {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: -32px;
    width: 24px;
    background-image: url(/wp-content/themes/matrixinternet2023/images/upload.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}

.dnd-upload-counter {
    font-family: "IBM Plex Sans";
    right: 15px;
}

.send_cv .form_row.agree p {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.send_cv .form_row.agree .wpcf7-list-item{
    margin-left: 0;
}

.send_cv .form_row.agree .wpcf7-list-item label{
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.send_cv .form_row.agree input{
    width: 32px;
    max-width: unset;
    height: 32px;
    margin-top: 0;
    margin-right: 16px;
}

.send_cv .form_row.agree .wpcf7-list-item-label {
    display: none;
}

.send_cv .form_row.agree span{
    display: flex;
    align-items: center;flex-wrap: wrap;
    max-width: 90%;
    color: var(--grey, #686C72);
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.send_cv .form_row.agree span a{
    color: var(--grey, #686C72);
    text-decoration: none;
}

.send_cv .wpcf7-submit{
    display: inline-flex;
    padding: 16px 40px;
    align-items: flex-start;
    gap: 8px;
    background: linear-gradient(94deg, #FF9461 17.37%, #FF7533 90.35%);
    color: var(--Primary-Colours-Deep-Purple-600, #35222E);
    font-family: "IBM Plex Sans Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: 0 none;
    border-radius: 30px;
    margin-top: 16px;
}

.send_cv .wpcf7-submit:hover{
    cursor: pointer;
    background: #000;
    color: #fff;
}

.send_cv .wpcf7-not-valid-tip{
    color: #dc3232 !important;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

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

    .send_cv .form_row.file{
        flex-direction: column;
        align-items: flex-start;
    }

}

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

    .send_cv .wpcf7 {
        padding: 35px;
    }

    .send_cv .wpcf7 h3 {
        width: 100%;
        margin-bottom: 25px;
    }

}

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

    .send_cv .form_row{
        flex-direction: column;
        margin-bottom: 0;
    }

    .send_cv .form_row p {
        width: 100%;
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 16px;
    }

}

/* Post Grid List - Case Study - Layout 2 */
.post_grid_section.case_study.layout_2 {
    padding-top: 0;
}

.post_grid_section.case_study.layout_2  .container{
    background-image: none;
}

.post_grid_section.case_study.layout_2 .case_study_item:first-child {
    justify-content: end;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0;
    margin-bottom: 72px;
    position: relative;
    overflow: hidden;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg h4{
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--Primary-Gradients-Deep-Purple-Dark, linear-gradient(45deg, #35222E 0%, #4C3041 100%));
    color: var(--Base-White, #FFF);
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 28px;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg .case_study_text{
    border: none;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg .case_study_title{
    color: #fff;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg p{
    color: #fff;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg .assigned_services li{
    border: 2px solid var(--Primary-Colours-Slate-Gray-300, #fff);
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg .assigned_services li,
.post_grid_section.case_study.layout_2 .case_study_item.has_bg .assigned_services li a{
    color: #fff;
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg .case_study_permalink{
    display: inline-block;
    background: #FFF;
    font-family: "IBM Plex Sans";
    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_grid_section.case_study.layout_2 .case_study_item.has_bg .case_study_permalink:hover{
    background: #000;
    color: #fff;
    border: 2px solid var(--Base-White, #000);
}

.post_grid_section.case_study.layout_2 .case_study_item.has_bg .vector_image {
    width: 40vw;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}

.post_grid_section.case_study.layout_2 .remaining_studies .case_study_item:nth-child(2) {
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 0;
}

.post_grid_section.case_study.layout_2 .remaining_studies .case_study_item:nth-child(2) .case_study_text{
    top: 0;
    left: 60px;
}


.post_grid_section.case_study.layout_2 .case_study_item:first-child .case_study_column.case_study_text{
    background-color: transparent;
}

.full_width_first_item .case_study_title,
.full_width_first_item .case_study_excerpt p{
    color: #fff !important;
}

.full_width_first_item .assigned_services li{
    color: #fff !important;
    border-color: white !important;
}

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

    .post_grid_section.case_study.layout_2 .remaining_studies .case_study_item:nth-child(2) .case_study_text {
        width: 100%;
        margin: 0;
    }


    .post_grid_section.case_study.layout_2 .assigned_services {
        flex-wrap: wrap;
    }

    .post_grid_section.case_study.layout_2 .assigned_services li{
        margin-bottom: 12px;
    }

}


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

    .post_grid_section.case_study.layout_2 .case_study_item:first-child {
        justify-content: center;
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .post_grid_section.case_study.layout_2 .case_study_item:first-child .case_study_column {
        width: 100%;
        padding: 5%;
        max-width: 90%;
    }

    .post_grid_section.case_study .case_study_excerpt {
        max-width: 90%;
        margin: 10px 0;
    }

    .post_grid_section.case_study.layout_2 .case_study_item:first-child p{
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .post_grid_section.case_study.layout_2 .case_study_item.has_bg .vector_image{
        display: none;
    }

    .post_grid_section.case_study.layout_2 .remaining_studies .case_study_item:nth-child(2){
        flex-direction: column;
    }

    .post_grid_section.case_study.layout_2 .remaining_studies .case_study_item:first-child .case_study_column {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .post_grid_section.case_study.layout_2 .remaining_studies .case_study_item:first-child {
        padding-bottom: 0px;
        padding-top: 0;
    }

}

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

    .post_grid_section.case_study.layout_2 .case_study_item:first-child p {
        font-size: 24px;
        line-height: 32px;
    }

}

/* Post Grid - Case Study - Filter */
.post_grid_section.case_study .case-study-filters{
    display: flex;
    align-content: flex-start;
}

.post_grid_section.case_study .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 56px;
}

.post_grid_section.case_study .filter-btn {
    display: block;
    background: transparent;
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 32px;
    border-radius: 28px;
    border: 2px solid var(--Primary-Colours-Orange-300, #FFA073);
    margin-bottom: 16px;
}

.post_grid_section.case_study .filter-btn:hover{
    cursor: pointer;
}

.post_grid_section.case_study .filter-btn.active {
    background: var(--Primary-Gradients-Orange-Dark, linear-gradient(45deg, #FF7533 0%, #FFA073 100%));
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
}

.post_grid_section.case_study .desktop-only {
    display: flex;
}

.post_grid_section.case_study .mobile-only {
    display: none;
    width: 100%;
}

.post_grid_section.case_study .dropdown-wrapper {
    position: relative;
}

.post_grid_section.case_study .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.post_grid_section.case_study .dropdown-toggle img{
    margin-top: 2px;
    margin-left: 8px;
}

.post_grid_section.case_study .dropdown-menu {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    border: 1px solid #f26322;
    border-radius: 10px;
    padding: 10px;
    z-index: 10;
    min-width: 300px;
    max-width: max-content;
    flex-direction: column;
}

.post_grid_section.case_study #search-filter {
    display: flex;
    width: 383px;
    height: 46px;
    align-items: center;
    gap: 8px;
    background-color: var(--Base-White, #FFF);
    background-image: url('/wp-content/themes/matrixinternet2023/images/search.svg');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 10px 10px;
    padding: 0 16px;
    padding-left: 40px;
    border-radius: 4px;
    border: 1px solid var(--Primary-Colours-Slate-Gray-200, #B7BBBF);
    margin-left: 32px;
}

.post_grid_section.case_study #search-filter::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

.post_grid_section.case_study #search-filter::-moz-placeholder { /* Firefox 19+ */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

.post_grid_section.case_study #search-filter:-ms-input-placeholder { /* IE 10+ */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

.post_grid_section.case_study #search-filter:-moz-placeholder { /* Firefox 18- */
    color: var(--Primary-Colours-Slate-Gray-600, #21282F);
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

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

    .post_grid_section.case_study .desktop-only {
        display: none;
    }

    .post_grid_section.case_study .mobile-only {
        display: block;
        padding-left: 16px;
    }


}

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

    .post_grid_section.case_study .editor {
        width: 100%;
        max-width: 100%;
        margin: 35px 0;
    }

    .post_grid_section.case_study .editor {
        margin-bottom: 0;
    }

   #service-filter-dropdown {
      appearance: none;            /* Standard */
      -webkit-appearance: none;    /* Safari/Chrome */
      -moz-appearance: none;       /* Firefox */
      background-image: url('/wp-content/themes/matrixinternet2023/images/more-tags.svg');
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 24px;
      color: var(--Primary-Colours-Slate-Gray-600, #21282F);
      font-size: 16px;
      padding-right: 2rem;
      border: 1px solid #B7BBBF;
      border-radius: 4px;
    }

    .post_grid_section.case_study #search-filter::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        font-size: 16px;
        line-height: 24px;
    }

    .post_grid_section.case_study #search-filter::-moz-placeholder { /* Firefox 19+ */
        font-size: 16px;
        line-height: 24px;
    }

    .post_grid_section.case_study #search-filter:-ms-input-placeholder { /* IE 10+ */
        font-size: 16px;
        line-height: 24px;
    }

    .post_grid_section.case_study #search-filter:-moz-placeholder { /* Firefox 18- */
        font-size: 16px;
        line-height: 24px;
    }

    .post_grid_section.case_study .case-study-filters {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .post_grid_section.case_study #search-filter {
        width: 100%;
        max-width: calc(100% - 60px);
        margin-top: 25px;
        margin-left: 0;
    }

    .post_grid_section.case_study .mobile-only {
        max-width: -webkit-fill-available;
        height: 48px;
    }

}


/* Mid Banner */
.mid_banner{
    padding: 120px 0;
}

.mid_banner .container{
    width: 100%;
    max-width: 100%;
}

.mid_banner img{
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.mid_banner.left img {
    width: auto;
    max-width: 85%;
    object-fit: cover;
    margin: 0 auto;
}

.mid_banner.right img {
    width: 100%;
    max-width: 85%;
    object-fit: cover;
    margin-left: auto;
}

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

    .mid_banner{
        padding: 60px 0;
    }

    .mid_banner img,
    .mid_banner.left img,
    .mid_banner.right img {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0;
        margin-bottom: 30px;
    }

}

/* Contact Form Section */
.contact_form_section .container {
    width: 1160px;
    max-width: 90%;
    display: flex;
    align-items: center;
}

.contact_form_section .contact_form_column{
    min-width: 360px;
}

.contact_form_section h2{
    color: var(--Primary-Colours-Orange-500, #FF5200);
    font-family: "IBM Plex Sans";
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 76px; 
    letter-spacing: -1.44px;
}

.contact_form_section p{
    color: var(--Primary-Colours-Slate-Gray-500, #323E48);
    font-family: "IBM Plex Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: 0px;
}

.contact_form_section .form_map_section .contact_container {
    margin-left: 50px;
    margin-right: 15px;
    width: 100%;
}

.contact_form_section .wpcf7-submit {
    max-width: fit-content;
}

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

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

}

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

    .contact_form_section h2 {
        font-size: 40px !important;
        line-height: 48px !important;
    }

    .contact_form_section p {
        font-size: 32px !important;
        line-height: 40px !important;
        margin-left: 0;
    }

    .contact_form_section .contact_form_column {
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0;
        padding-bottom: 30px;
    }

    .contact_form_section .form_map_section .contact_container {
        margin-top: 0px;
        margin-left: 0;
    }

}


/* Group */
.group_section{
    position: relative;
}

.group_section .group_image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 71%;
    object-fit: cover;
    object-position: bottom;
}

.group_section .hero_section.animation  .video_circle {
    display: none;
}

.group_section .post_carousel.partner .container.heading {
    position: relative;
}

.group_section .post_carousel.gradient {
    background-image: none;
}

.group_section .post_carousel.gradient2 {
    background-image: none;
}



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

    .group_section{
        padding-bottom: 200px;
    }

    .group_section .group_image{
        bottom: 150px;
    }

    .group_section .post_carousel.case_study .post_carousel_text {
        border: 1px solid #fff;
        position: relative;
        left: 60px;
    }

    .group_section .post_carousel.case_study .slick-arrow {
        bottom: -30px;
    }

    .hero_section.animation .video-container {
        position: relative;
        /*top: 100px;*/
    }

    .hero_section.animation.video_playing h4{
        color: #fff;
    }

    .hero_section.animation.video_playing .hero_content {
        bottom: 25%;
    }

    .hero_section.animation.video_playing .hero_content_editor h1{
        color: #fff;
    }

    .hero_section.animation.video_playing .hero_content_editor h1 strong{
        color: #fff;
    }

    .hero_section.animation.video_playing .hero_cta{
        color: #fff;
    }

    .hero_section.animation.video_playing .video_overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(60, 38, 50, 0.5);
        z-index: 2;
    }

}

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

    .group_section .post_carousel.gradient {
        background-image: none;
        padding-bottom: 60px;
    }

    .group_section .post_carousel.gradient2 {
        padding-top: 0;
    }

    .hero_section.animation.video_playing .hero_content{
        display: block;
        order: 2;
    }



}

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

    .group_section .group_image {
        height: 69%;
    }

    .group_section .group_image.video_playing {
        height: 61%;
    }

}


/* Cookie Policy */
.page-id-468 .text_editor_section p{
    margin-bottom: 25px;
}

/* Sitemap */
.page-id-10222 .text_editor_section li{
    margin-bottom: 10px;
}

.page-id-10222 .text_editor_section li a{
    color: #000;
    text-decoration: none;
}

.page-id-10222 .text_editor_section li a:hover{
    text-decoration: underline;
}


/* Tags issue */

.blog_section .top_articles .blog_item:nth-child(1) .blog_item_taxonomy .taxonomy_term {
    display: inline-flex;
}

.blog_section .blog_item_taxonomy .taxonomy_term a{
    margin-left:2px;
}