h1 {
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin: 1rem 0 1.5rem;
}

h4 {
  font-size: 1.5rem;
  margin: 1rem 0 1.25rem;
}

p a,
ul a,
ol a,
span a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

p,
li {
  line-height: 1.5rem;
}
p:not(:last-of-type),
li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
ul li:not(:last-of-type),
ol li:not(:last-of-type) {
  margin-bottom: 0.75rem;
}

#page {
  font-family: var(--wp--preset--font-family--body), sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.mobile-menu-opened {
  overflow: hidden;
}

.ax-button {
  display: flex;
  border-radius: 10px;
  width: fit-content;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.ax-button a {
  display: flex;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 500;
  text-align: center;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-button:after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-button:hover a {
  color: var(--wp--preset--color--primary);
}
.ax-button:hover:after {
  width: 100%;
}
.ax-button.dark {
  background: var(--wp--preset--color--dark);
}
.ax-button.dark:after {
  background: var(--wp--preset--color--primary);
}
.ax-button.dark a {
  color: #ffffff;
}
.ax-button.dark a:after {
  filter: invert(1);
}
.ax-button.dark:hover a {
  color: #ffffff;
}
.ax-button.primary {
  background: var(--wp--preset--gradient--tertiary);
}
.ax-button.primary a {
  color: var(--wp--preset--color--primary);
}
.ax-button.primary.bordered {
  border: solid 2px var(--wp--preset--color--primary-alt);
}
.ax-button.primary.bordered a {
  padding: 1rem 1.25rem;
}
.ax-button.primary:after {
  background: var(--wp--preset--gradient--primary);
}
.ax-button.primary:hover a {
  color: #ffffff;
}
.ax-button.transparent a {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 1rem 1.5rem;
}
.ax-button.transparent:hover {
  background: rgba(255, 255, 255, 0);
}
.ax-button.transparent:hover:after {
  width: 0%;
}
.ax-button.icon-arrow a:after {
  content: url(/wp-content/themes/axonaut-blog/assets/img/svg/right-arrow.svg);
  width: 0.75rem;
  margin-left: 0.5rem;
}
.ax-button.icon-gift a:after {
  content: url(/wp-content/themes/axonaut-blog/assets/img/svg/gift.svg);
  width: 1rem;
  margin-left: 0.5rem;
}

.ax-scroll-to-top {
  position: fixed;
  bottom: -3rem;
  right: 1rem;
  display: flex;
  background: var(--wp--custom--color--primary-light);
  border: 0;
  border-radius: 30px;
  padding: 0.75rem;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
  cursor: pointer;
  z-index: 999;
}
.ax-scroll-to-top svg {
  transform: rotate(-90deg);
  width: 1rem;
  height: 1rem;
}
.ax-scroll-to-top.active {
  bottom: 1rem;
}
@media screen and (max-width: 550px) {
  .ax-scroll-to-top .ax-scroll-to-top {
    bottom: -1.5rem;
  }
}

.ax-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--wp--preset--color--primary);
}
.ax-breadcrumbs a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--wp--preset--color--primary);
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .ax-breadcrumbs a {
    font-size: 0.9rem;
  }
}
.ax-breadcrumbs svg,
.ax-breadcrumbs .arrow {
  width: 1rem;
  transform: rotate(180deg);
}
.ax-breadcrumbs svg {
  margin-right: 0.75rem;
}

.ax-site-title {
  text-align: center;
  margin: 4rem 0 6rem;
}
.ax-site-title h1 {
  font-size: 3.5rem;
  font-weight: 300;
  position: relative;
  z-index: 3;
}
.ax-site-title__subtitle {
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ax-site-title__subtitle span.circled {
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: -1;
}
.ax-site-title__subtitle span.circled:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  padding-top: 100%;
  background-image: url(/blog/wp-content/themes/axonaut-blog/assets/img/svg/circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .ax-site-title {
    margin: 2rem 0;
  }
}
@media screen and (max-width: 550px) {
  .ax-site-title h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .ax-site-title__subtitle {
    font-size: 2rem;
  }
}

.ax-hero__title {
  color: var(--wp--preset--color--primary);
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.ax-hero__title span {
  display: block;
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem 0;
}
.ax-hero__posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.ax-hero__col.first .ax-card-post {
  height: 100%;
}
.ax-hero__col.first .ax-card-post__image {
  height: 350px;
}
.ax-hero__col.first .ax-card-post__content {
  height: 100%;
  flex: 1;
}
.ax-hero__col:not(.first) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.ax-hero__col:not(.first) .ax-card-post {
  display: flex;
  flex-direction: row;
}
.ax-hero__col:not(.first) .ax-card-post__image {
  width: 50%;
  height: 100%;
}
.ax-hero__col:not(.first) .ax-card-post__content {
  flex: 1;
  padding: 1.5rem 1rem 1rem 1.5rem;
}
.ax-hero__col:not(.first) .ax-card-post__content--title {
  font-size: 1.15rem;
}
.ax-hero__col:not(.first) .ax-card-post__content--excerpt {
  display: none;
}
.ax-hero__col:not(.first) .ax-card-post__content--bottom {
  margin-top: auto;
}
.ax-hero__col:not(.first) .ax-card-post__content--bottom .category {
  display: none;
}
@media screen and (max-width: 1024px) {
  .ax-hero__posts {
    grid-template-columns: 1fr;
  }
  .ax-hero__col.first .ax-card-post {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
  }
  .ax-hero__col.first .ax-card-post__image {
    height: 100%;
    width: 100%;
  }
  .ax-hero__col:not(.first) .ax-card-post {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
  }
  .ax-hero__col:not(.first) .ax-card-post__image {
    width: 100%;
  }
  .ax-hero__col:not(.first) .ax-card-post__content--excerpt {
    display: block;
  }
  .ax-hero__col:not(.first) .ax-card-post__content--bottom .category {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .ax-hero.ax-container {
    max-width: 100%;
  }
  .ax-hero__title {
    max-width: 95%;
    margin: 0 auto 1.5rem;
  }
  .ax-hero__posts {
    display: flex;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1.5rem;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  .ax-hero__posts::-webkit-scrollbar {
    display: none;
  }
  .ax-hero__col.first .ax-card-post, .ax-hero__col:not(.first) .ax-card-post {
    display: flex;
    flex-direction: column;
    height: fit-content;
    scroll-snap-align: start;
    grid-template-columns: 1fr;
    width: calc(100vw - 7rem);
    min-width: calc(100vw - 7rem);
  }
  .ax-hero__col.first .ax-card-post__image, .ax-hero__col:not(.first) .ax-card-post__image {
    height: fit-content;
  }
  .ax-hero__col.first .ax-card-post__content--bottom, .ax-hero__col:not(.first) .ax-card-post__content--bottom {
    margin-top: 1rem;
  }
  .ax-hero__col:not(.first) {
    flex-direction: row;
  }
}
@media screen and (max-width: 550px) {
  .ax-hero__title span {
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 375px) {
  .ax-hero__col:not(.first) .ax-card-post {
    width: 65%;
    min-width: 65%;
  }
}
@media screen and (max-width: 320px) {
  .ax-hero__posts {
    gap: 1.5rem;
  }
  .ax-hero__col:not(.first) .ax-card-post {
    width: 55%;
    min-width: 55%;
  }
}

.ax-newsletter {
  background: var(--wp--preset--gradient--primary);
  color: #ffffff;
  text-align: center;
  border-radius: 30px;
  max-width: 1200px;
  position: relative;
}
.ax-newsletter__container {
  max-width: 800px;
  padding: 4rem;
  margin: auto;
}
.ax-newsletter__container h2 {
  color: #ffffff;
}
.ax-newsletter__container p {
  margin-bottom: 3rem;
  line-height: 2rem;
}
.ax-newsletter img {
  width: 6rem;
}
.ax-newsletter img#image-top {
  position: absolute;
  top: -2rem;
  right: 2rem;
  transform: rotate(8deg);
}
.ax-newsletter img#image-bottom {
  position: absolute;
  bottom: 0;
  left: 4rem;
}
.ax-newsletter__input {
  display: flex;
  justify-content: center;
  width: 50%;
  margin: auto;
}
.ax-newsletter__input .wpcf7-form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.ax-newsletter__input .wpcf7-form p {
  margin-bottom: 0;
}
.ax-newsletter__input .wpcf7-form input {
  font-family: var(--wp--preset--font-family--body), sans-serif;
}
.ax-newsletter__input .wpcf7-form input.wpcf7-email {
  background: var(--wp--custom--color--primary-light);
  border: none;
  padding: 1rem;
  border-radius: 10px;
  color: #ffffff;
}
.ax-newsletter__input .wpcf7-form input.wpcf7-email:focus {
  outline: none;
}
.ax-newsletter__input .wpcf7-form input.wpcf7-email::placeholder {
  color: var(--wp--preset--color--primary);
}
.ax-newsletter__input .wpcf7-form input.wpcf7-submit {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  background: var(--wp--preset--gradient--tertiary);
  color: var(--wp--preset--color--primary);
  cursor: pointer;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-newsletter__input .wpcf7-form input.wpcf7-submit:hover {
  right: -0.5rem;
}
.ax-newsletter__input .wpcf7-form.invalid .wpcf7-response-output,
.ax-newsletter__input .wpcf7-form.invalid .wpcf7-not-valid-tip {
  background: #ffd5d9;
  color: var(--wp--custom--color--failure);
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 600;
  border-radius: 10px;
  border: solid 2px;
  margin-top: 1rem;
  padding: 0.25rem;
}
.ax-newsletter__input .wpcf7-form.sent .wpcf7-response-output {
  background: #c8e6c9;
  color: var(--wp--custom--color--success);
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 600;
  border-radius: 10px;
  border: solid 2px;
  padding: 0.5rem;
}
@media screen and (max-width: 1250px) {
  .ax-newsletter {
    max-width: 95%;
    padding: 0;
  }
}
@media screen and (max-width: 550px) {
  .ax-newsletter {
    border-radius: 20px;
  }
  .ax-newsletter__container {
    padding: 2rem 1.5rem;
  }
  .ax-newsletter__container h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .ax-newsletter img#image-bottom {
    display: none;
  }
  .ax-newsletter img#image-top {
    top: -2rem;
    width: 4rem;
  }
}
@media screen and (max-width: 375px) {
  .ax-newsletter__input .wpcf7-form input.wpcf7-email {
    width: calc(100vw - 2.5rem);
  }
  .ax-newsletter__input .wpcf7-form input.wpcf7-submit {
    position: relative;
    width: 50%;
    transform: translateX(-75%);
    left: 50%;
    margin-top: 1rem;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.ax-category-posts__title {
  text-align: center;
  width: fit-content;
  margin: auto;
  position: relative;
}
.ax-category-posts__terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ax-category-posts__terms a {
  text-decoration: none;
  background: var(--wp--preset--gradient--tertiary);
  color: var(--wp--preset--color--primary-alt);
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 500;
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-category-posts__terms a:hover {
  transform: scale(0.95);
}
.ax-category-posts__posts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.ax-category-posts__posts .ax-card-post {
  width: calc(33% - 1rem);
}
.ax-category-posts > .ax-button {
  margin: auto;
}
.ax-category-posts > p {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .ax-category-posts.ax-container {
    max-width: 100%;
  }
  .ax-category-posts__terms {
    max-width: 90%;
    margin: 0 auto 2rem;
  }
  .ax-category-posts__posts {
    flex-direction: row;
    justify-content: start;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    padding: 0 1rem;
  }
  .ax-category-posts__posts::-webkit-scrollbar {
    display: none;
  }
  .ax-category-posts__posts .ax-card-post {
    grid-template-columns: 1fr;
    width: 400px;
    min-width: 400px;
    scroll-snap-align: start;
  }
  .ax-category-posts__posts .ax-card-post__content {
    flex: 1;
  }
  .ax-category-posts__posts .ax-card-post__content--excerpt {
    margin-bottom: auto;
  }
}
@media screen and (max-width: 550px) {
  .ax-category-posts.ax-container {
    max-width: 100%;
  }
  .ax-category-posts__title {
    max-width: 95%;
    margin: auto;
  }
  .ax-category-posts__terms {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    padding: 0 1rem;
  }
  .ax-category-posts__terms::-webkit-scrollbar {
    display: none;
  }
  .ax-category-posts__terms a {
    scroll-snap-align: start;
  }
  .ax-category-posts__posts {
    flex-direction: row;
    justify-content: start;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    padding: 0 1rem;
  }
  .ax-category-posts__posts::-webkit-scrollbar {
    display: none;
  }
  .ax-category-posts__posts .ax-card-post {
    min-width: 80%;
    width: 80%;
    scroll-snap-align: start;
  }
}

.ax-text-block-boxed {
  width: 1000px;
  overflow: hidden;
  position: relative;
  padding: 3rem;
  background: #ffffff;
  border-radius: 30px;
}
.ax-text-block-boxed.ax-container {
  margin: 2rem auto;
}
.ax-text-block-boxed__container {
  padding-bottom: 0rem;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-text-block-boxed__container h2 {
  font-size: 1.75rem;
}
.ax-text-block-boxed__container.active {
  padding-bottom: 1rem;
}
.ax-text-block-boxed__container.active .ax-text-block-boxed__content {
  max-height: 1000px;
}
.ax-text-block-boxed__container.active .down-arrow {
  background: rgba(255, 255, 255, 0);
}
.ax-text-block-boxed__container.active .down-arrow svg {
  transform: translate(-50%) rotate(270deg) !important;
}
.ax-text-block-boxed__content {
  position: relative;
  max-height: 125px;
  transition: all 1000ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-text-block-boxed__content .ax-transparent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 1;
  transition: all 1000ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-text-block-boxed__content .ax-transparent-overlay.hidden {
  opacity: 0;
  z-index: -1;
}
.ax-text-block-boxed .ax-show-more {
  cursor: pointer;
}
.ax-text-block-boxed .ax-show-more .down-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  width: 100%;
  padding: 1rem 0;
}
.ax-text-block-boxed .ax-show-more .down-arrow svg {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  height: 1rem;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-text-block-boxed .ax-show-more:hover .down-arrow svg {
  top: 4px;
}
@media screen and (max-width: 550px) {
  .ax-text-block-boxed__container h2 {
    font-size: 1.25rem;
    text-align: center;
  }
  .ax-text-block-boxed__container.active .ax-text-block-boxed__content {
    max-height: 1500px;
  }
}

.ax-card-post {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #ffffff;
  height: 100%;
}
.ax-card-post__image {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
  background: var(--wp--preset--color--primary);
}
.ax-card-post__image img {
  height: 100%;
  object-fit: cover;
}
.ax-card-post__image img.logo {
  width: 75%;
  object-fit: contain;
  margin: auto;
}
.ax-card-post__image:hover {
  transform: scale(1.015);
}
.ax-card-post__category {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  margin-right: auto;
  background: #ffffff;
  color: var(--wp--preset--color--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-card-post__category:hover {
  transform: scale(0.9);
}
.ax-card-post__content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.ax-card-post__content--title {
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--body), sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.ax-card-post__content--excerpt {
  font-family: var(--wp--preset--font-family--body), sans-serif;
  margin-bottom: 1.5rem;
}
.ax-card-post__content--bottom {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  margin-top: auto;
}
.ax-card-post__content--bottom time {
  font-family: var(--wp--preset--font-family--body), sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .ax-card-post {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
  }
  .ax-card-post__image {
    width: 100%;
    height: fit-content;
  }
  .ax-card-post__image img {
    object-fit: contain;
    height: 100%;
  }
  .ax-card-post__content {
    flex: 1;
    padding: 1.5rem 1rem;
  }
  .ax-card-post__content--title {
    font-size: 1.15rem;
    text-wrap: balance;
  }
  .ax-card-post__content--excerpt {
    margin-bottom: auto;
  }
  .ax-card-post__content--bottom {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .ax-card-post {
    grid-template-columns: 1fr;
    width: 400px;
  }
  .ax-card-post__content--bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 550px) {
  .ax-card-post {
    width: 100%;
  }
}

.ax-part-trustpilot-widget {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6rem;
  background: #ffffff;
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 20px;
  overflow: hidden;
}
.ax-part-trustpilot-widget:before {
  content: "";
  position: absolute;
  top: 1rem;
  right: -4rem;
  width: 40%;
  height: 200%;
  background: var(--wp--preset--gradient--primary);
  border-radius: 30px;
  transform: rotate(-5deg);
  z-index: 1;
}
.ax-part-trustpilot-widget__content {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  z-index: 10;
  padding-right: 4rem;
}
.ax-part-trustpilot-widget__content h2 {
  margin: 0;
  font-size: 1.25rem;
}
.ax-part-trustpilot-widget__widget {
  height: 130px;
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .ax-part-trustpilot-widget {
    gap: 2rem;
  }
  .ax-part-trustpilot-widget:before {
    right: -2rem;
  }
  .ax-part-trustpilot-widget__content {
    padding-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .ax-part-trustpilot-widget {
    flex-direction: column;
    gap: 4rem;
  }
  .ax-part-trustpilot-widget:before {
    top: unset;
    bottom: -3rem;
    right: 0;
    width: 95%;
    height: 65%;
  }
  .ax-part-trustpilot-widget__widget {
    height: 150px;
  }
}

.ax-error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 5rem;
}
.ax-error-page h1 {
  text-align: center;
  font-weight: normal;
  font-size: unset;
  font-family: var(--font-text);
  margin-bottom: 1rem;
}
.ax-error-page .ax-button {
  margin-top: 2rem;
}
.ax-error-page .ax-button svg {
  transform: rotate(-180deg);
  width: 1.5rem;
}

.ax-footer {
  background: var(--wp--preset--gradient--primary);
  color: #ffffff;
  padding: 6rem 0;
}
.ax-footer__container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 6rem;
}
.ax-footer__promo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc(50% - 1rem);
  height: fit-content;
  background: var(--wp--preset--color--primary-alt);
  padding: 2rem;
  border-radius: 20px;
}
.ax-footer__promo p {
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}
.ax-footer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  height: 200px;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-footer__button .ax-duplicate-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -999;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-footer__button a {
  color: inherit;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 300ms ease-in-out;
}
.ax-footer__button a:last-child {
  width: 3.25rem;
  padding: 0.5rem;
}
.ax-footer__button a:last-child img {
  display: block;
}
.ax-footer__button a:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.95);
}
.ax-footer__button:hover {
  transform: scale(1.015);
  box-shadow: 0 0 10px #003ae6;
}
.ax-footer__button:hover .ax-duplicate-shadow {
  box-shadow: 0 0 15px #0090f8;
}
.ax-footer__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ax-footer__apps p {
  width: 100%;
}
.ax-footer__apps a {
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-footer__apps a:hover {
  transform: scale(0.95);
}
.ax-footer__navigation {
  display: flex;
  background: var(--wp--preset--color--primary-alt);
  padding: 2rem;
  border-radius: 20px;
  width: calc(50% - 1rem);
}
.ax-footer__navigation ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.ax-footer__navigation ul.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 0.5rem;
}
.ax-footer__navigation ul.menu > li {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  padding: 1rem;
  margin-bottom: 0;
  background: var(--wp--preset--color--primary);
  border-radius: 10px;
}
.ax-footer__navigation ul.menu > li > a {
  display: block;
  color: #ffffff;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.ax-footer__navigation ul.menu > li:nth-child(1) {
  grid-area: 1/1/4/2;
}
.ax-footer__navigation ul.menu > li:nth-child(2) {
  grid-area: 4/1/7/2;
}
.ax-footer__navigation ul.menu > li:nth-child(3) {
  grid-area: 1/2/4/3;
}
.ax-footer__navigation ul.menu > li:nth-child(4) {
  grid-area: 4/2/7/3;
}
.ax-footer__navigation ul.menu > li:nth-child(5) {
  grid-area: 1/3/3/4;
}
.ax-footer__navigation ul.menu > li:nth-child(6) {
  grid-area: 3/3/5/4;
}
.ax-footer__navigation ul.menu > li:nth-child(7) {
  grid-area: 5/3/7/4;
}
.ax-footer__navigation ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ax-footer__navigation ul.sub-menu > li {
  margin-bottom: 0;
}
.ax-footer__navigation ul.sub-menu > li > a {
  color: #ffffff;
  font-size: 0.9rem;
}
.ax-footer__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.ax-footer__bottom > div {
  flex: 1;
}
.ax-footer__logo {
  display: block;
}
.ax-footer__logo img {
  width: 20rem;
}
.ax-footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.ax-footer__socials a {
  display: block;
  border: solid 1px #ffffff;
  border-radius: 50%;
  padding: 4px;
  height: fit-content;
}
.ax-footer__socials a img {
  display: block;
  width: 2rem;
  filter: invert(1);
}
.ax-footer__links {
  margin-left: auto;
}
.ax-footer__links ul {
  list-style: none;
  width: fit-content;
  margin-left: auto;
  text-align: end;
}
.ax-footer__links ul li {
  font-size: 0.85rem;
  font-weight: 300;
}
.ax-footer__links ul li:first-of-type {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1440px) {
  .ax-footer__container {
    max-width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .ax-footer {
    padding: 4rem 0;
  }
  .ax-footer__container {
    row-gap: 1.5rem;
  }
  .ax-footer__promo {
    text-align: center;
  }
  .ax-footer__apps {
    justify-content: center;
    text-align: center;
  }
  .ax-footer__promo, .ax-footer__navigation {
    width: 100%;
  }
  .ax-footer__navigation {
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.5rem;
  }
  .ax-footer__navigation::-webkit-scrollbar {
    display: none;
  }
  .ax-footer__navigation ul.menu {
    display: flex;
    padding-left: 1rem;
  }
  .ax-footer__navigation ul.menu > li {
    scroll-snap-align: start;
    width: 300px;
  }
  .ax-footer__navigation ul.menu > li:first-of-type {
    padding-left: 1rem;
  }
  .ax-footer__bottom {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
  .ax-footer__logo {
    margin: auto;
  }
  .ax-footer__links {
    margin: auto;
  }
  .ax-footer__links ul {
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .ax-footer__logo img {
    width: 90%;
    margin: auto;
  }
  .ax-footer__button a:last-of-type {
    display: none;
  }
}

.ax-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  padding: 1rem 2rem;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
}
.ax-header__logo {
  display: block;
  width: 15rem;
}
.ax-header__navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.ax-header__navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ax-header__navigation ul li a {
  position: relative;
  background-size: 0% 0.7rem;
  background-position-y: 100%;
  background-position-x: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--wp--custom--color--primary-light), var(--wp--custom--color--primary-light));
  transition: background-size 500ms ease-in-out;
}
.ax-header__navigation ul li a:hover {
  background-size: 100% 0.7rem;
  background-position-x: 0%;
}
.ax-header__navigation ul.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  font-size: 1rem;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
}
.ax-header__navigation ul.menu > li {
  margin-bottom: 0;
  padding: 1rem 0;
}
.ax-header__navigation ul.menu > li a {
  position: relative;
  z-index: 999;
  text-decoration: none;
  font-weight: 500;
  color: var(--wp--preset--color--primary);
}
.ax-header__navigation ul.menu > li.menu-item-has-children {
  position: relative;
}
.ax-header__navigation ul.menu > li.menu-item-has-children:hover ul.sub-menu {
  visibility: visible;
  z-index: 99;
  opacity: 1;
  top: 3rem;
  transform: translateX(-50%);
}
.ax-header__navigation ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-header__navigation ul.sub-menu li {
  text-wrap: nowrap;
  margin-bottom: 0;
}
.ax-header__navigation ul.sub-menu li a {
  display: flex;
  padding: 0.5rem 0.75rem;
  background: var(--wp--custom--color--primary-light);
  border-radius: 10px;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
  overflow: hidden;
  position: relative;
}
.ax-header__navigation ul.sub-menu li a:after {
  content: "";
  width: 0%;
  height: 100%;
  background: var(--wp--preset--color--primary-alt);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-header__navigation ul.sub-menu li a:hover {
  color: #ffffff;
}
.ax-header__navigation ul.sub-menu li a:hover:after {
  width: 100%;
}
.ax-header__search {
  position: relative;
  display: flex;
}
.ax-header__search button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  border-radius: 10px;
  border: 0;
  background: rgba(13, 16, 32, 0);
  cursor: pointer;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-header__search button img {
  width: 1.25rem;
  filter: brightness(1) invert(0);
}
.ax-header__search button:hover, .ax-header__search button.active {
  background: rgb(13, 16, 32);
  padding: 0.5rem;
  border-radius: 10px;
}
.ax-header__search button:hover img, .ax-header__search button.active img {
  filter: brightness(0) invert(1);
}
.ax-header__search button:active {
  transform: scale(0.75);
}
.ax-header__search form {
  position: absolute;
  top: 2rem;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-header__search form.active {
  top: 3rem;
  right: 0;
  opacity: 1;
  z-index: 1;
}
.ax-header__search form input[type=search] {
  border: 2px solid var(--wp--custom--color--grey);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-family: var(--wp--preset--font-family--body), sans-serif;
  font-weight: 500;
}
.ax-header__search form input[type=search]::placeholder {
  color: var(--wp--preset--color--primary);
}
.ax-header__search form input[type=search]:focus {
  outline: 0;
}
.ax-header__search form input[type=submit] {
  display: none;
}
.ax-header__burger {
  background: #ffffff;
  border: solid 2px var(--wp--custom--color--grey);
  border-radius: 10px;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 9999;
}
.ax-header__burger div {
  position: relative;
  width: 100%;
  background: var(--wp--preset--color--primary);
  height: 4px;
  border-radius: 10px;
  transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
  top: 0;
  right: 0;
}
.ax-header__burger.mobile-menu-opened div:nth-child(1) {
  transform: rotate(-45deg);
  transform-origin: top right;
  top: 2px;
  right: 5px;
}
.ax-header__burger.mobile-menu-opened div:nth-child(2) {
  transform: scaleX(0);
  transform-origin: center;
}
.ax-header__burger.mobile-menu-opened div:nth-child(3) {
  transform: rotate(45deg);
  transform-origin: bottom right;
  top: 1px;
  right: 5px;
}
@media screen and (max-width: 1420px) {
  .ax-header {
    gap: 1rem;
  }
  .ax-header__logo {
    width: 12rem;
  }
  .ax-header__navigation {
    gap: 1rem;
  }
  .ax-header__navigation ul.menu {
    gap: 0.75rem;
  }
  .ax-header__navigation ul.menu > li {
    font-size: 0.9rem;
  }
  .ax-header__navigation .ax-button a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1160px) {
  .ax-header {
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    padding: 1rem;
  }
  .ax-header.logged-in {
    top: 46px;
  }
  .ax-header__logo {
    z-index: 99999;
    background: #ffffff;
    padding: 0.25rem 0.5rem;
    border: solid 2px var(--wp--custom--color--grey);
    border-radius: 10px;
  }
  .ax-header__navigation {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-125%);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding-top: 100px;
    background: var(--wp--custom--color--grey);
    z-index: 9999;
    transition: all 1000ms cubic-bezier(0, 0, 0.1, 1);
  }
  .ax-header__navigation.mobile-menu-opened {
    transform: translateY(0%);
  }
  .ax-header__navigation ul {
    opacity: 1;
    visibility: visible;
    transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
  }
  .ax-header__navigation ul.menu {
    flex-direction: column;
    width: 400px;
    overflow: scroll;
    padding-bottom: 6rem;
  }
  .ax-header__navigation ul.menu::-webkit-scrollbar {
    display: none;
  }
  .ax-header__navigation ul.menu > li {
    background: var(--wp--custom--color--primary-light);
    width: 100%;
    padding: 0;
    border-radius: 10px;
    padding: 1rem;
  }
  .ax-header__navigation ul.menu > li a {
    display: block;
    color: var(--wp--preset--color--primary);
    font-weight: 700;
    width: fit-content;
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children {
    cursor: pointer;
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children:after {
    content: url(/blog/wp-content/themes/axonaut-blog/assets/img/svg/plus.svg);
    margin-left: auto;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: rotate(0deg);
    transition: all 600ms cubic-bezier(0, 0, 0.1, 1);
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children:hover ul.sub-menu {
    top: unset;
    transform: none;
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children .sub-menu {
    position: relative;
    visibility: visible;
    z-index: 99;
    opacity: 1;
    top: 0;
    left: 0;
    transform: translate(0%);
    padding: 0;
    margin-top: 0.75rem;
    gap: 0.5rem;
    background: none;
    max-height: 0vh;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    transition: all 600ms ease-in-out;
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children .sub-menu > li > a {
    width: 100%;
    background: #ffffff;
    padding: 0.75rem;
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children .sub-menu > li > a:after {
    background: #ffffff;
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children .sub-menu > li > a:hover {
    color: var(--wp--preset--color--primary-alt);
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children.child-menu-opened:after {
    transform: rotate(45deg);
  }
  .ax-header__navigation ul.menu > li.menu-item-has-children.child-menu-opened .sub-menu {
    max-height: 100vh;
    margin-top: 1rem;
  }
  .ax-header__navigation ul.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .ax-header__navigation .ax-button {
    position: absolute;
    bottom: 1.5rem;
    width: 400px;
    background: var(--wp--preset--gradient--tertiary);
    z-index: 999999;
  }
  .ax-header__navigation .ax-button a {
    padding: 1.2rem;
    font-weight: 600;
    justify-content: center;
    width: 100%;
  }
  .ax-header__search {
    position: absolute;
    right: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border: solid 2px var(--wp--custom--color--grey);
    border-radius: 10px;
    transition: all 1000ms cubic-bezier(0, 0, 0.1, 1);
  }
  .ax-header__search button img {
    width: 1.5rem;
  }
  .ax-header__search button:hover, .ax-header__search button.active {
    background: #ffffff;
  }
  .ax-header__search button:hover img, .ax-header__search button.active img {
    filter: none;
  }
  .ax-header__search form.active {
    top: 4rem;
  }
  .ax-header__search.mobile-menu-opened {
    right: 5rem;
  }
  .ax-header__burger {
    display: flex;
  }
}
@media screen and (max-width: 550px) {
  .ax-header__navigation {
    height: 100%;
  }
  .ax-header__navigation ul.menu {
    width: 90dvw;
    margin: auto;
    max-height: 550px;
  }
  .ax-header__navigation .ax-button {
    width: 90vw;
  }
}
@media screen and (max-width: 320px) {
  .ax-header__logo {
    width: 10rem;
  }
  .ax-header__search {
    width: 2.5rem;
    height: 2.5rem;
  }
  .ax-header__search button img {
    width: 1.25rem;
  }
  .ax-header__burger {
    width: 2.5rem;
    height: 2.5rem;
  }
  .ax-header__burger.mobile-menu-opened div:nth-child(1) {
    right: 3px;
  }
  .ax-header__burger.mobile-menu-opened div:nth-child(3) {
    top: -1px;
    right: 3px;
  }
}

@media screen and (max-width: 1070px) {
  #wpadminbar {
    position: fixed;
    z-index: 999999;
  }
}

.ax-archive__header {
  margin: 1rem auto 0;
  padding-bottom: 0;
}
.ax-archive__header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: fit-content;
  position: relative;
  background-size: 100% 1.2rem;
  background-position-y: 100%;
  background-position-x: 0%;
  background-repeat: no-repeat;
  background-image: var(--wp--preset--gradient--tertiary);
}
.ax-archive__header--terms {
  display: flex;
  justify-content: start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ax-archive__header--terms a {
  text-decoration: none;
  background: var(--wp--preset--gradient--primary);
  color: #ffffff;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 500;
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  position: relative;
  bottom: 0;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-archive__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
}
.ax-archive__posts.ax-container {
  margin: 0 auto 2rem;
  padding: 0;
}
.ax-archive__loadmore {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}
.ax-archive__loadmore button {
  position: relative;
  bottom: 0;
  display: flex;
  padding: 0.5rem 1rem !important;
  border: none;
  border-radius: 30px;
  height: fit-content;
  color: var(--wp--preset--color--primary-alt);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
  cursor: pointer;
}
.ax-archive__loadmore button:hover {
  color: #ffffff;
}
.ax-archive__loadmore button.is-hidden {
  opacity: 0;
  bottom: -2rem;
}
.ax-archive__loadmore .ax-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.ax-archive__loadmore .ax-loader.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .ax-archive__header--terms a:hover {
    transform: translateY(-0.4rem);
  }
}
@media screen and (max-width: 1024px) {
  .ax-archive__posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .ax-archive__posts .ax-card-post {
    grid-template-columns: 1fr;
  }
  .ax-archive__posts .ax-card-post__image {
    height: 100%;
  }
  .ax-archive__header.ax-container {
    max-width: 100%;
  }
  .ax-archive__header h1 {
    max-width: 95%;
    margin: 0 auto 1rem;
  }
  .ax-archive__header--terms {
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1.5rem;
    padding: 0 1.5rem;
  }
  .ax-archive__header--terms::-webkit-scrollbar {
    display: none;
  }
  .ax-archive__header--terms a,
  .ax-archive__header--terms span {
    scroll-snap-align: start;
  }
  .ax-archive__header--terms a:hover:not(.current),
  .ax-archive__header--terms span:hover:not(.current) {
    bottom: 0rem;
  }
}
@media screen and (max-width: 768px) {
  .ax-archive__posts {
    grid-template-columns: 1fr;
  }
  .ax-archive__posts .ax-card-post {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media screen and (max-width: 600px) {
  .ax-archive__posts {
    grid-template-columns: 1fr;
  }
  .ax-archive__posts .ax-card-post {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .ax-archive__header h1 {
    font-size: 2rem;
    text-align: center;
  }
}

html {
  background: var(--wp--custom--color--background);
}
html #page {
  position: relative;
}
html .ax-page {
  max-width: 1024px;
  margin: auto;
}
@media screen and (max-width: 1070px) {
  html {
    padding-top: 3rem;
  }
}

.ax-search h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.ax-search h1 span {
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  position: relative;
  background-size: 100% 1rem;
  background-position-y: 75%;
  background-position-x: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#ceeaff, #ceeaff);
}
.ax-search__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .ax-search__results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ax-search h1 {
    text-align: center;
  }
  .ax-search__results {
    grid-template-columns: 1fr;
  }
}

.ax-single {
  max-width: 1500px;
  margin: auto;
}
.ax-single__promo {
  position: relative;
  margin: 1rem auto 0;
  overflow: hidden;
}
.ax-single__promo--container {
  position: relative;
  z-index: 10;
  padding: 1.5rem;
}
.ax-single__promo--container p {
  font-size: 2rem;
  line-height: 2rem;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.ax-single__promo--container .ax-button {
  margin: auto;
}
.ax-single__promo img {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  z-index: 0;
  filter: brightness(0.6);
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-single__promo video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  z-index: 0;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
}
.ax-single__promo:hover--container .ax-button a {
  background: red;
}
.ax-single__promo:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}
.ax-single__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2rem;
  margin: 1rem 0 0;
  padding-bottom: 0;
}
.ax-single__header--main {
  width: calc(50% - 1rem);
}
.ax-single__header--main.full-width {
  width: 100%;
}
.ax-single__header--main.full-width h1 {
  text-align: center;
  width: 75%;
  margin: 1.5rem auto 0;
}
.ax-single__header--main h1 {
  margin-top: 2rem;
  font-size: 3.5rem;
  text-wrap: pretty;
}
.ax-single__header--image {
  width: calc(50% - 1rem);
}
.ax-single__header--image img {
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
}
.ax-single__header--bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--wp--preset--color--primary);
}
.ax-single__header--bottom span,
.ax-single__header--bottom time {
  font-weight: 500;
}
.ax-single__header--bottom .post-date {
  display: flex;
  gap: 0.5rem;
}
.ax-single__header--bottom .post-date span {
  font-size: 0.95rem;
}
.ax-single__header--bottom .post-date span.bullet {
  color: var(--wp--preset--color--primary);
}
.ax-single__header--bottom .post-date span time {
  font-weight: 600;
}
.ax-single__header--bottom .social-share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ax-single__header--bottom .social-share a,
.ax-single__header--bottom .social-share span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--wp--preset--color--primary);
  border-radius: 9999px;
  padding: 4px;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
  cursor: pointer;
}
.ax-single__header--bottom .social-share a:hover,
.ax-single__header--bottom .social-share span:hover {
  transform: scale(0.9);
}
.ax-single__header--bottom .social-share a svg,
.ax-single__header--bottom .social-share span svg {
  width: 1.5rem;
  height: auto;
}
.ax-single__header--bottom .social-share a svg path,
.ax-single__header--bottom .social-share span svg path {
  fill: var(--wp--preset--color--primary);
}
.ax-single__header--bottom .ax-link-notification {
  position: fixed;
  top: 4rem;
  right: 0;
  transform: translateX(100%);
  background: #c8e6c9;
  border: solid 2px var(--wp--custom--color--success);
  border-radius: 10px;
  padding: 0.5rem 1.25rem;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
  z-index: 9999;
}
.ax-single__header--bottom .ax-link-notification span {
  color: var(--wp--preset--color--dark);
  font-weight: 500;
}
.ax-single__header--bottom .ax-link-notification.active {
  transform: translateX(-10%);
}
.ax-single__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin: 0;
}
.ax-single__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 3rem;
}
.ax-single__sidebar--toc, .ax-single__sidebar--promo {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  transition: all 400ms cubic-bezier(0, 0, 0.1, 1);
  color: var(--wp--preset--color--primary);
}
.ax-single__sidebar--toc span, .ax-single__sidebar--promo span {
  display: block;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--wp--preset--color--primary-alt);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ax-single__sidebar--toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.ax-single__sidebar--toc ul li {
  text-wrap: pretty;
}
.ax-single__sidebar--promo p {
  margin-bottom: 1.5rem;
}
.ax-single__post--summary {
  background: var(--wp--preset--color--tertiary-alt);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.ax-single__post--summary-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ax-single__post--summary-header svg {
  width: 2rem;
  height: 2rem;
}
.ax-single__post--summary-header span {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  font-family: var(--wp--preset--font-family--heading), sans-serif;
}
.ax-single__post--summary p {
  margin-bottom: 0;
}
.ax-single__post--summary p:not(:first-of-type) {
  margin-top: 1rem;
}
.ax-single__post--summary ul {
  margin-top: 1rem;
  margin-bottom: 0;
}
.ax-single__post--content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
}
.ax-single__post--content .ax-button {
  margin-top: 2rem;
}
.ax-single__post--content a:not(.wp-block-button__link) {
  color: var(--wp--preset--color--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.ax-single__post--content h2 {
  margin-top: 4rem;
}
.ax-single__post--content h3 {
  margin-top: 3rem;
}
.ax-single__post--content .wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.ax-single__post--content .wp-block-image.alignleft {
  float: none;
}
.ax-single__post--content .wp-block-image.alignright {
  margin-left: auto;
}
.ax-single__post--content .wp-block-embed__wrapper {
  display: flex;
  justify-content: center;
}
.ax-single__post--content .wp-block-embed__wrapper iframe {
  border-radius: 20px;
  margin: 1.5rem auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.ax-single__signature {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: #ffffff;
  max-width: 700px;
}
.ax-single__signature img {
  min-width: 6rem;
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 10px;
}
.ax-single__signature--author-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}
.ax-single__signature--author-linkedin-url {
  display: flex;
}
.ax-single__signature--author-linkedin-url svg {
  width: 1.25rem;
  height: 1.25rem;
}
.ax-single__signature--author-description {
  font-size: 0.9rem;
}
.ax-single__related h2 {
  text-align: center;
}
.ax-single__related--posts {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 1.5rem;
}
.ax-single__related--posts .ax-card-post {
  width: calc(50% - 1rem);
  max-width: 550px;
}
@media screen and (max-width: 1550px) {
  .ax-single {
    width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .ax-single__header h1 {
    font-size: 2.5rem;
  }
  .ax-single__header--image img {
    height: 300px;
  }
  .ax-single__header--bottom {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
  .ax-single__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0;
  }
  .ax-single__sidebar {
    position: relative;
    top: 0;
  }
  .ax-single__sidebar--toc {
    opacity: 1;
  }
  .ax-single__sidebar--promo {
    display: none;
  }
  .ax-single__related--posts {
    flex-direction: column;
  }
  .ax-single__related--posts .ax-card-post {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ax-single {
    margin: 2rem auto 0;
  }
  .ax-single__promo--container {
    padding: 0.5rem 1rem;
  }
  .ax-single__promo p {
    font-size: 1.5rem;
  }
  .ax-single__header {
    flex-direction: column;
  }
  .ax-single__header--main, .ax-single__header--image {
    width: 100%;
  }
  .ax-single__header--main .ax-breadcrumbs {
    opacity: 0.5;
    justify-content: center;
  }
  .ax-single__header--main .ax-breadcrumbs svg {
    display: none;
  }
  .ax-single__header--main h1 {
    text-align: center;
    margin-top: 0.5rem;
  }
  .ax-single__header--image {
    order: -1;
  }
  .ax-single__header--image img {
    border-radius: 20px;
  }
  .ax-single__header--bottom .social-share {
    order: -1;
    width: 100%;
    justify-content: center;
  }
  .ax-single__header--bottom .social-share a,
  .ax-single__header--bottom .social-share span#link {
    width: 3rem;
  }
  .ax-single__header--bottom .social-share p {
    display: none;
  }
  .ax-single__header--bottom .ax-link-notification {
    top: unset;
    bottom: 0rem;
    right: 50%;
    transform: translate(50%, 100%);
  }
  .ax-single__header--bottom .ax-link-notification.active {
    transform: translate(50%, -75%);
  }
}
@media screen and (max-width: 550px) {
  .ax-single__promo {
    padding: 0.5rem 0;
  }
  .ax-single__promo p {
    font-size: 1rem;
    text-wrap: balance;
  }
  .ax-single__promo .ax-button a {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  .ax-single__header--main h1 {
    font-size: 1.5rem;
    margin-top: 1rem;
    line-height: 2rem;
  }
  .ax-single__header--main.full-width h1 {
    width: 100%;
    margin-top: 1rem;
  }
  .ax-single__header--bottom {
    flex-direction: column;
    justify-content: center;
  }
  .ax-single__header--bottom span,
  .ax-single__header--bottom time {
    text-align: center;
  }
  .ax-single__header--bottom .social-share {
    order: -1;
    flex-wrap: wrap;
  }
  .ax-single__header--bottom .social-share p {
    text-align: center;
    width: 100%;
  }
  .ax-single__header--bottom .social-share a,
  .ax-single__header--bottom .social-share span#link {
    width: 2.5rem;
  }
  .ax-single__header--bottom .ax-link-notification {
    width: 70%;
    margin: auto;
    text-align: center;
    text-wrap: balance;
  }
  .ax-single__header--image img {
    height: 100%;
  }
  .ax-single__sidebar--toc span {
    font-size: 1rem;
  }
  .ax-single__sidebar--toc ul li {
    font-size: 0.9rem;
    line-height: normal;
  }
  .ax-single__post--summary, .ax-single__post--content {
    padding: 1.25rem;
  }
  .ax-single__post--summary-header svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .ax-single__post--summary-header span {
    font-size: 1rem;
  }
  .ax-single__post--summary p {
    font-size: 0.9rem;
  }
  .ax-single__post--summary ul {
    margin-top: 0.5rem;
  }
  .ax-single__post--date {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
  .ax-single__post--date span.bullet {
    display: none;
  }
  .ax-single__post h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .ax-single__post h3 {
    font-size: 1.15rem;
    line-height: 1.25rem;
  }
  .ax-single__post h4 {
    font-size: 1.05rem;
  }
  .ax-single__post p,
  .ax-single__post li {
    font-size: 15px;
  }
  .ax-single__signature {
    flex-direction: column;
  }
  .ax-single__signature img {
    min-width: 5rem;
    width: 5rem;
    height: 5rem;
  }
}

section {
  margin: 4rem auto;
  padding: 4rem 0;
}

.ax-container {
  max-width: 1500px;
  margin: 0 auto;
}

@media screen and (max-width: 1550px) {
  .ax-container {
    max-width: 95%;
  }
}
@media screen and (max-width: 1440px) {
  .ax-container {
    max-width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .ax-container {
    max-width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .ax-container {
    max-width: 90%;
  }
}
@media screen and (max-width: 550px) {
  .ax-container {
    max-width: 90%;
  }
}
@media screen and (max-width: 320px) {
  .ax-container {
    max-width: 90%;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}
