body, html {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.navbar {
    transition-duration: 0.2s;
}

.navbar-nav li {
    padding-right: 1.3rem;
}

.nav-link {
    color: black;
    font-weight: 500;
}

.nav-link:hover {
    background-color: #212529;
    color: white;
}

#navbar-toggle-icon {
    color: black;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-item {
    position: relative;
    right: 0;
    transition: right, ease, 0.5s;
    border: 1px solid transparent;
}

.dropdown-item:hover {
    right: -10px;
    background-color: #212529;
    color: white;
}

.dropdown-toggle[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.dropdown-toggle:after {
    transition: 0.3s;
}

/* Footer */
#social {
    display: inline-block;
}

.social {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.social a {
    font-size: 2em;
}

.social p {
    margin-top: 1.2em;
}

.fa-envelope, .fa-phone, .fa-map-location-dot, .fa-facebook{
    color: white;
}

.fa-envelope:hover, .fa-phone:hover, .fa-map-location-dot:hover, 
.fa-facebook:hover {
    color: grey;
}

hr.copyright {
    border-top: 1px solid #d5d5d5;
    margin-top: .8rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

h6 {
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
}

a.mail {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    text-decoration-line: none;
}

.social p:hover, a.mail:hover {
    color: grey;
}

/*---Media Queries --*/
@media (max-width: 1200px) {
    .navbar-nav li {
        padding-right: 0.7rem;
    }

    h6 {
        margin-top: 0.6rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 992px) {

    h6 {
        margin-top: 0.6rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 768px) {

    h6 {
        margin-top: 0.6rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 576px) {

    h6 {
        margin-top: 0.6rem;
        margin-bottom: 1.3rem;
    }
}