.country-pick-block {
    background: radial-gradient(
            circle at 174px 154px,
            #C5D6F9 0%,
            #D4C4FC 100%
    );
}

.country-pick-cards-wrapper {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    background-color: #312946;
    border-radius: 70px;
    padding: 40px;
    gap: 39px;
    overflow: hidden;
}

.country-pick-title {
    font-size: 60px;
    margin-bottom: 70px;
}

.country-pick-link {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.country-pick-link:hover .country-pick-image {
    transform: scale(1.25);
    transition: all 0.3s ease-in-out;
    margin-right: 7px;
}

.country-pick-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(30px);
    width: 366px;
    height: 51px;
    background-color: rgba(255, 255, 255, 0.21);
    opacity: 0;
}

.country-pick-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -38px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 366px;
    height: 3px;
    background-color: #ffffff;
    opacity: 0;
}

.country-pick-link:hover::before,
.country-pick-link:hover::after {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.country-pick-image {
    width: 50px;
    height: 50px;

    transition: all 0.3s ease-in-out;
}

.country-pick-arrow {
    color: #FFF;
    font-size: 24px;
}

.country-pick-name {
    width: 100%;
    color: #FFF;
    font-size: 24px;
}



@media screen and (max-width:1024px) {
    .country-pick-cards-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:800px) {
    .country-pick-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .country-pick-cards-wrapper {
        grid-template-columns: 1fr;
        background-color: #312946;
        border-radius: 10px;
        padding: 22px;
    }

    .country-pick-name {
        font-size: 18px;
    }

    .country-pick-image {
        width: 46px;
        height: 46px;
    }

    .country-pick-link::after {
        width: 100%;
        bottom: -22px;
    }

    .country-pick-link::before {
        width: 100%;
        bottom: -22px;
    }

    .country-pick-link:hover .country-pick-image {
        transform: scale(1.1);
    }
}