/**
 * Common
 */
 div#wpadminbar.nojq {
    z-index: 100001 !important;
 }

#breadcrumb {
    margin-top: 40px;
    margin-bottom: 50px;
}
#main2 {
	margin-bottom: 50px;
}

/**
 * Posts Grid
 */

#posts-grid {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 3%;
	/*gap: 45px;*/
}

#posts-grid .card {
    display: flex;
    flex-direction: column;
    width: 31%;
	flex: 0 0 31%;
    margin-bottom: 40px;
	color: #1F2D3A;
	cursor: pointer;
}

#posts-grid .image {
    border-radius: 0px;
    margin-bottom: 0px;
    cursor: pointer !important;
}

#posts-grid .title {
    font-size: 1.25rem;
	line-height: 1.6rem !important;
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
	transition: 0.5s linear;
}
#posts-grid .title:hover {
    color: #E4003A;
}

#posts-grid .subtitle {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
}

#posts-grid .excerpt {
    font-size: 16px;
    margin: 0px;
}

#posts-grid .button {
    background: #23282C;
    width: fit-content;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 24px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
}

#posts-grid .button a {
    color: #ffffff !important;
}


/**
* Posts Pagination
*/

.posts-pagination {
    display: flex;
    margin-top: 30px;
    font-size: 14px;
    text-transform: uppercase;
}

.posts-pagination nav.navigation.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
}

.posts-pagination .col1 {
    width: 100%;
}

.posts-pagination svg {
    display: inline;
    width: 20px;
    height: 20px;
}

.posts-pagination .page-numbers {
    border-radius: 0px;
    margin-left: 5px;
    font-size: 12px;
    height: fit-content;
    width:fit-content;
}

.posts-pagination a.page-numbers {
    background: #1F2D3A;
    color: #ffffff;
    border: solid 1px #1F2D3A;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
	border-radius: 0px;
}

.posts-pagination a.page-numbers:hover {
    background: #57626b;
    color: #ffffff;
    border: solid 1px #57626b;
}

.posts-pagination a.prev.page-numbers {
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.posts-pagination a.next.page-numbers {
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.posts-pagination span.page-numbers.current {
    background: #E4003A;
    color: #ffffff;
    border: solid 1px #E4003A;
   border-radius: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.posts-pagination span.page-numbers.dots {
    background: #000000;
    border: solid 1px #000000;
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
}
/* tablet */
@media only screen and (max-width: 1024px) {
	#posts-grid .card {
		display: flex;
		flex-direction: column;
		width: 47%;
		flex: 0 0 47%;
		margin-bottom: 30px;
	}
}
/* mobile */
@media only screen and (max-width: 640px) {
	#posts-grid {	
		gap: 25px;
	}
	#posts-grid .card {
		display: flex;
		flex-direction: column;
		width: 100%;
		flex: 0 0 100%;
		margin-bottom: 20px;
	}
}