h1 {
    padding-top: 58px;
}

/*slider*/

.home .slider .blaze-container div a {
    display: flex;
    justify-content: center;
}

/*slider*/
.boxes ul {
    display: flex;
    justify-content: center;
    gap: 0 30px;
}

.boxes ul li {
    text-align: center;
    position: relative;

}

.boxes ul li .images {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;

}

.boxes ul li .images .img-hover {
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.boxes ul li img.star {
    position: absolute;
    top: 240px;
    right: -1px;
    transition: opacity .3s;
}

.boxes ul li .images img:first-child {
    transition: filter .3s ease;
}

button {
    position: relative;
    border: none;
    cursor: pointer;
    overflow: hidden;
    margin: 50px 0 30px;
}

.cky-footer-wrapper button {
    margin: 0;
}


button span {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
}

.boxes ul li button span:first-child {
    transition: opacity .3s;
}

.text-hover {
    position: absolute;
    inset: 0;
    opacity: 0;

}

@media (hover: hover) and (pointer: fine) {
    .boxes ul li:hover button span:first-child {
        opacity: 0;
    }

    .boxes ul li:hover .text-hover {
        opacity: 1;
    }

    .boxes ul li:hover img.star {
        opacity: 0;
    }

    .boxes ul li:hover .images img:first-child {
        opacity: 1;
        filter: brightness(0.6);
    }

    .boxes ul li:hover .img-hover {
        opacity: 0.8;
    }

}

@media(max-width:767px) {
    .boxes ul {
        flex-direction: column;
    }
}

.home .slider {
    position: relative;
    display: flex;
    justify-content: center;
}

.home .slider:after {
    content: '';
    max-width: 1225px;
    width: 100%;
    border: 1px solid #F2E097;
    position: absolute;
    bottom: 0;
}

.home .slider .blaze-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translatex(-50%);
}

.home .slider .blaze-pagination button {
    width: 19px;
    height: 8px;
    font-size: 0;
    background-color: #646853;
    border: none;
    outline: none;
    margin: 10px 5px 0;
    -webkit-transition: all .7s linear;
    transition: all .7s linear;
    cursor: pointer;
}

.home .slider .blaze-pagination button.active {
    background-color: #F2E097;
}

@media (max-width: 767px) and (orientation: portrait),
(max-width:932px) and (orientation: landscape) {
    .home .slider .blaze-slider .blaze-pagination {
        bottom: 5px;
    }

    .blaze-slider img {
        width: 100%;
        min-height: 168px;
        object-fit: cover;
        display: block;
    }
}