/* footer */
footer section{
    display: flex;
    justify-content: space-evenly;
    padding: 2rem;
    background-color: #fff;
}

footer section div h1 {
    text-transform: uppercase;
    font-size: 1.66rem;
    font-family: 'glober-bold';
    color: #000;
}

footer section div p,
footer section div ul li a{
    font-size: 1rem;
    font-family: 'glober-normal';
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

/* menu-hover-effect */
footer section div ul li a:hover {
    padding-left: 1rem;
    text-decoration: underline;
}

/* form-stylen */
footer section div form {
    padding: 1rem 0;
    display: flex;
}

/* input-field-round-left */
footer section div form input {
    outline: none;
    border: none;
    padding: 0 1rem;
    border-radius: 25px 0 0 25px;
    background: #e9e9e9;
}


/* button-round-right */
footer section div form button {
    border: none;
    padding: 0.75rem;
    border-radius: 0 25px 25px 0;
    background-color: #2167d0;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: capitalize;
}

/* button-round-hover */
footer section div form button:hover {
    background-color: #6bb5d0;
    color: #fff;
}

footer .copy {
    font-size: 0.885rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #afafaf;
    text-transform: capitalize;
    padding-top: 0;
}

@media screen and (max-width: 1000px) {
    footer section {
        flex-direction: column;
    }

    footer section div h1 {
        padding: 2rem 0 0 0;
    }

    footer section div form input {
        border-radius: 0px;
        width: 50%;
    }
}