:root {
  --vertical-gradient: linear-gradient(
    0deg,
    #000180 0%,
    rgba(219, 104, 12, 0.55) 100%
  );
  --horizontal-gradient: linear-gradient(
    90deg,
    #000180 0%,
    rgba(219, 104, 12, 0.55) 100%
  );

  --button-active-gradient: linear-gradient(90deg, #3637d4 0%, #3637d4 100%);
  --button-hover-gradient: linear-gradient(90deg, #000 0%, #000 0%);

  --transition-effect: 0.3s ease;
  --section-margins: 80px auto 0px auto;
  --section-padding: 15px 20px;
  --section-max-width: 1500px;

  --page-background: #fff;
  --content-background: #f9f9f9;
  /* --content-background: #fff;
  --page-background: #f9f9f9; */
}

body,
h1,
h2,
h3,
p,
ul,
li,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  min-width: 375px;
}

/* Global styles */
body {
  background-color: var(--page-background);
  color: #333;
  position: relative;
  margin: 0 auto;
  width: 99.9%;
}

body.popup-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.full-width {
  width: 100%;
}
.navbar {
  position: fixed;
  display: flex;
  background-color: white;
  z-index: 1000;
  width: 100%;
  left: 0;
  margin-top: 0;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 20px;
  min-height: 40px;
}

.navbar-container > * {
  flex: 1 0 auto;
}

.navbar-container > .logo-image {
  width: 140px;
  height: auto;
  flex: 0 0 0;
}

.navbar-container > .header {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-buttons {
  display: flex;
  gap: 2rem;

  justify-content: flex-end;
}

.arrow {
  font-size: 1.2rem;
}

.animated-primary-btn[disabled],
.animated-primary-btn[disabled]:hover,
.animated-primary-btn[disabled]:active {
  background: linear-gradient(90deg, #0000805b 0%, #db680c5b 50%);
  cursor: default;
}

.animated-primary-btn {
  --arrow-button-size: 0;
  --arrow-margin-right: 0;
  --arrow-margin-left: 0;
  --arrow-translation-distance: 0;
}

.animated-primary-btn.with-arrow {
  --arrow-button-size: 20px;
  --arrow-margin-right: 1rem;
  --arrow-margin-left: 5px;
  --arrow-translation-distance: 5px;

  padding-right: calc(
    var(--arrow-margin-right) + var(--arrow-button-size) +
      var(--arrow-margin-left)
  );
}

.animated-primary-btn {
  position: relative;
  display: flex;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  line-height: 20px;
  height: 50px;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  /* background: linear-gradient(90deg, #000180 0%, #db680c 0%); */
  box-shadow: 0 0 20px 0 linear-gradient(90deg, #000180 0%, #db680c 0%);
  background: #db680c;
  justify-content: center;
  transition: background-position 0.3s ease, transform 0.3s ease;
  background-size: 200% 100%;
  background-position: 0 0;
  transform-style: preserve-3d;
}

.animated-primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateZ(-1px);
  pointer-events: none;
  transition: filter 0.3s ease;
  /* background: linear-gradient(90deg, #000180 0%, #db680c 50%); */
  background-color: #000180;
  background-clip: content-box;
  padding: 1px;
  /* z-index: -1; */
}

.animated-primary-btn > img {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  padding: 2px;
  right: var(--arrow-margin-right);
  transition: right var(--transition-effect), transform var(--transition-effect);
}

.animated-primary-btn > img.hover-img {
  opacity: 0;
}
.animated-primary-btn > img.main-img {
  opacity: 1;
}

.animated-primary-btn:hover {
  background-position: 100% 0;
  color: white;
}

.animated-primary-btn:hover::before,
.animated-primary-btn:active::before {
  filter: blur(2px);
}

.animated-primary-btn:active {
  background-position: 100% 0;
  background: #3637d4;
  color: white;
}

.animated-primary-btn:hover > img {
  /* right: -9.2%; */
  right: calc(var(--arrow-margin-right) - var(--arrow-translation-distance));
}

.animated-primary-btn:active > img {
  /* right: -9.2%; */
  right: calc(var(--arrow-margin-right) - var(--arrow-translation-distance));
}

.animated-primary-btn:active > img.main-img {
  opacity: 0;
}

.animated-primary-btn:active > img.hover-img {
  opacity: 1;
}

.gradient-secondary-btn {
  display: flex;
  color: white;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #000180 0%, #db680c 50%);
  justify-content: center;
  transition: background-position 0.3s ease, transform 0.3s ease;
  background-size: 200% 100%;
  scale: 1;
}

.gradient-secondary-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  scale: 1.02;
}

.gradient-secondary-btn:active {
  scale: 1;
  background: #3637d4;
}
.secondary-btn {
  display: flex;
  border: 2px solid #3637d4;
  color: #000;
  font-size: 1rem;
  background: #ffffff;
  padding: 0.875rem 1.375rem;
  border-radius: 22.5px;
  min-width: 110px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  line-height: 20px;
}

.secondary-btn:hover {
  background: #3637d4;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secondary-btn:active {
  background: black;
  border-color: black;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* .login-btn {
    background: transparent;
    border: 2px solid #000180;
    color: #6B46C1;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(107, 70, 193, 0.1);
} */

.banner-container0 {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("./Assets/banner0.jpeg");
  background-size: cover;
}

.banner-container1 {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("./Assets/banner1.jpeg");
  background-size: cover;
}

.banner-container2 {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("./Assets/banner2.jpeg");

  background-size: cover;
}

.banner-container-gradient-background {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(90deg, #000080 0%, #db680c 50%);
  background-size: cover;
}

main {
  margin-top: 90px; /* space for fixed position navbar */
}

.two-panels {
  display: grid;
  grid-auto-flow: column;

  grid-auto-columns: 1fr;
  gap: 20px;
  height: 100%;
}

.banner-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 739px;
  color: #fff;
  text-align: left;
  background-color: #fff;
  border: none;
  padding: 2px 24px;
  font-size: 16px;
  font-weight: bold;
  /* cursor: pointer; */
}

/* fix for legal genius. Make font size smaller */

.banner-container > * {
  margin-left: 5%;
  margin-right: 5%;
}

.banner-container h1 {
  font-size: 50px;
  font-weight: 350;
  margin-bottom: 30px;
  max-width: 705px;
}

.banner-container p {
  font-size: 25px;
  margin-bottom: 32px;
  font-weight: normal;
  text-align: left;
  color: white;
}

.banner-container .banner-button-group {
  display: flex;
  gap: 20px;
}

.banner-image-lg {
  max-width: 700px;
  min-width: 400px;
  width: 100%;
  height: auto;
  max-height: 100%;
  border: none;
  border-radius: 10px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}

.banner-image-lg:hover {
  transform: rotate(0deg);
}
.banner-image-md {
  display: none;
}
/* 

.banner-container > * {
  margin-left: 200px;
  margin-right: 10%;
}

*/

/* .banner-container h1 {
  font-size: 70px;
  font-weight: 350;
  margin-bottom: 16px;
  max-width: 705px;
  color: white;
} */
/* 
.banner-container p {
  font-size: 40px;
  margin-bottom: 32px;
  font-weight: normal;
  text-align: left;
  color: white;
} */

.custom-carousel-btn {
  --button-size: 80px;
  top: calc(50% - (var(--button-size) / 2));
  width: var(--button-size);
  height: var(--button-size);
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  margin: 0 50px;
}

.custom-carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  :root {
    --section-margins: 50px auto 0px auto;
  }

  .banner-container {
    padding: 20px 40px;
    justify-content: flex-start;
    height: auto;
  }

  .banner-container > * {
    margin-left: 10px;
    margin-right: 10px;
  }

  .banner-container h1 {
    font-size: 40px;
    font-weight: lighter;
  }

  .banner-container p {
    font-size: 20px;
  }
  .banner-container .banner-button-group {
    flex-direction: column;
    gap: 10px;
  }

  .two-panels {
    display: flex;
    flex-direction: column;
    .banner-image-md {
      display: unset;
      max-width: 480px;
      min-width: 250px;
      width: 100%;
      height: auto;
      max-height: 100%;
    }
    .banner-image-lg {
      display: none;
    }
  }

  .custom-carousel-btn {
    --button-size: 60px;
    top: auto;
    bottom: 20px;
    margin: 20px 0;
  }

  .carousel-control-prev {
    left: calc(50% - var(--button-size) - 5px);
  }
  .carousel-control-next {
    left: calc(50% + 5px);
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 600px;
  }
  .banner-container h1 {
    font-size: 35px;
    font-weight: lighter;
  }

  .banner-container p {
    font-size: 20px;
  }

  .banner-container .wide-break {
    display: none;
  }

  .banner-container {
    height: auto;
  }
}

.banner-container .btn:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* .carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 45%;
  width: 65px;
  height: 65px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  z-index: 1;
  cursor: pointer;
    margin: 50px;
} */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  padding: 10px;
  width: 20px;
  color: white;
  font-weight: bold;
}

@media (max-width: 768px) {
  .animated-primary-btn {
    font-size: 14px;
  }
}

.separator {
  border: rgba(51, 51, 51, 0.42) solid 1px;
}

/* Features section styles */
.features {
  max-width: var(--section-max-width);
  margin: var(--section-margins);
  padding: var(--section-padding);
}

.features h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  justify-content: space-between;
  background-color: var(--content-background);
  border-radius: 24px;
  padding: 60px;
  margin: 0;
  margin-top: 40px;

  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.content-section {
  flex: 1;
  padding-right: 80px;
  margin: 40px;
}

.content-section h3 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.content-section h4 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 16px;
  color: #333;
}

.content-section p {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

.button-group {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.pricing-section .button-group > * {
  flex: 1 1 auto;
}

.link-button {
  display: flex;
  align-items: center;
  color: #6b46c1;
  text-decoration: none;
  font-weight: 500;
}

.play-icon {
  font-size: 12px;
  margin-right: 8px;
}

.arrow {
  font-size: 20px;
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-width: 80%;
  height: auto;
  border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    padding: 5px;
  }
  .feature-card {
    flex-direction: column-reverse;
    padding: 24px;
  }

  .content-section {
    padding-right: 0;
    padding-top: 24px;
  }

  .button-group {
    flex-direction: column;
  }
}

/* Pricing section styles */
.pricing-section,
.features-section {
  max-width: var(--section-max-width);
  margin: var(--section-margins);
  padding: var(--section-padding);
}

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

.features-section {
  .features-header {
    text-align: center;
    margin-bottom: 48px;

    h1 {
      font-weight: 400;
      text-align: center;
      font-weight: 700;
    }

    p {
      font-size: 18px;
      margin-bottom: 1rem;
      margin-top: 1rem;
    }
  }

  /* legal genius features grid */

  .square-icon {
    /* background-color: rgb(239 246 255 / 1); */
    border-radius: 0.5rem;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;

    svg {
      width: 75%;
      height: auto;
    }
  }

  .feature-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 2rem;

    .feature-tile-card {
      /* flex: 1 1 calc(33.333% - 20px); */
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: space-between;
      background: var(--content-background);
      border: 2px solid;
      border-color: transparent;
      border-radius: 20px;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
      padding: 34px;
      transition: all 0.5s ease;

      h3 {
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 700;
      }

      h4 {
        text-align: center;
        margin-bottom: 2rem;
      }

      .blue {
        color: #3637d4;
      }
    }

    .feature-tile-card:hover {
      background-color: #fff;
      scale: 1.02;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15);
    }
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
  h1 {
    font-weight: 400;
  }

  p {
    font-size: 18px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

.pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: space-between;
}

.pricing-grid .pricing-card,
.pricing-grid .pricing-card-2 {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .features-section {
    .feature-tiles-grid {
      grid-template-columns: repeat(2, minmax(200px, 1fr));
      gap: 1rem;
    }
  }

  .pricing-grid {
    flex-wrap: wrap;
  }
  .pricing-grid .pricing-card {
    flex: 1 1 100%;
  }
}

@media only screen and (max-width: 480px) {
  .features-section {
    .feature-tiles-grid {
      grid-template-columns: repeat(1, minmax(200px, 1fr));
      gap: 1rem;
    }
  }
}

.pricing-card-wrapper,
.feature-card-wrapper {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #f9f9ff;
  border: 2px solid;
  border-color: transparent;
  border-radius: 20px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  padding: 34px;
  margin-top: 50px;
  transition: all 0.5s ease;
  .card-header {
    background: none;
  }
}

.pricing-card.primary {
  background-color: #fff;
}

.pricing-card:hover {
  border: 2px solid #3637d4;
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.card-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.pricing-card.primary .card-header {
  color: #3637d4;
}

.pricing-card:hover .card-header {
  color: #3637d4;
}

.plan-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  & > * {
    flex: 1 1 auto;
  }
}

.plan-price {
  font-size: 36px;
  font-weight: 600;
}

.card-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: center;
}

.features-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.pricing-card:hover .features-title {
  color: #3637d4;
}

.features-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.features-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.trial-text {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-top: 12px;
}
.card-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.features-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.features-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.features-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.card-button,
.card-button-2 {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover .card-button {
  background: var(--button-hover-gradient);
}

.pricing-card:hover .card-button:active {
  background: var(--button-active-gradient);
}

.pricing-card .card-button-2:hover {
  background: var(--button-hover-gradient);
}

.pricing-card .card-button-2:active {
  background: var(--button-active-gradient);
}

.trial-text {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-top: 12px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-section {
  width: 100%;
  margin: var(--section-margins);
  max-width: var(--section-max-width);
  padding: 80px;
  border-radius: 16px;
  text-align: center;
  background-image: linear-gradient(90deg, #000080d8 0%, #db690cd9 70%),
    url("./Assets/cta-banner1.jpeg");
  background-size: cover;
  background-position: center;
}

.cta-section h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.cta-section h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: white;
  color: #1e1b4b;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1px solid transparent;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: black;
  color: white;
  border: 1px solid white;
}

.cta-button.outline {
  border: 1px solid #1e1b4b;
  background: transparent;
  color: #1e1b4b;
  width: 100%;
}

.cta-button.outline:hover {
  background: var(--button-hover-gradient);
  color: white;
  border: 1px solid transparent;
}

.cta-button:active {
  background: #3637d4;
  color: white;
  border: white;
}
.cta-button.outline:active {
  background: var(--button-active-gradient);
}

.clients-section {
  display: flex;
  flex-direction: column;
  margin: var(--section-margins);
  padding: var(--section-padding);
  width: 100%;
  max-width: var(--section-max-width);
  text-align: center;
}

.clients-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.clients-section p {
  margin: 0 auto 3rem;
  color: #666;
}

.client-logos {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.client-logo {
  height: 100px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

footer {
  width: 100%;
  background-color: #000;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: var(--section-margins);
}

footer .contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--section-max-width);
  padding: 2rem;
}

.footer-logo {
  height: 50px;
  margin: 0 20px 0 20px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  margin: 0 20px 0 20px;
  border: 1px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: black;
  background: white;
}

footer hr {
  border: 1px solid rgb(255, 255, 255, 0.3);
  width: 100%;
  margin: 0;
}
footer .copyrights {
  width: 100%;
  max-width: var(--section-max-width);
  padding: 2rem;
}

.footer-copyright,
.footer-links,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

.footer-links {
  margin-top: 5px;
}

.footer-links a:hover,
.footer-links a:active {
  text-decoration: underline;
}

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

.menu-items .nav-btn {
  max-height: 44px;
}

.nav label {
  display: none;
}

@media (max-width: 768px) {
  .client-logos {
    gap: 1rem;
  }

  .new-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar-container {
    padding: 0 1%;
  }

  .nav {
    .menu-items {
      position: absolute;
      flex-direction: column;
      display: flex;
      z-index: -1;
      gap: 20px;
      height: 100vh;
      width: 100%;
      background: white;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      padding: 20px;
      right: 0;
      margin-top: -200vh;
      transition: all 0.8s ease;
      align-items: stretch;
    }
    label {
      display: flex;
      flex-direction: column;
      width: 50px;
      cursor: pointer;
    }

    label span {
      background: #333;
      border-radius: 10px;
      height: 7px;
      margin: 4px 0;
      transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
      width: 100%;
    }

    input[type="checkbox"] {
      display: none;
    }

    span:nth-of-type(1) {
      width: 50%;
    }

    span:nth-of-type(2) {
      width: 100%;
    }

    span:nth-of-type(3) {
      width: 75%;
    }

    input[type="checkbox"]:checked ~ span:nth-of-type(1) {
      transform-origin: bottom;
      transform: rotatez(45deg) translate(8px, 0px);
    }

    input[type="checkbox"]:checked ~ span:nth-of-type(2) {
      transform-origin: top;
      transform: rotatez(-45deg);
    }

    input[type="checkbox"]:checked ~ span:nth-of-type(3) {
      transform-origin: bottom;
      width: 50%;
      transform: translate(22px, -8px) rotatez(45deg);
    }
  }

  .nav.visible {
    /* position: absolute;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: right;
        align-items: flex-end;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding: 10px;
        top: 0;
        width: 100%; */
    .menu-items {
      margin-top: 65px;
    }
  }
}

.g-recaptcha-bubble-arrow {
  display: none;
}
.g-recaptcha-bubble-arrow + div {
  position: fixed !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
