/* ==========================
TELUGU JOBS NEWS FOOTER
========================== */

/* Break out of GeneratePress container */

#colophon.site-footer {
width: 100vw !important;
max-width: 100vw !important;

```
margin-left: calc(50% - 50vw) !important;
margin-right: calc(50% - 50vw) !important;

position: relative;
left: 0;
right: 0;

background: linear-gradient(135deg,#031926,#06293a);
color: #fff;
overflow: hidden;
margin-top: 40px;
```

}

/* Golden top strip */

.footer-top-border{
width:100%;
height:6px;
background:#ffcc00;
}

/* Main container */

.footer-container{
width:100%;
max-width:1600px;
margin:0 auto;
padding:50px 5%;
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:40px;
box-sizing:border-box;
}

/* Columns */

.footer-section{
flex:1 1 250px;
min-width:250px;
}

.footer-section h3{
color:#ffcc00;
font-size:18px;
margin-bottom:18px;
text-transform:uppercase;
font-weight:700;
}

.footer-section p{
line-height:1.9;
font-size:15px;
color:rgba(255,255,255,.9);
}

/* Logo */

.footer-logo{
margin-bottom:20px;
}

.footer-logo img{
max-width:240px;
height:auto;
}

/* Links */

.footer-links ul{
list-style:none;
margin:0;
padding:0;
}

.footer-links li{
margin-bottom:12px;
}

.site-footer a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.site-footer a:hover

/* Contact */

.footer-contact a{
color:#ffcc00;
font-weight:600;
}

/* Disclaimer */

.footer-disclaimer{
text-align:center;
padding:30px 5%;
border-top:1px solid rgba(255,255,255,.08);
}

.footer-disclaimer h3{
color:#ffcc00;
margin-bottom:15px;
}

.footer-disclaimer p{
max-width:1200px;
margin:auto;
line-height:1.8;
font-size:13px;
}

/* Bottom */

.footer-bottom{
background:#02111a;
text-align:center;
padding:18px;
}

.footer-bottom p{
margin:0;
font-size:13px;
}

/* Responsive */

@media(max-width:768px){

```
.footer-container{
    flex-direction:column;
    text-align:center;
    padding:40px 20px;
}

.footer-logo img{
    margin:auto;
    max-width:180px;
}

.footer-section{
    min-width:100%;
}
```

}
