.img-cog-logo {
	max-width: auto;
	height: auto;
}
.img-cog-logo-dark {
	max-width: 80%;
	height: auto;
}
section .social-phone {
    margin-right: 25px;
	background: #bf0a30;
}
section .social-whatsapp {
    margin-right: 10px;
}

/* Blockquote */
.blog-single .blockquote-3 {
    font-size: 19px;
    line-height: 30px;
    color: #252525;
    font-weight: 700;
    position: relative;
    font-style: italic;
    padding: 10px 30px 10px 60px;
    margin-bottom: 15px;
    margin-top: 17px;
}
.blog-single .blockquote-3::before {
    content: "\e63f";
    font-family: themify;
    font-size: 70px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
}
.blog-single .blockquote-3 p:first-letter {
    color: #252525 !important;
    font-size: 26px !important;
    padding: 0 !important;
}
.blog-single .blockquote-4 {
    font-size: 19px;
    line-height: 30px;
    color: #252525;
    font-weight: 700;
    position: relative;
    font-style: italic;
    padding: 10px 30px 10px 60px;
    margin-bottom: 15px;
    margin-top: 17px;
}
.blog-single .blockquote-4::before {
    content: "\e64f";
    font-family: themify;
    font-size: 70px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
}
.blog-single .blockquote-4 p:first-letter {
    color: #252525 !important;
    font-size: 26px !important;
    padding: 0 !important;
}

/*Pagination CSS for sermons page - Starts*/
/* Hide all pages by default */
.page {
	display: none;
}

/* Show only the targeted page */
.page:target {
	display: block;
}

/* If no target is selected, show Page 1 */
body:not(:has(:target)) #page1 {
	display: block;
}

/* Pagination styles */
.pagination {
	margin-top: 20px;
}

.pagination a {
	display: inline-block;
	padding: 10px 15px;
	margin: 5px;
	text-decoration: none;
	color: white;
	background: blue;
	border-radius: 5px;
}

.pagination a:hover {
	background: darkblue;
}
/*Pagination CSS for sermons page - Ends*/