footer {
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: #8DC63C;
    color: #fff;
    padding: 50px 20px;
}

.containerfooter {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.container h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 50px;
    background: #fff;
    margin-top: 20px;
}

.container li a:hover {
    color: #e701e7;
    transition: all 0.5s ease;
}

.col-1 {
    flex-basis: 30%;
    padding: 10px;
    margin-bottom: 20px;
}

.col-1 img {
    width: 55px;
    margin-bottom: 15px;
}

.col-1 p {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
}

.col-2 {
    flex-basis: 15%;
    padding: 10px;
    margin-bottom: 20px;

}

.col-2 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.col-2 ul {
    list-style: none;
}

.col-2 ul li {
    margin-bottom: 10px;
}

.col-2 ul li a {
    color: #fff;
    text-decoration: none;
}

.col-3 {
    flex-basis: 15%;
    padding: 10px;
    margin-bottom: 20px;
}

.col-3 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.col-3 ul {
    list-style: none;
}

.col-3 ul li {
    margin-bottom: 10px;
}

.col-3 ul li a {
    color: #fff;
    text-decoration: none;
}

.col-4 {
    flex-basis: 20%;
    padding: 10px;
    margin-bottom: 20px;
}

.col-4 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

form .far {
    color: #ccc;
    margin-right: 10px;
}

form input {
    background: transparent;
    width: 100%;
    border: none;
    color: #fff;
    outline: none;
}

form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    outline: none;
}

.social-icons {
    margin-top: 50px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #25262A;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.social-icons a:hover {
    background: #e701e7;
    color: #fff;
    transition: all 0.5s ease;
}

.footer-2 {
    width: 100%;
    background: #8DC63C;
    color: #fff;
    padding-top: 20px;
    text-align: center;
}