2020-08-14 13:36:36 +02:00
|
|
|
footer{
|
|
|
|
|
|
|
|
.footer_content{
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
max-width: 1400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 70px 20px;
|
|
|
|
|
|
|
|
.col{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 33%;
|
|
|
|
|
|
|
|
span, div.follow{
|
|
|
|
padding: 8px 0;
|
|
|
|
|
|
|
|
color: $color_text_dark;
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
&.follow{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
a{
|
|
|
|
color: $color_text_dark;
|
|
|
|
|
|
|
|
&:hover{
|
|
|
|
color: $color_blue;
|
|
|
|
|
|
|
|
.icon.twitter{
|
|
|
|
background-image: url("../../../public/img/social/twitter_blue.svg");
|
|
|
|
}
|
|
|
|
.icon.fb{
|
|
|
|
background-image: url("../../../public/img/social/fb_blue.svg");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon{
|
|
|
|
display: inline-block;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
|
|
|
|
padding: 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
|
|
background-size: 24px 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon.twitter{
|
|
|
|
background-image: url("../../../public/img/social/twitter.svg");
|
|
|
|
}
|
|
|
|
.icon.fb{
|
|
|
|
background-image: url("../../../public/img/social/fb.svg");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo_holder{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
img{
|
|
|
|
max-width: 200px;
|
|
|
|
max-height: 80px;
|
|
|
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-15 14:00:54 +02:00
|
|
|
}
|
2020-08-14 13:36:36 +02:00
|
|
|
|
2021-06-15 14:00:54 +02:00
|
|
|
.aai footer a:hover{
|
|
|
|
color: #e35205 !important;
|
|
|
|
}
|