body {
    font-family: "Montserrat", sans-serif;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
span,
ul,
li {
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

.footer {
    border-top: 1px solid #ececec;
    width: 100%;
    height: fit-content;
    background-color: rgb(255, 255, 255);
    color: rgb(20, 20, 20);
    padding: 30px;
    font-weight: 500;
}

.footer a {
    color: rgb(20, 20, 20);
}

.link-categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    width: 90%;
}

.link-categories ul {
    display: flex;
    flex-direction: column;
}

.link-categories h2 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 600;
}

.link-categories a {
    margin-bottom: 15px;
    font-size: 12px;
}

.link-categories a:last-child {
    margin-bottom: 0px;
}

.email-sign-up input[type="text"] {
    border: none;
    background: none;
    border-bottom: 1px solid rgb(20, 20, 20);
    padding-bottom: 10px;
    width: 100%;
    height: 30px;
}

.email-sign-up button {
    background-color: rgb(20, 20, 20);
    color: #ffffff;
    margin: 15px 0px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.email-sign-up button:hover {
    opacity: 0.7;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 20px;
}

.left-side {
    display: flex;
    font-size: 9px;
    width: 100%;
    height: 20px;
}

.left-side a {
    padding: 5px 0px;
}

.left-side a:first-child {
    padding-right: 15px;
    border-right: 1px solid rgb(20, 20, 20);
}

.left-side a:last-child {
    margin-left: 15px;
}

@media only screen and (max-width: 770px) {
    .footer {
        text-align: center;
        padding: 30px 0px;
    }
    .link-categories {
        flex-direction: column;
        width: 100%;
    }

    .link-categories ul {
        margin-bottom: 40px;
    }

    .bottom-section {
     flex-direction: column;
     width: 100%;
    }

    .left-side{
        display: block;
    }

    .email-sign-up{
        width: 90%;
        margin: 0 auto;
    }
}
