.country-big__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.country-big__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid;
    border-color: oklab(0.967 -0.000285348 -0.0029864 / 0.5);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.country-big__item:hover {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.country-big__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-big__icon {
    backdrop-filter: blur(8px);
    background-color: oklab(0.999994 0.0000455677 0.0000200868 / 0.8);
    border: 1px solid;
    border-color: oklab(0.967 -0.000285348 -0.0029864 / 0.6);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
    padding: 5px;
    transition: all 0.3s ease;
}

.country-big__item:hover .country-big__icon {
    scale: 110%;
}

.country-big__icon img {
    width: 30px;
    min-width: 30px;
    height: 30px;
}

.country-big__content {
    display: flex;
    flex-direction: column;
}

.country-big__title {
    font-weight: 700;
    font-size: 20px;
    color: #253580;
}

.country-big__description {
    color: #6b7280;
    font-size: 14px;
}


.new-page .country-big__list ul {
    position: relative;
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.new-page .country-big__list ul li {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #374151;
    font-size: 16px;
}

.new-page .country-big__list ul li::before {
    content: "";
    position: relative;
    left: 0px;
    top: 0px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #e4e7f1;
    border: 1px solid #bdc4da;
    background-image: url(/wp-content/themes/vittoriavita/images/program-check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65%;
}

.country-big__button--link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: #253580;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 8px 0;
    border-radius: 15px;
    backdrop-filter: blur(12px);
    background-image: linear-gradient(to right, oklab(0.999994 0.0000455677 0.0000200868 / 0.6) 0%, oklab(0.999994 0.0000455678 0.0000200868 / 0.4) 100%);
    border: 1px solid;
    border-color: oklab(0.36342 -0.000455797 -0.127774 / 0.4);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
    transition: all 0.3s ease;

}

.country-big__button--link:hover {
    background-color: oklab(0.729884 0.16093 0.0369245 / 0.9);
}

.country-big__button--link:after {
    content: "";
    position: relative;
    width: 16px;
    height: 16px;
    background-image: url(/wp-content/themes/vittoriavita/images/programs-arrow.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}


@media screen and (min-width: 992px) {
    .country-big__items {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 25px;
    }

    .country-big__item:nth-child(odd) {
        grid-column: 1 / 3;
    }

    .country-big__item:nth-child(even) {
        grid-column: 3 / 5;
    }

    .country-big__item.country-big__item--last-odd{
        grid-column: 2 / 4;
    }

    .country-big__button {
        margin-top: auto;
    }

    .country-big__button--link {
        width: 50%;
    }

}

@media screen and (min-width: 1200px) {}