.container {
  padding-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(14rem, 18rem) minmax(58rem, 65rem) minmax(14rem, 18rem);
  grid-template-areas:
    "h h h"
    "l l l"
    "r1c1 content r1c3"
    "r2c1 content r2c3"
    "r3c1 content r3c3";

  .header {
    grid-area: h;

    height: 6rem;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 1rem;

    background: transparent;
    color: var(--font-color-unselected);

    .icon {
      box-sizing: content-box;
      padding: 0;
      height: 1.2rem;
      width: 4rem;
    }
  }

  .logo-place {
    grid-column: span var(--grid-cols);
    padding-bottom: 2rem;
    cursor: pointer;
  }

  .cell {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: transparent;
    color: var(--font-color-unselected);
  }

  .button {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 1rem;

    padding: 2rem;

    border: var(--border-color-unselected);
    border-radius: 1rem;

    cursor: pointer;

    .icon {
      height: 4rem;
      width: 4rem;
    }

    & h2 {
      text-align: center;
    }

    & h3 {
      text-align: center;
    }

    &:hover {
      color: var(--font-color-hover);
    }
  }

  .header-logo {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 35rem;

    .company-logo {
      height: 8rem;
      width: 8rem;
    }

    .company-name {
      position: relative;
      height: 8rem;
      font-family: "ecoerg";
      width: 24rem;

      .title {
        position: absolute;
        top: 2rem;
        left: 0;
        font-size: 6rem;
      }

      .addnotation {
        box-sizing: content-box;
        height: 1.4rem;
        padding: 0.3rem;
        position: absolute;
        bottom: -1rem;
        right: -2rem;
        font-size: 1rem;
        color: var(--font-color-hover);
        border: solid thin red;
        border-radius: 0.4rem;
      }
    }
  }

  .link {
    text-decoration: underline dotted green;
    cursor: pointer;

    &.large {
      text-decoration: none;
      box-sizing: content-box;
      align-content: center;
      height: 1.2rem;
      padding: 1rem;
    }

    &:hover {
      background: rgb(2, 63, 5);
      color: beige;
      border-radius: 0.4rem;
    }

  }

  .alert-message {
    z-index: 100;
    background-color: rgba(53, 31, 31, 0.562);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .content {
    position: relative;
    padding: 1rem;
    justify-content: center;
    overflow: hidden;

    .animation {
      z-index: -1;
      position: absolute;
      border: none;
    }

    .content-container {
      position: absolute;
      height: 100%;
      width: 100%;
      justify-content: center;
      padding: 1.5rem;
      background: transparent;
      overflow: auto;

      .format {
        font-size: 1.2rem;

        .footnote {
          display: grid;
          grid-template-columns: 1fr 1fr;
          font-size: 0.9rem;

          &.example {
            grid-template-columns: 0.8fr 1.2fr;
          }

          & h2 {
            padding-top: 1.5rem;
            line-height: normal;
          }

          & h3 {
            line-height: normal;
          }

          .footnote-header {
            grid-column: span 2;
            border-bottom: solid thin green;
          }

          .text_right {
            text-align: end;
            padding-right: 2rem;
          }

          .company-data {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            align-items: center;
          }

          .contact-data {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            align-items: center;
            justify-content: center;
          }

          & p {
            box-sizing: border-box;
            margin: 0.2rem;
          }
        }
      }

      .format-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;

        .map {
          top: 0;

        }

        .contact-form {
          display: grid;
          width: 100%;
          gap: 0.2rem;

          .input-style {
            background: transparent;
            color: rgb(179, 216, 238);
            outline: none;
            border: var(--border-color-unselected);
            border-radius: 0.4rem;
            box-sizing: content-box;
            padding: 0.4rem;
            max-width: 50rem;
            max-height: 5rem;


            :hover {
              border: solid thin rgb(70, 127, 146);
            }
          }

          .button-area {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;
            gap: 1rem;

            & button {
              background: transparent;
              color: #fff;
              border: var(--border-color-unselected);
              border-radius: 0.8rem;
              padding: 0.8rem;
              min-height: 2.2rem;
              max-height: 3rem;
              min-width: 10rem;
              max-width: 12rem;
              cursor: pointer;

              :hover {
                border: solid thin rgb(70, 127, 146);
              }
            }

            .captcha {
              display: flex;
              flex-direction: row;
              align-items: center;
              width: 12rem;
              height: 3rem;
            }
          }
        }
      }
    }
  }
}
