@font-face {
  font-family: Mulish;
  src: url("/ha1c70ef7-src/ha1c70ef7-assets/ha1c70ef7-fonts/ha1c70ef7-mulish_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Mulish;
  src: url("/ha1c70ef7-src/ha1c70ef7-assets/ha1c70ef7-fonts/ha1c70ef7-mulish_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

/* ===== Переменные ===== */
:root {
  --container-width: 1140px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 12px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --font-family: "Mulish", sans-serif;
  --1: #2865e8;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: #02071a;
}

.ha1c70ef7-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .ha1c70ef7-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .ha1c70ef7-container {
    padding: 0 var(--container-step-mobile);
    gap: 10px;
  }
}

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 16px;
  }
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
  margin: 0px;
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin: 0px;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin: 0px;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: unset;
}

section {
  padding: 80px 0px;
  margin-bottom: 10px;

}

@media (max-width: 600px) {
  section {
    padding: 20px 0px;
  }
}

.ha1c70ef7-btn{
  border-radius: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 45px;
}

/* Button 12: Ripple Effect */
.ha1c70ef7-btn {
  position: relative;
  overflow: hidden;
}

.ha1c70ef7-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.ha1c70ef7-btn:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }

  20% {
    transform: scale(25, 25);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}


.ha1c70ef7-btn.ha1c70ef7-blue{
  background: #121d42;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #e3f5ff;
  text-shadow: 4px 0 14px #3f7cff;
}

.ha1c70ef7-btn.ha1c70ef7-blue.ha1c70ef7-active {
  background: var(--1);
}

.ha1c70ef7-scrolling:hover .ha1c70ef7-btn.ha1c70ef7-blue{
  background: var(--1);
}

.ha1c70ef7-btn.ha1c70ef7-red{
  box-shadow: 0 0 10px 0 #f20004;
  background: radial-gradient(127.65% 50% at 50% 50%, #f20004 0%, #cc135d 100%);
  border: 1px solid #ff5858;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}

.ha1c70ef7-hero__container{
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #0c1846 0%, #02071a 100%);
}

.ha1c70ef7-site-header__container{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ha1c70ef7-main-nav__list{
  flex-direction: row;
  align-items: center;
  gap: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

.ha1c70ef7-main-nav__link{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ha1c70ef7-dot{
  display: none;
  border-radius: 100px;
  width: 6px;
  height: 6px;
  background: var(--1);
}

.ha1c70ef7-main-nav__item:hover .ha1c70ef7-main-nav__link .ha1c70ef7-dot{
  display: block;
}

.ha1c70ef7-scrolling-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ha1c70ef7-scrolling-container {
  overflow: hidden;
  width: 100%;
}

.ha1c70ef7-partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.ha1c70ef7-partners{
  display: flex;
  gap: 20px;
}

.ha1c70ef7-partner-card{
  min-width: 367px;
  max-width: 367px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  padding: 19px;
  border: 1px solid #2c314d;
  border-radius: 20px;
  background: url("/ha1c70ef7-src/ha1c70ef7-assets/ha1c70ef7-images/ha1c70ef7-card_bg.png");
  background-size: cover;
}

.ha1c70ef7-partner-card:hover{
  border: 3px solid var(--1);
  padding: 17px;
  background: url("/ha1c70ef7-src/ha1c70ef7-assets/ha1c70ef7-images/ha1c70ef7-card_bg_bright.png");
  background-size: cover;
}

.ha1c70ef7-partner-card__link{
  height: 80px;
}

.ha1c70ef7-partner-card__link img{
  height: 100%;
  width: 100%;
  object-fit: none;
  object-position: center;
}

.ha1c70ef7-partner-card__name{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.ha1c70ef7-betting-platforms__list{
  gap: 30px;
}

.ha1c70ef7-betting-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  border-radius: 10px;
  background: #0a1333;
  position: relative;
}

.ha1c70ef7-blue_thing{
  position: absolute;
  height: 25px;
  width: 214px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -14px;
  left: -22px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  box-shadow: 4px 0 14px 0 rgba(63, 124, 255, 0.4);
  background: var(--1);
  border-radius: 100px;
}

.ha1c70ef7-betting-card__logo {
  flex: 243;
  display: flex;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
  padding: 24px 18px;
  max-width: 243px;
  min-width: 0px;
}

.ha1c70ef7-betting-card__logo-link {
  max-height: 71px;
  max-width: 201px;
  width: 100%;
  aspect-ratio: 201/71;
  height: auto;
}

.ha1c70ef7-betting-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: left;
}

.ha1c70ef7-betting-card__main {
  flex: 528;
  min-width: 0px;
  max-width: 528px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ha1c70ef7-betting-card__header {
  flex: 276;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.ha1c70ef7-betting-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.ha1c70ef7-betting-card__review-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.ha1c70ef7-betting-card__stats {
  flex: 232;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ha1c70ef7-betting-card__stat {
  display: flex;
  gap: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: start;
  color: #fff;
  align-items: center;
}

.ha1c70ef7-betting-card__stat-value {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ha1c70ef7-betting-card__rating {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.ha1c70ef7-betting-card__users {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.ha1c70ef7-betting-card__actions {
  flex: 297;
  min-width: 0px;
  max-width: 297px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ha1c70ef7-betting-card__payments {
  flex-direction: row;
  justify-content: space-between;
}




.ha1c70ef7-evaluation__container{
  text-align: center;
}

.ha1c70ef7-evaluation__list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.ha1c70ef7-evaluation__item{
  border-radius: 20px;
  padding: 20px;
  flex: 1;
  background: #0a1333;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ha1c70ef7-evaluation__icon{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
}


.ha1c70ef7-stats__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 39px;
  border: 1px solid var(--1);
  border-radius: 20px;
  background: url("/ha1c70ef7-src/ha1c70ef7-assets/ha1c70ef7-images/ha1c70ef7-stats_bg.png");
  background-size: cover;
}

.ha1c70ef7-stats__list{
  flex-direction: row;
  gap: 70px;
  justify-content: center;
  padding-top: 40px;
}

.ha1c70ef7-stats__item{
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.ha1c70ef7-stats__value{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
}






.ha1c70ef7-testimonials__list{
  flex-direction: row;
  gap: 20px;
  align-items: start;
  flex-wrap: wrap;
}

.ha1c70ef7-testimonial{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: #0a1333;
}

.ha1c70ef7-testimonial__content{
  text-align: center;
}

.ha1c70ef7-divider_line{
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ha1c70ef7-testimonial__author{
  display: flex;
  align-items: center;
  gap: 10px;
}

.ha1c70ef7-testimonial__author-info{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ha1c70ef7-testimonial__name{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.ha1c70ef7-testimonial__rating{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}



.ha1c70ef7-newsletter{
  background: url("/ha1c70ef7-src/ha1c70ef7-assets/ha1c70ef7-images/ha1c70ef7-sobscribe_block.png");
  background-size: cover;
}

.ha1c70ef7-newsletter__description{
  text-align: center;
}

.ha1c70ef7-newsletter__form{
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 534px;
  margin: auto;
  width: 100%;
  align-items: end;
}

.ha1c70ef7-newsletter__label{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.ha1c70ef7-newsletter__input{
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  background: #0a1333;
  padding: 14px 16px;
  border: 0px;
}

.ha1c70ef7-newsletter__submit{
  max-width: 163px;
  width: 100%;
}



.ha1c70ef7-responsibility__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: radial-gradient(52.07% 52.01% at 51.45% 47.99%, #0b1f17 0%, #02071a 100%);
  border: 1px solid #19d288;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}

.ha1c70ef7-responsibility__intro{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.ha1c70ef7-responsibility__cta{
  max-width: 258px;
}

.ha1c70ef7-responsibility__tips{
  flex-direction: row;
  gap: 20px;
}

.ha1c70ef7-responsibility__tip{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  background: #082828;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  flex: 1;
}

.ha1c70ef7-responsibility__tip-icon{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
}





.ha1c70ef7-footer {
  padding: 80px 0;
  background: #0a1333;
}

.ha1c70ef7-footer-top {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.ha1c70ef7-footer-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}


.ha1c70ef7-footer-links {
  max-width: 269px;
}

.ha1c70ef7-footer-nav-list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ha1c70ef7-footer-separator{
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ha1c70ef7-footer-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ha1c70ef7-footer-partners {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ha1c70ef7-footer-warning {
  text-align: center;
}

.ha1c70ef7-footer-warning-strong {
  font-weight: 700;
}

.ha1c70ef7-footer-copyright {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.ha1c70ef7-contact__container{
  align-items: center;
}

.ha1c70ef7-contact__description{
  text-align: center;
}

.ha1c70ef7-contact__form{
  max-width: 754px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ha1c70ef7-contact_fields{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ha1c70ef7-contact__row{
  display: flex;
  gap: 20px;
}

.ha1c70ef7-contact__field{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0px;
}

.ha1c70ef7-contact__input{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  border: 0px;
  border-radius: 10px;
  padding: 14px 16px;
  background: #0a1333;
  min-width: 0px;
}

.ha1c70ef7-contact__textarea{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  border: 0px;
  border-radius: 10px;
  padding: 14px 16px;
  background: #0a1333;
  height: 100px;
  box-sizing: border-box;
}

.ha1c70ef7-contact__consent{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.ha1c70ef7-contact__checkbox{
  border: 1px solid #fff;
  border-radius: 5px;
  width: 16px;
  height: 16px;
  background: black;
}

.ha1c70ef7-contact__link{
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--1);
}

.ha1c70ef7-contact__consent{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.ha1c70ef7-faq__list{
  gap: 30px;
}

.ha1c70ef7-faq__question{
  text-align: start;
}

.ha1c70ef7-faq__description{
  text-align: center;
}

.ha1c70ef7-faq__item{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  background: #0A1333;
  border-radius: 20px;
}

.ha1c70ef7-policy_content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: start;
  align-items: start;
}

.ha1c70ef7-policy_content_list{
  gap: 30px;
}

.ha1c70ef7-policy_content_list h3{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.ha1c70ef7-policy_content_item{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  text-align: start;
}

.ha1c70ef7-policy_content_item ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  list-style: disc;
  padding-left: 20px;
}

.ha1c70ef7-policy_date{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}



@media screen and (max-width: 991px) {
  .ha1c70ef7-betting-card{
    flex-direction: column;
  }

  .ha1c70ef7-blue_thing{
    left: 50%;
    transform: translateX(-50%);
  }

  .ha1c70ef7-betting-card__logo{
    max-width: none;
    width: 100%;
    align-items: center;
  }

  .ha1c70ef7-betting-card__logo-link{
    margin: auto;
  }

  .ha1c70ef7-betting-card__logo-img{
    object-position: center;
  }

  .ha1c70ef7-betting-card__main{
    max-width: none;
    width: 100%;
  }

  .ha1c70ef7-betting-card__header{
    align-items: center;
    text-align: center;
  }

  .ha1c70ef7-betting-card__stats{
    align-items: center;
  }

  .ha1c70ef7-betting-card__actions{
    max-width: none;
    width: 100%;
  }
}


@media screen and (max-width: 600px) {
  .ha1c70ef7-hero__description{
    display: none;
  }

  .ha1c70ef7-betting-card__main{
    align-items: start;
    gap: 0px;
  }

  .ha1c70ef7-betting-card__header{
    align-items: start;
    text-align: start;
    flex: 1;
  }

  .ha1c70ef7-betting-card__stats{
    max-width: fit-content;
    flex: 1;
  }

  .ha1c70ef7-betting-card__stat{
    flex-direction: column;
  }

  .ha1c70ef7-betting-card__stat{
    flex-direction: column;
  }
  
  .ha1c70ef7-footer-container{
    gap: 30px;
  }

  .ha1c70ef7-footer-top{
    flex-direction: column;
  }

  .ha1c70ef7-footer-info{
    flex-direction: column;
  }

  .ha1c70ef7-contact__row{
    flex-direction: column;
  }
}

@media screen and (max-width: 700px) {
  .ha1c70ef7-partners-track{
    flex-direction: column;
    animation: none;
    width: 100%;
    max-width: none;
  }

  .ha1c70ef7-partner-card{
    max-width: none;
    min-width: 0px;
  }

  .ha1c70ef7-evaluation__list{
    flex-direction: column;
  }

  .ha1c70ef7-testimonials__list{
    flex-direction: column;
  }

  .ha1c70ef7-stats__list{
    flex-direction: column;
  }

  .ha1c70ef7-responsibility__tips{
    flex-direction: column;
  }

  .ha1c70ef7-newsletter__form{
    flex-direction: column;
  }

  .ha1c70ef7-newsletter__submit{
    max-width: none;
  }
}

@media screen and (max-width: 360px) {
  .ha1c70ef7-betting-card__stats{
    max-width: none;
  }

  .ha1c70ef7-site-header__logo{
    height: 54px;
  }
}

.ha1c70ef7-message{
  display: none;
}

.ha1c70ef7-active .ha1c70ef7-message{
  display: block;
}

/* ---- reset ---- */
body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: 50% 50%;
  z-index: -1;
}

/* ---- stats.js ---- */
.ha1c70ef7-count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.ha1c70ef7-js-count-particles {
  font-size: 1.1em;
}

#stats,
.ha1c70ef7-count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.ha1c70ef7-count-particles {
  border-radius: 0 0 3px 3px;
}

/* ===== Burger button ===== */
.ha1c70ef7-burger {
  width: 35px;
  height: 35px;
  background: none;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.ha1c70ef7-burger span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

/* Cross animation */
.ha1c70ef7-burger.ha1c70ef7-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ha1c70ef7-burger.ha1c70ef7-active span:nth-child(2) {
  opacity: 0;
}

.ha1c70ef7-burger.ha1c70ef7-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Optional: hide burger on desktop if needed */
@media screen and (min-width: 992px) {
  .ha1c70ef7-burger {
    display: none;
  }
}

/* ===== Mobile burger navigation ===== */
@media screen and (max-width: 991px) {
  .ha1c70ef7-main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #02071a;
    padding: 20px 0;
  }

  .ha1c70ef7-main-nav__list {
    flex-direction: column;
    gap: 20px;
  }

  .ha1c70ef7-site-header {
    position: relative;
  }

  .ha1c70ef7-site-header.ha1c70ef7-nav-open .ha1c70ef7-main-nav {
    display: block;
  }
}

.ha1c70ef7-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}