:root {
  --color-primary: #00b0ff;
  --color-secondary: #ff6f00;
  --color-tertiary: #ffeb3b;

  --color-white: #fff;
  --color-dark: #121722;

  /* ffa2e5 */

  --gradient: linear-gradient(45deg, #ff4e50, var(--color-secondary), var(--color-tertiary));

  --font: "Outfit", sans-serif;

  --font-size-sm: clamp(12.8px, 0.05vw + 12.61px, 13.5px);
  --font-size-base: clamp(18px, 1.1vw + 13px, 20px);
  --font-size-md: clamp(21px, 0.971vw + 18.6375px, 24.85px);
  --font-size-lg: clamp(28px, 1.602vw + 10.25px, 41px);
  --font-size-xl: clamp(32px, 2.0313vw + 13px, 52px);
  --font-size-xxl: clamp(50px, 27.5px + 4.3vw, 110px);

  font-family: var(--font);
  color: var(--color-white);
}

#dng-wrapper .header-replace,
#dng-wrapper .mobile-header-replace {
  display: none;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

#dnn_ContentBuilderPane {
  background: var(--gradient);
  background-repeat: no-repeat;
  background-size: 400% 400%;
  animation: gradientBackground 15s ease infinite;
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  to {
    background-position: 0% 50%;
  }
}

/* Typography */
h1,
h2 {
  font-family: var(--font);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.25em;
  color: var(--color-white);
}

h2 {
  font-size: var(--font-size-lg);
  color: var(--color-white);
}

.sub-heading {
  margin-bottom: 0.75em;
  font-size: 2em;
  text-align: left;
  color: var(--color-white);
}

h3 {
  font-family: var(--font);
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.25em;
  color: var(--color-white);
}

p {
  margin-bottom: 0.5em;
}

p,
ol,
ul {
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.56;
  color: var(--color-white);
}

p a,
li a,
dd a {
  font-weight: bolder;
}

.content-wrapper {
  --gap: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1.8rem;
  position: relative;
  overflow: visible;
}

.wrapper-left,
.wrapper-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.wrapper-left {
  width: 30%;
  padding-right: 1.5rem;
  border-right: 5px solid var(--color-white);
}

.wrapper-right {
  width: 70%;
}

.learn {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}

.learn > div {
  width: 200px;
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  color: #222222;
  padding: 12px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.learn > div h3 {
  color: #222222;
}

.learn > div p {
  margin: 0;
  color: #222222;
}

.card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  color: #222222;
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.card p {
  color: #222222;
}

.cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  color: #222222;
  padding: 12px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  color: #222222;
}

.cta p {
  max-width: 525px;
  color: #222222;
}

[class^="btn"] {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.02em;
  height: 48px;
  padding: 0 45px;
  margin-right: 3px;
  margin-bottom: 3px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-image: none;
  border: none;
  border-radius: 48px;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 1, 1);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.42, 0, 1, 1);
  -webkit-appearance: none;
  appearance: none;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  color: #222222 !important;
  background-color: var(--color-white) !important;
}

.btn-secondary {
  color: var(--color-white) !important;
  background-color: #222222 !important;
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flex-center img {
  max-width: 75px;
  border-radius: 50%;
}

.flex-center p {
  margin: 0 !important;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: var(--gap);
  padding: 0 2rem;
}

img {
  max-width: 100%;
  margin-bottom: 0.5em;
}

.flyer {
  max-width: 100%;
  margin-bottom: 0.5em;
  border-radius: 0.75em;
  border: 5px solid var(--color-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

hr {
  border: 1px solid var(--color-white);
}

.mobile-host {
  display: none;
}

@media screen and (max-width: 768px) {
  h1 {
    text-align: center;
  }

  .sub-heading {
    text-align: center;
    font-size: 1em;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .wrapper-left,
  .wrapper-right {
    width: 100%;
    border: none;
    padding: 0;
  }

  .wrapper-left {
    display: none;
  }

  .desktop-host {
    display: none;
  }

  .mobile-host {
    display: block;
  }

  .grid-two {
    padding: 0;
  }

  .grid-two .flex-center {
    margin: 0 auto;
  }
}

@media screen and (max-width: 648px) {
  /* .grid-two {
        grid-template-columns: repeat(1, 1fr);
      } */

  .grid-two .flex-center {
    margin: 0;
  }
}

@media screen and (max-width: 425px) {
  .grid-two {
    grid-template-columns: repeat(1, 1fr);
  }
}
