.our-presence h2{
    Font-size:36px;
    line-height:40px;
}
.country-selector__wrapper{
    gap:42px;
}
.country-selector__item{
    position:relative;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    overflow:hidden;
    text-decoration:none;
    border-radius:50px;
    transition:.45s ease;
}
.country-selector__flag{
    width:60px;    
    height:60px;
    flex:0 0 60px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2;
}

.country-selector__flag img{
    width:48px;
    height:48px;
    object-fit:cover;
    border-radius: 50%;
}

.country-selector__text{
    white-space:nowrap;
    color:#fff;
    font-size:16px;
    font-weight:500;
    opacity:0;
    transform:translateX(-15px);
    transition:.35s;
    margin-left:15px;
    padding-right:25px;
    text-transform:uppercase;
}

/* Hover */

.country-selector__item:hover{
    width:180px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    box-shadow:
    0 8px 35px rgba(0,0,0,.35);
}

.country-selector__item:hover .country-selector__text{
    opacity:1;
    transform:translateX(0);
}

/* Active */

.country-selector__item--active{
    width:180px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    box-shadow:
    0 10px 35px rgba(0,0,0,.35);
}

.country-selector__item--active .country-selector__text{
    opacity:1;
    transform:none;
}
.country-selector__card {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
@media screen(max-width:575px){
	.country-selector__wrapper{
		gap:42px;
	}
	.country-selector__item{
		width: 180px;
	}
}