*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.2;
}


footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #2d2e33;
    padding: 50px 8%;
}

ul{
    list-style: none;
}

.footer-col{
    width: 25%;
}
.footer-col2{
    width: 25%;
}
.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    color: #f1bc0d;
    text-transform: capitalize;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #ffffff;
    height: 2px;
    width: 80%;
}

.footer-col2 h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    color: #f1bc0d;
    text-transform: capitalize;
}

.footer-col2 h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #ffffff;
    height: 2px;
    width: 80%;
}

ul li:not(:last-child){
    margin-bottom: 8px;
}

ul li a{
    display: block;
    font-size: 15px;
    text-transform: capitalize;
    color: #bdb6b6;
    text-decoration: none;
    transition: 0.4s;
}

ul li a:hover{
    color: white;
    padding-left: 2px;
}

.links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: rgba(40, 130, 214, 0.8);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover{
    color: #4d4f55;
    background-color: white;
}
hr{
    width: 100%;
    margin-top: 20px;
    background-color: #ffffff;
}
footer .copyright{
    color: #bdb6b6;
    width: 100%;
    text-align: center;
    justify-content: center;
    font-weight: 500;
    margin-top: 2%;
    padding: 0;
}


.footer-col .btnsub {
    perspective: 1000px;
    position: relative;
    display: inline-block;
  }

  .footer-col .btn {
    position: relative;
    background-color: rgba(40, 130, 214, 0.8);
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;

  }
  .footer-col .btn:hover {
    box-shadow: 0 0 10px 2px rgb(0, 94, 255);
    color: black;
  }



@media(max-width: 740px){
    .footer-col{
        width: 100%;
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-col2{
        display:block;
        margin: 0 auto;
        width:100%;
    }
    
    footer .copyright{
        font-size:13px;
    }
}

@media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
}
