.suggestion-post-element .suggestion-post-element-wrap {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.suggestion-post-element .suggestion-post-content {
    padding: 3rem 2rem;
    background-color: #0000009e;
    backdrop-filter: blur(6px);
}

.suggestion-post-element .post-cover-box {
    display: flex;
    position: relative;
}

.suggestion-post-element .post-cover-box img {
    border-radius: 40px;
    width: 100%;
    height: 460px;
    object-fit: cover;
    box-shadow: 0 25px 50px #e2ab92;
}

.suggestion-post-element .box-title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2.3rem;
}

.suggestion-post-element .box-title:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 3px;
    width: 24px;
    height: 24px;
    background-color: #FF2942;
    border-radius: 50px;
    margin-left: 15px;
    box-shadow: 0 0 0 10px rgba(255, 41, 66, 0.34);
    animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 41, 66, 0.56);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 41, 66, 0);
    }
}

.suggestion-post-element .post-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.suggestion-post-element .post-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    align-items: center;
}

.suggestion-post-element .post-metas .movie-rate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background-color: #4FAB5B45;
    color: #4FAB5B;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.suggestion-post-element .post-excerpt-wrap {
    position: relative;
    margin-top: 2rem;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    display: flex;
    gap: 15px;
}

.suggestion-post-element .post-excerpt-wrap .box-icon svg {
    width: 24px;
}

.suggestion-post-element .post-buttons {
    margin-top: 1.5rem;
}

.suggestion-post-element .post-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 20px;
    background-color: #ff2942;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px #ff294273;
    transition: ease .15s;
}

.suggestion-post-element .post-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px #ff294273;
}

.suggestion-post-element .post-buttons a svg {
    width: 20px;
    fill: #fff;
}

@media screen and (max-width: 767px) {
    .suggestion-post-element .post-details-box {
        margin-bottom: 20px;
    }
}.grid-post3 {
    display: grid;
    grid-template-areas: 'grid_item_one grid_item_two grid_item_three' 'grid_item_four grid_item_five grid_item_five';
    grid-gap: 20px;
}

.grid-post3 .item {
    width: 100%;
    position: relative;
    background-size: cover;
    transition-duration: .3s;
    overflow: hidden;
    min-height: 250px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
}

.grid-post3 .item .post-item-details {
    width: 100%;
}

.grid-post3 .item a {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: right;
    padding: 20px 20px 20px 20px;
}

.grid-post3 .item a .post-meta {
    margin: 3px 0 0;
}

.grid-post3 .item a span {
    display: inline-block;
}

.grid-post3 .item a .post-meta span:not(:first-of-type) {
    margin: 0 10px;
}

.grid-post3 .item:nth-of-type(1) {
    grid-area: grid_item_one;
}

.grid-post3 .item:nth-of-type(2) {
    grid-area: grid_item_two;
}

.grid-post3 .item:nth-of-type(3) {
    grid-area: grid_item_three;
}

.grid-post3 .item:nth-of-type(4) {
    grid-area: grid_item_four;
}

.grid-post3 .item:nth-of-type(5) {
    grid-area: grid_item_five;
}

.grid-post3 .item:nth-of-type(1) a {
    background-image: linear-gradient(360deg, rgba(183, 28, 28, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post3 .item:nth-of-type(2) a {
    background-image: linear-gradient(360deg, rgba(104, 159, 56, 0.5) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post3 .item:nth-of-type(3) a {
    background-image: linear-gradient(360deg, rgba(81, 45, 168, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post3 .item:nth-of-type(4) a {
    background-image: linear-gradient(360deg, rgba(230, 81, 0, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post3 .item:nth-of-type(5) a {
    background-image: linear-gradient(360deg, rgba(13, 71, 161, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post3 .item h3{
    color: #fff;
    font-size: 18px;
}

.grid-post3 .item h3,
.grid-post3 .item .post-meta {
    width: 100%;
}

.grid-post3 .none-cover-overlay.item a {
    background-image: none;
}

.grid-post3 .item a .post-meta span {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

@media screen and (max-width: 767px) {
    .elementor .grid-post3 {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-template-areas: none;
        gap: 10px;
    }

    .elementor .grid-post3 .item {
        grid-area: auto;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575.98px) {
    .elementor .grid-post3 {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
}.ahura-element-main-menu .siteside {
    box-shadow: 0 0 35px #00000061;
}

@media screen and (max-width: 1024px){
    .ahura-element-main-menu .menu-wrapper {
        display: none;
    }
}.ahura-search-form-element {
    position: relative;
}

.ahura-search-form-element.with-cat {
    display: flex;
    gap: 9px;
}

.ahura-search-form-element.with-cat.template-3 {
    flex-direction: row-reverse;
}

.ahura-search-form-element.with-cat select {
    border: none;
    height: 50px;
    width: 150px;
    border-radius: 7px;
    background-color: #f0f0f0;
    padding: 8px;
    font-size: 13px;
    color: #505050;
    outline: 0;
}

.ahura-search-form-element .s-input {
    position: relative;
}

.ahura-search-form-element.with-cat .s-input {
    width: calc(100% - 150px);
}

.ahura-search-form-element:not(.with-cat) .s-input {
    width: 100%;
}

.ahura-search-form-element button {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    box-shadow: none;
    width: 50px;
    height: 100%;
    padding: 0;
    top: 0;
    font-size: 19px;
    color: #9e9fb1;
}

.ahura-search-form-element input[type=text] {
    box-shadow: 0 7px 35px 0 rgba(0,0,0,0.1);
}

.ahura-search-form-element #ajax_search_loading {
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.ahura-search-form-element #ajax_search_loading.show-loader {
    opacity: 1;
}

.ahura-search-form-element.with-btn #ajax_search_loading {
    width: 110px;
}

.ahura-search-form-element .search-item .item-cover {
    width: 50px;
}

.ahura-search-form-element .search-item .item-cover img {
    border-radius: 7px;
    object-fit: cover;
}

.ahura-search-form-element #ajax_search_res .search-item a {
    display: flex;
    gap: 10px;
}