/* common nav styles */
.navigation-wrapper {
    height: 300px;
    background: linear-gradient(
    135deg,
    rgba(210, 207, 212, 1),
	rgba(204, 216, 225, 1),
	rgba(102, 138, 167, 1),
	rgba(36, 80, 106, 1),
	rgba(30, 45, 79, 1),
	rgba(1, 4, 37, 1)
    );
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    color: #cbcbcb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 100px;
    position: relative;
}
                                                           /* center column */
.navigation-wrapper > .center-column > .webpages {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 42px;
    width: 500px;
}
/* logo wrapper */
.navigation-wrapper > .center-column > .webpages > .logo {
    display: flex;
    justify-content: center;
}
.navigation-wrapper > .center-column > .webpages > .logo img {
    width: 216px; 
}
/* .links-wrapper */
.navigation-wrapper > .center-column > .webpages > .links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 /* .nav-link */
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link {
    width: 95px;
    align-items: center;
}
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link a {
    font-family: sans-serif;
    color: rgba(135, 122, 133, 1);
    text-decoration: none;
    transition: 0.5s;
}
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link a:hover {
    color: #A7C8CD;
    letter-spacing: 2px;
}
@keyframes gradientMove {
  0% { background-position: 0% 25%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}
.footer {
    background: linear-gradient(
    135deg,
    rgba(102, 138, 167, 1),
    rgba(36, 80, 106, 1),
    rgba(30, 45, 79, 1),
    rgba(1, 4, 37, 1)
    );
    animation: gradientMove 12s ease infinite;
    background-size: 300% 300%;
    position: relative;
    font-family: "Ubuntu Condensed", sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin-top: -4px;
    padding:40px 32px;
}
.footer > * {
    margin: 10px 0;
}
.footer-top {
    width: 100%;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:30px;
    padding-bottom:32px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand img {
    margin-left: 110px;
}
.footer-brand img {
    width:140px;
    margin-bottom:18px;
}
.footer-brand p {
    width:420px;
    line-height:1.75;
    color: rgba(135, 122, 133, 1);
}
.footer-links {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.footer-column h3 {
    margin-bottom:14px;
    color: rgba(210, 207, 212, 1);
    font-size:1.05rem;
}
.footer-column a, .footer-column p {
    display:block;
    color: rgba(135, 122, 133, 1);
    text-decoration:none;
    margin-bottom:10px;
    font-size:.95rem;
    transition: 0.5s;
}
.footer-column a:hover {
    color: #A7C8CD;
    letter-spacing: 2px;
}
.footer-bottom {
    width: 100%;
    max-width:1180px;
    margin:0 auto;
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
    font-size:.95rem;
}