/*
Theme Name: Twenty Sixteen Child
Theme URI: https://wordpress.org/themes/twentysixteen/
Template: twentysixteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
Tags: one-column,two-columns,right-sidebar,accessibility-ready,custom-background,custom-colors,custom-header,custom-menu,editor-style,featured-images,flexible-header,microformats,post-formats,rtl-language-support,sticky-post,threaded-comments,translation-ready,blog,block-patterns
Version: 2.7.1654179684
Updated: 2022-06-02 10:21:24

*/

.blogsListingSec h2 {
    margin-top: 0;
    padding-bottom: 25px;
}
.blogsListingSec .rightSec {
    padding-right: 25px;
}
.blogsListingSec .rightSec .row {
    row-gap: 15px;
}
.blogsListingSec .rightSec .card {
    height: 100%;
    border: 1px solid var(--primaryColor);
    border-radius: 7px;
    overflow: hidden;
}
.blogsListingSec .rightSec .card img {
    height: 210px;
    object-fit: cover;
    cursor: pointer;
}
.blogsListingSec .rightSec .card .card-body {
    background-color: var(--colorF5F7F8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blogsListingSec .rightSec .card .card-body h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    cursor: pointer;
}
.blogsListingSec .rightSec .card .card-body p {
    font-size: 15px;
    font-weight: 400;
}
.blogsListingSec .rightSec .card .card-body a.btn {
    font-size: 12px;
    line-height: 12px;
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    padding: 12px 32px 12px 32px;
    border-radius: 25px;
    letter-spacing: 1.3px;
    font-weight: 500;
    transition: 300ms ease-in-out;
    margin-top: 35px;
    box-shadow: 0px 0px 10px #000;
    border: none;
    width: fit-content;
}
.blogsListingSec .rightSec .card .card-body a.btn i {
    color: var(--primaryColor);
    transition: 300ms ease-in-out;
}
.blogsListingSec .rightSec .card .card-body a.btn:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}
.blogsListingSec .rightSec .card .card-body a.btn:hover i {
    color: var(--whiteColor);
}
.blogsListingSec .rightSec .card.card1 {
    display: flex;
    flex-direction: row;
}
.blogsListingSec .rightSec .card.card1 img {
    width: 40%;
    height: 100%;
    border-radius: 0;
}
.blogsListingSec .rightSec .card.card1 .card-body {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}
.blogsListingSec .rightSec .card.card1 .card-body .conTxt {
    display: flex;
    flex-direction: column;
}
.blogsListingSec .rightSec .card.card1 .card-body p {
    color: var(--whiteColor);
    opacity: 0.8;
}
.blogsListingSec .rightSec .card.card1 .card-body .btnAnimate {
    animation: pulseAnimation 2s infinite;
   /* Infinite animation */
    transition: background-color 0.5s ease-in-out;
}
.blogsListingSec .rightSec .card.card1 .card-body .btnAnimate:hover {
    background-color: var(--whiteColor);
    color: var(--primaryColor);
}
.blogsListingSec .rightSec .card:hover h5 {
    color: var(--primaryColor);
}
.blogsListingSec .rightSec a.btnLoadMore i {
    transition: 0.5s ease-in-out;
}
.blogsListingSec .rightSec a.btnLoadMore:hover i {
    transform: rotate(180deg);
}
.blogsListingSec .rightSec .btnLoadMore {
    display: flex;
    justify-content: center;
    gap: 5px;
    background-color: var(--primaryColor);
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border: none;
    color: var(--whiteColor);
    text-transform: uppercase;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 30px 30px 30px 30px;
    padding: 12px 24px;
    margin: auto;
}
.blogsListingSec .rightSec .btnLoadMore i {
    color: var(--whiteColor);
}
.blogsListingSec aside {
    padding-left: 10px;
}
.blogsListingSec aside .searchBox {
    height: 40px;
}
.blogsListingSec aside .searchBox input {
    font-size: 15px;
    font-weight: 400;
    border: 1px solid var(--primaryColor);
}
.blogsListingSec aside .searchBox .input-group-text {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border: 1px solid var(--primaryColor);
    cursor: pointer;
}
.blogsListingSec aside .recentPostsSec {
    margin-top: 35px;
}
.blogsListingSec aside .recentPostsSec h3 {
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primaryColor);
}
.blogsListingSec aside .recentPostsSec .asisePosts {
    border-bottom: 1px solid var(--primaryColor);
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 7px 0;
}
.blogsListingSec aside .recentPostsSec .asisePosts i {
    color: var(--primaryColor);
}
@keyframes pulseAnimation {
    0% {
        background-color: var(--color4D4E53);
       /* Primary Blue */
        color: var(--whiteColor);
   }
    50% {
        background-color: #fff;
       /* Orange */
        color: var(--primaryColor);
   }
    100% {
        background-color: var(--color4D4E53);
       /* Primary Blue */
        color: var(--whiteColor);
   }
}
@media only screen and (max-width: 991.5px) {
    .blogsListingSec aside {
        padding-left: 0;
   }
    .blogsListingSec aside .recentPostsSec h3 {
        font-size: 20px;
   }
    .blogsListingSec aside .recentPostsSec .asisePosts {
        font-size: 14px;
   }
    .blogsListingSec aside .recentPostsSec .asisePosts i {
        font-size: 13px;
   }
}
@media only screen and (max-width: 767.5px) {
    .blogsListingSec .rightSec {
        padding-right: 7px;
   }
    .blogsListingSec .rightSec .card img {
        height: auto;
   }
    .blogsListingSec .rightSec .card .card-body p {
        font-size: 15px !important;
   }
    .blogsListingSec aside {
        margin-top: 50px;
   }
}
@media only screen and (max-width: 575px) {
    .blogsListingSec .rightSec .card .card-body h5 {
        font-size: 17px;
   }
    .blogsListingSec .rightSec .card .card-body p {
        font-size: 14px !important;
   }
    .blogsListingSec .rightSec .card.card1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
   }
    .blogsListingSec .rightSec .card.card1 img {
        width: 100%;
        height: 200px;
        -o-object-position: 0 -30px;
        object-position: 0 -30px;
   }
    .blogsListingSec .rightSec .card.card1 .card-body {
        width: 100%;
   }
    .blogsListingSec .recentPostSec .card .card-body h5 {
        font-size: 17px !important;
   }
    .blogsListingSec .recentPostSec .card .card-body p {
        font-size: 14px !important;
   }
}


.blogDetailsSec .rightSec .card img {
    height: auto;
    object-fit: contain;
}
.blogDetailsSec .rightSec .card .card-body h2 {
    font-size: 26px;
    color: var(--primaryColor);
}
.blogDetailsSec .rightSec .card .card-body h3 {
    margin-bottom: 12px;
}
.blogDetailsSec .rightSec .card .card-body h4 {
    margin-bottom: 10px;
}
.blogDetailsSec .rightSec .card .card-body ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}
.blogDetailsSec .rightSec .card .card-body ul li {
    font-size: 15px;
    color: var(--commonColor);
    line-height: 1.3;
    margin-bottom: 5px;
}
.blogDetailsSec .rightSec .card .card-body .blogShare {
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 20px;
    color: var(--primaryColor);
    font-weight: 600;
}
.blogDetailsSec .rightSec .card .card-body .blogShare ul {
    list-style: none;
    margin-bottom: 0;
    gap: 15px;
}
.blogDetailsSec .rightSec .card .card-body .blogShare ul li {
    margin-bottom: 0;
    font-size: 20px;
}
.blogDetailsSec .rightSec .card:hover h5 {
    color: var(--commonColor);
}
.blogDetailsSec .recentPostSec {
    margin-top: 50px;
}
.blogDetailsSec .recentPostSec .row {
    row-gap: 15px;
}
.blogDetailsSec .recentPostSec h2 {
    font-size: 26px;
    padding-bottom: 0;
}
.blogDetailsSec .recentPostSec .card {
    height: 100%;
    border: 1px solid var(--primaryColor);
    border-radius: 7px;
    overflow: hidden;
}
.blogDetailsSec .recentPostSec .card img {
    height: 210px;
    object-fit: cover;
    cursor: pointer;
}
.blogDetailsSec .recentPostSec .card .card-body {
    background-color: var(--colorF5F7F8);
}
.blogDetailsSec .recentPostSec .card .card-body h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    cursor: pointer;
}
.blogDetailsSec .recentPostSec .card .card-body p {
    font-size: 15px;
}
.blogDetailsSec .recentPostSec .card .card-body a.btn {
    box-shadow: 0px 0px 10px #ccc 80;
    font-size: 13px;
    padding: 10px 20px;
}
.blogDetailsSec .recentPostSec nav .pagination {
    justify-content: right;
    margin-top: 25px;
}
.blogDetailsSec .recentPostSec nav .pagination li {
    transition: 0.3s ease-in-out;
}
.blogDetailsSec .recentPostSec nav .pagination li a {
    color: var(--commonColor);
    font-size: 15px;
}
.blogDetailsSec .recentPostSec nav .pagination li.active {
    background-color: var(--primaryColor);
}
.blogDetailsSec .recentPostSec nav .pagination li.active a {
    color: var(--whiteColor);
}
.blogDetailsSec aside .recentPostsSec:first-child {
    margin-top: 0;
}
@media only screen and (max-width: 991.5px) {
    .blogDetailsSec .rightSec .card .card-body h2 {
        font-size: 24px;
   }
    .blogDetailsSec .recentPostSec h2 {
        font-size: 24px;
   }
}
@media only screen and (max-width: 767.5px) {
    .blogDetailsSec .recentPostSec .card img {
        height: auto;
   }
}
@media only screen and (max-width: 575px) {
    .blogDetailsSec .rightSec .card .card-body h2 {
        font-size: 22px;
   }
    .blogDetailsSec .rightSec .card .card-body .blogShare {
        font-size: 18px;
   }
    .blogDetailsSec .rightSec .card .card-body .blogShare ul {
        padding-left: 15px;
        gap: 12px;
   }
    .blogDetailsSec .rightSec .card .card-body .blogShare ul li {
        font-size: 17px;
   }
    .blogDetailsSec .recentPostSec h2 {
        font-size: 22px;
   }
}


