footer.main-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  height: 100%;
  width: 100%;
  color: var(--color-white);
  background-color: var(--primary-color);

  .desc {
    margin: 0;
  }

  ul {
    padding-left: 0;
    padding-top: 35px;
    margin: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-header);

    li,
    a {
      color: var(--color-background-alt);
      text-decoration: none;
    }
  }
}

.copyright-section {
  padding-top: 15px;
  padding-bottom: 15px;

  p {
    margin: 0;
    color: var(--primary-color);
    font-weight: bold;
  }
}

@media screen and (min-width: 1049px) {
  footer.main-footer {

    height: 100%;
    width: 100%;
    color: var(--color-white);
    background-color: var(--primary-color);

    .left {
      flex-direction: row;
      align-items: start;

      .branding-and-social-media {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        text-align: center;

        h2,
        h3,
        p {
          color: var(--secondary-color);
        }
      }
    }

    .right {
      .views-element-container {
        padding: 20px;

        .contact-us-item {
          display: flex;
          gap: 10px;
        }

        .col-5+.col-5 {
          padding-top: 10px;
        }
      }
    }

    p {
      margin: 0;
    }

    ul {
      padding-left: 0;
      padding-top: 35px;
      margin: 0;
      display: flex;
      flex-direction: row;
      list-style: none;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
      font-size: var(--font-size-header);

      li,
      a {
        color: var(--color-background-alt);
        text-decoration: none;
      }
    }
  }
}