/* frontend-deferred-project-details.bundle.css */

/* === public/assets/css/module-css/project.css === */
/*==============================================
    Project Details
===============================================*/
.project-details {
    position: relative;
    display: block;
    padding: 80px 0 80px;
    z-index: 1;
}

.project-details__img {
    position: relative;
    display: block;
}

.project-details__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.project-details__info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 586px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--anity-bdr-radius);
}

.project-details__info-title-box {
    position: relative;
    display: block;
    background-color: #F84D42;
    text-align: center;
    padding: 11px 10px 8px;
}

.project-details__info-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--anity-white);
}

.project-details__info-and-social {
    position: relative;
    display: flex;
    border: 1px solid #E3E3E3;
    background-color: var(--anity-white);
    border-top: 0;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 30px;
    border-bottom-left-radius: var(--anity-bdr-radius);
    border-bottom-right-radius: var(--anity-bdr-radius);
}

.project-details__info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-details__info-list {
    position: relative;
    display: block;
}

.project-details__info-list li {
    position: relative;
    display: block;
}

.project-details__info-list li+li {
    margin-top: 20px;
}

.project-details__info-list li p {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.project-details__info-list li p span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--anity-font);
    color: var(--anity-gray);
    margin-left: 10px;
}

.project-details__social {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.project-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30px;
    height: 30px;
    border: 1px solid var(--anity-base);
    border-radius: 50%;
    font-size: 16px;
    color: var(--anity-base);
}

.project-details__social a:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.project-details__left {
    position: relative;
    display: block;
}

.project-details__title-1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-top: 30px;
    margin-bottom: 19px;
}

.project-details__text-2 {
    margin-top: 20px;
    margin-bottom: 19px;
}

.project-details__points {
    position: relative;
    display: block;
}

.project-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-details__points li+li {
    margin-top: 11px;
}

.project-details__points li .icon {
    position: relative;
    display: inline-block;
}

.project-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--anity-base);
}

.project-details__points li p {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.project-details__title-2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 29px;
    margin-bottom: 22px;
}

.project-details__right {
    position: relative;
    display: block;
    margin-top: 30px;
}

.project-details__right-img-1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-details__right-img-1 img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.project-details__right-img-2 {
    position: relative;
    display: block;
}

.project-details__right-img-2 img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.project-details__pagination {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    margin-top: 30px;
}

.project-details__pagination .pg-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 30px;
}

.project-details__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
}

.project-details__pagination .pg-pagination li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--anity-black);
    gap: 20px;
    font-weight: 700;
    font-size: 20px;
    font-family: var(--anity-font-two);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__pagination .pg-pagination li a:hover {
    color: var(--anity-base);
}

.project-details__pagination .pg-pagination li a i {
    color: var(--anity-base);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F4F4F4;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-details__pagination .pg-pagination li:hover a i {
    color: var(--anity-white);
    background-color: var(--anity-base);
}

.project-details__pagination .pg-pagination li:first-child a i {
    transform: rotate(-180deg);
}

/*--------------------------------------------------------------
# Cause Details
--------------------------------------------------------------*/
.cause-details {
    position: relative;
    display: block;
    padding: 20px 0 40px;
    z-index: 1;
}

.cause-details__left {
    position: relative;
    display: block;
}

.cause-details__img-box {
	position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cause-details__img {
	height: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cause-details__img img {
	width: 100%;
    border-radius: 15px;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

.cause-details__meta {
    position: relative;
    display: block;
    margin-top: 25px;
}

.cause-details__meta a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--anity-base);
}

.cause-details__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 20px;
}

.cause-details__progress-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cause-details__progress {
    position: relative;
    display: block;
    width: 100%;
}

.cause-details__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: #DDDDDD;
    border-radius: 0px;
}

.cause-details__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.cause-details__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cause-details__raised {
    position: relative;
    display: block;
}

.cause-details__raised p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--anity-black);
}

.cause-details__raised p span {
    font-weight: 400;
    color: var(--anity-gray);
}

.cause-details__raised p i {
    color: var(--anity-base);
}

.cause-details__donation-amout-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 40px;
    border-bottom: 1px solid #DDDDDD;
}

.cause-details__donation-amout-list span {
    position: relative;
    display: inline-block;
    background-color: var(--anity-extra-two);
    padding: 14px 25px;
    border-radius: 35px;
    font-weight: 700;
    line-height: 26px;
    color: var(--anity-gray);
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cause-details__donation-amout-list span:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.cause-details__pament-box {
    position: relative;
    display: block;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 51px;
    margin-bottom: 41px;
}

.cause-details__pament-title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
}

.cause-details__quote-radio {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.cause-details__quote-radio .custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cause-details__quote-radio input[type="radio"] {
    display: none;
}

.cause-details__quote-radio .custom-radio .radio-dot {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: block;
    position: relative;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cause-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot {
    border-color: var(--anity-base);
}

.cause-details__quote-radio .custom-radio .radio-dot::after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #dddddd;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.3s ease-in-out 0s;
}

.cause-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--anity-base);
}

.cause-details__quote-radio .custom-radio .radio-text {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
    position: relative;
    top: 2px;
}

.cause-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-text {
    color: var(--anity-black);
}

.cause-details__form {
    position: relative;
    display: block;
}

.cause-details__input-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.cause-details__input-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 12px;
    font-family: var(--anity-font);
}

.cause-details__input-box input[type="text"],
.cause-details__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    background-color: var(--anity-extra-two);
    border: none;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--anity-gray);
    display: block;
    font-weight: 400;
    border-radius: var(--anity-bdr-radius);
    line-height: 60px;
}

.cause-details__donate-and-btn {
    position: relative;
    display: block;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.cause-details__donate-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cause-details__donate-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 12px;
    font-family: var(--anity-font);
}

.cause-details__donate {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
	border:none;
}

.cause-details__donate input {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
    background-color: var(--anity-extra-two);
    padding: 16px 30px 16px;
    border-radius: var(--anity-bdr-radius);
	border:none;
}

.cause-details__donate p {
    font-weight: 700;
    color: var(--anity-black);
}

.cause-details__donate-btn {
    position: relative;
    display: block;
}

.cause-details__donate-btn button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--anity-base);
    color: var(--anity-white);
    padding: 16px 47px 16px;
    border-radius: var(--anity-bdr-radius);
    border: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cause-details__donate-btn button:hover {
    background-color: var(--anity-black);
}

.cause-details__text-2 {
    margin-top: 24px;
    margin-bottom: 30px;
}

.cause-details__img-box-2 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.cause-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.cause-details__img-box-img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.cause-details__title-1 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700px;
}

.cause-details__text-4 {
    margin-top: 22px;
    margin-bottom: 22px;
}

.cause-details__text-4 .color-black {
    color: var(--anity-black);
    font-weight: 600;
}

.cause-details__text-4 .color-base {
    color: var(--anity-base);
    font-weight: 600;
}

.cause-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 130px;
    margin-top: 20px;
}

.cause-details__points-list {
    position: relative;
    display: block;
}

.cause-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cause-details__points-list li+li {
    margin-top: 2px;
}

.cause-details__points-list li .icon {
    position: relative;
    display: inline-block;
}

.cause-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-extra);
}

.cause-details__points-list li p {
    font-weight: 700;
}

.sidebar__gallery {
    position: relative;
    display: block;
    padding: 30px 30px 10px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__gallery-img {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sidebar__gallery-img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.sidebar__call-to-action {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--anity-base);
    border-radius: var(--anity-bdr-radius);
    padding: 100px 50px 110px;
    z-index: 1;
}

.sidebar__call-to-action-sub-title {
    color: var(--anity-white);
}

.sidebar__call-to-action-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--anity-white);
}

.sidebar__call-to-action-btn-box {
    position: relative;
    display: block;
    margin-top: 28px;
}

.sidebar__call-to-action-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/*--------------------------------------------------------------
# Project page
--------------------------------------------------------------*/
.projects-page {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.projects-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.projects-page__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--anity-bdr-radius);
    z-index: 1;
}

.projects-page__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    background-color: rgba(var(--anity-base-rgb), 0.7);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
    border-radius: var(--sopot-bdr-radius);
    z-index: 1;
}

.projects-page__single:hover .projects-page__img:before {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.projects-page__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.projects-page__single:hover .projects-page__img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.projects-page__icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.projects-page__icon a {
    height: 80px;
    width: 80px;
    background-color: var(--anity-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: var(--anity-white);
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    z-index: 2;
}

.projects-page__single:hover .projects-page__icon a {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.projects-page__icon a:hover {
    background-color: var(--anity-white);
    color: var(--anity-base);
}
.donation-page #appendPaginatedHtml > [class*='col-'] {
    display: flex;
}
@media screen and (max-width: 768px) {
    .cause-details__img-box {
        height: 40vh;
    }
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/* === public/assets/css/module-css/donate.css === */
/*==============================================
    Donate One
===============================================*/
.donate-one {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.donate-one.pdt {
    padding-top: 140px;
}

.donate-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-base);
    border-radius: 20px;
    padding: 77px 60px 55px;
    margin-bottom: 30px;
    z-index: 1;
}

.donate-one__single-2 {
    background-color: var(--anity-extra);
}

.donate-one__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.donate-one__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.donate-one__title a {
    color: var(--anity-white);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.donate-one__title a:hover {
    color: var(--anity-black);
    background-size: 100% 1px;
}

.donate-one__text {
    font-size: 18px;
    line-height: 34px;
    color: var(--anity-white);
    margin-top: 20px;
    margin-bottom: 38px;
}

.donate-one__btn-box {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Donate Two
--------------------------------------------------------------*/
.donate-two {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.donate-two__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 780px;
    background-color: var(--anity-extra-two);
    z-index: -1;
}

.donate-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.donate-two__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 55px;
}

.donate-two__top .section-title-two {
    margin-bottom: 0px;
}

.donate-two__top .section-title-two__title span img {
    right: -15px;
}

.donate-two__btn-box {
    position: relative;
    display: block;
}

.donate-two__single {
    position: relative;
    display: block;
    background: var(--anity-white);
    box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
    border-radius: var(--anity-bdr-radius);
    padding: 20px 20px 40px;
    margin-bottom: 40px;
}

.donate-two__img-box {
    position: relative;
    display: block;
}

.donate-two__img {
    position: relative;
    display: block;
}

.donate-two__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.donate-two__img img:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 0;
    width: 100%;
    transition: 0.5s;
    overflow: hidden;
}

.donate-two__single:hover .donate-two__img img:nth-child(2) {
    height: 100%;
    visibility: visible;
}

.donate-two__content {
    position: relative;
    display: block;
    padding: 40px 20px 0;
}

.donate-two__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
}

.donate-two__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.donate-two__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.donate-two__single-2 .donate-two__title a:hover {
    color: var(--anity-extra);
}

.donate-two__single-3 .donate-two__title a:hover {
    color: var(--anity-primary);
}

.donate-two__text {
    margin-top: 10px;
    margin-bottom: 20px;
}

.donate-two__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.donate-two__raised {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.donate-two__raised span {
    color: var(--anity-black);
}

.donate-two__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 45px;
    margin-top: 16px;
}

.donate-two__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--anity-extra-two);
    border-radius: 0px;
}

.donate-two__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.donate-two__single-2 .donate-two__progress .bar-inner {
    background: var(--anity-extra);
}

.donate-two__single-3 .donate-two__progress .bar-inner {
    background: var(--anity-primary);
}

.donate-two__progress .bar-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--anity-white);
    border: 3px solid var(--anity-base);
    transform: translateY(-50%);
}

.donate-two__single-2 .donate-two__progress .bar-inner::before {
    border: 3px solid var(--anity-extra);
}

.donate-two__single-3 .donate-two__progress .bar-inner::before {
    border: 3px solid var(--anity-primary);
}

/*--------------------------------------------------------------
# Donate Three
--------------------------------------------------------------*/
.donate-three {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 140px 0 110px;
    z-index: 1;
}

.donate-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

.donate-three__top .section-title {
    margin-bottom: 0;
}

.donate-three__btn-box {
    position: relative;
    display: block;
    top: -10px;
}

.donate-three__single {
    position: relative;
	flex: 1;
    display: flex;
	flex-direction: column;
    background-color: var(--anity-white);
    border: 1px solid #dddddd;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.donate-three__single:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.donate-three__img-box {
    position: relative;
    display: block;
}

.donate-three__img {
    position: relative;
    display: block;
    border-top-left-radius: var(--anity-bdr-radius);
    border-top-right-radius: var(--anity-bdr-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.donate-three__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-left-radius: var(--anity-bdr-radius);
    border-top-right-radius: var(--anity-bdr-radius);
}

.donate-three__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-left-radius: var(--anity-bdr-radius);
    border-top-right-radius: var(--anity-bdr-radius);
}

.donate-three__single > a {
    display: block;
    line-height: 0;
}

.donate-three__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.donate-three__single:hover .donate-three__img img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.donate-three__img iframe:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.donate-three__single:hover .donate-three__img iframe:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.donate-three__content {
    position: relative;
    display: block;
    padding: 4px 10px 20px;
}

.donate-three__title {
    font-size: 24px;
    line-height: 25px;
    font-weight: 700;
}

.donate-three__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.donate-three__title a:hover {
    color: var(--anity-base);
}

.donate-three__single-2 .donate-three__title a:hover {
    color: var(--anity-extra);
}

.donate-three__single-3 .donate-three__title a:hover {
    color: var(--anity-primary);
}

.donate-three__text {
    margin-top: 7px;
    margin-bottom: 7px;;
	line-height: 1.5em;
}

.donate-three__goals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.donate-three__raised {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.donate-three__raised span {
    color: var(--anity-black);
}

.donate-three__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 16px;
	padding: 0px 15px;
}

.donate-three__progress .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--anity-extra-two);
    border-radius: 0px;
}

.donate-three__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    border-radius: 0px;
    background: var(--anity-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.donate-three__single-2 .donate-three__progress .bar-inner {
    background: var(--anity-extra);
}

.donate-three__single-3 .donate-three__progress .bar-inner {
    background: var(--anity-primary);
}

.donate-three__progress .bar-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--anity-white);
    border: 3px solid var(--anity-base);
    transform: translateY(-50%);
}

.donate-three__single-2 .donate-three__progress .bar-inner::before {
    border: 3px solid var(--anity-extra);
}

.donate-three__single-3 .donate-three__progress .bar-inner::before {
    border: 3px solid var(--anity-primary);
}


/*--------------------------------------------------------------
# Donation One
--------------------------------------------------------------*/
.donation-one {
    position: relative;
    display: block;
    z-index: 1;
}

.donation-one.pdt {
    padding-top: 120px;
}



.donation-one__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.donation-one__left {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    min-height: 575px;
    z-index: 1;
}

.donation-one__left-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--anity-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.donation-one__right {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    z-index: 1;
}

.donation-one__content-box {
    position: relative;
    display: block;
    background-color: var(--anity-black);
    padding: 120px 0 120px;
    padding-left: 90px;
}

.donation-one__content-box .section-title-two__title {
    color: var(--anity-white);
}

.donation-one__donate-box {
    position: relative;
    display: block;
}

.donation-one__donate-box .donate-amount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 26px;
}

.donation-one__donate-box .donate-amount .amount-btn {
    color: var(--anity-gray);
    padding: 19px 30px 19px;
    background-color: #232425;
    transition: all 0.4s ease-in-out;
    border: none;
    font-size: 18px;
    line-height: 18px;
    border-radius: 28px;
}

.donation-one__donate-box .donate-amount .amount-btn.active {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.donation-one__donate-box .donate-now {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.donation-one__donate-box .donate-now input {
    width: 100%;
    padding: 13px 20px 13px;
    background-color: #232425;
    color: var(--anity-gray);
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 30px;
}




.donation-one__right--style2 {
    position: relative;
}

.donation-one__right--style2 .donation-one__content-box {
    background-image: -ms-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -moz-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -o-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ff5528), color-stop(100, #ffa415));
    background-image: -webkit-linear-gradient(left, #ff5528 0%, #ffa415 100%);
    background-image: linear-gradient(to right, #ff5528 0%, #ffa415 100%);
}

.donation-one__right--style2 .donation-one__donate-box .donate-amount .amount-btn {
    color: rgba(255, 255, 255, 0.8);
}



/*--------------------------------------------------------------
  # Donation Details
  --------------------------------------------------------------*/
.donation-details {
    position: relative;
    display: block;
    padding: 40px 0 40px;
    z-index: 1;
}

.donation-details__inner {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    /* Equal inset on top/left/right so the title sits the same distance from the border */
    padding: 28px 28px 32px;
    width: 100%;
    max-width: min(720px, calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.donation-details__payment-method-box {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.donation-details__payment-method-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.donation-details__quote-radio {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.donation-details__quote-radio .custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.donation-details__quote-radio input[type="radio"] {
    display: none;
}

.donation-details__quote-radio .custom-radio .radio-dot {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: block;
    position: relative;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.donation-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot {
    border-color: var(--anity-base);
}

.donation-details__quote-radio .custom-radio .radio-dot::after {
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: #dddddd;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.3s ease-in-out 0s;
}

.donation-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--anity-base);
}

.donation-details__quote-radio .custom-radio .radio-text {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
    position: relative;
    top: 2px;
}

.donation-details__quote-radio .custom-radio input[type="radio"]:checked~.radio-text {
    color: var(--anity-black);
}

.donation-details__personal-info {
    position: relative;
    display: block;
}

.donation-details__personal-info-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 47px;
}

.donation-details__form {
    position: relative;
    display: block;
}

.donation-details__input-box {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.donation-details__input-box-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--anity-gray);
    line-height: 18px;
    margin-bottom: 27px;
}

/* Amount field only as wide as the label text (not full row) */
.donation-details__donate-box .donate-now--amount-fit {
	display: grid;
	grid-template-columns: max-content;
	justify-items: stretch;
	max-width: 100%;
	align-self: flex-start;
}

.donation-details__donate-box .donate-now--amount-fit input.addAmount-value {
	width: 70%;
	min-width: 0;
	max-width: 100%;
	justify-self: start;
}

.donation-details__input-box input[type="text"],
.donation-details__input-box input[type="email"] {
    height: 80px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: #dddddd;
    display: block;
    border-radius: var(--anity-bdr-radius);
    font-family: var(--anity-font-two);
}

.donation-details__donate-box-outer {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.donation-details__donate-box-divider {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--anity-gray);
    text-transform: uppercase;
    position: relative;
    margin-top: 55px;
}

.donation-details__donate-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 35px;
}

.donation-details__donate-box .donate-amount {
    position: relative;
    display: block;
}

.donation-details__donate-box .donate-amount .amount-btn {
    color: var(--anity-gray);
    padding: 30px 30px 30px;
    background-color: var(--anity-white);
    transition: all 0.4s ease-in-out;
    border: none;
    font-size: 20px;
    line-height: 20px;
    border-radius: var(--anity-bdr-radius);
    font-weight: 700;
    font-family: var(--anity-font-two);
}

.donation-details__donate-box .donate-amount .amount-btn+.amount-btn {
    margin-left: 15px;
}

.donation-details__donate-box .donate-amount .amount-btn.active {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.donation-details__donate-box .donate-now {
    position: relative;
    display: block;
}

.donation-details__donate-box .donate-now input {
    height: 52px;
    width: 100%;
    background-color: var(--anity-white);
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    outline: none;
    font-size: 26px;
    font-weight: 700;
    color: #828181;
    display: block;
    border-radius: var(--anity-bdr-radius);
    font-family: var(--anity-font-two);
    line-height: 1.15;
}

.donation-details__donate-amout {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--anity-font-two);
}
.donation-details__donate-amout .donateAmount {
	color: var(--anity-font-two);
}

.donation-details__donate-amout span {
    font-size: 20px;
    color: var(--anity-black);
}

/*--------------------------------------------------------------
# Donation Page
--------------------------------------------------------------*/
.donation-page {
    position: relative;
    display: block;
    padding: 40px 0 40px;
}

/* Match homepage (found-one) money counter on projects listing */
.donation-page .donate-three__goals {
    margin-bottom: 15px;
}

.donation-page .donate-three__raised {
    display: block;
    gap: 0;
}

.donation-page .donate-three__progress {
    margin-top: 0;
    padding: 0;
}

.donation-page .donate-three__progress .bar {
    background: #dddddd;
}

.donation-page .donate-three__progress .bar-inner {
    background: var(--anity-extra);
}

.donation-page .donate-three__progress .bar-inner::before {
    content: none !important;
    display: none !important;
}

/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.donation-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 190px;
}

.donation-carousel-page .donate-three__single {
    margin-bottom: 0;
}
.donation-details__btn-box {
	text-align: left;
}

/* Day view: match header Donate Now (outline pill, not grey native button fill) */
html:not(.night-view) .donation-details__btn-box .thm-btn {
	color: var(--anity-black);
	border: 1px solid var(--anity-base);
	background-color: transparent;
}

html:not(.night-view) .donation-details__btn-box .thm-btn::after {
	background-color: var(--anity-base);
}

html:not(.night-view) .donation-details__btn-box .thm-btn span {
	background-color: var(--anity-base);
	color: var(--anity-white);
}

html:not(.night-view) .donation-details__btn-box .thm-btn:hover,
html:not(.night-view) .donation-details__btn-box .thm-btn:active,
html:not(.night-view) .donation-details__btn-box .thm-btn:focus-visible {
	color: var(--anity-white);
	border-color: var(--anity-base);
}

html:not(.night-view) .donation-details__btn-box .thm-btn:hover span,
html:not(.night-view) .donation-details__btn-box .thm-btn:active span,
html:not(.night-view) .donation-details__btn-box .thm-btn:focus-visible span {
	background-color: var(--anity-white);
	color: var(--anity-base);
}

.donation-details__btn-box .donation-details__btn{
	width:200px;
}

/*--------------------------------------------------------------
# Montonio widget width (stable on wide viewports; was squeezed in col-6)
# Uses #montonio-gateway-div so shop checkout (no .donation-details section) still matches
--------------------------------------------------------------*/
#montonio-gateway-div #montonio-checkout {
	width: 440px;
	max-width: 100%;
	box-sizing: border-box;
	flex-shrink: 0;
}

/*--------------------------------------------------------------
# Montonio bank grid (SDK injects .montonio-container / .montonio-bank)
--------------------------------------------------------------*/
#montonio-checkout .montonio-container {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding-top: 12px !important;
	width: 100%;
	flex-direction: unset !important;
	flex-wrap: unset !important;
	align-items: stretch;
}

#montonio-checkout .montonio-bank {
	width: 100% !important;
	max-width: none;
	height: 70px !important;
	min-height: 0;
	margin: 0 !important;
	padding: 8px !important;
	box-sizing: border-box;
}

#montonio-checkout .montonio-bank img {
	max-height: 34px;
}

@media (max-width: 575px) {
	/* Keep 4 banks per row on phones; shrink tiles to fit */
	#montonio-gateway-div #montonio-checkout {
		width: 100%;
		max-width: 100%;
	}

	#montonio-checkout .montonio-container {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 5px;
		padding-top: 8px !important;
	}

	#montonio-checkout .montonio-bank {
		height: 48px !important;
		padding: 4px !important;
		border-radius: 12px;
	}

	#montonio-checkout .montonio-bank img {
		max-height: 22px;
	}
}

/*--------------------------------------------------------------
# Montonio country select — light in day mode
# color-scheme meta + OS dark mode otherwise darkens the native SDK select.
--------------------------------------------------------------*/
html:not(.night-view) #montonio-checkout,
html:not(.night-view) #montonio-gateway-div #montonio-checkout {
	color-scheme: light;
}

html:not(.night-view) #montonio-checkout select,
html:not(.night-view) #montonio-checkout .montonio-bank-select-class,
html:not(.night-view) .donation-details #montonio-checkout select,
html:not(.night-view) .checkout-page #montonio-checkout select {
	background-color: #ffffff !important;
	border: 2px solid #e1e8ed !important;
	color: #374151 !important;
	color-scheme: light;
}

html:not(.night-view) #montonio-checkout select option {
	background-color: #ffffff;
	color: #374151;
}

/*--------------------------------------------------------------
# EveryPay in-page bank selector (LHV hosted-page layout)
--------------------------------------------------------------*/
#everypay-gateway-div #everypay-checkout {
	width: 100%;
	max-width: 520px;
	box-sizing: border-box;
	flex-shrink: 0;
}

.everypay-panel__card {
	overflow: hidden;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.everypay-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid #eceff3;
	background: #fafafa;
	position: relative;
	z-index: 2;
}

.everypay-panel__head-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
}

.everypay-panel__bank-icon {
	flex-shrink: 0;
	color: #374151;
}

.everypay-panel__country {
	position: relative;
	flex-shrink: 0;
}

.everypay-panel__country-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 2px 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #6b7280;
}

.everypay-panel__country-toggle:focus {
	outline: none;
}

.everypay-panel__country-toggle:focus-visible {
	outline: 2px solid #111827;
	outline-offset: 2px;
	border-radius: 4px;
}

.everypay-panel__flag-img {
	display: block;
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.everypay-panel__chevron {
	flex-shrink: 0;
}

.everypay-panel__country-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 20;
	display: flex;
	flex-direction: column;
	min-width: 52px;
	padding: 6px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}

.everypay-panel__country-menu[hidden] {
	display: none;
}

.everypay-panel__country-option {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 8px 10px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
}

.everypay-panel__country-option:hover,
.everypay-panel__country-option--active {
	background: #f3f4f6;
}

.everypay-panel__country-option img {
	display: block;
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
}

.everypay-hint {
	margin: 0;
	padding: 16px;
	color: var(--anity-gray);
	font-size: 15px;
}

.everypay-bank-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.everypay-bank-list__item {
	border-bottom: 1px solid #eceff3;
}

.everypay-bank-list__item:last-child {
	border-bottom: 0;
}

.everypay-bank-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 16px 18px;
	border: 0;
	background: #ffffff;
	cursor: pointer;
	text-align: left;
	box-sizing: border-box;
	transition: background-color 0.15s ease;
}

.everypay-bank-row:hover {
	background: #f9fafb;
}

.everypay-bank-row--selected {
	background: #f3f4f6;
}

.everypay-bank-row__name {
	flex: 1;
	min-width: 0;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 400;
	color: #111827;
}

.everypay-bank-row__logo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	min-width: 72px;
	max-width: 42%;
}

.everypay-bank-row__logo img {
	display: block;
	max-height: 28px;
	max-width: 120px;
	width: auto;
	object-fit: contain;
}

@media (max-width: 575px) {
	#everypay-gateway-div #everypay-checkout {
		max-width: 100%;
	}

	.everypay-panel__head {
		padding: 12px 14px;
	}

	.everypay-bank-row {
		padding: 14px 14px;
	}

	.everypay-bank-row__name {
		font-size: 14px;
	}

	.everypay-bank-row__logo img {
		max-height: 24px;
		max-width: 96px;
	}
}

/*--------------------------------------------------------------
# Stripe embedded checkout
--------------------------------------------------------------*/
.stripe-embedded-wrap {
	width: 100%;
	max-width: 520px;
}

.stripe-embedded-hint {
	margin: 0 0 12px;
	color: var(--anity-gray);
	font-size: 15px;
}

#stripe-embedded-checkout {
	min-height: 460px;
	width: 100%;
}

@media (max-width: 575px) {
	.stripe-embedded-wrap,
	#stripe-embedded-checkout {
		max-width: 100%;
	}

	#stripe-embedded-checkout {
		min-height: 420px;
	}
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* === public/assets/css/module-css/blog.css === */
/*==============================================
    Blog One
===============================================*/
.blog-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 40px 0 40px;
    z-index: 1;
}

.blog-one .section-title {
	margin-bottom: 10px;
}

.blog-one--style2 {
    padding: 140px 0px 110px;
}

.blog-one__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
}
.blog-one__single .blog-one__content{
	padding: 4px 20px 20px;
}

.blog-one__img-box {
    position: relative;
    display: block;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-one__img::after {
    /* background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.05) 0px, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.05) 77%, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.25) 92%, rgba(var(--karoons-white-rgb, 52, 52, 52), 0)); */
    /* content: ""; */
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.blog-one__single:hover .blog-one__img::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.blog-one__img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-one__single:hover .blog-one__img img {
    /* transform: scale(1.05) rotate(0deg); */
}

.blog-one__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.blog-one__img-box:hover .blog-one__img img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.blog-one__img-box iframe:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 0.5s;
    overflow: hidden;
}

.blog-one__img-box:hover .blog-one__img iframe:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.blog-one__date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    width: 71px;
    height: 78px;
    background-color: var(--anity-white);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.blog-one__date::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: var(--anity-primary);
    z-index: -1;
}

.blog-one__date p {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    color: var(--anity-black);
    font-family: var(--anity-font-two);
}

.blog-one__date p span {
    font-size: 16px;
    text-transform: uppercase;
}

.blog-one__content {
    position: relative;
    display: block;
    padding-top: 4px;
}

.blog-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.blog-one__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-one__title a:hover {
    color: var(--anity-base);
}

.blog-one__btn-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.blog-two__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    margin-bottom: 30px;
}

.blog-two__img-box {
    position: relative;
    display: block;
}

.blog-two__img {
    position: relative;
    display: block;
    border-top-right-radius: var(--anity-bdr-radius);
    border-top-left-radius: var(--anity-bdr-radius);
    overflow: hidden;
}

.blog-two__img img {
    width: 100%;
    border-top-right-radius: var(--anity-bdr-radius);
    border-top-left-radius: var(--anity-bdr-radius);
    transition: 0.5s;
    background-size: cover;
}

.blog-two__img img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-two__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.blog-two__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--anity-black-rgb), 0.6);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-two__link::before,
.blog-two__link::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--anity-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-two__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-two__single:hover .blog-two__link {
    opacity: 1;
    transform: translateY(0);
}

.blog-two__single:hover .blog-two__img img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-two__single:hover .blog-two__img img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-two__content {
    position: relative;
    display: block;
    padding: 20px 40px 40px;
}

.blog-two__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

.blog-two__meta li {
    position: relative;
    display: block;
}

.blog-two__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--anity-gray);
}

.blog-two__meta li a:hover {
    color: var(--anity-base);
}

.blog-two__meta li a span {
    color: var(--anity-base);
}

.blog-two__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-two__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-two__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.blog-two__btn-box {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.blog-three__single {
    position: relative;
    display: block;
    background-color: var(--anity-white);
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: var(--anity-bdr-radius);
    padding: 20px 20px 40px;
    margin-bottom: 30px;
}

.blog-three__img-box {
    position: relative;
    display: block;
}

.blog-three__img {
    position: relative;
    display: block;
    border-radius: var(--anity-bdr-radius);
    overflow: hidden;
}

.blog-three__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
    transition: 0.5s;
    background-size: cover;
}

.blog-three__img img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-three__img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.blog-three__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--anity-black-rgb), 0.6);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-three__link::before,
.blog-three__link::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--anity-white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-three__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-three__single:hover .blog-three__link {
    opacity: 1;
    transform: translateY(0);
}

.blog-three__single:hover .blog-three__img img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-three__single:hover .blog-three__img img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-three__content {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-left: 20px;
}

.blog-three__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

.blog-three__meta li {
    position: relative;
    display: block;
}

.blog-three__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--anity-gray);
}

.blog-three__meta li a:hover {
    color: var(--anity-base);
}

.blog-three__meta li a span {
    color: var(--anity-base);
}

.blog-three__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-three__title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-three__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.blog-three__read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--anity-black);
    margin-top: 40px;
}

.blog-three__read-more:hover {
    color: var(--anity-base);
}

.blog-three__read-more span {
    color: var(--anity-base);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 20px 0 40px;
    z-index: 1;
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-details__img {
    position: relative;
	height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.blog-details__img .img-wrapper {
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.blog-details__img img {
    width: 100%;
    border-radius: 15px;
	height: auto;
    object-fit: contain;
    max-height: 100%;
}

.blog-details__content {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-bottom: 29px;
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details__meta li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details__meta li .icon {
    position: relative;
    display: inline-block;
}

.blog-details__meta li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.blog-details__meta li a {
    color: var(--anity-gray);
}

.blog-details__meta li a:hover {
    color: var(--anity-base);
}

.blog-details__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-top: 21px;
    margin-bottom: 19px;
}


.blog-details__text-2 {
    margin-top: 20px;
    margin-bottom: 42px;
}

.blog-details__author-box {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    padding: 40px 40px 44px;
    margin-bottom: 30px;
}

.blog-details__author-name {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
    position: relative;
    display: inline-block;
    padding-left: 52px;
    margin-top: 34px;
}

.blog-details__author-name::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--anity-base);
    transform: translateY(-50%);
}

.blog-details__author-quote {
    position: absolute;
    bottom: 37px;
    right: 43px;
}

.blog-details__author-quote span {
    position: relative;
    display: inline-block;
    font-size: 28px;
    color: var(--anity-base);
}

.blog-details__keyword-and-tag {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    padding: 20px 0 20px;
}

.blog-details__keyword {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details__keyword span {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.blog-details__keyword-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details__keyword-list a {
    position: relative;
    background-color: var(--anity-extra-two);
    color: var(--anity-gray);
    line-height: 26px;
    border-radius: 10px;
    padding: 12px 20px 12px;
}

.blog-details__keyword-list a:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

.blog-details__tag {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details__tag span {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--anity-font-two);
    color: var(--anity-black);
}

.blog-details__tag-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details__tag-list a {
    color: var(--anity-gray);
}

.blog-details__tag-list a:hover {
    color: var(--anity-base);
}

.comment-one {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.comment-one__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.comment-one__single+.comment-one__single {
    margin-top: 30px;
}

.comment-one__image {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
}

.comment-one__image img {
    width: 100%;
    border-radius: 50%;
}

.comment-one__content {
    position: relative;
    display: block;
}

.comment-one__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 7px;
}

.comment-one__content p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.comment-one__btn-box {
    position: relative;
    display: inline-block;
}

.comment-one__btn-box a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--anity-base);
    letter-spacing: 1.4px;
}

.comment-one__btn-box a:hover {
    color: var(--anity-black);
}

.comment-form {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    border-radius: var(--anity-bdr-radius);
    padding: 60px 40px 60px;
}

.comment-form .row {
    --bs-gutter-x: 20px;
}

.comment-form .comment-form__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    border-bottom: none;
}

.comment-form__text {
    color: var(--anity-black);
    margin-top: 9px;
    margin-bottom: 29px;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--anity-black);
    background-color: var(--anity-white);
    display: block;
    border: none;
    border-radius: var(--anity-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__input-box textarea {
    font-size: 16px;
    font-weight: 400;
    height: 165px;
    width: 100%;
    padding: 15px 30px 30px;
    outline: none;
    margin-bottom: 0px;
    border: none;
    color: var(--anity-black);
    background-color: var(--anity-white);
    border-radius: var(--anity-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__check-and-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.comment-form__input-box.text-message-box {
    height: 165px;
    margin-bottom: 0;
}

.comment-form .checked-box {
    position: relative;
    display: block;
}

.comment-form .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--anity-black);
    cursor: pointer;
    min-height: 25px;
}

.comment-form .checked-box input[type="checkbox"] {
    display: none;
}

.comment-form .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 9px;
    left: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    border: 1px solid var(--anity-black);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comment-form .checked-box label span:before {
    position: absolute;
    top: 1px;
    left: 2px;
    display: block;
    border-bottom: 2px solid var(--anity-black);
    border-right: 2px solid var(--anity-black);
    content: '';
    width: 5px;
    height: 8px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.comment-form.checked-box input[type="checkbox"]:checked+label span {
    border-color: #4D4E50;
    ;
}

.comment-form .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }

    .sidebar--two {
        margin-top: 0;
        margin-bottom: 50px;
    }

}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar {
    position: relative;
    display: block;
}

.sidebar__title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.sidebar__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 11px;
}

.sidebar__search {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    display: block;
    outline: none;
    background-color: var(--anity-white);
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 20px;
    border: none;
    color: var(--anity-gray);
    border-radius: 30px;
}

.sidebar__search-form button[type="submit"] {
    color: var(--anity-black);
    font-size: 22px;
    position: absolute;
    top: 50%;
    right: 15px;
    max-width: 40px;
    width: 100%;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateY(-50%);
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__category {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__category .sidebar__title-box {
    margin-bottom: 20px;
}

.sidebar__category-list {
    position: relative;
    display: block;
}

.sidebar__category-list li {
    position: relative;
    display: block;
}

.sidebar__category-list li+li {
    margin-top: 11px;
}

.sidebar__category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: color 500ms ease;
}

.sidebar__category-list li a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
    transition: none;
}

.sidebar__category-list li.active a,
.sidebar__category-list li.active a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
    transition: none;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__post .sidebar__title-box {
    margin-bottom: 17px;
}

.sidebar__post-list {
    position: relative;
    display: block;
}

.sidebar__post-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar__post-list li+li {
    margin-top: 8px;
}

.sidebar__post-image {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
}

.sidebar__post-image img {
    width: 100%;
    border-radius: 10px;
}

.sidebar__post-content {
    position: relative;
    display: block;
    margin-left: 15px;
}

.sidebar__post-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.sidebar__post-title a {
    color: var(--anity-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__post-title a:hover {
    color: var(--anity-base);
}

.sidebar__post-date {
    color: var(--anity-gray);
    margin-top: 6px;
}

.sidebar__post-date span {
    position: relative;
    margin-right: 10px;
    font-weight: 900;
    color: var(--anity-base);
}

.sidebar__tag {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: var(--anity-bdr-radius);
    background-color: var(--anity-extra-two);
}

.sidebar__tag .sidebar__title-box {
    margin-bottom: 21px;
}

.sidebar__tag-list {
    position: relative;
    display: block;
    margin-left: -10px;
}

.sidebar__tag-list a {
    font-size: 16px;
    color: var(--anity-gray);
    background-color: var(--anity-white);
    display: inline-block;
    padding: 9px 14px 10px;
    margin-left: 10px;
    line-height: 26px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: var(--anity-bdr-radius);
}

.sidebar__tag-list a+a {
    margin-left: 10px;
    margin-top: 10px;
}

.sidebar__tag-list a:hover {
    background-color: var(--anity-base);
    color: var(--anity-white);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
    position: relative;
    display: block;
    padding: 16px 0 40px;
    z-index: 1;
}

.blog-list__left {
    position: relative;
    display: block;
}

.blog-list__single {
    position: relative;
    display: block;
    margin-bottom: 80px;
}

.blog-list__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-list__img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--anity-black-rgb), 0.6);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--anity-base);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
    -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
    transform: perspective(400px) rotateX(-90deg) scale(0.2);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: var(--anity-bdr-radius);
}

.blog-list__img>a>span {
    position: relative;
}

.blog-list__img>a>span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--anity-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.blog-list__img>a>span::after {
    content: '';
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--anity-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-list__img>a:hover>span::before,
.blog-list__img>a:hover>span::after {
    background-color: var(--anity-white);
}

.blog-list__single:hover .blog-list__img>a {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}


.blog-list__img img {
    width: 100%;
    border-radius: var(--anity-bdr-radius);
}

.blog-list__content {
    position: relative;
    display: block;
    padding-top: 20px;
}

.blog-list__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-list__meta li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-list__meta li .icon {
    position: relative;
    display: inline-block;
}

.blog-list__meta li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--anity-base);
}

.blog-list__meta li a {
    color: var(--anity-gray);
}

.blog-list__meta li a:hover {
    color: var(--anity-base);
}

.blog-list__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-list__title a {
    color: var(--anity-back);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-list__title a:hover {
    color: var(--anity-base);
    background-size: 100% 1px;
}

.blog-list__btn-box {
    margin-top: 40px;
}

.blog-list__pagination {
    position: relative;
    display: block;
    text-align: center;
}

.blog-list__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    display: inline-block;
    color: var(--anity-black);
    font-weight: 700;
    font-size: 24px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    font-family: var(--anity-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:hover a,
.blog-list__pagination .pg-pagination li.active a {
    border: 1px solid var(--anity-base);
    color: var(--anity-black);
}


/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/
.blog-page {
    position: relative;
    display: block;
    padding: 140px 0 110px;
}


/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.blog-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 190px;
}

.blog-carousel-page .blog-one__single {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# One Page Two Blog
--------------------------------------------------------------*/
.one-page-two-blog {
    padding: 140px 0 0px;
}

/*--------------------------------------------------------------
# One Page Three Blog
--------------------------------------------------------------*/
.one-page-three-blog {
    padding: 140px 0 0px;
}
.blog-list__img {
    height: 500px;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .blog-list__img {
        height: 350px;
    }
}
@media screen and (max-width: 768px) {
    .blog-list__img {
        height: 250px;
    }
}
@media screen and (max-width: 480px) {
    .blog-list__img {
        height: 180px;
    }
}
.blog-list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-one__img {
    height: 275px;
    overflow: hidden;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.blog-one__img img, .blog-one__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-one__single > a {
    display: block;
    line-height: 0;
}

@media screen and (max-width: 768px) {
    .blog-details__img {
        height: 40vh;
    }
}

/* Blog / project / shop detail galleries: red frame on active thumbnail */
.productDetailFlexCarousel .slides li {
    position: relative;
}
.productDetailFlexCarousel .slides li.flex-active-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #e02626;
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/