/*=======================================================================
Articles
==========================================================================*/
#articles {
    padding: 50px 0;
    position: relative;
}
#articles .pag-wrap{
    width: 100%;
    margin-top: 40px;
}
#articles .pag{
    display: flex;
    justify-content: center;
}
#articles .pag span{
    width: 30px;
    height: 30px;
    border: 1px solid #1A2335;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    margin: 0 5px;
}
#articles .pag a{
    min-width: 30px;
    padding: 0 5px;
    text-decoration: none;
    color: #fff;
    background: #1A2335;
    height: 30px;
    border: 1px solid #1A2335;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    margin: 0 5px;
}
#articles .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#articles .post {
    width: 49%;
    background: #fff;
    box-shadow: 0 0 6px #0000000F;
    border-radius: 10px;
}
#articles .post a {
    text-decoration: none;
}
#articles .post .wrap {
    display: flex;
    padding: 20px;
}
#articles .post img {
    width: 178px;
    height: 178px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 10px;
}
#articles .cat {
    background: #FCA342;
    border-radius: 2px;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 5px 0;
}
#articles .content {
    padding: 0 20px;
}
#articles .post h2 {
    font-size: 20px;
    line-height: 27px;
}
#articles .date {
    color: #676767;
    font-family: "Titillium Web", sans-serif;
    margin-bottom: 5px;
}
#articles .date i {
    margin-right: 10px;
}
#articles .content p {
    color: #5A5A5A;
    font-size: 15px;
    font-family: "Titillium Web", sans-serif;
    line-height: 22px;
}

@media(max-width: 1200px) {
    #articles .posts {
        flex-wrap: wrap;
    }
    #articles .post {
        width: 100%;
        margin: 10px 0;
    }
}

@media(max-width: 1200px) {
    #articles .post .wrap {
        flex-direction: column;
    }
    #articles .image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #articles .cat {
        width: 178px;
        margin-bottom: 20px;
    }
}

/* ========================================================================================
Block3
========================================================================================*/

#block3 h2 strong{
    color: #2275D3 !important;
    font-weight: 700;
}
#block3{
    background: #F9F9F6 !important;
}

/* ========================================================================================
Filters
========================================================================================*/
#filters::before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: -40px;
    height: calc(100% + 40px);
    background: transparent linear-gradient(96deg, #F95B83 0%, #283D75 100%) 0 0 no-repeat padding-box;
    z-index: 1;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}
#filters {
    position: relative;
    padding: 0 0 30px;
}
#filters .container {
    position: relative;
    z-index: 2;
}
#filters h2 {
    color: #fff;
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 40px;
}
#filters .search-form {
    position: relative;
}
#filters .search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    height: 75%;
    transform: translatey(-50%);
    border-radius: 5px;
    background: #4BC7FE;
    border: none;
    padding: 0 20px;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
}
#filters .search-form button:hover {
    background: #FCA342;
}
#filters .search-form button i {
    margin-left: 10px;
    font-size: 14px;
}
#filters input,
#filters select {
    height: 70px;
    padding: 0 20px;
    border-radius: 5px;
}

/* Container holding select and arrow */
.select-wrap {
    position: relative;
}

/* Custom arrow */
.select-wrap::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 20px;
    height: 75%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
    background-color: #4BC7FE;
    color: #000000;
    border-radius: 5px;
}


