/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  min-width: 0;
  user-select: none;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image: url("../imgs/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  min-width: 0;
  user-select: none;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  display: flex;
  padding: 24px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, var(--Color-Neutrals-colors-Black, #060808) 57.6%);  position: sticky;
  top: 0;
  z-index: 10;
}
.logo-img {
  height: 40px;
  width: 150px;
  padding: 4px 0;
}

.content {
  padding-left:10%;
  padding-right:10%; 
  flex: 1 0 auto;
  display: flex;
  padding: 0.5rem 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-self: stretch;
}
.content h3 {
  color: #D0A146;
  text-align: center;
  font-family: Raleway;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
}
.content p {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
}

.help-menu {
  width: 100%;
  padding-left:10%;
  padding-right:10%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap:8px
}
.help-menu h3 {
  align-items: left;
  align-self: baseline;
  color: #fff;
  font-family: Raleway;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
}

.btns-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}

.chat-btn {
  display: flex;
  height: 78px;
  border-radius: 4px;
  flex: 1;
  padding: 1rem;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  background-color: #2A3F49;
  border: 1px solid transparent;
  background: #2A3F49;
  text-decoration: none;
  color: inherit;
}

.chat-btn:hover {
  background-color: #37525F;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-btn .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
  cursor: pointer;
  font-family: Raleway;
}
.chat-btn .text span {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  font-family: Raleway;
}

.chat-btn .text p {
  color: #fff;
  text-align: left;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  font-family: Raleway;
  color: #A7A7A7;
}
.chat-btn .right-icon {
  height: 1.5rem;
  width: 1.5rem;
}

/* Hide Zendesk Chat Widget */
#launcher, 
.zEWidget-launcher, 
.zEWidget-launcherFrame, 
iframe[title="Zendesk Chat"], 
.zEWidget-webWidget {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (min-width: 769px) {
  .logo-img {
    width: 300px;
    height: 84px;
  }
  .content, .help-menu {
    padding-left: 40px;
    padding-right: 40px;
  }
  .content h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .content p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .help-menu h3 {
    padding-top: 0px;
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .wrench {
    min-width: 496px;
    max-width: 1488px;
  }
  .btns-container {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .content, .help-menu{
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 375px) {
  .content, .help-menu{
    padding-left: 16px;
    padding-right: 16px;
  }
}
