/* =========================================
FONT IMPORTS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@400;600&display=swap');

@font-face {
font-family: 'Uhudscript';
src: url('/hiring/assets/fonts/Uhudscript-Demo.ttf') format('truetype');
font-weight: 400;
}

@font-face {
font-family: 'Galano-Bold';
src: url('/hiring/assets/fonts/GalanoGrotesqueDEMO-Bold.ttf') format('truetype');
font-weight: 700;
}

@font-face {
font-family: 'Galano-Medium';
src: url('/hiring/assets/fonts/GalanoGrotesque-Medium.ttf') format('truetype');
font-weight: 500;
}

@font-face {
font-family: 'Galano-Regular';
src: url('/hiring/assets/fonts/GalanoGrotesqueRegular.otf') format('truetype');
font-weight: 400;
}

/* Hover state - gradient circle, blue icon */
.footer-media a:hover {
background-image: linear-gradient(62deg, #02BCDD, #06D1E5, #64EDA8, #D0F88D);
background-origin: border-box;
background-clip: border-box;          /* fill the whole circle, not just text */
-webkit-background-clip: border-box;  /* override any inherited text-clip */
border: none;
color: #001f34 !important;
}

.footer-media a:hover i {
color: #001f34 !important;
-webkit-text-fill-color: #001f34 !important;  /* critical: overrides transparent fill */
background: none;                              /* prevent gradient leaking onto icon */
-webkit-background-clip: unset;
background-clip: unset;
}


.footer-bottom > a:hover {
background: linear-gradient(62deg, #02BCDD, #06D1E5, #64EDA8, #D0F88D);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent !important;
}


.footer-nav-heading{
position:relative;
margin-bottom:60px;
text-transform:uppercase;
font-weight: 500;
font-family: Galano-Medium;
font-size:24px;
}

.footer-nav-heading:before{
position:absolute;
content:"";
bottom:-40px;
left:0;
height:1px;
width:100%;
border: double 1px transparent;
border-radius: 50px;
background-image: linear-gradient(to right, #01758a, #01758a00);
background-origin: border-box;
background-clip: content-box, border-box;
padding: 1px;
}

.footer-roket-image{
position: absolute;
width: 250px;
transform: rotate(17deg);
right: 70px;
top: 120px;
}

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
max-width:100vw;
/*margin-top:25vh;*/
margin-left:auto;
margin-right:auto;

}

.footer-bottom {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #02253d; 
color: #fff;
padding: 5px 50px;
display: flex;
align-items: center;
z-index: 9999;
height: 8vh;
}

.footer-bottom {
box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
}


.footer-bottom a,
.footer-bottom p{
font-size:14px;
font-family: Galano-Regular;
color:rgba(255, 255, 255, .80);
transition:0.3s ease;
text-decoration:none;
}

.gradient:hover {
background: linear-gradient(62deg, #02BCDD, #06D1E5, #64EDA8, #D0F88D);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent !important;
}

.footer-media{
display:flex;
gap:20px;
align-items:center;
}

.footer-media a{
display:flex;
align-items:center;
justify-content:center;
height:35px;
width:35px;
border-radius:50%;
font-size:16px;
border: double 1px transparent;
background-image: linear-gradient(#01243d, #01243d), linear-gradient(180deg, #000, #01758a);
background-origin: border-box;
background-clip: content-box, border-box;
padding: 1px;
cursor: pointer;
}



/* Tablet & Mobile */
@media (max-width: 992px) {

.footer-bottom {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 5px 18px;
}

.footer-bottom > a {
display: none;
}

.footer-bottom .footer-media {
display: none;
}

.footer-bottom p {
font-size: 11px;
margin-top: 8px;
margin-bottom: 5px;
}

}