/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# reset css
# blog css
# comment css
# Components
# single post item
# post-pagination
# mailchimp form
# Elmentor tweaks
# qweb case study
# 404 page css
# job
# job list css
# login form css
*/

#scroll {
    border-radius: 50%;
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color-2);
    text-indent: -9999px;
    display: none;
    z-index: 10;
}
#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

/* PRELOADER CSS  */
.qweb-preloader-wrap {
    position: fixed;
    z-index: 1222;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qweb-preloader {
    display: inline-block;
    position: relative;
    width: 74px;
    height: 100px;
    align-items: center;
    justify-content: center;
}

.qweb-preloader div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--accent-color-2);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.qweb-preloader div:nth-child(1) {
    left: 8px;
    animation: qweb-preloader1 0.6s infinite;
}

.qweb-preloader div:nth-child(2) {
    left: 8px;
    animation: qweb-preloader2 0.6s infinite;
}

.qweb-preloader div:nth-child(3) {
    left: 32px;
    animation: qweb-preloader2 0.6s infinite;
}

.qweb-preloader div:nth-child(4) {
    left: 56px;
    animation: qweb-preloader3 0.6s infinite;
}

@keyframes qweb-preloader1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes qweb-preloader3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes qweb-preloader2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/* preloader end  */

body {
    font-family: var(--body-font);
    font-weight: 400;
    overflow-x: hidden;
}

:focus {
    outline: none;
}

.page .content-block .container {
    max-width: 1140px;
}

/* blog css */
footer.footer-section {
    position: relative;
    z-index: 5;
}
header {
    position: relative;
    z-index: 5;
}

.content-block .entry-title {

    /* Style for "How To Blo" */
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.post-details-page a {
    color: var(--accent-color);
}

.nav-links .nav-subtitle {
    color: var(--accent-color);
    display: block;
    margin-bottom: 16px;
    font-weight: 400;
}

.nav-links .nav-title {
    font-size: 17px;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links .nav-previous .nav-title {
    padding-left: 40px;
}

.nav-links .nav-next .nav-title {
    padding-right: 40px;
}
.nav-links a {
    text-decoration: none;
    position: relative;
}

.nav-links .nav-title svg {
    width: 33px;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

.nav-links .nav-previous .nav-title svg {
    margin-right: 15px;
    left: 0;
}

.nav-links .nav-next .nav-title svg {
    right: 0;
}

.nav-links .nav-previous {
    padding-right: 10px;
}

.nav-links .nav-next {
    padding-left: 10px;
}

.entry-footer span.tags-links {
    border-top: 1px solid #E7E9ED;
    padding-top: 40px;
}
.nav-links .nav-previous span.nav-subtitle {padding-left: 40px;}

.nav-links .nav-next span.nav-subtitle {
    padding-right: 40px;
}
.entry-content blockquote a {
    text-decoration: underline;
}


.content-block .entry-header {
    margin-bottom: 50px;
}

.post-details-page .post-thumbnail img {
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.post-details-page .entry-content {
    padding-right: 50px;
    margin-bottom: 50px;
}
.entry-content:after {
    display: block;
    clear: both;
    content: "";
}

.entry-content p {
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 16px;
    color: var(--text-color);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 15px;
}

.entry-meta>span {
    padding-left: 10px;
    position: relative;
    margin-right: 10px;
}

.entry-meta>span:after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--text-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translatey(-50%);
}

.entry-meta>span:first-child {
    padding-left: 0;
}

.entry-meta>span:first-child:after {
    display: contents;
}

.entry-meta a,
.entry-meta span {

    color: #6E727D;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 32px;
}


footer.entry-footer a {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: var(--text-color);
    background: #EAE9F2;
    border-radius: 5px;
    padding: 10px 13px 10px 14px;
}

.widget-title {
    /* Style for "Recent Pos" */
    /* Semi Bold / 20 */
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.widget_rss .widget-title a {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.315;
    margin-bottom: 0;
}

.widget_rss ul li {
    border-bottom: 1px solid #eae9f2;
    margin-bottom: 17px !important;
    padding-bottom: 20px;
}

.widget_rss .rssSummary {
    margin: 12px 0;
    color: var(--text-color);
}

.widget_rss cite {
    font-weight: 500;
    color: var(--text-color);
}
.widget strong{
    color: var(--text-color);
}
.widget_rss span.rss-date {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    color: var(--text-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget {
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget ul li {
    border-bottom: 1px solid rgba(4, 37, 82, 0.1);
    padding: 15px 1px;
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}

.widget_rss ul li:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.widget ul li:last-child {
    border: none;
    padding-bottom: 0;
}

.widget ul li:first-child {
    padding-top: 0;
}

.widget .post-date {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
}
.qweb_recent_posts_Widget .post-item {
    border-bottom: 1px solid rgba(4, 37, 82, 0.1);
    padding: 0 0px 20px 0px;
    margin: 30px 0px;
}
.widget.qweb_recent_posts_Widget .post-date {
    margin-bottom: 5px;
    display: block;
}
.blog-sidebar-single-wrapper .wp-block-categories-list li {
    border-bottom: 0 !important;
    padding: 0px 0px 10px 0px;
    color: var(--white-bg);
}
.row.blog-content-row {
    justify-content: center;
}
.qweb_recent_posts_Widget .post-item:last-child{
    border-bottom: 0;
}
.widget a:hover {
    color: var(--accent-color);
}
.wp-block-tag-cloud a {
    color: var(--text-color) !important;
    display: inline-block;
    margin: 20px 0px 0px 10px !important;
    font-size: 16px !important;
    line-height: 24px !IMPORTANT;
    border: 0.5px solid var(--text-color);
    border-radius: 50px;
    padding: 8px 30px 8px 30px;
}
.wp-block-tag-cloud a:hover {
    background: #FFAF2A;
    color: #fff !important;
    border: 1px solid #FFAF2A;
}

.right-sidebar .widget-area {
    border-radius: 5px;
    padding: 0px 0px 0px 10px;
}
.widget h2 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    color: var(--heading-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
}
.widget-area .nice-select {
    line-height: 35px;
}
.widget-area .nice-select .list {
    width: 100%;
}
.left-sidebar .widget-area {
    margin-right: 70px;
}
.textwidget img {
    margin: 5px 0;
}
.search-form input#search {
    height: 71px;
    width: 100%;
    padding: 0 25px 0 60px;
    color: var(--text-color);
    border: none;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
}

.search-form button[type=submit] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: transparent;
    border: none;
    color: var(--accent-color);
    width: auto;
    cursor: pointer;
    padding: 0 24px;
    font-size: 19px;
}

.search-form {
    position: relative;
}

.search-form input#search {
    width: 100%;
}

.search-form button[type=submit] svg path {
    fill: var(--accent-color);
}

.widget .post-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin: 0px 0px 10px 0px;
}

.widget .post-text {
    margin-bottom: 0;
}

.widget.qweb_recent_posts_Widget a {
    display: block;
    margin-bottom: 10px;
}
.widget a, .widget ul li a {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0px;
    font-family: 'DM Sans';
}
li.wp-block-latest-comments__comment:last-child {
    margin-bottom: 0 !important;
}
ol.wp-block-latest-comments {
    margin-bottom: 0;
}
.widget a:hover {
    color: #FFAF2A;
}
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 26px;
}
.widget_recent_entries.widget ul li a {
    display: block;
}

.widget.widget_recent_entries ul li span.post-date {
    display: block;

    /* Style for "Jan 14, 20" */
    color: var(--ূাংূ-color);
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
}


ul.wp-block-categories-list.wp-block-categories li {
    display: flex;
    justify-content: space-between;
}
li.recentcomments .comment-author-link {
    color: var(--white-bg);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.57;
}

.widget.widget_recent_entries ul li, .widget.widget_recent_comments ul li {
    border-bottom: 1px solid rgba(4, 37, 82, 0.1);
}
.widget.widget_recent_entries ul li:last-child,
.widget.widget_recent_comments ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#wp-calendar #today a {
    color: var(--accent-color);
}

#wp-calendar #today {
    background-color: #EFF0F4;
}

#wp-calendar th {
    background-color: #EFF0F4;
}

#wp-calendar caption {
    caption-side: top;
    text-align: center;
    color: var(--white-bg);
    font-weight: 400;
    padding: 14px 0;
}

table#wp-calendar {
    margin-bottom: 0;
}

nav.wp-calendar-nav {
    margin-bottom: -41px;
    margin-top: 0;
}

div#calendar_wrap {
    display: flex;
    flex-direction: column-reverse;
}

span.wp-calendar-nav-next {
    float: right;
}

nav.wp-calendar-nav a {
    font-size: 15px;
    margin-bottom: 4px;
}

.widget table td.has-calendar-link {
    background-color: var(--accent-color);
}

.widget table td.has-calendar-link a {
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.widget .textwidget form br {
    display: none;
}
.wp-calendar-table td,
.wp-calendar-table th {
    text-align: center;
    font-size: 14px;
}

.widget {
    background: transparent;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 25px 25px 30px 25px;
    background: rgba(4, 37, 82, 0.03);
}
.widget.widget_block {
    padding: 25px 25px 30px 25px;
    background: rgba(4, 37, 82, 0.03);
}
.widget.qweb_recent_posts_Widget {
    padding: 0;
    background: transparent;
}

.widget.widget_block:last-child {
    padding-bottom: 35px;
}
table {
    width: 100%;
}

table thead tr:first-child,
table tbody tr:first-child {
    border-top: 1px solid #dcdcdc;
}

table thead tr,
table tbody tr {
    border-bottom: 1px solid #dcdcdc
}

table thead tr th,
table thead tr td,
table tbody tr th,
table tbody tr td {
    border-right: 1px solid #dcdcdc;
    padding: 10px;
    background: #fff;
}

.widget table td.has-calendar-link a {
    color: #fff;
}

table thead tr th:first-child,
table thead tr td:first-child,
table tbody tr th:first-child,
table tbody tr td:first-child {
    border-left: 1px solid #dcdcdc;
}

table tfoot tr td#prev,
table tfoot tr td#next {
    content: var(--accent-color-2);
    padding: 15px;
}

table tfoot tr td#prev a,
table tfoot tr td#next a {
    color: var(--accent-color);
}

table tfoot tr td#prev a:hover,
table tfoot tr td#next a:hover {
    color: var(--accent-color);
}

.widget .tagcloud a {
    padding: 7px 16px;
    margin-right: 6px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-style: normal;
    font-weight: normal;
    font-size: 15px !important;
    line-height: 1.6;
    border: 0.5px solid var( --text-color);
    border-radius: 3px;
    display: inline-block;
}

.widget .tagcloud a:hover {
    color: #fff;
    background-color: var(--accent-color);
}

.tags-links>strong,
.cat-links>strong {
    margin-right: 10px;
}
footer.entry-footer .cat-links strong {
    display: none;
}
.single footer.entry-footer {
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}
.single-post-content-wrap h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 30px !IMPORTANT;
}

.single .entry-footer span.edit-link {
    min-width: 100%;
    text-align: right;
}

.cat-links>strong,
.tags-links strong {
    left: 0;
    top: 0;
    line-height: 40px;
}

.entry-footer span.cat-links,
.entry-footer .tags-links {
    position: relative;
    padding-left: 0;
    display: block;
    line-height: 48px;
}

.entry-footer span.cat-links {
    padding-bottom: 0;
    line-height: 40px;
    display: none;
}

 .single-post-content-wrap {
    padding: 0px 0px 0px 0px;
}

/* comment css */
.comment-respond {
    background: #FFFFFF;
    box-shadow: 0px 4px 60px rgb(13 89 239 / 6%);
    border-radius: 10px;
    padding: 40px;
    margin-top: 80px;
}

.comment-reply-title {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.25;
    font-family: 'Inter';
    letter-spacing: 0px;
}
#commentform .logged-in-as {
    margin-bottom: 30px;
}

label {
    /* Style for "Your name" */
    font-family: var(--body-font);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

#commentform textarea,
#commentform input:not([type=submit]):not([type=checkbox]) {
    border-radius: 0;
    border: none;
    background: rgba(4, 37, 82, 0.03);
    width: 100%;
    transition: .3s;
    margin-bottom: 0;
    border-radius: 10px;
}

textarea#comment {
    height: 143px;
    padding: 20px;
    box-sizing: border-box;
}

.comment-respond input#submit {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: .3s;
    width: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--body-font);
    letter-spacing: 0;
    min-width: 189px;
    min-height: 60px;
}

input#submit:hover {
    opacity: .9;
}

#commentform input:not([type=submit]):not([type=checkbox]) {
    height: 60px;
    padding: 0 20px;
    color: var(--text-color);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
}
#commentform input::placeholder {
    color: var(--text-color);
}
p.comment-form-author,
p.comment-form-email {
    display: block;
    width: 100%;
}
p.wp-block-tag-cloud a:last-child {
    margin-bottom: 0 !important;
}
p.comment-form-author {
    padding-right: 0;
}
.comment-form-cookies-consent label {
    display: inline;
    margin-bottom: 0;
}

#commentform textarea:focus,
#commentform input:not([type=submit]):not([type=checkbox]):focus {
    border-color: var(--accent-color);
}

.comment-list,
.comment-list .children {
    list-style: none;
}

ol.comment-list {
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.comment-list .comment,
ol.comment-list .trackback,
ol.comment-list .pingback {
    position: relative;
    margin-top: 15px;
    background-color: transparent;
    border-radius: 10px;
}

ol.comment-list .trackback .edit-link,
ol.comment-list .pingback .edit-link {
    margin-top: 0;
}

.comment-list .comment img.avatar.photo {
    border-radius: 50%;
    object-fit: cover;
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 17px;
    position: absolute;
    left: 30px;
    top: 30px;
}

.comment-list .comment .comment-author.vcard,
.comment-list .comment .comment-author.vcard a {
    color: var(--heading-color);
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 0.01em;
}

.comment-list .comment .comment-author.vcard cite.fn {
    font-style: normal !important;
}

.comment-list .comment .comment-meta.commentmetadata {
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
}

.comment-list .comment .reply {
    display: inline-block;
    order: 3;
    position: absolute;
    right: 30px;
    bottom: 30px;
}


.comment-list .comment .cld-like-wrap.cld-common-wrap a {
    color: var(--heading-color);
    transition: .3s ease-in-out;
}

.comment-list .comment .cld-like-wrap.cld-common-wrap a:hover {
    color: #e5e5e5;
}

.comment.parent .comment-body {
    margin-bottom: 15px;
}

.comment .comment-meta {
    overflow: hidden;
    margin-bottom: 21px;
}
.comment-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--text-color);
}
.comment-content {
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}


.comment-list .comment .comment-author.vcard b.fn {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--heading-color);
}

.children .comment .comment-body {
    border: none;
    margin-bottom: 0;
}

.comment-list .children {
    padding-left: 110px;
}
.comments-title {
    /* Style for "03 Respons" */
    color: var(--heading-color);
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.01em;
    margin-bottom: 42px;
}
ol.children ol.children {
    padding-left: 0 !important;
}
.comments-area {
    padding: 60px 0 0px 0px;
}

.qweb-comment-loadmore-btn {
    cursor: pointer;
    color: var(--accent-color);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.qweb-comment-loadmore-btn i,
.qweb-comment-loadmore-btn svg {
    margin-left: 30px;
}

.comment-metadata a {
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-top: 5px;
}

.comment-reply-title small {
    margin-left: 20px;
    font-size: 70%;
}

#commentform>p {
    margin-bottom: 30px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
}

#commentform> p.form-submit {
    margin-bottom: 0;
}

form#commentform {
    display: flex;
    flex-direction: column;
}

p.comment-form-email {
    order: -1;
}

p.comment-form-author {
    order: -1;
}

p.comment-notes {
    order: -3;
}

.tags-links a:not(:last-child):after,
.cat-links a:not(:last-child):after {
    content: ",";
}

.comment-list .comment .comment-author .says {
    display: none;
}

.comment-list .comment .comment-author.vcard b.fn:before {
    content: "-";
    margin-right: 5px;
    display: none;
}

.comment-list .comment .reply a {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: var(--accent-color-2);
}
.comment-list .comment .reply a:hover {
    color: var(--accent-color);
}

.comment-metadata .edit-link {
    margin-top: 0;
}

.comment-content p:last-child {
    margin-bottom: 15px;
}

.comment-list .comment .comment-body,
ol.comment-list .trackback,
ol.comment-list .pingback {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 10px 30px;
    position: relative;
    border-bottom: 1px solid #377cfd24;
}

.comment-list .comment .comment-body {
    padding-left: 140px;
    padding-top: 30px;
    display: flex;
    flex-direction: column-reverse;
    background: #FFFFFF;
    box-shadow: 0px 4px 60px rgb(13 89 239 / 6%);
    border-radius: 10px;
    border: 0;
}
.comment-list .comment .children .comment {
    box-shadow: unset;
    margin-bottom: 0;
}


p.comment-form-cookies-consent {
    display: flex;
    align-items: center;
}

input#wp-comment-cookies-consent {
    height: auto;
}




.comment-list .comment .comment img.avatar.photo {
    width: 50px;
    height: 50px;
}

.comment-list .comment .comment .comment-body {
    padding-left: 100px;
    background: #FFFFFF;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column-reverse;
}

.comment #commentform .logged-in-as {
    margin-bottom: 20px;
}

#commentform .logged-in-as,
#commentform .logged-in-as a {
    color: var(--text-color);
    font-weight: 450;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.01em;
}

.comment-list .comment:last-child .comment-body {
    border-bottom: none;
    padding-right: 30px;
}

.comment #commentform>p {
    margin-bottom: 15px;
}

.comment #commentform>p.comment-notes {
    margin-bottom: 25px;
}


/* single post item */


.single-post-item a.post-thumbnail {
    display: block;
}

.single-post-item a.post-thumbnail img {
    object-fit: cover;
    object-position: center top;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
}

.single-post-item .entry-title a {
    color: var(--heading-color);
}



.single-post-item p {
    margin-bottom: 30px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 16px;
    color: var(--text-color);
}
.single-post-item .post-meta {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.post-read-more a {
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    border: 0;
    padding: 12px 29px;
    border-radius: 4px;
    background: #1B3C74;
    transition: all 0.4s ease-in-out;
}
.post-read-more a i {
    margin-left: 8px;
    transition: all 0.4s ease-in-out;
}
.post-read-more a:hover {
   background: #FFAF2A;
}
.post-read-more a svg path {
    stroke: var(--heading-color);
}

.post-read-more a svg {
    width: 14px;
    transition: .4s;
    margin-left: 8px;
}

.post-read-more a:hover svg {
    transform: translatex(10px);
}

.post-read-more a svg path {
    stroke: var(--accent-color);
}

.single-post-item .post-meta i {
    color: var(--heading-color);
    margin-right: 10px;
    font-size: 14px;
}

.single-post-item {
    margin-bottom: 30px;
    background-color: var(--white-color);
    overflow: hidden;
    transition: .4s;
    border-radius: 10px;
    box-shadow: 0px 6px 60px rgba(4, 10, 31, 0.1);
}

.blog-breadcrumb {
    padding: 230px 0 140px;
    background: url(../img/inner-page-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(252, 221, 236, 0.6);
    margin-top: -100px;
}

.blog-breadcrumb:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100%;
    z-index: -1;
}

.blog-breadcrumb p.post__caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    margin-bottom: 0;
    padding: 0px 200px 30px 200px;
}

.blog-breadcrumb h1.post__title {
    margin-bottom: 25px;
    color: var(--white-bg);
    font-style: normal;
    font-weight: 600;
    font-size: 72px;
    line-height: 1.09;
    word-break: break-word;
}

.blog-breadcrumb .breadcrumbs, .blog-breadcrumb .breadcrumbs a, .blog-breadcrumb .breadcrumbs span {
    color: #B3C8F1;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.breadcrumbs .current a {
    color: #FFFFFF;
}
.blog-breadcrumb .breadcrumbs .sep {
    margin: 0 10px;
}

.blog-breadcrumb h1.post__title:last-child {
    margin-bottom: 0;
}

.sticky-text,
.sticky-category .sticky-text {
    content: "Sticky";
    padding: 3px 12px;
    background-color: var(--accent-color);
    color: var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0;
    z-index: 1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 400;
}

.single-post-item.case-study-item a.post-thumbnail {
    margin-bottom: 0;
}

.post-thumbnail img {
    object-position: center top;
}
.post-thumbnail-wrapper {
    position: relative;
}
.widget .post-item:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}
.single-post-item .post-meta>div {
    margin-right: 30px;
}

.single-post-item .post-meta>div:last-child {
    margin-right: 0;
}

.single-post-item .post-meta span, .single-post-item .post-meta a, .single-post-item .post-meta span time {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}



.single-post-item.two-column .post-meta,
.single-post-item.three-column .post-meta {
    color: var(--text-color);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
}

.single-post-item.two-column h2.entry-title, .single-post-item.three-column h2.entry-title {
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
}

.single-post-item.two-column p,
.single-post-item.three-column p {
    margin-bottom: 30px;
}

.content-block {
    padding-top: 130px;
    padding-bottom: 130px;
}


body.search {
    background-color: #f4f7fa;
}

.wp-block-search .wp-block-search__label {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    color: var(--heading-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
}

.single-post-item .post-content {
    padding: 30px 35px 30px 30px;
}


.single-post .post-meta {
    display: flex;
    margin-bottom: 25px;
    color: var(--text-color);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.53;
    flex-wrap: wrap;
}
.single-post-item .entry-title {
    font-family: 'Inter';
    font-size: 30px !IMPORTANT;
    line-height: 1.3 !IMPORTANT;
    color: var(--heading-color);
    font-weight: 600 !IMPORTANT;
    margin-bottom: 20px !important;
    letter-spacing: 0px !important;
}
.single-post .post-meta a {
    color: var(--text-color);
}

.single-post .post-meta>div {
    margin-right: 30px;
}

.single-post .post-meta i {
    color: var(--accent-color);
    margin-right: 5px;
    font-size: 14px;
}

.tags-links a,
.cat-links a {
    color: var(--text-color);
    margin-right: 5px;
}

.tags-links a:hover,
.cat-links a:hover {
    color: var(--accent-color);
}

.search.search-no-results .page-content {
    padding: 0 36px;
}

.search.search-no-results p {
    margin-bottom: 10px;
}

.search.search-no-results form.search-form {
    margin-top: 30px;
}

.search .not-found h1.page-title {
    font-size: 61px;
}

/* post-pagination */

.qweb-navigation {
    display: flex;
    justify-content: center;
}

.pagination .nav-links{
    display: flex;
    align-items: center;
}

nav.navigation.post-navigation {
    display: none;
}

.qweb-navigation a, .qweb-navigation span, .page-links a, .page-links span {
    height: 50px;
    width: 50px;
    display: inline-flex;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    margin-right: 15px;
    font-weight: 400;
    color: var(--heading-clor);
    background-color: var(--white-color);
    border-radius: 50%;
    border: 1px solid rgba(206, 209, 215, 1);
    align-items: center;
    justify-content: center;
}
p.wp-block-tag-cloud:last-child {
    margin: 0;
    padding: 0;
    margin: -20px -10px 0px -10px !important;
}
p.wp-block-tag-cloud {
    margin: 0px -10px -20px -10px !important;
}
.qweb-navigation a:hover,
.page-links a:hover {
    background-color: var(--accent-color);
    color: #fff;
    opacity: 1;
    border-color: var(--accent-color);
}

.qweb-navigation span.current,
.page-links .current {
    cursor: not-allowed;
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.qweb-navigation {
    margin-top: 30px;
}

/* mailchimp form  */
.mc4wp-form input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    width: 100%;
    height: 64px;
    border: 1px solid #e7e9ed;
    padding: 0 20PX;
}

.mc4wp-form {
    position: relative;
}

.mc4wp-form input[type="submit"] {
    position: absolute;
    right: 6px;
    background-color: var(--accent-color);
    letter-spacing: 0.01em;
    color: var(--white-color);
    font-weight: 400;
    border-radius: 0px;
    border: none;
    padding: 0 46px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: .3s;
    width: auto;
    height: 50px;
}

.mc4wp-form input[type="submit"]:hover {
    opacity: .9;
}

.subscribe-form.qweb-home-8-subscribe {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.subscribe-form.qweb-home-8-subscribe button[type=submit] {
    height: 59px;
    padding-top: 0;
    padding: 0 7px;
    font-size: 17px;
    letter-spacing: 0.01em;
    width: 170px;
    margin-left: 20px;
}

.subscribe-form.qweb-home-8-subscribe button[type=submit] i {
    margin-left: 40px;
}

.subscribe-form.qweb-home-8-subscribe span.wpcf7-form-control-wrap {
    margin-bottom: 0;
    flex: 1;
}

.subscribe-form.qweb-home-8-subscribe span.wpcf7-form-control-wrap input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    height: 59px !important;
}

.mc4wp-form .subscribe-form.qweb-home-3-subscribe input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    font-size: 17px;
    letter-spacing: 0.01em;
    height: 60px !important;
}

.subscribe-form.qweb-home-3-subscribe .wpcf7-form-control-wrap {
    margin-bottom: 15px;
}

/* Elmentor tweaks  */
.elementor-testimonial-wrapper .elementor-testimonial-content {
    margin-bottom: 1em;
}

.elementor-widget-testimonial .elementor-testimonial-name {
    margin-bottom: 0.3em;
}

.elementor-custom-embed-play i.eicon-play:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

div.elementor-custom-embed-play i {
    font-size: 14px;
}

@-webkit-keyframes effect {
    to {
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
        opacity: 0
    }
}

@keyframes effect {
    to {
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
        opacity: 0
    }
}



.elementor-custom-embed-play {
    width: 92px;
    height: 92px;
    line-height: 92px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 404 page css  */
.error-404 {
    padding: 120px 0 120px;
    background-color: #ffffff;
}
.error404 header {
    background: #0F215B;
}
.error-404 h1 {
    color: var(--accent-color);
    font-size: 110px;
    line-height: 1.272em;
    margin-bottom: 0;
}

.error-404 h4 {
    color: var(--heading-color);
    font-style: normal;
    font-weight: 600;
    font-size: 80px;
    line-height: 1.05;
    margin-bottom: 0;
    margin-top: 60px;
}

.error-404 p {
    color: var(--text-color);
    margin-bottom: 40px;
    margin-top: 20px;
    font-style: normal;
    font-weight: normal;
    font-size: 21px;
    line-height: 39px;
    letter-spacing: 0.01em;
}
.error-404 .qweb-btn {
    background: transparent;
    padding: 15px 42px;
    color: var(--accent-color);
    border-radius: 10px;
    transition: 0.4s;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    letter-spacing: 0.01em;
    min-width: 250px;
    min-height: 60px;
    text-transform: capitalize;
    border: 2px solid var(--accent-color);
}

.error-404 .qweb-btn:hover {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--white-color);
}

.error404 .breadcrumbs {
    display: none;
}

.error404 h1.post__title {
    font-style: normal;
    font-weight: 600;
    font-size: 144px;
    margin-bottom: 0;
}


a.qweb-btn.qweb-bordered-btn {
    border: 1px solid var(--accent-color-2);
    padding: 20px 40px 20px;
    font-weight: 400;
    border-radius: 0px;
}


h3.apply-form-title {
    color: var(--white-color);
    font-size: 48px;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 60px;
}

.entry-content ul {
    padding: 0;
}

.entry-content ul>li {
    margin-left: 0px;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 400;
    padding-left: 0;
    letter-spacing: 0.01em;
    position: relative;
    margin-bottom: 15px;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ol ul,
.entry-content ul ol {
    margin-top: 15px;
}

.widget .menu li span.dropdownToggle {
    display: none;
}

.widget ul ul {
    padding-left: 20px;
    border-left: 1px solid rgba(234, 233, 242, 0.9);
    margin-top: 10px;
}
p.wp-caption-text {
    color: var(--heading-color)!important;
   }
.entry-content ol li {
    padding-left: 0;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    margin-bottom: 15px;
}

.entry-content ol {
    margin-left: 0;
    padding-left: 32px;
}

.job-details-page .entry-content ul>li {
    margin-bottom: 15px;
}



input[type=checkbox] {
    margin-right: 10px;
}



.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 15px;
}


.entry-content.entry-content h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.01em;
}
.wp-block-post-featured-image {
    margin: 30px 0px;
}

/* team details page  */
.qweb-team-wrap {
    display: flex;

}

.team-thumnbnail-wrap {
    flex: 0 0 334px;
    margin-right: 77px;
}

.team-thumnbnail-wrap .post-thumbnail {
    display: block;
}

.team-thumnbnail-wrap .post-thumbnail img {
    width: 100%;
    height: 334px;
    object-fit: cover;
    object-position: top;
    border-radius: 0px;
}

.qweb-team-title h1 {
    /* Style for "Joe Bridge" */
    color: var(--heading-color);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 48px;
}

.qweb-team-title .team-position {
    /* Style for "Founder" */
    color: var(--text-color);
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 32px;
}

.qweb-team-title {
    margin-bottom: 35px;
}

.team-content p {
    /* Style for "Headquarte" */
    color: var(--text-color);
    font-size: 17px !important;
    font-weight: 300 !important;
    letter-spacing: 0.01em !important;
    line-height: 29px !important;
}

.team-social-links a {
    color: var(--heading-color);
    font-size: 18px;
    margin-right: 25px;
    transition: .4s;
}

.team-social-links a:hover {
    color: var(--accent-color);
}

.team-social-links {
    margin-top: 40px;
}

.content-block.team-details-page {
    padding: 130px 0 125px;
    background: #fbfbfb;
}

.team-content {
    padding-right: 75px;
}


.service-details-page .qweb-job-title {
    margin-bottom: 60px;
}

.hide-dropdown-menu ul.sub-menu,
.hide-dropdown-menu .dropdownToggle,
.hide-dropdown-menu .main-navigation ul.navbar-nav>li.qweb-mega-menu>.sub-menu {
    display: none;
}

.hide-dropdown-menu .main-navigation ul.navbar-nav>li.menu-item-has-children>a {
    padding-right: 20px;
}

/* contact-form*/
.subscribe-form {
    position: relative;
}
.subscribe-form .wpcf7-form-control-wrap:after {
    position: absolute;
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    top: 50%;
    left: 20px;
    height: 30px;
    width: 30px;
    font-size: 20px;
    color: #CDCCD9;
    transform: translateY(-50%);
}


