/* CSS Reset: minimal, including box-sizing and removing default margin/padding */
*, *::before, *::after { box-sizing: border-box; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote::before, blockquote::after, q::before, q::after { content: ""; content: none; } table { border-collapse: collapse; border-spacing: 0; }

/* Base styles */
body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  background: #fafbf6;
  color: #6b7280; /* neutral gray for body text */
  line-height: 1.6;
  font-size: 16px;
}
a {
  color: #1a1a1a;
  text-decoration: none;
  user-select: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
  padding: 0;
}

.wrapper {
  margin: 5px;
  border: 1px solid #6a6b63;
}

/* Container */
.inner-wrapper {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 10px;
}
.container {
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 13px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #6a6b63;
}
header .logo {
  font-weight: 700;
  font-size: 20px;
  user-select: none;
  color: #111827;
}
header .logo img {
  width: 170px;
}

/* Navigation */
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 12px;
  color: #374151;
  transition: background-color 0.2s ease, color 0.3s ease;
}
nav a:hover,
nav a:focus {
  color: #f15a29;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 20px;
  background-color: #e0592c;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: 4px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(-2px, -3px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* legal pages */
b{
  font-weight: bold;
}
.legal-content{
  min-height: 100vh;
}
.legal-content a{
  text-decoration: underline;
  color: #2851e1;
}
.legalpages small {
  font-size: 14px;
}
.legal-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 120px;
  font-size: 14px;
  line-height: 23px;
  color: #123;
  text-align: left;
}
.legal-inner p {
  margin-top: 30px;
}
.legal-inner h2 {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}
.legal-inner ul {
  padding-left: 20px;
  margin-top: 15px;
}
.legal-inner p a,
.legal-inner ul li a {
  text-decoration: underline;
  color: #123;
}
.legalpages li {
  list-style: disc;
  margin-bottom: 10px;
}
.legal-inner p a:hover,
.legal-inner ul li a:hover {
  text-decoration: none;
  color: #0e5fce;
}
.legal-inner br {
  display: block;
}

.p-top0 {
  padding: 0;
}
.legalpage-wrapper {
  min-height: 100vh;
  color: #000;
  margin-bottom: 40px;
}
.legalpage-wrapper .legalpage-title {
  min-height: 55px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0592c;
}
.legalpage-wrapper .legalpage-content {
  padding: 0 16px;
}
.legalpage-wrapper .legalpage-content p,
.legalpage-wrapper .legalpage-content h3,
.legalpage-wrapper .legalpage-content h4,
.legalpage-wrapper .legalpage-content.officialrulescontent h3 {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  margin-top: 20px;
}
.legalpage-wrapper .legalpage-content h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 30px;
}
.legalpage-wrapper .legalpage-content ol,
.legalpage-wrapper .legalpage-content ul,
.legalpage-wrapper .legalpage-content li {
  list-style: decimal;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  margin-left: 9px;
}
.legalpage-wrapper .legalpage-content ul li {
  list-style-type: disc;
  color: #000;
  font-weight: 400;
  padding-top: 20px;
}
.legalpage-wrapper .legalpage-content li a {
  text-decoration-line: underline;
}
.legalpage-wrapper .legalpage-content p a,
.legalpage-wrapper .legalpage-content h3 a {
  text-decoration: underline;
  cursor: pointer;
}
.legalpage-wrapper .legalpage-content .last-updated-text {
  font-size: 12px;
  font-weight: 600;
}
.legalpage-wrapper .legalpage-content p .nounderlineffect {
  text-decoration: none;
  cursor: pointer;
}

/* privacy policy */
.legalpage-wrapper.privacypolicy .legalpage-content h3 {
  margin-top: 0;
}

/* officialrules */
.legalpage-wrapper .legalpage-content.officialrulescontent .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
}
.legalpage-wrapper .legalpage-content.officialrulescontent .subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 31px;
}
.legalpage-wrapper .legalpage-content.officialrulescontent p {
  margin-top: 30px;
}


/* contact us */
.about-sec-text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  max-width: 320px;
  margin: 16px auto 0;
}

/* Contact Section */
.contact-section {
  margin-bottom: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
h2.post-titles {
  font-weight: 600;
  font-size: 24px;
  color: #e0592c;
  border-top: 1px solid #6a6b63;
  border-bottom: 1px solid #6a6b63;
  padding: 10px 0;
  margin-bottom: 20px;
}
.contact-header,
.contactus-form {
  width: 100%;
}
.contactus-form a{
  color: #2851e1;
  text-decoration: underline;
}
.contact-section h2 {
  margin-bottom: 0;
  border-bottom: 0;
  width: 100%;
  padding-bottom: 0;
}
.contact-section p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  margin-bottom: 16px;
}
.contact-section form input,
.contact-section form select,
.contact-section form textarea {
  width: 100%;
  font-size: 16px;
  font-family: inherit;  
  resize: none;
  color: #000;
  border: none;
  background: none;
  height: 48px;
  border-bottom: 1px solid #6a6b63;
}
.contact-section form .child-row{
  margin-bottom: 20px;
}
.contact-section form textarea {
  padding-top: 14px;
}
.contact-section form input:focus,
.contact-section form textarea:focus,
.contact-section form select:focus {
  outline: none;
  box-shadow: none;
}
.contact-section form input::placeholder,
.contact-section form textarea::placeholder {
  color: #000;
}
.contact-section form button {
  border-radius: 8px;
  background: #e0592c;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  max-width: 328px;
  min-height: 64px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  text-transform: uppercase;
  cursor: pointer;
  margin: 18px auto;
}
#showoptoutdesp h2, #showoptoutdesp .optoutdisc {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 33px auto 0;
}
.g-recaptcha {
  margin: 15px 0px;
}
#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -50px 0 0 0 !important;
  z-index: -999999;
  opacity: 0;
}
.error-text-msg {
  font-size: 16px;
  color: #ea7979;
  font-weight: 300;
  padding-top: 0;
  display: block;
}

/* unsub page */
.unsubscribe-inner {
  width: 100%;
  min-height: auto;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  background: #fff;
  padding: 22px 40px 30px;
  font-size: 14px;
  line-height: 18px;
  color: #123;
  text-align: left;
}
.accordion {
  width: 100%;
  min-height: auto;
}
.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0px;
}
.accordion-item-header {
  padding: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: #f88125;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  padding: 33px 0px;
}
.accordion-item-header::after {
  content: "\002B"; /* plus symbol */
  font-size: 32px;
  position: absolute;
  right: 1rem;
  transition: transform 0.2s ease; /* Add transition for smooth rotation */
  color: #000;
  right: 31px;
}
.accordion-item-header.active::after {
  transform: rotate(45deg); /* Rotate the plus sign to form a cross */
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #cecece;
}

.acc-items {
  margin-top: 20px;
  margin-bottom: 42px;
}

h3.acc-title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}
h4.acc-subtitle {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
h4.acc-subtitle span {
  margin-left: 10px;
}
.acc-inner-content {
  display: flex;
  justify-content: center;
  margin: 14px auto;
  word-break: break-word;
}
p.steps {
  max-width: 60px;
  min-height: 24px;
  height: 24px;
  border-radius: 2px;
  background: #d6e5ff;
  width: 100%;
  color: #000;
  font-weight: 500;
  line-height: 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
p {
  width: 100%;
  font-size: 14px;
}
.acc-item-body-inner-content {
  border-bottom: 1px solid #cecece;
  margin-bottom: 40px;
}
.acc-item-body-inner-content:last-child {
  border: none;
}
.email-title,
.sms-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
}

.email-text,
.sms-text {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.email-text a,
.sms-text a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #337ab7;
  text-decoration: underline;
}

.email-text a:hover,
.sms-text a a:hover {
  text-decoration: none;
}

.email-title,
.sms-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  padding: 20px 0px;
  border-top: 1px solid #6a6b63;
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer ul li {
  list-style: none;
  text-decoration: none;
  color: #6a6b63;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
}
.footer ul li a {
  color: inherit;
}
.footer ul li:hover {
  text-decoration: underline;
}
.footer ul li::after {
  content: "|";
  margin: 0 3px;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.footer ul li:last-child::after {
  display: none;
}

@media (min-width: 768px) {

  .wrapper {
    margin: 17px;
  }

  /* navbar */
  nav a {
    font-size: 16px;
    padding: 6px 15px;
  }
  nav a:last-child {
    padding-right: 0;
  }

  /* header + navbar */
  header {
    padding: 26px 8px 25px 0px;
  }

  .legal-content a:hover{
    text-decoration: none;
  }

  .legalpage-wrapper {
    margin-bottom: 34px;
  }
  .legalpage-wrapper .legalpage-content p a:hover,
  .legalpage-wrapper .legalpage-content li a:hover,
  .legalpage-wrapper .legalpage-content h3 a:hover {
    text-decoration: none;
  }
  .legalpage-wrapper .legalpage-content {
    padding: 0;
    margin: 0 auto;
  }
  .legalpage-wrapper .legalpage-title {
    min-height: 107px;
    font-size: 72px;
  }
  .legalpage-wrapper .legalpage-content p .nounderlineffect:hover {
    text-decoration: underline;
  }

  .legalpage-wrapper .legalpage-content .last-updated-text,
  .legalpage-wrapper .legalpage-content p,
  .legalpage-wrapper .legalpage-content li,
  .legalpage-wrapper .legalpage-content h3,
  .legalpage-wrapper .legalpage-content h4,
  .legalpage-wrapper .legalpage-content.officialrulescontent h3 {
    font-size: 16px;
  }
  .legalpage-wrapper .legalpage-content p,
  .legalpage-wrapper .legalpage-content h3,
  .legalpage-wrapper .legalpage-content h4 {
    line-height: 22px;
  }
  .legalpage-wrapper .legalpage-content h3,
  .legalpage-wrapper .legalpage-content h4 {
    margin-top: 0;
  }
  .legalpage-wrapper .legalpage-content li {
    line-height: 22px;
  }
  .legalpage-wrapper .legalpage-content h2 {
    font-size: 19px;
  }
  .legalpage-wrapper .legalpage-content li {
    margin-left: 12px;
  }
  .legalpage-wrapper .legalpage-content ul li {
    padding-top: 0;
  }
  
  /* about us */
  .about-sec-text {
    max-width: 688px;
    font-size: 23px;
    line-height: 30px;
    margin: 24px auto 0;
  }

  /* contact section */
  .contact-section {
    flex-direction: unset;
    border-top: 1px solid #6a6b63;
    column-gap: 46px;
    padding: 48px 10px;
  }
  h2.post-titles {
    font-size: 80px;
  }
  .contact-section h2 {
    font-size: 80px;
    line-height: 88px;
    border: 0;
    width: 100%;
  }
  .contact-section p {
    font-size: 20px;
    margin-top: 4px;
  }
  .contact-form {
    max-width: 494px;
    font-size: 20px;
  }
  .contact-section form input,
  .contact-section form select,
  .contact-section form textarea {
    font-size: 20px;
    height: 51px;
  }
  .contact-section form .child-row{
    margin-bottom: 28px;
  }
  .contact-section form button,
  .dp-parent.dp-parent-hor-center {
    width: 100%;
    max-width: 100%;
    min-height: 66px;
    margin: 7px auto;
  }
  .contact-section form button{
    margin: 20px auto;
  }
  .contact-section form button:hover {
    background: #ca3f11;
  }
  .name-fields{
    display: flex;
    column-gap: 20px;
  }
  .contact-section form .name-fields .child-50{
    width: 50%;
  }
  .contactus-form a:hover{
    text-decoration: none;
  }

  /* footer */
  .footer ul li{
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .inner-wrapper {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hideinmobile {
    display: none !important;
  }

  /* navbar */
  nav {
    position: absolute;
    top: 56px; /* below header */
    left: 0;
    right: 0;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    padding: 0 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    pointer-events: none;
    transform-origin: top center;
    transform: scaleY(0.95);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }
  nav.open {
    max-height: 320px; /* enough for 4 menu items with spacing */
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
    padding: 16px 24px 24px 24px;
    width: 97%;
    margin: 0 auto;
  }
  nav a:last-child {
    margin-bottom: 0;
  }
  .hamburger {
    display: flex;
  }

  /* unsub */
  .email-text a:hover,
  .sms-text a a:hover {
    text-decoration: underline;
  }
  .unsubscribe-inner {
    padding: 10px 8px 30px;
  }
  .accordion-item-header {
    font-size: 22px;
    line-height: 24px;
    padding: 20px 0px;
  }
  .accordion-item-header::after {
    right: 0px;
  }
}

/* recaptcha CSS */
@media screen and (max-width: 359px) {
  #recaptcha-container{
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}