html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: rgb(240,242,244);
}

li {
    list-style-type: none;
}

.footer {
    background-color: rgb(255,255,255);
    min-width: 70%;
    color: rgb(210,214,220);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 3%;
    padding-top: 1%;
    padding-left: 15%;
    padding-right: 15%;
    font-weight: 500;

}


.footer li {
    font-size: 14px;
    padding-bottom: 10px;
}

.footer li.footer_title, .footer p.footer_title {
    font-size: 20px;
    color: rgb(210,214,220);
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-rights {
    background-color: rgb(255,255,255);
    color: rgb(210,214,220);
    border-top: 1px solid rgb(240,242,244);
    font-size: 13px;
    padding-top: 2%;
    padding-left: 15%;
    padding-bottom: 5%;
    font-weight: 500;
    width: 100%;
}

input {
    background-color: rgb(240,242,244);
    padding: 17px;
    border: 1px solid rgb(210,214,220);
    margin-bottom: 10px;
    color: rgb(210,214,220);
}

::placeholder {
    color: rgb(210,214,220);
}

button {
    padding: 18px;
    background-color:  rgb(240,242,244);
    cursor: pointer;
    transition: all .3s ease-in-out;
    color: rgb(210,214,220);;
    text-transform: uppercase;
    box-shadow:none;
    border:none;
}

button:hover {
    padding: 18px;
    color: rgb(240,242,244);
    background-color: rgb(210,214,220);
    margin-bottom: 10px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: rgb(210,214,220);
}

#instafooter {
    margin-right: 3px;
}

@media screen and (min-width: 854px) {
    .navbar-pc {
        padding-left: 15%;
        padding-right: 15%;
        background-color: rgb(62,185,242);
        align-items: center;
        color: white;
        display: flex;
        flex-direction: row;
        width: 70%;
        justify-content: space-between;
        margin: 0;
    }

    .navbar-pc > ul {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }


    .navbar-left li, .navbar-right {
        cursor: pointer;
        transition: .3s ease-in-out;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        padding-right: 30px;
        padding-left: 30px;
        min-height: 100%;
        text-transform: capitalize;
    }

    .navbar-left {
        min-height: 100%;
    }

    .navbar-left li:hover, .navbar-right:hover {
        background-color: rgb(0,175,239);
    }

    .navbar-logo img {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .navbar-phone {
        display: none;
    }
    #contactDrop, #aboutDrop {
        display: none;
    }
}

@media screen and (max-width: 854px) {
    .navbar-pc {
        display: none;
    }

    .navbar-phone {
        background-color: rgb(62,185,242);
        align-items: center;
        color: white;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        justify-content: space-between;
        margin: 0;
    }

    .navbar-phone div {
        display: flex;
        width: 100%;
        border-bottom: 1px solid rgb(0,175,239);
        justify-content: center;
        cursor: pointer;
        align-items: center;
    }


    .navbar-phone div i, .navbar-phone div p {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-phone div:hover {
        background-color: rgb(0,175,239);
    }

    .navbar-phone div:not([id="bars"]){
        max-height: 0px;
    }

    .navbar-phone div {
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .navbar-phone.responsive div:not([id="bars"]){
        max-height: 34px;

    }

    .footer {
        flex-direction: column;
        padding-top: 50px;
    }

    .footer_item {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }

    .footer li {
        padding-bottom: 0;
    }

    .footer_dropdown.responsive .footer_item {
        max-height: 34px;
        padding-top: 7px;
    }
}
