@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

:root {
    --primaryFont: "Work Sans", sans-serif;
}

img {
    max-width: 100%;
}

.full-column {
    width: 100%;
}

.gtechp-post-row {
    margin: 0 !important;
    width: 100%;
    padding: 40px 0;
    max-width: 100% !important;
}

.gtechp-post-row .inner {
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
}

.wrapper {
    max-width: 1140px !important;
    width: 100%;
    padding: 0 20px !important;
    margin: 0 auto;
}

@media (max-width:1024px) {
    .wrapper {
        max-width: 720px;
    }
}

.img-wrap-container {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.img-wrap-container .img-wrap::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.gtechp-post-grid-item:hover .img-wrap-container .img-wrap img {
    transform: scale(1.2);
}

.img-wrap-container .img-wrap img,
.img-wrap-container .img-wrap {
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
    display: flex;
    width: 100%;
}

.category-tag a:hover {
    cursor: pointer;
    background-color: #2f8e3e;
}

.category-tag {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.category-tag a {
    color: inherit;
    text-decoration: none;
    min-height: 25px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background-color: #2b0e0a;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
    font-family: var(--primaryFont);
}

.gtechp-post-grid.grid-type-1 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 8px;
    grid-column-gap: 8px;
}

.gtechp-post-grid-item {
    position: relative;
}

.ultp-block-title {
    font-size: 24px;
    font-family: var(--primaryFont);
    line-height: 32px;
    max-height: calc(32px*2);
    overflow: hidden;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
}

.gtechp-post-grid-item:not(:first-child) .ultp-block-title {
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.ultp-block-title a:hover {
    cursor: pointer;
    color: #2f8e3e;
}

.ultp-block-title a {
    color: inherit;
    transition: 0.3s;
    text-decoration: none;
}

.ultp-block-excerpt {
    padding-top: 12px;
    padding-bottom: 8px;
}

.ultp-block-excerpt p {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}

.ultp-block-readmore {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.ultp-block-readmore svg {
    width: 15px;
    height: 11px;
}

.ultp-block-readmore svg path {
    fill: #fff;
}

.post-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.ultp-block-meta-icon {
    display: flex;
    gap: 12px 24px;
    flex-wrap: wrap;
}

.ultp-block-meta-icon>span a {
    color: inherit;
    text-decoration: none;
}

.ultp-block-meta-icon>span {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 12px;
    line-height: 20px;
}

.ultp-block-meta-icon>span svg {
    height: 12px;
    width: auto;
    margin-right: 5px;
}

.ultp-block-meta-icon>span svg path {
    fill: #fff;
}

.gtechp-post-grid-item:not(:first-child) .ultp-block-author {
    display: none;
}

@media (min-width:768px) and (max-width:1024px) {
    .gtechp-post-grid.grid-type-1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item .ultp-block-title {
        font-size: 16px;
        line-height: 24px;
        max-height: calc(24px*2);
    }
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-1 {
        grid-template-columns: 50% 1fr 1fr;
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item:first-child {
        grid-column-start: 1;
        grid-row-start: 1;
        grid-row-end: 3;
        height: 100%;
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item:nth-child(4) {
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row: 2;
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item:not(:first-child) .img-wrap-container {
        height: calc(462px/2);
    }
}

@media (max-width:767px) {
    .gtechp-post-grid-item .img-wrap-container {
        height: calc(462px/2);
    }
}

.gtechp-post-row .heading {
    position: relative;
    font-family: var(--primaryFont);
    padding-bottom: 10px;
    margin-bottom: 41px;
    font-size: 28px;
    line-height: 36px;
}

.gtechp-post-row .heading::before,
.gtechp-post-row .heading::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.gtechp-post-row .heading::before {
    background-color: #2f8e3e20;
}

.gtechp-post-row .heading::after {
    background-color: #2f8e3e;
    width: 20%;
}

.gtechp-post-row .left-side {
    width: 100%;
}

.gtechp-post-row .right-side {
    width: 100%;
}

@media (min-width:1025px) {
    .gtechp-post-row .left-side {
        width: calc(70% - 15px);
    }

    .gtechp-post-row .right-side {
        width: calc(30% - 15px);
    }
}

.gtechp-post-grid.grid-type-2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item {
    width: 100%;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side {
    width: 100%;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    height: auto;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .img-wrap-container {
    width: calc(50% - 6px);
    max-width: 150px;
    height: 162px;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap {
    position: static;
    padding: 0;
    width: calc(100% - 150px - 6px);
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-date {
    display: none;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2 .gtechp-post-grid-item {
        width: calc(50% - 6px);
        height: auto;
    }

    .gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side {
        width: calc(50% - 6px);
    }
}

.gtechp-post-grid.grid-type-3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:first-child .img-wrap-container {
    height: 200px;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:first-child .ultp-block-title {
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-date {
    display: none;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .img-wrap-container {
    --size: 91px;
    width: var(--size);
    height: var(--size);
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap {
    position: static;
    width: calc(100% - 91px - 12px);
    padding: 0;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span.ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-4 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width:768px) {
    .gtechp-post-grid.grid-type-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gtechp-post-grid.grid-type-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    font-size: 20px;
    line-height: 28px;
    max-height: calc(28px * 2);
}

.gtechp-post-grid.grid-type-4 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span.ultp-block-author {
    display: inline-flex;
}

.grid-3-column {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width:768px) {
    .grid-3-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1025px) {
    .grid-3-column {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gtechp-post-grid.grid-type-3.grid-type-3-2 .gtechp-post-grid-item:first-child .img-wrap-container {
    height: 164px;
}

.gtechp-post-grid.grid-type-3.grid-type-3-2 .gtechp-post-grid-item:not(:first-child) .img-wrap-container {
    --size: 132px;
    width: var(--size);
    height: var(--size);
}

.gtechp-post-grid.grid-type-3.grid-type-3-2 .gtechp-post-grid-item:not(:first-child) .post-content-wrap {
    position: static;
    width: calc(100% - 132px - 12px);
    padding: 0;
}

.gtechp-post-grid.grid-type-5 {
    display: grid;
    grid-column-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gtechp-post-grid.grid-type-5 .img-wrap-container {
    height: 117px;
}

.gtechp-post-grid.grid-type-5 .post-content-wrap {
    position: static;
    padding: 0;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-date {
    display: none;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 {
    gap: 20px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap {
    position: static;
    padding: 0;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-excerpt p {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore:hover {
    cursor: pointer;
    color: #2f8e3e;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore:hover svg path {
    fill: #2f8e3e;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    gap: 12px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child {
        width: calc(50% - 10px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child .img-wrap-container {
    height: 206px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side {
    gap: 20px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side {
        width: calc(50% - 10px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side .gtechp-post-grid-item .img-wrap-container {
    width: calc(50% - 6px);
    max-width: 120px;
    height: 114px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side .gtechp-post-grid-item .post-content-wrap {
    width: calc(100% - 6px - 120px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .img-wrap-container {
    max-width: 106px;
    width: 106px;
    height: 106px;
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap {
    position: static;
    padding: 0;
    max-width: calc(100% - 106px - 12px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-4.grid-type-4-col-2 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-4.grid-type-4-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gtechp-post-grid.grid-type-4.grid-type-4-2 .gtechp-post-grid-item:first-child {
        grid-column: 1/3;
        grid-row: 1;
    }
}

.gtechp-post-grid.grid-type-4.grid-type-4-2 .gtechp-post-grid-item .img-wrap-container {
    height: 184px;
}

.gtechp-post-grid.grid-type-4.grid-type-4-2 .gtechp-post-grid-item:first-child .img-wrap-container {
    height: calc(460px/1.5);
}

.gtechp-post-grid.grid-type-4.grid-type-4-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.gtechp-post-grid.grid-type-4.grid-type-4-3.grid-type-4-col-1 .img-wrap-container {
    height: 224px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 {
    gap: 30px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child {
    background-color: transparent;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child {
        width: calc(50% - 15px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .img-wrap-container {
    height: 330px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap {
    position: static;
    padding: 0;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 20px;
    line-height: 28px;
    max-height: calc(28px*2);
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-excerpt p {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore:hover {
    cursor: pointer;
    color: #2f8e3e;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore:hover svg path {
    fill: #2f8e3e;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side {
        width: calc(50% - 15px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side .img-wrap-container {
    max-width: 190px;
    height: 176px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side .post-content-wrap {
    width: calc(100% - 190px - 12px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .img-wrap-container {
    max-width: 120px;
    width: 120px;
    height: 106px;
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap {
    position: static;
    padding: 0;
    max-width: calc(100% - 120px - 12px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap {
    padding: 0;
    position: static;
}

@media (min-width:768px) {
    .gtechp-post-grid.grid-type-6 .gtechp-post-grid-item {
        flex-direction: row;
    }

    .gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .img-wrap-container {
        height: 266px;
        max-width: 350px;
    }

    .gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap {
        max-width: calc(100% - 350px - 12px);
    }
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item:first-child .ultp-block-title,
.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    max-height: calc(28px*2);
    color: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span.ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-excerpt p:not(:first-child) {
    display: none;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-excerpt p {
    color: #120200;
    height: calc(20px*5);
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore {
    color: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore:hover {
    cursor: pointer;
    color: #2f8e3e;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore:hover svg path {
    fill: #2f8e3e;
}

.wp-block-ultimate-post-heading {
    background-color: #2f8e3e;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 18px 10px;
    width: 100%;
}

.gtechp-post-grid+.wp-block-ultimate-post-heading {
    margin-top: 60px;
}

.wp-block-ultimate-post-heading+.wp-block-ultimate-post-ultp-taxonomy {
    padding-top: 12px;
}

.wp-block-ultimate-post-ultp-taxonomy {
    width: 100%;
}

.wp-block-ultimate-post-ultp-taxonomy ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a {
    border: 1px solid #120200;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    background-color: #fff3f1;
    transition: 0.3s all;
    align-items: center;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover {
    cursor: pointer;
    background-color: #2f8e3e;
}

.wp-block-ultimate-post-ultp-taxonomy .ultp-taxonomy-name {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--primaryFont);
    padding-right: 33px;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover .ultp-taxonomy-name {
    color: #fff;
}

.wp-block-ultimate-post-ultp-taxonomy .ultp-taxonomy-count {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont);
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover .ultp-taxonomy-count {
    color: #fff;
}

.wp-block-ultimate-post-ultp-taxonomy .ultp-taxonomy-bar {
    border-bottom: 2px dashed #120200;
    margin: 0 20px;
    flex: 1;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover .ultp-taxonomy-bar {
    border-bottom: 2px dashed #fff;
}

.footer {
    position: relative;
    border-top: 2px solid #fff;
    padding-top: 80px;
    text-align: center;
    background-color: #2b0e0a;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    margin: 0 auto;
    left: 0;
    background-color: #2f8e3e;
    right: 0;
    max-width: 700px;
    top: -2px;
    z-index: 1;
    height: 2px;
}

.footer>.wrapper {
    padding-bottom: 80px;
}

.footer-logo {
    max-width: 360px;
    width: 100%;
    margin: 0 auto 20px;
    display: flex;
}

.footer .desc {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: var(--primaryFont);
    font-weight: 400;
    margin-bottom: 36px;
}

.footer-contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-details-list li {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: var(--primaryFont);
    font-weight: 600;
    list-style: none;
}

.ultp-social-icons-wrapper {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
}

.ultp-social-icons-wrapper li a {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    background-color: #2f8e3e;
    display: flex;
    font-weight: 400;
    align-items: center;
    color: #fff;
    justify-content: center;
    border-radius: 4px;
}

.ultp-social-icons-wrapper li a svg path {
    fill: currentColor;
}

.ultp-social-icons-wrapper li a svg {
    max-width: 20px;
    width: 100%;
    height: 100%;
}

.footer-bottom {
    background-color: #2f8e3e;
    padding: 34px 0 33px;
}

.footer-bottom .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-bottom .copyright-text {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: var(--primaryFont);
    font-weight: 400;
}

.footer-bottom .copyright-text span {
    font-weight: 700;
}

.footer-bottom ul.menu {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-bottom ul.menu>li>a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: var(--primaryFont);
    font-weight: 400;
    text-decoration: none;
}

.footer-bottom ul.menu li.has-submenu {
    position: relative;
}

.footer-bottom ul.menu li.has-submenu>a button {
    background-color: transparent;
    border: none;
    padding: 0;
    color: #fff;
}

.footer-bottom ul.menu li.has-submenu>a button svg path {
    fill: currentColor;
}

.footer-bottom ul.menu li.has-submenu .submenu {
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    bottom: 24px;
    background-color: #fff;
    border: 1px solid #fff3f1;
    list-style: none;
}

.footer-bottom ul.menu li.has-submenu:hover .submenu {
    opacity: 1;
}

.footer-bottom ul.menu li.has-submenu .submenu li a {
    color: #2b0e0a;
    font-family: var(--primaryFont);
    padding: 8px 16px;
    display: block;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
}

.gtechp-post-row:nth-child(2n) {
    background-color: rgba(47, 142, 62, 0.1);
}

.wp-block-list.footer-menu-links li {
    list-style: none;
}

.wp-block-list.footer-menu-links li a:hover {
    color: #2f8e3e;
}

.wp-block-list.footer-menu-links li a {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.sib-email-area,
.sib-NAME-area {
    font-family: Montserrat, sans-serif;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
}

.sib-email-area input,
.sib-NAME-area input {
    height: 40px;
    background: #ffffff50;
    border-style: solid !important;
    padding-left: 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 0 0 2px 0 !important;
    border-radius: 0 !important;
    margin-top: 10px;
    margin-bottom: 0;
    background: transparent;
    outline: none !important;
}

.sib-email-area input:focus,
.sib-NAME-area input:focus {
    border-color: #2f8e3e !important;
}

.sib_signup_form input[type="submit"]:hover {
    background-color: #349644;
}

.sib_signup_form input[type="submit"] {
    background-color: #2f8e3e;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 12px 12px;
    width: 100%;
}

.wp-block-list.header-nav-menu {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 0 auto;
    list-style: none;
    border-style: solid;
    border-color: #2f8e3e;
    border-width: 2px 0;
    margin-top: -2px;
    margin-bottom: -2px;
}

.wp-block-list.header-nav-menu li a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'work sans';
    padding: 29px 0;
    display: block;
}

.header-search-box .gspbsearch_btn.wp-element-button {
    height: 50px;
    padding: 0;
    width: 50px;
    min-width: 50px;
    background: #2f8e3e;
}

.header-search-box .gspbsearch_input:focus {
    border-color: #2f8e3e !important;
}

.header-search-box .gspbsearch_input {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    border-right: 0 !important;
    max-width: 200px;
}

.wp-block-list.header-nav-menu li a:hover {
    color: #2f8e3e;
}

.header-search-box .gspbsearch_results_items .gspb-dynamic-post-image img {
    height: var(--size);
    width: var(--size);
    --size: 50px;
    min-width: var(--size);
    max-width: var(--size);
    border-radius: 4px;
}

.header-search-box .gspbsearch_results_items>div {
    padding: 12px;
    gap: 12px;
}

.header-search-box .gspb-dynamic-title-element {
    font-size: 14px !important;
    line-height: 20px !important;
    margin-top: -4px !important;
}

.header-search-box .gspb-dynamic-title-element a {
    transition: 0.2s;
}

.header-search-box .gspb-dynamic-title-element a:hover {
    color: #2f8e3e;
}

.header-search-box .gspb_meta_value {
    font-family: 'Montserrat';
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px !important;
    line-height: 20px !important;
}

.gsmouseball {
    border: 1px solid #2f8e3e !important;
}

.gsmouseballsmall {
    background: #2f8e3e !important;
}

.mobilemenutoggle {
    width: 30px;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.mobilemenutoggle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 2px;
    width: 100%;
    transition: 0.2s;
}

.mobilemenutoggle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    height: 2px;
    width: 100%;
    transition: 0.2s;
}

.mobilemenutoggle.active:before {
    transform: rotate(-45deg);
    top: 7px;
}

.mobilemenutoggle.active:after {
    transform: rotate(45deg);
    bottom: 7px;
}

@media (max-width:767px) {
    .wp-block-list.header-nav-menu {
        flex-direction: column;
        left: 0;
        gap: 0;
        width: 100%;
        border: none;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        z-index: 10;
        background-color: #fff;
        padding: 0 20px 20px;
    }

    .wp-block-list.header-nav-menu li a {
        padding: 10px 0;
        border-bottom: 2px solid #34964420;
    }

    .wp-block-list.header-nav-menu li a::before {
        display: none !important;
    }

    .wp-block-list.header-nav-menu li a::after {
        background-color: #349644;
        right: auto;
    }

    .wp-block-list.header-nav-menu li:last-child a {
        border-bottom: 2px solid #34964400;
    }

    .menuactive .wp-block-list.header-nav-menu {
        opacity: 1;
        visibility: visible;
    }
}

.archive-grid-box .taxonomy-category {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    max-height: 56px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.archive-grid-box .taxonomy-category a {
    min-height: 25px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background-color: #2b0e0a;
    border-radius: 4px;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
    font-family: var(--primaryFont);
    background-image: none !important;
}

.archive-grid-box .taxonomy-category a:hover {
    background-color: #2f8e3e;
}

.archive-grid-box .taxonomy-category .wp-block-post-terms__separator {
    display: none;
}

.archive-grid-box>li {
    background-color: #000;
    min-height: 230px;
    position: relative;
    padding: 0 !important;
}

.archive-grid-box .wp-block-greenshift-blocks-container {
    line-height: initial;
}

.archive-grid-box .blog-post-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.wp-site-blocks .archive-grid-box .wp-block-post-featured-image {
    margin: 0 !important;
    height: auto !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.archive-grid-box .wp-block-post-featured-image a {
    position: relative;
}

.archive-grid-box .wp-block-post-featured-image a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.archive-grid-box {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-gap: 20px;
}

@media (min-width:768px) {
    .archive-grid-box {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width:1025px) {
    .archive-grid-box {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.archive-grid-box .wp-block-post-featured-image a img {
    height: auto !important;
}

.archive-grid-box .wp-block-post-title {
    overflow: hidden;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 20px !important;
    font-family: var(--primaryFont) !important;
    line-height: 28px !important;
    max-height: calc(28px * 2) !important;
    display: flex;
    margin-top: 0 !important;
    background-image: none !important;
}

.archive-grid-box .wp-block-post-title a {
    color: inherit;
    text-decoration: none;
    background-image: none !important;
}

.archive-grid-box .wp-block-post-title a:hover {
    color: #2f8e3e;
}

.archive-grid-box .wp-block-post-author *,
.archive-grid-box .wp-block-post-date * {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.archive-grid-box .wp-block-post-author,
.archive-grid-box .wp-block-post-date {
    display: inline-flex !important;
}

.archive-grid-box .wp-block-read-more {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.blog-post-grid-pagination .wp-block-query-pagination-previous:hover,
.blog-post-grid-pagination .wp-block-query-pagination-next:hover {
    background-color: #349644;
}

.blog-post-grid-pagination .wp-block-query-pagination-previous,
.blog-post-grid-pagination .wp-block-query-pagination-next {
    background-color: #2f8e3e;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 10px 20px;
    width: auto;
    margin: 0 !important;
    min-width: 230px;
    text-decoration: none;
}

.blog-post-grid-pagination {
    display: flex !important;
    gap: 10px;
    margin: 0 !important;
    padding: 40px 0px !important;
}

.blog-post-grid-pagination .wp-block-query-pagination-numbers {
    margin: 0 !important;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-grid-pagination .page-numbers {
    background-color: #2f8e3e;
    text-decoration: none !important;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 10px 20px;
    width: auto;
    margin: 0 !important;
}

.blog-post-grid-pagination .page-numbers:hover {
    background-color: #349644;
}

.archieve-singleterm-desc-text p {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
}

.archieve-singleterm-desc-text {
    position: relative;
    font-family: var(--primaryFont);
    padding-bottom: 10px;
    margin-bottom: 41px;
    font-size: 28px !important;
    line-height: 36px;
    font-weight: 600;
    color: #333 !important;
}

.archieve-singleterm-desc-text:after {
    background-color: #2f8e3e20;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.archieve-singleterm-desc-text:before {
    background-color: #2f8e3e;
    content: '';
    width: 20%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wp-block-list.header-nav-menu li a {
    padding: 10px 0;
}

@media (max-width:767px) {
    .wp-block-list.header-nav-menu {
        top: 70px;
    }
}

.wp-block-list.header-nav-menu {
    margin: 0;
}

.wp-block-list.header-nav-menu {
    border: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.header-search-box .gspbsearch_input {
    max-width: 172px;
}

.heading-with-bottom-style {
    font-family: var(--primaryFont) !important;
    position: relative !important;
    font-size: 28px !important;
    line-height: 36px !important;
    font-weight: 600 !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
}

.heading-with-bottom-style::before,
.heading-with-bottom-style::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.heading-with-bottom-style::before {
    background-color: #2f8e3e20;
}

.heading-with-bottom-style::after {
    background-color: #2f8e3e;
    width: 20%;
}

.archive-single-browse-more-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.archive-single-browse-more-list li a {
    border: 1px solid #120200;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    background-color: #fff3f1;
    background-color: rgba(47, 142, 62, 0.1);
    transition: 0.3s all;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont);
    padding-right: 33px;
    text-decoration: navajowhite;
}

.archive-single-browse-more-list li a:hover {
    cursor: pointer;
    background-color: #2f8e3e;
    color: #fff;
}

.archive-single-blog-pst-content p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Work sans';
}

.archive-single-blog-pst-content .wp-block-list {
    padding-left: 30px;
}

.archive-single-blog-pst-content .wp-block-list li {
    font-family: 'Work sans';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.archive-single-blog-pst-content .wp-block-list li strong {
    font-weight: 600;
}

.archive-single-blog-pst-content h2.wp-block-heading {
    font-size: 24px !important;
    line-height: 32px;
    font-family: 'Work sans';
    font-weight: 600;
}

.archive-single-blog-pst-content h2.wp-block-heading strong {
    font-weight: inherit;
}

.archive-single-blog-pst-content h3.wp-block-heading strong {
    font-weight: inherit;
}

.archive-single-blog-pst-content h3.wp-block-heading {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    font-family: 'Work sans';
}

.archive-single-affiliate-links-text {
    font-family: 'Work sans';
    font-size: 16px;
    line-height: 24px;
}

.archive-single-table-of-content-list .gs-autolist-title:hover,
.archive-single-table-of-content-list .gs-autolist-title a:hover {
    color: #2f8e3e !important;
}

.archive-single-table-of-content-list .gs-autolist-title,
.archive-single-table-of-content-list .gs-autolist-title a {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Work sans' !important;
}

.archive-single-table-of-content-list .gs-autolist-item {
    padding: 10px 14px;
}

.archive-single-table-of-content-list .gs-autolist-item:nth-child(2n) {
    background-color: rgba(47, 142, 62, 0.1) !important;
}

.archive-single-meta-icon .gspb_svgBox,
.archive-single-meta-icon .gspb_svgBox svg {
    width: 12px !important;
    height: 12px !important;
    margin: 0 !important;
    display: flex;
}

.archive-single-meta-icon>.wp-block-greenshift-blocks-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.archive-single-meta-icon .wp-block-post-author,
.archive-single-meta-icon a {
    font-size: 12px;
    line-height: 20px;
    font-family: 'Work sans';
    color: inherit;
    text-decoration: none;
}

.archive-single-meta-icon {
    display: flex;
    align-items: center;
    gap: 12px 24px;
}

.archive-single-meta-icon .wp-block-post-author__name a:hover,
.archive-single-meta-icon .taxonomy-category a:hover {
    color: #2f8e3e;
}

.archive-single-meta-icon .wp-block-post-author__name a,
.archive-single-meta-icon .taxonomy-category a {
    color: #120200;
}

.archive-single-blog-title {
    font-family: var(--primaryFont);
    font-size: 40px;
    line-height: 48px;
}

#gs-progress-bar {
    background-color: #2f8e3e !important;
}

.archive-single-author-detail-box {
    display: flex;
    background: #ddeddf;
    padding: 30px;
    border-radius: 4px;
    width: 100%;
    gap: 24px;
}

.archive-single-author-name {
    font-size: 20px !important;
    line-height: 28px;
    font-weight: 600 !important;
}

.archive-single-author-name a {
    text-decoration: none;
}

.archive-single-author-avatar-wrap {
    --size: 124px;
    background-color: #fff;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gotBrokenStickyBlock {}

.archive-single-blog-paginations-inner {
    display: flex;
    align-items: center;
    gap: 20px 60px;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (min-width:768px) {
    .archive-single-blog-paginations-inner {
        flex-wrap: nowrap;
    }
}

.archive-single-blog-pagination-wrap .wp-block-post-navigation-link:before {
    display: none;
}

.archive-single-blog-pagination-wrap .wp-block-post-navigation-link:after {
    display: none;
}

.archive-single-blog-paginations-inner .wp-block-post-navigation-link a {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    font-family: 'Work sans';
    color: #000;
    padding: 20px 0;
    min-height: 106px;
}

.archive-single-blog-paginations-inner .post-navigation-link-previous a {
    padding-left: 80px;
}

.archive-single-blog-paginations-inner .post-navigation-link-next a {
    padding-right: 80px;
    text-align: right;
}

.archive-single-blog-paginations-inner .post-navigation-link-previous a:before,
.archive-single-blog-paginations-inner .post-navigation-link-next a:before {
    content: 'Previous Post' !important;
    display: inline-flex !important;
    border: none !important;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Work sans';
    color: #000;
    position: static !important;
    box-shadow: none !important;
}

.archive-single-blog-paginations-inner .post-navigation-link-next a:before {
    content: 'Next Post' !important;
    margin-left: auto;
    text-align: right;
}

.archive-single-blog-paginations-inner .post-navigation-link__label {
    display: none;
}

.archive-single-blog-paginations-inner .wp-block-post-navigation-link {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 !important;
}

@media (min-width:782px) {
    .archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap {
        width: 50%;
        max-width: 490px;
    }
}

.archive-single-blog-paginations {
    border: solid #33904320;
    border-width: 2px 0;
    margin-bottom: 60px;
    margin-top: 60px;
}

.archive-single-blog-paginations-inner {
    position: relative;
}

.archive-single-blog-paginations-inner:before {
    content: '';
    position: absolute;
    width: 100%;
    top: -2px;
    height: calc(100% + 0px);
    border: 2px solid #348e42;
    border-width: 2px 0;
}

.archive-single-main-area {
    padding-top: 40px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.archive-single-main-area .taxonomy-post_tag a {
    min-height: 25px;
    font-size: 14px !important;
    color: #fff !important;
    font-weight: 400;
    background-color: #2b0e0a !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    justify-content: center;
    text-align: center;
    padding: 0 5px !important;
    font-family: var(--primaryFont);
    background-image: none !important;
}

.archive-single-main-area .taxonomy-post_tag a:hover {
    background-color: #2f8e3e !important;
}

.before-header {
    display: none !important;
}

.archive-grid-box-loop {
    margin-top: 0 !important;
    padding-bottom: 40px !important;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox svg {
    --size: 32px;
    width: var(--size) !important;
    height: var(--size) !important;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox {
    width: 66px;
    border-radius: 6px;
    background: #2f8e3e;
    padding: 0;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    position: absolute;
    top: 20px;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox svg path {
    fill: currentColor;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap:first-child .gspb_svgBox {
    left: 0;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap:last-child .gspb_svgBox {
    right: 0;
}

@media (max-width:781px) {
    .wp-container-core-columns-is-layout-1 {
        gap: var(--wp--preset--spacing--60);
    }

    .archive-single-blog-paginations-inner .wp-block-post-navigation-link a {
        font-size: 0;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-direction: row;
        min-height: 66px;
    }

    .archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox {
        width: 46px;
        height: 46px;
        top: 10px;
    }

    .archive-single-blog-paginations-inner .post-navigation-link-previous a {
        padding-left: 60px;
    }

    .archive-single-blog-paginations-inner .post-navigation-link-next a {
        padding-right: 60px;
    }
}

@media (max-width:440px) {

    .archive-single-blog-paginations-inner .post-navigation-link-previous a:before,
    .archive-single-blog-paginations-inner .post-navigation-link-next a:before {
        display: none !important;
    }
}

@media (max-width:767px) {
    .archive-single-blog-title {
        font-size: 25px;
        line-height: 34px;
    }
}

form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit:hover {
    background-color: #349644 !important;
}

form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit {
    background-color: #2f8e3e !important;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 12px 12px;
    width: auto;
    min-width: 253px;
    border: none;
}

.ff-default .ff-el-form-control {
    height: 40px;
    background: #ffffff50;
    border-style: solid !important;
    padding-left: 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 0 0 2px 0 !important;
    border-radius: 0 !important;
    margin-top: 10px;
    margin-bottom: 0;
    background: transparent;
    outline: none !important;
    font-family: var(--primaryFont);
}

.ff-default .ff-el-input--label label {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
}

@media (max-width:767px) {
    .archieve-singleterm-desc-text {
        font-size: 22px !important;
        line-height: 30px;
    }

    .archive .wp-block-query-title {
        word-wrap: break-word;
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .archive-single-author-detail-box {
        flex-direction: column;
    }
}

.archive-single-author-bio {
    font-family: 'Work sans';
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

#gspb_container-id-gsbp-43871843-40b7.gspb_container {
    background-color: rgba(47, 142, 62, 0.1) !important;
    border-color: rgba(47, 142, 62, 0.3) !important;
    border-radius: 4px !important;
}

#gspb_heading-id-gsbp-92555a3e-668d {
    font-family: var(--primaryFont) !important;
    color: #000 !important;
    font-size: 24px !important;
    line-height: 32px !important;
}

#gspb_heading-id-gsbp-e1a56fe9-ab5f {
    color: #000 !important;
    font-size: 40px !important;
    line-height: 48px !important;
    font-family: var(--primaryFont) !important;
}

.gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox {
    background-color: #2f8e3e !important;
    color: #fff;
    font-family: var(--primaryFont) !important;
    font-size: 16px !important;
    line-height: 24px;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center;
    border-radius: 4px !important;
    padding: 12px 12px;
    width: 100%;
}

.wp-site-blocks .gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox:hover {
    background-color: #349644 !important;
}

.archive-single-autho-icon-wrap .wp-block-post-author__name {
    font-family: var(--primaryFont);
    font-size: 12px;
    line-height: 20px;
}

.archive-single-autho-icon-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 5px;
}

.archive-single-autho-icon-wrap .wp-block-post-author__name a {
    text-decoration: none;
}

.archive-single-categories-wraper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.archive-single-categories-wraper a:hover {
    background-color: #2f8e3e !important;
}

.archive-single-categories-wraper a {
    margin: 0 !important;
    color: inherit !important;
    text-decoration: none !important;
    min-height: 25px !important;
    font-size: 14px !important;
    color: #fff !important;
    font-weight: 400 !important;
    background-color: #2b0e0a !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 5px !important;
    font-family: var(--primaryFont) !important;
}

.admin-bar .gotBrokenStickyBlock {
    top: 72px !important;
}

@media (max-width:991.98px) {
    body.gspb-bodyfront #gspb_container-id-gsbp-c28dcdd.gspb_container {
        width: 100% !important;
    }
}

.archive-page-main-title {
    font-family: var(--primaryFont);
    font-size: 40px !important;
    line-height: 48px;
    font-weight: 600;
}

.gtechp-post-row:nth-child(2n) {
    background-color: rgb(217 14 22 / 10%);
    background-color: rgb(61 102 171 / 10%);
}

.category-tag a:hover {
    background-color: rgb(217 14 22 / 100%);
}

.category-tag a {
    background-color: rgb(61 102 171 / 100%);
}

.ultp-block-title a:hover {
    color: rgb(61 102 171 / 100%);
}

.gtechp-post-row .heading::before {
    background-color: rgb(61 102 171 / 10%);
}

.gtechp-post-row .heading::after {
    background-color: rgb(61 102 171 / 100%);
}

.category-tag a br {
    display: none;
}

.ultp-block-meta-icon br {
    display: none;
}

.ultp-block-readmore br {
    display: none;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore:hover {
    color: rgb(217 14 22 / 100%);
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore:hover svg path {
    fill: rgb(217 14 22 / 100%);
}

.gsmouseball {
    border: 1px solid rgb(217 14 22 / 100%) !important;
    border: 1px solid rgb(61 102 171 / 100%) !important;
}

.gsmouseballsmall {
    background: rgb(217 14 22 / 100%) !important;
    background: rgb(61 102 171 / 100%) !important;
}

.gs-autolist-item {
    padding: 15px 15px 15px 5px !important;
    display: flex !important;
    align-items: center !important;
    background-color: rgba(255, 255, 255, 1) !important;
    padding: 10px 14px !important;
}

.gs-autolist-item .gs-autolist-title a {
    font-size: 16px !important;
    line-height: 24px !important;
    /* font-family: 'Work sans' !important !important; */
    text-decoration: none !important;
    color: rgba(0, 0, 0, 1) !important;
}

.gs-autolist-item:nth-child(2n) {
    background-color: rgb(61 102 171 / 10%) !important;
}

#gspb_container-id-gsbp-43871843-40b7.gspb_container {
    background-color: rgb(61 102 171 / 10%) !important;
    border-color: rgb(61 102 171 / 30%) !important;
    border-radius: 4px !important;
}

.gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox {
    background-color: rgb(61 102 171 / 100%) !important;
}

.wp-site-blocks .gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox:hover {
    background-color: rgb(61 102 171 / 90%) !important;
}

#gspb_container-id-gsbp-9a0815b1-22c7.gspb_container {
    background-color: rgb(61 102 171 / 10%) !important;
    border-color: rgb(61 102 171 / 30%) !important;
}

.pagination-main .wp-block-post-navigation-link a {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    font-family: 'Montserrat';
    color: rgb(61 102 171 / 100%);
    padding: 20px 0;
    min-height: 106px;
}

.pagination-main .post-navigation-link-previous a {
    padding-left: 80px;
}

.pagination-main .navigation-button-wrap .gspb_svgBox {
    width: 66px !important;
    max-width: 66px !important;
    border-radius: 6px;
    background-color: rgb(61 102 171 / 100%) !important;
    padding: 0;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    position: absolute;
    top: 20px;
}

.pagination-main .navigation-button-wrap .gspb_svgBox svg {
    --size: 32px;
    width: var(--size) !important;
    height: var(--size) !important;
}

.pagination-main .navigation-button-wrap .gspb_svgBox svg path {
    fill: currentColor;
}

.pagination-main .post-navigation-link-next a {
    padding-right: 80px;
    text-align: right;
}

.pagination-main .gspb_svgBox#gspb_svgBox-id-gsbp-065f088 {
    right: 0;
}


.pagination-main .post-navigation-link-previous a:before,
.pagination-main .post-navigation-link-next a:before {
    content: 'Previous Post' !important;
    display: inline-flex !important;
    border: none !important;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Montserrat';
    color: #3d66ab;
    position: static !important;
    box-shadow: none !important;
}

.pagination-main .post-navigation-link-next a:before {
    content: 'Next Post' !important;
    margin-left: auto;
    text-align: right;
}

/* .custDetailsmain #gspb_container-id-gsbp-43871843-40b7 #gspb_heading-id-gsbp-e1a56fe9-ab5f {
    font-family: Montserrat, sans-serif;
}

.custDetailsmain #gspb_container-id-gsbp-43871843-40b7 #gspb_heading-id-gsbp-92555a3e-668d {
    font-family: Montserrat, sans-serif;
}

.custDetailsmain .gspb_container-id-gsbp-43871843-40b7 .gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox {
    font-family: Montserrat, sans-serif;
} */
 @media (max-width: 991px) {
    .pagination-main .wp-block-post-navigation-link a {
        font-size: 0;
    }
    .pagination-main .post-navigation-link-previous a:before, .pagination-main .post-navigation-link-next a:before {
        transform: translateY(13px);
    }
    	 .navigation-button-wrap div:last-child {
  position:relative !important;
  top:0 !important;
}
 }
 @media (max-width: 600px) {
    .pagination-main .post-navigation-link-previous a:before, .pagination-main .post-navigation-link-next a:before {
        display: none !important;
    }

 }
 
 
