/* ==================== Gelivable Footer ==================== */

.gel-footer {
background: #f7f9f9;
color: #425154;
padding: 82px 0 0;
border-top: 1px solid rgba(16, 38, 41, 0.08);
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gel-footer a {
text-decoration: none;
transition: all 0.25s ease;
}

.gel-footer-main {
display: grid;
grid-template-columns: 1.35fr 0.75fr 0.75fr 1.25fr;
gap: 64px;
padding-bottom: 66px;
}

.gel-footer-logo {
display: inline-flex;
align-items: center;
margin-bottom: 24px;
}

.gel-footer-logo img {
max-height: 54px;
width: auto;
display: block;
}

.gel-footer-brand h3 {
margin: 0 0 20px;
color: #102629;
font-size: 18px;
line-height: 1.4;
font-weight: 760;
}

.gel-footer-brand p {
max-width: 390px;
margin: 0;
color: #657477;
font-size: 15px;
line-height: 1.85;
}

.gel-footer-social {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 30px;
}

.gel-footer-social a {
width: 42px;
height: 42px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #ffffff;
color: #102629;
font-size: 17px;
box-shadow: 0 10px 26px rgba(16, 38, 41, 0.08);
}

.gel-footer-social a span {
font-size: 10px;
font-weight: 800;
letter-spacing: 0.2px;
}

.gel-footer-social a:hover {
background: #28978a;
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 14px 34px rgba(40, 151, 138, 0.22);
}

/* Footer Columns */

.gel-footer h3 {
margin: 0 0 22px;
color: #102629;
font-size: 16px;
line-height: 1.3;
font-weight: 760;
letter-spacing: -0.2px;
}

.gel-footer ul {
margin: 0;
padding: 0;
list-style: none;
}

.gel-footer li {
margin-bottom: 13px;
}

.gel-footer-col a,
.gel-footer-contact a {
color: #657477;
font-size: 15px;
line-height: 1.5;
}

.gel-footer-col a:hover,
.gel-footer-contact a:hover {
color: #28978a;
padding-left: 3px;
}

.gel-footer-contact li {
margin-bottom: 20px;
}

.gel-footer-contact span {
display: block;
margin-bottom: 6px;
color: #28978a;
font-size: 12px;
font-weight: 800;
letter-spacing: 1.2px;
text-transform: uppercase;
}

.gel-footer-contact p {
margin: 0;
color: #657477;
font-size: 15px;
line-height: 1.68;
}

/* Footer Bottom */

.gel-footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
padding: 26px 0;
border-top: 1px solid rgba(16, 38, 41, 0.08);
}

.gel-footer-bottom p {
margin: 0;
color: #788688;
font-size: 14px;
}

/* Group Companies Dropdown */

.gel-footer-friends {
position: relative;
width: 280px;
flex: 0 0 280px;
margin-top: 0;
}

.gel-footer-friends-toggle {
width: 100%;
height: 44px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 18px;
border: 1px solid rgba(16, 38, 41, 0.12);
border-radius: 3px;
background: #ffffff;
color: #102629;
font-size: 14px;
font-weight: 760;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
cursor: pointer;
box-shadow: none;
}

.gel-footer-friends-toggle i {
color: #28978a;
font-size: 16px;
transition: transform 0.25s ease;
}

.gel-footer-friends-menu {
position: absolute;
right: 0;
left: auto;
bottom: 54px;
z-index: 20;
width: 100%;
padding: 8px;
border: 1px solid rgba(16, 38, 41, 0.08);
border-radius: 4px;
background: #ffffff;
box-shadow: 0 18px 48px rgba(16, 38, 41, 0.14);
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: all 0.25s ease;
}

.gel-footer-friends:hover .gel-footer-friends-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.gel-footer-friends:hover .gel-footer-friends-toggle i {
transform: rotate(180deg);
}

.gel-footer-friends-menu a {
display: block;
padding: 10px 12px;
border-radius: 3px;
color: #425154;
font-size: 14px;
line-height: 1.4;
}

.gel-footer-friends-menu a:hover {
background: rgba(40, 151, 138, 0.1);
color: #102629;
}

/* Responsive */

@media (max-width: 991px) {
.gel-footer {
padding-top: 64px;
}

```
.gel-footer-main {
	grid-template-columns: 1fr 1fr;
	gap: 44px 36px;
}

.gel-footer-friends {
	width: 280px;
	flex: 0 0 280px;
}
```

}

@media (max-width: 575px) {
.gel-footer {
padding-top: 56px;
}

```
.gel-footer-main {
	grid-template-columns: 1fr;
	gap: 38px;
	padding-bottom: 48px;
}

.gel-footer-brand p {
	max-width: 100%;
}

.gel-footer-bottom {
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	padding: 22px 0;
}

.gel-footer-friends {
	width: 100%;
	flex: 0 0 auto;
}

.gel-footer-friends-menu {
	position: static;
	display: none;
	margin-top: 10px;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.gel-footer-friends:hover .gel-footer-friends-menu {
	display: block;
}
```

}

/* ==================== /Gelivable Footer ==================== */
