.foot{
    box-sizing: border-box;
    margin:0;
    padding:0;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
footer{
     background-color:#741717;
     position: relative;
     width: 100%;
     min-height: 250px;
     padding: 3rem 1rem;
}
footer .container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

footer .col{
    min-width: 250px;
    color:rgb(255, 232, 180);
    font-family: Kanit;
    padding:0 2rem;
}
footer .col .logo{
    width: 100px;
    margin-bottom:25px;
}
footer .col h3{
    color:rgb(251, 220, 149);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}
footer .col h3::after{
    content: '';
    height:3px;
    width:0px;
    background-color:rgb(255, 232, 180);
    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, 232, 180);
    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:rgb(255, 232, 180);
    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, 232, 180);
    transition: 0.5s ease;
    opacity: 0;
}
footer .col .links a:hover::before{
    opacity: 1;
}
footer .col .links a:hover{
    transform: translateX(-8px);
    color:rgb(255, 232, 180);
}
footer .col .contact-details{
    display: inline-flex;
    justify-content: space-between;
}
footer .col .contact-details i{
    margin-right:15px;
}

/********** Responsive Design ********/
@media(max-width:900px)
{
  footer .row{
    flex-direction: column;
  }
  footer .col{
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
  }
}
@media(max-width:768px)
{
  footer .row{
    flex-direction: column;
  }
  footer .col{
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}
