.select-country {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 60px 0;
    flex-wrap: wrap;
}
.select-country a{
    font-size: 17px;
    margin: 5px 10px;
    padding: 5px 10px;
    font-family: "Exo2", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #68c3e6;
    border-radius: 5px;
    text-transform: uppercase;
}
.select-country a.active{
    border: 2px solid #f89c19;
    color: #f89c19;
}
.select-country a:hover{
    text-decoration: none;
    background: #e1f3fb;
}
.select-country a img{
    margin-right: 10px;
    width: 25px;
    box-shadow: 0px 0px 3px 0px #ababab;
}
@media (max-width: 767px) {
    .contacts-main .choose-caption h2{
        margin: 0 0 15px 0;
    }
    .select-country {
        margin: 0 0 30px 0;
    }
    .select-country a{
        font-size: 15px;
        padding: 2px 5px;
    }
    .select-country a img{
        width: 18px;
    }
}