/*==============================================
   Country One
===============================================*/
.country-one {
    position: relative;
    display: block;
    background-color: var(--anity-extra-two);
    padding: 135px 0 110px;
    z-index: 1;
}

.country-one__top-title-box {
    position: relative;
    display: block;
}

.country-one__top-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom: 69px;
}

.country-one__top-title span {
    color: var(--anity-primary);
}

.country-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 10px 10px 9px;
    margin-bottom: 30px;
}

.country-one__img {
    position: relative;
    display: block;
    max-width: 81px;
    width: 100%;
    z-index: 1;
}

.country-one__img:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #E20935, #16171A) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.country-one__img img {
    width: 100%;
    border-radius: 50%;
}

.country-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.country-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;
}

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

/*--------------------------------------------------------------
# Partners Page (300x300 thumbnails, 2 per row)
--------------------------------------------------------------*/
.partners-page {
    padding: 135px 0 110px;
    background-color: var(--anity-extra-two);
}

.partners-page__title-box {
    margin-bottom: 50px;
}

.partners-page__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
}

.partners-page__title span {
    color: var(--anity-primary);
}

.partners-page__card {
    display: block;
    background-color: var(--anity-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 24px;
    margin-bottom: 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-page__card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.partners-page__card--no-link:hover {
    transform: none;
}

.partners-page__thumb {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 16px;
    overflow: hidden;
    border-radius: 50%;
    background: #f5f5f5;
}

.partners-page__thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(180deg, var(--anity-base), var(--anity-black)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.partners-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.partners-page__name {
    font-size: 18px;
    font-weight: 700;
    padding: 16px 20px;
    margin: 0;
    text-align: center;
    color: var(--anity-black);
}

.partners-page__card:hover .partners-page__name {
    color: var(--anity-primary);
}

@media (max-width: 767px) {
    .partners-page__title {
        font-size: 36px;
        line-height: 44px;
    }
}





























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