/* Sticky footer - keeps footer at bottom of viewport when content is short */
html {
    min-height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.copyright
{
    margin-top: auto;     /* Pushes footer to bottom in flex layout */
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.copyright p
{
    text-align: center;
    padding: 28px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Footer inside social section: transparent so section gradient + overlay show through */
.socials-section-modern .copyright,
.socials-section-modern .copyright p {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff !important;
}

@media (max-width: 640px){
  .copyright p{
    padding: 18px;
    font-size: 14px;
  }
}