/* blog page css */

.blog-post-list {
    width: 100%;
    max-width: 100%;
}

.blog-post-list-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.blog-post-list-flex .post-item {
    width: 33.333%;
    margin-top: 50px;
}

.blog-post-list-flex .post-container {
    max-width: 370px;
    width: 100%;
    background-color: #FFF;
    height: 100%;
}

.blog-post-list-flex .post-container .post-img-container a {
    display: block;
    height: 230px;
}

.blog-post-list-flex .post-container .post-img-container a:not(.text-url) img {
    width: 100%;
    max-width: 370px;
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
}

.blog-post-list-flex .post-container .post-content {
    -webkit-box-shadow: 0px 0px 25px #f1f2f6;
    -moz-box-shadow: 0px 0px 25px #f1f2f6;
    box-shadow: 0px 0px 25px #f1f2f6;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px 32px 90px 38px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius: 10px;
    height: -webkit-calc(100% - 230px);
    height: -moz-calc(100% - 230px);
    height: calc(100% - 230px);
    font-family: "Lato", Sans-Serif;
    position: relative;
}

.blog-post-list-flex .post-container .post-content .post-author {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #7A8192;
    margin-bottom: 20px;
}

.blog-post-list-flex .post-container .post-content .post-title h3 {
    font-family: "Roboto Slab", Sans-Serif;
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #292D34;
    min-height: 58px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}

.blog-post-list-flex .post-container .post-content .post-excerpt {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #7A8192;
    margin-top: 30px;
}

.blog-post-list-flex .post-container .post-content .post-excerpt p {
    margin-bottom: 0;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 38px;
    padding-right: 31px;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .post-date {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #7A8192;
    width: auto;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read {
    width: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #292D34;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 0;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    background-color: transparent;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read svg path {
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    -moz-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read svg {
    width: 10px;
    height: 10px;
    margin-left: 20px;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read:focus {
    outline: none;
    border: none;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read:hover,
.blog-post-list-flex .post-container .post-content .post-title:hover h3 {
    color: #FF8300;
}

.blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read:hover svg path {
    stroke: #FF8300;
}

.blog-post-list .pagination {
    margin-top: 55px;
    margin-bottom: 0;
}

.blog-post-list .pagination .pagination-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-post-list .pagination .pagination-container .page-numbers {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #7A8192;
    width: 54px;
    height: 54px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    padding: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: color 0.3s, -webkit-box-shadow 0.3s;
    transition: color 0.3s, -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s, color 0.3s;
    -moz-transition: box-shadow 0.3s, color 0.3s, -moz-box-shadow 0.3s;
    transition: box-shadow 0.3s, color 0.3s;
    transition: box-shadow 0.3s, color 0.3s, -webkit-box-shadow 0.3s, -moz-box-shadow 0.3s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-post-list .pagination .pagination-container .pagination-btn svg path {
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    -moz-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.blog-post-list .pagination .pagination-container .page-numbers.current,
.blog-post-list .pagination .pagination-container .page-numbers:hover {
    color: #FF8300;
    -webkit-box-shadow: 0px 0px 24px #F1F2F6;
    -moz-box-shadow: 0px 0px 24px #F1F2F6;
    box-shadow: 0px 0px 24px #F1F2F6;
}

.blog-post-list .pagination .pagination-container .page-numbers .pagination-btn svg {
    width: 16px;
    height: 16px;
}

.blog-post-list .pagination .pagination-container .page-numbers:hover .pagination-btn svg path {
    stroke: #FF8300;
}

.blog-post-list .pagination .pagination-container .page-numbers {
    margin-right: 6px;
    margin-left: 6px;
}

body.blog-page-1 .blog-post-list .pagination .pagination-container {
    padding-left: 54px;
}

body.blog-page-1 .blog-post-list .pagination .pagination-container .current {
    position: relative;
}

body.blog-page-1 .blog-post-list .pagination .pagination-container .current:after {
    content: "";
    width: 54px;
    height: 54px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: -60px;
    top: 0;
    background-image: url('../img/arrow left.svg');
    -webkit-background-size: 16px 16px;
    -moz-background-size: 16px 16px;
    -o-background-size: 16px 16px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.5;
    pointer-events: none;
    cursor: auto;
}

@media (max-width: 1250px) {
    .blog-post-list-flex .post-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1120px) and (min-width: 1025px) {
    .blog-post-list-flex .post-container .post-content .post-title h3 {
        min-height: 87px;
    }
}

@media (max-width: 1024px) {
    .blog-post-list-flex .post-item {
        width: 50%;
    }

    .blog-post-list-flex .post-container {
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .blog-post-list-flex .post-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    .blog-post-list-flex .post-item {
        width: 100%;
    }

    .blog-post-list-flex .post-container {
        padding: 0;
    }

    .blog-post-list-flex .post-container .post-content .post-title h3 {
        min-height: auto;
        font-size: 18px;
        line-height: 25px;
    }

    .blog-post-list-flex .post-container .post-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 60px;
    }

    .blog-post-list-flex .post-container .post-content .post-excerpt {
        font-size: 16px;
        line-height: 25px;
        margin-top: 20px;
    }

    .blog-post-list-flex .post-container .post-content .post-bottom-section {
        padding-left: 20px;
        padding-right: 20px;
        bottom: 25px;
    }

    .blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read {
        font-size: 14px;
    }

    .blog-post-list-flex .post-container .post-img-container a,
    .blog-post-list-flex .post-container .post-img-container a img {
        height: 200px;
    }

    .blog-post-list-flex .post-container .post-img-container a:not(.text-url) img {
        height: 200px;
    }

    .blog-post-list-flex .post-container .post-content {
        height: -webkit-calc(100% - 200px);
        height: -moz-calc(100% - 200px);
        height: calc(100% - 200px);
    }
}

/* blog page css end */

/* blog single post page css */

.blog-social-icons {
    width: 100%;
    max-width: 100%;
    position: absolute;
    bottom: -71px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-social-icons a {
    width: 42px;
    height: 42px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #292D34;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    padding: 10px;
    border: 1px solid #292D34;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 5px;
    margin-left: 5px;
}

.blog-social-icons a:hover {
    background-color: transparent;
}

.blog-social-icons a i {
    color: #FFF;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 16px;
}

.blog-social-icons a:hover i {
    color: #292D34;
}

@media (max-width: 1024px) {
    .blog-social-icons {
        bottom: -51px;
    }
}

@media (max-width: 767px) {
    .blog-social-icons a {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .blog-social-icons a i {
        font-size: 14px;
    }

    .blog-social-icons {
        bottom: -48px;
    }
}

/* blog single post page css end */

/* content hub page css */

.fl-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fl-items .col-1 {
    width: 65.29%;
}

.fl-items .col-2 {
    width: 34.71%;
    padding-left: 50px;
}

.filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.filter .filter-style.product-filter {
    display: none !important;
}

.filter .filter-style {
    max-width: 370px;
    width: 100%;
    min-height: 50px;
}

.filter .filter-style .categories {
    position: relative;
    -webkit-filter: drop-shadow(0px 0px 25px #F1F2F6);
    filter: drop-shadow(0px 0px 25px #F1F2F6);
    z-index: 9;
}

.filter .filter-style .categories.active {
    z-index: 10;
}

.filter .filter-style .selected {
    min-width: 256px;
    height: 50px;
    font-family: "Lato", Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    color: #292D34;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 6px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background-color: #EAEDF3;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.filter .filter-style .selected:after {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 30px;
    background-color: #FFF;
}

.filter .filter-style .selected.active:after {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.filter .filter-style .selected:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    right: -21px;
    bottom: -20px;
    background-image: url('../img/Union.png');
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center center;
}

.filter .filter-style .selected.active:before {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.filter .filter-style .selected img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-left: 5px;
}

.filter .filter-style .selected:hover {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 25px #F1F2F6;
    -moz-box-shadow: 0px 0px 25px #F1F2F6;
    box-shadow: 0px 0px 25px #F1F2F6;
}

.filter .filter-style .selected.active:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.filter .filter-style .selected.active {
    background-color: #fff;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
}

.filter .filter-style .selected.active img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.filter .filter-style ul {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    left: 0;
    width: -webkit-calc(100% + 114px);
    width: -moz-calc(100% + 114px);
    width: calc(100% + 114px);
    padding: 16px 20px;
    list-style: none;
    background: #fff;
    top: 60px;
    z-index: 11;
    margin: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}

.filter .filter-style .selected.active + ul {
    pointer-events: auto;
    opacity: 1;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
}

.filter .filter-style ul li {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    color: #292D34;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer;
}

.filter .filter-style ul li:hover {
    color: #FF8300;
}

.search-form,
.search-form form {
    position: relative;
}

.search-form form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #EAEDF3;
}

.search-form form .remove {
    content: "";
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    cursor: auto;
    width: 16px;
    height: 16px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    right: 100px;
    left: unset;
    position: absolute;
}

.search-form.desktop-search.active-close form .remove {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.search-mobile .search-form.active-close form .remove {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.remove img {
    width: 100%;
    display: block;
}

.search-form input.search-input {
    width: -webkit-calc(100% - 91px);
    width: -moz-calc(100% - 91px);
    width: calc(100% - 91px);
    border: none;
    background-color: #EAEDF3;
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    color: #292D34;
    padding: 6px 30px 6px 45px;
    height: 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.search-form input.search-button {
    width: 91px;
    background-color: #FF8300;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 6px 11px;
    z-index: 2;
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    color: #292D34;
    border: 2px solid #ff8300;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    height: 50px;
}

.search-form input.search-button:hover {
    background-color: #EAEDF3;
    color: #292D34;
}

.search-form input:focus {
    outline: none;
}

.search-form form:after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 15px;
    width: 21px;
    height: 21px;
    background-image: url('../img/Loop.svg');
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center center;
}

.filter .filter-style.search-mobile {
    display: none;
}

.post-list-section.fl-items {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.post-list-section .blog-post-list-flex .post-item {
    width: 50%;
    padding-right: 25px;
}

.post-list-section .blog-post-list-flex .post-item:nth-child(even) {
    padding-right: 0;
    padding-left: 25px;
}

.sidebar-col .learn-more-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.post-list-section .post-img-container {
    position: relative;
    height: 230px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.post-list-section .post-img-container a.main-url {
    position: absolute;
    width: 100%;
}

.post-list-section .post-img-container a.main-url:after {
    content: "";
    width: 100%;
    height: 100%;
    /*background-color: rgba(41, 45, 52, 0.5);*/
    z-index: 2;
    display: block;
    position: absolute;
    left: 0%;
    top: 0;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px;
}

.post-list-section .post-item-bg-color .post-img-container a.main-url:after {
    background-color: rgba(41, 45, 52, 0.5);
}

.post-list-section .post-img-container .feat-img-logo {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%
}

.post-list-section .post-img-container .feat-img-logo img {
    max-width: 265px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.post-list-section .post-img-container .feat-img-text {
    margin-top: 20px;
}

.post-list-section .post-img-container .feat-img-text h4 {
    font-family: 'Roboto Slab', Sans-Serif;
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.post-list-section .blog-post-list-flex .post-container .post-content {
    padding: 28px 25px 91px 38px;
}

.post-list-section .blog-post-list-flex .post-container .post-content .post-title h3 {
    min-height: 87px;
}

.post-list-section .blog-post-list-flex .post-container .post-img-container a.text-url {
    height: auto;
}

.right-sidebar .col-title h2 {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 17px;
    color: #292D34;
    margin-top: 0;
    margin-bottom: 30px;
}

.right-sidebar .flex-tags ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: -10px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
}

.right-sidebar .flex-tags ul li {
    margin-top: 10px;
    margin-left: 10px;
}

.right-sidebar .flex-tags ul li a {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 38px;
    color: #292D34;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border: 2px solid #EAEDF3;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 6px 15px;
    display: inline-block
}

.right-sidebar .flex-tags ul li:hover a,
.right-sidebar .flex-tags ul li.active-tag a {
    color: #FF8300;
    border-color: #FF8300;
}

.right-sidebar .most-popular-section {
    margin-top: 50px;
}

.right-sidebar .most-popular-section .col-title h2 {
    margin-bottom: 25px;
}

.right-sidebar .most-post-items .most-popular-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.right-sidebar .most-post-items .most-popular-list .most-post-item {
    width: 100%;
    margin-top: 10px;
}

.right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container {
    position: relative;
    padding: 26px 64px 27px 27px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 137px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: rgba(41, 45, 52, 0.5);
    mix-blend-mode: normal;
    z-index: 2;
}

.right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container a {
    position: relative;
    z-index: 3;
}

.right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container a h3 {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #FFFFFF;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    margin: 0;
    position: relative;
    z-index: 5;
}

.right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container:hover a h3 {
    color: #FF8300;
}

.blog-post-list.content-hub-style .pagination.pagination-mobile,
.blog-post-list.news-and-events-style .pagination.pagination-mobile {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.post-list .post-item.hidden {
    display: none;
}

.blog-post-list .selected-text {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.sorry {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    color: #292D34;
    margin-bottom: 0;
    margin-top: 50px;
}

.blog-post-list.content-hub-style .pagination .pagination-container .page-numbers,
.blog-post-list.news-and-events-style .pagination .pagination-container .page-numbers {
    color: #616775;
}

.blog-post-list.content-hub-style .pagination .pagination-container .page-numbers.current,
.blog-post-list.content-hub-style .pagination .pagination-container .page-numbers:hover,
.blog-post-list.news-and-events-style .pagination .pagination-container .page-numbers.current,
.blog-post-list.news-and-events-style .pagination .pagination-container .page-numbers:hover {
    color: #292D34;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn.disabled svg path,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn.disabled svg path {
    stroke: #7A8192;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn svg path,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn svg path {
    stroke: #292D34;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn {
    width: 54px;
    height: 54px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    padding: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: color 0.3s, -webkit-box-shadow 0.3s;
    transition: color 0.3s, -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s, color 0.3s;
    -moz-transition: box-shadow 0.3s, color 0.3s, -moz-box-shadow 0.3s;
    transition: box-shadow 0.3s, color 0.3s;
    transition: box-shadow 0.3s, color 0.3s, -webkit-box-shadow 0.3s, -moz-box-shadow 0.3s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn:hover,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn:hover {
    -webkit-box-shadow: 0px 0px 24px #f1f2f6;
    -moz-box-shadow: 0px 0px 24px #f1f2f6;
    box-shadow: 0px 0px 24px #f1f2f6;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn:hover svg path,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn:hover svg path {
    stroke: #292D34;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn.disabled,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn.disabled {
    cursor: auto;
    pointer-events: none;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn.disabled:hover,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn.disabled:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.blog-post-list.content-hub-style .pagination .pagination-container .pagination-btn.disabled:hover svg path,
.blog-post-list.news-and-events-style .pagination .pagination-container .pagination-btn.disabled:hover svg path {
    stroke: #7A8192;
}

@media (max-width: 1280px) {
    .content-hub-main-section {
        padding-top: 50px !important;
    }

    .fl-items {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .filter .filter-style {
        max-width: 50%;
        margin-top: 50px;
    }

    .fl-items .col-2 {
        padding-left: 20px;
        margin-top: 50px;
    }

    .filter .filter-style .categories {
        max-width: 256px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .sidebar-col .learn-more-section {
        margin-top: 0;
    }

    .post-list-section .blog-post-list-flex .post-container {
        padding-left: 0;
        padding-right: 0;
    }

    .post-list-section .blog-post-list-flex .post-item {
        padding-right: 10px;
    }

    .post-list-section .blog-post-list-flex .post-item:nth-child(even) {
        padding-left: 10px;
    }

    .contact-form-style.contact-form-blog .flex-items .email-input {
        max-width: 250px;
        width: 100% !important;
    }
}

@media (max-width: 1024px) {
    .sidebar-col .learn-more-section {
        margin-bottom: 30px;
    }

    .right-sidebar .col-title h2 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .right-sidebar .most-popular-section {
        margin-top: 30px;
    }

    .right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container {
        padding: 20px 10px;
    }

    .right-sidebar .most-post-items .most-popular-list .most-post-item .most-post-container a h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .post-list-section .blog-post-list-flex {
        padding-right: 10px;
    }

    .post-list-section .post-img-container {
        height: 180px;
    }

    .post-list-section .post-img-container a.main-url {
        height: 180px;
    }

    .post-list-section .blog-post-list-flex .post-container .post-img-container a:not(.text-url) img {
        height: 180px;
    }

    .post-list-section .post-img-container .feat-img-logo {
        padding-left: 10px;
        padding-right: 10px;
    }

    .post-list-section .post-img-container .feat-img-logo img {
        width: 100%;
    }

    .post-list-section .blog-post-list-flex .post-container .post-content {
        height: -webkit-calc(100% - 180px);
        height: -moz-calc(100% - 180px);
        height: calc(100% - 180px);
        padding: 20px 10px 60px 10px;
    }

    .post-list-section  .blog-post-list-flex .post-container .post-content .post-title h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .post-list-section .post-img-container .feat-img-text h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .post-list-section .post-img-container .feat-img-text {
        margin-top: 10px;
    }

    .post-list-section .blog-post-list-flex .post-container .post-content .post-bottom-section {
        bottom: 20px;
    }
}

@media (max-width: 992px) {
    .filter .filter-style .categories {
        max-width: 225px;
    }

    .filter .filter-style .selected {
        min-width: 225px;
    }

    .fl-items .col-2 {
        padding-left: 10px;
    }

    .search-form input.search-input {
        width: -webkit-calc(100% - 75px);
        width: -moz-calc(100% - 75px);
        width: calc(100% - 75px)
    }

    .search-form input.search-button {
        width: 75px;
    }

    .search-form form .remove {
        right: 80px;
    }

    .search-form input.search-input {
        padding-right: 22px;
    }
}

@media (max-width: 767px) {
    .content-hub-main-section {
        padding-top: 0px !important;
    }

    .fl-items .col-1 {
        width: 100%;
    }

    .fl-items .col-2.search-col {
        display: none;
    }

    .filter {
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
    }

    .filter .filter-style {
        max-width: -webkit-calc(50% - 10px);
        max-width: -moz-calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-top: 20px;
    }

    .filter .filter-style .categories {
        max-width: 100%;
    }

    .filter .filter-style .selected {
        min-width: 100%;
        font-size: 14px;
        line-height: 38px;
        padding: 6px 10px;
    }

    .filter .filter-style ul {
        padding: 10px;
        width: 335px;
    }

    .filter .filter-style.content-filter ul {
        left: -webkit-calc(-100% - 20px);
        left: -moz-calc(-100% - 20px);
        left: calc(-100% - 20px);
    }

    .filter .filter-style ul li {
        font-size: 14px;
    }

    .filter .filter-style.search-mobile {
        display: block;
    }

    .search-form input.search-button {
        width: 30px;
        border: none;
        background-color: transparent;
        padding: 0;
    }

    .search-form input.search-button:hover {
        background-color: transparent;
    }

    .search-form input.search-input {
        width: -webkit-calc(100% - 30px);
        width: -moz-calc(100% - 30px);
        width: calc(100% - 30px);
        padding-left: 0px;
        padding-right: 22px;
        font-size: 14px;
        line-height: 38px;
    }

    .search-form form:after {
        top: 16px;
        left: 7px;
        width: 16px;
        height: 16px;
    }

    .search-form form .remove {
        right: 8px;
        width: 12px;
        height: 12px;
    }

    .post-list-section .blog-post-list-flex {
        padding-right: 0;
    }

    .post-list-section .blog-post-list-flex .post-item {
        padding-right: 0;
        width: 100%;
    }

    .post-list-section .blog-post-list-flex .post-container .post-content .post-title h3 {
        min-height: auto;
    }

    .post-list-section .blog-post-list-flex .post-container .post-img-container .feat-img-logo img {
        height: auto;
    }

    .post-list-section.fl-items .col-2 {
        padding: 0;
        width: 100%
    }

    .sidebar-col .learn-more-section {
        margin-right: -20px;
        margin-left: -20px;
    }

    .right-sidebar .flex-tags ul li a {
        font-size: 14px;
        line-height: 34px;
    }

    .blog-post-list.content-hub-style .pagination.pagination-mobile,
    .blog-post-list.news-and-events-style .pagination.pagination-mobile {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .blog-post-list.content-hub-style .pagination.pagination-desktop,
    .blog-post-list.news-and-events-style .pagination.pagination-desktop {
        display: none;
    }

    .sorry {
        margin-top: 40px;
        font-size: 20px;
        line-height: 25px;
    }

    .filter .filter-style.content-filter .selected:before {
        right: unset;
        left: -21px;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .filter .filter-style.content-filter .selected.active + ul {
        -webkit-border-top-left-radius: 10px;
        -moz-border-radius-topleft: 10px;
        border-top-left-radius: 10px;
    }
}

/* content hub page css end */

/* news and events page css */

.news-and-events-style .post-list-section .post-img-container a.main-url:after {
    /*background-color: rgba(41, 45, 52, 0.2);*/
}

.news-and-events-style .post-list-section .post-item-bg-color .post-img-container a.main-url:after {
    background-color: rgba(41, 45, 52, 0.2);
}

.news-and-events-style .filter .filter-style .selected {
    color: #616775;
    text-align: center;
}

.news-and-events-style .filter .filter-style .selected:hover,
.news-and-events-style .filter .filter-style .selected.changed {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #FF8300;
    color: #292D34;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.news-and-events-style .filter .filter-style .selected.active:hover,
.news-and-events-style .filter .filter-style .selected.active {
    background-color: #fff;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
}

.news-and-events-style .filter .filter-style .selected.active-cat-item {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #FF8300;
    color: #292D34;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.news-and-events-style .selected-text {
    margin-left: auto;
    margin-right: auto;
}

.news-and-events-style .post-list-section .blog-post-list-flex .post-container .post-content {
    padding: 28px 38px 91px 38px;
}

.blog-post-list.news-and-events-style .pagination.pagination-mobile {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.blog-post-list.news-and-events-style .filter .filter-style .selected svg {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-left: 5px;
}

.blog-post-list.news-and-events-style .filter .filter-style .selected svg path {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-post-list.news-and-events-style .filter .filter-style .selected:hover svg path,
.blog-post-list.news-and-events-style .filter .filter-style .selected.changed svg path {
    stroke: #292D34;
}

.filter .filter-style.no-child-cat ul {
    display: none;
}

@media (max-width: 1024px) {
    .news-and-events-style .post-list-section .blog-post-list-flex .post-container .post-content {
        padding: 20px 10px 60px 10px;
    }

    .news-and-events-style .blog-post-list-flex .post-container .post-content .post-excerpt {
        font-size: 16px;
        line-height: 25px;
        margin-top: 20px;
    }

    .news-and-events-style .blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read svg {
        margin-left: 10px;
    }

    .news-and-events-style  .blog-post-list-flex .post-container .post-content .post-bottom-section .btn-read {
        font-size: 14px;
    }

    .news-and-events-style .blog-post-list-flex .post-container .post-content .post-bottom-section .post-date {
        font-size: 14px;
    }

    .news-and-events-style .post-list-section .blog-post-list-flex .post-container .post-content .post-bottom-section {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .blog-post-list.news-and-events-style .pagination.pagination-desktop {
        display: none;
    }

    .blog-post-list.news-and-events-style .pagination.pagination-mobile {
        display: block;
        visibility: visible;
        opacity: 1;
    }
}

/* news and events page css end */

/* career section css */

.career-post-list .career-post-list-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.career-post-list .career-post-list-flex .career-post-item {
    margin-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
    width: 50%;
}

.career-post-item .career-post-container {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 25px #f1f2f6;
    -moz-box-shadow: 0px 0px 25px #f1f2f6;
    box-shadow: 0px 0px 25px #f1f2f6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 32px 36px 95px 36px;
    position: relative;
    height: 100%;
}

.career-post-item .career-post-container .title-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.career-post-item .career-post-container .title-container .feat-img {
    max-width: 86px;
    width: 100%;
}

.career-post-item .career-post-container .title-container .feat-img a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.career-post-item .career-post-container .title-container .feat-img a img {
    max-width: 86px;
    width: 100%;
    height: 86px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.career-post-item .career-post-container .title-container .title-section {
    max-width: -webkit-calc(100% - 86px);
    max-width: -moz-calc(100% - 86px);
    max-width: calc(100% - 86px);
    padding-left: 23px;
    width: 100%;
}

.career-post-item .career-post-container .title-container .title-section .post-name {
    display: block;
}

.career-post-item .career-post-container .title-container .title-section .post-name h2 {
    margin: 0;
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
    color: #292D34;
}

.career-post-item .career-post-container .title-container .title-section h3.career {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #616775;
    margin: 0;
}

.career-post-item .career-post-container .content {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #616775;
}

.career-post-item .career-post-container .content p:last-of-type {
    margin-bottom: 0;
}

.career-post-item .career-post-container .read-more {
    position: absolute;
    right: 36px;
    bottom: 38px;
}

.career-post-item .career-post-container .read-more a {
    width: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #292D34;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 0;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    background-color: transparent;
    font-family: "Lato", Sans-Serif;
}

.career-post-item .career-post-container .read-more a:hover {
    color: #FF8300;
}

.career-post-item .career-post-container .read-more a svg {
    width: 10px;
    height: 10px;
    margin-left: 20px;
}

.career-post-item .career-post-container .read-more a svg path {
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    -moz-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.career-post-item .career-post-container .read-more a:hover svg path {
    stroke: #FF8300;
}

@media (max-width: 992px) {
    .career-post-list .career-post-list-flex {
        padding-left: 10px;
        padding-right: 10px;
    }

    .career-post-list .career-post-list-flex .career-post-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .career-post-item .career-post-container {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }

    .career-post-item .career-post-container .title-container .title-section {
        padding-left: 10px;
    }

    .career-post-item .career-post-container .title-container {
        margin-bottom: 30px;
    }

    .career-post-item .career-post-container .read-more {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .career-post-list .career-post-list-flex {
        padding-left: 20px;
        padding-right: 20px;
    }

    .career-post-list .career-post-list-flex .career-post-item {
        padding-left: 0px;
        padding-right: 0px;
        width: 100%;
    }

    .career-post-item .career-post-container .title-container .title-section .post-name h2 {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 5px;
    }

    .career-post-item .career-post-container .title-container .title-section h3.career {
        font-size: 16px;
        line-height: 25px;
    }

    .career-post-item .career-post-container .content {
        font-size: 16px;
        line-height: 25px;
    }

    .career-post-item .career-post-container .title-container .feat-img {
        max-width: 76px;
    }

    .career-post-item .career-post-container .title-container .feat-img a img {
        max-width: 76px;
        height: 76px;
    }

    .career-post-item .career-post-container .title-container .title-section {
        max-width: -webkit-calc(100% - 76px);
        max-width: -moz-calc(100% - 76px);
        max-width: calc(100% - 76px);
    }

    .career-post-item .career-post-container {
        padding-bottom: 70px;
    }

    .career-post-item .career-post-container .read-more {
        bottom: 30px;
    }
}

/* career section css end */

/* jobs post list in about css */

.post-list-jobs {
    max-width: 100%;
    width: 100%;
}

.post-list-jobs .jobs-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.post-list-jobs .jobs-container .jobs-item {
    max-width: 270px;
    width: 100%;
    min-height: 100px;
}

.post-list-jobs .jobs-container .jobs-item a {
    display: block;
    width: 100%;
    background-color: #EAEDF3;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 20px 18px 15px 18px;
    text-align: center;
}

.post-list-jobs .jobs-container .jobs-item a h2 {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    color: #292D34;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    margin-top: 0;
    margin-bottom: 10px;
}

.post-list-jobs .jobs-container .jobs-item a h3 {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #616775;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    margin: 0;
}

.post-list-jobs .jobs-container .jobs-item a:hover h2,
.post-list-jobs .jobs-container .jobs-item a:hover h3 {
    color: #FF8300;
}

@media (max-width: 992px) {
    .post-list-jobs .jobs-container .jobs-item {
        max-width: 230px;
    }
}

@media (max-width: 767px) {
    .post-list-jobs .jobs-container .jobs-item {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .post-list-jobs .jobs-container .jobs-item:last-of-type {
        margin-bottom: 0;
    }

    .post-list-jobs .jobs-container .jobs-item a {
        width: 270px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* jobs post list in about css end */

/* career single page css */

.career-single-content .career-single-container {
    display: block;
}

.career-single-content .career-img-container {
    float: left;
    padding: 15px 100px 25px 15px;
    text-align: center;
}

.career-single-content .career-img-container img {
    max-width: 216px;
    width: 100%;
    height: 216px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.career-single-content .career-img-container h3 {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    color: #292D34;
    margin: 40px auto 0 auto;
    max-width: 216px;
    width: 100%;
}

.career-single-content .career-img-container h4 {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    color: #616775;
    max-width: 216px;
    width: 100%;
    margin: 0px auto;
}

.career-single-content .career-content-container h2.slice-story {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    color: #292D34;
    margin-top: 0;
    margin-bottom: 28px;
}

.career-single-content .career-content-container h2 {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #292D34;
    margin-top: 25px;
    margin-bottom: 25px;
}

.career-single-content .career-content-container p {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #616775;
    margin-bottom: 25px;
}

.career-single-content .career-content-container p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .career-single-content .career-img-container {
        padding: 15px 30px 25px 0px;
    }
}

@media (max-width: 767px) {
    .career-single-content .career-single-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .career-single-content .career-single-container > div {
        width: 100%;
        float: none;
        padding: 0;
    }

    .career-single-content .career-img-container h3 {
        font-size: 16px;
        margin-top: 20px;
        line-height: 25px;
    }

    .career-single-content .career-img-container h4 {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 50px;
    }

    .career-single-content .career-content-container h2.slice-story {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .career-single-content .career-content-container h2 {
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 30px;
    }

    .career-single-content .career-content-container p {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 15px;
    }
}

/* career single page css end */

/* case study main page css */

.blog-post-list.case-study-style .filter-navigation.fl-items {
    max-width: 735px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-list.case-study-style .filter-navigation.fl-items .col-1.filter-col {
    width: 100%;
}

.blog-post-list.case-study-style .filter-navigation.fl-items .col-1.filter-col .filter-style {
    margin-top: 0;
    max-width: -webkit-calc(50% - 8px);
    max-width: -moz-calc(50% - 8px);
    max-width: calc(50% - 8px);
}

.blog-post-list.case-study-style .filter-navigation.fl-items .col-1.filter-col .filter-style .categories {
    max-width: 100%;
}

.case-post-item {
    margin-top: 150px;
    width: 100%;
}

.case-post-item .case-post-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.case-post-item .case-post-container > div {
    width: 50%
}

.case-post-item .excerpt-container .case-post-title {
    display: block;
    max-width: 476px;
    width: 100%;
}

.case-post-item .excerpt-container .case-post-title h3 {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 35px;
    color: #292D34;
    margin-bottom: 20px;
    margin-top: 0;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    max-width: 390px;
    width: 100%;
}

.case-post-item .excerpt-container .excerpt-content {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #616775;
    max-width: 366px;
    width: 100%;
    margin-bottom: 30px;
}

.case-post-item .excerpt-container .excerpt-content p {
    margin-bottom: 0;
}

.case-post-item .excerpt-container .btn-read {
    width: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #292D34;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 0;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    background-color: transparent;
}

.case-post-item .excerpt-container .btn-read svg {
    width: 10px;
    height: 10px;
    margin-left: 20px;
}

.case-post-item .excerpt-container .btn-read svg path {
    -webkit-transition: stroke 0.3s;
    -o-transition: stroke 0.3s;
    -moz-transition: stroke 0.3s;
    transition: stroke 0.3s;
}

.case-post-item .excerpt-container .btn-read:hover {
    color: #FF8300;
}

.case-post-item .excerpt-container .btn-read:hover svg path {
    stroke: #FF8300;
}

.case-post-list .col-1.post-list-col {
    width: 100%;
}

.case-post-item .excerpt-container .case-post-title h3:hover {
    color: #FF8300;
}

.heading-container .heading-content-container {
    position: relative;
    max-width: 424px;
    width: 100%;
    z-index: 2;
}

.heading-container .heading-content-container .relative-container {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -32px;
}

.heading-container .heading-content-container.logo-content-container:after {
    content: "";
    display: block;
    background-color: #F1F2F6;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    top: -38px;
    right: 10px;
    z-index: 0;
    width: 247px;
    height: 251px;
    position: absolute;
}

.heading-container .heading-content-container .circle-title {
    position: relative;
    width: 100%;
    display: flex;
}

.heading-container .heading-content-container .circle-title:after {
    content: "";
    display: block;
    background-color: #F1F2F6;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    top: -38px;
    right: 10px;
    z-index: 0;
    width: 247px;
    position: absolute;
    height: -webkit-calc(100% + 76px);
    height: -moz-calc(100% + 76px);
    height: calc(100% + 76px);
}

.heading-container .heading-content-container h2 {
    padding: 35px 75px 35px 36px;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #FFF;
    -webkit-box-shadow: -39px 40px 89px #eef0f4;
    -moz-box-shadow: -39px 40px 89px #eef0f4;
    box-shadow: -39px 40px 89px #eef0f4;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: #292D34;
    display: inline-block;
    text-align: left;
    max-width: 387px;
    margin-right: 92px;
    position: relative;
    z-index: 1;
    min-width: 278px;
}

.heading-container .case-content-container {
    width: 170px;
    height: 170px;
    position: absolute;
    right: 7px;
    top: -92px;
    z-index: 2;
}

.heading-container .case-content-container .circle-text {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-52%, -55%);
    -moz-transform: translate(-52%, -55%);
    -ms-transform: translate(-52%, -55%);
    -o-transform: translate(-52%, -55%);
    transform: translate(-52%, -55%);
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.heading-container .case-content-container h3 {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 35px;
    color: #292D34;
    margin: auto;
    max-width: 87px;
    width: 100%;
}

.heading-container .line-color {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 48% 46%;
    -moz-transform-origin: 48% 46%;
    -ms-transform-origin: 48% 46%;
    -o-transform-origin: 48% 46%;
    transform-origin: 48% 46%;
}

.case-post-container .excerpt-container {
    padding-left: 10px;
}

.case-post-item.reversed-column .case-post-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.case-post-item.reversed-column .case-post-container .excerpt-container {
    padding-left: 75px;
}

.reversed-column .heading-container .heading-content-container {
    max-width: 100%;
}

.reversed-column .heading-container .heading-content-container .relative-container {
    margin-left: 0;
    margin-right: -32px;
}

.reversed-column .heading-container .heading-content-container h2 {
    max-width: 424px;
    margin-right: auto;
    margin-left: 87px;
    padding-right: 30px;
    padding-left: 75px;
}

.reversed-column .heading-container .case-content-container {
    right: unset;
    left: 6px;
}

.reversed-column .heading-container .heading-content-container.logo-content-container:after {
    left: 64px;
    right: unset;
    width: 299px;
}

.reversed-column .heading-container .heading-content-container .circle-title:after {
    left: 64px;
    right: unset;
    width: 299px;
}

.case-post-item .case-post-container .heading-container {
    position: relative;
}

.case-post-item .case-post-container .heading-container:after {
    content: "";
    display: none;
    position: absolute;
    width: 429px;
    height: 318px;
    background-image: url('/wp-content/uploads/2022/04/Mask-Group.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    left: 40px;
    bottom: -90px;
}

.case-post-item.reversed-column .case-post-container .heading-container:after {
    background-image: url('/wp-content/uploads/2022/04/Mask-Group-6.svg');
    left: -50px;
    bottom: -110px;
}

.case-post-item .case-post-container.dots-active .heading-container:after,
.case-post-item.reversed-column .case-post-container.dots-active .heading-container:after {
    display: block;
}

.heading-container .heading-content-container.logo-content-container .relative-container .heading-logo {
    max-width: 300%;
    padding: 32px;
    background: #FFFFFF;
    -webkit-box-shadow: -39px 40px 89px #EEF0F4;
    -moz-box-shadow: -39px 40px 89px #EEF0F4;
    box-shadow: -39px 40px 89px #EEF0F4;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin-left: auto;
    margin-right: 92px;
}

.reversed-column .heading-container .heading-content-container.logo-content-container .relative-container .heading-logo {
    margin-left: 30px;
    margin-right: auto;
}

.reversed-column .heading-container .heading-content-container.logo-content-container .relative-container img {
    width: auto;
    max-width: 100%;
}

.reversed-column .heading-container .heading-content-container.logo-content-container:after {
    width: 247px;
    height: 190px;
    right: 85px;
    left: unset;
}

.spec-css .heading-container .heading-content-container h2 {
    min-width: 278px;
    margin-left: 72px;
}

.errors-0 .line-color {
    display: none;
}

.errors-0.reversed-column .heading-container .heading-content-container h2 {
    min-width: 219px;
    text-align: center;
}

.errors-0.reversed-column .heading-container .heading-content-container .circle-title:after {
    width: 212px;
}

.heading-container .case-content-container.percent-0 h3 {
    font-weight: 400;
    font-size: 70px;
}

.errors-0 .heading-container .heading-content-container .relative-container {
    margin-left: 40px;
}

.errors-0 .heading-container .heading-content-container h2 {
    min-width: 260px;
}

.blog-post-list.case-study-style .blog-post-list-flex .sorry {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .blog-post-list.case-study-style .filter .filter-style.case-industry-filter .selected.active + ul {
        -webkit-border-top-left-radius: 10px;
        -moz-border-radius-topleft: 10px;
        border-top-left-radius: 10px;
    }

    .blog-post-list.case-study-style .filter .filter-style.case-industry-filter ul {
        left: unset;
        right: 0;
    }

    .blog-post-list.case-study-style .filter .filter-style.case-industry-filter .selected:before {
        right: unset;
        left: -21px;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .heading-container .heading-content-container .relative-container {
        margin-left: 0;
    }

    .reversed-column .heading-container .heading-content-container .relative-container {
        margin-right: 0;
    }

    .case-post-list.post-list-section .blog-post-list-flex {
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .case-post-item.reversed-column .case-post-container .excerpt-container {
        padding-left: 0;
    }

    .heading-container .heading-content-container h2 {
        font-size: 28px;
        line-height: 38px;
        padding: 30px 20px;
        max-width: 335px;
        margin-right: 78px;
    }

    .reversed-column .heading-container .heading-content-container h2 {
        margin-left: 70px;
    }

    .reversed-column .heading-container .case-content-container {
        left: 0;
    }

    .heading-container .case-content-container {
        right: 0;
        top: -100px;
        width: 150px;
        height: 150px;
    }

    .heading-container .case-content-container svg {
        width: 150px;
        height: 150px;
    }

    .heading-container .case-content-container .circle-text {
        width: 150px;
        height: 150px;
    }

    .heading-container .case-content-container h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .case-post-item .case-post-container .heading-container:after {
        width: 329px;
        height: 218px;
    }

    .case-post-item.reversed-column .case-post-container .heading-container:after {
        left: 0px;
        bottom: -50px;
    }

    .reversed-column .heading-container .heading-content-container .circle-title:after {
        width: 220px;
        left: 30px;
    }

    .heading-container .heading-content-container .circle-title:after {
        width: 220px;
        right: 30px;
    }

    .spec-css .heading-container .heading-content-container h2 {
        min-width: auto;
        margin-left: 0;
    }

    .spec-css .heading-container .heading-content-container h2 br {
        display: none;
    }

    .heading-container .heading-content-container.logo-content-container .relative-container .heading-logo {
        margin-left: 0px;
    }

    .errors-0 .heading-container .heading-content-container .relative-container {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .blog-post-list.case-study-style .filter-navigation.fl-items .col-1.filter-col .filter-style {
        margin-top: 0;
        max-width: -webkit-calc(50% - 10px);
        max-width: -moz-calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .case-post-item .case-post-container.dots-active .heading-container:after,
    .case-post-item.reversed-column .case-post-container.dots-active .heading-container:after {
        display: none;
    }

    .case-post-item .case-post-container > div {
        width: 100%;
    }

    .heading-container .heading-content-container {
        max-width: 335px;
        margin: 0 auto;
    }

    .heading-container .heading-content-container h2 {
        width: 100%;
        max-width: 300px;
        margin-right: 0;
    }

    .heading-container .heading-content-container .circle-title:after {
        width: 200px;
        right: -30px;
        left: auto;
        bottom: -15px;
        top: unset;
        height: 210px;
    }

    .case-post-container .excerpt-container {
        position: relative;
        z-index: 2;
        padding: 0;
        margin-top: 35px;
    }

    .case-post-item .excerpt-container .case-post-title h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .case-post-container .excerpt-container {
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .reversed-column .heading-container .heading-content-container {
        max-width: 335px;
    }

    .reversed-column .heading-container .heading-content-container h2 {
        margin-left: 0;
        max-width: 300px;
        padding-right: 40px;
        padding-left: 20px;
    }

    .reversed-column .heading-container .heading-content-container .circle-title:after {
        width: 200px;
        right: -30px;
        left: auto;
        bottom: -15px;
        top: unset;
        height: 210px;
    }

    .heading-container .case-content-container {
        right: -7px;
        top: -90px;
    }

    .reversed-column .heading-container .case-content-container {
        right: -7px;
        left: unset;
    }

    .reversed-column .heading-container .case-content-container {
        padding-right: 40px;
    }

    .heading-container .heading-content-container.logo-content-container .relative-container .heading-logo {
        margin-left: 0;
        padding: 30px 20px;
        width: 100%;
        max-width: 300px;
    }

    .heading-container .heading-content-container.logo-content-container .relative-container .heading-logo img {
        width: 100%;
    }

    .reversed-column .heading-container .heading-content-container.logo-content-container:after {
        width: 200px;
        right: 10px;
        left: auto;
        bottom: -15px;
        top: unset;
        height: 210px;
    }

    .circle-title {
        max-width: 300px;
        width: 100%;
    }

    .errors-0.reversed-column .heading-container .heading-content-container h2 {
        min-width: auto;
        text-align: left;
    }

    .reversed-column .heading-container .heading-content-container.logo-content-container .relative-container .heading-logo {
        margin-left: 0;
    }
}

/* case study main page css end */

/* jobs css */

.job-open-customization .awsm-job-wrap .awsm-jobs-pagination {
    display: none;
}

.job-open-customization .awsm-job-search::-webkit-input-placeholder {
    opacity: 0;
}

.job-open-customization .awsm-job-search::-moz-placeholder {
    opacity: 0;
}

.job-open-customization .awsm-job-search:-ms-input-placeholder {
    opacity: 0;
}

.job-open-customization .awsm-job-search:-moz-placeholder {
    opacity: 0;
}

.job-open-customization .awsm-filter-wrap {
    margin: 0 0 30px 0;
}

.job-open-customization .awsm-filter-wrap form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-item-search {
    max-width: 370px;
    margin-left: 50px;
    min-height: 50px;
    width: 100%;
    padding: 0;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items {
    max-width: 523px;
    min-height: 50px;
    width: 100%;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item {
    padding: 0;
    max-width: 256px;
    width: 100%;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item:last-of-type {
    margin-left: 11px;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric {
    height: 50px;
    border-radius: 10px;
    padding: 6px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background-color: #EAEDF3;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
    border: none;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric:hover,
.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric-open .awsm-selectric {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 25px #f1f2f6;
    box-shadow: 0px 0px 25px #f1f2f6;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric .label {
    font-family: "Lato", Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    color: #292D34;
    height: auto;
    margin: 0;
    width: calc(100% - 18px);
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric .awsm-selectric-arrow-drop {
    display: none;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric:before {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-image: url('/wp-content/themes/hello-child/assets/img/arrow-bottom.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 17px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    content: "";
    display: block;
    width: 13px;
    height: 12px;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric-open .awsm-selectric:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 20px;
}

.job-open-customization .awsm-selectric-awsm-filter-option {
    position: relative;
    -webkit-filter: drop-shadow(0px 0px 25px #F1F2F6);
    filter: drop-shadow(0px 0px 25px #F1F2F6);
    z-index: 9;
}

.job-open-customization .awsm-selectric-items {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    left: 0;
    width: calc(100% + 114px) !important;
    padding: 16px 20px;
    list-style: none;
    background: #fff;
    top: 60px;
    z-index: 11;
    margin: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 10px 10px 10px 10px;
    border: none;
    /*filter: drop-shadow(0px 0px 25px #F1F2F6);*/
}

.job-open-customization .awsm-selectric-items:after {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -15px;
    width: 256px;
    height: 30px;
    background-color: #FFF;
}

.job-open-customization .awsm-selectric-items:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    left: 246px;
    top: -20px;
    background-image: url(../img/Union.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.job-open-customization .awsm-selectric-open .awsm-selectric-items {
    pointer-events: auto;
    opacity: 1;
    border-top-left-radius: 0;
}

.job-open-customization .awsm-selectric-open .awsm-selectric-items:after,
.job-open-customization .awsm-selectric-open .awsm-selectric-items:before {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric-open .awsm-selectric {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.job-open-customization .awsm-selectric-items ul li {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    color: #292D34;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer;
    background-color: transparent;
    backround: transparent;
    padding: 0 !important;
}

.job-open-customization .awsm-selectric-items ul li:hover {
    color: #FF8300;
}

.job-open-customization .awsm-filter-item-search .awsm-sr-only {
    font-size: 0;
}

.job-open-customization .awsm-job-form-plugin-style .awsm-job-form-control {
    height: 50px;
    width: 100%;
    border-radius: 10px;
    background-color: #EAEDF3;
    border: none;
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    color: #292D34;
    padding: 6px 125px 6px 45px;
}

.job-open-customization .awsm-filter-item-search-in:after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 15px;
    width: 21px;
    height: 21px;
    background-image: url(../img/Loop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.job-open-customization .awsm-filter-item-search-in .awsm-job-search-btn {
    width: 91px;
    background-color: #FF8300;
    border-radius: 10px;
    padding: 6px 11px;
    z-index: 2;
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    color: #292D34;
    border: 2px solid #ff8300;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    height: 50px;
    cursor: pointer;
}

.job-open-customization .awsm-filter-item-search-in .awsm-job-search-btn.awsm-job-hide {
    display: block !important;
}

.job-open-customization .awsm-filter-item-search-in .awsm-job-search-btn:hover {
    background-color: #EAEDF3;
    color: #292D34;
}

.job-open-customization .awsm-filter-item-search-in .awsm-job-search-btn i {
    display: none;
}

.job-open-customization .awsm-filter-item-search-in .awsm-job-search-btn:after {
    content: "Search";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.job-open-customization .awsm-job-listings {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: unset;
    flex-flow: unset;
    margin: 0;
}

.job-open-customization .awsm-job-listings .awsm-grid-item {
    width: 33.333%;
    padding-right: 20px !important;
    padding-left: 20px !important;
    margin-top: 20px;
    float: unset;
    display: block;
}

.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item {
    max-width: 335px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 28px 34px 85px 38px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 25px #f1f2f6;
    box-shadow: 0px 0px 25px #f1f2f6;
    border-radius: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    font-family: "Lato", Sans-Serif;
    position: relative;
    border: none;
    margin-bottom: 0;
}

.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item:hover {
    background-color: #292D34;
}

.job-open-customization .awsm-job-listings .awsm-job-post-title {
    font-family: 'Roboto Slab', Sans-Serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #292D34;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.job-open-customization .awsm-job-listings .awsm-job-specification-wrapper span {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #616775;
    margin: 0;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item:hover .awsm-job-post-title,
.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item:hover .awsm-job-specification-wrapper span {
    color: #FFF;
}

.job-open-customization .awsm-job-listings .awsm-job-more-container {
    position: absolute;
    text-align: right;
    right: 66px;
    bottom: 30px;
}

.job-open-customization .awsm-job-listings .awsm-job-more-container .awsm-job-more {
    font-family: 'Lato', Sans-Serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #292D34;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
}

.job-open-customization .awsm-job-listings .awsm-job-more-container .awsm-job-more span:before {
    content: "";
    display: block;
    background-image: url('/wp-content/uploads/2022/06/More-Details.svg');
    width: 12px;
    height: 12px;
    position: absolute;
    right: -32px;
    bottom: 3px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.job-open-customization .awsm-job-listings .awsm-job-more-container .awsm-job-more span:after {
    content: "";
    display: block;
    background-image: url('/wp-content/uploads/2022/06/More-Details-yellow.svg');
    width: 12px;
    height: 12px;
    position: absolute;
    right: -32px;
    bottom: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item:hover .awsm-job-more {
    color: #FF8300;
}

.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item:hover .awsm-job-more span:after {
    visibility: visible;
    opacity: 1;
}

.job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item:hover .awsm-job-more span:before {
    visibility: hidden;
    opacity: 0;
}

.job-open-customization .awsm-filter-item-search .awsm-job-search-close-btn {
    right: 91px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
}

.job-open-customization .awsm-job-icon-close-circle:before {
    content: "";
    display: block;
    background-image: url('/wp-content/themes/hello-child/assets/img/close icon.svg');
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@media (max-width: 992px) {
    .job-open-customization .awsm-filter-wrap form .awsm-filter-items {
        max-width: 461px;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item {
        max-width: 225px;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-item-search {
        margin-left: 11px;
        max-width: 256px;
    }

    .job-open-customization .awsm-filter-item-search-in .awsm-job-search-btn {
        width: 75px;
    }

    .job-open-customization .awsm-filter-item-search .awsm-job-search-close-btn {
        right: 73px;
    }

    .job-open-customization .awsm-job-form-plugin-style .awsm-job-form-control {
        padding-right: 108px;
    }

    .job-open-customization .awsm-job-listings .awsm-job-post-title {
        font-size: 18px;
    }

    .job-open-customization .awsm-job-listings .awsm-job-specification-wrapper span {
        font-size: 16px;
    }

    .job-open-customization .awsm-selectric-items:after {
        width: 225px;
    }

    .job-open-customization .awsm-selectric-items:before {
        left: 215px;
    }

    .job-open-customization .awsm-job-listings .awsm-grid-item {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item {
        padding: 30px 20px 70px 20px;
    }

    .job-open-customization .awsm-job-listings .awsm-job-more-container {
        right: 52px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .job-open-customization .awsm-filter-toggle {
        display: none;
    }

    .job-open-customization .awsm-job-wrap {
        max-width: 335px;
        width: 100%;
        margin: 0 auto;
    }

    .job-open-customization .awsm-filter-wrap form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item {
        max-width: calc(50% - 10px);
        margin: 0;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item:last-of-type {
        margin-left: 0;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric {
        min-width: 100%;
        padding: 6px 10px;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric .label {
        font-size: 14px;
        line-height: 38px;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-items .awsm-filter-item .awsm-selectric:before {
        right: 10px;
    }

    .job-open-customization .awsm-selectric-items {
        padding: 10px;
        width: 335px !important;
    }

    .job-open-customization .awsm-selectric-items ul li {
        font-size: 14px;
    }

    .job-open-customization .awsm-selectric-items:after {
        width: 158px;
    }

    .job-open-customization .awsm-selectric-items:before {
        left: 148px;
    }

    .job-open-customization .awsm-filter-item:nth-child(2) .awsm-selectric-items {
        left: -178px;
    }

    .job-open-customization .awsm-filter-item:nth-child(2) .awsm-selectric-items:after {
        right: 0;
        left: unset;
    }

    .job-open-customization .awsm-filter-item:nth-child(2) .awsm-selectric-items:before {
        left: 157px;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .job-open-customization .awsm-filter-item:nth-child(2) .awsm-selectric-items {
        border-top-left-radius: 10px;
    }

    .job-open-customization .awsm-filter-wrap form .awsm-filter-item-search {
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
    }

    .job-open-customization .awsm-job-listings .awsm-grid-item {
        padding: 0 !important;
        width: 100%;
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }

    .job-open-customization .awsm-job-listings .awsm-grid-item .awsm-job-item {
        min-height: 250px;
    }
}

/* jobs css end */