-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles4.css
63 lines (50 loc) · 1 KB
/
styles4.css
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
.profile-container {
background-color: #000;
color: #fff;
padding: 40px 20px;
text-align: center;
}
.team-members {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
height: 100px; /* Fixed height to allow vertical movement */
}
.member {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
margin: 0 -10px;
transition: all 0.3s ease;
position: relative;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.member img {
width: 100%;
height: 100%;
object-fit: cover;
}
.member:hover {
transform: scale(1.5) translateY(-20px);
z-index: 20;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width:767px) {
.img1 {
max-width: 94px;
position: relative;
left: 170px;
}
.footer1 {
margin-top: -20px ;
margin-left: 200px;
}
.icon1 {
margin-left: 110px;
}
.map1 {
margin-left: -110px;
}
}