@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

footer{
    margin:0;
    padding:0;
    box-sizing: border-box;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;

}
.container{
    max-width: 1170px;
    margin:auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
ul{
    list-style: none;
}
.footer{
    background-color: #178A8C;
    padding: 70px 0;

}
.footer-col{
    width: 25%;
    padding: 0 25px;
}
.footer-col h3{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}
.footer-col h3::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #081c54;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col p{
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: white;
    display: block;
    transition: all 0.3s ease;
    margin: 2.5px;

}
.footer-col h4{
    text-transform: capitalize;
    text-decoration: none;
    color: white;
    display: block;
}


.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    color: white;
    display: block;
    transition: all 0.3s ease;
    box-sizing: content-box;
}
.footer-col ul li a:hover{
    color: #4c698a;
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}
.footer-col .social-links .facebook:hover{
    background-color: #3b5998;
    color: white;
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 0 3px #3b5998,
    0px 0px 50px #3b5998,
    0px 0px 100px #3b5998;

}

.footer-col .social-links .Twitter:hover{
    background-color: #1DA1F2;
    color: white;
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 0 3px #1DA1F2,
    0px 0px 50px #1DA1F2,
    0px 0px 100px #1DA1F2;
}

.footer-col .social-links .Instagram:hover{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: white;
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 0 3px #405DE6,
    0px 0px 50px #405DE6,
    0px 0px 100px #405DE6;
}

.footer-col .social-links .Whatssap:hover{
    background-color: #25D366;
    color: white;
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 0 3px #25D366,
    0px 0px 50px #25D366,
    0px 0px 100px #25D366;
}
.footer-logo p{
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
    color: white;
    display: block;
    position: relative;
}

#Logo_footer{
    height: 100px;
    margin-top: -25px;
}
.footer-logo p::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #081c54;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
#Copy{
    color: white;
    text-align: center;
    margin-bottom: 0;
    margin-top: 50px;

}

/*responsive*/
@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .footer-col{
        width: 100%;
    }
}