.flexslider ul.slides {
    display: flex;
}

.flexslider ul.slides li>* {
    height: 100%;
}

.flex-direction-nav a::before {
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 30px !important;
    height: 45px;
    background-color: #fff;
    aspect-ratio: 1/1;
    border-radius: 50%;
    text-shadow: none;
}

.flex-direction-nav a.flex-next::before {
    content: '\f054';
    font-family: FontAwesome;
}

.flex-direction-nav a.flex-prev::before {
    content: '\f053';
    font-family: FontAwesome;
}

.flex-direction-nav a {
    top: 160px !important;
    height: 50px;
    width: 50px;
}

.archive-content {
    padding: 20px 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

.archive-content .post>a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.archive-content .post:nth-child(even)>a {
    flex-direction: row-reverse;
}

.archive-content .post>a>img {
    height: 350px;
    background-color: #000;
    max-width: 50%;
    min-width: 50%;
}

.archive-content .post>a>div {
    height: 350px;
    padding: 20px;
    background-color: #f3f5f8;
    max-width: 50%;
    min-width: 50%;
}

.archive-content .post>a .post-time::before {
    content: '\f133';
    display: inline-block;
    font-family: FontAwesome;
    padding-right: 10px;
}

.elementor-shortcode a {
    color: #3B6B87 !important;
}

.elementor-shortcode a:focus,
.elementor-shortcode a:hover {
    color: #000 !important;
    text-decoration: none !important;
}

@media screen and (max-width: 767px) {
    .archive-content .post>a>img {
        max-width: 100%;
        min-width: 100%;
        height: 300px;
    }

    .archive-content .post>a>div {
        max-width: 100%;
        min-width: 100%;
        height: fit-content;
    }

    .archive-content .post>a:nth-child(even) {
        flex-direction: row;
    }

    .archive-content .post>a {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

}