/*
    Started on  : October 2, 2023
    Author      : __MeditaKnorr
    Project     : INAS IP - WebSite
    File        : Cascading Style Sheets (.CSS)
*/

// @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
// font-family: "Poppins", sans-serif;

// VARIABLES
$--fontFamily: 'Fira Sans',
sans-serif;
$--primaryGreen: rgba(#00986F, 0.95);
$--secondGreen: rgba(#D1E7DB, 1.0);
$--primaryBlack: rgba(#393939, 1.0);

// STYLING

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.show-element {
  display: flex !important;
}

.hide-element {
  display: none !important;
}

a:link {
  /* unvisited link */
}

a:visited {
  /* visited link */
}

a:hover {
  /* hovered link */
  text-decoration: none;
}

a:active {
  /* active link in use */
}

a {
  text-decoration: none !important;
}

html {
  width: 100vw;
  height: 100vh;
}

body {
  width: 100%;
  height: 100%;
  direction: ltr;
  background: #ffffff;
  overflow-x: hidden;
  font-family: $--fontFamily !important; //'Open Sans', 'Segoe Ui', arial
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  white-space: normal;
  outline-style: none;
  cursor: default;
  word-wrap: break-word;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.5;
}

header {
  position: relative;
  width: inherit;
  min-height: 3.125rem;
  display: flex;
  flex-direction: column;

  div.header--first-row {
    width: 100%;
    height: 2.6875rem;
    padding: 0 9.375rem;
    margin: 0;
    border: 0;
    display: flex;
    justify-content: space-between;
    background: rgba(#F1F1F1, 1.0);

    div.first-row__left-container {
      div#user-current-date {
        width: 22.5rem;
        font-weight: 500;
        font-size: 0.6875rem;
        height: 2.6875rem;
        line-height: 2.6875rem;
        color: #393939;
      }
    }

    div.first-row__right-container {
      display: flex;
      justify-content: center;
      align-items: center;

      div#site-webmaster {
        width: 6.25rem;
        height: 1.5625rem;
        border-radius: 0.625rem;
        text-align: center;
        margin: 0 0 0 1.25rem;
        color: rgba(#FFFFFF, 1.0);
        background-color: rgba(#A26115, 1.0);
        //border: 0.0625rem solid rgba(#F1B406, 1.0);
        //background: rgba(#F1B406, 0.9);
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
        transition: none !important;

        a.button {
          width: 100%;
          height: 100%;
          font-weight: 600;
          text-align: center;
          line-height: 1.5rem;
          text-decoration: none;
          color: inherit;
        }

        &:hover {
          cursor: pointer;
          background-color: rgba(#8A5213, 1.0);
        }
      }

      div#site-language-selector {
        display: flex;
        width: auto;
        font-weight: 500;
        font-size: 0.6875rem;
        height: 2.6875rem;
        line-height: 2.6875rem;
        color: #393939;

        div.primary-language {
          width: 1.4375rem;
          height: 1.4375rem;
          border-radius: 50%;
          background: url("../../assets/images/icons/pt__icon.png") no-repeat;
          background-size: 1.5625rem 1.5625rem;
          background-position: center;
          border: 0.1875rem solid #FFFFFF;
          margin: auto 0.625rem auto 1.25rem;

          &:hover {
            cursor: pointer;
          }
        }

        div.second-language {
          width: 1.4375rem;
          height: 1.4375rem;
          border-radius: 50%;
          background: url("../../assets/images/icons/uk__icon.png") no-repeat;
          background-size: cover;
          background-position: center;
          border: 0.1875rem solid #FFFFFF;
          margin: auto 0;

          &:hover {
            cursor: pointer;
          }
        }
      }
    }
  }

  div.header--second-row {
    width: 100%;
    height: 6.625rem;
    padding: 0 9.375rem;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;

    div.second-row__left-container {
      div#site-logo-icon {
        width: 7.5rem;
        height: 5rem;
        background: url("../../assets/images/icons/inas__logo.png") no-repeat;
        background-size: contain;
        background-position: center;
        margin: auto 0;
        padding: 0;
        border: 0;

        &:hover {
          cursor: pointer;
        }
      }
    }

    div.second-row__right-container {
      div#site-search-and-socials {
        display: flex;

        form.site-search-bar {
          position: relative;
          width: auto;
          display: flex;
          justify-content: start;
          align-items: center;

          input {
            width: 14.75rem;
            font-weight: 500;
            font-size: 0.75rem;
            color: #393939;
            border-radius: 0;
            border: 0.0625rem solid rgba(#393939, 0.2);
            background-color: rgba(#ffffff, 1);
            margin: 0;
            padding: 0.5rem 1.25rem 0.5rem 2.5rem;
          }

          button.search-icon {
            position: absolute;
            top: 0.3125rem;
            left: 0.5rem;
            width: 1.375rem;
            height: 1.375rem;
            border-radius: 50%;
            color: rgba(#393939, 0);
            background: rgba(#393939, 0.2) url("../../assets/images/icons/magnifier__icon.svg") no-repeat;
            background-size: 40%;
            background-position: center;

            &:hover {
              cursor: pointer;
              background-color: #00986F;
            }
          }
        }

        div.socials-icons {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 7.5rem;

          img {
            width: 1.25rem;
            height: 1.25rem;
            opacity: 0.9;
            margin: 0 0 0 0.3125rem;
            padding: 0;
            border: 0;
            filter: grayscale(100%) contrast(0%) brightness(0%);

            &:hover {
              filter: grayscale(0%);
              cursor: pointer;
              opacity: 1;
            }
          }

        }
      }
    }
  }

  div.header--third-row {
    width: 100%;
    height: auto;
    padding: 0 9.375rem;
    border: 0;
    margin: 0;
    position: relative;

    div.main-container {
      width: 100%;
      height: 31.625rem;
      border: 0;
      margin: 0;
      padding: 0;
      position: relative;
      display: flex;
      justify-content: center;

      nav#site-navigation-links {
        width: 99%;
        height: 3.5rem;
        margin: 0.375rem auto;
        padding: 0;
        z-index: 50;
        position: absolute;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        div.navigation-link {
          min-width: 8.125rem;
          text-align: center;
          font-size: 0.875rem;
          font-weight: 650;
          line-height: 3.5rem;
          background-color: $--primaryGreen;
          color: $--secondGreen;
          margin: 0.09375rem;
          padding: 0;
          border: 0;
          text-transform: uppercase;

          a.navigation-direct-link {
            min-width: 8.125rem;
            color: inherit !important;
            -webkit-transition: none;
            -moz-transition: none;
            -o-transition: none;
            transition: none;
            padding: 1.125rem 1.875rem;

            &:hover {
              cursor: pointer;
              color: $--primaryBlack !important;
              background-color: $--secondGreen;
            }
          }

          &:hover {
            cursor: pointer;
            color: $--primaryBlack;
            background-color: $--secondGreen;
          }
        }

        div.navigation-link-pane {
          position: absolute;
          top: 3.625rem;
          width: 100%;
          min-height: 19.125rem;
          background-color: rgba($--secondGreen, 0.98);
          display: none;
          padding: 1.875rem;
        }

        span.navigation-with-options {
          &::after {
            background-image: url("../../assets/images/icons/black-arrow__icon.svg");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            content: '';
            height: 0.75rem;
            position: relative;
            right: -0.375rem;
            top: 0.5625rem;
            width: 0.5rem;
            transform: translateY(-50%);
            transition: transform 200ms ease-in-out;
            will-change: transform;
            display: inline-block;
            transform: translateY(-50%) rotate(0deg);
          }
        }
      }

      section#site-image-carousel {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 30;

        div.carousel-inner {
          width: 100%;
          height: 31.625rem;
          position: relative;
          z-index: 31;

          div.item {
            width: 100%;
            height: 100%;

            div.carousel-image-text {
              width: 21.875rem;
              max-height: 15rem;
              z-index: 34;
              position: absolute;
              top: 10.625rem;
              left: 3.125rem;
              font-size: 2.1875rem;
              line-height: 2.1875rem;
              font-weight: 800;
              text-align: left;
              text-transform: uppercase;
              text-overflow: ellipsis;
              overflow: hidden;
              color: rgba(#FFFFFF, 1.0);
              background-color: rgba(#000000, 0.7);
              padding: 0.9375rem 0.625rem;
              border-radius: 0.3125rem;
            }

            div.carousel-image-gradient-layer {
              width: 47.25rem;
              height: 31.625rem;
              background: rgba(0, 0, 0, 1);
              background: -moz-linear-gradient(135deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
              background: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
              background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
              position: absolute;
              z-index: 33;
            }

            img.carousel-image {
              object-fit: cover;
              z-index: 32;
            }
          }
        }

        div.carousel-action-area {
          width: 47.25rem;
          height: 31.625rem;
          position: absolute;
          z-index: 33;
          display: flex;
          justify-content: center;
          align-items: center;

          div.action-buttons {
            width: 4.6875rem;
            height: 2.25rem;
            z-index: 32;
            position: absolute;
            bottom: 3.125rem;
            left: 3.125rem;
            display: flex;
            justify-content: space-between;
            align-items: center;

            a#left-carousel-image {
              width: 2.125rem;
              height: 2.125rem;
              border-radius: 50%;
              background: rgba(#F1B406, 0.1) url("../assets/images/icons/left-white-arrow__icon.svg") no-repeat;
              background-size: 30%;
              background-position: center;
              margin: auto 0;
              -webkit-transition: none !important;
              -moz-transition: none !important;
              -o-transition: none !important;
              transition: none !important;

              &:hover {
                width: 2.1875rem;
                height: 2.1875rem;
                cursor: pointer;
                background-size: 38%;
                background: rgba(#F1B406, 1.0) url("../assets/images/icons/right-black-arrow__icon.svg") no-repeat;
                background-position: center;
                transform: rotate(180deg);
              }
            }

            #right-carousel-image {
              width: 2.125rem;
              height: 2.125rem;
              border-radius: 50%;
              background: rgba(#F1B406, 0.1) url("../assets/images/icons/left-white-arrow__icon.svg") no-repeat;
              background-size: 30%;
              background-position: center;
              transform: rotate(180deg);
              margin: auto 0;
              -webkit-transition: none !important;
              -moz-transition: none !important;
              -o-transition: none !important;
              transition: none !important;

              &:hover {
                width: 2.1875rem;
                height: 2.1875rem;
                cursor: pointer;
                background-size: 38%;
                background: rgba(#F1B406, 1.0) url("../assets/images/icons/right-black-arrow__icon.svg") no-repeat;
                background-position: center;
                transform: rotate(0deg);
              }
            }
          }
        }
      }
    }
  }
}

main#main-content-area {
  width: 100%;
  height: auto;
  padding: 0 9.375rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #393939;
  position: relative;

  section.main__left-container {
    width: calc(100% - 25rem);
    height: auto;
    padding: 0;
    margin: 0;
    border: 0;
    display: flex;
    flex-direction: column;

    h2.left-container--section-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      font-size: 0.875rem;
      margin: 2.5rem 0 0 0;
      padding: 0 1.875rem 0 0;

      a.left-container--section-title-link {
        text-align: right;
        font-size: 0.8125rem;
        margin: auto 0;
        padding: 0.3125rem 1.25rem;
        border-radius: 0.625rem;
        color: rgba(#A26115, 1.0);

        &:hover {
          cursor: pointer;
          background-color: rgba(#8A5213, 1.0);
          color: rgba(#FFFFFF, 1.0);
        }
      }
    }

    div#featured-card-news {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      gap: 1.25rem;
      margin: 1.875rem 1.25rem 0 0rem;

      div.tiled-card {
        overflow: hidden;
        width: 23.75rem;
        height: 18.75rem;
        border-radius: 0;
        padding: 0;
        margin: 0;
        opacity: 0.95;
        border: 0.0625rem dotted rgba(0, 0, 0, 0.2);
        position: relative;

        &:hover {
          opacity: 1;
          border: 0.0625rem dotted rgba(0, 0, 0, 0.4);
          cursor: pointer;

          div.tiled-card-thumbnail img {
            width: 101%;
            height: 101%;
          }
        }

        div.tiled-card-thumbnail {
          width: 100%;
          height: calc(100% - 7.5rem);
          background-color: rgba(#393939, 0.15);

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        div.tiled-card-description {
          width: 100%;
          min-height: 7.5rem;
          padding: 0.625rem;
          background-color: #ffffff;
          position: absolute;
          bottom: 0;

          h4 {
            color: #5a5a5a;
            font-size: 0.75rem;
            margin: 0.625rem 0.625rem 1.875rem 0.625rem;
          }

          h3 {
            width: 96%;
            height: 3.125rem;
            margin: 0.625rem;
            padding: 0;
            font-size: 1rem;
            line-height: 1.25rem;
            text-overflow: ellipsis;
            overflow: hidden;
          }
        }
      }
    }

    div#featured-docs-posts {
      width: 100%;
      height: auto;
      margin: 1.875rem 1.25rem 0 0rem;
      padding: 0 1.875rem 0 0;

      div.docs-posts-buttons {
        display: flex;

        div {
          padding: 1.25rem 1.875rem;
          font-size: 0.875rem;
          font-weight: 600;
          text-transform: uppercase;
          color: rgba(#5A5A5A, 1.0);

          &:hover {
            cursor: pointer;
            background-color: rgba(#000000, 1.0) !important;
            color: rgba(#FFFFFF, 1.0);
          }

          &.active {
            background-color: $--primaryGreen;
            color: rgba(#FFFFFF, 1.0);
          }
        }
      }

      div.docs-posts-boards {
        width: 100%;
        min-height: 3.125rem;
        border: 0.0625rem dotted $--primaryBlack;
        border-top: 0.1875rem solid $--primaryGreen;

        div {
          width: 100%;
          display: none;

          ul {
            width: 100%;
            list-style: none;

            li {
              display: flex;
              align-items: center;
              padding: 0.9375rem 1.25rem;
              border-bottom: 0.0625rem solid rgba($--primaryBlack, 0.07);

              div.pdf__icon {
                display: flex;
                width: 1.375rem;
                height: 1.375rem;
                background: url("../assets/images/icons/pdf__icon.svg") no-repeat;
                background-size: contain;
                background-position: center;
              }

              a {
                margin: 0 0 0 0.9375rem;
                text-decoration: none;
                color: $--primaryBlack;

                &:hover {
                  text-decoration: underline !important;
                }
              }
            }
          }

          &.active {
            display: flex;
          }
        }
      }
    }

    div#featured-media-files {
      width: 100%;
      min-height: 17.5rem;
      margin: 1.875rem 1.25rem 0 0rem;
      padding: 1.875rem 0 0 0;
      color: $--primaryBlack;
      display: flex;
      gap: 3.75rem;

      div.featured-media-video {
        width: 43.75rem;
        height: auto;
        display: flex;
        flex-direction: column;

        div.featured-media-video-title {
          width: 100%;
          font-size: 0.875rem;
          font-weight: 600;
          text-align: center;
          margin: 0 0 1.25rem 0;
        }

        div.featured-media-video-player {
          width: 100%;
          min-height: 21.875rem;
          background-color: $--primaryGreen;

          iframe {
            width: 100%;
            height: 21.875rem;
            border: 0.1875rem solid $--primaryGreen;
            border-radius: 0.625rem;
          }
        }

        a {
          align-self: flex-end;
          width: 8.4375rem;
          height: auto;
          font-size: 0.8125rem;
          font-weight: 600;
          margin: 0.625rem 0;
          padding: 0.5rem 1.25rem;
          border-radius: 0.625rem;
          color: rgba(#A26115, 1.0);

          &:hover {
            cursor: pointer;
            background-color: rgba(#8A5213, 1.0);
            color: rgba(#FFFFFF, 1.0);
          }
        }
      }

      div.featured-media-photo {
        width: 25rem;
        height: auto;
        display: flex;
        flex-direction: column;

        div.featured-media-photo-title {
          width: 100%;
          font-size: 0.875rem;
          font-weight: 600;
          text-align: center;
          margin: 0 0 1.25rem 0;
        }

        div.featured-media-photo-frame {
          width: 100%;
          height: 21.875rem;
          background-color: $--primaryGreen;
          object-fit: cover;
          overflow: hidden;

          img {
            width: 25rem;
            height: 21.875rem;
            border: 0.625rem solid $--primaryGreen;
            border-bottom: 2.5rem solid $--primaryGreen;
          }
        }

        a {
          align-self: flex-end;
          width: 8.4375rem;
          height: auto;
          font-size: 0.8125rem;
          font-weight: 600;
          margin: 0.625rem 0;
          padding: 0.5rem 1.25rem;
          border-radius: 0.625rem;
          color: rgba(#A26115, 1.0);

          &:hover {
            cursor: pointer;
            background-color: rgba(#8A5213, 1.0);
            color: rgba(#FFFFFF, 1.0);
          }
        }
      }
    }
  }

  aside.main__right-container {
    width: 25rem;
    min-height: 39.25rem;
    margin: 0 0 0 0.25rem;
    padding: 0.9375rem;
    overflow-x: visible;
    background-size: 100%;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UxZTFlMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(#e1e1e1, 0.7)), color-stop(100%, #ffffff));
    background-image: -webkit-linear-gradient(rgba(#e1e1e1, 0.7), #ffffff);
    background-image: -moz-linear-gradient(rgba(#e1e1e1, 0.7), #ffffff);
    background-image: -o-linear-gradient(rgba(#e1e1e1, 0.7), #ffffff);
    background-image: linear-gradient(rgba(#e1e1e1, 0.7), #ffffff);
    font-size: 0.8125rem;

    h2.right-container--section-title {
      width: 100%;
      font-size: 0.875rem;
      margin: 1.875rem 0;
      text-align: left;
    }

    div#featured-company-structure {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: 0 0 0 1.25rem;
      gap: 1.875rem;

      div.company-structure-person {
        width: 100%;
        min-height: 6.25rem;
        display: flex;
        gap: 1.25rem;

        div.person-profile-text {
          width: 12.5rem;
          font-size: 0.875rem;
          line-height: 0.3125rem;
          display: flex;
          flex-direction: column;
          align-items: start;
          justify-content: center;
          padding: 1.25rem 0;
        }

        div.person-profile-photo {
          width: 6.25rem;
          height: 7.1875rem;
          border: 0.0625rem solid rgba($--primaryBlack, 0.2);
          object-fit: cover;

          img {
            width: 100%;
            height: 100%;
            border: 0.375rem solid rgba(#ffffff, 0.7);
          }
        }
      }

      a.company-structure-more-button {
        width: 10.625rem;
        padding: 0.4375rem 0.9375rem;
        margin: -0.3125rem 0 0 7.5rem;
        font-size: 0.75rem;
        line-height: 0.75rem;
        text-align: center;
        color: rgba(#FFFFFF, 1.0);
        background-color: $--primaryGreen;
        font-weight: 600;
        border-radius: 0.75rem;
        //align-self: flex-end;

        &:hover {
          cursor: pointer;
          color: $--primaryBlack;
        }
      }
    }

    div#featured-company-days {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: 0 0 0 1.25rem;
      gap: 1.25rem;

      div.company-days-links {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;

        span {
          width: 3.75rem;
          height: 3.125rem;
          padding: 0.625rem;
          text-align: center;
          font-size: 0.8125rem;
          line-height: 0.9375rem;
          font-weight: 600;
          text-wrap: wrap;
          text-overflow: ellipsis;
          color: rgba(#FFFFFF, 1.0);
          background-color: $--primaryGreen;
        }

        a {
          width: 17.5rem;
          height: 3.125rem;
          font-size: 0.8125rem;
          font-weight: 600;
          line-height: 0.9375rem;
          padding: 0.5rem 0 0 1.25rem;
          text-wrap: wrap;
          text-overflow: ellipsis;
          color: $--primaryBlack;

          &:hover {
            cursor: pointer;
            text-decoration: underline !important;
          }
        }
      }
    }

    div#featured-quick-links {
      min-height: 3.75rem;
      background-color: $--primaryBlack;
      margin: 1.875rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.125rem;

      a.quick-link {
        width: 100%;
        padding: 1.25rem;
        text-align: left;
        font-size: 0.8125rem;
        line-height: 0.9375rem;
        font-weight: 600;
        text-wrap: wrap;
        text-overflow: ellipsis;
        color: rgba(#FFFFFF, 1.0);
        background-color: rgba(#FFFFFF, 0.05);

        &:hover {
          color: rgba(#FFFFFF, 1.0);
          background-color: $--primaryGreen;
        }
      }
    }

    div#featured-quick-banner {
      height: auto;
      margin: 1.875rem 1.25rem;
      object-fit: cover;

      img.quick-banner-image {
        width: 100%;
      }
    }
  }
}

footer {
  width: 100%;
  height: auto;
  position: relative;
  background: rgba(#F1F1F1, 1.0);
  border-top: 0.1875rem solid #e4e4e4;
  margin: 6.25rem 0 0 0;
  padding: 0 9.375rem 4.375rem 9.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;

  div.footer__icon {
    width: 3.875rem;
    height: 3.875rem;
    border: 0.0625rem solid #e4e4e4;
    background-image: url("../../assets/images/icons/emblem__logo.png");
    background-color: #e4e4e4;
    background-repeat: no-repeat;
    background-size: cover;
    margin: -1.9375rem 0 0 0;
    border-radius: 1.9375rem;
  }

  div.footer__container {
    width: 100%;
    min-height: 17.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.875rem;
    margin: 1.25rem 0 2.5rem 0;

    div.footer__links {
      width: 9.375rem;
      height: 12.5rem;

      h4 {
        width: 100%;
        text-align: left;
        font-size: 0.9375rem !important;
      }

      ul {
        width: 100%;
        list-style: none;

        li {
          width: 100%;
          padding: 0;
          text-wrap: wrap;
          font-size: 0.8125rem !important;
          color: rgba($--primaryBlack, 0.8);
          line-height: 1.25rem;

          a {
            color: inherit;

            &:hover {
              text-decoration: underline !important;
            }
          }
        }
      }
    }
  }

  div.footer__copyright {
    width: 100%;
    min-height: 2.5rem;
    font-size: 0.875rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #5a5a5a;

    span {
      display: flex;
      align-items: center !important;

      div {
        line-height: 1.375rem;
        margin: 1.25rem 0 0 0.75rem;
        text-transform: uppercase;
      }
    }
  }
}
