.section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 var(--layout-h-p);
  padding-top: 2rem;
  padding-bottom: 3em;

  .column-item {
    flex: 50;
    display: flex;
    flex-direction: column;
    align-items: center;

    &.center {
      justify-content: center;
      align-items: center;
    }
  }
}

nav {
  background-color: var(--secondary-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--layout-h-p);
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  justify-content: space-between;

  .login-btn {
    padding: 0.5em 2em;
    height: 100%;
    align-self: center;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: auto;
    gap: 0.1em;

    li {
      transition: background-color 0.3s ease;
      font-size: 0.8rem;
      font-weight: 600;
      height: 100%;
      width: auto;
      margin: 0;
      padding: 0;
      align-items: center;
      max-height: 50px;

      &:hover {
        background-color: var(--primary-color) !important;
        color: white;
      }

      a {
        display: block;
        padding: 1rem 0.5em;
        justify-content: center;
        text-decoration: none;
        color: white;
        width: max-content;
        height: 45px;

        &.bolder {
          color: var(--primary-color);

          &:hover {
            color: white !important;
          }
        }
      }
    }
  }
}

h1 {
  font-size: 1.8rem;
  font-weight: 300;
  padding: 0;
  margin: 0;
  font-family: "Anton", sans-serif;
}

.hexagon {
  width: 300px;
  height: 300px;
  clip-path: polygon(25% 6.7%,
      75% 6.7%,
      100% 50%,
      75% 93.3%,
      25% 93.3%,
      0% 50%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10 px;
  background-color: var(--primary-color);
  transition: transform 0.2s;

  &:hover {
    transform: scale(1.1);
  }

  &.float {
    position: absolute;
    bottom: -40px;
    z-index: 9;
  }

  &.large {
    width: 400px;
    height: 400px;
  }

  &.small {
    width: 200px;
    height: 200px;
  }

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

  &.shadow {
    box-shadow: 0px 7px 15px -3px rgba(0, 0, 0, 0.5);
  }

  &.parent {
    position: relative;
  }

  &.children {
    position: absolute;
  }

  &.to-front {
    z-index: 1;
  }

  &.to-back {
    z-index: -1;
  }

  &.gray {
    background-color: var(--secondary-color);
  }
}


.divider {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  line-height: 0;
}

.divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1px);
  height: 100%;
}

.text {
  &.primary {
    color: var(--primary-color);
  }

  &.quaternary {
    color: var(--quaternary-color);
  }

  &.bold {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

footer {
  background-color: #a6a6a6;
  color: white;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid transparent;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 10px;

  h3 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid white;
  }

  .material-symbols-outlined {
    color: black;
    padding: 0.2em;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
  }

  span {
    color: black;
    font-weight: 600;
    font-size: 15px;
  }
}


.footer-column ul {
  list-style: none;
  padding: 0;

  li {
    margin-bottom: 12px;
    text-align: center;

    a {
      text-decoration: none;
      color: white;
      font-weight: 100;
      transition: 0.1s font-weight ease-in-out,
        0.1s color ease-in-out;

      &:hover {
        font-weight: 600;
        color: black;
      }
    }
  }
}

.footer-contact div {
  display: flex;
  align-items: center;
  margin-bottom: 12px;

  img {
    width: 22px;
    margin-right: 10px;
  }
}


.footer-social div {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  justify-content: center;
  text-align: center;

  img {
    width: 25px;
    margin-right: 10px;
  }

  span {
    text-align: center;
    color: white;
    transition: 0.1s font-weight ease-in-out;
    font-weight: 300;
    cursor: pointer;

    &:hover {
      font-weight: 600;
    }
  }
}

.footer-bottom {
  background: #ff4d00;
  text-align: center;
  color: #fff;
  padding: 12px;
  margin-top: 20px;
}