.link{
color
:
#2C3A47
;
font-family
:
'Quicksand'
,
sans-serif
;
font-size
:
25px
;
font-weight
:
500
;
line-height
:
20px
;
display
: inline-
block
;
position
:
relative
;
z-index
:
1
;
transition:
all
0.5
s ease
0
s;
}
.link:hover,
.link:focus{
color
:
#82589F
;
}
.link:before,
.link:after{
content
:
''
;
background
:
#82589F
;
width
:
50%
;
height
:
250%
;
border-radius:
50%
;
opacity:
0.15
;
transform: translateY(
-50%
) scale(
0
);
position
:
absolute
;
top
:
50%
;
left
:
10px
;
z-index
:
-1
;
transition:
all
0.5
s cubic-bezier(
0.75
,
0.2
,
0.165
,
1
);
}
.link:after{
left
:
auto
;
right
:
10px
;
}
.link:hover:before{ transform: translateY(
-50%
) scale(
1
); }
.link:hover:after{ transform: translateY(
-50%
) scale(
0.8
); }
@media only
screen
and (
max-width
:
767px
){
.link{
margin-bottom
:
30px
; }
}