




a {
    text-decoration: none
}

a:hover {
    color: #00b6a1;
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary)
}

section {
    padding: 20px 0;
    overflow: hidden;
    scroll-margin-top: 70px;
    overflow: clip
}

.section-header {
    text-align: center;
    padding-bottom: 60px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.section-header p {
    margin-bottom: 0;
    color: #6f6f6f
}

.breadcrumbs .page-header {
    padding: 120px 0 60px 0;
    min-height: 20vh;
    position: relative;
    background-color: #314455;
}

.breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary)
}

.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, .8)
}

.breadcrumbs nav {
    background-color: #f6f6f6;
    padding: 20px 0
}
.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-default)
}

.breadcrumbs nav ol a {
    color: var(--color-primary);
    transition: .3s
}

.breadcrumbs nav ol a:hover {
    text-decoration: underline
}

.breadcrumbs nav ol li+li {
    padding-left: 10px
}

.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary);
    content: "/"
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(.6, .6);
        opacity: 1
    }

    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(.6, .6);
        opacity: 1
    }

    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.blog .blog-pagination {
    margin-top: 30px;
    color: #555
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none
}
.blog .blog-pagination li {
    margin: 0 5px;
    transition: .3s;
    border-radius: 10px
}
.breadcrumbs:before{
    background-color:none;
}

.blog .blog-pagination li a {
    color: var(--color-default);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:white;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: var(--color-primary);
    color: #fff
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: var(--color-white)
}

.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden
}

.blog .posts-list .post-category {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px !important;
}

.blog .posts-list .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 6px 0;
    min-height:60px;
}

.blog .posts-list .title a {
    color: var(--color-default);
    transition: .3s
}

.blog .posts-list .title a:hover {
    color: var(--color-primary)
}

.blog .posts-list .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px
}

.blog .posts-list .post-author-list {
    font-weight: 600;
    margin-bottom: 5px
}

.blog .posts-list .post-date {
    font-size: 14px;
    color: #3c3c3c;
    margin-bottom: 10px !important;
}

.blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    padding: 30px;
    border-radius: 10px
}

.blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 10px 10px 0 0
}

.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: var(--color-default)
}

.blog .blog-details .content {
    margin-top: 20px
}

.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: 700
}

.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    border-radius: 10px
}

.blog .post-author img {
    max-width: 120px;
    margin-right: 20px
}

.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0;
    padding: 0;
    color: var(--color-default)
}

.blog .post-author p {
    font-style: italic;
    color: rgba(108, 117, 125, .8);
    margin-bottom: 0
}
.breadcrumbs:before {
    position: absolute;
    inset: 0;
}
.blog .posts-list article{
border-bottom:none;
 padding-bottom:10px;
}
.blog .posts-list .post-img{
border-bottom-right-radius:0;
}
.blog .blog-pagination li a{
      background-color:white;
      color:black;
}
*+address, *+dl, *+fieldset, *+figure, *+ol, *+p, *+pre, *+ul {
margin-top: 0px !important;
}
address, dl, fieldset, figure, ol, p, pre, ul {
    margin: 0 0 0px 0 !important;
}
.img-fluid{
    height:240px;
    width:150%;
    object-fit:fill;
}
