*{
    box-sizing: border-box;
    margin:0;
    padding:0;

}
body{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}
footer{
     background-color:rgb(161, 51, 51);
     position: relative;
     width: 100%;
     min-height: 350px;
     padding: 0 1rem;
}

   footer.sticky .banner{
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 1s;
           opacity: 0.89;
    }
    
    footer .banner{
    opacity: 0.5;
    } 

.container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.col{
    min-width: 250px;
    color:#f2f2f2f2;
    font-family: poppins;
    padding:0 2rem;
}

 .footlogo,  .page{
    width: 50px;
    margin-right: 75em;
    transform: translateY(50px);
}

.col h3{
    color:#ff014fff;
    margin-bottom: 20px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    transform: translateY(-30px);
}
.col h3::after{
    content: '';
    height:3px;
    width:0px;
    background-color: #ff014fff;
    position: absolute;
    bottom: 0;
    left:0;
    transition: 0.3s ease;

}
.col h3:hover::after{
    width:30px
}

.col .social{
    display: flex;
    justify-content: center;
    transform: translateY(-30px);
}
.col .social a{
    text-decoration: none;
    padding: 10px;
    background: #fff;
    margin: 10px;
    border-radius: 50%;
}

.col .social a:hover {
    background: #cc7c76;
}


.col .social a i{
    color:#ff014fff;
    transition: 0.3s ease;
}
.col .social a i:hover{
    transform: scale(1.5);
    filter:grayscale(25);
}

.col .links a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    color:#f2f2f2;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
    font-size: 18px;
    transform: translateY(-30px);
}
.col .links a::before{
    content:'';
    height: 16px;
    width:3px;
    position: absolute;
    top:5px;
    left:-10px;
    background-color: #ff014fff;
    transition: 0.5s ease;
    opacity: 0;
}
.col .links a:hover::before{
    opacity: 1;
}
.col .links a:hover{
    color:#ff014fff;
}

.footerBottom{
    margin-top: 10px;
    margin-bottom: 0;
    background-color: #010;
    padding: 2px;
    text-align: center;
    justify-content: center;
    transform: translateY(-30px);
}
.footerBottom p{
    padding: 10px;
    display: flex;
    justify-content: center;
    color: #fff;
}

.own{
    opacity: 0.7;
    text-decoration: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 8px 5px;
}
/********** Responsive Design ********/
@media(max-width:900px)
{
  .row{
    flex-direction: column;
  }
  .col{
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
  }
}
@media(max-width:768px)
{
  .row{
    flex-direction: column;
  }
  .col{
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}