-
Notifications
You must be signed in to change notification settings - Fork 591
/
footer.css
137 lines (113 loc) · 3.31 KB
/
footer.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.footer__container {
width: 100%;
/* max-width: 1800px; */
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
color: var(--secondary-color);
margin: 0;
padding: 0;
}
.footer__area {
padding: 0 20px; /* Adjust padding as needed for left and right spacing */
}
.d-flex {
margin-bottom: 10px; /* Adjust vertical spacing between contact items */
}
.footer__col {
max-width: 600px; /* Adjust based on your layout */
margin: 0 auto; /* Center the content */
}
.goog-te-combo{
background: #B88BBA;
color: white;
height: 40px;
border-radius: 40px;
padding: 10px;
border: #1457ff;
backdrop-filter: blur(20px);
font-size: medium;
font-weight: 400;
}
.goog-te-combo option{
background: #9fbaff;
height: 40px;
margin-top: 5px;
font-size: medium;
color: black;
}
.footer_text{
display: flex;
flex-direction: column;
gap: 10px;
}
.footer_text a{
color: white;
/* margin-top: 10px; */
}
.footer__area{
display: flex;
flex-direction: column;
gap: 10px;
}
.footer_link_text a{
color: white;
font-size: 14px;
font-family: Poppins, sans-serif;
}
.gmap_canvas {
position: relative; /* Allows for positioning child elements */
overflow: hidden; /* Prevents overflow of child elements */
background: none !important; /* Ensure no background */
height: 100%; /* Use 100% height of the parent container */
width: 100%; /* Use 100% width of the parent container */
max-height: 400px; /* Set a maximum height for better responsiveness */
max-width: 130%; /* Set a maximum width for better responsiveness */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add some shadow for better visibility */
border-radius: 5px; /* Add rounded corners */
}
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 200px;
width: 200px;
}
.language-dropdown-container {
padding: 32px;
margin-top: 20px;
margin-bottom: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #ff9fcf; /* Light background to match theme */
}
.language-label {
display: block;
font-weight: bold;
font-size: 18px;
color: #123456; /* Adjust color to match theme */
margin-bottom: 10px; /* Space between label and dropdown */
}
.language-dropdown {
display: inline-block;
padding: 15px;
border: 1px solid #ff9fcf; /* Border color to match theme */
border-radius: 5px;
background-color: #ff9fcf; /* Background color for dropdown */
transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}
.language-dropdown:hover {
border-color: #ff6f91; /* Change border color on hover */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Slight shadow effect on hover */
}
.language-dropdown select {
border: none; /* Remove default border from select */
outline: none; /* Remove outline */
background: transparent; /* Make background transparent */
font-size: 16px; /* Font size for dropdown options */
color: #123456; /* Text color to match theme */
width: 100%; /* Full width of the dropdown */
}