
footer{
     background-color: #013575;
     position: relative;
     width: auto;
     height: auto;
     padding: 0.5rem 1rem;
}

#container{
    min-height: 60vh;
}

.footer-container {
    max-width: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col{
    min-width: 250px;
    color:#f2f2f2f2;
    font-family: poppins;
    padding:0 1rem;
}

.footer-col .c-name {
    margin-bottom: 10px;
    font-size: 28px;
}

.footer-col .footer-logo{
    width: 100px;
    margin-bottom:25px;
}
.footer-col h3{
    color:rgb(255, 213, 0);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}
.footer-col h3::after{
    content: '';
    height:3px;
    width:0px;
    background-color: rgb(224, 195, 9);
    position: absolute;
    bottom: 0;
    left:0;
    transition: 0.3s ease;

}
.footer-col h3:hover::after{
    width:30px
}
.footer-col .social a i{
    color:rgb(255, 213, 0);
    margin-top:2rem;
    margin-right: 5px;
    transition: 0.3s ease;
}
.footer-col .social a i:hover{
    transform: scale(1.5);
    filter:grayscale(25);
}
.footer-col .links a{
    display: block;
    text-decoration: none;
    color:#f2f2f2;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
}
.footer-col .links a::before{
    content:'';
    height: 16px;
    width:3px;
    position: absolute;
    top:5px;
    left:-10px;
    background-color: rgb(255, 213, 0);
    transition: 0.5s ease;
    opacity: 0;
}
.footer-col .links a:hover::before{
    opacity: 1;
}


.footer-col .links .c-links-icon  {
    transform: translateX(-1px);
    color: rgb(255, 255, 255);
    margin-left: 30px;
    margin-bottom: 4px;
}
.footer-col .links a:hover{
    transform: translateX(-8px);
    color:rgb(255, 213, 0);
}
.footer-col .contact-details{
    /* display: inline-flex; */
    justify-content: space-between;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}
.footer-col .contact-details i{
    margin-right:15px;
}
.footer-row .footer-form{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:2rem 0;
}
.footer-row .footer-form input{
    background-color: rgb(252, 252, 252);
    border:0;
    outline:none;
    padding:14px 20px;
    border-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.footer-form button{
    padding:14px 20px;
    border:0;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: rgb(255, 213, 0);
}


@media screen and (max-width: 1024px)
{
  .footer-row{
    flex-direction: column;
  }
  .footer-col{
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-col .contact-details {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    }

    .footer-col .links .c-links-icon {
        margin-left: 10px;
    }
}
@media(max-width:768px)
{
  .footer-row{
    flex-direction: column;
  }

  .footer-col{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

    .footer-col .contact-details {
        display: flex;
        flex-direction: column; 
        align-items: center; 
    }
}