/*  ==========================================================================
    Enova
    ========================================================================== */

/* ==========================================================================
    1.0 Media
   ========================================================================== */

img,
video {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

img.alignleft,
img.alignright {
    float: none;
    margin: 0;
}

img.alignleft {
    float: left;
    margin-right: 25px;
}

img.alignright {
    float: right;
    margin-left: 25px;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.entry-content figure {
    margin: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    margin-bottom: 25px;
    max-width: 100%;
}

/* Remove bottom on embeds that wrapped in paragraphs via wpautop. */

p>embed:only-child,
p>iframe:only-child,
p>object:only-child {
    margin-bottom: 0;
}

.wp-caption,
.gallery-caption {
    color: #0b2238;
    font-size: 13px;
    font-style: italic;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 12px 0;
    color: #0b2238;
}

/* SVG Icons base styles */

.icon {
    display: inline-block;
    fill: currentColor;
    height: 15px;
    position: relative;
    /* Align more nicely with capital letters */
    top: -0.0625em;
    vertical-align: middle;
    width: 15px;
}

/* Row Minus Margin */

.mtb-15 {
    margin-top: -15px;
    margin-bottom: -15px;
}

/*  ==========================================================================
    2.0 Button
    ========================================================================== */

.btn-group-left .b-btn {
    margin-right: 10px;
}

.btn-group-right .b-btn {
    margin-left: 10px;
}

.btn-group-center .b-btn {
    margin: 0 5px;
}

.b-btn:hover {
    color: #fff;
}

.learn-more {
    color: #0b2238;
}

.learn-more:hover {
    color: #0b2238;
    text-decoration: underline;
}

/* Button */

.dl-btn {
    font-family: "Work Sans", sans-serif;
    letter-spacing: 0.125px;
    background-color: #4154f1;
    color: #fff;
    line-height: 50px;
    display: inline-block;
    padding: 0 35px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.2;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dl-btn:hover {
    color: #fff;
}

.dl-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* ==========================================================================
      3.0 Preloader
      ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s .5s ease;
    -moz-transition: all .5s .5s ease;
    transition: all .5s .2s ease;
}

.loader {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -30px;
}

.woocommerce .loader::before{
    display: none;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    background-color: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: wt-scaleout 1.0s infinite ease-in-out;
    animation: wt-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes wt-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes wt-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* ==========================================================================
      4.0 Fullscreen Search Box
      ========================================================================== */

.search-box-wrap {
    cursor: pointer;
}

#wt-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}

#wt-search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 999;
}

form#fullscreen-search {
    display: block;
    margin: 0 auto;
    text-align: center;
}

#wt-search input[type="text"] {
    display: block;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    margin: 0px auto;
    padding-left: 50px;
    padding-right: 50px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
}

#wt-search .search-btn {
    margin: 30px 0 0;
    padding: 0 40px;
    line-height: 50px;
    font-weight: 600;
    border-radius: 30px;
}

#wt-search .close {
    position: fixed;
    top: 40px;
    right: 40px;
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    box-shadow: none;
    outline: none;
    border: none;
    text-shadow: none;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    z-index: 1;
}

#wt-search .close:before {
    font-family: themify;
    content: '\e646';
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 60px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

#wt-search .close:hover:before {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 782px) {
    #wt-search input[type="text"] {
        font-size: 30px;
        width: 90%;
        padding-left: 40px;
        padding-right: 40px;
    }

    #wt-search .search-btn {
        margin-top: 25px;
    }

    #wt-search .close {
        height: 50px;
        width: 50px;
    }

    #wt-search .close:before {
        font-size: 14px;
        line-height: 50px;
    }
}

/* ==========================================================================
      5.0 Portfolio Archive
      ========================================================================== */

.archive .project-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.archive .project-items.items-1 {
    grid-template-columns: repeat(1, 1fr);
}

.archive .project-items.items-2 {
    grid-template-columns: repeat(2, 1fr);
}

.archive .project-items.items-3 {
    grid-template-columns: repeat(3, 1fr);
}

.archive .project-items.items-4 {
    grid-template-columns: repeat(4, 1fr);
}

.archive .project-items.items-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 992px) {
    .archive .project-items.items-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .archive .project-items.items-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .archive .project-items.items-3,
    .archive .project-items.items-4,
    .archive .project-items.items-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {

    .archive .project-items.items-2,
    .archive .project-items.items-3,
    .archive .project-items.items-4,
    .archive .project-items.items-5 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ==========================================================================
      5.0 Portfolio Single
    ========================================================================== */

.single-wt-portfolios .posts-category {
    margin-bottom: 15px;
}

.portfolio-desc .ps-title,
.portfolio-related-posts .ps-title,
.ps-sidebar .ps-title {
    font-size: 25px;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
    color: #0b2238;
    line-height: 25px;
    letter-spacing: -1px;
    font-weight: 600;
}

.project-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 550px;
    margin-bottom: 70px;
}

.portfolio-desc h1,
.portfolio-desc h2,
.portfolio-desc h3,
.portfolio-desc h4,
.portfolio-desc h5,
.portfolio-desc h6 {
    margin-bottom: 25px;
}

.portfolio-desc h5 {
    margin-bottom: 10px;
}

.portfolio-related-posts .ps-title {
    margin-bottom: 40px;
    text-align: center;
}

.portfolio-desc p:last-child {
    margin-bottom: 0;
}

.portfolio-details {
    background-color: #fff;
    padding: 40px 30px;
    border: 1px solid #eee;
}

.portfolio-details .project-info-heading {
    border-bottom: 1px solid #eee;
    color: #0b2238;
    font-size: 22px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    line-height: normal;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    padding-bottom: 10px;
    margin-bottom: 15px;
}


.portfolio-details .ps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-details .ps-list li {
    font-family: "Jost", sans-serif;
    letter-spacing: -0.2px;
    padding: 0 0 10px;
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.portfolio-details .ps-list li:last-child {
    margin-bottom: 0;
}

.portfolio-details .ps-list li span {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0b2238;
    letter-spacing: 0;
    margin-right: 8px;
}

.portfolio-details .ps-launch-btn {
    margin-top: 20px;
}

.portfolio-details .social-share {
    margin-top: 20px;
}

.portfolio-desc h2 {
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
}

/* 5.1 Portfolio Related Posts */

.portfolio-related-posts {
    margin-top: 40px;
}

.rel-posrtfolios {
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

.dl-project-box {
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.dl-project-box .project-thumb {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.dl-project-box .project-thumb img {
    width: 100%;
}

.dl-project-box .project-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding: 35px;
    transition: all 0.2s ease-in-out;
}

.dl-project-box .project-thumb:before {
    background-color: rgba(0, 0, 0, 0.3);
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.9s ease-in-out;
}

.dl-project-box:hover .project-thumb {
    transform: scale(1.05);
}

.dl-project-box:hover .project-thumb:before {
    background-image: linear-gradient(to right top, #000000, #111111ad, #1d1d1d50, #21212100, #25252500);
    transition: all 0.9s ease-in-out;
}

.dl-project-box .project-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.dl-project-box .project-content h3 a {
    color: #fff;
    text-decoration: none;
}

.dl-project-box .project-content h3 a:hover {
    color: #4154f1;
}

.dl-project-box .project-content span {
    background-color: #4154f1;
    padding: 8px 15px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 10px;
    display: inline-block;
    font-family: "Work Sans", sans-serif;
    line-height: 1;
}

/* ==========================================================================
      6.0 Blog
      ========================================================================== */

.full-width .site-main {
    padding: 0 15px;
}

.enova .wrapper {
    padding: 80px 0;
}

.blog-posts {
    margin-top: -15px;
    margin-bottom: -15px;
    column-gap: 0;
}

.archive .blog-posts .project-item,
.archive .blog-posts .blog-post,
.blog .blog-posts .blog-post,
.search .blog-posts .blog-post {
    padding: 15px;
}

.blog-posts .m-col {
    margin: 0;
}

.blog-posts .blog-post .blog-post-inner {
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

.search.search-no-results .blog-posts {
    height: auto !important;
}

.blog-posts .entry_thumb {
    position: relative;
    overflow: hidden;
}

.blog-posts .entry_thumb .post-cat {
    position: absolute;
    width: auto;
    height: auto;
    left: 30px;
    bottom: 20px;
    z-index: 1;
    display: inline-block;
    padding: 10px 15px;
    background-color: #4154f1;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    line-height: 10px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
}

.blog-posts .entry_thumb .post-cat:hover {
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

.blog-posts .entry_thumb-link img {
    width: 100%;
    vertical-align: bottom;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-posts .entry_text {
    padding: 30px;
    background-color: #fff;
}

.blog-posts .entry_title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 17px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.blog-posts .entry_title a {
    color: #0b2238;
    text-decoration: none;
}

.blog-posts .entry_header .entry_meta a:hover,
.blog-posts .entry_title a:hover,
.blog-posts .entry_title a:focus {
    color: #4154f1;
}

.blog-posts .entry_header .entry_meta {
    display: flex;
    column-gap: 6px;
    margin: 0 0 5px;
}

.blog-posts .entry_header .entry_meta a,
.blog-posts .entry_header .entry_meta .sep,
.blog-posts .entry_header .post-date {
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    display: block;
    color: #6c7a87;
}

.blog-posts .entry-excerpt .page-links {
    padding-bottom: 0;
}

.blog-posts .entry_meta-links a::after {
    content: ", ";
}

.blog-posts .entry_meta-links a:last-child::after {
    display: none;
}

.blog-posts .blog-post-inner .readmore {
    position: relative;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0;
    color: #0b2238;
    display: inline-block;
    margin-top: 16px;
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
}

.blog-posts .blog-post-inner .readmore {
    color: #6c7a87;
}

.blog-posts .blog-post-inner .readmore .dl-arrow {
    width: 24px;
    height: 1px;
    top: 0;
    display: inline-block;
    background-color: #0b2238;
    -webkit-transition: width .3s ease, transform .3s ease;
    -moz-transition: width .3s ease, transform .3s ease;
    transition: width .3s ease, transform .3s ease;
    vertical-align: middle;
}

.blog-posts .blog-post-inner .readmore .dl-arrow.left {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
}

.blog-posts .blog-post-inner .readmore .dl-text {
    display: inline-block;
    vertical-align: middle;
    /* font-weight: inherit; */
    margin: 0 10px 0 0;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    transition: transform .3s ease;
}

.blog-posts .blog-post-inner .readmore .dl-arrow.right {
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    transform-origin: right;
}

.blog-posts .blog-post-inner .readmore:hover .dl-text {
    -webkit-transform: translateX(34px);
    -moz-transform: translateX(34px);
    transform: translateX(34px);
    font-weight: inherit;
}

.blog-posts .blog-post-inner .readmore:hover .dl-arrow.left {
    width: 24px
}

.blog-posts .blog-post-inner .readmore:hover .dl-arrow.right {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    transform-origin: right
}

/* 6.1 Sticky Post */

.blog-posts .sticky .blog-post-inner .entry_text {
    border-bottom: 4px solid #4154f1;
}

.read-more-box {
    display: block;
}

.read-more-link {
    text-transform: uppercase;
    text-decoration: none;
}

.page-links {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 20px 0;
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.entry-content .page-links {
    text-align: left;
    padding: 0;
    margin: 20px 0;
}

.entry-content .page-links span {
    margin: 0 4px 0 0;
}

.entry-content .page-links span span {
    padding: 0;
    margin: 0 !important;
}

.page-links .page-number {
    color: #b0bdc9;
    display: inline-block;
    padding: 0.5em 1em;
}

.page-links a {
    color: #b0bdc9;
    display: inline-block;
}

.page-links a span {
    opacity: 0.8;
}

.page-links a:hover span {
    opacity: 1;
}

.page-links span {
    margin: 0 2px;
    color: #fff;
    background-color: #4154f1;
    padding: 3px 13px;
    line-height: inherit;
    display: inline-block;
    border-radius: 0;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.page-links a:hover {
    color: #4154f1;
}

.page-links a .page-number {
    color: #303133;
}

/* 6.2 Single Post */

.page .page-featured-img,
.blog-single .featured-img {
    margin-bottom: 30px;
}

.page .page-featured-img img,
.blog-single .featured-img img {
    max-width: 100%;
}

.blog-single .entry-header {
    margin: 0 0 30px;
    position: relative;
}

.blog-single header.entry-header .entry-meta .entry-item {
    display: inline-block;
    margin-right: 15px;
    color: #0b2238;
}

.blog-single header.entry-header .entry-meta .entry-item i {
    margin-right: 5px;
}

.blog-single .entry-title {
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #0b2238;
    line-height: normal;
    text-decoration: none;
    margin: 0 0 10px;
}

/*Single Post Head*/

.single-post-head,
.single-post-head img {
    margin-bottom: 25px;
}

.single-post-meta {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.single-post-meta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-post-meta li {
    list-style: none;
    margin-right: 20px;
    line-height: 0;
    align-items: center;
    display: flex;
    float: left;
}

.single-post-meta li svg {
    width: 25px;
    margin-right: 5px;
}

.single-post-meta li span,
.single-post-meta li a {
    font-size: 12px;
    color: #0b2238;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.single-post-meta li a:hover {
    color: #4154f1;
}

.single-post-meta li i {
    margin-right: 10px;
    color: #4154f1;
}

.entry-content p:first-child {
    margin-top: 0;
}

/* Social Share */

.sp-head-right {
    float: right;
    margin-top: 0;
    margin-right: -5px;
}

.sp-head-right .share {
    display: inline-block;
    cursor: default;
    padding: 0;
    margin: 0 5px;
    position: relative;
    text-align: center;
    border-radius: 2px;
    letter-spacing: 0;
}

.sp-head-right .share:hover .label {
    opacity: 0;
    transition: opacity .5s .125s ease-out;
}

.sp-head-right .share:hover .icon {
    border-radius: 50%;
    margin: 0 0;
}

.sp-head-right .icon,
.sp-head-right .label {
    background-color: #4154f1;
    line-height: 28px;
    color: #fff;
}

.sp-head-right .label {
    font-family: "Work Sans", sans-serif;
    position: absolute;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 600;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    pointer-events: none;
    text-transform: uppercase;
    transition: opacity .5s .75s ease-out;
}

.sp-head-right .icon {
    border-radius: 0;
    font-size: 10px;
    cursor: pointer;
    display: inline-block;
    height: 28px;
    margin: 0 -7px;
    transition: background-color .3s ease-out, border-radius .3s .15s ease-out, margin .3s .15s ease-out;
    width: 28px;
    color: #fff;
}

.sp-head-right .icon a {
    color: #fff;
}

.sp-head-right .icon.first {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: 0;
}

.sp-head-right .icon.last {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: 0;
}

/* Meta */

.entry-footer {
    margin: 10px 0 0;
    padding: 10px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.entry-footer .edit-link {
    padding-right: 0;
    font-size: 11px;
    color: #0b2238;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
}

.entry-footer .meta-label {
    font-size: 13px;
    color: #0b2238;
    letter-spacing: 1px;
    font-weight: 700;
}

.entry-footer .entry-meta .entry-item {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    color: #0b2238;
}

.entry-footer .meta-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entry-footer .entry-meta {
    display: flex;
}

.entry-footer .entry-meta .entry-meta-icon {
    background-color: #fff;
    color: #0b2238;
    padding: 0 15px;
    display: flex;
    margin: 5px 8px 5px 0;
    border: 1px solid #eee;
    position: relative;
}

.entry-meta .entry-meta-icon:after {
    background-color: #fff;
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: -5px;
    top: 13px;
    transform: rotate(45deg);
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}

.entry-footer .entry-meta .entry-meta-icon svg {
    width: 15px;
}

.entry-footer .meta-tags i {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 15px;
    color: #4154f1;
}

.entry-footer .entry-meta a {
    font-size: 12px;
    text-transform: uppercase;
    color: #0b2238;
    margin: 5px;
    letter-spacing: 0;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    background: #fff;
    padding: 3px 20px;
    border-radius: 0;
    border: 1px solid #eee;
}

.entry-footer .entry-meta a:hover {
    background-color: #4154f1;
    color: #fff;
}

@media (max-width: 768px) {

    .single-post-meta-wrap,
    .entry-footer .meta-tags {
        display: block;
    }

    .single-post-meta-wrap .social-share,
    .entry-footer .meta-tags .social-share {
        margin-top: 15px;
    }
}

.post-navigation {
    margin-top: 50px;
}

.post-navigation .nav-previous {
    float: left;
}

.post-navigation .nav-next {
    float: right;
}

.post-navigation a {
    font-size: 16px;
    line-height: 1;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #0b2238;
    background-color: #fff;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    padding: 10px 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.post-navigation a i {
    font-size: 25px;
}

.post-navigation a:hover {
    color: #4154f1;
    text-decoration: none;
    cursor: pointer;
}

.entry-content ol,
.entry-content ul {
    margin-left: 10px;
}

/* ==========================================================================
        7.0 Pagination
      ========================================================================== */

.navigation.pagination {
    margin-top: 40px;
    justify-content: center;
}

.navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.navigation.pagination .nav-links span.page-numbers.dots {
    margin: 0 2px;
}

.navigation.pagination .nav-links span.page-numbers.current,
.navigation.pagination .nav-links a {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #0b2238;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #eeeeee;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.navigation.pagination .nav-links a svg {
    width: 15px;
}

.navigation.pagination .nav-links a:hover {
    background-color: #4154f1;
    color: #fff;
    border: 1px solid transparent;
    -webkit-box-shadow: 0px 10px 33.25px 1.75px rgb(0 27 103 / 35%);
    box-shadow: 0px 10px 33.25px 1.75px rgb(0 27 103 / 35%);
    transition: all 0.2s ease-in-out;
}

.navigation.pagination .nav-links span.page-numbers.current {
    background-color: #4154f1;
    color: #fff;
    border: 1px solid transparent;
    -webkit-box-shadow: 0px 10px 33.25px 1.75px rgb(0 27 103 / 35%);
    box-shadow: 0px 10px 33.25px 1.75px rgb(0 27 103 / 35%);
}

.navigation.pagination .nav-links a.prev,
.navigation.pagination .nav-links a.next {
    font-size: 10px;
}

/* ==========================================================================
      8.0 Related Posts
      ========================================================================== */

.related-posts {
    margin: 50px 0 0;
}

.related-posts-list .thumb {
    position: relative;
    overflow: hidden;
}

.related-posts-list .thumb .post-cat {
    position: absolute;
    width: auto;
    height: auto;
    left: 25px;
    bottom: 20px;
    z-index: 1;
    display: inline-block;
    padding: 10px 15px;
    background-color: #4154f1;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    line-height: 12px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.related-posts-list .thumb .post-cat:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.related-posts h3.rel-title {
    font-family: "Work Sans", sans-serif;
    color: #0b2238;
    font-size: 28px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 35px;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
}

.related-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.related-posts-list li .rel-post-content {
    background-color: #fff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
    display: block;
    padding: 30px 25px;
}

.related-posts-list li .rel-post-content .rel-entry-date {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #6c7a87;
    letter-spacing: 0;
}

.related-posts-list li .rel-post-content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    letter-spacing: -1px;
}

.related-posts-list li .rel-post-content h4 a {
    text-decoration: none;
    color: #0b2238;
}

.related-posts-list li .rel-post-content h4 a:hover {
    color: #4154f1;
}

.related-posts-list li .rel-post-content p {
    margin: 0;
    font-weight: 400;
}

.related-posts-list li .rel-post-content .rel-entry-meta {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 25px;
}

.related-posts-list li .rel-post-content .rel-entry-meta a {
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
}

.related-posts-list li .rel-post-content .rel-entry-meta a:not(:last-of-type):after {
    content: ", ";
}

.related-posts-list li img {
    width: 100%;
}

.related-posts-list li h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    margin: 0 0 10px;
}

.related-posts-list li h4 a {
    color: #0b2238;
}

.related-posts-list li p {
    font-size: 14px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 580px) {
    .related-posts-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
      9.0 Featured Image Hover
      ========================================================================== */

.post-thumbnail {
    margin-bottom: 15px;
}

.post-thumbnail a img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.post-thumbnail a:hover img,
.post-thumbnail a:focus img {
    opacity: 0.7;
}

/* ==========================================================================
      10.0 Page Header
      ========================================================================== */

.page-header {
    background-color: #232427;
    background-attachment: scroll;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    display: block;
    height: 400px;
    position: relative;
    z-index: 1;
}

.transparent-header .page-header {
    padding-top: 117px;
    height: 597px;
}

.page-header h1.page-title {
    font-family: 'Jost', serif;
    font-style: normal;
    letter-spacing: -1px;
    color: #fff;
    position: relative;
    margin: 0;
    font-size: 42px;
    font-weight: 600;
    line-height: 50px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.page-header p {
    color: #eee;
    margin: 10px 0 0;
}

.page-header p.page-description {
    font-size: 16px;
    letter-spacing: -0.2px;
}

.page-header:before {
    background-color: rgba(0, 0, 0, 0.1);
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.page-header.ov-gradient:before {
    opacity: 0.5;
}

/* ==========================================================================
      11.0 Breadcrumb
      ========================================================================== */

.breadcrumb-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 20px;
}

.page-header.text-left .breadcrumb-wrap {
    justify-content: flex-start;
}

.page-header.text-right .breadcrumb-wrap {
    justify-content: flex-end;
}

.breadcrumb-wrap li {
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-wrap li .sep {
    padding-left: 10px;
    font-size: 12px;
}

.breadcrumb-wrap li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-wrap li a:hover {
    color: #4154f1;
}

.breadcrumb-wrap li.active {
    color: #eee;
}

/* ==========================================================================
      12.0 Author Info
      ========================================================================== */

.page-header.author-page {
    height: 500px;
}

.author-posts-title {
    position: relative;
    padding-bottom: 12px;
    color: #0b2238;
    font-weight: 700;
    font-size: 24px;
}

.author-info {
    color: #bbb;
    display: block;
    text-align: center;
}

.author-info img.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.author-info ul {
    list-style: none;
    padding: 0;
}

.author-info ul li a {
    color: #bbb;
}

.author-socials {
    margin: 20px 0 0;
    padding: 0;
}

.author-socials li {
    display: inline-block;
    margin: 0 3px;
}

.author-socials li a {
    background-color: #4154f1;
    color: #fff !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.author-socials li.fb a {
    background-color: #1877f2;
}

.author-socials li.twitter a {
    background-color: #1da1f2;
}

.author-socials li.insta a {
    background-color: #c13584;
}

.author-socials li.linkedin a {
    background-color: #00a0dc;
}

.author-socials li.pinterest a {
    background-color: #e60023;
}

.author-socials li.yt a {
    background-color: #ff0000;
}

.author-socials li a:hover {
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

/* 12.1 Author Profile */

.author-bio {
    margin: 45px 0 0;
    display: block;
    background-color: #fff;
}

.author-bio .bio-inner {
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: center;
    padding: 40px;
}

.author-bio .bio-inner .avatar {
    padding-right: 30px;
}

.author-bio .bio-inner .author-avatar {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-bio .bio-inner h3 {
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    color: #0b2238;
    letter-spacing: -0.5px;
}

.author-bio .bio-inner p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #0b2238;
}

.author-bio .bio-inner .author-socials {
    margin: 20px 0 0;
    padding: 0;
}

/* ==========================================================================
      13.0 404 Page
      ========================================================================== */

#error-404-wrapper {
    padding: 100px 0;
}

.error-404 i {
    font-size: 80px;
    color: #4154f1;
}

.error-404 h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 40px 0 15px;
    color: #0b2238;
}

.error-404 p {
    color: #6c7a87;
}

.error-404 a {
    color: #0b2238;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.error-404 a:focus,
.error-404 a:hover {
    color: #4154f1;
}

/* ==========================================================================
       14.0 Content None
      ========================================================================== */

.search-no-results .masonry-grid {
    columns: inherit !important;
    margin: 10px 0 0;
}

.no-results.not-found {
    display: block;
    width: 100%;
}

.no-results.not-found.without-sidebar {
    padding: 70px 0 80px;
}

.no-results.not-found .not-found-icon {
    color: #dd0000;
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 45px;
    background-color: #f7f7f7;
    display: block;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 25px;
}

.no-results.not-found.text-center .not-found-icon {
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results.not-found.text-center .not-found-icon svg {
    width: 50px;
}

.no-results.not-found .page-content p {
    margin: 0;
}

/* ==========================================================================
      15.0 Widgets
      ========================================================================== */

.sidebar-inner {
    padding-left: 10px;
    padding-right: 10px;
}

.full-width #right-sidebar {
    padding-right: 30px;
}

.full-width #left-sidebar {
    padding-left: 30px;
}

#secondary {
    padding: 15px 0 30px;
}

.widget-area .widget.widget_search {
    padding: 0;
}

.widget-area .widget.widget_search .widget-title {
    display: none;
}

.widget-area .widget:not(:last-of-type) {
    margin-bottom: 60px;
}

.widget-title {
    display: block;
    margin-bottom: 20px;
    margin-top: -9px;
    overflow: hidden;
    position: relative;
}

.widget_rss .widget-title h3 a:last-child,
.widget-title h3 {
    color: #0b2238;
    font-size: 22px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    line-height: normal;
    letter-spacing: -1px;
    text-transform: capitalize;
    display: inline-block;
    padding-bottom: 3px;
    position: relative;
}

.widget-title h3:before {
    background-color: #4154f1;
    position: absolute;
    content: "";
    width: 50%;
    height: 3px;
    left: 0;
    bottom: -5px;
}

.widget-title a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
}

/* 15.1 widget forms */

.widget select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0 10px;
}

/* 15.2 widget lists */

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

.widget ul li,
.widget ol li {
    font-family: "Work Sans", sans-serif;
    color: #0b2238;
    font-weight: 500;
    font-size: 12px;
}

.widget select,
.widget select option,
.widget ul li a {
    color: #6c7a87;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-decoration: none;
    box-shadow: none;
    font-family: "Jost", sans-serif;
    letter-spacing: -0.2px;
}

.widget ul li a:hover {
    color: #4154f1;
    text-decoration: underline;
}

.widget:not(.widget_tag_cloud) ul li+li {
    margin-top: -1px;
}

.widget ul li ul {
    margin: 0 0 -1px;
    padding: 0;
    position: relative;
}

.widget ul li li {
    border: 0;
    padding-left: 15px;
}

.widget ul li ul li {
    padding-left: 15px;
}

.widget ul li ul li:before,
.widget.widget_rss ul li:before {
    display: none;
}

/* 15.3 Widget lists of links */

.widget_rss ul li {
    padding-bottom: 15px;
    padding-top: 15px;
}

/* 15.4 Widget Markup */

.widget .post-date,
.widget .rss-date {
    font-size: 12px;
}

/* 15.5 Text widget */

.widget_text {
    word-wrap: break-word;
}

.widget_text ul {
    list-style: disc;
    margin: 0 0 25px 25px;
}

.widget_text ol {
    list-style: decimal;
}

.widget_text ul li,
.widget_text ol li {
    border: none;
}

.widget_text ul li:last-child,
.widget_text ol li:last-child {
    padding-bottom: 0;
}

.widget_text ul li ul {
    margin: 0 0 0 25px;
}

.widget_text ul li li {
    padding-left: 0;
    padding-right: 0;
}

.widget_text ol li {
    list-style-position: inside;
}

.widget_text ol li+li {
    margin-top: -1px;
}

/* 15.6 RSS Widget */

.widget_rss .widget-title a {
    box-shadow: none;
}

.textwidget b,
.textwidget strong,
.widget_rss b,
.widget_rss strong {
    font-weight: 500;
}

.widget_rss .widget-title a:last-child {
    box-shadow: none;
    line-height: normal;
    margin-bottom: 10px;
    margin-bottom: 20px;
}

.widget_rss .widget-title .rsswidget:first-child {
    float: right;
    margin-top: 1px;
    background-color: transparent;
}

.widget_rss .widget-title .rsswidget:first-child:hover {
    background-color: transparent;
}

.widget_rss .widget-title .rsswidget:first-child img {
    display: block;
    box-shadow: none;
}

.widget_rss ul {
    list-style: none;
}

.widget_rss ul li {
    padding: 15px 0;
}

.widget_rss ul li:first-child {
    border-top: none;
    padding-top: 0;
}

.widget_rss li .rsswidget {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #0b2238;
}

.widget_rss .rss-date,
.widget_rss li cite {
    color: #0b2238;
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.widget_rss .rss-date {
    margin: 10px 0px;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 600;
}

.widget_rss .rssSummary {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: normal;
    font-family: 'Work Sans', sans-serif;
    color: #0b2238;
}

/* Contact Info Widget */

.widget_contact_info .contact-map {
    margin-bottom: 10px;
}

/* Gravatar */

.widget-grofile h4 {
    font-size: 16px;
    margin-bottom: 0;
}

/* 15.7 Recent Comments */

.widget_recent_comments table,
.widget_recent_comments th,
.widget_recent_comments td {
    border: 0;
}

.widget.widget_recent_comments ul li {
    margin-bottom: 10px;
}

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

.widget.widget_recent_comments ul li:before {
    display: none;
    color: #6c7a87;
}

.widget.widget_recent_comments ul li a {
    color: #6c7a87;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    box-shadow: none;
    font-family: "Jost", sans-serif;
    letter-spacing: -0.2px;
}

.widget.widget_recent_comments ul li span.comment-author-link {
    position: relative;
    color: #6c7a87;
}

/* 15.8 Recent Posts widget */

.widget_recent_entries .post-date {
    display: block;
}

.widget_recent_entries ul li a {
    font-family: "Jost", sans-serif;
    letter-spacing: -0.2px;
    font-size: 16px;
    line-height: 1.9;
}

.widget_recent_entries ul li a:hover {
    text-decoration: underline;
}

/* 15.9 Search Box */

.search-form {
    position: relative;
}

.search-form .form-control {
    background-color: #fff;
    border: 1px solid #eeeeee !important;
    box-shadow: none;
    width: 100%;
    display: block;
    border: none;
    color: #0b2238;
    height: auto;
    padding: 15px;
    border-radius: 0;
    padding-right: 60px;
}

.widget-box .search-form .form-control {
    background-color: #323437;
    color: #fff;
}

.widget-box .search-form .search-btn svg {
    color: #ddd;
}

.search-form .search-btn {
    background-color: transparent;
    font-size: 15px;
    color: #0b2238;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 13px 0;
}

.search-form .search-btn svg {
    width: 25px;
}

.search-form .search-btn:focus,
.search-form .search-btn:hover {
    color: #4154f1;
}

.search-form .search-btn:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.search-form input::-webkit-input-placeholder {
    color: #6c7a87 !important;
}

.search-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #6c7a87 !important;
}

.search-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #6c7a87 !important;
}

.search-form input:-ms-input-placeholder {
    color: #6c7a87 !important;
}

/* 15.10 Tag cloud widget */

.tagcloud ul li {
    float: left;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    margin: 4px 4px 0 0;
}

.tagcloud,
.widget_tag_cloud,
.wp_widget_tag_cloud {
    line-height: 1.5;
}

.widget .tagcloud a,
.widget.widget_tag_cloud a,
.wp_widget_tag_cloud a {
    background-color: #fff;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    width: auto;
    word-wrap: break-word;
    z-index: 0;
    margin: 0 7px 7px 0;
    font-size: 12px !important;
    color: #6c7a87;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.widget .tagcloud a:hover,
.widget .tagcloud a:focus,
.widget.widget_tag_cloud a:hover,
.widget.widget_tag_cloud a:focus,
.wp_widget_tag_cloud a:hover,
.wp_widget_tag_cloud a:focus {
    background-color: #4154f1;
    color: #fff;
    border-color: #4154f1;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    opacity: 1;
}

/* 15.11 Calendar widget */

.widget_calendar th,
.widget_calendar td {
    text-align: center;
}

.widget_calendar tfoot tr {
    border-bottom: 0;
}

.widget.widget_calendar #wp-calendar {
    border: 1px solid #ddd;
    margin: 0;
    position: relative;
}

.widget.widget_calendar #wp-calendar caption {
    text-align: center;
    height: 36px;
    line-height: 36px;
    padding: 0;
    caption-side: top;
    vertical-align: middle;
    border: 1px solid #eeeeee;
    border-bottom: none;
    color: #0b2238;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}

.widget.widget_calendar #wp-calendar tfoot {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    height: 36px;
    line-height: 36px;
}

.widget.widget_calendar #wp-calendar tfoot td {
    border: none;
}

.widget.widget_calendar #wp-calendar tfoot #prev,
.widget.widget_calendar #wp-calendar tfoot #next {
    position: absolute;
    width: 36px;
    height: 36px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    color: transparent;
}

.widget.widget_calendar #wp-calendar tfoot #prev {
    left: 0;
}

.widget.widget_calendar #wp-calendar tfoot #next {
    right: 0;
}

.widget.widget_calendar #wp-calendar tfoot #prev a,
.widget.widget_calendar #wp-calendar tfoot #next a {
    color: transparent;
}

.widget.widget_calendar #wp-calendar tfoot #prev a:before,
.widget.widget_calendar #wp-calendar tfoot #next a:before {
    background-color: transparent;
    font-family: "themify";
    font-size: 12px;
    color: #0b2238;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.widget.widget_calendar #wp-calendar tfoot #prev a:hover:before,
.widget.widget_calendar #wp-calendar tfoot #next a:hover:before {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.widget.widget_calendar #wp-calendar tfoot #prev a:before {
    content: "\e64a";
}

.widget.widget_calendar #wp-calendar tfoot #next a:before {
    content: "\e649";
}

.widget.widget_calendar #wp-calendar th {
    border-color: #eeeeee;
    padding: 5px 10px;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0b2238;
    opacity: 0.5;
}

.widget.widget_calendar #wp-calendar td {
    padding: 5px;
    color: #0b2238;
    font-size: 12px;
}

.widget.widget_calendar #wp-calendar td a {
    font-weight: 700;
    color: #0b2238;
}

.widget-box .widget.widget_calendar #wp-calendar {
    border: 1px solid #0b2238;
}

.widget-box .widget.widget_calendar #wp-calendar th {
    border-color: #0b2238;
}

/* 15.12 Gallery widget */

.gallery-columns-5 .gallery-caption,
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/* ==========================================================================
      16.0 Footer Widgets
      ========================================================================== */

.footer-widget-section {
    background-color: #232427;
    border-bottom: 1px solid #0b2238;
    position: relative;
    z-index: 1;
}

.footer-widget-section:before {
    content: '';
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.8;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.dark-widget .widget_rss .widget-title a:last-child,
.dark-widget .widget-title h3 {
    color: #fff;
}

.widget_rss .widget-title a:last-child {
    margin: 0;
}

.dark-widget .widget_rss .rssSummary,
.dark-widget .widget_rss .rss-date,
.dark-widget .widget_rss .rss-date,
.dark-widget .widget_rss li cite {
    color: #ddd;
}

.dark-widget .text-widget p,
.dark-widget p {
    color: #ddd;
}

.dark-widget .widget-box .text-widget p:not(:last-of-type),
.dark-widget .widget-box p:not(:last-of-type) {
    margin-bottom: 15px;
}

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

.dark-widget .widget ul li {
    color: #ddd;
    border: none;
}

.dark-widget .search-form .form-control {
    border: none !important;
}

.dark-widget.widget ul li:not(:last-of-type),
.widget ol li:not(:last-of-type),
.widget ul li li:not(:last-of-type),
.dark-widget .widget ol li li:not(:last-of-type) {
    border: none;
}

.dark-widget .widget ul li a {
    color: #ddd;
}

.dark-widget .widget ul li a:hover {
    color: #4154f1;
}

.dark-widget .widget .tagcloud a,
.dark-widget .widget.widget_tag_cloud a,
.dark-widget .wp_widget_tag_cloud a {
    background-color: #323437;
    color: #ddd;
}

.dark-widget .widget .tagcloud a:hover,
.dark-widget .widget.widget_tag_cloud a:hover,
.dark-widget .wp_widget_tag_cloud a:hover {
    background-color: #4154f1;
    color: #fff;
}

.dark-widget .widget select {
    border: 1px solid #323437;
    background-color: #323437;
    color: #ddd;
}

.dark-widget .widget select option {
    color: #ddd;
}

.dark-widget .widget.widget_calendar #wp-calendar caption {
    border: 1px solid #323437;
    color: #ddd;
}

.dark-widget tr {
    border-bottom: 1px solid #323437;
}

.dark-widget td {
    border-right: 1px solid #323437;
}

.dark-widget .widget.widget_calendar #wp-calendar td {
    color: #ddd;
}

.dark-widget .widget.widget_calendar #wp-calendar td a {
    color: #ddd;
}

.dark-widget .widget.widget_calendar #wp-calendar td a:hover {
    color: #fff;
}

.dark-widget .widget.widget_calendar #wp-calendar tfoot #prev a:before,
.dark-widget .widget.widget_calendar #wp-calendar tfoot #next a:before {
    color: #fff;
}

.dark-widget .widget.widget_calendar #wp-calendar th {
    border-color: #323437;
    color: #ddd;
}

.dark-widget th:first-child,
.dark-widget td:first-child {
    border-left: 1px solid #323437;
}

.dark-widget .widget.widget_recent_comments ul li span.comment-author-link:before {
    color: #4154f1;
}

/* ==========================================================================
      17.0 Comments
      ========================================================================== */

#comments {
    clear: both;
    padding: 0;
    margin-top: 50px;
}

.related-posts h3.rel-title,
.comment-respond .comment-reply-title,
#comments .comments-title {
    font-size: 22px;
    font-family: "Jost", sans-serif;
    margin-bottom: 40px;
    color: #0b2238;
    line-height: 28px;
    letter-spacing: -1px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.related-posts h3.rel-title:before,
.comment-respond .comment-reply-title:before,
#comments .comments-title:before {
    background-color: #4154f1;
    position: absolute;
    content: "";
    width: 50%;
    height: 3px;
    left: 0;
    bottom: -5px;
}

.comment-respond .comment-reply-title {
    margin-bottom: 5px;
}

.comment-content p img {
    margin: 5px 0;
}

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

.comment-list li:before {
    display: none;
}

.comment-body {
    margin-left: 65px;
}

.comment-author {
    font-size: 18px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.comment-author .avatar {
    height: 50px;
    left: -65px;
    position: absolute;
    width: 50px;
    border-radius: 50%;
}

.comment-author .fn,
.comment-author a {
    text-decoration: none;
    color: #0b2238;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 15px;
}

.comment-author a:hover {
    opacity: 0.9;
}

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

.comment-meta {
    margin-bottom: 15px;
}

.comment-body .reply {
    margin-top: 15px;
}

.comment-metadata a.comment-edit-link,
.comment-metadata a,
.comment-metadata {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
    letter-spacing: 0;
}

.comment-metadata a {
    color: #6c7a87;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.comment-metadata a.comment-edit-link {
    margin-left: 1em;
}

.comment-body {
    font-family: "Jost", sans-serif;
    color: #6c7a87;
    font-size: 16px;
    letter-spacing: -0.2px;
    margin-bottom: 4em;
}

.comment-reply-link {
    font-weight: 600;
    position: relative;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
    background-color: #4154f1;
    padding: 8px 15px;
    border-radius: 2px;
}

.comment-reply-link:hover {
    color: #fff;
}

.comment-body .comment-content p {
    margin-bottom: 0;
}

.children .comment-author .avatar {
    height: 30px;
    left: -45px;
    width: 30px;
}

.bypostauthor>.comment-body>.comment-meta>.comment-author .avatar {
    border: 1px solid #303133;
    padding: 2px;
}

.no-comments,
.comment-awaiting-moderation {
    color: #0b2238;
    font-size: 14px;
    font-size: 0.875rem;
    font-style: italic;
}

.comments-pagination {
    margin: 0px 0 50px;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0px 0 0px;
    text-align: center;
}

.comments-pagination .prev.page-numbers {
    float: left;
    margin-right: 10px;
    margin-left: 0;
}

.comments-pagination .next.page-numbers {
    float: right;
    margin-left: 10px;
    margin-right: 0;
}

.comments-pagination .prev.page-numbers,
.comments-pagination .next.page-numbers {
    background-color: #f7f7f7;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    color: #0b2238;
    transition: all 0.3s ease-in-out;
    height: 35px;
    line-height: 35px;
    width: 45px;
    border: none;
}

.comments-pagination .prev.page-numbers:hover,
.comments-pagination .next.page-numbers:hover {
    background-color: #f1f1f1;
    color: #666;
    transition: all 0.3s ease-in-out;
}

.comments-pagination .page-numbers {
    display: none;
    width: 35px;
    height: 35px;
    line-height: 33px;
    border: 1px solid #f7f7f7;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 13px;
    color: #0b2238;
    transition: all 0.3s ease-in-out;
}

.comments-pagination .page-numbers:hover,
.comments-pagination .page-numbers.current {
    background-color: #f7f7f7;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 67em) {
    .comments-pagination .page-numbers {
        display: inline-block;
    }
}

.comment-form #wp-comment-cookies-consent {
    margin: 0 10px 0 0;
}

.comment-form .comment-form-cookies-consent label {
    display: inline;
}

@media screen and (min-width: 48em) {
    ol.children .children {
        padding-left: 2em;
    }
}

/* Comment Form */

.children .comment-respond {
    margin-bottom: 50px;
    padding-left: 28px;
}

.comment-list .depth-1 .comment-respond {
    margin-bottom: 50px;
}

.comment-respond .comment-reply-title small a {
    text-decoration: none;
    font-size: 16px;
    color: #222;
    margin-left: 10px;
}

.comment-respond .comment-reply-title small a:hover {
    color: #444;
}

.form-submit {
    text-align: left;
    margin: 0;
}

.form-submit .b-btn {
    font-family: "Work Sans", sans-serif;
    background-color: #4154f1;
    width: inherit;
    height: inherit;
    padding: 20px 45px;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-submit .b-btn:hover {
    opacity: 0.8;
}

.form-group,
.wpcf7 .wpcf7-form p {
    margin-bottom: 20px;
}

.comment-form .form-group {
    margin-bottom: 25px;
}

.comment-form .form-control {
    background: #fff;
    font-size: 14px;
    border-radius: 0;
    box-sizing: border-box;
    color: #0b2238;
    cursor: pointer;
    border: none;
    padding: 15px;
    letter-spacing: 0;
    border: 1px solid #eeeeee;
}

.comment-form textarea.form-control {
    line-height: 26px;
}

.comment-form .form-control:hover,
.comment-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.comment-form .form-control:hover {
    border: 1px solid #4154f1;
}

.comment-form .comment-notes {
    color: #0b2238;
}

.comment-list li.pingback .comment-body {
    margin: 0 0 35px 0;
    padding-left: 0;
}

.comment-navigation {
    margin-bottom: 20px;
}

.comment-navigation a {
    color: #0b2238;
}

.comment-navigation a:hover {
    text-decoration: underline;
}

.comment-form p:last-child {
    margin: 0;
}

/* ==========================================================================
      18.0 Footer
      ========================================================================== */

.footer-wrap {
    background-color: #232427;
    color: #0b2238;
    padding: 30px 0;
    display: block;
}

.footer-wrap .site-info {
    color: #bbb;
}

.footer-wrap .site-info a {
    color: #ddd;
}

.footer-wrap .site-info a:hover {
    text-decoration: underline;
}

.footer-menu {
    margin: 0;
    text-align: right;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li a {
    font-size: 14px;
    color: #999;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
}

.footer-menu li a:hover {
    color: #4154f1;
    text-decoration: none;
}

/*  ==========================================================================
        19.0 Scroll To Top
    ========================================================================== */

#scrollup {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}

.scroll-to-top {
    background-color: #4154f1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}

#scrollup.show {
    opacity: 1;
}

#scrollup.show .scroll-to-top {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:focus {
    outline: none;
}

/* Boxed Layout */

.boxed-layout {
    background-color: #fff;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .boxed-layout {
        padding: 0;
    }
}