/* ============================================
   LAYOUT - ThinkAgile HX
   ============================================ */

.container {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
}

.container2 {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

#thinkagile-hx .lenovo-logo {
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 9999;
  max-width: 50px;
}

#thinkagile-hx .logofix {
  position: fixed;
  right: 0;
  top: 19%;
  width: 60px;
  z-index: 9;
}

.desktop {
  display: block;
}

.mobile {
  display: none !important;
}

a.button {
  font-family: var(--font-gotham-bold);
  font-size: 1rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-cta-red);
  text-decoration: none;
  transition: background-color var(--transition-default), color var(--transition-default),
    transform var(--transition-default), box-shadow var(--transition-default);
  cursor: pointer;
  padding: 1.3125rem 2.25rem;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: max-content;
}

a.button:hover {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

a.button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.divbutton {
  text-align: center;
  margin-top: 60px;
}

h2 {
  font-family: var(--font-gotham-book);
  font-size: 42px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  text-align: left;
  color: var(--color-black);
  padding-bottom: 26px;
}

p {
  font-family: var(--font-gotham-book);
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block !important;
  }

  #thinkagile-hx .lenovo-logo {
    position: absolute;
    width: 40px;
    z-index: 9999;
  }

  h2 {
    font-size: 28px !important;
    text-align: center !important;
  }

  p {
    text-align: center !important;
  }

  a.button {
    width: 100%;
    height: 50px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    padding: 15px 90px;
    margin: 0 auto;
  }

  a.button,
  .divbutton {
    display: none;
  }

  .container,
  .container2 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 26px !important;
    text-align: center !important;
  }

  h3 {
    text-align: center !important;
  }

  p {
    font-size: 16px !important;
    text-align: center !important;
  }
};