blob: 27c5efa54af840b5adae9826363031e4f41d75e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
@import settings.sass
header
background: $white
box-shadow: 0px 5px 20px rgba(0, 56, 79, 0.07)
padding: 20px 0
position: relative
+resp(md)
padding: 15px 0
position: sticky
top: 0
z-index: 2
+resp(esm)
padding: 10px 0
+resp(xsm)
padding: 5px 0
div.header__inner
display: flex
justify-content: space-between
+resp(sm)
align-items: center
div.header__logo-side
display: flex
align-items: center
a.header__logo
display: inherit
margin-right: 30px
+resp(lg)
margin-right: 16px
+resp(md)
margin-right: 10px
div.header__text
font-weight: 500
line-height: 25px
+resp(sm)
display: none
p
font-size: 16px
color: #ACACAD
+resp(md)
font-size: 15px
+resp(sm)
display: none
div.header__links-side
display: flex
align-items: center
+resp(xsm)
flex-wrap: wrap
justify-content: flex-end
a
font-weight: 600
font-size: 15px
line-height: 140%
text-transform: uppercase
text-decoration: none
color: $black
transition: 0.3s
margin-left: 31px
text-align: center
+resp(lg)
font-size: 14px
margin-left: 20px
+resp(esm)
margin-left: 14px
+resp(usm)
font-size: 13px
+resp(xsm)
line-height: 180%
font-size: 14px
margin-left: 24px
&:nth-child(1)
margin-left: 0
&:nth-child(3)
+resp(usm)
max-width: 100px
+resp(xsm)
max-width: 100%
&:hover
color: $orange
|